robrich
robrich

Reputation: 13195

Two VS Code instances with different settings?

When streaming, I want one VS Code instance with a very big font size for viewers on smaller screens. I'd also like a VS Code instance off-stage that doesn't need to be so big for notes and research. Can two VS Code instances have different settings for the same logged-in user?

Upvotes: 0

Views: 578

Answers (1)

Severin Pappadeux
Severin Pappadeux

Reputation: 20080

Well, global user settings are a singleton, but you could override them in per-workspace settings. Per-workspace overrides global.

So if VSCode1 is doing WS1, and VSCode2 is doing WS2, they could have different settings.

https://vscode.readthedocs.io/en/latest/getstarted/settings/

IS this what are you looking for?

Upvotes: 1

Related Questions