Currently I have the below snippet of code that doesn’t really seem to do what I want it to do under my vim normal mode keybinds:
{
"before": ["<Leader>", "f", "t"],
"commands": [
"workbench.action.terminal.newInActiveWorkspace",
"workbench.action.terminal.focus",
"workbench.action.moveEditorToNextGroup"
],
"when": "editorTextFocus && !terminalFocus && !quickInputVisible"
},
I want it to open up a new terminal tab, and open it as a new tab of the files which are opened in the middle of VS Code (not on the bottom terminal part).
2
Answers
I’m not aware of a VS Code command to change the location of a panel or open a panel in a specific location.
I do know that you can change the default location of all the panels by doing something like
"workbench.panel.defaultLocation": "right"
. You might need to close and reopen VS Code after changing that setting for it to take effect.It sounds like you want one of these commands: