You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am developer from VS Code and we introduced Machine Scope for configurations in 1.34 which will help in remote set ups.
I would like to encourage extension authors to adopt to machine scope if you have any settings that you think they are scoped to machine like bookmarks.gutterIconPath
For example, If you have settings that allow users to customize an executable path that exists on the machine in which extension is running, then you can tag such settings as machine scoped. This will let VS Code to read this setting from the location where the extension is running.
When extension is running locally, VS Code reads this setting only from User settings on the same machine.
When extension is running remotely, VS Code reads this setting only from Remote settings on the remote machine.
If the extension is running remotely in a remote set up, then this will help the extension not to read paths configured in local machine user settings and bail as the paths not exist in the remote machine.
Note that machine scoped settings are overridable only in user or remote settings.
The text was updated successfully, but these errors were encountered:
Thank you for bringing that to my attention 👍. I have noted the recent releases announcements, but since I don't use any remote set up yet, I didn't plan to support it in the extension yet.
I should play Container based set ups in the next weeks, and so, I could properly test the changes in real scenarios.
I won't be able to test remote set ups in the near future, as I previously thought. But following the provided documentation, it appears to be a small change, with no possible side effects. Let's do it 😁 .
I am developer from VS Code and we introduced Machine Scope for configurations in 1.34 which will help in remote set ups.
I would like to encourage extension authors to adopt to machine scope if you have any settings that you think they are scoped to machine like
bookmarks.gutterIconPath
For example, If you have settings that allow users to customize an executable path that exists on the machine in which extension is running, then you can tag such settings as
machine
scoped. This will let VS Code to read this setting from the location where the extension is running.If the extension is running remotely in a remote set up, then this will help the extension not to read paths configured in local machine user settings and bail as the paths not exist in the remote machine.
Note that machine scoped settings are overridable only in user or remote settings.
The text was updated successfully, but these errors were encountered: