Commit 236fa5e
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 {{{{