Skip to content

Commit

Permalink
fix: define NormalFloat
Browse files Browse the repository at this point in the history
Neovim version `0.10` unlinked `NormalFloat` with `pmenu`, which caused
the popup background color to default to undefined (black/magenta etc
depending on what the default colorscheme is)

Should fix the issue reported by @milogert on discord, and return the
previous colors

Ref: #119
  • Loading branch information
roosta committed May 27, 2024
1 parent 7439a86 commit 0f358d9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions colors/srcery.vim
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ call s:HL('SrceryXgray6', s:xgray6)
call s:HL('Normal', s:bright_white, g:srcery_bg)

call s:HL('FloatBorder', s:white, g:srcery_bg)
call s:HL('NormalFloat', s:none, s:xgray2)

if v:version >= 700
" Screen line that the cursor is
Expand Down

0 comments on commit 0f358d9

Please sign in to comment.