Search code examples
phpstorm

Switch name type in PhpStorm


How can I switch from "numberOfVoters" to "number-of-voters"? Is there some hotkey or extenstion for this?

Before

<div class="numberOfVoters"></div>

After (by pressing some hotkey)

<div class="number-of-voters"></div>

Solution

  • There is String Manipulation plug-in which does some conversions to the strings, like Convert selected text to Camel Case.

    It probably doesn't support exactly what you need, but you can try enhancing it with the custom manipulations and then submit a patch to the original developers. It should be easier than starting your own plugin from scratch.