patch 8.1.2039: character from 'showbreak' does not use 'wincolor'
Problem: Character from 'showbreak' does not use 'wincolor'. (Nick Jensen)
Solution: Mix with 'wincolor'. (closes #4938)
diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim
index feb8ce3..de8a23f 100644
--- a/src/testdir/test_popupwin.vim
+++ b/src/testdir/test_popupwin.vim
@@ -797,8 +797,9 @@
set showbreak=>>\
call setline(1, range(1, 20))
let winid = popup_dialog(
- \ 'a long line here',
- \ #{filter: 'popup_filter_yesno'})
+ \ 'a long line here that wraps',
+ \ #{filter: 'popup_filter_yesno',
+ \ maxwidth: 12})
END
call writefile(lines, 'XtestPopupShowbreak')
let buf = RunVimInTerminal('-S XtestPopupShowbreak', #{rows: 10})