Reputation: 56699
What is the Intellij shortcut to convert code to upper or lower case?
Upvotes: 345
Views: 128680
Reputation: 470
Toggle case in Mac OS and Windows OS :
Ctrl
+Shift
+U
but in Ubuntu OS you can use it in tab Edit=>Toggle Case or change key map setting of Toggle Case to :
Alt
+Shift
+U
Upvotes: 1
Reputation: 340973
Ctrl + Shift + U
Or ⌘ Command + Shift + U if you are using Mac OSX.
In the future, hit the Ctrl + Shift + A shortcut key and search for the action that you are after. In this case, search for: Toggle Case.
Upvotes: 570
Reputation: 4096
Select the text/word/line to be modified and hitting Cntrl+Shift+U or Command+Shift+U` (MAC) works. Please look here for more detail
Upvotes: 4
Reputation: 14022
If you are an Ubuntu User you will notice that Ctrl + Shift + U
will add an u instead of toggling the case.
The solution for me was to change the KeyMap from:
Ctrl + Shift + U --> Alt + Shift + U
You can do so with this Docs
Upvotes: 29
Reputation: 27
Toggle case in Intellij IDE:
For Ubuntu OS use Ctrl+Shift+x or Ctrl+Shift+y
For Windows OS use Ctrl+Shift+u
Upvotes: 2
Reputation: 5391
I would highly recommend String Manipulation plugin for Intellij.
With a simple Alt + M (Option + M for Mac) you get:
So you can easily manipulate with strings in the following way:
Upvotes: 30
Reputation: 7546
Please check your hot-key settings first. You could go to
File > Settings > Search for Keymap > Search for Toggle Case
and see what hot-key has been configured. See screenshot below:-
If not configured, create a new one for yourself.
Upvotes: 4
Reputation: 401182
According to the documentation :
Ctrl + Shift + U : Toggle case of the selected text block
Upvotes: 47