Lines Matching refs:term
22 …silent! hi NewGroup term=bold cterm=italic ctermfg=DarkBlue ctermbg=Grey gui= guifg=#00ff00 guibg=…
23 silent! hi Group2 term= cterm=
24 hi Group3 term=underline cterm=bold
30 call assert_equal("NewGroup xxx term=bold cterm=italic ctermfg=2 ctermbg=3",
34 call assert_equal("Group3 xxx term=underline cterm=bold",
48 call assert_fails("hi Crash term='asdf", "E475:")
836 " Test for setting various 'term' attributes
838 hi HlGrp3 term=bold,underline,undercurl,strikethrough,reverse,italic,standout
839 …call assert_equal('hi HlGrp3 term=bold,standout,underline,undercurl,italic,reverse,strike…
840 hi HlGrp3 term=NONE
1000 highlight MyHLGroup term=standout cterm=reverse ctermfg=10 ctermbg=Black
1001 …call assert_equal([{'id': hlID('MyHLGroup'), 'ctermfg': '10', 'name': 'MyHLGroup', 'term': {'stand…
1014 highlight hlgA term=bold
1023 \ 'term': {'bold': v:true}}], hlget('hlgA'))
1029 \ 'term': {'bold': v:true}}], hlget('hlgA', v:false))
1035 \ 'term': {'bold': v:true}}], hlget('hlgA', v:true))
1037 \ 'term': {'bold': v:true}}], hlget('hlgB', 1))
1039 \ 'term': {'bold': v:true}}], hlget('hlgC', v:true))
1092 call assert_fails("call hlset([{'name': 'NewHLGroup', 'term': 'Cyan'}])",
1099 " Test for clearing the 'term', 'cterm' and 'gui' attributes of a highlight
1102 highlight myhlg1 term=bold cterm=italic gui=standout
1104 call hlset([{'name': 'myhlg1', 'term': {}}])
1118 " Test for setting all the 'term', 'cterm' and 'gui' attributes of a
1124 call hlset([{'name': 'myhlg2', 'term': attr, 'cterm': attr, 'gui': attr}])
1126 …VAR expected = "myhlg2 xxx term=bold,standout,underline,undercurl,italic,reverse,nocombine,striket…
1131 \ 'term': attr, 'cterm': attr}], hlget('myhlg2'))
1135 " Test for clearing some of the 'term', 'cterm' and 'gui' attributes of a
1139 call hlset([{'name': 'myhlg2', 'term': attr, 'cterm': attr, 'gui': attr}])
1141 …VAR expected = "myhlg2 xxx term=underline,strikethrough cterm=underline,strikethrough gui=underlin…
1147 \ 'term': attr, 'cterm': attr}], hlget('myhlg2'))