aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlacygoill <lacygoill@users.noreply.github.com>2019-11-04 08:18:06 +0100
committerJustin M. Keyes <justinkz@gmail.com>2019-11-04 16:18:06 +0900
commite2b54fda7282c9237952b769afd2a313564cba79 (patch)
treeb88dce9e62032e1ea99080810932b4dec47681c9
parent93626b8af9c12425013f02c2ad52f2ac54317fc4 (diff)
downloadrneovim-e2b54fda7282c9237952b769afd2a313564cba79.tar.gz
rneovim-e2b54fda7282c9237952b769afd2a313564cba79.tar.bz2
rneovim-e2b54fda7282c9237952b769afd2a313564cba79.zip
autocmd: Fix event name casing #11332
Affects getcompletion()
-rw-r--r--src/nvim/auevents.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/auevents.lua b/src/nvim/auevents.lua
index c223679596..a52789c795 100644
--- a/src/nvim/auevents.lua
+++ b/src/nvim/auevents.lua
@@ -21,9 +21,9 @@ return {
'BufWritePre', -- before writing a buffer
'ChanInfo', -- info was received about channel
'ChanOpen', -- channel was opened
- 'CmdLineChanged', -- command line was modified
- 'CmdLineEnter', -- after entering cmdline mode
- 'CmdLineLeave', -- before leaving cmdline mode
+ 'CmdlineChanged', -- command line was modified
+ 'CmdlineEnter', -- after entering cmdline mode
+ 'CmdlineLeave', -- before leaving cmdline mode
'CmdUndefined', -- command undefined
'CmdWinEnter', -- after entering the cmdline window
'CmdWinLeave', -- before leaving the cmdline window