yegappan / fileselect

File Selector Vim Plugin
BSD 2-Clause "Simplified" License
18 stars 2 forks source link

honor 'wildignore' when filtering out files #14

Closed lacygoill closed 3 years ago

lacygoill commented 3 years ago

This PR tries to make the plugin honor the 'wildignore' option.

Note that the map() invocation uses an eval string instead of a lambda. This is because, at the script level, an eval string is still faster, just like in Vim script legacy. It's only inside a :def function that a lambda gets faster thanks to the compilation.