Quantcast
Channel: How to switch the cursor between terminal and code in VSCode? - Super User
Viewing all articles
Browse latest Browse all 17

Answer by Felipe Pereira for How to switch the cursor between terminal and code in VSCode?

$
0
0

Generally VS Code uses ctrl+j to open Terminal so I created a keybinding to switch with ctrl+k combination, like below at keybindings.json:

[{"key": "ctrl+k","command": "workbench.action.terminal.focus"},{"key": "ctrl+k","command": "workbench.action.focusActiveEditorGroup","when": "terminalFocus"}]

Viewing all articles
Browse latest Browse all 17

Trending Articles