From ee794573e55b9aa0537e40fdc0d6b76ffdf17100 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sat, 17 Oct 2015 01:36:08 +0900 Subject: [PATCH] [Ag] --nth 4..,.. (#27) --- autoload/fzf/vim.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fzf/vim.vim b/autoload/fzf/vim.vim index 1b083b2..e3a90ce 100644 --- a/autoload/fzf/vim.vim +++ b/autoload/fzf/vim.vim @@ -391,7 +391,7 @@ function! fzf#vim#ag(query, ...) \ 'source': printf('ag --nogroup --column --color "%s"', \ escape(empty(a:query) ? '^(?=.)' : a:query, '"\-')), \ 'sink*': s:function('s:ag_handler'), - \ 'options': '--ansi --delimiter : --nth 4.. --prompt "Ag> " '. + \ 'options': '--ansi --delimiter : --nth 4..,.. --prompt "Ag> " '. \ '--multi --bind ctrl-a:select-all,ctrl-d:deselect-all '. \ '--color hl:68,hl+:110'.s:expect()}, a:000) endfunction