mirror of
https://github.com/junegunn/fzf.vim.git
synced 2026-02-21 17:18:40 +08:00
@@ -521,7 +521,10 @@ function! s:ag_handler(lines, with_column)
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
let cmd = get(get(g:, 'fzf_action', s:default_action), a:lines[0], 'e')
|
let cmd = get(get(g:, 'fzf_action', s:default_action), a:lines[0], 'e')
|
||||||
let list = map(a:lines[1:], 's:ag_to_qf(v:val, a:with_column)')
|
let list = map(filter(a:lines[1:], 'len(v:val)'), 's:ag_to_qf(v:val, a:with_column)')
|
||||||
|
if empty(list)
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
|
||||||
let first = list[0]
|
let first = list[0]
|
||||||
try
|
try
|
||||||
|
|||||||
Reference in New Issue
Block a user