diff options
Diffstat (limited to 'data/vim/patches/8.1.1132')
-rw-r--r-- | data/vim/patches/8.1.1132 | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/data/vim/patches/8.1.1132 b/data/vim/patches/8.1.1132 new file mode 100644 index 000000000..ed8099ced --- /dev/null +++ b/data/vim/patches/8.1.1132 @@ -0,0 +1,79 @@ +To: vim_dev@googlegroups.com +Subject: Patch 8.1.1132 +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.1132 +Problem: getwinpos() test fails on MS-Windows. +Solution: Don't try running this test. +Files: src/testdir/test_terminal.vim + + +*** ../vim-8.1.1131/src/testdir/test_terminal.vim 2019-04-06 22:01:20.756989404 +0200 +--- src/testdir/test_terminal.vim 2019-04-06 22:19:26.599281275 +0200 +*************** +*** 1889,1894 **** +--- 1889,1898 ---- + endfunc + + func Test_terminal_getwinpos() ++ if !CanRunVimInTerminal() ++ return ++ endif ++ + " split, go to the bottom-right window + split + wincmd j +*************** +*** 1907,1923 **** + let xpos = str2nr(substitute(line, '\[\(\d\+\), \d\+\]', '\1', '')) + let ypos = str2nr(substitute(line, '\[\d\+, \(\d\+\)\]', '\1', '')) + +! " getwinpos() in the MS-Windows console returns the screen position of the +! " emulated console. +! if has('win32') +! call assert_inrange(0, 4000, xpos) +! call assert_inrange(0, 2000, ypos) +! else +! " Position must be bigger than the getwinpos() result of Vim itself. +! let [xroot, yroot] = getwinpos() +! call assert_inrange(xroot + 2, xroot + 1000, xpos) +! call assert_inrange(yroot + 2, yroot + 1000, ypos) +! endif + + call term_wait(buf) + call term_sendkeys(buf, ":q\<CR>") +--- 1911,1920 ---- + let xpos = str2nr(substitute(line, '\[\(\d\+\), \d\+\]', '\1', '')) + let ypos = str2nr(substitute(line, '\[\d\+, \(\d\+\)\]', '\1', '')) + +! " Position must be bigger than the getwinpos() result of Vim itself. +! let [xroot, yroot] = getwinpos() +! call assert_inrange(xroot + 2, xroot + 1000, xpos) +! call assert_inrange(yroot + 2, yroot + 1000, ypos) + + call term_wait(buf) + call term_sendkeys(buf, ":q\<CR>") +*** ../vim-8.1.1131/src/version.c 2019-04-06 22:01:20.756989404 +0200 +--- src/version.c 2019-04-06 22:20:16.555014827 +0200 +*************** +*** 773,774 **** +--- 773,776 ---- + { /* Add new patch number below this line */ ++ /**/ ++ 1132, + /**/ + +-- +hundred-and-one symptoms of being an internet addict: +218. Your spouse hands you a gift wrapped magnet with your PC's name + on it and you accuse him or her of genocide. + + /// 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 /// |