Home | History | Annotate | Download | only in ex

Lines Matching refs:col

105 	size_t col, len;
113 col = 0;
126 if (ex_prchars(sp, p, &col, 8, 0, 0))
141 else if (ex_ldisplay(sp, p, len, col, flags))
157 ex_ldisplay(SCR *sp, const CHAR_T *p, size_t len, size_t col, u_int flags)
159 if (len > 0 && ex_prchars(sp, p, &col, len, LF_ISSET(E_C_LIST), 0))
163 if (ex_prchars(sp, p, &col, 1, LF_ISSET(E_C_LIST), 0))
182 size_t col, len;
184 col = 0;
187 if (ex_prchars(sp, p, &col, 8, 0, 0))
195 if (ex_prchars(sp, p, &col, fp->cno, 0, ' '))
199 p, &col, tp->cno == fp->cno ? 1 : tp->cno - fp->cno, 0, '^'))
204 if (ex_prchars(sp, p, &col, 5, 0, 0))
220 size_t col, tlen, ts;
225 for (col = *colp; len--;)
227 for (tlen = ts - col % ts;
228 col < sp->cols && tlen--; ++col) {
244 if (!repeatc && col + tlen < sp->cols) {
246 col += tlen;
248 for (; tlen--; ++kp, ++col) {
249 if (col == sp->cols) {
250 col = 0;
259 intr: *colp = col;