【发布时间】:2014-07-07 21:17:51
【问题描述】:
当我像这样键入一个新数组时:
return array(
'test' => array()
);
然后当我输入换行符时,在内部数组括号内,eclipse 会这样做:
return array(
'test' => array(
// <- this indentation is made with tab instead of spaces
)
)
我在我的eclipse中设置了空格缩进,效果很好,但是当它扩展数组括号时,id会使用制表符进行缩进。
右括号的缩进级别也错误。
【问题讨论】:
标签: php eclipse configuration formatting