]> Sergey Matveev's repositories - vim-lsp.git/commitdiff
Add missing comma
authorYegappan Lakshmanan <yegappan@yahoo.com>
Wed, 21 Feb 2024 17:09:06 +0000 (09:09 -0800)
committerYegappan Lakshmanan <yegappan@yahoo.com>
Wed, 21 Feb 2024 17:09:06 +0000 (09:09 -0800)
autoload/lsp/handlers.vim

index 85af2c27d2a080da1ee2341790e0a78834d6e372..68772e75f4be888b2626fab8f02fcb2b4d00a855 100644 (file)
@@ -197,7 +197,7 @@ enddef
 # Request: "client/registerCapability"
 # Param: RegistrationParams
 def ProcessClientRegisterCap(lspserver: dict<any>, request: dict<any>)
-  lspserver.sendResponse(request, null {})
+  lspserver.sendResponse(request, null, {})
 enddef
 
 # process the client/unregisterCapability LSP server request