Searched refs:ecol (Results 1 – 7 of 7) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | move.c | 1232 colnr_T scol = 0, ccol = 0, ecol = 0; in textpos2screenpos() local 1244 getvcol(wp, pos, &scol, &ccol, &ecol); in textpos2screenpos() 1268 row = rowoff = scol = ccol = ecol = 0; in textpos2screenpos() 1273 *ecolp = ecol + coloff; in textpos2screenpos() 1288 int scol = 0, ccol = 0, ecol = 0; in f_screenpos() local 1307 textpos2screenpos(wp, &pos, &row, &scol, &ccol, &ecol); in f_screenpos() 1312 dict_add_number(dict, "endcol", ecol); in f_screenpos()
|
| H A D | regexp.c | 2492 colnr_T ecol; in reg_submatch_list() local 2508 ecol = rsm.sm_mmatch->endpos[no].col; in reg_submatch_list() 2517 if (list_append_string(list, s, ecol - scol) == FAIL) in reg_submatch_list() 2531 if (list_append_string(list, s, ecol) == FAIL) in reg_submatch_list()
|
| H A D | misc2.c | 291 colnr_T scol, ecol; in coladvance2() local 293 getvcol(curwin, pos, &scol, NULL, &ecol); in coladvance2() 294 pos->coladd = ecol - scol; in coladvance2()
|
| H A D | edit.c | 1833 colnr_T ecol = curwin->w_cursor.col + 1; in del_char_after_col() local 1847 if (*ml_get_cursor() == NUL || curwin->w_cursor.col == ecol) in del_char_after_col() 1849 del_bytes((long)((int)ecol - curwin->w_cursor.col), FALSE, TRUE); in del_char_after_col()
|
| H A D | ops.c | 1839 colnr_T scol, ecol; in adjust_cursor_eol() local 1842 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol); in adjust_cursor_eol() 1843 curwin->w_cursor.coladd = ecol - scol + 1; in adjust_cursor_eol()
|
| H A D | normal.c | 4465 colnr_T scol, ecol; in nv_csearch() local 4467 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol); in nv_csearch() 4468 curwin->w_cursor.coladd = ecol - scol; in nv_csearch()
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | rubycomplete.vim | 123 let [enum,ecol] = searchpairpos( s:end_start_regex, s:end_middle_regex, s:end_end_regex, 'W' )
|