Using NERDTree plugin, I want to view only *.txt files. There is a NERDTreeIgnore
variable, but I want something like NERDTreeWhitelistFilter
.
Is there a way to whitelist what I see?
I've been playing around with this — it's an interesting problem. Maybe you could try out this regular expression for ignoring files?
Edit: talked with my co-worker. Here's the correct regular expression (my original one matched "txt" at the beginning of a file name, too).
^(?!.*\.txt$).*
This is what you want:
:let NERDTreeIgnore += ['\(\.txt\)\@<!$[[file]]']
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With