summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_textprop.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-02-12 14:42:15 +0000
committerBram Moolenaar <Bram@vim.org>2023-02-12 14:42:15 +0000
commit234c3fab28c14846b962c90097496b27ee1b4df8 (patch)
tree58ca0242f456f6c53a9a26c8aa233cc46aec372c /src/testdir/test_textprop.vim
parent094b8473edcc7531c942ac726dd575d95f5b622c (diff)
patch 9.0.1304: "$" for 'list' option displayed in wrong positionv9.0.1304
Problem: "$" for 'list' option displayed in wrong position when there are text properties. Solution: Adjust logic for order of displayed items. (closes #11959)
Diffstat (limited to 'src/testdir/test_textprop.vim')
-rw-r--r--src/testdir/test_textprop.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/testdir/test_textprop.vim b/src/testdir/test_textprop.vim
index b628c8215d..f3d53f7f09 100644
--- a/src/testdir/test_textprop.vim
+++ b/src/testdir/test_textprop.vim
@@ -2798,6 +2798,9 @@ func Test_prop_with_text_above_below_empty()
let buf = RunVimInTerminal('-S XscriptPropAboveBelowEmpty', #{rows: 16, cols: 60})
call VerifyScreenDump(buf, 'Test_prop_above_below_empty_1', {})
+ call term_sendkeys(buf, ":set list\<CR>")
+ call VerifyScreenDump(buf, 'Test_prop_above_below_empty_2', {})
+
call StopVimInTerminal(buf)
endfunc