summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-05-08 22:49:43 +0100
committerBram Moolenaar <Bram@vim.org>2022-05-08 22:49:43 +0100
commitb370771bffc8395204f53209b69e35dff95a9237 (patch)
treed52c4d99aa5f14f04efc88c25b5271b6c3670151
parentfe978c2b6bb9d897d962595a4a51dd7a71dc8e89 (diff)
downloadvim-git-8.2.4922.tar.gz
patch 8.2.4922: mouse test fails on MS-Windowsv8.2.4922
Problem: Mouse test fails on MS-Windows. Solution: Set 'mousemodel' to "extend".
-rw-r--r--src/testdir/test_edit.vim2
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/test_edit.vim b/src/testdir/test_edit.vim
index 8c4d9f222..f0dd446ad 100644
--- a/src/testdir/test_edit.vim
+++ b/src/testdir/test_edit.vim
@@ -1232,9 +1232,11 @@ func Test_edit_MOUSE()
call test_setmouse(4, 3)
call feedkeys("A\<LeftMouse>\<esc>", 'tnix')
call assert_equal([0, 27, 2, 0], getpos('.'))
+ set mousemodel=extend
call test_setmouse(5, 3)
call feedkeys("A\<RightMouse>\<esc>\<esc>", 'tnix')
call assert_equal([0, 28, 2, 0], getpos('.'))
+ set mousemodel&
call cursor(1, 100)
norm! zt
" this should move by a screen up, but when the test
diff --git a/src/version.c b/src/version.c
index 3183e9655..9f72d7de2 100644
--- a/src/version.c
+++ b/src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 4922,
+/**/
4921,
/**/
4920,