在Visual Studio中,您可以使用#region
和#endregion
包装开发人员定义的代码块.
我很想在PhpStorm中看到这个功能,它是组织大型源文件的理想方式(例如大量的接口实现).
有可能让PhpStorm表现得这样吗?
对不起,目前无法做到.
请投票并观看此票:https://youtrack.jetbrains.com/issue/WI-261
更新
它现在已经实现(自PhpStorm v4) - 查看PhpStorm的博客了解详情:http://blog.jetbrains.com/webide/2012/03/new-in-4-0-custom-code-folding-regions/
//// Your code goes here //
现在也支持默认崩溃状态(从PhpStorm v8,IIRC开始),尽管您必须手动添加此类部件.例如
//
#region
语法也受支持.
我也在寻找这个,并发现它现在可用于版本4 EAP.
工作范例:
// region Private members private $db; private $cache; // endregion