From: Yegappan Lakshmanan Date: Tue, 23 May 2023 14:30:54 +0000 (-0700) Subject: Ignore the '$/analyzerStatus' notification message from the dart language server X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=132cf62fc72703b8d8622448fdca308cbc0950b3;p=vim-lsp.git Ignore the '$/analyzerStatus' notification message from the dart language server --- diff --git a/autoload/lsp/handlers.vim b/autoload/lsp/handlers.vim index 60f69f3..e213c16 100644 --- a/autoload/lsp/handlers.vim +++ b/autoload/lsp/handlers.vim @@ -106,7 +106,10 @@ export def ProcessNotif(lspserver: dict, reply: dict): void 'language/status', # Typescript language server sends the '$/typescriptVersion' # notification which is not in the LSP specification. - '$/typescriptVersion' + '$/typescriptVersion', + # Dart language server sends the '$/analyzerStatus' notification which + # is not in the LSP specification. + '$/analyzerStatus' ] if lsp_notif_handlers->has_key(reply.method)