I am a long-term user of Sublime Text, but recently downloaded WebStorm 6 (6.0.2), and I really like it, but I could not find a plugin that matches the Sublime Alignment plugin that formats my code, which I use widely (yes, I'm a little fanatical regarding my code formatting).
For example, in Sublime, I can take this block of code:
user : { name : "Bruce Wayne", alias : "Batman", favColour : "black", dob : "unknown" }
And after using the Alignment keyboard shortcut, it will be:
user : { name : "Bruce Wayne", alias : "Batman", favColour : "black", dob : "unknown" }
I looked at the option "Convert code" ( Code > Reformat Code... ), but in this case it does nothing for formatting, since Webstorm believes that it is already formatted correctly, which is actually quite right, just not my personal standards.
So my question is: is there a (fairly) easy way to achieve this, or is there a plugin that you know about available for WebStorm that offer the same / similar features?
Thanks in advance!
source share