mirror of
https://github.com/neovim/neovim.git
synced 2025-09-05 19:08:15 +00:00
fix(lsp): don't override config.title
in vim.lsp.buf.signature_help()
#35075
This commit is contained in:

committed by
GitHub

parent
b4ba27c238
commit
afebbd0f34
@@ -407,11 +407,9 @@ function M.signature_help(config)
|
||||
local sfx = total > 1
|
||||
and string.format(' (%d/%d)%s', idx, total, can_cycle and ' (<C-s> to cycle)' or '')
|
||||
or ''
|
||||
local title = string.format('Signature Help: %s%s', client.name, sfx)
|
||||
if config.border then
|
||||
config.title = title
|
||||
else
|
||||
table.insert(lines, 1, '# ' .. title)
|
||||
config.title = config.title or string.format('Signature Help: %s%s', client.name, sfx)
|
||||
if not config.border then
|
||||
table.insert(lines, 1, '# ' .. config.title)
|
||||
if hl then
|
||||
hl[1] = hl[1] + 1
|
||||
hl[3] = hl[3] + 1
|
||||
|
Reference in New Issue
Block a user