Php EclipsePDT多行数组模板

Php EclipsePDT多行数组模板,php,eclipse,configuration,formatting,Php,Eclipse,Configuration,Formatting,当我键入如下新数组时: return array( 'test' => array() ); 然后在内部数组括号内,当我输入newline时,eclipse会执行类似的操作: return array( 'test' => array( // <- this indentation is made with tab instead of spaces ) ) 返回数组( '测试'=>阵列( //在pdt 3.3.0(现在是eclipse lun RC

当我键入如下新数组时:

return array(
    'test' => array()
);
然后在内部数组括号内,当我输入newline时,eclipse会执行类似的操作:

return array(
    'test' => array(
    // <- this indentation is made with tab instead of spaces
)
)
返回数组(
'测试'=>阵列(
//在pdt 3.3.0(现在是eclipse lun RC2)中,选项卡和空格的问题已修复

第二个问题-无效缩进,是已知错误(将在3.3.1中修复)——