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 00:25:20 -0800
commit1def94597b8866896165803669d374712250d6d8 (patch)
treeb67d3c3e072a8faef729a6f5aed31f9ded67f29c
parentb678d33dd321e920e2acbadfb0ea19186eb72d3f (diff)
downloadrneovim-1def94597b8866896165803669d374712250d6d8.tar.gz
rneovim-1def94597b8866896165803669d374712250d6d8.tar.bz2
rneovim-1def94597b8866896165803669d374712250d6d8.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