Skip to content

Instantly share code, notes, and snippets.

@guizordan
Last active January 9, 2026 19:18
Show Gist options
  • Select an option

  • Save guizordan/3250ae2c25d80258cfd51865f5b97dc3 to your computer and use it in GitHub Desktop.

Select an option

Save guizordan/3250ae2c25d80258cfd51865f5b97dc3 to your computer and use it in GitHub Desktop.
keybindings.json
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+i",
"command": "composerMode.agent"
},
{
"key": "ctrl+shift+down",
"command": "-cursorDownSelect",
"when": "textInputFocus"
},
{
"key": "ctrl+shift+down",
"command": "-workbench.action.terminal.selectToNextCommand",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+up",
"command": "-editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+k",
"command": "-aipopup.action.modal.generate",
"when": "editorFocus && !composerBarIsVisible"
},
{
"key": "ctrl+shift+h",
"command": "-workbench.action.replaceInFiles"
},
{
"key": "ctrl+h",
"command": "-aipopup.action.modal.generate",
"when": "editorFocus && !composerBarIsVisible"
},
{
"key": "ctrl+shift+h",
"command": "aipopup.action.modal.generate",
"when": "editorFocus && !composerBarIsVisible"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment