I would like to *.pyc files not to be shown in NERDTree vim plugin.
*.pyc
How to achieve that?
You want the NERDTreeIgnore option. For example, in your .vimrc:
NERDTreeIgnore
.vimrc
let NERDTreeIgnore = ['\.pyc$']
Where NERDTreeIgnore is an array of regular expressions that match the files you want to exclude.
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
2 years ago
viewed
2406 times
active