Last active
July 8, 2022 23:55
-
-
Save v801/3aa4f07885e1b33475970ebf0a6ad856 to your computer and use it in GitHub Desktop.
vimlike vscode keybinds
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"key": "ctrl+k", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+j", | |
"command": "workbench.action.terminal.focus", | |
"when": "!terminalFocus" | |
}, | |
{ | |
"key": "ctrl+h", | |
"command": "workbench.action.focusPreviousGroup", | |
"when": "!terminalFocus" | |
}, | |
{ | |
"key": "ctrl+l", | |
"command": "workbench.action.focusNextGroup", | |
"when": "!terminalFocus" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
VSCode keybinds to move between editor/terminal in a vimlike fashion
To find the custom keybinds json file:
Open the Command Palette (Ctrl+Shift+P Windows/Linux or ⇧ ⌘ P Mac).
Type "Preferences: Open Keyboard Shortcuts (JSON)" and press Enter.
Original post plus binds from Sam Xu found here: https://stackoverflow.com/a/46439178