unique-window-colors icon indicating copy to clipboard operation
unique-window-colors copied to clipboard

should not put any other user settings to workspace settings

Open ngmariusz opened this issue 6 years ago • 1 comments

expected

  "workbench.colorCustomizations": {
    "activityBar.background": "#13332E",
    "titleBar.activeBackground": "#19423B",
    "titleBar.activeForeground": "#F6FBFB"
  }

current

"workbench.colorCustomizations": {
       "my": "..",
       "all": "..",
       "other": "..",
       "customisations": "..",
       "from": "..",
       "settings/user": "..",
    "activityBar.background": "#13332E",
    "titleBar.activeBackground": "#19423B",
    "titleBar.activeForeground": "#F6FBFB"
  }

ngmariusz avatar Jun 25 '19 19:06 ngmariusz

I'd never used workbench settings before, so I had no idea why even after uninstalling the plugin the colors were staying on my project windows.

Finally decided to head over to the repo, and stumbled here!

Not sure much can be done, looks like workbench settings are the only way to store per-project settings.

Can a plugin remove settings from all known projects during uninstall? Maybe that'd be a helpful solution.

Or maybe even better, the settings should be plugin-specific, and should have no effect if the plugin is not installed.

trusktr avatar Aug 29 '19 03:08 trusktr