From: Yegappan Lakshmanan Date: Tue, 26 Jan 2021 03:17:54 +0000 (-0800) Subject: Use LineNr highlighting for signature as it is more visible with a dark background X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=6c22b52207390b38383bb581880c66c737f59742;p=vim-lsp.git Use LineNr highlighting for signature as it is more visible with a dark background --- diff --git a/autoload/handlers.vim b/autoload/handlers.vim index 7d3e210..6965569 100644 --- a/autoload/handlers.vim +++ b/autoload/handlers.vim @@ -104,7 +104,7 @@ def s:processSignaturehelpReply(lspserver: dict, req: dict, reply: dic endif endif var popupID = text->popup_atcursor({}) - prop_type_add('signature', {bufnr: popupID->winbufnr(), highlight: 'Title'}) + prop_type_add('signature', {bufnr: popupID->winbufnr(), highlight: 'LineNr'}) if hllen > 0 prop_add(1, startcol + 1, {bufnr: popupID->winbufnr(), length: hllen, type: 'signature'}) endif