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

时间:2017-05-28 19:40:37

标签: comments phpstorm

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

protected function before()
{
//    echo "(before) ";  
}

但是我期待这种行为:

protected function before()
{
    //echo "(before) ";  
}

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

2 个答案:

答案 0 :(得分:5)

  1. Settings/Preferences
  2. Editor | Code Style | PHP
  3. Other标签并取消选中Line comments at first column选项
  4. enter image description here

答案 1 :(得分:0)

PhpStorm 2018.3及更高版本:

  1. 文件->设置( Ctrl + Alt + S

  2. 编辑器->代码样式-> PHP

  3. (选项卡)代码生成->注释代码->(取消选中)第一列的行注释