可以在Java文件中创建自定义折叠区域吗?
IntelliJ IDEA 仅自动为方法和类(以及其他类似事物)创建折叠区域。是否可以创建自定义折叠区域,以便我可以折叠/展开逻辑区域?
例如,有一个 Java 文件,其中包含 5 个获取/保存数据到 SharedPreferences 中的方法。我想将整个区域折叠在一起,而不是每种方法都一一折叠。
//fold this area from here...
public void method1()
{
...
}
public void method2(args)
{
...
}
public void method3(args, args)
{
...
}
//...to here!
有什么想法吗?
IntelliJ IDEA automatically creates folding area only for methods and classes (and other similar things). Is it possible to create a custom folding area so that I could fold/unfold logical area?
For example, there is a Java file which contains 5 methods which get/save data into the SharedPreferences
. I want to fold this whole region together, not each method one by one.
//fold this area from here...
public void method1()
{
...
}
public void method2(args)
{
...
}
public void method3(args, args)
{
...
}
//...to here!
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
突出显示它并按 Ctrl+。
或者,您可以右键单击,选择折叠,然后选择“折叠所选内容”。
Highlight it and go Ctrl+.
Alternatively, you can right click, select folding, and select "Fold Selection".