Zend Studio 9搞砸了缩进

时间:2013-02-05 21:37:48

标签: zend-studio

我正在将我的项目从Zend Studio 5移到9.

Zend 9毁了我的缩进。以前我的代码格式化为选项卡是两个空格。现在,Zend使用了四个空格,有些线条比以前更加缩进。

Before:
  $a=1;
  $b=1;
  $c=1;
  for ($i=0; $i<10; $i++)
  {
    echo "test";
  }

Now
  $a=1;
    $b=1;
    $c=1;
    for ($i=0; $i<10; $i++)
    {
        echo "test";
    } 

我已尝试将标签策略设置为“空格”,并将缩进尺寸设置为“2”。但这不起作用。

1 个答案:

答案 0 :(得分:1)

我通过将显示的标签宽度设置为“2”来修复它。

这是在页面上:一般&gt;编辑&gt;文字编辑