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

Phpstorm 設定註釋符縮排位置

在日常PHP專案開發中,使用 Phpstrom 單行註釋時,註釋符號「//」沒有和程式碼縮排的位置對齊。

註釋不對齊情況:

function test() { 
    //這是註釋
//    return false; 
}

我們想要的是下面這種:

function test() {
    //這是註釋
    //return false;
}

設定方式:

選單欄:File > Settings > Editor > Code Style > PHP
取消勾選「Code Generation」 選項卡下的「Line comment at first column」
新增勾選 「Code Generation」 選項卡下的「Add a space at comment start」
設定好後,依次點選「Apply」、「OK」按鈕,使配置生效。

在這裡插入圖片描述