Skip to content

Instantly share code, notes, and snippets.

@behrouze
Last active November 3, 2019 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save behrouze/e5b2a76b8df005e554423259f5c1e230 to your computer and use it in GitHub Desktop.
Save behrouze/e5b2a76b8df005e554423259f5c1e230 to your computer and use it in GitHub Desktop.
VSCode keyboard shortcuts
// top raccourci claviers favoris pour VSCode
[
{
"key": "ctrl+w",
"command": "workbench.action.closeActiveEditor"
},
{
"key": "ctrl+k ctrl+i",
"command": "editor.foldRecursively"
},
{
"key": "ctrl+k ctrl+k",
"command": "editor.unfoldRecursively"
},
{
"key": "ctrl+k ctrl+l",
"command": "editor.toggleFold"
},
{
"key": "alt+left",
"command": "workbench.action.navigateBack"
},
{
"key": "alt+right",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+k ctrl+d",
"command": "editor.action.reindentlines",
"when": "editorFocus"
},
{
"key": "ctrl+shift+u",
"command": "editor.action.transformToUppercase",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+l",
"command": "editor.action.transformToLowercase",
"when": "editorTextFocus"
},
{
"key": "ctrl+[Quote]",
"command": "terminal.toggle"
},
{
"key": "ctrl+alt+w",
"command": "editor.emmet.action.wrapWithAbbreviation"
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment