From: Maxim Yurevich Date: Tue, 29 Aug 2023 21:36:59 +0000 (+0300) Subject: fix: ignore `eslint/status` and `taplo/didChangeSchemaAssociation` X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=f636568987cb25d5297409dcca35646e5e15d480;p=vim-lsp.git fix: ignore `eslint/status` and `taplo/didChangeSchemaAssociation` --- diff --git a/autoload/lsp/handlers.vim b/autoload/lsp/handlers.vim index 45acb70..7bf27c9 100644 --- a/autoload/lsp/handlers.vim +++ b/autoload/lsp/handlers.vim @@ -116,7 +116,9 @@ export def ProcessNotif(lspserver: dict, reply: dict): void # pyright language server notifications 'pyright/beginProgress', 'pyright/reportProgress', - 'pyright/endProgress' + 'pyright/endProgress', + 'eslint/status', + 'taplo/didChangeSchemaAssociation' ] if lsp_notif_handlers->has_key(reply.method)