autoload/lsp/handlers.vim | 5 ++++- diff --git a/autoload/lsp/handlers.vim b/autoload/lsp/handlers.vim index 60f69f3e9a735b8f2abeb06ceab431c8b211b19c..e213c16227f87c6b5e85683268b74b36de120ee2 100644 --- a/autoload/lsp/handlers.vim +++ b/autoload/lsp/handlers.vim @@ -106,7 +106,10 @@ # not in the LSP specification. '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)