Rahul
Rahul

Reputation: 13056

Faster search for files in Netbeans

Is there an existing plugin or tweak that speeds up the "Go To File" search in Netbeans ? Compared to Eclipse, Netbeans search is way too slow specially if one has multiple large size projects.

I know I can use CTRL+O for "Go To Type" but often I need to search for other file types like XMLs, property files etc. across thousands of files in multiple projects.

I installed the Quick Search plugin but even that doesn't search for non Java file types.

Upvotes: 65

Views: 68692

Answers (10)

Andrey Lebedenko
Andrey Lebedenko

Reputation: 1978

If all you need is to search by file name/pattern, then I suggest plugin "Quick File Search" http://plugins.netbeans.org/plugin/70267

Upvotes: 0

hendra1
hendra1

Reputation: 1387

http://plugins.netbeans.org/plugin/16495/open-file-fast

Find file fast will your solution for find file faster just like sublime.. using the shortcut alt+shift+o

hope it will help

Upvotes: 2

VanThaoNguyen
VanThaoNguyen

Reputation: 812

Press Ctrl + Shift + H.

On the screen appear option scope. Click on this text-box and choose the project you want to find needed text snippets, or you can find all of the projects. I am using Netbeans 8.1 Best regard !

Upvotes: -3

iberck
iberck

Reputation: 2430

You can install the recent file list plugin

This plugin is not as powerful as the intellij but to simulate the same behavior (open the recent files with ctrl+E):

After install the plugin assign the Ctrl+E shortcut to the "Recent Files" action: Tools->Options->Keymap->Search "Recent Files" and assign Ctrl+E shortcut

Upvotes: 0

Truong Chuong Duong
Truong Chuong Duong

Reputation: 1701

You can focus on the Project Tree and simply type the file name which you want to looking for. Press Up/Down to select if more than one file match your search.

Or use keyboard shortcut to open the search file form:

  • Windows/Linux:

Alt+Shift+O

  • Mac OS:

Control+Shift+O

Upvotes: 170

M_R_K
M_R_K

Reputation: 6350

For Mac users

control+shift+O

Upvotes: 2

user4298585
user4298585

Reputation:

The best way to search and open file in netbeans - Press CTRL+O and type file name you are looking for, it will search in current projects and list matching files

Upvotes: 9

Arkadiusz Cieśliński
Arkadiusz Cieśliński

Reputation: 5336

How to quickly find a file/files in netbeans. Maybe for someone it will be helpful.

  1. In Netbeans projects files view select some directory where you want to look for the file.
  2. Click ctrl+f to show the finder dialog
  3. Pass your file name into 'file name patterns' input
  4. In options set only 'Regular expression'
  5. The 'Containing text' input has to be empty

Upvotes: 2

Pierlo Upitup
Pierlo Upitup

Reputation: 1612

I can only recommend using the Open File Fast plugin http://plugins.netbeans.org/plugin/16495/open-file-fast

Upvotes: 4

Karussell
Karussell

Reputation: 17375

why not right click on the project and click 'find'?

Upvotes: 5

Related Questions