diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-17 10:19:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 10:19:16 +0800 |
commit | 5c1eb02b05cd2e8cac330c85a2492846b2e4990d (patch) | |
tree | a503a2989c51957a6e6e53eda62430784572b6b7 /test | |
parent | d74f9c3b947677a98103c41e0c4ad8ae54389c4e (diff) | |
parent | 9a6d3bd76e1edcedf71f31dfa5e1600c1c5d2c3a (diff) | |
download | rneovim-5c1eb02b05cd2e8cac330c85a2492846b2e4990d.tar.gz rneovim-5c1eb02b05cd2e8cac330c85a2492846b2e4990d.tar.bz2 rneovim-5c1eb02b05cd2e8cac330c85a2492846b2e4990d.zip |
Merge pull request #19801 from Shougo/vim-9.0.0190
vim-patch:9.0.{0190,0191,0192}: cmdheight=0 fixes
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/ui/statusline_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/statusline_spec.lua b/test/functional/ui/statusline_spec.lua index f3735c8e4c..add5144e1b 100644 --- a/test/functional/ui/statusline_spec.lua +++ b/test/functional/ui/statusline_spec.lua @@ -394,7 +394,7 @@ describe('global statusline', function() meths.input_mouse('left', 'drag', '', 0, 14, 10) eq(1, meths.get_option('cmdheight')) meths.input_mouse('left', 'drag', '', 0, 15, 10) - eq(0, meths.get_option('cmdheight')) + eq(1, meths.get_option('cmdheight')) meths.input_mouse('left', 'drag', '', 0, 14, 10) eq(1, meths.get_option('cmdheight')) end) |