Skip to content

Instantly share code, notes, and snippets.

@eliocapelati
Last active December 26, 2018 13:05
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 eliocapelati/e9449e24f51c4485d56696292adaa1a8 to your computer and use it in GitHub Desktop.
Save eliocapelati/e9449e24f51c4485d56696292adaa1a8 to your computer and use it in GitHub Desktop.
VSCODE Key Bind for UpperCase and LowerCase
[
{
"key": "cmd+t l",
"command": "editor.action.transformToLowercase",
"when" : "editorTextFocus"
},
{
"key": "cmd+t u",
"command": "editor.action.transformToUppercase",
"when" : "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment