Vim: Jump in and out of terminal

Created on 30 Jun 2020  路  1Comment  路  Source: VSCodeVim/Vim

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.

Most helpful comment

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"
    },

>All comments

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"
    },
Was this page helpful?
0 / 5 - 0 ratings

Related issues

liamdawson picture liamdawson  路  3Comments

ghost picture ghost  路  3Comments

AndersenJ picture AndersenJ  路  3Comments

elithrar picture elithrar  路  3Comments

cckowin picture cckowin  路  3Comments