1. 程式人生 > >phpstorm2018設定註釋符縮排位置

phpstorm2018設定註釋符縮排位置

phpstorm2018預設程式碼註釋符是在行首的,如下所示

function foo()
{
//    return "string";
}

那如果想修改註釋符預設位置,如下所示,該如何設定?

function foo()
{
    //return "string";
}

1.點選左上角的File,選擇setting

2.選擇Editor->Code Style->PHP->Code Generation->Comment Code 然後把選項中的Line comment at first column中的勾去掉,然後再點選Apply,最後點選ok就大功告成了!