'Change the default split of vscode

When I run jupyter interactive windows, vscode code split the screen and put that tab on right side: enter image description here

How can I make that kind of tab open on the left side?



Solution 1:[1]

Try the "workbench.editor.openPositioning" setting:

{
     "workbench.editor.openPositioning": "left"
}

Or via the settings menu Editor Management ? Open Positioning:

setting

Solution 2:[2]

It would be the "workbench.editor.openSideBySideDirection" setting, but the only accepted values are right and down. You could perhaps make a feature request or look for an extension that might have the behaviour you need.

The Open Positioning setting is where new tabs open relative to your current tab. Whereas you are asking about editor groups.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Timothy G.
Solution 2 user13661618