]> Sergey Matveev's repositories - vim-lsp.git/commitdiff
fix(handlers): ignore `sqlLanguageServer.finishSetup`
authorMaxim Yurevich <maxim.yurewitch@gmail.com>
Sun, 3 Sep 2023 17:58:06 +0000 (20:58 +0300)
committerMaxim Yurevich <maxim.yurewitch@gmail.com>
Sun, 3 Sep 2023 17:58:06 +0000 (20:58 +0300)
autoload/lsp/handlers.vim

index 7bf27c92ac61155281ce845330da21dd1e940fcd..2ecf525e21ef22e71411736327047ba8b99b58da 100644 (file)
@@ -118,7 +118,8 @@ export def ProcessNotif(lspserver: dict<any>, reply: dict<any>): void
       'pyright/reportProgress',
       'pyright/endProgress',
       'eslint/status',
-      'taplo/didChangeSchemaAssociation'
+      'taplo/didChangeSchemaAssociation',
+      'sqlLanguageServer.finishSetup'
     ]
 
   if lsp_notif_handlers->has_key(reply.method)