diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2017-12-06 19:19:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-06 19:19:05 +0100 |
commit | 873af012457b0bed07c844f1655921b2f37c6d06 (patch) | |
tree | 680185bf64ff4279e6534fd30a1bba19f6bb46bf /test/functional/ui/screen.lua | |
parent | b6c268b32a395df20db662e65b7cc8198df5a013 (diff) | |
parent | ba7d6a9e6b3c42f1996d05cec471b4842eeb8b66 (diff) | |
download | rneovim-873af012457b0bed07c844f1655921b2f37c6d06.tar.gz rneovim-873af012457b0bed07c844f1655921b2f37c6d06.tar.bz2 rneovim-873af012457b0bed07c844f1655921b2f37c6d06.zip |
Merge pull request #7692 from bfredl/wildcmd
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 |