Created
December 3, 2025 17:53
-
-
Save willcode4food/f55e12cbcbde98b103fe07ad7b965a30 to your computer and use it in GitHub Desktop.
Key Bindings
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
| // Empty | |
| [ | |
| { | |
| "key": "ctrl+shift+l", | |
| "command": "editor.action.insertCursorAtEndOfEachLineSelected", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "shift+cmd+l", | |
| "command": "-editor.action.insertCursorAtEndOfEachLineSelected", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "alt+cmd+s", | |
| "command": "workbench.action.files.saveAs" | |
| }, | |
| { | |
| "key": "shift+cmd+s", | |
| "command": "-workbench.action.files.saveAs" | |
| }, | |
| { | |
| "key": "shift+cmd+s", | |
| "command": "workbench.action.files.saveAll" | |
| }, | |
| { | |
| "key": "alt+cmd+s", | |
| "command": "-workbench.action.files.saveAll" | |
| }, | |
| { | |
| "key": "shift+cmd+s", | |
| "command": "saveAll" | |
| }, | |
| { | |
| "key": "alt+cmd+s", | |
| "command": "-saveAll" | |
| }, | |
| { | |
| "key": "cmd+[", | |
| "command": "workbench.action.navigateBack" | |
| }, | |
| { | |
| "key": "ctrl+-", | |
| "command": "-workbench.action.navigateBack" | |
| }, | |
| { | |
| "key": "cmd+]", | |
| "command": "workbench.action.navigateForward" | |
| }, | |
| { | |
| "key": "ctrl+shift+-", | |
| "command": "-workbench.action.navigateForward" | |
| }, | |
| { | |
| "key": "alt+cmd+,", | |
| "command": "references-view.findReferences", | |
| "when": "editorHasReferenceProvider" | |
| }, | |
| { | |
| "key": "shift+alt+f12", | |
| "command": "-references-view.findReferences", | |
| "when": "editorHasReferenceProvider" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment