Disable cursorLine for the hover-only popup
This commit is contained in:
parent
0b4da4c82b
commit
cfae062da1
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,6 @@ function! vimspector#internal#balloon#CreateTooltip(is_hover, ...)
|
|||
endif
|
||||
|
||||
let config = {
|
||||
\ 'cursorline': 1,
|
||||
\ 'wrap': 0,
|
||||
\ 'filtermode': "n",
|
||||
\ 'maxwidth': s:max_width,
|
||||
|
|
@ -232,6 +231,7 @@ function! vimspector#internal#balloon#CreateTooltip(is_hover, ...)
|
|||
else
|
||||
let config['filter'] = "CursorFilter"
|
||||
let config['moved'] = "any"
|
||||
let config['cursorline'] = 1
|
||||
let s:float_win = popup_atcursor(body, config)
|
||||
endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue