In vscode settings.json, a setting similar to this is possible:
"[python]": {
"editor.wordBasedSuggestions": false
},
This applies only to python files.
Let's say I have the following settings.json,
"remote.SSH.remotePlatform": {
"ubuntupc": "linux",
},
and I want to apply some settings to the remote.SSH.remotePlatform > ubuntupc scope.
So, something similar to the below would be desired:
"[remotePlatform]": {
"[ubuntupc]": {
"editor.wordBasedSuggestions": false
},
}
So, for example, I can apply custom css configs (e.g. change the header color based on the host).
In vscode settings.json, a setting similar to this is possible:
This applies only to python files.
Let's say I have the following settings.json,
and I want to apply some settings to the remote.SSH.remotePlatform > ubuntupc scope.
So, something similar to the below would be desired:
So, for example, I can apply custom css configs (e.g. change the header color based on the host).