'What's the shortcut to hide the integrated terminal in visual studio code
In order to open the integrated terminal there is a shortcut ctrl + `. Is there any shortcut to hide the terminal?
Solution 1:[1]
You can use same ctrl + ` to toggle appearance of terminal. If you want to keep both open and jump around, use below
ctrl + ` to jump in terminal
ctrl + 1 to jump back in editor
Solution 2:[2]
For OS X, the command is to show/hide the terminal is COMMAND + J
Solution 3:[3]
On macOS Command ? + J Hide Panel
Environment
Visual Studio Code Version: 1.63.2
macOS Monterey Version 12.1 x86_64
Solution 4:[4]
In keybindings.json, copy following JSON lines:
{
"key": "ctrl+'",
"command": "workbench.action.terminal.toggleTerminal",
"when": "!terminalFocus"
},
{
"key": "ctrl+'",
"command": "workbench.action.terminal.toggleTerminal",
"when": "terminalFocus"
},
you can change ctrl+' by what shortcut you like.
Solution 5:[5]
For MacOS users the keyboard shortcut is:
Ctrl + Shift + ยด
(VS Code v.1.47.3)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | userx |
| Solution 2 | Arefe |
| Solution 3 | Ax_ |
| Solution 4 | zi yuan |
| Solution 5 | tif |
