mirror of
https://github.com/neovim/neovim.git
synced 2025-09-24 03:58:32 +00:00
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:
@@ -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
|
||||
|
Reference in New Issue
Block a user