Home
last modified time | relevance | path

Searched refs:tabcount (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/
H A Dindent.c100 int tabcount; in tabstop_padding() local
108 tabcount = vts[0]; in tabstop_padding()
119 if (t > tabcount) in tabstop_padding()
120 padding = vts[tabcount] - (int)((col - tabcol) % vts[tabcount]); in tabstop_padding()
131 int tabcount; in tabstop_at() local
149 if (t > tabcount) in tabstop_at()
161 int tabcount; in tabstop_start() local
178 return excess + ((col - excess) / vts[tabcount]) * vts[tabcount]; in tabstop_start()
197 int tabcount; in tabstop_fromto() local
231 if (t > tabcount) in tabstop_fromto()
[all …]
H A Dscreen.c4383 int tabcount = 0; in draw_tabline() local
4446 ++tabcount; in draw_tabline()
4448 tabwidth = (Columns - 1 + tabcount / 2) / tabcount; in draw_tabline()
4453 tabcount = 0; in draw_tabline()
4535 ++tabcount; in draw_tabline()
4537 TabPageIdxs[scol++] = tabcount; in draw_tabline()
H A Dex_docmd.c6691 int tabcount = 1; in ex_tabs() local
6698 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++); in ex_tabs()