Skip to content

Commit

Permalink
fixed: flicker when using quickui#tools#preview_tag()
Browse files Browse the repository at this point in the history
  • Loading branch information
skywind3000 committed Jan 21, 2020
1 parent 5454839 commit e30b486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/quickui/tools.vim
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ function! quickui#tools#preview_tag(tagname)
call quickui#utils#errmsg('Error: no "line" information in your tags, regenerate with -n')
return 3
endif
let text = ' ('.(ptag.index + 1).'/'.len(ptag.taglist).') '
let text = '('.(ptag.index + 1).'/'.len(ptag.taglist).')'
call quickui#preview#open(filename, taginfo.line, 0, text)
let text = taginfo.name
let text.= ' ('.(ptag.index + 1).'/'.len(ptag.taglist).') '
Expand Down

0 comments on commit e30b486

Please sign in to comment.