From 1d27c7a015c2f9d965bf1a3f949f7f44d91cd208 Mon Sep 17 00:00:00 2001 From: Buddy Magsipoc Date: Wed, 11 Jun 2014 16:12:52 +0800 Subject: [PATCH] =?UTF-8?q?[fixes=20#501]=20Fix=20ag=20string=20typo?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vim/settings/ctrlp.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/settings/ctrlp.vim b/vim/settings/ctrlp.vim index 216687c1..43c9b822 100644 --- a/vim/settings/ctrlp.vim +++ b/vim/settings/ctrlp.vim @@ -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