From 63b3408551561127f7845470eb51404bcd6f547b Mon Sep 17 00:00:00 2001 From: Chris AtLee Date: Thu, 20 Jul 2023 03:03:48 -0400 Subject: feat(lsp): implement textDocument/diagnostic (#24128) --- src/nvim/auevents.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/nvim') diff --git a/src/nvim/auevents.lua b/src/nvim/auevents.lua index 41d7ee9b47..f023ee1340 100644 --- a/src/nvim/auevents.lua +++ b/src/nvim/auevents.lua @@ -73,6 +73,7 @@ return { 'LspAttach', -- after an LSP client attaches to a buffer 'LspDetach', -- after an LSP client detaches from a buffer 'LspRequest', -- after an LSP request is started, canceled, or completed + 'LspNotify', -- after an LSP notice has been sent to the server 'LspTokenUpdate', -- after a visible LSP token is updated 'LspProgress', -- after a LSP progress update 'MenuPopup', -- just before popup menu is displayed @@ -154,6 +155,7 @@ return { DiagnosticChanged=true, LspAttach=true, LspDetach=true, + LspNotify=true, LspRequest=true, LspProgress=true, LspTokenUpdate=true, -- cgit