我读到了这个:
https://www.jetbrains.com/clion/help/folding-and-expanding-custom-blocks.html
并尝试点击此链接:
https://www.jetbrains.com/clion/help/Folding_Custom_Regions_with_Line_Comments.html
但它似乎被打破了,因为它重定向到" Meet CLion"页。
如何使用注释在CLion中定义自定义折叠区域?
答案 0 :(得分:11)
CLion基于IntelliJ IDEA,因此支持多种方式,包括:
//region Description
//endregion
和
//<editor-fold desc="Description">
//</editor-fold>
通过选择要包装在区域中的代码,然后点击 Ctrl + Alt + T ,可以轻松访问这些内容。您也可以点击Code
&gt;来访问它。菜单栏中显示Surround with...
。