Ctrlp自定义忽略正则表达式

时间:2015-05-29 14:44:38

标签: regex vim ctrlp

Ctrlp的文档中有忽略文件夹的示例:

let g:ctrlp_custom_ignore = '\v[\/]\.(git|hg|svn)$'

当前在本地使用的工作(dotfiles的默认配置文件):

let g:ctrlp_custom_ignore = '\.git$\|\.hg$\|\.svn$'

我有文件夹_buildnode_modules等应该被忽略,但是在列表中添加新文件夹并没有解决我的问题,所有文件仍然出现在列表中文件,使Ctrlp几乎无用。

我的表情看起来像这样:

let g:ctrlp_custom_ignore = '\.git$\|\.hg$\|\.svn$\|_build$'

我做错了什么?

0 个答案:

没有答案