EN
VS Code - configure Ctrl+Shift+U to convert selected text to upper-case
4
points
In this short article, we would like to show how to configure selected text transformation to an upper case under VS Code IDE when Ctrl+Shift+U keys are pressed.
Simple steps:
- press
Ctrl+Shift+Pkeys, - type:
open keyboard shortcuts, - press
Enterkey, - open JSON view for the current configuration (top right corner button),
- paste the following configuration:
[ { "key": "ctrl+shift+u", "command": "editor.action.transformToUppercase", "when": "editorTextFocus" }, { "key": "ctrl+shift+l", "command": "editor.action.transformToLowercase", "when": "editorTextFocus" } ]