diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-17 13:01:45 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-08-17 13:14:32 +0800 |
commit | db64280be5ff866b80ffa80569838688bfd7caa5 (patch) | |
tree | efd308b8e9ec45807800898440cfab51e34675ce /test/old/testdir/test_expr.vim | |
parent | faef577e90cf17699bd7bc206b0fb64af65334d2 (diff) | |
download | rneovim-db64280be5ff866b80ffa80569838688bfd7caa5.tar.gz rneovim-db64280be5ff866b80ffa80569838688bfd7caa5.tar.bz2 rneovim-db64280be5ff866b80ffa80569838688bfd7caa5.zip |
vim-patch:8.2.3908: cannot use a script-local function for 'foldtext'
Problem: Cannot use a script-local function for 'foldtext'.
Solution: Expand "s:" and "<SID>". (Yegappan Lakshmanan, closes vim/vim#9411)
https://github.com/vim/vim/commit/27708e6c7b6f444fd599f3dc5015336b002b874d
Cherry-pick test_filter_map.vim change from patch 8.2.3871.
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Diffstat (limited to 'test/old/testdir/test_expr.vim')
-rw-r--r-- | test/old/testdir/test_expr.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/old/testdir/test_expr.vim b/test/old/testdir/test_expr.vim index bf1ba240eb..d316e63818 100644 --- a/test/old/testdir/test_expr.vim +++ b/test/old/testdir/test_expr.vim @@ -421,6 +421,7 @@ func Test_printf_misc() call assert_equal('[00000あiう]', printf('[%010.7S]', 'あiう')) call assert_equal('1%', printf('%d%%', 1)) + call assert_notequal('', printf('%p', "abc")) END call CheckLegacyAndVim9Success(lines) |