我知道在PhpStorm中可以使用左侧的加号和减号删除这些评论:
/*
This is
a comment
*/
但目前,我有一些代码包含这些单行评论。
//Some text explaining the code beneath it
$foo = bar;
//Another piece of text explaining some code
$bar = foo;
PhpStorm中是否有快捷方式隐藏单行注释(使用" //"创建的注释)?当你有其中的一些时,它并没有真正困扰我,但是当有更多的评论而不是代码时,它会有点烦人。
提前致谢。
答案 0 :(得分:0)
请投票给IDEA-117927
解决方法:
1.使用自定义折叠区域,例如:
//region Some text explaining the code beneath it
//some more text
//endregion
$foo = bar;
2.更改注释颜色以使其不可见(https://youtrack.jetbrains.com/issue/IDEA-106542#comment=27-497674)