Reputation: 6332
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){...}
Upvotes: 315
Views: 185176
Reputation: 8482
You may take a look at IntelliJ code folding shortcuts.
Upvotes: 615
Reputation: 131
I realize this doesn't answer the question as asked, but ticking the Method bodies option in Code Folding settings may solve OP's problem. If enabled, all methods are folded by default.
Upvotes: 1
Reputation: 65
You can go to setting > editor > general > code folding and check "Show code folding outline" .
Upvotes: 3
Reputation: 25966
In Rider, this would be Ctrl +Shift+Keypad *, 2
But!, you cannot use the number 2 on keypad, only number 2 on the top row of the keyboard would work.
Upvotes: 1
Reputation: 4001
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.)
Upvotes: 162
Reputation: 24443
@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.
Upvotes: 11
Reputation: 6968
go to menu option Code > Folding to access all code folding related options and their shortcuts.
Upvotes: 30