Skip to content

Instantly share code, notes, and snippets.

@sibsfinx
Created December 20, 2024 09:06
Show Gist options
  • Save sibsfinx/65c1bb43fd41edc2b648847134611893 to your computer and use it in GitHub Desktop.
Save sibsfinx/65c1bb43fd41edc2b648847134611893 to your computer and use it in GitHub Desktop.
VS Code shortcut: open terminal in Editor area
// 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