NetBeans PHP biçimlendirme kuralları

0 Cevap php

How I can change NetBeans 6.9 formatting rule to change this autoformatting:

if (true)
{
    if (true)
    {
    }if (true)
    {
    }$do_something_else;
}return;

to

if (true)
{
    if (true)
    {
    }
    if (true)
    {
    }
    $do_something_else;
}
return;

Ne yazık ki php dosyalarında tüm kod boşluksuz tek bir satırda kaydedilir. Ben aynı tek çizgi stili ve sonra NetBeans kod örneği kurtarmıştı zaman ve basın Alt + (bu http://developmentality.wordpress.com/2010/12/06/customize-code-formatting-in-netbeans/ ayarlarla) biçimlendirmek için shift + F sonra yok yeni hat ile bazı sorun var eğer yakın etiket

0 Cevap