vscode-maven
vscode-maven copied to clipboard
Feature request: Change the scope of `maven.terminal.customEnv` to `machine-overridable`
Is it possible to change the scope of maven.terminal.customEnv to machine-overridable?
I would like to have remote settings.json updated when vscode.workspace.getconfiguration() is update by an extension in a remote environment such as WSL.
- Related Issue https://github.com/redhat-developer/vscode-java/pull/2624 https://github.com/redhat-developer/vscode-java/issues/2001 https://github.com/redhat-developer/vscode-java/pull/2368
Is it possible to change the maven.executable.path from machine to machine-overridable as the related setting maven.executable.path cannot also be overridden in a workspace?
package.json
"maven.executable.path": {
"type": "string",
"scope": "machine" // -> "machine-overridable"
},
"maven.terminal.customEnv": {
"type": "array",
"scope": "resource" // -> "machine-overridable"
},