aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui
diff options
context:
space:
mode:
authorDongdong Zhou <dzhou121@gmail.com>2017-05-11 04:48:59 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2017-10-26 09:35:13 +0200
commite164ba41c8460d4e5b2e7e2b929d8479a0310738 (patch)
tree1ec9ca8c2807757b549385e9dfc965df4de50138 /test/functional/ui
parentdaec81ab5179c7ce8e3813af556b1e2f05fc59c6 (diff)
downloadrneovim-e164ba41c8460d4e5b2e7e2b929d8479a0310738.tar.gz
rneovim-e164ba41c8460d4e5b2e7e2b929d8479a0310738.tar.bz2
rneovim-e164ba41c8460d4e5b2e7e2b929d8479a0310738.zip
ext_cmdline: fix firstc, change cmdline_leave to cmdline_hide
Diffstat (limited to 'test/functional/ui')
-rw-r--r--test/functional/ui/cmdline_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/cmdline_spec.lua b/test/functional/ui/cmdline_spec.lua
index 523f7065d4..479f5c3b7d 100644
--- a/test/functional/ui/cmdline_spec.lua
+++ b/test/functional/ui/cmdline_spec.lua
@@ -16,7 +16,7 @@ describe('External command line completion', function()
screen:set_on_event_handler(function(name, data)
if name == "cmdline_enter" then
shown = true
- elseif name == "cmdline_leave" then
+ elseif name == "cmdline_hide" then
shown = false
elseif name == "cmdline_show" then
content, pos, firstc, prompt = unpack(data)