Created
June 12, 2024 04:28
-
-
Save timmaffett/a61e8e56e03142299ae3467a950ff9bb to your computer and use it in GitHub Desktop.
vscode useful shortcuts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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