【发布时间】:2013-06-21 07:17:59
【问题描述】:
我有这段文字
$test1 = 'testing1';
$test1test1 = 'testing1';
$test1test1test1 = 'testing1';
$test1 = 'testing1';
我想像这样使用制表符对齐它,
$test1 = 'testing1';
$test1test1 = 'testing1';
$test1test1test1 = 'testing1';
$test1 = 'testing1';
有没有办法在 phpstorm 或 webstorm 中做到这一点?
【问题讨论】:
-
对齐连续分配选项是您要找的吗?检查this blog post。
-
ctrl+alt+shft+L 来源:: jetbrains.com/help/phpstorm/10.0/reformatting-source-code.html
标签: php text alignment phpstorm webstorm