Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Shortcut for Capitalizing in Android Studio

I want a shortcut for capitalize (change first letter of every word to upper case) in Android studio.

I know that Toggle Case shortcut is Ctrl+Shift+U (Command+Shift+U on Mac) in Android Studio.

I want a shortcut for capitalize just first letter of all words... it would be very useful for Javadocs.

like image 443
AliSh Avatar asked Sep 27 '22 21:09

AliSh


1 Answers

You should use String Manipulation plugin:

http://plugins.jetbrains.com/plugin/?id=2162

it supports Capitalize selected text.

When you install this plugin, you can select your text and use Alt+M to open String Manipulation menu.

like image 172
Derek Fung Avatar answered Oct 03 '22 15:10

Derek Fung