diff --git a/runtime/lua/vim/lsp/buf.lua b/runtime/lua/vim/lsp/buf.lua index 9e0cc43c55..ee77b68362 100644 --- a/runtime/lua/vim/lsp/buf.lua +++ b/runtime/lua/vim/lsp/buf.lua @@ -389,11 +389,9 @@ function M.signature_help(config) local sfx = total > 1 and string.format(' (%d/%d)%s', idx, total, can_cycle and ' ( 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