Skip to content

Instantly share code, notes, and snippets.

@gitfool
Created September 17, 2026 03:59
Show Gist options
  • Select an option

  • Save gitfool/fe28392819be8b20f79b8cd8b80cac29 to your computer and use it in GitHub Desktop.

Select an option

Save gitfool/fe28392819be8b20f79b8cd8b80cac29 to your computer and use it in GitHub Desktop.
Visual Studio Code settings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+]",
"command": "editor.action.jumpToBracket",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+]",
"command": "editor.action.selectToBracket"
},
{
"key": "f6",
"command": "-workbench.action.focusNextPart"
},
{
"key": "shift+f6",
"command": "-workbench.action.focusPreviousPart"
},
{
"key": "f6",
"command": "workbench.action.tasks.build",
"when": "debugState != 'running'"
},
{
"key": "ctrl+shift+b",
"command": "-workbench.action.tasks.build"
},
{
"key": "ctrl+w",
"command": "-workbench.action.terminal.killEditor",
"when": "terminalEditorFocus && terminalFocus && terminalHasBeenCreated || terminalEditorFocus && terminalFocus && terminalProcessSupported"
},
{
"key": "shift+enter",
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "\u001b\r"
},
"when": "terminalFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment