diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-21 06:33:18 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-21 06:33:18 -0300 |
commit | c48f835749913f48267ed3b389bdd333e19e6dc4 (patch) | |
tree | edc8d4310b1e4025697a4ae0e9f39c2973fb3725 /test/functional/ui/screen.lua | |
parent | 486d2e944dffb30d97d65c88bbcc77f6fd1208f6 (diff) | |
parent | 6293b5513c54557bbf56077374df83cb52344fa3 (diff) | |
download | rneovim-c48f835749913f48267ed3b389bdd333e19e6dc4.tar.gz rneovim-c48f835749913f48267ed3b389bdd333e19e6dc4.tar.bz2 rneovim-c48f835749913f48267ed3b389bdd333e19e6dc4.zip |
Merge PR #1997 'Remove term modules'
Diffstat (limited to 'test/functional/ui/screen.lua')
-rw-r--r-- | test/functional/ui/screen.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua index 02841c98a0..71703cc112 100644 --- a/test/functional/ui/screen.lua +++ b/test/functional/ui/screen.lua @@ -114,7 +114,7 @@ Screen.__index = Screen local debug_screen -local default_screen_timeout = 2500 +local default_screen_timeout = 3500 if os.getenv('VALGRIND') then default_screen_timeout = default_screen_timeout * 3 end @@ -257,6 +257,8 @@ function Screen:_handle_resize(width, height) end table.insert(rows, cols) end + self._cursor.row = 1 + self._cursor.col = 1 self._rows = rows self._width = width self._height = height |