我看过这个博客:Custom code folding regions in IntelliJ
但它对 Java 很有用,但它不适用于 Scala 。
答案 0 :(得分:8)
要做到这一点,我所做的就是在
之后添加一个新行 //<editor-fold desc="Description">
之前也是
//</editor-fold>
所以代码看起来像
//<editor-fold desc="Description">
def save() = {
//save
}
def findOne() = {
//fineOne
}
//</editor-fold>
如果代码折叠仍然无法使用,您可以从>
删除 //<editor-fold desc="Description">
并重新添加,然后就可以了。
我认为这是一个错误,而且是我正在做的解决方法。