Closed as not planned
Description
Full control over createTerminal environment#
The new setting TerminalOptions.strictEnv when set to true will not make any modifications to the terminal environment at all, instead it will be used exactly as passed in by the extension.
// This will create a terminal whose environment only contains the single value
// FOO=BAR.
const terminal = createTerminal({
name: "Test terminal",
env: {
"FOO": "BAR"
},
strictEnv: true
});