In Visual Studio Code, can I open a workspace in a new window in one keystroke? I tried using the macros extension, defining the following:
"macros": { "openWorkspaceNewWindow": [ "workbench.action.newWindow", "workbench.action.openWorkspace" ] } which does, in fact, open a new window, but then it ignores the new as it calls openWorkspace.
What I'm trying to do is not replace the current window with the newly opened workspace; I want to retain the current window and open a new one with the workspace in it.