autoload/lsp/handlers.vim | 2 +- diff --git a/autoload/lsp/handlers.vim b/autoload/lsp/handlers.vim index 0a9fab686cdc4364ceac1d79f3ae971e6c2acc0b..79fc9f5562526b70f02b9a1922111e23de204b0e 100644 --- a/autoload/lsp/handlers.vim +++ b/autoload/lsp/handlers.vim @@ -34,7 +34,7 @@ # process a show notification message from the LSP server # Notification: window/showMessage # Param: ShowMessageParams def ProcessShowMsgNotif(lspserver: dict, reply: dict) - if reply.params.type == 4 + if reply.params.type >= 4 # ignore log messages from the LSP server (too chatty) # TODO: Add a configuration to control the message level that will be # displayed. Also store these messages and provide a command to display