autoload/lsp/handlers.vim | 5 ++++- diff --git a/autoload/lsp/handlers.vim b/autoload/lsp/handlers.vim index 9098975b2a40fb1117736bf122ed9b27db63b457..54869695cc0bf6ad4c865119e4939e369f8e4d6f 100644 --- a/autoload/lsp/handlers.vim +++ b/autoload/lsp/handlers.vim @@ -89,7 +89,10 @@ '$/logTrace': ProcessLogTraceNotif, 'telemetry/event': ProcessUnsupportedNotifOnce, # Java language server sends the 'language/status' notification which is # not in the LSP specification - 'language/status': IgnoreNotif + 'language/status': IgnoreNotif, + # Typescript language server sends the '$/typescriptVersion' notification + # which is not in the LSP specification + '$/typescriptVersion': IgnoreNotif } if lsp_notif_handlers->has_key(reply.method)