php - PhpStorm 7 align consecutive combined operators and assignments -


code style of php in phpstorm v7 can align consecutive assignments. there way make align combined operators well?

example:

$a = 1; $a *= 2; $foo = 2; 

should become:

$a   = 1; $a  *= 2; $foo = 2; 

there plugin can install via browse repositories button on plugins part of settings window called front end alignment.

once it's installed have command called regex align under code drop down. don't know except can highlight code want align , execute command. bring window , entered equals sign , hit ok , align code based on farthest equals sign.

i'm new phpstorm , found plugin i'm sure more should @ least started.

hope helps.


Comments

Popular posts from this blog

double exclamation marks in haskell -

qml - Is it possible to implement SystemTrayIcon functionality in Qt Quick application -

Qt Creator - Searching files with Locator including folder -