How to make PHPStorm collapsing all methods/functions on file open?

44,408

Solution 1

Solution found (File -> Settings -> Editor -> General -> Code Folding

enter image description here

Solution 2

This works for me: CTRL SHIFT numpad -

It also collapses the class... but then just manually re-open the class by clicking the + and the methods are folded.

And then you can re-open all methods with CTRL SHIFT numpad +

https://www.jetbrains.com/help/phpstorm/code-folding-commands.html

Solution 3

You don't need to change anything in the settings like Dmitry suggested.

Simply do ⌥⌘⌨ *1 -- That's OPTION+CMD+NumPad *, then 1.

If you're on Windows, it's CTRL+SHIFT+NumPad *, then 1.

Solution 4

I'm using ubuntu,

the command is

-> CTL, SHIFT and MINUS ( this will collapse the whole class including all methods )

-> CTL, PLUS ( will expand the class but all methods should be collapsed )

-> CTL, SHIFT and PLUS ( will expand the whole class including all methods )

Solution 5

for windows PhpStorm 2021.1

ctrl + expand method
ctrl - collapse method
ctrl+shift - collapse all method
ctrl+shift + expand all method

Share:
44,408
Dmitry K.
Author by

Dmitry K.

Updated on July 08, 2022

Comments

  • Dmitry K.
    Dmitry K. almost 2 years

    How to make something like this? (all methods collapsed by default without any hotkeys)

    collapsed methods