ray-x / lsp_signature.nvim

LSP signature hint as you type
Apache License 2.0
2.06k stars 57 forks source link

Black background on popup #193

Closed otavioschwanck closed 2 years ago

otavioschwanck commented 2 years ago

The popup not respect other popups, like cmp.

signature:

image

other popups:

image

OS: Mac.

Config: https://github.com/otavioschwanck/mood-nvim/blob/main/lua/user_lsp.example.lua

ray-x commented 2 years ago

You can tune z-index so CMP can have higher priority. There are limitations. When signature popup, it has no idea if cmp/Pmenu will popup or not. If cmp/Pmenu is already shown it will not cover those popups. Also another option is toggle_key which will close the popup

ray-x commented 2 years ago

Could you check the latest version with wrap option ?

otavioschwanck commented 2 years ago
image

Still with black box, wrap active.

✓ ray-x/lsp_signature.nvim: already up to date

ray-x commented 2 years ago

If you talking about the border background color. You need to find a colorscheme defined FloatBorder and NormalFloat which matchs your background (Normal).

Alternatively, you change the hi so FloatBorder NormalFloat and Normal use same guibg color

Please refer to Readme

image