Skip to content

Commit ac8dc7a

Browse files
committed
bugfix
1 parent 0b64014 commit ac8dc7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autoload/easycomplete/pum.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ function! s:RenderScrollBar()
682682
let scrollbar_opts = deepcopy(s:default_scroll_bar_pot)
683683
call extend(scrollbar_opts, pos)
684684
if empty(s:scrollbar_window)
685-
let hl = "Normal:PmenuSbar,NormalNC:PmenuSbar,CursorLine:PmenuSbar,Search:EasyNone"
685+
let hl = "Normal:PmenuSbar,NormalNC:PmenuSbar,CursorLine:PmenuSbar,Search:EasyNone,NonText:PmenuSbar"
686686
let s:scrollbar_window = s:OpenFloatWindow(s:scrollbar_buffer, scrollbar_opts, hl)
687687
else
688688
" update scroll window
@@ -716,7 +716,7 @@ function! s:RenderScrollThumb()
716716
endif
717717
if empty(s:scrollthumb_window)
718718
" create scrollthumb window
719-
let hl = "Normal:PmenuThumb,NormalNC:PmenuThumb,CursorLine:PmenuThumb"
719+
let hl = "Normal:PmenuThumb,NormalNC:PmenuThumb,CursorLine:PmenuThumb,NonText:PmenuThumb"
720720
let s:scrollthumb_window = s:OpenFloatWindow(s:scrollbar_buffer, scrollthumb_opts, hl)
721721
else
722722
" update scrollthumb window

0 commit comments

Comments
 (0)