diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-05-01 14:10:13 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-05-01 14:10:13 +0200 |
commit | 6ab0953fefe31fef91e40752a675ceb60fc2fe03 (patch) | |
tree | 339bd1fc552e35f99dc7a6214170b582c1f6cbd2 /src/testdir/test_python3.vim | |
parent | 9e175141f3437627c314257ebf894c29c71a9ded (diff) | |
download | vim-git-6ab0953fefe31fef91e40752a675ceb60fc2fe03.tar.gz |
patch 8.2.0672: heredoc in scripts does not accept lower case markerv8.2.0672
Problem: Heredoc in scripts does not accept lower case marker.
Solution: Allow lower case only in non-Vim scripts. (Ken Takata,
closes #6019)
Diffstat (limited to 'src/testdir/test_python3.vim')
-rw-r--r-- | src/testdir/test_python3.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/testdir/test_python3.vim b/src/testdir/test_python3.vim index 224484611..b4a4a4aa7 100644 --- a/src/testdir/test_python3.vim +++ b/src/testdir/test_python3.vim @@ -349,7 +349,10 @@ s+='B' python3 << trim s+='D' . - call assert_equal('ABCD', pyxeval('s')) + python3 << trim eof + s+='E' + eof + call assert_equal('ABCDE', pyxeval('s')) endfunc " vim: shiftwidth=2 sts=2 expandtab |