Re: How to increase NB Search limit ?

2022-05-06 Thread Michael Bien
actually I was wrong - it has been indeed changed into properties not too long ago. try setting the "netbeans.search.count.limit" property. This is the file count limit for results which is set to 500 by default. "netbeans.search.details.count.limit" would be the limit for individual results,

Re: How to increase NB Search limit ?

2022-05-06 Thread negora
In situations in which I need to make massive replacements, I prefer to use the command line. It's more flexible and less expensive in terms of memory. In Linux I use a mix of "find", "while" and "perl" with regular expressions. For example:     find my-app/ -name '*.java' \         | while IF

Re: How to increase NB Search limit ?

2022-05-06 Thread Bilu
/this is likely hardcoded, I think I remember seeing some runaway limits in search code./     => too bad /you could run the same search/replace action multiple times, right?/ /    => /this /is what i was doing since the morning. it is not very helpfull with remote folders like smb sharing (ve

Re: How to increase NB Search limit ?

2022-05-06 Thread Michael Bien
Hi, this is likely hardcoded, I think I remember seeing some runaway limits in search code. you could run the same search/replace action multiple times, right? -mbien On 06.05.22 16:50, Bilu wrote: Hello, When Replacing in a large project i get: *the search was stopped because the limit

How to increase NB Search limit ?

2022-05-06 Thread Bilu
Hello, When Replacing in a large project i get: *the search was stopped because the limit for number of matching files (500) was reached.* Is there any propertie to override this behavior in the netbeans.conf? Please advise. Same for the 5000 occurrences matches