Commit 236fa5e

mo khan <mo@mokhan.ca>
2013-12-03 04:37:34
rename AG command to FindInFiles
1 parent e4e7509
Changed files (1)
vimrc
@@ -71,10 +71,9 @@ set showmatch   " briefly jump to the matching bracket.
 nnoremap / /\v
 vnoremap / /\v
 nnoremap K :grep! "\b<C-R><C-W>\b"<CR>:cw<CR>
-if executable('ag')
-  command! -nargs=+ -complete=file -bar Ag silent! grep! <args>|cwindow|redraw!
-  nnoremap F :Ag<SPACE>
-endif
+command! -nargs=+ -complete=file -bar FindInFiles silent! grep! <args>|cwindow|redraw!
+nnoremap F :FindInFiles<SPACE>
+
 " }}}}
 
 "" Wild settings {{{{