diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2016-06-08 11:26:06 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2016-08-29 10:17:31 +0200 |
commit | c41bacc67cb2c5be765f30c42889f168d5fc9d40 (patch) | |
tree | 492f19ea5dd57ec1ea980192fa153ef1325616b6 /test/functional/terminal/helpers.lua | |
parent | e968d72cae57180921ad9cf24cde74fedc8b03d3 (diff) | |
download | rneovim-c41bacc67cb2c5be765f30c42889f168d5fc9d40.tar.gz rneovim-c41bacc67cb2c5be765f30c42889f168d5fc9d40.tar.bz2 rneovim-c41bacc67cb2c5be765f30c42889f168d5fc9d40.zip |
api/ui: add tests for popupmenu_external events
update screen.lua to use new style nvim_ui_attach
Diffstat (limited to 'test/functional/terminal/helpers.lua')
-rw-r--r-- | test/functional/terminal/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/terminal/helpers.lua b/test/functional/terminal/helpers.lua index 1b8893c988..aacf109f2f 100644 --- a/test/functional/terminal/helpers.lua +++ b/test/functional/terminal/helpers.lua @@ -53,7 +53,7 @@ local function screen_setup(extra_height, command) [9] = {foreground = 4}, }) - screen:attach(false) + screen:attach({rgb=false}) -- tty-test puts the terminal into raw mode and echoes all input. tests are -- done by feeding it with terminfo codes to control the display and -- verifying output with screen:expect. |