Created
December 20, 2024 09:06
-
-
Save sibsfinx/65c1bb43fd41edc2b648847134611893 to your computer and use it in GitHub Desktop.
VS Code shortcut: open terminal in Editor area
This file contains hidden or 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
// macOS: Cmd + Shift + P -> Preferences: Open Keyboard Shortcuts (JSON) | |
// Windows: Ctrl + Shift + P -> Preferences: Open Keyboard Shortcuts (JSON) | |
[ | |
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.createTerminalEditor", | |
"when": "!terminalFocus" | |
}, | |
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "terminalFocus" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment