autoload/lsp/handlers.vim | 4 ++-- diff --git a/autoload/lsp/handlers.vim b/autoload/lsp/handlers.vim index 6adc59cfcebc6d2acdc871be95c0dc0f0d29bab2..9098975b2a40fb1117736bf122ed9b27db63b457 100644 --- a/autoload/lsp/handlers.vim +++ b/autoload/lsp/handlers.vim @@ -73,7 +73,7 @@ ftypeNtfOnceMap->extend({[&ft]: v:true}) endif enddef -# ignore unsupported notification message +# silently ignore an unsupported notification message def IgnoreNotif(lspserver: dict, reply: dict) enddef @@ -84,7 +84,7 @@ { 'window/showMessage': ProcessShowMsgNotif, 'window/logMessage': ProcessLogMsgNotif, 'textDocument/publishDiagnostics': ProcessDiagNotif, - '$/progress': ProcessUnsupportedNotif, + '$/progress': IgnoreNotif, '$/logTrace': ProcessLogTraceNotif, 'telemetry/event': ProcessUnsupportedNotifOnce, # Java language server sends the 'language/status' notification which is