Does either netbeans or eclipse have any plugins where you can quickly navigate the project?
I want something like intelliJ's navigation options, like where you just presss control-N and simply type the filename you want to jump to, or class name.
Does either netbeans or eclipse have any plugins where you can quickly navigate the project?
I want something like intelliJ's navigation options, like where you just presss control-N and simply type the filename you want to jump to, or class name.
In Eclipse, Ctrl+Shift+T is search by type. Ctrl+Shift+R is find by file.
Consider reading these questions as well, keyboard shortcuts in eclipse and hidden featuers of eclipse
In addition to the open type and open resources dialogs already mentioned by basszero, I find quick access (Ctrl+3) very useful: it's just like the above, but for all other Eclipse elements (views, editors, preferences, menu items, etc.).
It varies slightly depending on which version of NB you're running. In NB 6.8 there are these bindings (among others):
Alt+Shift+O - Go To File (prompt for file name)
Ctrl+O - Go To Type (under the cursor)
CtrlAlt+Shift+O - Go To Symbol (prompt for symbol name)
CtrlShift+B - Go To Declaration (of symbol under cursor)
Ctrl+B - Go To Source (of method under cursor)
CtrlShift+P - Go To Super implementation (of method under cursor)