Fix tab handling bug in Tags command
This commit is contained in:
parent
11b29d1555
commit
b9c75fda50
1 changed files with 1 additions and 1 deletions
|
@ -322,7 +322,7 @@ function! s:tags_sink(lines)
|
|||
endif
|
||||
let cmd = get(get(g:, 'fzf_action', s:default_action), a:lines[0], 'e')
|
||||
let parts = split(a:lines[1], '\t\zs')
|
||||
let excmd = matchstr(parts[2:], '^.*\ze;"\t')
|
||||
let excmd = matchstr(join(parts[2:], ''), '^.*\ze;"\t')
|
||||
execute cmd s:escape(parts[1][:-2])
|
||||
let [magic, &magic] = [&magic, 0]
|
||||
execute excmd
|
||||
|
|
Loading…
Add table
Reference in a new issue