We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6621cff + ffdb88d commit 3e9c952Copy full SHA for 3e9c952
.vimrc.bundles
@@ -61,14 +61,14 @@
61
Bundle 'gmarik/vundle'
62
Bundle 'MarcWeber/vim-addon-mw-utils'
63
Bundle 'tomtom/tlib_vim'
64
- if executable('ack-grep')
+ if executable('ag')
65
+ Bundle 'mileszs/ack.vim'
66
+ let g:ackprg = 'ag --nogroup --nocolor --column --smart-case'
67
+ elseif executable('ack-grep')
68
let g:ackprg="ack-grep -H --nocolor --nogroup --column"
69
Bundle 'mileszs/ack.vim'
70
elseif executable('ack')
71
- elseif executable('ag')
- Bundle 'mileszs/ack.vim'
- let g:ackprg = 'ag --nogroup --nocolor --column --smart-case'
72
endif
73
" }
74
0 commit comments