Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/testdir/test_popup.vim
Original file line number Diff line number Diff line change
Expand Up @@ -2396,6 +2396,15 @@ endfunc
func Test_popup_shadow_hiddenchar()
CheckScreendump

if has('osx')
" On older macOS versions, the default Terminal app does not properly
" advertise italics support, which this test requires. When that happens,
" Vim just uses t_mr (reverse) as a substitute, which we detect here.
if &t_ZH == &t_mr
throw 'Skipped: italics not supported'
endif
endif

let lines =<< trim END
bold italic underline reverse normal
italic underline reverse normal bold
Expand Down