mirror of
https://github.com/junegunn/fzf.vim.git
synced 2026-01-20 10:02:59 +08:00
Fix fzf#vim#complete#line with new bufname display
This has been broken in 397a2e6.
This commit is contained in:
@@ -250,7 +250,7 @@ function! fzf#vim#_lines(all)
|
||||
call extend(b == buf ? cur : rest,
|
||||
\ filter(
|
||||
\ map(lines,
|
||||
\ '(!a:all && empty(v:val)) ? "" : printf(s:blue("%2d\t", "TabLine")."%s".s:yellow("\t%4d ", "LineNr")."\t%s\t", b, bufname, v:key + 1, v:val)'),
|
||||
\ '(!a:all && empty(v:val)) ? "" : printf(s:blue("%2d\t", "TabLine")."%s".s:yellow("\t%4d ", "LineNr")."\t%s", b, bufname, v:key + 1, v:val)'),
|
||||
\ 'a:all || !empty(v:val)'))
|
||||
endfor
|
||||
return extend(cur, rest)
|
||||
|
||||
Reference in New Issue
Block a user