# HG changeset patch # User Bram Moolenaar # Date 1551071705 -3600 # Node ID 2c18aaf66e7740a4b53ae880be99f584b8ede504 # Parent 1bebb061a6fcfc8371c52470af7075ef46c48a28 patch 8.1.0981: pasting in terminal insufficiently tested commit https://github.com/vim/vim/commit/5b868a82ed2151201350122fcdb75b35c557c528 Author: Bram Moolenaar Date: Mon Feb 25 06:11:53 2019 +0100 patch 8.1.0981: pasting in terminal insufficiently tested Problem: Pasting in terminal insufficiently tested. Solution: Add more tests. (Dominique Pelle, closes https://github.com/vim/vim/issues/4040) diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -82,6 +82,21 @@ func Test_terminal_make_change() unlet g:job endfunc +func Test_terminal_paste_register() + let @" = "text to paste" + + let buf = Run_shell_in_terminal({}) + " Wait for the shell to display a prompt + call WaitForAssert({-> assert_notequal('', term_getline(buf, 1))}) + + call feedkeys("echo \\"\" \\"=37 + 5\\", 'xt') + call WaitForAssert({-> assert_match("echo text to paste 42$", getline(1))}) + call WaitForAssert({-> assert_equal('text to paste 42', getline(2))}) + + exe buf . 'bwipe!' + unlet g:job +endfunc + func Test_terminal_wipe_buffer() let buf = Run_shell_in_terminal({}) call assert_fails(buf . 'bwipe', 'E517') diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -780,6 +780,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 981, +/**/ 980, /**/ 979,