Created
April 22, 2026 12:41
-
-
Save nilsreichardt/945739a2d6b55a7c7c6901402a66e5d5 to your computer and use it in GitHub Desktop.
Open Keyboard Shortcuts
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 defaultsauto[] | |
| [ | |
| { | |
| "key": "alt+f", | |
| "command": "rewrap.rewrapComment", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "alt+q", | |
| "command": "-rewrap.rewrapComment", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "cmd+s", | |
| "command": "saveAll" | |
| }, | |
| { | |
| "key": "alt+cmd+s", | |
| "command": "-saveAll" | |
| }, | |
| { | |
| "key": "alt+cmd+s", | |
| "command": "workbench.action.files.save" | |
| }, | |
| { | |
| "key": "cmd+s", | |
| "command": "-workbench.action.files.save" | |
| }, | |
| { | |
| "key": "shift+alt+[BracketRight]", | |
| "command": "editor.action.inlineSuggest.showNext" | |
| }, | |
| { | |
| "key": "shift+alt+-", | |
| "command": "editor.action.inlineSuggest.showPrevious" | |
| }, | |
| { | |
| "key": "shift+cmd+9", | |
| "command": "cody.chat.panel.new", | |
| "when": "cody.activated" | |
| }, | |
| { | |
| "key": "shift+alt+7", | |
| "command": "-cody.chat.panel.new", | |
| "when": "cody.activated" | |
| }, | |
| { | |
| "key": "ctrl+shift+k", | |
| "command": "aipopup.action.modal.generate", | |
| "when": "editorFocus && !composerBarIsVisible" | |
| }, | |
| { | |
| "key": "shift+cmd+k", | |
| "command": "-aipopup.action.modal.generate", | |
| "when": "editorFocus && !composerBarIsVisible" | |
| }, | |
| { | |
| "key": "ctrl+shift+k", | |
| "command": "composer.openAsBar" | |
| }, | |
| { | |
| "key": "shift+cmd+k", | |
| "command": "-composer.openAsBar" | |
| }, | |
| { | |
| "key": "cmd+i", | |
| "command": "composerMode.agent" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment