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.
- press
Ctrl
+Shift
+P
keys, - type:
open keyboard shortcuts
, - press
Enter
key, - open JSON view for the current configuration (top right corner button),
- paste the following configuration:
xxxxxxxxxx
1[
2{
3"key": "ctrl+shift+u",
4"command": "editor.action.transformToUppercase",
5"when": "editorTextFocus"
6},
7{
8"key": "ctrl+shift+l",
9"command": "editor.action.transformToLowercase",
10"when": "editorTextFocus"
11}
12]