aboutsummaryrefslogtreecommitdiff
path: root/test/old/testdir/test_python3.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-04-29 08:50:04 +0800
committerzeertzjq <zeertzjq@outlook.com>2023-04-29 09:20:52 +0800
commit2eb1f62e29c54fe4d3cebcff388ea6c239313980 (patch)
treea5835b5edf490c3c5b046ea1769fdda5c79705a5 /test/old/testdir/test_python3.vim
parent4bcf8c15b3079ca72d6557890b50b35565fcd577 (diff)
downloadrneovim-2eb1f62e29c54fe4d3cebcff388ea6c239313980.tar.gz
rneovim-2eb1f62e29c54fe4d3cebcff388ea6c239313980.tar.bz2
rneovim-2eb1f62e29c54fe4d3cebcff388ea6c239313980.zip
vim-patch:8.2.0672: heredoc in scripts does not accept lower case marker
Problem: Heredoc in scripts does not accept lower case marker. Solution: Allow lower case only in non-Vim scripts. (Ken Takata, closes vim/vim#6019) https://github.com/vim/vim/commit/6ab0953fefe31fef91e40752a675ceb60fc2fe03
Diffstat (limited to 'test/old/testdir/test_python3.vim')
-rw-r--r--test/old/testdir/test_python3.vim5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/old/testdir/test_python3.vim b/test/old/testdir/test_python3.vim
index 60773c5b2a..23c63f22d8 100644
--- a/test/old/testdir/test_python3.vim
+++ b/test/old/testdir/test_python3.vim
@@ -281,7 +281,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