Jetbrains / Intellij keyboard shortcut to collapse

2019-01-30 07:16发布

I'm working on some legacy code that has a class that is 10,000+ lines of code and has 100s of methods. Is there a shortcut for any jetbrains IDE (since the shortcut would likely be shared across all of them) to collapse all the methods / functions so that only the method signatures are shown?

something like this:

public String myMethod(String arg1, int arg2){...}

public String mySecondMethod(String arg1, int arg2){...}

5条回答
放荡不羁爱自由
2楼-- · 2019-01-30 07:37

You may take a look at intellij code folding shortcuts. I guess that Ctrl+Shift+- is exactly what you need.

For mac, you can use, Command+Shift+-

查看更多
我只想做你的唯一
3楼-- · 2019-01-30 07:47

You Can Go To setting > editor > general > code folding and check "show code folding outline" .

查看更多
看我几分像从前
4楼-- · 2019-01-30 07:48

go to menu option Code > Folding to access all code folding related options and their shortcuts.

查看更多
趁早两清
5楼-- · 2019-01-30 07:49

The above suggestion of Ctrl+Shift+- code folds all code blocks recursively. I only wanted to fold the methods for my classes.

Code > Folding > Expand all to level > 1

I managed to achieve this by using the menu option Code > Folding > Expand all to level > 1.

I re-assigned it to Ctrl+NumPad-1 which gives me a quick way to collapse my classes down to their methods.

This works at the 'block level' of the file and assumes that you have classes defined at the top level of your file, which works for code such as PHP but not for JavaScript (nested closures etc.)

查看更多
老娘就宠你
6楼-- · 2019-01-30 07:50

@precastic's answer above is, imo, the right idea.

Worth noting that in IDEA 2018.2 (and surely other nearby versions) there are default keyboard shortcuts for this: (showing Mac, see Code > Folding > Expand All to Level for your system):

Cmd+Option+Keypad *, 1 - expand all to level 1
Cmd+Option+Keypad *, 2 - expand all to level 2
...
Cmd+Option+Keypad *, 5 - expand all to level 5

Note: these are "second stroke" shortcuts. First press Cmd+Option+*, then release, then hit the number you want.

查看更多
登录 后发表回答