我发现可以在java文件中创建自定义区域折叠,其中包含很好的行注释,如下所示:http://www.jetbrains.com/idea/webhelp/folding-custom-regions-with-line-comments.html但我可以看到这只适用于java文件。是否有可能使其在xml文件中工作,如pom.xml。
我想要实现的是在依赖项中引入自定义区域,以便更容易在它们之间导航。
答案 0 :(得分:2)
XML and HTML custom folding regions will be a new feature introduced in upcoming IDEA 2016.3 release (see IDEA-93649).
If you want to use these features now, you can download the IDEA 2016.3 EAP release now.
答案 1 :(得分:1)
您可以像XML
这样创建区域:
<!-- region This will show when folded -->
Your XML goes here.
<!-- endregion -->