Netbeans shortcut to minimise all functions

keyboard shortcutsnetbeansPHP

I recently got into Netbeans. I used to code in Visual studio, so I'm trying to figure out what all the shortcuts are that I used to use in Visual Studio. CTRL-SHIFT-S, for one, is the same. But I don't (and can't find online) the shortcut keys to minimise all FUNCTION in the code.

E.g:

function bla() {
  print 'hello';
  print 'world';
}

will become:

function bla() {..}

(i.e. minimised)

Anyone know how to do that?

Best Answer

The default is CTRL+SHIFT+-. But you can adjust this in Tools -> Options -> Keymap.

Related Question