We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 19f411e + 0b0f598 commit 91e24d4Copy full SHA for 91e24d4
src/testdir/test_popup.vim
@@ -2396,6 +2396,15 @@ endfunc
2396
func Test_popup_shadow_hiddenchar()
2397
CheckScreendump
2398
2399
+ if has('osx')
2400
+ " On older macOS versions, the default Terminal app does not properly
2401
+ " advertise italics support, which this test requires. When that happens,
2402
+ " Vim just uses t_mr (reverse) as a substitute, which we detect here.
2403
+ if &t_ZH == &t_mr
2404
+ throw 'Skipped: italics not supported'
2405
+ endif
2406
2407
+
2408
let lines =<< trim END
2409
bold italic underline reverse normal
2410
italic underline reverse normal bold
0 commit comments