Skip to content

Instantly share code, notes, and snippets.

@GeorgeHernandez
Last active February 7, 2024 21:01
Show Gist options
  • Save GeorgeHernandez/2d6361a01a7a2308e2df298be25d26f5 to your computer and use it in GitHub Desktop.
Save GeorgeHernandez/2d6361a01a7a2308e2df298be25d26f5 to your computer and use it in GitHub Desktop.
My key bindings for keyboard shortcuts in Visual Studio Code (VSC).
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+alt+c",
"command": ""
},
{
"key": "ctrl+alt+v",
"command": "extension.convertSelection"
},
{
"key": "ctrl+k ctrl+l",
"command": "editor.action.transformToLowercase"
},
{
"key": "ctrl+k ctrl+u",
"command": "editor.action.transformToUppercase"
},
{
"key": "ctrl+k tab",
"command": "type",
"args": { "text": "\t" },
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment