m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-19 00:53:42 -05:00

Updated Examples (vim) (markdown)

Junegunn Choi
2015-05-14 14:59:55 +09:00
parent 85566a4452
commit 5495abc0fe

@@ -107,7 +107,7 @@ command! FZFLines call fzf#run({
```vim
function! s:ag_handler(lines)
if empty(a:lines) | return | endif
if len(a:lines) < 2 | return | endif
let [key, line] = a:lines[0:1]
let [file, line, col] = split(line, ':')[0:2]