Skip to content

Instantly share code, notes, and snippets.

@night-fury-rider
Created January 5, 2025 03:08
Show Gist options
  • Save night-fury-rider/f23eb3a15da401b4a8d18c69c232244c to your computer and use it in GitHub Desktop.
Save night-fury-rider/f23eb3a15da401b4a8d18c69c232244c to your computer and use it in GitHub Desktop.
Visual Studio Code - Windows - Keyboard Shortcuts Customization.
[
{
"key": "shift+ctrl+f",
"command": "editor.action.formatSelection",
"when": "editorHasDocumentSelectionFormattingProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+k ctrl+f",
"command": "-editor.action.formatSelection",
"when": "editorHasDocumentSelectionFormattingProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+d",
"command": "editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "shift+ctrl+k",
"command": "-editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "shift+ctrl+/",
"command": "editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+a",
"command": "-editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+ctrl+r",
"command": "workbench.action.quickOpen"
},
{
"key": "ctrl+p",
"command": "-workbench.action.quickOpen"
},
{
"key": "ctrl+l",
"command": "workbench.action.gotoLine"
},
{
"key": "ctrl+g",
"command": "-workbench.action.gotoLine"
},
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "shift+ctrl+]",
"command": "-workbench.action.nextEditor"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "shift+ctrl+[",
"command": "-workbench.action.previousEditor"
},
{
"key": "shift+ctrl+g",
"command": "git.checkout"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment