m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 16:45:38 -05:00

Ag w/o empty lines

Junegunn Choi
2015-07-13 04:00:02 +09:00
parent a5b41d0edc
commit 8d53a6bda9

@@ -149,7 +149,7 @@ endfunction
command! -nargs=* Ag call fzf#run({
\ 'source': printf('ag --nogroup --column --color "%s"',
\ escape(empty(<q-args>) ? '^' : <q-args>, '"\')),
\ escape(empty(<q-args>) ? '^(?=.)' : <q-args>, '"\')),
\ 'sink*': function('<sid>ag_handler'),
\ 'options': '--ansi --no-hscroll --expect=ctrl-t,ctrl-v,ctrl-x '.
\ '--multi --bind ctrl-a:select-all --color hl:68,hl+:110',