vscode-maven icon indicating copy to clipboard operation
vscode-maven copied to clipboard

Feature request: Change the scope of `maven.terminal.customEnv` to `machine-overridable`

Open cypher256 opened this issue 2 years ago • 1 comments

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

cypher256 avatar Aug 02 '23 06:08 cypher256

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"
},

cypher256 avatar Feb 13 '24 04:02 cypher256