diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2017-12-05 13:27:06 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2017-12-06 09:41:51 +0100 |
commit | ba7d6a9e6b3c42f1996d05cec471b4842eeb8b66 (patch) | |
tree | 59e836376ce4c8752a159e0a8de776ea9fe55b3f /test/functional/ui/screen.lua | |
parent | 9714b9f59013348b9d16f21822485a2316e93fd7 (diff) | |
download | rneovim-ba7d6a9e6b3c42f1996d05cec471b4842eeb8b66.tar.gz rneovim-ba7d6a9e6b3c42f1996d05cec471b4842eeb8b66.tar.bz2 rneovim-ba7d6a9e6b3c42f1996d05cec471b4842eeb8b66.zip |
ui: fix glitch with both ext_cmdline and cmd_wildmenu
Diffstat (limited to 'test/functional/ui/screen.lua')
-rw-r--r-- | test/functional/ui/screen.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua index a6b7fb2997..075d8c40d7 100644 --- a/test/functional/ui/screen.lua +++ b/test/functional/ui/screen.lua @@ -176,6 +176,10 @@ function Screen:try_resize(columns, rows) self:sleep(0.1) end +function Screen:set_option(option, value) + uimeths.set_option(option, value) +end + -- Asserts that `expected` eventually matches the screen state. -- -- expected: Expected screen state (string). Each line represents a screen |