It looks like it is possible to jump from editor window to built-in terminal with ctrl-w + arrow but then I cannot jump back to the editor from the built-in terminal.
Any idea how this can be done? I would like that all panes, including text, and terminal, would be possible to navigate using the keyboard.
You could create your own keybindings for this. I use these:
{
"key": "ctrl+alt+`",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus",
},
{
"key": "ctrl+alt+`",
"command": "workbench.action.terminal.focus",
"when": "!terminalFocus"
},
Most helpful comment
You could create your own keybindings for this. I use these: