The question is how to make CTRL + SHIFT + U work in Visual Studio Code. Here's how to do it. (Version 1.8.1 or higher).
File-> Settings β Hotkeys.
An editor will appear with the keybindings.json file. Put the next JSON there and save.
[ { "key": "ctrl+shift+u", "command": "editor.action.transformToUppercase", "when": "editorTextFocus" }, { "key": "ctrl+shift+l", "command": "editor.action.transformToLowercase", "when": "editorTextFocus" } ]
Now CTRL + SHIFT + U will use the selected text, even if multi-line. Similarly, CTRL + SHIFT + L will make the selected text lowercase.
These commands are built into the VS code, and they do not require extensions to work.
Sunil Purushothaman Jan 17 '17 at 3:18 2017-01-17 03:18
source share