您现在的位置是:首页 > 其他

李清波 2020-02-12 其他 1290 复制当前网址

phpstorm2018设置注释符缩进位置

phpstorm2018 默认代码注释符是在行首的,如下所示

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

那如果想修改注释符默认位置,如下所示,该如何设置?

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


方法:

1、左上角File->Settings

2、选择Editor->Code Style->PHP->Code Generation->Comment Code 然后把选项中的Line comment at first column中的勾去掉,然后再点击Apply,最后点击ok就大功告成了!


image.png

说明:

File > Settings > Editor > Code Style > PHP 

取消勾选 Other 选项卡下的 Line comment at first column 

勾选 Add a space at comment start 可在 // 后自动添加一个空格


文章来源:https://liqingbo.com/blog-1657.html

评论