Home
last modified time | relevance | path

Searched refs:attrs (Results 1 – 19 of 19) sorted by relevance

/vim-8.2.3635/src/testdir/
H A Dtest_highlight.vim110 call assert_equal([attrs[4]] + repeat([attrs[5]], 5), attrs[4:9])
111 call assert_notequal(attrs[0], attrs[4])
112 call assert_notequal(attrs[4], attrs[5])
183 call assert_notequal(attrs[0], attrs[4])
184 call assert_notequal(attrs[0], attrs[5])
185 call assert_notequal(attrs[0], attrs[6])
240 call assert_equal(repeat([attrs[4]], 5) + [attrs[5]], attrs[0:5])
293 call assert_equal([attrs[4]] + repeat([attrs[5]], 5), attrs[4:9])
335 call assert_equal([attrs[6]] + repeat([attrs[7]], 3), attrs[6:9])
391 call assert_equal([attrs[6]] + repeat([attrs[7]], 3), attrs[6:9])
[all …]
H A Dview_util.vim47 let attrs = []
49 let attrs += [map(range(1, a:width), 'screenattr(l, v:val)')]
51 return attrs
/vim-8.2.3635/src/libvterm/t/
H A D64screen_pen.test8 ?screen_cell 0,0 = {0x41} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
12 ?screen_cell 0,1 = {0x42} width=1 attrs={B} fg=rgb(240,240,240) bg=rgb(0,0,0)
16 ?screen_cell 0,2 = {0x43} width=1 attrs={BI} fg=rgb(240,240,240) bg=rgb(0,0,0)
32 ?screen_cell 0,6 = {0x47} width=1 attrs={} fg=idx(1) bg=rgb(0,0,0)
36 ?screen_cell 0,7 = {0x48} width=1 attrs={} fg=rgb(240,240,240) bg=idx(2)
40 ?screen_cell 0,0 = {} width=1 attrs={R} fg=idx(3) bg=idx(4)
41 ?screen_cell 0,79 = {} width=1 attrs={R} fg=idx(3) bg=idx(4)
45 ?screen_cell 0,0 = {} width=1 attrs={} fg=idx(3) bg=idx(4)
46 ?screen_cell 0,79 = {} width=1 attrs={} fg=idx(3) bg=idx(4)
51 ?screen_cell 0,0 = {} width=1 attrs={R} fg=idx(3) bg=idx(4)
[all …]
H A D67screen_dbl_wh.test10 ?screen_cell 0,0 = {0x61} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
16 ?screen_cell 0,0 = {0x61} width=1 attrs={} dwl fg=rgb(240,240,240) bg=rgb(0,0,0)
24 ?screen_cell 0,0 = {0x61} width=1 attrs={} dwl dhl-top fg=rgb(240,240,240) bg=rgb(0,0,0)
25 ?screen_cell 1,0 = {0x61} width=1 attrs={} dwl dhl-bottom fg=rgb(240,240,240) bg=rgb(0,0,0)
30 ?screen_cell 0,0 = {0x61} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
32 ?screen_cell 0,0 = {0x61} width=1 attrs={} dwl fg=rgb(240,240,240) bg=rgb(0,0,0)
37 ?screen_cell 23,0 = {0x46} width=1 attrs={} dwl fg=rgb(240,240,240) bg=rgb(0,0,0)
38 ?screen_cell 24,0 = {} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
H A D61screen_unicode.test12 ?screen_cell 0,0 = {0xc1} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
21 ?screen_cell 0,0 = {0xff10} width=2 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
30 ?screen_cell 0,0 = {0x65,0x301} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
35 …?screen_cell 0,0 = {0x65,0x301,0x302,0x303,0x304,0x305} width=1 attrs={} fg=rgb(240,240,240) bg=rg…
41 …?screen_cell 0,0 = {0x65,0x301,0x301,0x301,0x301,0x301} width=1 attrs={} fg=rgb(240,240,240) bg=rg…
46 ?screen_cell 0,79 = {} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
47 ?screen_cell 1,0 = {0xff10} width=2 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
H A Dharness.c970 if(cell.attrs.bold) printf("B"); in main()
971 if(cell.attrs.underline) printf("U%d", cell.attrs.underline); in main()
972 if(cell.attrs.italic) printf("I"); in main()
973 if(cell.attrs.blink) printf("K"); in main()
974 if(cell.attrs.reverse) printf("R"); in main()
975 if(cell.attrs.font) printf("F%d", cell.attrs.font); in main()
977 if(cell.attrs.dwl) printf("dwl "); in main()
978 if(cell.attrs.dhl) printf("dhl-%s ", cell.attrs.dhl == 2 ? "bottom" : "top"); in main()
H A D60screen_ascii.test12 ?screen_cell 0,0 = {0x41} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
13 ?screen_cell 0,1 = {0x42} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
14 ?screen_cell 0,2 = {0x43} width=1 attrs={} fg=rgb(240,240,240) bg=rgb(0,0,0)
/vim-8.2.3635/src/libvterm/src/
H A Dscreen.c559 dst->pen.bold = src->attrs.bold; in resize_buffer()
561 dst->pen.italic = src->attrs.italic; in resize_buffer()
562 dst->pen.blink = src->attrs.blink; in resize_buffer()
566 dst->pen.font = src->attrs.font; in resize_buffer()
844 cell->attrs.bold = intcell->pen.bold; in vterm_screen_get_cell()
846 cell->attrs.italic = intcell->pen.italic; in vterm_screen_get_cell()
847 cell->attrs.blink = intcell->pen.blink; in vterm_screen_get_cell()
850 cell->attrs.strike = intcell->pen.strike; in vterm_screen_get_cell()
851 cell->attrs.font = intcell->pen.font; in vterm_screen_get_cell()
853 cell->attrs.dwl = intcell->pen.dwl; in vterm_screen_get_cell()
[all …]
/vim-8.2.3635/src/
H A Dgui_athena.c492 XpmAttributes attrs; in createXpmImages() local
514 attrs.valuemask = XpmColorSymbols; in createXpmImages()
515 attrs.colorsymbols = color; in createXpmImages()
516 attrs.numsymbols = 5; in createXpmImages()
524 &map, &mask, &attrs); in createXpmImages()
527 &map, &mask, &attrs); in createXpmImages()
542 attrs.width, attrs.height, in createXpmImages()
545 attrs.width, attrs.height); in createXpmImages()
547 attrs.width, attrs.height, 0, 0); in createXpmImages()
556 XpmFreeAttributes(&attrs); in createXpmImages()
H A Dterminal.c56 VTermScreenCellAttrs attrs; member
1700 attr->attrs = cell->attrs; in cell2cellattr()
2849 cell->attrs.bold = 1; in hl2vtermAttr()
2851 cell->attrs.underline = 1; in hl2vtermAttr()
2853 cell->attrs.italic = 1; in hl2vtermAttr()
2855 cell->attrs.strike = 1; in hl2vtermAttr()
2857 cell->attrs.reverse = 1; in hl2vtermAttr()
5705 } attrs[] = { in f_term_getattr() local
6100 VTermScreenCellAttrs attrs; in f_term_scrape() local
6117 attrs = cellattr->attrs; in f_term_scrape()
[all …]
H A Dos_win32.c3213 int attrs = win32_getattrs(name); in mch_hide() local
3214 if (attrs == -1) in mch_hide()
3217 attrs |= FILE_ATTRIBUTE_HIDDEN; in mch_hide()
3218 win32_setattrs(name, attrs); in mch_hide()
3420 win32_setattrs(char_u *name, int attrs) in win32_setattrs() argument
3429 res = SetFileAttributesW(p, attrs); in win32_setattrs()
3441 int attrs = win32_getattrs(name); in win32_set_archive() local
3442 if (attrs == -1) in win32_set_archive()
3445 attrs |= FILE_ATTRIBUTE_ARCHIVE; in win32_set_archive()
3457 int attrs = win32_getattrs(name); in mch_writable() local
[all …]
H A Dgui_x11.c3201 XpmAttributes attrs; in gui_mch_register_sign() local
3218 attrs.valuemask = XpmColorSymbols; in gui_mch_register_sign()
3219 attrs.numsymbols = 2; in gui_mch_register_sign()
3220 attrs.colorsymbols = color; in gui_mch_register_sign()
3221 attrs.colorsymbols[0].pixel = gui.back_pixel; in gui_mch_register_sign()
3222 attrs.colorsymbols[1].pixel = gui.norm_pixel; in gui_mch_register_sign()
3224 &sign, NULL, &attrs); in gui_mch_register_sign()
H A Dgui_motif.c1168 XpmAttributes attrs; in check_xpm() local
1173 attrs.valuemask = 0; in check_xpm()
1178 (char *)path, &map, &mask, &attrs); in check_xpm()
1179 XpmFreeAttributes(&attrs); in check_xpm()
/vim-8.2.3635/src/libvterm/include/
H A Dvterm.h488 VTermScreenCellAttrs attrs; member
564 …_get_attrs_extent(const VTermScreen *screen, VTermRect *extent, VTermPos pos, VTermAttrMask attrs);
/vim-8.2.3635/runtime/autoload/
H A Dxmlcomplete.vim250 let attrs = ['encoding', 'version="1.0"', 'version']
260 let attrs = keys(g:xmldata{'_'.g:xmldata_connection[b:xml_namespace]}[tag][1])
263 for m in sort(attrs)
H A Dhtmlcomplete.vim566 let attrs = keys(b:html_omni[tag][1])
571 for m in sort(attrs)
/vim-8.2.3635/runtime/syntax/
H A Dbaan.vim1272 syn keyword baanBshell get.window.attrs
1273 syn keyword baanBshell get.mwindow.attrs
1438 syn keyword baanBshell get.attrs
1439 syn keyword baanBshell put.attrs
H A Dprogress.vim203 syn keyword ProgressOperator list-property-names list-query-attrs list-set-attrs list-widgets liter…
H A Dperl.vim95 syn match perlStatementInclude "\<\%(use\|no\)\s\+\%(\%(attributes\|attrs\|autodie\|autouse\|paren…