pechorin / any-jump.vim

Jump to any definition and references 👁 IDE madness without overhead 🚀
1.08k stars 40 forks source link

Is it possible to exclude certain directories? #53

Closed Blake-LeBlanc closed 4 years ago

Blake-LeBlanc commented 4 years ago

There are certain directories that I do NOT want any-jump to search through when looking for matches.

Is there currently any setting to exclude certain directories from search results?

Thank you again for your great plugin!

pechorin commented 4 years ago

Hello, @Blake-LeBlanc, can you try?

let g:any_jump_ignored_files = ['*.tmp', '*.temp', 'app/models']

I should add this to doc

Blake-LeBlanc commented 4 years ago

Hello, @Blake-LeBlanc, can you try?

let g:any_jump_ignored_files = ['*.tmp', '*.temp', 'app/models']

I should add this to doc

That does the trick, thank you Andrey!