Last active
February 24, 2026 22:18
-
-
Save vyrx-dev/cf7babf57176e76f99598b54e3daf68d to your computer and use it in GitHub Desktop.
My VS Code Keybindings
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+s", | |
| "command": "workbench.action.toggleAutoSave", | |
| }, | |
| { | |
| "key": "shift+alt+c", | |
| "command": "codesnap.start", | |
| }, | |
| { | |
| "key": "ctrl+k z", | |
| "command": "-workbench.action.toggleZenMode", | |
| "when": "!isAuxiliaryWindowFocusedContext", | |
| }, | |
| { | |
| "key": "Ctrl+,", | |
| "command": "workbench.action.togglePanel", | |
| }, | |
| // FILE TREE | |
| { | |
| "command": "workbench.action.toggleSidebarVisibility", | |
| "key": "ctrl+b", | |
| }, | |
| { | |
| "command": "workbench.files.action.focusFilesExplorer", | |
| "key": "ctrl+b", | |
| "when": "editorTextFocus", | |
| }, | |
| { | |
| "key": "n", | |
| "command": "explorer.newFile", | |
| "when": "filesExplorerFocus && !inputFocus", | |
| }, | |
| { | |
| "key": "shift+n", | |
| "command": "explorer.newFolder", | |
| "when": "explorerViewletFocus", | |
| }, | |
| { | |
| "command": "renameFile", | |
| "key": "r", | |
| "when": "filesExplorerFocus && !inputFocus", | |
| }, | |
| { | |
| "command": "deleteFile", | |
| "key": "d", | |
| "when": "filesExplorerFocus && !inputFocus", | |
| }, | |
| { | |
| "key": "ctrl+z", | |
| "command": "workbench.action.toggleZenMode", | |
| }, | |
| { | |
| "key": "ctrl+s ctrl+b", | |
| "command": "workbench.action.toggleStatusbarVisibility", | |
| }, | |
| { | |
| "key": "shift+space", | |
| "command": "workbench.action.debug.restart", | |
| "when": "inDebugMode", | |
| }, | |
| { | |
| "key": "ctrl+shift+f5", | |
| "command": "-workbench.action.debug.restart", | |
| "when": "inDebugMode", | |
| }, | |
| { | |
| "key": "alt+h", | |
| "command": "workbench.action.previousEditor", | |
| }, | |
| { | |
| "key": "alt+l", | |
| "command": "workbench.action.nextEditor", | |
| }, | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment