refactor: sort various Lua tables in src/ alphabetically (#30977)

This commit is contained in:
zeertzjq
2024-10-29 07:57:25 +08:00
committed by GitHub
parent 34c44c3556
commit 42fa3d080e
3 changed files with 187 additions and 187 deletions

View File

@@ -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,