Skip to content
This repository was archived by the owner on Oct 13, 2021. It is now read-only.

Commit 8c028d0

Browse files
committed
fix: mistyped handlers
1 parent 84aab99 commit 8c028d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/completion/signature_help.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ M.autoOpenSignatureHelp = function()
3030
local params = vim.lsp.util.make_position_params()
3131
vim.lsp.buf_request(0, 'textDocument/signatureHelp', params, function(err, method, result, client_id)
3232
local client = vim.lsp.get_client_by_id(client_id)
33-
local handler = client and client.handler['textDocument/signatureHelp']
33+
local handler = client and client.handlers['textDocument/signatureHelp']
3434
if handler then
3535
handler(err, method, result, client_id)
3636
return

0 commit comments

Comments
 (0)