- In VSCode press
Ctrl + K, Ctrl + S
. - Then press the
Open JSON file with keyboard shortcuts
- Then paste the content of the file above into the file.
- Now you can use the shortcuts in VSCode
Last active
December 22, 2024 10:27
-
-
Save a1300/9f5795d89dfbc00264ec203d9a221b40 to your computer and use it in GitHub Desktop.
VS-Code keybindings vscode visual studio code keyboard 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 overwrite the defaults | |
[ | |
{ | |
"key": "ctrl+alt+1", | |
"command": "type", | |
"args": { | |
"text": "'" | |
}, | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+2", | |
"command": "type", | |
"args": { | |
"text": "<" | |
}, | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+3", | |
"command": "type", | |
"args": { | |
"text": ">" | |
}, | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+4", | |
"command": "type", | |
"args": { | |
"text": "|" | |
}, | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+5", | |
"command": "type", | |
"args": { | |
"text": "#" | |
}, | |
"when": "editorTextFocus" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment