在 NERDTree 中隐藏某些文件

在 NERDTree 中隐藏某些文件

我想在 Vim NERDTree 插件中隐藏目标文件 (*.o)。该插件是否支持此功能?

答案1

您想使用 NERDTreeIgnore 选项,例如: let NERDTreeIgnore=['\.o$', '\~$']

请执行:help NERDTreeIgnore 获取更多信息。

答案2

希望这可能对新的 NerdTree 文档有所帮助。

// put this in your .vimrc
set wildignore+=*.pyc,*.o,*.obj,*.svn,*.swp,*.class,*.hg,*.DS_Store,*.min.*

// Nerdtree config for wildignore
let NERDTreeRespectWildIgnore=1

相关内容