gekh
gekh

Reputation: 2114

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>

Upvotes: 1

Views: 62

Answers (1)

CrazyCoder
CrazyCoder

Reputation: 401877

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.

Upvotes: 1

Related Questions