我在 ubuntu 下处理 vim 中的乳胶文档,并希望使用CtrlP-Plugin快速打开不同的文件。
当我按下<c-p>
小窗口时,按预期打开,但在我实际要编辑thesis.pdf
的文件之前显示生成的文件作为第一次点击。thesis.tex
这是我的设置.vimrc
(来自ctrlp-repo):
let g:ctrlp_map = '<c-p>'
let g:ctrlp_custom_ignore = {
\ 'dir': '\v[\/]\.(git|hg|svn)$',
\ 'file': '\v\.(exe|so|dll|pdf)$',
\ }
如何让 CtrlP不在匹配列表中显示.pdf
-files(因为在 vim 中打开它们对我来说毫无意义)。我需要什么?