how to align text to specific character in phpstorm or webstorm?

前端 未结 6 1145
南笙
南笙 2021-02-02 06:07

I have this text

$test1 = \'testing1\';
$test1test1 = \'testing1\';
$test1test1test1 = \'testing1\';
$test1 = \'testing1\';

and I would like to

6条回答
  •  礼貌的吻别
    2021-02-02 06:28

    Cmd+Alt+L (in Mac) or Ctrl+Alt+L (Win) and PHP Storm will format code depends of your Code style in Settings. TO set this code style go: File -> Settings -> Code style -> PHP(choose here your language) -> Other -> Align key-value pair - mark as checked. And then press Reformat code (Ctrl+Alt+L) and voila. You will get code, styled you write above.

提交回复
热议问题