diff options
author | Sam Bingner <sam@bingner.com> | 2019-06-05 22:02:50 -1000 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2019-06-05 22:02:50 -1000 |
commit | a255618e22152ca2e5fd361a3d0762e9db20dd80 (patch) | |
tree | 5c98f76c0de0785b8d5b58ac622da34f0d024a8f /data/vim/patches/8.1.1172 | |
parent | 1b1fa61507a809a66f053a8523f883b2b6a2f487 (diff) |
Update vim to 8.1.1471
Diffstat (limited to 'data/vim/patches/8.1.1172')
-rw-r--r-- | data/vim/patches/8.1.1172 | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/data/vim/patches/8.1.1172 b/data/vim/patches/8.1.1172 new file mode 100644 index 000000000..5e36746d7 --- /dev/null +++ b/data/vim/patches/8.1.1172 @@ -0,0 +1,101 @@ +To: vim_dev@googlegroups.com +Subject: Patch 8.1.1172 +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.1172 +Problem: Cursor properties were not fully tested. +Solution: Add a test. (Dominique Pelle, closes #4256) +Files: src/testdir/test_terminal.vim + + +*** ../vim-8.1.1171/src/testdir/test_terminal.vim 2019-04-13 23:18:18.204706885 +0200 +--- src/testdir/test_terminal.vim 2019-04-14 14:12:00.814528816 +0200 +*************** +*** 1892,1897 **** +--- 1892,1954 ---- + call WaitForAssert({-> assert_equal(v:null, term_getjob(term)) }) + endfunc + ++ func Test_term_getcursor() ++ if !has('unix') ++ return ++ endif ++ let buf = Run_shell_in_terminal({}) ++ ++ " Wait for the shell to display a prompt. ++ call WaitForAssert({-> assert_notequal('', term_getline(buf, 1))}) ++ ++ " Hide the cursor. ++ call term_sendkeys(buf, "echo -e '\\033[?25l'\r") ++ call WaitForAssert({-> assert_equal(0, term_getcursor(buf)[2].visible)}) ++ ++ " Show the cursor. ++ call term_sendkeys(buf, "echo -e '\\033[?25h'\r") ++ call WaitForAssert({-> assert_equal(1, term_getcursor(buf)[2].visible)}) ++ ++ " Change color of cursor. ++ call WaitForAssert({-> assert_equal('', term_getcursor(buf)[2].color)}) ++ call term_sendkeys(buf, "echo -e '\\033]12;blue\\007'\r") ++ call WaitForAssert({-> assert_equal('blue', term_getcursor(buf)[2].color)}) ++ call term_sendkeys(buf, "echo -e '\\033]12;green\\007'\r") ++ call WaitForAssert({-> assert_equal('green', term_getcursor(buf)[2].color)}) ++ ++ " Make cursor a blinking block. ++ call term_sendkeys(buf, "echo -e '\\033[1 q'\r") ++ call WaitForAssert({-> assert_equal([1, 1], ++ \ [term_getcursor(buf)[2].blink, term_getcursor(buf)[2].shape])}) ++ ++ " Make cursor a steady block. ++ call term_sendkeys(buf, "echo -e '\\033[2 q'\r") ++ call WaitForAssert({-> assert_equal([0, 1], ++ \ [term_getcursor(buf)[2].blink, term_getcursor(buf)[2].shape])}) ++ ++ " Make cursor a blinking underline. ++ call term_sendkeys(buf, "echo -e '\\033[3 q'\r") ++ call WaitForAssert({-> assert_equal([1, 2], ++ \ [term_getcursor(buf)[2].blink, term_getcursor(buf)[2].shape])}) ++ ++ " Make cursor a steady underline. ++ call term_sendkeys(buf, "echo -e '\\033[4 q'\r") ++ call WaitForAssert({-> assert_equal([0, 2], ++ \ [term_getcursor(buf)[2].blink, term_getcursor(buf)[2].shape])}) ++ ++ " Make cursor a blinking vertical bar. ++ call term_sendkeys(buf, "echo -e '\\033[5 q'\r") ++ call WaitForAssert({-> assert_equal([1, 3], ++ \ [term_getcursor(buf)[2].blink, term_getcursor(buf)[2].shape])}) ++ ++ " Make cursor a steady vertical bar. ++ call term_sendkeys(buf, "echo -e '\\033[6 q'\r") ++ call WaitForAssert({-> assert_equal([0, 3], ++ \ [term_getcursor(buf)[2].blink, term_getcursor(buf)[2].shape])}) ++ ++ call Stop_shell_in_terminal(buf) ++ endfunc ++ + func Test_term_gettitle() + " term_gettitle() returns an empty string for a non-terminal buffer + " and for a non-existing buffer. +*** ../vim-8.1.1171/src/version.c 2019-04-14 13:23:36.911963919 +0200 +--- src/version.c 2019-04-14 14:08:16.615451205 +0200 +*************** +*** 773,774 **** +--- 773,776 ---- + { /* Add new patch number below this line */ ++ /**/ ++ 1172, + /**/ + +-- +There is a fine line between courage and foolishness. +Unfortunately, it's not a fence. + + /// 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 /// |