[fixes #501] Fix ag string typo。

This commit is contained in:
Buddy Magsipoc 2014-06-11 16:12:52 +08:00
parent 414ef37514
commit 1d27c7a015

View File

@ -2,7 +2,7 @@ unlet g:ctrlp_user_command
if executable('ag')
" Use ag in CtrlP for listing files. Lightning fast and respects .gitignore
let g:ctrlp_user_command =
\ 'ag %s --files-with-matches -g ""--ignore "\.git$\|\.hg$\|\.svn$"'
\ 'ag %s --files-with-matches -g "" --ignore "\.git$\|\.hg$\|\.svn$"'
" ag is fast enough that CtrlP doesn't need to cache
let g:ctrlp_use_caching = 0