Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save timmaffett/a61e8e56e03142299ae3467a950ff9bb to your computer and use it in GitHub Desktop.
Save timmaffett/a61e8e56e03142299ae3467a950ff9bb to your computer and use it in GitHub Desktop.
vscode useful shortcuts
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+k",
"command": "-editor.action.addCommentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+1",
"command": "moveActiveEditor",
"args": {
"to": "left",
"by": "tab",
"value": 150
},
},
{
"key": "ctrl+shift+9",
"command": "moveActiveEditor",
"args": {
"to": "right",
"by": "tab",
"value": 150
}
},
{
"key": "ctrl+shift+]",
"command": "editor.action.jumpToBracket",
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment