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 keybindings:
{
"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).