diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-09-21 12:05:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-21 12:05:08 +0800 |
commit | 0aea8fad48ccd891022a5595fc7cdedbe4c04ad3 (patch) | |
tree | f4273000589b33ed5b98990e22d766f904428de4 /test/functional/ui/mouse_spec.lua | |
parent | f094db0e5ccaddca2b5db05bf9545d55f3eededf (diff) | |
parent | e25cf47ad3e10e0e1ae2b2376d898382af5b1e26 (diff) | |
download | rneovim-0aea8fad48ccd891022a5595fc7cdedbe4c04ad3.tar.gz rneovim-0aea8fad48ccd891022a5595fc7cdedbe4c04ad3.tar.bz2 rneovim-0aea8fad48ccd891022a5595fc7cdedbe4c04ad3.zip |
Merge pull request #25281 from zeertzjq/vim-9.0.1919
vim-patch:9.0.1919: Wrong curswant when clicking on empty line or with vsplits
Diffstat (limited to 'test/functional/ui/mouse_spec.lua')
-rw-r--r-- | test/functional/ui/mouse_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/ui/mouse_spec.lua b/test/functional/ui/mouse_spec.lua index a8d01cfbf1..fd24174f74 100644 --- a/test/functional/ui/mouse_spec.lua +++ b/test/functional/ui/mouse_spec.lua @@ -1676,7 +1676,7 @@ describe('ui/mouse/input', function() end) - it('getmousepos works correctly', function() + it('getmousepos() works correctly', function() local winwidth = meths.get_option_value('winwidth', {}) -- Set winwidth=1 so that window sizes don't change. meths.set_option_value('winwidth', 1, {}) @@ -1771,7 +1771,7 @@ describe('ui/mouse/input', function() -- Test that mouse position values are properly set for ordinary windows. -- Set the float to be unfocusable instead of closing, to additionally test - -- that getmousepos does not consider unfocusable floats. (see discussion + -- that getmousepos() does not consider unfocusable floats. (see discussion -- in PR #14937 for details). opts.focusable = false meths.win_set_config(float, opts) |