From: Yegappan Lakshmanan Date: Wed, 21 Feb 2024 17:09:06 +0000 (-0800) Subject: Add missing comma X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=718540a455a86e7aa7f63abe7002aa0aeb681b8f;p=vim-lsp.git Add missing comma --- diff --git a/autoload/lsp/handlers.vim b/autoload/lsp/handlers.vim index 85af2c2..68772e7 100644 --- a/autoload/lsp/handlers.vim +++ b/autoload/lsp/handlers.vim @@ -197,7 +197,7 @@ enddef # Request: "client/registerCapability" # Param: RegistrationParams def ProcessClientRegisterCap(lspserver: dict, request: dict) - lspserver.sendResponse(request, null {}) + lspserver.sendResponse(request, null, {}) enddef # process the client/unregisterCapability LSP server request