Searched refs:endcol (Results 1 - 17 of 17) sorted by relevance

/macosx-10.9.5/emacs-92/emacs/lisp/
H A Drect.el66 (let (startcol startlinepos endcol endlinepos)
74 (setq endcol (current-column))
77 (if (< endcol startcol)
78 (setq startcol (prog1 endcol (setq endcol startcol))))
89 (move-to-column endcol t)
90 (move-to-column endcol))
93 (if (and (not coerce-tabs) (> (current-column) endcol))
95 (setq endextra (- endcol (current-column)))
101 (- endcol startco
[all...]
H A Dalign.el1231 (let ((endcol (align-column
1242 (move-to-column endcol t)
/macosx-10.9.5/text_cmds-87/column/
H A Dcolumn.c155 int chcnt, col, cnt, endcol, numcols; local
159 endcol = maxlength;
167 endcol = maxlength;
170 while ((cnt = roundup(chcnt + 1, TAB)) <= endcol) {
174 endcol += maxlength;
184 int base, chcnt, cnt, col, endcol, numcols, numrows, row; local
192 endcol = maxlength;
198 while ((cnt = roundup(chcnt + 1, TAB)) <= endcol) {
202 endcol += maxlength;
/macosx-10.9.5/remote_cmds-41.90.1/talk.tproj/
H A Ddisplay.c123 int endcol, xcol, ii, c; local
125 endcol = win->x_col;
126 xcol = endcol - 1;
140 for (ii = xcol + 1; ii < endcol; ii++)
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/example/
H A Dvirterm157 parseloc $second endrow endcol
158 if {$endcol != "end"} {incr endcol -1}
160 set data [string range $termdata($startrow) $startcol $endcol]
166 append data [string range $termdata($endrow) 0 $endcol]
/macosx-10.9.5/emacs-92/emacs/lisp/textmodes/
H A Dfill.el1166 endcol ; column of `end'
1204 (setq endcol (current-column))
1208 (setq ncols (- fc endcol))
1228 (- endcol indent)) ;text width
1256 (setq ncols (- fc endcol))
/macosx-10.9.5/vim-53/src/
H A Dscreen.c126 static void screen_line __ARGS((int row, int coloff, int endcol, int clear_width, int rlflag));
129 static void screen_line __ARGS((int row, int coloff, int endcol, int clear_width));
3288 shl->endcol = MAXCOL;
3308 shl->endcol = shl->rm.endpos[0].col;
3310 shl->endcol = MAXCOL;
3312 if (shl->startcol == shl->endcol)
3315 if (has_mbyte && line[shl->endcol] != NUL)
3316 shl->endcol += (*mb_ptr2len)(line + shl->endcol);
3319 ++shl->endcol;
[all...]
H A Dmove.c941 colnr_T endcol; local
961 startcol = curwin->w_virtcol = endcol = curwin->w_leftcol;
965 &startcol, &(curwin->w_virtcol), &endcol);
973 endcol += extra;
1030 off_right = (int)endcol - (int)(curwin->w_leftcol + W_WIDTH(curwin)
1148 endcol = (n - curwin->w_height + 1) * width;
1149 while (endcol > curwin->w_virtcol)
1150 endcol -= width;
1151 if (endcol > curwin->w_skipcol)
1152 curwin->w_skipcol = endcol;
[all...]
H A Dsyntax.c405 static int check_keyword_id __ARGS((char_u *line, int startcol, int *endcol, long *flags, short **next_list, stateitem_T *cur_si, int *ccharp));
1846 int endcol; local
1955 &endcol, &flags, &next_list, cur_si,
1966 cur_si->si_m_endpos.col = endcol;
1968 cur_si->si_h_endpos.col = endcol;
4013 int endcol = 15; local
4019 if (msg_col >= endcol) /* output at least one space */
4020 endcol = msg_col + 1;
4021 if (Columns <= endcol) /* avoid hang for tiny window */
4022 endcol
8720 int endcol = 19; local
[all...]
H A Dops.c1848 int endcol = 0; local
1856 endcol = getviscol2(oap->end.col, oap->end.coladd);
1861 coladvance(endcol);
2943 colnr_T startcol = 0, endcol = MAXCOL; local
2973 endcol = oap->end.col;
2978 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
2981 * char; endcol will be on last byte
2983 && (*mb_head_off)(p, p + endcol) == 0
2994 endcol = startcol;
3000 endcol
[all...]
H A Dstructs.h1792 colnr_T endcol; /* in win_line() points to char where HL ends */ member in struct:__anon14321
H A Dspell.c10348 colnr_T endcol; local
10355 endcol = 0;
10372 endcol = (colnr_T)STRLEN(line);
10377 endcol = col;
10379 if (endcol > 0)
10384 p = line + endcol;
10391 && regmatch.endp[0] == line + endcol)
/macosx-10.9.5/file_cmds-230/ls/
H A Dprint.c529 int endcol; local
581 endcol = colwidth;
594 <= endcol) {
600 endcol += colwidth;
/macosx-10.9.5/vim-53/runtime/macros/
H A Dmatchit.vim178 let endcol = matchend(matchline, regexp)
179 let suf = strlen(matchline) - endcol
181 let suffix = (suf ? '\)\%' . (endcol + 1) . 'c.*$' : '\)$')
304 let endcol = matchend(matchline, regexp)
305 if endcol > currcol " This is NOT off by one!
306 execute "normal!" . (endcol - currcol) . "l"
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tcldom/
H A Dinstall.tcl1143 set tkgetdir::colors(endcol) "#FF8000"
1232 set tkgetdir::colors(endcol) [lindex $args $ind]
1507 .dirsel.f2.cv itemconfigure $id -fill $tkgetdir::colors(endcol)
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/
H A Dinstall.tcl1143 set tkgetdir::colors(endcol) "#FF8000"
1232 set tkgetdir::colors(endcol) [lindex $args $ind]
1507 .dirsel.f2.cv itemconfigure $id -fill $tkgetdir::colors(endcol)
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxslt/
H A Dinstall.tcl1130 set tkgetdir::colors(endcol) "#FF8000"
1219 set tkgetdir::colors(endcol) [lindex $args $ind]
1494 .dirsel.f2.cv itemconfigure $id -fill $tkgetdir::colors(endcol)

Completed in 455 milliseconds