andreikop / enki

A text editor for programmers
http://enki-editor.org
GNU General Public License v2.0
161 stars 39 forks source link

Find in files #361

Closed bjones1 closed 8 years ago

bjones1 commented 8 years ago

I would expect find in files to obey the same excludes given Settings | Settings | Ignored files..., but it ignore this.

andreikop commented 8 years ago

Do you mean Search in Directory functionality? I checked it, ignored files are ignored for me. What are the steps to reproduce?

bjones1 commented 8 years ago

Oops, yes, I meant Sarch in directory. Since I use Sphinx+CodeChat with output saved in _build, I have that directory in my ignored files. When I search, I get results like:

image

I'd like all the build_ results not to appear. Perhaps this is the backslash bug? On Windows, it's \ but on Unix /, and the mismatch is getting past the exclusions?

image

andreikop commented 8 years ago

Ah, I see now. Files were ignored, but not directories

bjones1 commented 8 years ago

Thanks!