Skip to content

Commit

Permalink
Ack.vim now prefers the silver searcher.
Browse files Browse the repository at this point in the history
  • Loading branch information
teasp00n committed Dec 12, 2013
1 parent b8c7d23 commit ffdb88d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .vimrc.bundles
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@
Bundle 'gmarik/vundle'
Bundle 'MarcWeber/vim-addon-mw-utils'
Bundle 'tomtom/tlib_vim'
if executable('ack-grep')
if executable('ag')
Bundle 'mileszs/ack.vim'
let g:ackprg = 'ag --nogroup --nocolor --column --smart-case'
elseif executable('ack-grep')
let g:ackprg="ack-grep -H --nocolor --nogroup --column"
Bundle 'mileszs/ack.vim'
elseif executable('ack')
Bundle 'mileszs/ack.vim'
elseif executable('ag')
Bundle 'mileszs/ack.vim'
let g:ackprg = 'ag --nogroup --nocolor --column --smart-case'
endif
" }

Expand Down

0 comments on commit ffdb88d

Please sign in to comment.