Created
December 30, 2025 22:54
-
-
Save fbedussi/7f32e717aebef3cc1908084a7c44b8d2 to your computer and use it in GitHub Desktop.
Keybindings VS code 2025
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": "alt+t", | |
| "command": "workbench.action.terminal.toggleTerminal" | |
| }, | |
| { | |
| "key": "ctrl+shift+c", | |
| "command": "editor.action.commentLine", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+o ctrl+f", | |
| "command": "git.openFile" | |
| }, | |
| { | |
| "key": "ctrl+o ctrl+c", | |
| "command": "git.openChange" | |
| }, | |
| { | |
| "key": "alt+-", | |
| "command": "workbench.action.navigateBack", | |
| "when": "canNavigateBack" | |
| }, | |
| { | |
| "key": "alt+[BracketRight]", | |
| "command": "workbench.action.navigateForward", | |
| "when": "canNavigateForward" | |
| }, | |
| { | |
| "key": "ctrl+shift+-", | |
| "command": "-workbench.action.navigateForward", | |
| "when": "canNavigateForward" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment