aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2025-03-11 06:49:32 +0800
committerGitHub <noreply@github.com>2025-03-11 06:49:32 +0800
commit1f49a59b8bde0aeb3a1ef754bcb3724d9af241bb (patch)
tree8b012c93d75b05d50438d861ee30b21f9e7ed6dc /src
parent0ef1147313caa47c87c7baa79043ddcff55ef5e1 (diff)
downloadrneovim-1f49a59b8bde0aeb3a1ef754bcb3724d9af241bb.tar.gz
rneovim-1f49a59b8bde0aeb3a1ef754bcb3724d9af241bb.tar.bz2
rneovim-1f49a59b8bde0aeb3a1ef754bcb3724d9af241bb.zip
fix(events): fix incorrect capitalization of Cmdwin* events (#32813)
The name of Cmdwin* events were changed to CmdWin* in 8ed2dbf6e2802516501c11e72e5d6d977e6a07f3 without explanation. This commit changes them back. This doesn't affect the creation or execution of autocommands. It only affects the listing of autocommands.
Diffstat (limited to 'src')
-rw-r--r--src/nvim/auevents.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/auevents.lua b/src/nvim/auevents.lua
index c5e7186713..a9b63b0b17 100644
--- a/src/nvim/auevents.lua
+++ b/src/nvim/auevents.lua
@@ -26,11 +26,11 @@ return {
ChanInfo = false, -- info was received about channel
ChanOpen = false, -- channel was opened
CmdUndefined = false, -- command undefined
- CmdWinEnter = false, -- after entering the cmdline window
- CmdWinLeave = false, -- before leaving the cmdline window
CmdlineChanged = false, -- command line was modified
CmdlineEnter = false, -- after entering cmdline mode
CmdlineLeave = false, -- before leaving cmdline mode
+ CmdwinEnter = false, -- after entering the cmdline window
+ CmdwinLeave = false, -- before leaving the cmdline window
ColorScheme = false, -- after loading a colorscheme
ColorSchemePre = false, -- before loading a colorscheme
CompleteChanged = false, -- after popup menu changed