PhpStorm:注释快捷方式在行首处放置斜杠

vet*_*eri 1 comments phpstorm

当我使用注释快捷方式(Ctrl + /)时,斜杠放在行的开头,如下所示:

protected function before()
{
//    echo "(before) ";  
}
Run Code Online (Sandbox Code Playgroud)

但是,我希望这种行为:

protected function before()
{
    //echo "(before) ";  
}
Run Code Online (Sandbox Code Playgroud)

如何配置PhpStorm以使用后一种方法?

Laz*_*One 5

  1. Settings/Preferences
  2. Editor | Code Style | PHP
  3. Other选项卡和取消选中Line comments at first column选项

在此输入图像描述

  • 它现在位于“代码生成”选项卡中 (2认同)