Last active
January 9, 2026 19:18
-
-
Save guizordan/3250ae2c25d80258cfd51865f5b97dc3 to your computer and use it in GitHub Desktop.
keybindings.json
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
| // 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