Skip to content

Commit e30b486

Browse files
author
skywind3000
committed
fixed: flicker when using quickui#tools#preview_tag()
1 parent 5454839 commit e30b486

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/quickui/tools.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ function! quickui#tools#preview_tag(tagname)
316316
call quickui#utils#errmsg('Error: no "line" information in your tags, regenerate with -n')
317317
return 3
318318
endif
319-
let text = ' ('.(ptag.index + 1).'/'.len(ptag.taglist).') '
319+
let text = '('.(ptag.index + 1).'/'.len(ptag.taglist).')'
320320
call quickui#preview#open(filename, taginfo.line, 0, text)
321321
let text = taginfo.name
322322
let text.= ' ('.(ptag.index + 1).'/'.len(ptag.taglist).') '

0 commit comments

Comments
 (0)