Vsiual Studioでは
選択範囲を
Ctrl + shft + uで大文字
Ctrl + uで小文字にできたのが
VSCODEではできなかったのでどうしたものかと思ったのですが、
ショートカットに設定できるみたい。
ショートカットの設定を開く
ショートカットの設定をファイルで開く
開いたら以下のjsonを追加
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+shift+u",
"command": "editor.action.transformToUppercase",
"when": "editorHasSelection && editorTextFocus"
},
{
"key": "ctrl+u",
"command": "editor.action.transformToLowercase",
"when": "editorHasSelection && editorTextFocus"
}
]