aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/auevents.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/auevents.lua')
-rw-r--r--src/nvim/auevents.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/auevents.lua b/src/nvim/auevents.lua
index d509837de7..3243822c94 100644
--- a/src/nvim/auevents.lua
+++ b/src/nvim/auevents.lua
@@ -73,10 +73,10 @@ return {
'InsertLeavePre', -- just before leaving Insert mode
'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
+ 'LspRequest', -- after an LSP request is started, canceled, or completed
+ 'LspTokenUpdate', -- after a visible LSP token is updated
'MenuPopup', -- just before popup menu is displayed
'ModeChanged', -- after changing the mode
'OptionSet', -- after setting any option
@@ -162,8 +162,8 @@ return {
LspAttach = true,
LspDetach = true,
LspNotify = true,
- LspRequest = true,
LspProgress = true,
+ LspRequest = true,
LspTokenUpdate = true,
RecordingEnter = true,
RecordingLeave = true,