Skip to content

Instantly share code, notes, and snippets.

@MatthieuScarset
Last active March 6, 2024 09:28
Show Gist options
  • Save MatthieuScarset/7f206d5131b95c83f496c290cdb4c087 to your computer and use it in GitHub Desktop.
Save MatthieuScarset/7f206d5131b95c83f496c290cdb4c087 to your computer and use it in GitHub Desktop.
VSCode keybinding
[
{
// Open/close integrated terminal.
"key": "ctrl+shift+'",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+d",
"command": "editor.action.deleteLines",
"when": "editorTextFocus"
},
{
"key": "ctrl+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+g",
"command": "git.viewFileHistory",
"when": "editorTextFocus"
}{
"key": "ctrl+shift+alt+g",
"command": "git.viewFileHistory",
"when": "editorTextFocus"
}{
"key": "ctrl+alt+v",
"command": "svgviewer.open"
},
{
"key": "ctrl+shift+k",
"command": "editor.foldAll",
"when": "editorTextFocus"
},
{
"key": "ctrl+k",
"command": "editor.unfoldAll",
"when": "editorTextFocus"
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment