Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

php

netbeans

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.

like image 678
тараканы_простыли Avatar asked Mar 23 '13 09:03

тараканы_простыли


1 Answers

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.

like image 144
Kim Avatar answered Oct 20 '22 04:10

Kim