Exclude folders from search, but still consider in navigation for Netbeans 7 (php)

I'm using Netbeans 7 for php. Is it possible to exclude folders from search ONLY, and do not exclude code of these folders from navigation, when I perform ctrl+click navigation on class/method/constant name?

In Zend Studio to do this, I should mark folders as "Derived" (Properties of directory). I still can ctrl+click on derived classes to go to necessary declaration.

When I ignore folders in Netbeans, I cannot access to their code base through ctrl+click navigation anymore.

Upvotes: 13

Views: 2745

Answers (1)

Kim
Kim

Reputation: 2777

When searching the project (Windows: CTRL + SHIFT + F) there is a checkbox named Use Ignore List which is different from project ignored folders.

Click the edit link to define your file(s), folder(s) or pattern(s) to exclude.

Project ignored folders are automatically ignore during project search.

Upvotes: 18

Related Questions