Ben vim girinti yaptığı gibi Eclipse benim php diziler biçimlendirmek almak için mücadele ettik.
Ne tutulması yapar (CTRL + SHIFT + F)
<?php
$array = array(
'key1' => 'value1',
'key2' => array(
'child_key1' => 'child_value1',
'child_key2' => 'child_value2',
),
);
Ne vim yapar (tuşlara: gg = G)
<?php
$array = array(
'key1' => 'value1',
'key2' => array(
'child_key1' => 'child_value1',
'child_key2' => 'child_value2',
),
);
I've tried looking in Preferences>PHP>Code Style>Formatter and Preferences>PHP>Editor>Templates but haven't found anything.
Thanks in advance.
Kehan