summaryrefslogtreecommitdiff
path: root/data/vim/patches/8.1.1142
diff options
context:
space:
mode:
Diffstat (limited to 'data/vim/patches/8.1.1142')
-rw-r--r--data/vim/patches/8.1.114299
1 files changed, 99 insertions, 0 deletions
diff --git a/data/vim/patches/8.1.1142 b/data/vim/patches/8.1.1142
new file mode 100644
index 000000000..cc682305e
--- /dev/null
+++ b/data/vim/patches/8.1.1142
@@ -0,0 +1,99 @@
+To: vim_dev@googlegroups.com
+Subject: Patch 8.1.1142
+Fcc: outbox
+From: Bram Moolenaar <Bram@moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 8.1.1142
+Problem: No test for dragging the window separators with the mouse.
+Solution: Add a test. (Dominique Pelle, closes #4226)
+Files: src/testdir/test_termcodes.vim
+
+
+*** ../vim-8.1.1141/src/testdir/test_termcodes.vim 2019-04-07 21:55:03.732116294 +0200
+--- src/testdir/test_termcodes.vim 2019-04-09 21:49:50.990047878 +0200
+***************
+*** 111,113 ****
+--- 111,171 ----
+ let &ttymouse = save_ttymouse
+ bwipe!
+ endfunc
++
++ func Test_xterm_mouse_drag_window_separator()
++ let save_mouse = &mouse
++ let save_term = &term
++ let save_ttymouse = &ttymouse
++ set mouse=a
++ set term=xterm
++ set ttymouse=sgr
++
++ " Split horizontally and test dragging the horizontal window separator.
++ split
++ let rowseparator = winheight(0) + 1
++
++ let button = 0 " left down.
++ let row = rowseparator
++ let col = 1
++ call feedkeys(printf("\<Esc>[<%d;%d;%dM", button, col, row), 'Lx!')
++
++ let drag = 32
++ let row -= 1
++ call feedkeys(printf("\<Esc>[<%d;%d;%dM", drag, col, row), 'Lx!')
++ call assert_equal(rowseparator - 1, winheight(0) + 1)
++ let row += 1
++ call feedkeys(printf("\<Esc>[<%d;%d;%dM", drag, col, row), 'Lx!')
++ call assert_equal(rowseparator, winheight(0) + 1)
++
++ let release = 3
++ call feedkeys(printf("\<Esc>[<%d;%d;%dm", release, col, row), 'Lx!')
++ call assert_equal(rowseparator, winheight(0) + 1)
++
++ bwipe!
++
++ " Split vertically and test dragging the vertical window separator.
++ vsplit
++ let colseparator = winwidth(0) + 1
++
++ let button = 0
++ let row = 1
++ let col = colseparator
++ call feedkeys(printf("\<Esc>[<%d;%d;%dM", button, col, row), 'Lx!')
++
++ let drag = 32
++ let col -= 1
++ call feedkeys(printf("\<Esc>[<%d;%d;%dM", drag, col, row), 'Lx!')
++ call assert_equal(colseparator - 1, winwidth(0) + 1)
++ let col += 1
++ call feedkeys(printf("\<Esc>[<%d;%d;%dM", drag, col, row), 'Lx!')
++ call assert_equal(colseparator, winwidth(0) + 1)
++
++ let release = 3
++ call feedkeys(printf("\<Esc>[<%d;%d;%dm", release, col, row), 'Lx!')
++ call assert_equal(colseparator, winwidth(0) + 1)
++
++ bwipe!
++ let &mouse = save_mouse
++ let &term = save_term
++ let &ttymouse = save_ttymouse
++ endfunc
+*** ../vim-8.1.1141/src/version.c 2019-04-09 21:17:28.837660254 +0200
+--- src/version.c 2019-04-09 21:51:24.301503517 +0200
+***************
+*** 773,774 ****
+--- 773,776 ----
+ { /* Add new patch number below this line */
++ /**/
++ 1142,
+ /**/
+
+--
+hundred-and-one symptoms of being an internet addict:
+238. You think faxes are old-fashioned.
+
+ /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
+/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\ an exciting new programming language -- http://www.Zimbu.org ///
+ \\\ help me help AIDS victims -- http://ICCF-Holland.org ///