diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2016-08-29 11:00:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-29 11:00:24 +0200 |
commit | 0b5a7e4ad5eee229c7aca70b99f8b6f189d289d1 (patch) | |
tree | 4e7959e315e40a34cb3fbdc26f23e5b8c8112971 /test/functional/terminal/helpers.lua | |
parent | 97c6d80ca7364d571ade073a7fb498b180b54dd3 (diff) | |
parent | 8d6e3f2b88469a3af596cad5f3adf667d16cf8a2 (diff) | |
download | rneovim-0b5a7e4ad5eee229c7aca70b99f8b6f189d289d1.tar.gz rneovim-0b5a7e4ad5eee229c7aca70b99f8b6f189d289d1.tar.bz2 rneovim-0b5a7e4ad5eee229c7aca70b99f8b6f189d289d1.zip |
Merge pull request #4432 from bfredl/pum_ui
allow external UI:s to render the popupmenu
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. |