summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_textprop.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-03-17 10:01:47 +0100
committerChristian Brabandt <cb@256bit.org>2024-03-17 10:01:47 +0100
commitf6272551bdae3f265b6948a4155b079c37fe110f (patch)
tree76dea805ec4753add4e61ad51b87b4fc323f22b9 /src/testdir/test_textprop.vim
parent8291e91c6b10e0cdeb2f29c8f1a0aad6d5b5c684 (diff)
patch 9.1.0185: 'wincolor' hl missing with 'rightleft', "below" virttext, 'nowrap'v9.1.0185
Problem: 'wincolor' highlight missing with 'rightleft', "below" virtual text and 'nowrap'. Solution: Handle 'rightleft' in draw_screen_line() (zeertzjq). closes: #14216 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/testdir/test_textprop.vim')
-rw-r--r--src/testdir/test_textprop.vim5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/testdir/test_textprop.vim b/src/testdir/test_textprop.vim
index 993a64d3bb..c88b5477a1 100644
--- a/src/testdir/test_textprop.vim
+++ b/src/testdir/test_textprop.vim
@@ -4535,6 +4535,11 @@ func Test_textprop_with_wincolor()
call term_sendkeys(buf, 'k')
call VerifyScreenDump(buf, 'Test_prop_wincolor_8', {})
+ if has('rightleft')
+ call term_sendkeys(buf, ":set rightleft\<CR>:\<CR>")
+ call VerifyScreenDump(buf, 'Test_prop_wincolor_9', {})
+ endif
+
call StopVimInTerminal(buf)
endfunc