I use "switch case" feature in the keys, of this plugin, to switch various cases of selected text:

It usually works, but I think that only if I use at least 2 words. Suppose you take this example of enum values, that you wish to set all caps (kotlin code) :
enum class ItemType{
TermsOfUse , PrivacyPolicy, Acknowledgements,AppVersion
}
All of them work well, except for "Acknowledgements" which can only be replaced to "acknowledgements" and back to "Acknowledgements".
The others eventually become what they should: TERMS_OF_USE , PRIVACY_POLICY, APP_VERSION
I use "switch case" feature in the keys, of this plugin, to switch various cases of selected text:
It usually works, but I think that only if I use at least 2 words. Suppose you take this example of enum values, that you wish to set all caps (kotlin code) :
All of them work well, except for "Acknowledgements" which can only be replaced to "acknowledgements" and back to "Acknowledgements".
The others eventually become what they should: TERMS_OF_USE , PRIVACY_POLICY, APP_VERSION