NetBeans shortcut key for collapsing/expanding a method

孤人 提交于 2019-11-30 10:25:32

问题


JAVA - NETBEANS

This is an IDE question

I am always working with collapsed methods, because I want to be able to see my methods all together. This is a little time consuming because I have to use the mouse to scroll up to the declaration of the method and click on the - (minus) icon. And then respectively go to the method I want to work on and click on the + (plus) icon.

Is there a way through a keyboard shortcut to do the collapse (and respectively the expand)?


回答1:


I copied a piece from http://wiki.netbeans.org/KeymapProfileFor60.

The first option is for Win/Lin and the second for Mac.

Collapse (hide) a block                     Ctrl + Minus                 Cmd + Minus
Collapse (hide) a block                     Ctrl + NumPad Minus     
Collapse (hide) all code blocks             Ctrl + Shift + NumPad Minus  Cmd + Shift + Minus
Expand a Collapsed Block (expand-fold)      Ctrl + Plus                  Cmd + Plus
Expand a Collapsed Block (expand-fold)      Ctrl + NumPad Plus  
Expand a Collapsed Block (expand-fold)      Ctrl + Equals                Cmd + Equals
Expand all code blocks (expand-all-folds)   Ctrl + Shift + NumPad Plus  
Expand all code blocks (expand-all-folds)   Ctrl + Shift + Plus          Cmd + Shift + Plus
Expand all code blocks (expand-all-folds)   Ctrl + Shift + Equals        Cmd + Shift + Equals 



回答2:


Just to offer an alternative, have you considered using the Navigator View to navigate within the members instead? I usually just leave all methods uncollapsed, and double click on the method in the Navigator view to go to that method. What's nice about the Navigator View are the icons which provide visual indicators of the type and visibility of methods and fields.




回答3:


Right click the window -> Code Folds -> Collapse All or Ctrl+Shift+Minus Sounds like what you ar looking for




回答4:


The best workaround I've found sofar is to right-click in the white space next to the file tree and then click on "Collapse All"




回答5:


The navigator view does not show loop blocks, logic blocks, etc. So there is no way to collapse that section under the "if this" so you can focus on the "else that" section.

NetBeans only supports collapsing functions/methods (Java) or collapsing based on their XML formatted comment strings (a terrible solution that is IDE specific and leaves traces of your IDE all over your code).




回答6:


To set default collapsing in netbean tool click Tools->Option->Editor->Folding, enable checkboxes



来源:https://stackoverflow.com/questions/2965200/netbeans-shortcut-key-for-collapsing-expanding-a-method

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!