Languages
[Edit]
EN

VS Code - configure Ctrl+Shift+U to convert selected text to upper-case

4 points
Created by:
Remy-Lebe
802

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:

  1. press Ctrl+Shift+P keys,
  2. type: open keyboard shortcuts,
  3. press Enter key,
  4. open JSON view for the current configuration (top right corner button),
  5. paste the following configuration:
    [
        {
            "key": "ctrl+shift+u",
            "command": "editor.action.transformToUppercase",
            "when": "editorTextFocus"
        },
        {
            "key": "ctrl+shift+l",
            "command": "editor.action.transformToLowercase",
            "when": "editorTextFocus"
        }
    ]

See also

  1. VS Code - transform text to upper case 

Alternative titles

  1. VS Code - enable Ctrl+Shift+U to convert selected text to upper-case
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join