zoombar-vscode
zoombar-vscode copied to clipboard
Allow setting zoom level per VSCode instance
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.
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
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!
"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.