Skip to content

Commit

Permalink
Merge pull request #620 from BlackIkeEagle/consistent-ag-ack-ack-grep
Browse files Browse the repository at this point in the history
be consistent about ag, ack-grep and ack switches
  • Loading branch information
spf13 committed Jun 4, 2014
2 parents b15eeb6 + 33c31b4 commit cc84ca2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -549,6 +549,8 @@
let s:ctrlp_fallback = 'dir %s /-n /b /s /a-d'
elseif executable('ag')
let s:ctrlp_fallback = 'ag %s --nocolor -l -g ""'
elseif executable('ack-grep')
let s:ctrlp_fallback = 'ack-grep %s --nocolor -f'
elseif executable('ack')
let s:ctrlp_fallback = 'ack %s --nocolor -f'
else
Expand Down

0 comments on commit cc84ca2

Please sign in to comment.