Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
*.pycNERDTreevimプラグインに表示されないようにファイルしたいのですが。
*.pyc
それを達成する方法は?
NERDTreeIgnoreオプションが必要です。たとえば、あなたの.vimrc:
NERDTreeIgnore
.vimrc
let NERDTreeIgnore = ['\.pyc$']
除外するNERDTreeIgnoreファイルに一致する正規表現の配列です。