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 TeWu for How to switch the cursor between terminal and code in VSCode?

$
0
0

If you want Ctrl+` to toggle between terminal and the text editor, then do the following:

  1. Open your keybinding.json file: Ctrl+Shift+P then select Preferences: Open Keyboard Shortcuts (JSON).

  2. Add the following line:

  { "key": "ctrl+`", "command": "workbench.action.terminal.toggleTerminal" },
  1. Save and close keybinding.json file.

Viewing all articles
Browse latest Browse all 17

Trending Articles