diff options
| author | Björn Linse <bjorn.linse@gmail.com> | 2018-08-27 16:02:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-27 16:02:22 +0200 |
| commit | dee0d7f4e9b8a681cf4f3761d886081f3b851b7a (patch) | |
| tree | 241711e8f052f02b0e465a42f6d47af302c8743b /test/functional/ex_cmds/ctrl_c_spec.lua | |
| parent | a8b4d76a0a2c59a3a368932ae111265c15b8dccb (diff) | |
| parent | 3d88287e3016aacae64e2ddcd11a37e024557e45 (diff) | |
| download | rneovim-dee0d7f4e9b8a681cf4f3761d886081f3b851b7a.tar.gz rneovim-dee0d7f4e9b8a681cf4f3761d886081f3b851b7a.tar.bz2 rneovim-dee0d7f4e9b8a681cf4f3761d886081f3b851b7a.zip | |
Merge pull request #8891 from bfredl/keyexpect
use keyword args for screen:expect{...} + hl fixup for ext_cmdline
Diffstat (limited to 'test/functional/ex_cmds/ctrl_c_spec.lua')
| -rw-r--r-- | test/functional/ex_cmds/ctrl_c_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ex_cmds/ctrl_c_spec.lua b/test/functional/ex_cmds/ctrl_c_spec.lua index 8f76099f79..4c5383b712 100644 --- a/test/functional/ex_cmds/ctrl_c_spec.lua +++ b/test/functional/ex_cmds/ctrl_c_spec.lua @@ -43,7 +43,7 @@ describe("CTRL-C (mapped)", function() feed(":global/^/p<CR>") screen:sleep(ms) feed("<C-C>") - screen:expect([[Interrupt]], nil, nil, nil, true) + screen:expect{any="Interrupt"} end -- The test is time-sensitive. Try different sleep values. |