fix(events): fix incorrect capitalization of Cmdwin* events (#32813)

The name of Cmdwin* events were changed to CmdWin* in 8ed2dbf6e2
without explanation. This commit changes them back.
This doesn't affect the creation or execution of autocommands. It only
affects the listing of autocommands.
This commit is contained in:
zeertzjq
2025-03-11 06:49:32 +08:00
committed by GitHub
parent 0ef1147313
commit 1f49a59b8b
4 changed files with 10 additions and 10 deletions

View File

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