Searched refs:vcol (Results 1 - 20 of 20) sorted by relevance

/macosx-10.10.1/text_cmds-88/pr/
H A Dpr.h71 struct vcol { struct
H A Dpr.c346 struct vcol *vc;
385 (struct vcol *)malloc((unsigned)mvc*sizeof(struct vcol))) == NULL) {
/macosx-10.10.1/vim-55/runtime/indent/
H A Deruby.vim49 let vcol = col('.')
52 call cursor(v:lnum,vcol)
H A Dliquid.vim48 let vcol = col('.')
H A Druby.vim203 let vcol = col('.')
294 call cursor(v:lnum, vcol)
/macosx-10.10.1/vim-55/src/
H A Dcharset.c1219 * Return TRUE if virtual column "vcol" is in the rightmost column of window
1223 in_win_border(wp, vcol)
1225 colnr_T vcol;
1235 if ((int)vcol < width1 - 1)
1237 if ((int)vcol == width1 - 1)
1242 return ((vcol - width1) % width2 == width2 - 1);
1262 colnr_T vcol; local
1270 vcol = 0;
1305 incr = ts - (vcol % ts);
1322 && in_win_border(wp, vcol))
1390 colnr_T vcol; local
[all...]
H A Dscreen.c2171 static int advance_color_col __ARGS((int vcol, int **color_cols));
2177 advance_color_col(vcol, color_cols)
2178 int vcol;
2181 while (**color_cols >= 0 && vcol > **color_cols)
2674 long vcol = 0; /* virtual column (for tabs) */ local
2675 long vcol_prev = -1; /* "vcol" of previous character */
2827 # define VCOL_HLC (vcol - vcol_off)
2829 # define VCOL_HLC (vcol)
3134 while (vcol < v && *ptr != NUL)
3136 c = win_lbr_chartabsize(wp, ptr, (colnr_T)vcol, NUL
[all...]
H A Dedit.c255 static colnr_T Insstart_blank_vcol; /* vcol for first inserted blank */
1741 int vcol; local
1766 vcol = vc;
1787 vcol = get_indent() - vcol;
1839 vcol = get_indent() - vcol;
1840 curwin->w_virtcol = (colnr_T)((vcol < 0) ? 0 : vcol);
1845 vcol
7287 int vcol; local
8625 colnr_T vcol; local
9376 colnr_T want_vcol, vcol; local
[all...]
H A Dex_cmds.c585 long vcol; local
613 vcol = 0;
622 start_vcol = vcol;
637 len = num_spaces = vcol - start_vcol;
691 vcol += chartabsize(ptr + col, (colnr_T)vcol);
3897 int vcol; local
3963 vcol = 0;
3964 for (p = theline; indent > vcol; ++p)
3967 ++vcol;
[all...]
H A Dops.c414 * 1. Get start vcol
3236 colnr_T vcol; local
3519 vcol = 0;
3533 for (ptr = oldp; vcol < col && *ptr; )
3536 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
3537 vcol += incr;
3541 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3543 if (vcol < col) /* line too short, padd with spaces */
3544 bd.startspaces = col - vcol;
[all...]
H A Dmisc1.c1964 colnr_T vcol; local
1985 getvcol(curwin, &curwin->w_cursor, NULL, &vcol, NULL);
1990 new_vcol = vcol + chartabsize(buf, vcol);
1991 while (oldp[col + oldlen] != NUL && vcol < new_vcol)
1993 vcol += chartabsize(oldp + col + oldlen, vcol);
1996 if (vcol > new_vcol && oldp[col + oldlen] == TAB)
2004 if (vcol > new_vcol)
2005 newlen += vcol
5842 colnr_T vcol; local
[all...]
H A Dex_getln.c2147 int vcol = 0; local
2174 vcol = indent;
2259 vcol = 0;
2268 } while (++vcol % 8);
2273 vcol += char2cells(*p);
2331 } while (++vcol % 8);
2337 vcol += char2cells(c1);
H A Dgetchar.c2561 colnr_T col = 0, vcol; local
2598 col = vcol = curwin->w_wcol = 0;
2603 curwin->w_wcol = vcol;
2604 vcol += lbr_chartabsize(ptr + col,
2605 (colnr_T)vcol);
H A Dui.c3056 vcol2col(wp, lnum, vcol)
3059 int vcol;
3067 while (count <= vcol && *ptr != NUL)
H A Dbuffer.c3095 col_print(buf, buflen, col, vcol)
3099 int vcol;
3101 if (col == vcol)
3104 vim_snprintf((char *)buf, buflen, "%d-%d", col, vcol);
H A Dquickfix.c3579 || dict_add_nr_str(dict, "vcol", (long)qfp->qf_viscol, NULL) == FAIL
3611 int vcol; local
3649 vcol = get_dict_number(d, (char_u *)"vcol");
3681 vcol, /* vis_col */
/macosx-10.10.1/vim-55/src/proto/
H A Dui.pro60 int vcol2col __ARGS((win_T *wp, linenr_T lnum, int vcol));
H A Dcharset.pro31 int in_win_border __ARGS((win_T *wp, colnr_T vcol));
H A Dbuffer.pro40 void col_print __ARGS((char_u *buf, size_t buflen, int col, int vcol));
/macosx-10.10.1/vim-55/runtime/syntax/
H A D2html.vim888 let s:vcol = virtcol([s:lnum, s:startcol + s:idx + s:offset - len(s:prevc)])
889 let s:i = &ts - (s:vcol % &ts)

Completed in 177 milliseconds