Add 1 character padding to the sides of signature popup window.
Otherise, the leftmost character of popup looks like continuation of
line from underneath text in some colorschemes. A subtle improvemnt.
M autoload/lsp/signature.vim
# Close the previous signature popup and open a new one
lspserver.signaturePopup->popup_close()
- var popupID = text->popup_atcursor({moved: [col('.') - 1, 9999999]})
+ var popupID = text->popup_atcursor({padding: [0, 1, 0, 1], moved: [col('.') - 1, 9999999]})
var bnr: number = popupID->winbufnr()
prop_type_add('signature', {bufnr: bnr, highlight: 'LspSigActiveParameter'})
if hllen > 0