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

Allow setting zoom level per VSCode instance

Open creage opened this issue 2 years ago • 3 comments

Currently, when running multiple VSCode instances, changing zoom level in one instance automatically changes zoom level in every other instances. This is very inconvenient when running in multiple monitor setup, and monitors have different resolutions. You cannot adjust zoom level per instance.

creage avatar Apr 01 '22 06:04 creage

Hi @creage having the same concern, I checked the parameters and tried do set the Configuration Target to workspace. This seems to work as I expected. Hope this helps. Fred

Fred-MabS avatar Sep 19 '22 09:09 Fred-MabS

Came here looking for this, would not have guessed Configuration Target to be the setting but makes sense.

I made a workspace setting for the Configuration Target to be Workspace, so my Zoom setting will be tied to this workspace but separately universal across all other workspaces, which is great!

mattatusebutton avatar Jun 01 '23 15:06 mattatusebutton

"zoombar.configurationTarget" is the setting, default is "auto", options are:

  • "auto": If the zoom level is overridden in the workspace settings, the workspace settings are targeted, otherwise the global settings are targeted.
  • "global": Always targets global settings. If the zoom level is overridden in the workspace settings, the workspace settings will be reset.
  • "workspace": Targets workspace settings. If the workspace is not open, the global settings are targeted.

mrienstra avatar Jul 06 '24 18:07 mrienstra