diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2024-10-29 07:57:25 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-29 07:57:25 +0800 |
| commit | 42fa3d080ec170b7927e36ec563efdd526c712d7 (patch) | |
| tree | 43b40cdbc4a5f662b13ba25e7b2ebbb4968304fd /src/nvim/auevents.lua | |
| parent | 34c44c355646311aa67fe53e1e5ce040789430c6 (diff) | |
| download | rneovim-42fa3d080ec170b7927e36ec563efdd526c712d7.tar.gz rneovim-42fa3d080ec170b7927e36ec563efdd526c712d7.tar.bz2 rneovim-42fa3d080ec170b7927e36ec563efdd526c712d7.zip | |
refactor: sort various Lua tables in src/ alphabetically (#30977)
Diffstat (limited to 'src/nvim/auevents.lua')
| -rw-r--r-- | src/nvim/auevents.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/auevents.lua b/src/nvim/auevents.lua index e61f1a8ce2..84735c293a 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 @@ -160,8 +160,8 @@ return { LspAttach = true, LspDetach = true, LspNotify = true, - LspRequest = true, LspProgress = true, + LspRequest = true, LspTokenUpdate = true, RecordingEnter = true, RecordingLeave = true, |