Skip to content

Instantly share code, notes, and snippets.

@fbedussi
Created December 30, 2025 22:54
Show Gist options
  • Select an option

  • Save fbedussi/7f32e717aebef3cc1908084a7c44b8d2 to your computer and use it in GitHub Desktop.

Select an option

Save fbedussi/7f32e717aebef3cc1908084a7c44b8d2 to your computer and use it in GitHub Desktop.
Keybindings VS code 2025
// 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