diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-04 15:26:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-04 15:26:32 +0200 |
commit | 4566f7c7cda2c3a181ec58998f7c93dd17500153 (patch) | |
tree | 049ef60e8dd071342b5c075592c035715d676fef /test/functional/ui/screen.lua | |
parent | 9d560d5c6b02d34690ca47ee6f32e31ee4a6d90e (diff) | |
parent | a7f34e199144bfb657c180cdc1413093fd34bdf9 (diff) | |
download | rneovim-4566f7c7cda2c3a181ec58998f7c93dd17500153.tar.gz rneovim-4566f7c7cda2c3a181ec58998f7c93dd17500153.tar.bz2 rneovim-4566f7c7cda2c3a181ec58998f7c93dd17500153.zip |
Merge #6432 from justinmk/guicursor
Diffstat (limited to 'test/functional/ui/screen.lua')
-rw-r--r-- | test/functional/ui/screen.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua index 3f8173c8e2..ff71194dab 100644 --- a/test/functional/ui/screen.lua +++ b/test/functional/ui/screen.lua @@ -345,7 +345,8 @@ function Screen:_handle_resize(width, height) } end -function Screen:_handle_cursor_style_set(style) +function Screen:_handle_cursor_style_set(enabled, style) + self._cursor_style_enabled = enabled self._cursor_style = style end |