make ^T work in presence of wide chars
[nvi.git] / vi / v_txt.c
blobb44fdb2b03df2bc45f355006fa0a2bf2c6d3b594
1 /*-
2 * Copyright (c) 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1992, 1993, 1994, 1995, 1996
5 * Keith Bostic. All rights reserved.
7 * See the LICENSE file for redistribution information.
8 */
10 #include "config.h"
12 #ifndef lint
13 static const char sccsid[] = "$Id: v_txt.c,v 10.104 2001/07/01 19:46:24 skimo Exp $ (Berkeley) $Date: 2001/07/01 19:46:24 $";
14 #endif /* not lint */
16 #include <sys/types.h>
17 #include <sys/queue.h>
18 #include <sys/stat.h>
19 #include <sys/time.h>
21 #include <bitstring.h>
22 #include <ctype.h>
23 #include <errno.h>
24 #include <limits.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <unistd.h>
30 #include "../common/common.h"
31 #include "vi.h"
33 static int txt_abbrev __P((SCR *, TEXT *, CHAR_T *, int, int *, int *));
34 static void txt_ai_resolve __P((SCR *, TEXT *, int *));
35 static TEXT *txt_backup __P((SCR *, TEXTH *, TEXT *, u_int32_t *));
36 static int txt_dent __P((SCR *, TEXT *, int));
37 static int txt_emark __P((SCR *, TEXT *, size_t));
38 static void txt_err __P((SCR *, TEXTH *));
39 static int txt_fc __P((SCR *, TEXT *, int *));
40 static int txt_fc_col __P((SCR *, int, ARGS **));
41 static int txt_hex __P((SCR *, TEXT *));
42 static int txt_insch __P((SCR *, TEXT *, CHAR_T *, u_int));
43 static int txt_isrch __P((SCR *, VICMD *, TEXT *, u_int8_t *));
44 static int txt_map_end __P((SCR *));
45 static int txt_map_init __P((SCR *));
46 static int txt_margin __P((SCR *, TEXT *, TEXT *, int *, u_int32_t));
47 static void txt_nomorech __P((SCR *));
48 static void txt_Rresolve __P((SCR *, TEXTH *, TEXT *, const size_t));
49 static int txt_resolve __P((SCR *, TEXTH *, u_int32_t));
50 static int txt_showmatch __P((SCR *, TEXT *));
51 static void txt_unmap __P((SCR *, TEXT *, u_int32_t *));
53 /* Cursor character (space is hard to track on the screen). */
54 #if defined(DEBUG) && 0
55 #undef CH_CURSOR
56 #define CH_CURSOR '+'
57 #endif
60 * v_tcmd --
61 * Fill a buffer from the terminal for vi.
63 * PUBLIC: int v_tcmd __P((SCR *, VICMD *, ARG_CHAR_T, u_int));
65 int
66 v_tcmd(SCR *sp, VICMD *vp, ARG_CHAR_T prompt, u_int flags)
68 /* Normally, we end up where we started. */
69 vp->m_final.lno = sp->lno;
70 vp->m_final.cno = sp->cno;
72 /* Initialize the map. */
73 if (txt_map_init(sp))
74 return (1);
76 /* Move to the last line. */
77 sp->lno = TMAP[0].lno;
78 sp->cno = 0;
80 /* Don't update the modeline for now. */
81 F_SET(sp, SC_TINPUT_INFO);
83 /* Set the input flags. */
84 LF_SET(TXT_APPENDEOL |
85 TXT_CR | TXT_ESCAPE | TXT_INFOLINE | TXT_MAPINPUT);
86 if (O_ISSET(sp, O_ALTWERASE))
87 LF_SET(TXT_ALTWERASE);
88 if (O_ISSET(sp, O_TTYWERASE))
89 LF_SET(TXT_TTYWERASE);
91 /* Do the input thing. */
92 if (v_txt(sp, vp, NULL, NULL, 0, prompt, 0, 1, flags))
93 return (1);
95 /* Reenable the modeline updates. */
96 F_CLR(sp, SC_TINPUT_INFO);
98 /* Clean up the map. */
99 if (txt_map_end(sp))
100 return (1);
102 if (IS_ONELINE(sp))
103 F_SET(sp, SC_SCR_REDRAW); /* XXX */
105 /* Set the cursor to the resulting position. */
106 sp->lno = vp->m_final.lno;
107 sp->cno = vp->m_final.cno;
109 return (0);
113 * txt_map_init
114 * Initialize the screen map for colon command-line input.
116 static int
117 txt_map_init(SCR *sp)
119 SMAP *esmp;
120 VI_PRIVATE *vip;
122 vip = VIP(sp);
123 if (!IS_ONELINE(sp)) {
125 * Fake like the user is doing input on the last line of the
126 * screen. This makes all of the scrolling work correctly,
127 * and allows us the use of the vi text editing routines, not
128 * to mention practically infinite length ex commands.
130 * Save the current location.
132 vip->sv_tm_lno = TMAP->lno;
133 vip->sv_tm_soff = TMAP->soff;
134 vip->sv_tm_coff = TMAP->coff;
135 vip->sv_t_maxrows = sp->t_maxrows;
136 vip->sv_t_minrows = sp->t_minrows;
137 vip->sv_t_rows = sp->t_rows;
140 * If it's a small screen, TMAP may be small for the screen.
141 * Fix it, filling in fake lines as we go.
143 if (IS_SMALL(sp))
144 for (esmp =
145 HMAP + (sp->t_maxrows - 1); TMAP < esmp; ++TMAP) {
146 TMAP[1].lno = TMAP[0].lno + 1;
147 TMAP[1].coff = HMAP->coff;
148 TMAP[1].soff = 1;
151 /* Build the fake entry. */
152 TMAP[1].lno = TMAP[0].lno + 1;
153 TMAP[1].soff = 1;
154 TMAP[1].coff = 0;
155 SMAP_FLUSH(&TMAP[1]);
156 ++TMAP;
158 /* Reset the screen information. */
159 sp->t_rows = sp->t_minrows = ++sp->t_maxrows;
161 return (0);
165 * txt_map_end
166 * Reset the screen map for colon command-line input.
168 static int
169 txt_map_end(SCR *sp)
171 VI_PRIVATE *vip;
172 size_t cnt;
174 vip = VIP(sp);
175 if (!IS_ONELINE(sp)) {
176 /* Restore the screen information. */
177 sp->t_rows = vip->sv_t_rows;
178 sp->t_minrows = vip->sv_t_minrows;
179 sp->t_maxrows = vip->sv_t_maxrows;
182 * If it's a small screen, TMAP may be wrong. Clear any
183 * lines that might have been overwritten.
185 if (IS_SMALL(sp)) {
186 for (cnt = sp->t_rows; cnt <= sp->t_maxrows; ++cnt) {
187 (void)sp->gp->scr_move(sp, cnt, 0);
188 (void)sp->gp->scr_clrtoeol(sp);
190 TMAP = HMAP + (sp->t_rows - 1);
191 } else
192 --TMAP;
195 * The map may be wrong if the user entered more than one
196 * (logical) line. Fix it. If the user entered a whole
197 * screen, this will be slow, but we probably don't care.
199 if (!O_ISSET(sp, O_LEFTRIGHT))
200 while (vip->sv_tm_lno != TMAP->lno ||
201 vip->sv_tm_soff != TMAP->soff)
202 if (vs_sm_1down(sp))
203 return (1);
207 * Invalidate the cursor and the line size cache, the line never
208 * really existed. This fixes bugs where the user searches for
209 * the last line on the screen + 1 and the refresh routine thinks
210 * that's where we just were.
212 VI_SCR_CFLUSH(vip);
213 F_SET(vip, VIP_CUR_INVALID);
215 return (0);
219 * If doing input mapping on the colon command line, may need to unmap
220 * based on the command.
222 #define UNMAP_TST \
223 FL_ISSET(ec_flags, EC_MAPINPUT) && LF_ISSET(TXT_INFOLINE)
226 * Internally, we maintain tp->lno and tp->cno, externally, everyone uses
227 * sp->lno and sp->cno. Make them consistent as necessary.
229 #define UPDATE_POSITION(sp, tp) { \
230 (sp)->lno = (tp)->lno; \
231 (sp)->cno = (tp)->cno; \
235 * v_txt --
236 * Vi text input.
238 * PUBLIC: int v_txt __P((SCR *, VICMD *, MARK *,
239 * PUBLIC: const CHAR_T *, size_t, ARG_CHAR_T, db_recno_t, u_long, u_int32_t));
242 v_txt(SCR *sp, VICMD *vp, MARK *tm, const CHAR_T *lp, size_t len, ARG_CHAR_T prompt, db_recno_t ai_line, u_long rcount, u_int32_t flags)
245 /* To MARK. */
246 /* Input line. */
247 /* Input line length. */
248 /* Prompt to display. */
249 /* Line number to use for autoindent count. */
250 /* Replay count. */
251 /* TXT_* flags. */
253 EVENT ev, *evp; /* Current event. */
254 EVENT fc; /* File name completion event. */
255 GS *gp;
256 TEXT *ntp, *tp; /* Input text structures. */
257 TEXT ait; /* Autoindent text structure. */
258 TEXT wmt; /* Wrapmargin text structure. */
259 TEXTH *tiqh;
260 VI_PRIVATE *vip;
261 abb_t abb; /* State of abbreviation checks. */
262 carat_t carat; /* State of the "[^0]^D" sequences. */
263 quote_t quote; /* State of quotation. */
264 size_t owrite, insert; /* Temporary copies of TEXT fields. */
265 size_t margin; /* Wrapmargin value. */
266 size_t rcol; /* 0-N: insert offset in the replay buffer. */
267 size_t tcol; /* Temporary column. */
268 u_int32_t ec_flags; /* Input mapping flags. */
269 #define IS_RESTART 0x01 /* Reset the incremental search. */
270 #define IS_RUNNING 0x02 /* Incremental search turned on. */
271 u_int8_t is_flags;
272 int abcnt, ab_turnoff; /* Abbreviation character count, switch. */
273 int filec_redraw; /* Redraw after the file completion routine. */
274 int hexcnt; /* Hex character count. */
275 int showmatch; /* Showmatch set on this character. */
276 int wm_set, wm_skip; /* Wrapmargin happened, blank skip flags. */
277 int max, tmp;
278 CHAR_T *p;
280 gp = sp->gp;
281 vip = VIP(sp);
284 * Set the input flag, so tabs get displayed correctly
285 * and everyone knows that the text buffer is in use.
287 F_SET(sp, SC_TINPUT);
290 * Get one TEXT structure with some initial buffer space, reusing
291 * the last one if it's big enough. (All TEXT bookkeeping fields
292 * default to 0 -- text_init() handles this.) If changing a line,
293 * copy it into the TEXT buffer.
295 tiqh = &sp->tiq;
296 if (tiqh->cqh_first != (void *)tiqh) {
297 tp = tiqh->cqh_first;
298 if (tp->q.cqe_next != (void *)tiqh || tp->lb_len < len + 32) {
299 text_lfree(tiqh);
300 goto newtp;
302 tp->ai = tp->insert = tp->offset = tp->owrite = 0;
303 if (lp != NULL) {
304 tp->len = len;
305 BINC_RETW(sp, tp->lb, tp->lb_len, len);
306 MEMMOVEW(tp->lb, lp, len);
307 } else
308 tp->len = 0;
309 } else {
310 newtp: if ((tp = text_init(sp, lp, len, len + 32)) == NULL)
311 return (1);
312 CIRCLEQ_INSERT_HEAD(tiqh, tp, q);
315 /* Set default termination condition. */
316 tp->term = TERM_OK;
318 /* Set the starting line, column. */
319 tp->lno = sp->lno;
320 tp->cno = sp->cno;
323 * Set the insert and overwrite counts. If overwriting characters,
324 * do insertion afterward. If not overwriting characters, assume
325 * doing insertion. If change is to a mark, emphasize it with an
326 * CH_ENDMARK character.
328 if (len) {
329 if (LF_ISSET(TXT_OVERWRITE)) {
330 tp->owrite = (tm->cno - tp->cno) + 1;
331 tp->insert = (len - tm->cno) - 1;
332 } else
333 tp->insert = len - tp->cno;
335 if (LF_ISSET(TXT_EMARK) && txt_emark(sp, tp, tm->cno))
336 return (1);
340 * Many of the special cases in text input are to handle autoindent
341 * support. Somebody decided that it would be a good idea if "^^D"
342 * and "0^D" deleted all of the autoindented characters. In an editor
343 * that takes single character input from the user, this beggars the
344 * imagination. Note also, "^^D" resets the next lines' autoindent,
345 * but "0^D" doesn't.
347 * We assume that autoindent only happens on empty lines, so insert
348 * and overwrite will be zero. If doing autoindent, figure out how
349 * much indentation we need and fill it in. Update input column and
350 * screen cursor as necessary.
352 if (LF_ISSET(TXT_AUTOINDENT) && ai_line != OOBLNO) {
353 if (v_txt_auto(sp, ai_line, NULL, 0, tp))
354 return (1);
355 tp->cno = tp->ai;
356 } else {
358 * The cc and S commands have a special feature -- leading
359 * <blank> characters are handled as autoindent characters.
360 * Beauty!
362 if (LF_ISSET(TXT_AICHARS)) {
363 tp->offset = 0;
364 tp->ai = tp->cno;
365 } else
366 tp->offset = tp->cno;
369 /* If getting a command buffer from the user, there may be a prompt. */
370 if (LF_ISSET(TXT_PROMPT)) {
371 tp->lb[tp->cno++] = prompt;
372 ++tp->len;
373 ++tp->offset;
377 * If appending after the end-of-line, add a space into the buffer
378 * and move the cursor right. This space is inserted, i.e. pushed
379 * along, and then deleted when the line is resolved. Assumes that
380 * the cursor is already positioned at the end of the line. This
381 * avoids the nastiness of having the cursor reside on a magical
382 * column, i.e. a column that doesn't really exist. The only down
383 * side is that we may wrap lines or scroll the screen before it's
384 * strictly necessary. Not a big deal.
386 if (LF_ISSET(TXT_APPENDEOL)) {
387 tp->lb[tp->cno] = CH_CURSOR;
388 ++tp->len;
389 ++tp->insert;
390 (void)vs_change(sp, tp->lno, LINE_RESET);
394 * Historic practice is that the wrapmargin value was a distance
395 * from the RIGHT-HAND margin, not the left. It's more useful to
396 * us as a distance from the left-hand margin, i.e. the same as
397 * the wraplen value. The wrapmargin option is historic practice.
398 * Nvi added the wraplen option so that it would be possible to
399 * edit files with consistent margins without knowing the number of
400 * columns in the window.
402 * XXX
403 * Setting margin causes a significant performance hit. Normally
404 * we don't update the screen if there are keys waiting, but we
405 * have to if margin is set, otherwise the screen routines don't
406 * know where the cursor is.
408 * !!!
409 * Abbreviated keys were affected by the wrapmargin option in the
410 * historic 4BSD vi. Mapped keys were usually, but sometimes not.
411 * See the comment in vi/v_text():set_txt_std for more information.
413 * !!!
414 * One more special case. If an inserted <blank> character causes
415 * wrapmargin to split the line, the next user entered character is
416 * discarded if it's a <space> character.
418 wm_set = wm_skip = 0;
419 if (LF_ISSET(TXT_WRAPMARGIN))
420 if ((margin = O_VAL(sp, O_WRAPMARGIN)) != 0)
421 margin = sp->cols - margin;
422 else
423 margin = O_VAL(sp, O_WRAPLEN);
424 else
425 margin = 0;
427 /* Initialize abbreviation checks. */
428 abcnt = ab_turnoff = 0;
429 abb = F_ISSET(gp, G_ABBREV) &&
430 LF_ISSET(TXT_MAPINPUT) ? AB_INWORD : AB_NOTSET;
433 * Set up the dot command. Dot commands are done by saving the actual
434 * characters and then reevaluating them so that things like wrapmargin
435 * can change between the insert and the replay.
437 * !!!
438 * Historically, vi did not remap or reabbreviate replayed input. (It
439 * did beep at you if you changed an abbreviation and then replayed the
440 * input. We're not that compatible.) We don't have to do anything to
441 * avoid remapping, as we're not getting characters from the terminal
442 * routines. Turn the abbreviation check off.
444 * XXX
445 * It would be nice if we could swallow backspaces and such, but it's
446 * not all that easy to do. What we can do is turn off the common
447 * error messages during the replay. Otherwise, when the user enters
448 * an illegal command, e.g., "Ia<erase><erase><erase><erase>b<escape>",
449 * and then does a '.', they get a list of error messages after command
450 * completion.
452 rcol = 0;
453 if (LF_ISSET(TXT_REPLAY)) {
454 abb = AB_NOTSET;
455 LF_CLR(TXT_RECORD);
458 /* Other text input mode setup. */
459 quote = Q_NOTSET;
460 carat = C_NOTSET;
461 FL_INIT(is_flags,
462 LF_ISSET(TXT_SEARCHINCR) ? IS_RESTART | IS_RUNNING : 0);
463 filec_redraw = hexcnt = showmatch = 0;
465 /* Initialize input flags. */
466 ec_flags = LF_ISSET(TXT_MAPINPUT) ? EC_MAPINPUT : 0;
468 /* Refresh the screen. */
469 UPDATE_POSITION(sp, tp);
470 if (vs_refresh(sp, 1))
471 return (1);
473 /* If it's dot, just do it now. */
474 if (F_ISSET(vp, VC_ISDOT))
475 goto replay;
477 /* Get an event. */
478 evp = &ev;
479 next: if (v_event_get(sp, evp, 0, ec_flags))
480 return (1);
483 * If file completion overwrote part of the screen and nothing else has
484 * been displayed, clean up. We don't do this as part of the normal
485 * message resolution because we know the user is on the colon command
486 * line and there's no reason to enter explicit characters to continue.
488 if (filec_redraw && !F_ISSET(sp, SC_SCR_EXWROTE)) {
489 filec_redraw = 0;
491 fc.e_event = E_REPAINT;
492 fc.e_flno = vip->totalcount >=
493 sp->rows ? 1 : sp->rows - vip->totalcount;
494 fc.e_tlno = sp->rows;
495 vip->linecount = vip->lcontinue = vip->totalcount = 0;
496 (void)v_erepaint(sp, &fc);
497 (void)vs_refresh(sp, 1);
500 /* Deal with all non-character events. */
501 switch (evp->e_event) {
502 case E_CHARACTER:
503 break;
504 case E_ERR:
505 case E_EOF:
506 F_SET(sp, SC_EXIT_FORCE);
507 return (1);
508 case E_INTERRUPT:
510 * !!!
511 * Historically, <interrupt> exited the user from text input
512 * mode or cancelled a colon command, and returned to command
513 * mode. It also beeped the terminal, but that seems a bit
514 * excessive.
516 goto k_escape;
517 case E_REPAINT:
518 if (v_erepaint(sp, &ev))
519 return (1);
520 goto next;
521 case E_WRESIZE:
522 /* <resize> interrupts the input mode. */
523 v_emsg(sp, NULL, VIM_WRESIZE);
524 goto k_escape;
525 default:
526 v_event_err(sp, evp);
527 goto k_escape;
531 * !!!
532 * If the first character of the input is a nul, replay the previous
533 * input. (Historically, it's okay to replay non-existent input.)
534 * This was not documented as far as I know, and is a great test of vi
535 * clones.
537 if (rcol == 0 && !LF_ISSET(TXT_REPLAY) && evp->e_c == '\0') {
538 if (vip->rep == NULL)
539 goto done;
541 abb = AB_NOTSET;
542 LF_CLR(TXT_RECORD);
543 LF_SET(TXT_REPLAY);
544 goto replay;
548 * File name completion and colon command-line editing. We don't
549 * have enough meta characters, so we expect people to overload
550 * them. If the two characters are the same, then we do file name
551 * completion if the cursor is past the first column, and do colon
552 * command-line editing if it's not.
554 if (quote == Q_NOTSET) {
555 int L__cedit, L__filec;
557 L__cedit = L__filec = 0;
558 if (LF_ISSET(TXT_CEDIT) && O_STR(sp, O_CEDIT) != NULL &&
559 O_STR(sp, O_CEDIT)[0] == evp->e_c)
560 L__cedit = 1;
561 if (LF_ISSET(TXT_FILEC) && O_STR(sp, O_FILEC) != NULL &&
562 O_STR(sp, O_FILEC)[0] == evp->e_c)
563 L__filec = 1;
564 if (L__cedit == 1 && (L__filec == 0 || tp->cno == tp->offset)) {
565 tp->term = TERM_CEDIT;
566 goto k_escape;
568 if (L__filec == 1) {
569 if (txt_fc(sp, tp, &filec_redraw))
570 goto err;
571 goto resolve;
575 /* Abbreviation overflow check. See comment in txt_abbrev(). */
576 #define MAX_ABBREVIATION_EXPANSION 256
577 if (FL_ISSET(evp->e_flags, CH_ABBREVIATED)) {
578 if (++abcnt > MAX_ABBREVIATION_EXPANSION) {
579 if (v_event_flush(sp, CH_ABBREVIATED))
580 msgq(sp, M_ERR,
581 "191|Abbreviation exceeded expansion limit: characters discarded");
582 abcnt = 0;
583 if (LF_ISSET(TXT_REPLAY))
584 goto done;
585 goto resolve;
587 } else
588 abcnt = 0;
590 /* Check to see if the character fits into the replay buffers. */
591 if (LF_ISSET(TXT_RECORD)) {
592 BINC_GOTO(sp, (char *)vip->rep,
593 vip->rep_len, (rcol + 1) * sizeof(EVENT));
594 vip->rep[rcol++] = *evp;
597 replay: if (LF_ISSET(TXT_REPLAY)) {
598 if (rcol == vip->rep_cnt)
599 goto k_escape;
600 evp = vip->rep + rcol++;
603 /* Wrapmargin check for leading space. */
604 if (wm_skip) {
605 wm_skip = 0;
606 if (evp->e_c == ' ')
607 goto resolve;
610 /* If quoted by someone else, simply insert the character. */
611 if (FL_ISSET(evp->e_flags, CH_QUOTED))
612 goto insq_ch;
615 * !!!
616 * If this character was quoted by a K_VLNEXT or a backslash, replace
617 * the placeholder (a carat or a backslash) with the new character.
618 * If it was quoted by a K_VLNEXT, we've already adjusted the cursor
619 * because it has to appear on top of the placeholder character. If
620 * it was quoted by a backslash, adjust the cursor now, the cursor
621 * doesn't appear on top of it. Historic practice in both cases.
623 * Skip tests for abbreviations; ":ab xa XA" followed by "ixa^V<space>"
624 * doesn't perform an abbreviation. Special case, ^V^J (not ^V^M) is
625 * the same as ^J, historically.
627 if (quote == Q_BTHIS || quote == Q_VTHIS) {
628 FL_CLR(ec_flags, EC_QUOTED);
629 if (LF_ISSET(TXT_MAPINPUT))
630 FL_SET(ec_flags, EC_MAPINPUT);
632 if (quote == Q_BTHIS &&
633 (evp->e_value == K_VERASE || evp->e_value == K_VKILL)) {
634 quote = Q_NOTSET;
635 --tp->cno;
636 ++tp->owrite;
637 goto insl_ch;
639 if (quote == Q_VTHIS && evp->e_value != K_NL) {
640 quote = Q_NOTSET;
641 goto insl_ch;
643 quote = Q_NOTSET;
647 * !!!
648 * Translate "<CH_HEX>[isxdigit()]*" to a character with a hex value:
649 * this test delimits the value by any non-hex character. Offset by
650 * one, we use 0 to mean that we've found <CH_HEX>.
652 if (hexcnt > 1 && !isxdigit(evp->e_c)) {
653 hexcnt = 0;
654 if (txt_hex(sp, tp))
655 goto err;
658 switch (evp->e_value) {
659 case K_CR: /* Carriage return. */
660 case K_NL: /* New line. */
661 /* Return in script windows and the command line. */
662 k_cr: if (LF_ISSET(TXT_CR)) {
663 static CHAR_T cr[] = { '\r', 0 };
665 * If this was a map, we may have not displayed
666 * the line. Display it, just in case.
668 * If a script window and not the colon line,
669 * push a <cr> so it gets executed.
671 if (LF_ISSET(TXT_INFOLINE)) {
672 if (vs_change(sp, tp->lno, LINE_RESET))
673 goto err;
674 } else if (F_ISSET(sp, SC_SCRIPT))
675 (void)v_event_push(sp, NULL, cr, 1, CH_NOMAP);
677 /* Set term condition: if empty. */
678 if (tp->cno <= tp->offset)
679 tp->term = TERM_CR;
681 * Set term condition: if searching incrementally and
682 * the user entered a pattern, return a completed
683 * search, regardless if the entire pattern was found.
685 if (FL_ISSET(is_flags, IS_RUNNING) &&
686 tp->cno >= tp->offset + 1)
687 tp->term = TERM_SEARCH;
689 goto k_escape;
692 #define LINE_RESOLVE { \
693 /* \
694 * Handle abbreviations. If there was one, discard the \
695 * replay characters. \
696 */ \
697 if (abb == AB_INWORD && \
698 !LF_ISSET(TXT_REPLAY) && F_ISSET(gp, G_ABBREV)) { \
699 if (txt_abbrev(sp, tp, &evp->e_c, \
700 LF_ISSET(TXT_INFOLINE), &tmp, \
701 &ab_turnoff)) \
702 goto err; \
703 if (tmp) { \
704 if (LF_ISSET(TXT_RECORD)) \
705 rcol -= tmp + 1; \
706 goto resolve; \
709 if (abb != AB_NOTSET) \
710 abb = AB_NOTWORD; \
711 if (UNMAP_TST) \
712 txt_unmap(sp, tp, &ec_flags); \
713 /* \
714 * Delete any appended cursor. It's possible to get in \
715 * situations where TXT_APPENDEOL is set but tp->insert \
716 * is 0 when using the R command and all the characters \
717 * are tp->owrite characters. \
718 */ \
719 if (LF_ISSET(TXT_APPENDEOL) && tp->insert > 0) { \
720 --tp->len; \
721 --tp->insert; \
724 LINE_RESOLVE;
727 * Save the current line information for restoration in
728 * txt_backup(), and set the line final length.
730 tp->sv_len = tp->len;
731 tp->sv_cno = tp->cno;
732 tp->len = tp->cno;
734 /* Update the old line. */
735 if (vs_change(sp, tp->lno, LINE_RESET))
736 goto err;
739 * Historic practice, when the autoindent edit option was set,
740 * was to delete <blank> characters following the inserted
741 * newline. This affected the 'R', 'c', and 's' commands; 'c'
742 * and 's' retained the insert characters only, 'R' moved the
743 * overwrite and insert characters into the next TEXT structure.
744 * We keep track of the number of characters erased for the 'R'
745 * command so that the final resolution of the line is correct.
747 tp->R_erase = 0;
748 owrite = tp->owrite;
749 insert = tp->insert;
750 if (LF_ISSET(TXT_REPLACE) && owrite != 0) {
751 for (p = tp->lb + tp->cno; owrite > 0 && isblank(*p);
752 ++p, --owrite, ++tp->R_erase);
753 if (owrite == 0)
754 for (; insert > 0 && isblank(*p);
755 ++p, ++tp->R_erase, --insert);
756 } else {
757 p = tp->lb + tp->cno + owrite;
758 if (O_ISSET(sp, O_AUTOINDENT))
759 for (; insert > 0 &&
760 isblank(*p); ++p, --insert);
761 owrite = 0;
765 * !!!
766 * Create a new line and insert the new TEXT into the queue.
767 * DON'T insert until the old line has been updated, or the
768 * inserted line count in line.c:db_get() will be wrong.
770 if ((ntp = text_init(sp, p,
771 insert + owrite, insert + owrite + 32)) == NULL)
772 goto err;
773 CIRCLEQ_INSERT_TAIL(&sp->tiq, ntp, q);
775 /* Set up bookkeeping for the new line. */
776 ntp->insert = insert;
777 ntp->owrite = owrite;
778 ntp->lno = tp->lno + 1;
781 * Reset the autoindent line value. 0^D keeps the autoindent
782 * line from changing, ^D changes the level, even if there were
783 * no characters in the old line. Note, if using the current
784 * tp structure, use the cursor as the length, the autoindent
785 * characters may have been erased.
787 if (LF_ISSET(TXT_AUTOINDENT)) {
788 if (carat == C_NOCHANGE) {
789 if (v_txt_auto(sp, OOBLNO, &ait, ait.ai, ntp))
790 goto err;
791 FREE_SPACEW(sp, ait.lb, ait.lb_len);
792 } else
793 if (v_txt_auto(sp, OOBLNO, tp, tp->cno, ntp))
794 goto err;
795 carat = C_NOTSET;
798 /* Reset the cursor. */
799 ntp->cno = ntp->ai;
802 * If we're here because wrapmargin was set and we've broken a
803 * line, there may be additional information (i.e. the start of
804 * a line) in the wmt structure.
806 if (wm_set) {
807 if (wmt.offset != 0 ||
808 wmt.owrite != 0 || wmt.insert != 0) {
809 #define WMTSPACE wmt.offset + wmt.owrite + wmt.insert
810 BINC_GOTOW(sp, ntp->lb,
811 ntp->lb_len, ntp->len + WMTSPACE + 32);
812 MEMMOVEW(ntp->lb + ntp->cno, wmt.lb, WMTSPACE);
813 ntp->len += WMTSPACE;
814 ntp->cno += wmt.offset;
815 ntp->owrite = wmt.owrite;
816 ntp->insert = wmt.insert;
818 wm_set = 0;
821 /* New lines are TXT_APPENDEOL. */
822 if (ntp->owrite == 0 && ntp->insert == 0) {
823 BINC_GOTOW(sp, ntp->lb, ntp->lb_len, ntp->len + 1);
824 LF_SET(TXT_APPENDEOL);
825 ntp->lb[ntp->cno] = CH_CURSOR;
826 ++ntp->insert;
827 ++ntp->len;
830 /* Swap old and new TEXT's, and update the new line. */
831 tp = ntp;
832 if (vs_change(sp, tp->lno, LINE_INSERT))
833 goto err;
835 goto resolve;
836 case K_ESCAPE: /* Escape. */
837 if (!LF_ISSET(TXT_ESCAPE))
838 goto ins_ch;
840 /* If we have a count, start replaying the input. */
841 if (rcount > 1) {
842 --rcount;
844 rcol = 0;
845 abb = AB_NOTSET;
846 LF_CLR(TXT_RECORD);
847 LF_SET(TXT_REPLAY);
850 * Some commands (e.g. 'o') need a <newline> for each
851 * repetition.
853 if (LF_ISSET(TXT_ADDNEWLINE))
854 goto k_cr;
857 * The R command turns into the 'a' command after the
858 * first repetition.
860 if (LF_ISSET(TXT_REPLACE)) {
861 tp->insert = tp->owrite;
862 tp->owrite = 0;
863 LF_CLR(TXT_REPLACE);
865 goto replay;
868 /* Set term condition: if empty. */
869 if (tp->cno <= tp->offset)
870 tp->term = TERM_ESC;
872 * Set term condition: if searching incrementally and the user
873 * entered a pattern, return a completed search, regardless if
874 * the entire pattern was found.
876 if (FL_ISSET(is_flags, IS_RUNNING) && tp->cno >= tp->offset + 1)
877 tp->term = TERM_SEARCH;
879 k_escape: LINE_RESOLVE;
882 * Clean up for the 'R' command, restoring overwrite
883 * characters, and making them into insert characters.
885 if (LF_ISSET(TXT_REPLACE))
886 txt_Rresolve(sp, &sp->tiq, tp, len);
889 * If there are any overwrite characters, copy down
890 * any insert characters, and decrement the length.
892 if (tp->owrite) {
893 if (tp->insert)
894 MEMMOVEW(tp->lb + tp->cno,
895 tp->lb + tp->cno + tp->owrite, tp->insert);
896 tp->len -= tp->owrite;
900 * Optionally resolve the lines into the file. If not
901 * resolving the lines into the file, end the line with
902 * a nul. If the line is empty, then set the length to
903 * 0, the termination condition has already been set.
905 * XXX
906 * This is wrong, should pass back a length.
908 if (LF_ISSET(TXT_RESOLVE)) {
909 if (txt_resolve(sp, &sp->tiq, flags))
910 goto err;
911 } else {
912 BINC_GOTOW(sp, tp->lb, tp->lb_len, tp->len + 1);
913 tp->lb[tp->len] = '\0';
917 * Set the return cursor position to rest on the last
918 * inserted character.
920 if (tp->cno != 0)
921 --tp->cno;
923 /* Update the last line. */
924 if (vs_change(sp, tp->lno, LINE_RESET))
925 return (1);
926 goto done;
927 case K_CARAT: /* Delete autoindent chars. */
928 if (tp->cno <= tp->ai && LF_ISSET(TXT_AUTOINDENT))
929 carat = C_CARATSET;
930 goto ins_ch;
931 case K_ZERO: /* Delete autoindent chars. */
932 if (tp->cno <= tp->ai && LF_ISSET(TXT_AUTOINDENT))
933 carat = C_ZEROSET;
934 goto ins_ch;
935 case K_CNTRLD: /* Delete autoindent char. */
937 * If in the first column or no characters to erase, ignore
938 * the ^D (this matches historic practice). If not doing
939 * autoindent or already inserted non-ai characters, it's a
940 * literal. The latter test is done in the switch, as the
941 * CARAT forms are N + 1, not N.
943 if (!LF_ISSET(TXT_AUTOINDENT))
944 goto ins_ch;
945 if (tp->cno == 0)
946 goto resolve;
948 switch (carat) {
949 case C_CARATSET: /* ^^D */
950 if (tp->ai == 0 || tp->cno > tp->ai + tp->offset + 1)
951 goto ins_ch;
953 /* Save the ai string for later. */
954 ait.lb = NULL;
955 ait.lb_len = 0;
956 BINC_GOTOW(sp, ait.lb, ait.lb_len, tp->ai);
957 MEMMOVEW(ait.lb, tp->lb, tp->ai);
958 ait.ai = ait.len = tp->ai;
960 carat = C_NOCHANGE;
961 goto leftmargin;
962 case C_ZEROSET: /* 0^D */
963 if (tp->ai == 0 || tp->cno > tp->ai + tp->offset + 1)
964 goto ins_ch;
966 carat = C_NOTSET;
967 leftmargin: tp->lb[tp->cno - 1] = ' ';
968 tp->owrite += tp->cno - tp->offset;
969 tp->ai = 0;
970 tp->cno = tp->offset;
971 break;
972 case C_NOTSET: /* ^D */
973 if (tp->ai == 0 || tp->cno > tp->ai + tp->offset)
974 goto ins_ch;
976 (void)txt_dent(sp, tp, 0);
977 break;
978 default:
979 abort();
981 break;
982 case K_VERASE: /* Erase the last character. */
983 /* If can erase over the prompt, return. */
984 if (tp->cno <= tp->offset && LF_ISSET(TXT_BS)) {
985 tp->term = TERM_BS;
986 goto done;
990 * If at the beginning of the line, try and drop back to a
991 * previously inserted line.
993 if (tp->cno == 0) {
994 if ((ntp =
995 txt_backup(sp, &sp->tiq, tp, &flags)) == NULL)
996 goto err;
997 tp = ntp;
998 break;
1001 /* If nothing to erase, bell the user. */
1002 if (tp->cno <= tp->offset) {
1003 if (!LF_ISSET(TXT_REPLAY))
1004 txt_nomorech(sp);
1005 break;
1008 /* Drop back one character. */
1009 --tp->cno;
1012 * Historically, vi didn't replace the erased characters with
1013 * <blank>s, presumably because it's easier to fix a minor
1014 * typing mistake and continue on if the previous letters are
1015 * already there. This is a problem for incremental searching,
1016 * because the user can no longer tell where they are in the
1017 * colon command line because the cursor is at the last search
1018 * point in the screen. So, if incrementally searching, erase
1019 * the erased characters from the screen.
1021 if (FL_ISSET(is_flags, IS_RUNNING))
1022 tp->lb[tp->cno] = ' ';
1025 * Increment overwrite, decrement ai if deleted.
1027 * !!!
1028 * Historic vi did not permit users to use erase characters
1029 * to delete autoindent characters. We do. Eat hot death,
1030 * POSIX.
1032 ++tp->owrite;
1033 if (tp->cno < tp->ai)
1034 --tp->ai;
1036 /* Reset if we deleted an incremental search character. */
1037 if (FL_ISSET(is_flags, IS_RUNNING))
1038 FL_SET(is_flags, IS_RESTART);
1039 break;
1040 case K_VWERASE: /* Skip back one word. */
1042 * If at the beginning of the line, try and drop back to a
1043 * previously inserted line.
1045 if (tp->cno == 0) {
1046 if ((ntp =
1047 txt_backup(sp, &sp->tiq, tp, &flags)) == NULL)
1048 goto err;
1049 tp = ntp;
1053 * If at offset, nothing to erase so bell the user.
1055 if (tp->cno <= tp->offset) {
1056 if (!LF_ISSET(TXT_REPLAY))
1057 txt_nomorech(sp);
1058 break;
1062 * The first werase goes back to any autoindent column and the
1063 * second werase goes back to the offset.
1065 * !!!
1066 * Historic vi did not permit users to use erase characters to
1067 * delete autoindent characters.
1069 if (tp->ai && tp->cno > tp->ai)
1070 max = tp->ai;
1071 else {
1072 tp->ai = 0;
1073 max = tp->offset;
1076 /* Skip over trailing space characters. */
1077 while (tp->cno > max && isblank(tp->lb[tp->cno - 1])) {
1078 --tp->cno;
1079 ++tp->owrite;
1081 if (tp->cno == max)
1082 break;
1084 * There are three types of word erase found on UNIX systems.
1085 * They can be identified by how the string /a/b/c is treated
1086 * -- as 1, 3, or 6 words. Historic vi had two classes of
1087 * characters, and strings were delimited by them and
1088 * <blank>'s, so, 6 words. The historic tty interface used
1089 * <blank>'s to delimit strings, so, 1 word. The algorithm
1090 * offered in the 4.4BSD tty interface (as stty altwerase)
1091 * treats it as 3 words -- there are two classes of
1092 * characters, and strings are delimited by them and
1093 * <blank>'s. The difference is that the type of the first
1094 * erased character erased is ignored, which is exactly right
1095 * when erasing pathname components. The edit options
1096 * TXT_ALTWERASE and TXT_TTYWERASE specify the 4.4BSD tty
1097 * interface and the historic tty driver behavior,
1098 * respectively, and the default is the same as the historic
1099 * vi behavior.
1101 * Overwrite erased characters if doing incremental search;
1102 * see comment above.
1104 if (LF_ISSET(TXT_TTYWERASE))
1105 while (tp->cno > max) {
1106 --tp->cno;
1107 ++tp->owrite;
1108 if (FL_ISSET(is_flags, IS_RUNNING))
1109 tp->lb[tp->cno] = ' ';
1110 if (isblank(tp->lb[tp->cno - 1]))
1111 break;
1113 else {
1114 if (LF_ISSET(TXT_ALTWERASE)) {
1115 --tp->cno;
1116 ++tp->owrite;
1117 if (FL_ISSET(is_flags, IS_RUNNING))
1118 tp->lb[tp->cno] = ' ';
1119 if (isblank(tp->lb[tp->cno - 1]))
1120 break;
1122 if (tp->cno > max)
1123 tmp = inword(tp->lb[tp->cno - 1]);
1124 while (tp->cno > max) {
1125 --tp->cno;
1126 ++tp->owrite;
1127 if (FL_ISSET(is_flags, IS_RUNNING))
1128 tp->lb[tp->cno] = ' ';
1129 if (tmp != inword(tp->lb[tp->cno - 1])
1130 || isblank(tp->lb[tp->cno - 1]))
1131 break;
1135 /* Reset if we deleted an incremental search character. */
1136 if (FL_ISSET(is_flags, IS_RUNNING))
1137 FL_SET(is_flags, IS_RESTART);
1138 break;
1139 case K_VKILL: /* Restart this line. */
1141 * !!!
1142 * If at the beginning of the line, try and drop back to a
1143 * previously inserted line. Historic vi did not permit
1144 * users to go back to previous lines.
1146 if (tp->cno == 0) {
1147 if ((ntp =
1148 txt_backup(sp, &sp->tiq, tp, &flags)) == NULL)
1149 goto err;
1150 tp = ntp;
1153 /* If at offset, nothing to erase so bell the user. */
1154 if (tp->cno <= tp->offset) {
1155 if (!LF_ISSET(TXT_REPLAY))
1156 txt_nomorech(sp);
1157 break;
1161 * First kill goes back to any autoindent and second kill goes
1162 * back to the offset.
1164 * !!!
1165 * Historic vi did not permit users to use erase characters to
1166 * delete autoindent characters.
1168 if (tp->ai && tp->cno > tp->ai)
1169 max = tp->ai;
1170 else {
1171 tp->ai = 0;
1172 max = tp->offset;
1174 tp->owrite += tp->cno - max;
1177 * Overwrite erased characters if doing incremental search;
1178 * see comment above.
1180 if (FL_ISSET(is_flags, IS_RUNNING))
1181 do {
1182 tp->lb[--tp->cno] = ' ';
1183 } while (tp->cno > max);
1184 else
1185 tp->cno = max;
1187 /* Reset if we deleted an incremental search character. */
1188 if (FL_ISSET(is_flags, IS_RUNNING))
1189 FL_SET(is_flags, IS_RESTART);
1190 break;
1191 case K_CNTRLT: /* Add autoindent characters. */
1192 if (!LF_ISSET(TXT_CNTRLT))
1193 goto ins_ch;
1194 if (txt_dent(sp, tp, 1))
1195 goto err;
1196 goto ebuf_chk;
1197 case K_RIGHTBRACE:
1198 case K_RIGHTPAREN:
1199 if (LF_ISSET(TXT_SHOWMATCH))
1200 showmatch = 1;
1201 goto ins_ch;
1202 case K_BACKSLASH: /* Quote next erase/kill. */
1204 * !!!
1205 * Historic vi tried to make abbreviations after a backslash
1206 * escape work. If you did ":ab x y", and inserted "x\^H",
1207 * (assuming the erase character was ^H) you got "x^H", and
1208 * no abbreviation was done. If you inserted "x\z", however,
1209 * it tried to back up and do the abbreviation, i.e. replace
1210 * 'x' with 'y'. The problem was it got it wrong, and you
1211 * ended up with "zy\".
1213 * This is really hard to do (you have to remember the
1214 * word/non-word state, for example), and doesn't make any
1215 * sense to me. Both backslash and the characters it
1216 * (usually) escapes will individually trigger the
1217 * abbreviation, so I don't see why the combination of them
1218 * wouldn't. I don't expect to get caught on this one,
1219 * particularly since it never worked right, but I've been
1220 * wrong before.
1222 * Do the tests for abbreviations, so ":ab xa XA",
1223 * "ixa\<K_VERASE>" performs the abbreviation.
1225 quote = Q_BNEXT;
1226 goto insq_ch;
1227 case K_VLNEXT: /* Quote next character. */
1228 evp->e_c = '^';
1229 quote = Q_VNEXT;
1231 * Turn on the quote flag so that the underlying routines
1232 * quote the next character where it's possible. Turn off
1233 * the input mapbiting flag so that we don't remap the next
1234 * character.
1236 FL_SET(ec_flags, EC_QUOTED);
1237 FL_CLR(ec_flags, EC_MAPINPUT);
1240 * !!!
1241 * Skip the tests for abbreviations, so ":ab xa XA",
1242 * "ixa^V<space>" doesn't perform the abbreviation.
1244 goto insl_ch;
1245 case K_HEXCHAR:
1246 hexcnt = 1;
1247 goto insq_ch;
1248 default: /* Insert the character. */
1249 ins_ch: /*
1250 * Historically, vi eliminated nul's out of hand. If the
1251 * beautify option was set, it also deleted any unknown
1252 * ASCII value less than space (040) and the del character
1253 * (0177), except for tabs. Unknown is a key word here.
1254 * Most vi documentation claims that it deleted everything
1255 * but <tab>, <nl> and <ff>, as that's what the original
1256 * 4BSD documentation said. This is obviously wrong,
1257 * however, as <esc> would be included in that list. What
1258 * we do is eliminate any unquoted, iscntrl() character that
1259 * wasn't a replay and wasn't handled specially, except
1260 * <tab> or <ff>.
1262 if (LF_ISSET(TXT_BEAUTIFY) && ISCNTRL(evp->e_c) &&
1263 evp->e_value != K_FORMFEED && evp->e_value != K_TAB) {
1264 msgq(sp, M_BERR,
1265 "192|Illegal character; quote to enter");
1266 if (LF_ISSET(TXT_REPLAY))
1267 goto done;
1268 break;
1271 insq_ch: /*
1272 * If entering a non-word character after a word, check for
1273 * abbreviations. If there was one, discard replay characters.
1274 * If entering a blank character, check for unmap commands,
1275 * as well.
1277 if (!inword(evp->e_c)) {
1278 if (abb == AB_INWORD &&
1279 !LF_ISSET(TXT_REPLAY) && F_ISSET(gp, G_ABBREV)) {
1280 if (txt_abbrev(sp, tp, &evp->e_c,
1281 LF_ISSET(TXT_INFOLINE), &tmp, &ab_turnoff))
1282 goto err;
1283 if (tmp) {
1284 if (LF_ISSET(TXT_RECORD))
1285 rcol -= tmp + 1;
1286 goto resolve;
1289 if (isblank(evp->e_c) && UNMAP_TST)
1290 txt_unmap(sp, tp, &ec_flags);
1292 if (abb != AB_NOTSET)
1293 abb = inword(evp->e_c) ? AB_INWORD : AB_NOTWORD;
1295 insl_ch: if (txt_insch(sp, tp, &evp->e_c, flags))
1296 goto err;
1299 * If we're using K_VLNEXT to quote the next character, then
1300 * we want the cursor to position itself on the ^ placeholder
1301 * we're displaying, to match historic practice.
1303 if (quote == Q_VNEXT) {
1304 --tp->cno;
1305 ++tp->owrite;
1309 * !!!
1310 * Translate "<CH_HEX>[isxdigit()]*" to a character with
1311 * a hex value: this test delimits the value by the max
1312 * number of hex bytes. Offset by one, we use 0 to mean
1313 * that we've found <CH_HEX>.
1315 if (hexcnt != 0 && hexcnt++ == sizeof(CHAR_T) * 2 + 1) {
1316 hexcnt = 0;
1317 if (txt_hex(sp, tp))
1318 goto err;
1322 * Check to see if we've crossed the margin.
1324 * !!!
1325 * In the historic vi, the wrapmargin value was figured out
1326 * using the display widths of the characters, i.e. <tab>
1327 * characters were counted as two characters if the list edit
1328 * option is set, but as the tabstop edit option number of
1329 * characters otherwise. That's what the vs_column() function
1330 * gives us, so we use it.
1332 if (margin != 0) {
1333 if (vs_column(sp, &tcol))
1334 goto err;
1335 if (tcol >= margin) {
1336 if (txt_margin(sp, tp, &wmt, &tmp, flags))
1337 goto err;
1338 if (tmp) {
1339 if (isblank(evp->e_c))
1340 wm_skip = 1;
1341 wm_set = 1;
1342 goto k_cr;
1348 * If we've reached the end of the buffer, then we need to
1349 * switch into insert mode. This happens when there's a
1350 * change to a mark and the user puts in more characters than
1351 * the length of the motion.
1353 ebuf_chk: if (tp->cno >= tp->len) {
1354 BINC_GOTOW(sp, tp->lb, tp->lb_len, tp->len + 1);
1355 LF_SET(TXT_APPENDEOL);
1357 tp->lb[tp->cno] = CH_CURSOR;
1358 ++tp->insert;
1359 ++tp->len;
1362 /* Step the quote state forward. */
1363 if (quote != Q_NOTSET) {
1364 if (quote == Q_BNEXT)
1365 quote = Q_BTHIS;
1366 if (quote == Q_VNEXT)
1367 quote = Q_VTHIS;
1369 break;
1372 #ifdef DEBUG
1373 if (tp->cno + tp->insert + tp->owrite != tp->len) {
1374 msgq(sp, M_ERR,
1375 "len %u != cno: %u ai: %u insert %u overwrite %u",
1376 tp->len, tp->cno, tp->ai, tp->insert, tp->owrite);
1377 if (LF_ISSET(TXT_REPLAY))
1378 goto done;
1379 tp->len = tp->cno + tp->insert + tp->owrite;
1381 #endif
1383 resolve:/*
1384 * 1: If we don't need to know where the cursor really is and we're
1385 * replaying text, keep going.
1387 if (margin == 0 && LF_ISSET(TXT_REPLAY))
1388 goto replay;
1391 * 2: Reset the line. Don't bother unless we're about to wait on
1392 * a character or we need to know where the cursor really is.
1393 * We have to do this before showing matching characters so the
1394 * user can see what they're matching.
1396 if ((margin != 0 || !KEYS_WAITING(sp)) &&
1397 vs_change(sp, tp->lno, LINE_RESET))
1398 return (1);
1401 * 3: If there aren't keys waiting, display the matching character.
1402 * We have to do this before resolving any messages, otherwise
1403 * the error message from a missing match won't appear correctly.
1405 if (showmatch) {
1406 if (!KEYS_WAITING(sp) && txt_showmatch(sp, tp))
1407 return (1);
1408 showmatch = 0;
1412 * 4: If there have been messages and we're not editing on the colon
1413 * command line or doing file name completion, resolve them.
1415 if ((vip->totalcount != 0 || F_ISSET(gp, G_BELLSCHED)) &&
1416 !F_ISSET(sp, SC_TINPUT_INFO) && !filec_redraw &&
1417 vs_resolve(sp, NULL, 0))
1418 return (1);
1421 * 5: Refresh the screen if we're about to wait on a character or we
1422 * need to know where the cursor really is.
1424 if (margin != 0 || !KEYS_WAITING(sp)) {
1425 UPDATE_POSITION(sp, tp);
1426 if (vs_refresh(sp, margin != 0))
1427 return (1);
1430 /* 6: Proceed with the incremental search. */
1431 if (FL_ISSET(is_flags, IS_RUNNING) && txt_isrch(sp, vp, tp, &is_flags))
1432 return (1);
1434 /* 7: Next character... */
1435 if (LF_ISSET(TXT_REPLAY))
1436 goto replay;
1437 goto next;
1439 done: /* Leave input mode. */
1440 F_CLR(sp, SC_TINPUT);
1442 /* If recording for playback, save it. */
1443 if (LF_ISSET(TXT_RECORD))
1444 vip->rep_cnt = rcol;
1447 * If not working on the colon command line, set the final cursor
1448 * position.
1450 if (!F_ISSET(sp, SC_TINPUT_INFO)) {
1451 vp->m_final.lno = tp->lno;
1452 vp->m_final.cno = tp->cno;
1454 return (0);
1456 err:
1457 alloc_err:
1458 txt_err(sp, &sp->tiq);
1459 return (1);
1463 * txt_abbrev --
1464 * Handle abbreviations.
1466 static int
1467 txt_abbrev(SCR *sp, TEXT *tp, CHAR_T *pushcp, int isinfoline, int *didsubp, int *turnoffp)
1469 VI_PRIVATE *vip;
1470 CHAR_T ch, *p;
1471 SEQ *qp;
1472 size_t len, off;
1474 /* Check to make sure we're not at the start of an append. */
1475 *didsubp = 0;
1476 if (tp->cno == tp->offset)
1477 return (0);
1479 vip = VIP(sp);
1482 * Find the start of the "word".
1484 * !!!
1485 * We match historic practice, which, as far as I can tell, had an
1486 * off-by-one error. The way this worked was that when the inserted
1487 * text switched from a "word" character to a non-word character,
1488 * vi would check for possible abbreviations. It would then take the
1489 * type (i.e. word/non-word) of the character entered TWO characters
1490 * ago, and move backward in the text until reaching a character that
1491 * was not that type, or the beginning of the insert, the line, or
1492 * the file. For example, in the string "abc<space>", when the <space>
1493 * character triggered the abbreviation check, the type of the 'b'
1494 * character was used for moving through the string. Maybe there's a
1495 * reason for not using the first (i.e. 'c') character, but I can't
1496 * think of one.
1498 * Terminate at the beginning of the insert or the character after the
1499 * offset character -- both can be tested for using tp->offset.
1501 off = tp->cno - 1; /* Previous character. */
1502 p = tp->lb + off;
1503 len = 1; /* One character test. */
1504 if (off == tp->offset || isblank(p[-1]))
1505 goto search;
1506 if (inword(p[-1])) /* Move backward to change. */
1507 for (;;) {
1508 --off; --p; ++len;
1509 if (off == tp->offset || !inword(p[-1]))
1510 break;
1512 else
1513 for (;;) {
1514 --off; --p; ++len;
1515 if (off == tp->offset ||
1516 inword(p[-1]) || isblank(p[-1]))
1517 break;
1521 * !!!
1522 * Historic vi exploded abbreviations on the command line. This has
1523 * obvious problems in that unabbreviating the string can be extremely
1524 * tricky, particularly if the string has, say, an embedded escape
1525 * character. Personally, I think it's a stunningly bad idea. Other
1526 * examples of problems this caused in historic vi are:
1527 * :ab foo bar
1528 * :ab foo baz
1529 * results in "bar" being abbreviated to "baz", which wasn't what the
1530 * user had in mind at all. Also, the commands:
1531 * :ab foo bar
1532 * :unab foo<space>
1533 * resulted in an error message that "bar" wasn't mapped. Finally,
1534 * since the string was already exploded by the time the unabbreviate
1535 * command got it, all it knew was that an abbreviation had occurred.
1536 * Cleverly, it checked the replacement string for its unabbreviation
1537 * match, which meant that the commands:
1538 * :ab foo1 bar
1539 * :ab foo2 bar
1540 * :unab foo2
1541 * unabbreviate "foo1", and the commands:
1542 * :ab foo bar
1543 * :ab bar baz
1544 * unabbreviate "foo"!
1546 * Anyway, people neglected to first ask my opinion before they wrote
1547 * macros that depend on this stuff, so, we make this work as follows.
1548 * When checking for an abbreviation on the command line, if we get a
1549 * string which is <blank> terminated and which starts at the beginning
1550 * of the line, we check to see it is the abbreviate or unabbreviate
1551 * commands. If it is, turn abbreviations off and return as if no
1552 * abbreviation was found. Note also, minor trickiness, so that if
1553 * the user erases the line and starts another command, we turn the
1554 * abbreviations back on.
1556 * This makes the layering look like a Nachos Supreme.
1558 search: if (isinfoline)
1559 if (off == tp->ai || off == tp->offset)
1560 if (ex_is_abbrev(sp, p, len)) {
1561 *turnoffp = 1;
1562 return (0);
1563 } else
1564 *turnoffp = 0;
1565 else
1566 if (*turnoffp)
1567 return (0);
1569 /* Check for any abbreviations. */
1570 if ((qp = seq_find(sp, NULL, NULL, p, len, SEQ_ABBREV, NULL)) == NULL)
1571 return (0);
1574 * Push the abbreviation onto the tty stack. Historically, characters
1575 * resulting from an abbreviation expansion were themselves subject to
1576 * map expansions, O_SHOWMATCH matching etc. This means the expanded
1577 * characters will be re-tested for abbreviations. It's difficult to
1578 * know what historic practice in this case was, since abbreviations
1579 * were applied to :colon command lines, so entering abbreviations that
1580 * looped was tricky, although possible. In addition, obvious loops
1581 * didn't work as expected. (The command ':ab a b|ab b c|ab c a' will
1582 * silently only implement and/or display the last abbreviation.)
1584 * This implementation doesn't recover well from such abbreviations.
1585 * The main input loop counts abbreviated characters, and, when it
1586 * reaches a limit, discards any abbreviated characters on the queue.
1587 * It's difficult to back up to the original position, as the replay
1588 * queue would have to be adjusted, and the line state when an initial
1589 * abbreviated character was received would have to be saved.
1591 ch = *pushcp;
1592 if (v_event_push(sp, NULL, &ch, 1, CH_ABBREVIATED))
1593 return (1);
1594 if (v_event_push(sp, NULL, qp->output, qp->olen, CH_ABBREVIATED))
1595 return (1);
1598 * If the size of the abbreviation is larger than or equal to the size
1599 * of the original text, move to the start of the replaced characters,
1600 * and add their length to the overwrite count.
1602 * If the abbreviation is smaller than the original text, we have to
1603 * delete the additional overwrite characters and copy down any insert
1604 * characters.
1606 tp->cno -= len;
1607 if (qp->olen >= len)
1608 tp->owrite += len;
1609 else {
1610 if (tp->insert)
1611 MEMMOVEW(tp->lb + tp->cno + qp->olen,
1612 tp->lb + tp->cno + tp->owrite + len, tp->insert);
1613 tp->owrite += qp->olen;
1614 tp->len -= len - qp->olen;
1618 * We return the length of the abbreviated characters. This is so
1619 * the calling routine can replace the replay characters with the
1620 * abbreviation. This means that subsequent '.' commands will produce
1621 * the same text, regardless of intervening :[un]abbreviate commands.
1622 * This is historic practice.
1624 *didsubp = len;
1625 return (0);
1629 * txt_unmap --
1630 * Handle the unmap command.
1632 static void
1633 txt_unmap(SCR *sp, TEXT *tp, u_int32_t *ec_flagsp)
1635 size_t len, off;
1636 CHAR_T *p;
1638 /* Find the beginning of this "word". */
1639 for (off = tp->cno - 1, p = tp->lb + off, len = 0;; --p, --off) {
1640 if (isblank(*p)) {
1641 ++p;
1642 break;
1644 ++len;
1645 if (off == tp->ai || off == tp->offset)
1646 break;
1650 * !!!
1651 * Historic vi exploded input mappings on the command line. See the
1652 * txt_abbrev() routine for an explanation of the problems inherent
1653 * in this.
1655 * We make this work as follows. If we get a string which is <blank>
1656 * terminated and which starts at the beginning of the line, we check
1657 * to see it is the unmap command. If it is, we return that the input
1658 * mapping should be turned off. Note also, minor trickiness, so that
1659 * if the user erases the line and starts another command, we go ahead
1660 * an turn mapping back on.
1662 if ((off == tp->ai || off == tp->offset) && ex_is_unmap(sp, p, len))
1663 FL_CLR(*ec_flagsp, EC_MAPINPUT);
1664 else
1665 FL_SET(*ec_flagsp, EC_MAPINPUT);
1669 * txt_ai_resolve --
1670 * When a line is resolved by <esc>, review autoindent characters.
1672 static void
1673 txt_ai_resolve(SCR *sp, TEXT *tp, int *changedp)
1675 u_long ts;
1676 int del;
1677 size_t cno, len, new, old, scno, spaces, tab_after_sp, tabs;
1678 CHAR_T *p;
1680 *changedp = 0;
1683 * If the line is empty, has an offset, or no autoindent
1684 * characters, we're done.
1686 if (!tp->len || tp->offset || !tp->ai)
1687 return;
1690 * If the length is less than or equal to the autoindent
1691 * characters, delete them.
1693 if (tp->len <= tp->ai) {
1694 tp->ai = tp->cno = tp->len = 0;
1695 return;
1699 * The autoindent characters plus any leading <blank> characters
1700 * in the line are resolved into the minimum number of characters.
1701 * Historic practice.
1703 ts = O_VAL(sp, O_TABSTOP);
1705 /* Figure out the last <blank> screen column. */
1706 for (p = tp->lb, scno = 0, len = tp->len,
1707 spaces = tab_after_sp = 0; len-- && isblank(*p); ++p)
1708 if (*p == '\t') {
1709 if (spaces)
1710 tab_after_sp = 1;
1711 scno += COL_OFF(scno, ts);
1712 } else {
1713 ++spaces;
1714 ++scno;
1718 * If there are no spaces, or no tabs after spaces and less than
1719 * ts spaces, it's already minimal.
1721 if (!spaces || !tab_after_sp && spaces < ts)
1722 return;
1724 /* Count up spaces/tabs needed to get to the target. */
1725 for (cno = 0, tabs = 0; cno + COL_OFF(cno, ts) <= scno; ++tabs)
1726 cno += COL_OFF(cno, ts);
1727 spaces = scno - cno;
1730 * Figure out how many characters we're dropping -- if we're not
1731 * dropping any, it's already minimal, we're done.
1733 old = p - tp->lb;
1734 new = spaces + tabs;
1735 if (old == new)
1736 return;
1738 /* Shift the rest of the characters down, adjust the counts. */
1739 del = old - new;
1740 MEMMOVEW(p - del, p, tp->len - old);
1741 tp->len -= del;
1742 tp->cno -= del;
1744 /* Fill in space/tab characters. */
1745 for (p = tp->lb; tabs--;)
1746 *p++ = '\t';
1747 while (spaces--)
1748 *p++ = ' ';
1749 *changedp = 1;
1753 * v_txt_auto --
1754 * Handle autoindent. If aitp isn't NULL, use it, otherwise,
1755 * retrieve the line.
1757 * PUBLIC: int v_txt_auto __P((SCR *, db_recno_t, TEXT *, size_t, TEXT *));
1760 v_txt_auto(SCR *sp, db_recno_t lno, TEXT *aitp, size_t len, TEXT *tp)
1762 size_t nlen;
1763 CHAR_T *p, *t;
1765 if (aitp == NULL) {
1767 * If the ex append command is executed with an address of 0,
1768 * it's possible to get here with a line number of 0. Return
1769 * an indent of 0.
1771 if (lno == 0) {
1772 tp->ai = 0;
1773 return (0);
1775 if (db_get(sp, lno, DBG_FATAL, &t, &len))
1776 return (1);
1777 } else
1778 t = aitp->lb;
1780 /* Count whitespace characters. */
1781 for (p = t; len > 0; ++p, --len)
1782 if (!isblank(*p))
1783 break;
1785 /* Set count, check for no indentation. */
1786 if ((nlen = (p - t)) == 0)
1787 return (0);
1789 /* Make sure the buffer's big enough. */
1790 BINC_RETW(sp, tp->lb, tp->lb_len, tp->len + nlen);
1792 /* Copy the buffer's current contents up. */
1793 if (tp->len != 0)
1794 MEMMOVEW(tp->lb + nlen, tp->lb, tp->len);
1795 tp->len += nlen;
1797 /* Copy the indentation into the new buffer. */
1798 MEMMOVEW(tp->lb, t, nlen);
1800 /* Set the autoindent count. */
1801 tp->ai = nlen;
1802 return (0);
1806 * txt_backup --
1807 * Back up to the previously edited line.
1809 static TEXT *
1810 txt_backup(SCR *sp, TEXTH *tiqh, TEXT *tp, u_int32_t *flagsp)
1812 VI_PRIVATE *vip;
1813 TEXT *ntp;
1815 /* Get a handle on the previous TEXT structure. */
1816 if ((ntp = tp->q.cqe_prev) == (void *)tiqh) {
1817 if (!FL_ISSET(*flagsp, TXT_REPLAY))
1818 msgq(sp, M_BERR,
1819 "193|Already at the beginning of the insert");
1820 return (tp);
1823 /* Bookkeeping. */
1824 ntp->len = ntp->sv_len;
1826 /* Handle appending to the line. */
1827 vip = VIP(sp);
1828 if (ntp->owrite == 0 && ntp->insert == 0) {
1829 ntp->lb[ntp->len] = CH_CURSOR;
1830 ++ntp->insert;
1831 ++ntp->len;
1832 FL_SET(*flagsp, TXT_APPENDEOL);
1833 } else
1834 FL_CLR(*flagsp, TXT_APPENDEOL);
1836 /* Release the current TEXT. */
1837 CIRCLEQ_REMOVE(tiqh, tp, q);
1838 text_free(tp);
1840 /* Update the old line on the screen. */
1841 if (vs_change(sp, ntp->lno + 1, LINE_DELETE))
1842 return (NULL);
1844 /* Return the new/current TEXT. */
1845 return (ntp);
1849 * Text indentation is truly strange. ^T and ^D do movements to the next or
1850 * previous shiftwidth value, i.e. for a 1-based numbering, with shiftwidth=3,
1851 * ^T moves a cursor on the 7th, 8th or 9th column to the 10th column, and ^D
1852 * moves it back.
1854 * !!!
1855 * The ^T and ^D characters in historical vi had special meaning only when they
1856 * were the first characters entered after entering text input mode. As normal
1857 * erase characters couldn't erase autoindent characters (^T in this case), it
1858 * meant that inserting text into previously existing text was strange -- ^T
1859 * only worked if it was the first keystroke(s), and then could only be erased
1860 * using ^D. This implementation treats ^T specially anywhere it occurs in the
1861 * input, and permits the standard erase characters to erase the characters it
1862 * inserts.
1864 * !!!
1865 * A fun test is to try:
1866 * :se sw=4 ai list
1867 * i<CR>^Tx<CR>^Tx<CR>^Tx<CR>^Dx<CR>^Dx<CR>^Dx<esc>
1868 * Historic vi loses some of the '$' marks on the line ends, but otherwise gets
1869 * it right.
1871 * XXX
1872 * Technically, txt_dent should be part of the screen interface, as it requires
1873 * knowledge of character sizes, including <space>s, on the screen. It's here
1874 * because it's a complicated little beast, and I didn't want to shove it down
1875 * into the screen. It's probable that KEY_LEN will call into the screen once
1876 * there are screens with different character representations.
1878 * txt_dent --
1879 * Handle ^T indents, ^D outdents.
1881 * If anything changes here, check the ex version to see if it needs similar
1882 * changes.
1884 static int
1885 txt_dent(SCR *sp, TEXT *tp, int isindent)
1887 CHAR_T ch;
1888 u_long sw, ts;
1889 size_t cno, current, spaces, target, tabs, off;
1890 int ai_reset;
1892 ts = O_VAL(sp, O_TABSTOP);
1893 sw = O_VAL(sp, O_SHIFTWIDTH);
1896 * Since we don't know what precedes the character(s) being inserted
1897 * (or deleted), the preceding whitespace characters must be resolved.
1898 * An example is a <tab>, which doesn't need a full shiftwidth number
1899 * of columns because it's preceded by <space>s. This is easy to get
1900 * if the user sets shiftwidth to a value less than tabstop (or worse,
1901 * something for which tabstop isn't a multiple) and then uses ^T to
1902 * indent, and ^D to outdent.
1904 * Figure out the current and target screen columns. In the historic
1905 * vi, the autoindent column was NOT determined using display widths
1906 * of characters as was the wrapmargin column. For that reason, we
1907 * can't use the vs_column() function, but have to calculate it here.
1908 * This is slow, but it's normally only on the first few characters of
1909 * a line.
1911 for (current = cno = 0; cno < tp->cno; ++cno)
1912 current += tp->lb[cno] == '\t' ?
1913 COL_OFF(current, ts) : KEY_LEN(sp, tp->lb[cno]);
1915 target = current;
1916 if (isindent)
1917 target += COL_OFF(target, sw);
1918 else
1919 target -= --target % sw;
1922 * The AI characters will be turned into overwrite characters if the
1923 * cursor immediately follows them. We test both the cursor position
1924 * and the indent flag because there's no single test. (^T can only
1925 * be detected by the cursor position, and while we know that the test
1926 * is always true for ^D, the cursor can be in more than one place, as
1927 * "0^D" and "^D" are different.)
1929 ai_reset = !isindent || tp->cno == tp->ai + tp->offset;
1932 * Back up over any previous <blank> characters, changing them into
1933 * overwrite characters (including any ai characters). Then figure
1934 * out the current screen column.
1936 for (; tp->cno > tp->offset &&
1937 (tp->lb[tp->cno - 1] == ' ' || tp->lb[tp->cno - 1] == '\t');
1938 --tp->cno, ++tp->owrite);
1939 for (current = cno = 0; cno < tp->cno; ++cno)
1940 current += tp->lb[cno] == '\t' ?
1941 COL_OFF(current, ts) : KEY_COL(sp, tp->lb[cno]);
1944 * If we didn't move up to or past the target, it's because there
1945 * weren't enough characters to delete, e.g. the first character
1946 * of the line was a tp->offset character, and the user entered
1947 * ^D to move to the beginning of a line. An example of this is:
1949 * :set ai sw=4<cr>i<space>a<esc>i^T^D
1951 * Otherwise, count up the total spaces/tabs needed to get from the
1952 * beginning of the line (or the last non-<blank> character) to the
1953 * target.
1955 if (current >= target)
1956 spaces = tabs = 0;
1957 else {
1958 for (cno = current,
1959 tabs = 0; cno + COL_OFF(cno, ts) <= target; ++tabs)
1960 cno += COL_OFF(cno, ts);
1961 spaces = target - cno;
1964 /* If we overwrote ai characters, reset the ai count. */
1965 if (ai_reset)
1966 tp->ai = tabs + spaces;
1969 * Call txt_insch() to insert each character, so that we get the
1970 * correct effect when we add a <tab> to replace N <spaces>.
1972 for (ch = '\t'; tabs > 0; --tabs)
1973 (void)txt_insch(sp, tp, &ch, 0);
1974 for (ch = ' '; spaces > 0; --spaces)
1975 (void)txt_insch(sp, tp, &ch, 0);
1976 return (0);
1980 * txt_fc --
1981 * File name completion.
1983 static int
1984 txt_fc(SCR *sp, TEXT *tp, int *redrawp)
1986 struct stat sb;
1987 ARGS **argv;
1988 CHAR_T s_ch;
1989 EXCMD cmd;
1990 size_t indx, len, nlen, off;
1991 int argc, trydir;
1992 CHAR_T *p, *t;
1993 char *np;
1994 size_t nplen;
1996 trydir = 0;
1997 *redrawp = 0;
2000 * Find the beginning of this "word" -- if we're at the beginning
2001 * of the line, it's a special case.
2003 if (tp->cno == 1) {
2004 len = 0;
2005 p = tp->lb;
2006 } else
2007 retry: for (len = 0,
2008 off = tp->cno - 1, p = tp->lb + off;; --off, --p) {
2009 if (isblank(*p)) {
2010 ++p;
2011 break;
2013 ++len;
2014 if (off == tp->ai || off == tp->offset)
2015 break;
2019 * Get enough space for a wildcard character.
2021 * XXX
2022 * This won't work for "foo\", since the \ will escape the expansion
2023 * character. I'm not sure if that's a bug or not...
2025 off = p - tp->lb;
2026 BINC_RETW(sp, tp->lb, tp->lb_len, tp->len + 1);
2027 p = tp->lb + off;
2029 s_ch = p[len];
2030 p[len] = '*';
2032 /* Build an ex command, and call the ex expansion routines. */
2033 ex_cinit(sp, &cmd, 0, 0, OOBLNO, OOBLNO, 0);
2034 if (argv_exp2(sp, &cmd, p, len + 1)) {
2035 p[len] = s_ch;
2036 return (0);
2038 argc = cmd.argc;
2039 argv = cmd.argv;
2041 p[len] = s_ch;
2043 switch (argc) {
2044 case 0: /* No matches. */
2045 if (!trydir)
2046 (void)sp->gp->scr_bell(sp);
2047 return (0);
2048 case 1: /* One match. */
2049 /* If something changed, do the exchange. */
2050 nlen = STRLEN(cmd.argv[0]->bp);
2051 if (len != nlen || MEMCMP(cmd.argv[0]->bp, p, len))
2052 break;
2054 /* If haven't done a directory test, do it now. */
2055 INT2CHAR(sp, cmd.argv[0]->bp, cmd.argv[0]->len + 1,
2056 np, nplen);
2057 if (!trydir &&
2058 !stat(np, &sb) && S_ISDIR(sb.st_mode)) {
2059 p += len;
2060 goto isdir;
2063 /* If nothing changed, period, ring the bell. */
2064 if (!trydir)
2065 (void)sp->gp->scr_bell(sp);
2066 return (0);
2067 default: /* Multiple matches. */
2068 *redrawp = 1;
2069 if (txt_fc_col(sp, argc, argv))
2070 return (1);
2072 /* Find the length of the shortest match. */
2073 for (nlen = cmd.argv[0]->len; --argc > 0;) {
2074 if (cmd.argv[argc]->len < nlen)
2075 nlen = cmd.argv[argc]->len;
2076 for (indx = 0; indx < nlen &&
2077 cmd.argv[argc]->bp[indx] == cmd.argv[0]->bp[indx];
2078 ++indx);
2079 nlen = indx;
2081 break;
2084 /* Overwrite the expanded text first. */
2085 for (t = cmd.argv[0]->bp; len > 0 && nlen > 0; --len, --nlen)
2086 *p++ = *t++;
2088 /* If lost text, make the remaining old text overwrite characters. */
2089 if (len) {
2090 tp->cno -= len;
2091 tp->owrite += len;
2094 /* Overwrite any overwrite characters next. */
2095 for (; nlen > 0 && tp->owrite > 0; --nlen, --tp->owrite, ++tp->cno)
2096 *p++ = *t++;
2098 /* Shift remaining text up, and move the cursor to the end. */
2099 if (nlen) {
2100 off = p - tp->lb;
2101 BINC_RETW(sp, tp->lb, tp->lb_len, tp->len + nlen);
2102 p = tp->lb + off;
2104 tp->cno += nlen;
2105 tp->len += nlen;
2107 if (tp->insert != 0)
2108 (void)MEMMOVEW(p + nlen, p, tp->insert);
2109 while (nlen--)
2110 *p++ = *t++;
2113 /* If a single match and it's a directory, retry it. */
2114 INT2CHAR(sp, cmd.argv[0]->bp, cmd.argv[0]->len + 1, np, nplen);
2115 if (argc == 1 && !stat(np, &sb) && S_ISDIR(sb.st_mode)) {
2116 isdir: if (tp->owrite == 0) {
2117 off = p - tp->lb;
2118 BINC_RETW(sp, tp->lb, tp->lb_len, tp->len + 1);
2119 p = tp->lb + off;
2120 if (tp->insert != 0)
2121 (void)MEMMOVEW(p + 1, p, tp->insert);
2122 ++tp->len;
2123 } else
2124 --tp->owrite;
2126 ++tp->cno;
2127 *p++ = '/';
2129 trydir = 1;
2130 goto retry;
2132 return (0);
2136 * txt_fc_col --
2137 * Display file names for file name completion.
2139 static int
2140 txt_fc_col(SCR *sp, int argc, ARGS **argv)
2142 ARGS **av;
2143 CHAR_T *p;
2144 GS *gp;
2145 size_t base, cnt, col, colwidth, numrows, numcols, prefix, row;
2146 int ac, nf, reset;
2147 char *np, *pp;
2148 size_t nlen;
2150 gp = sp->gp;
2152 /* Trim any directory prefix common to all of the files. */
2153 INT2CHAR(sp, argv[0]->bp, argv[0]->len + 1, np, nlen);
2154 if ((pp = strrchr(np, '/')) == NULL)
2155 prefix = 0;
2156 else {
2157 prefix = (pp - np) + 1;
2158 for (ac = argc - 1, av = argv + 1; ac > 0; --ac, ++av)
2159 if (av[0]->len < prefix ||
2160 MEMCMP(av[0]->bp, argv[0]->bp,
2161 prefix)) {
2162 prefix = 0;
2163 break;
2168 * Figure out the column width for the longest name. Output is done on
2169 * 6 character "tab" boundaries for no particular reason. (Since we
2170 * don't output tab characters, we ignore the terminal's tab settings.)
2171 * Ignore the user's tab setting because we have no idea how reasonable
2172 * it is.
2174 for (ac = argc, av = argv, colwidth = 0; ac > 0; --ac, ++av) {
2175 for (col = 0, p = av[0]->bp + prefix; *p != '\0'; ++p)
2176 col += KEY_LEN(sp, *p);
2177 if (col > colwidth)
2178 colwidth = col;
2180 colwidth += COL_OFF(colwidth, 6);
2183 * Writing to the bottom line of the screen is always turned off when
2184 * SC_TINPUT_INFO is set. Turn it back on, we know what we're doing.
2186 if (F_ISSET(sp, SC_TINPUT_INFO)) {
2187 reset = 1;
2188 F_CLR(sp, SC_TINPUT_INFO);
2189 } else
2190 reset = 0;
2192 #define CHK_INTR \
2193 if (F_ISSET(gp, G_INTERRUPTED)) \
2194 goto intr;
2196 /* If the largest file name is too large, just print them. */
2197 if (colwidth > sp->cols) {
2198 for (ac = argc, av = argv; ac > 0; --ac, ++av) {
2199 INT2CHAR(sp, av[0]->bp+prefix, av[0]->len+1-prefix,
2200 np, nlen);
2201 pp = msg_print(sp, np, &nf);
2202 (void)ex_printf(sp, "%s\n", pp);
2203 if (F_ISSET(gp, G_INTERRUPTED))
2204 break;
2206 if (nf)
2207 FREE_SPACE(sp, pp, 0);
2208 CHK_INTR;
2209 } else {
2210 /* Figure out the number of columns. */
2211 numcols = (sp->cols - 1) / colwidth;
2212 if (argc > numcols) {
2213 numrows = argc / numcols;
2214 if (argc % numcols)
2215 ++numrows;
2216 } else
2217 numrows = 1;
2219 /* Display the files in sorted order. */
2220 for (row = 0; row < numrows; ++row) {
2221 for (base = row, col = 0; col < numcols; ++col) {
2222 INT2CHAR(sp, argv[base]->bp+prefix,
2223 argv[base]->len+1-prefix, np, nlen);
2224 pp = msg_print(sp, np, &nf);
2225 cnt = ex_printf(sp, "%s", pp);
2226 if (nf)
2227 FREE_SPACE(sp, pp, 0);
2228 CHK_INTR;
2229 if ((base += numrows) >= argc)
2230 break;
2231 (void)ex_printf(sp,
2232 "%*s", (int)(colwidth - cnt), "");
2233 CHK_INTR;
2235 (void)ex_puts(sp, "\n");
2236 CHK_INTR;
2238 (void)ex_puts(sp, "\n");
2239 CHK_INTR;
2241 (void)ex_fflush(sp);
2243 if (0) {
2244 intr: F_CLR(gp, G_INTERRUPTED);
2246 if (reset)
2247 F_SET(sp, SC_TINPUT_INFO);
2249 return (0);
2253 * txt_emark --
2254 * Set the end mark on the line.
2256 static int
2257 txt_emark(SCR *sp, TEXT *tp, size_t cno)
2259 CHAR_T ch;
2260 char *kp;
2261 size_t chlen, nlen, olen;
2262 CHAR_T *p;
2264 ch = CH_ENDMARK;
2267 * The end mark may not be the same size as the current character.
2268 * Don't let the line shift.
2270 nlen = KEY_LEN(sp, ch);
2271 if (tp->lb[cno] == '\t')
2272 (void)vs_columns(sp, tp->lb, tp->lno, &cno, &olen);
2273 else
2274 olen = KEY_LEN(sp, tp->lb[cno]);
2277 * If the line got longer, well, it's weird, but it's easy. If
2278 * it's the same length, it's easy. If it got shorter, we have
2279 * to fix it up.
2281 if (olen > nlen) {
2282 BINC_RETW(sp, tp->lb, tp->lb_len, tp->len + olen);
2283 chlen = olen - nlen;
2284 if (tp->insert != 0)
2285 MEMMOVEW(tp->lb + cno + 1 + chlen,
2286 tp->lb + cno + 1, tp->insert);
2288 tp->len += chlen;
2289 tp->owrite += chlen;
2290 p = tp->lb + cno;
2291 if (tp->lb[cno] == '\t')
2292 for (cno += chlen; chlen--;)
2293 *p++ = ' ';
2294 else
2295 for (kp = KEY_NAME(sp, tp->lb[cno]),
2296 cno += chlen; chlen--;)
2297 *p++ = *kp++;
2299 tp->lb[cno] = ch;
2300 return (vs_change(sp, tp->lno, LINE_RESET));
2304 * txt_err --
2305 * Handle an error during input processing.
2307 static void
2308 txt_err(SCR *sp, TEXTH *tiqh)
2310 db_recno_t lno;
2313 * The problem with input processing is that the cursor is at an
2314 * indeterminate position since some input may have been lost due
2315 * to a malloc error. So, try to go back to the place from which
2316 * the cursor started, knowing that it may no longer be available.
2318 * We depend on at least one line number being set in the text
2319 * chain.
2321 for (lno = tiqh->cqh_first->lno;
2322 !db_exist(sp, lno) && lno > 0; --lno);
2324 sp->lno = lno == 0 ? 1 : lno;
2325 sp->cno = 0;
2327 /* Redraw the screen, just in case. */
2328 F_SET(sp, SC_SCR_REDRAW);
2332 * txt_hex --
2333 * Let the user insert any character value they want.
2335 * !!!
2336 * This is an extension. The pattern "^X[0-9a-fA-F]*" is a way
2337 * for the user to specify a character value which their keyboard
2338 * may not be able to enter.
2340 static int
2341 txt_hex(SCR *sp, TEXT *tp)
2343 CHAR_T savec;
2344 size_t len, off;
2345 u_long value;
2346 CHAR_T *p, *wp;
2349 * Null-terminate the string. Since nul isn't a legal hex value,
2350 * this should be okay, and lets us use a local routine, which
2351 * presumably understands the character set, to convert the value.
2353 savec = tp->lb[tp->cno];
2354 tp->lb[tp->cno] = 0;
2356 /* Find the previous CH_HEX character. */
2357 for (off = tp->cno - 1, p = tp->lb + off, len = 0;; --p, --off, ++len) {
2358 if (*p == CH_HEX) {
2359 wp = p + 1;
2360 break;
2362 /* Not on this line? Shouldn't happen. */
2363 if (off == tp->ai || off == tp->offset)
2364 goto nothex;
2367 /* If length of 0, then it wasn't a hex value. */
2368 if (len == 0)
2369 goto nothex;
2371 /* Get the value. */
2372 errno = 0;
2373 value = STRTOL(wp, NULL, 16);
2374 if (errno || value > MAX_CHAR_T) {
2375 nothex: tp->lb[tp->cno] = savec;
2376 return (0);
2379 /* Restore the original character. */
2380 tp->lb[tp->cno] = savec;
2382 /* Adjust the bookkeeping. */
2383 tp->cno -= len;
2384 tp->len -= len;
2385 tp->lb[tp->cno - 1] = value;
2387 /* Copy down any overwrite characters. */
2388 if (tp->owrite)
2389 MEMMOVEW(tp->lb + tp->cno, tp->lb + tp->cno + len,
2390 tp->owrite);
2392 /* Copy down any insert characters. */
2393 if (tp->insert)
2394 MEMMOVEW(tp->lb + tp->cno + tp->owrite,
2395 tp->lb + tp->cno + tp->owrite + len,
2396 tp->insert);
2398 return (0);
2402 * txt_insch --
2404 * !!!
2405 * Historic vi did a special screen optimization for tab characters. As an
2406 * example, for the keystrokes "iabcd<esc>0C<tab>", the tab overwrote the
2407 * rest of the string when it was displayed.
2409 * Because early versions of this implementation redisplayed the entire line
2410 * on each keystroke, the "bcd" was pushed to the right as it ignored that
2411 * the user had "promised" to change the rest of the characters. However,
2412 * the historic vi implementation had an even worse bug: given the keystrokes
2413 * "iabcd<esc>0R<tab><esc>", the "bcd" disappears, and magically reappears
2414 * on the second <esc> key.
2416 * POSIX 1003.2 requires (will require) that this be fixed, specifying that
2417 * vi overwrite characters the user has committed to changing, on the basis
2418 * of the screen space they require, but that it not overwrite other characters.
2420 static int
2421 txt_insch(SCR *sp, TEXT *tp, CHAR_T *chp, u_int flags)
2423 char *kp;
2424 CHAR_T savech;
2425 size_t chlen, cno, copydown, olen, nlen;
2426 CHAR_T *p;
2429 * The 'R' command does one-for-one replacement, because there's
2430 * no way to know how many characters the user intends to replace.
2432 if (LF_ISSET(TXT_REPLACE)) {
2433 if (tp->owrite) {
2434 --tp->owrite;
2435 tp->lb[tp->cno++] = *chp;
2436 return (0);
2438 } else if (tp->owrite) { /* Overwrite a character. */
2439 cno = tp->cno;
2442 * If the old or new characters are tabs, then the length of the
2443 * display depends on the character position in the display. We
2444 * don't even try to handle this here, just ask the screen.
2446 if (*chp == '\t') {
2447 savech = tp->lb[cno];
2448 tp->lb[cno] = '\t';
2449 (void)vs_columns(sp, tp->lb, tp->lno, &cno, &nlen);
2450 tp->lb[cno] = savech;
2451 } else
2452 nlen = KEY_LEN(sp, *chp);
2455 * Eat overwrite characters until we run out of them or we've
2456 * handled the length of the new character. If we only eat
2457 * part of an overwrite character, break it into its component
2458 * elements and display the remaining components.
2460 for (copydown = 0; nlen != 0 && tp->owrite != 0;) {
2461 --tp->owrite;
2463 if (tp->lb[cno] == '\t')
2464 (void)vs_columns(sp,
2465 tp->lb, tp->lno, &cno, &olen);
2466 else
2467 olen = KEY_LEN(sp, tp->lb[cno]);
2469 if (olen == nlen) {
2470 nlen = 0;
2471 break;
2473 if (olen < nlen) {
2474 ++copydown;
2475 nlen -= olen;
2476 } else {
2477 BINC_RETW(sp,
2478 tp->lb, tp->lb_len, tp->len + olen);
2479 chlen = olen - nlen;
2480 MEMMOVEW(tp->lb + cno + 1 + chlen,
2481 tp->lb + cno + 1,
2482 tp->owrite + tp->insert);
2484 tp->len += chlen;
2485 tp->owrite += chlen;
2486 if (tp->lb[cno] == '\t')
2487 for (p = tp->lb + cno + 1; chlen--;)
2488 *p++ = ' ';
2489 else
2490 for (kp =
2491 KEY_NAME(sp, tp->lb[cno]) + nlen,
2492 p = tp->lb + cno + 1; chlen--;)
2493 *p++ = *kp++;
2494 nlen = 0;
2495 break;
2500 * If had to erase several characters, we adjust the total
2501 * count, and if there are any characters left, shift them
2502 * into position.
2504 if (copydown != 0 && (tp->len -= copydown) != 0)
2505 MEMMOVEW(tp->lb + cno, tp->lb + cno + copydown,
2506 tp->owrite + tp->insert + copydown);
2508 /* If we had enough overwrite characters, we're done. */
2509 if (nlen == 0) {
2510 tp->lb[tp->cno++] = *chp;
2511 return (0);
2515 /* Check to see if the character fits into the input buffer. */
2516 BINC_RETW(sp, tp->lb, tp->lb_len, tp->len + 1);
2518 ++tp->len;
2519 if (tp->insert) { /* Insert a character. */
2520 if (tp->insert == 1)
2521 tp->lb[tp->cno + 1] = tp->lb[tp->cno];
2522 else
2523 MEMMOVEW(tp->lb + tp->cno + 1,
2524 tp->lb + tp->cno, tp->owrite + tp->insert);
2526 tp->lb[tp->cno++] = *chp;
2527 return (0);
2531 * txt_isrch --
2532 * Do an incremental search.
2534 static int
2535 txt_isrch(SCR *sp, VICMD *vp, TEXT *tp, u_int8_t *is_flagsp)
2537 MARK start;
2538 db_recno_t lno;
2539 u_int sf;
2541 /* If it's a one-line screen, we don't do incrementals. */
2542 if (IS_ONELINE(sp)) {
2543 FL_CLR(*is_flagsp, IS_RUNNING);
2544 return (0);
2548 * If the user erases back to the beginning of the buffer, there's
2549 * nothing to search for. Reset the cursor to the starting point.
2551 if (tp->cno <= 1) {
2552 vp->m_final = vp->m_start;
2553 return (0);
2557 * If it's an RE quote character, and not quoted, ignore it until
2558 * we get another character.
2560 if (tp->lb[tp->cno - 1] == '\\' &&
2561 (tp->cno == 2 || tp->lb[tp->cno - 2] != '\\'))
2562 return (0);
2565 * If it's a magic shell character, and not quoted, reset the cursor
2566 * to the starting point.
2568 if (strchr(O_STR(sp, O_SHELLMETA), tp->lb[tp->cno - 1]) != NULL &&
2569 (tp->cno == 2 || tp->lb[tp->cno - 2] != '\\'))
2570 vp->m_final = vp->m_start;
2573 * If we see the search pattern termination character, then quit doing
2574 * an incremental search. There may be more, e.g., ":/foo/;/bar/",
2575 * and we can't handle that incrementally. Also, reset the cursor to
2576 * the original location, the ex search routines don't know anything
2577 * about incremental searches.
2579 if (tp->lb[0] == tp->lb[tp->cno - 1] &&
2580 (tp->cno == 2 || tp->lb[tp->cno - 2] != '\\')) {
2581 vp->m_final = vp->m_start;
2582 FL_CLR(*is_flagsp, IS_RUNNING);
2583 return (0);
2587 * Remember the input line and discard the special input map,
2588 * but don't overwrite the input line on the screen.
2590 lno = tp->lno;
2591 F_SET(VIP(sp), VIP_S_MODELINE);
2592 F_CLR(sp, SC_TINPUT | SC_TINPUT_INFO);
2593 if (txt_map_end(sp))
2594 return (1);
2597 * Specify a starting point and search. If we find a match, move to
2598 * it and refresh the screen. If we didn't find the match, then we
2599 * beep the screen. When searching from the original cursor position,
2600 * we have to move the cursor, otherwise, we don't want to move the
2601 * cursor in case the text at the current position continues to match.
2603 if (FL_ISSET(*is_flagsp, IS_RESTART)) {
2604 start = vp->m_start;
2605 sf = SEARCH_SET;
2606 } else {
2607 start = vp->m_final;
2608 sf = SEARCH_INCR | SEARCH_SET;
2611 if (tp->lb[0] == '/' ?
2612 !f_search(sp,
2613 &start, &vp->m_final, tp->lb + 1, tp->cno - 1, NULL, sf) :
2614 !b_search(sp,
2615 &start, &vp->m_final, tp->lb + 1, tp->cno - 1, NULL, sf)) {
2616 sp->lno = vp->m_final.lno;
2617 sp->cno = vp->m_final.cno;
2618 FL_CLR(*is_flagsp, IS_RESTART);
2620 if (!KEYS_WAITING(sp) && vs_refresh(sp, 0))
2621 return (1);
2622 } else
2623 FL_SET(*is_flagsp, IS_RESTART);
2625 /* Reinstantiate the special input map. */
2626 if (txt_map_init(sp))
2627 return (1);
2628 F_CLR(VIP(sp), VIP_S_MODELINE);
2629 F_SET(sp, SC_TINPUT | SC_TINPUT_INFO);
2631 /* Reset the line number of the input line. */
2632 tp->lno = TMAP[0].lno;
2635 * If the colon command-line moved, i.e. the screen scrolled,
2636 * refresh the input line.
2638 * XXX
2639 * We shouldn't be calling vs_line, here -- we need dirty bits
2640 * on entries in the SMAP array.
2642 if (lno != TMAP[0].lno) {
2643 if (vs_line(sp, &TMAP[0], NULL, NULL))
2644 return (1);
2645 (void)sp->gp->scr_refresh(sp, 0);
2647 return (0);
2651 * txt_resolve --
2652 * Resolve the input text chain into the file.
2654 static int
2655 txt_resolve(SCR *sp, TEXTH *tiqh, u_int32_t flags)
2657 VI_PRIVATE *vip;
2658 TEXT *tp;
2659 db_recno_t lno;
2660 int changed;
2663 * The first line replaces a current line, and all subsequent lines
2664 * are appended into the file. Resolve autoindented characters for
2665 * each line before committing it. If the latter causes the line to
2666 * change, we have to redisplay it, otherwise the information cached
2667 * about the line will be wrong.
2669 vip = VIP(sp);
2670 tp = tiqh->cqh_first;
2672 if (LF_ISSET(TXT_AUTOINDENT))
2673 txt_ai_resolve(sp, tp, &changed);
2674 else
2675 changed = 0;
2676 if (db_set(sp, tp->lno, tp->lb, tp->len) ||
2677 changed && vs_change(sp, tp->lno, LINE_RESET))
2678 return (1);
2680 for (lno = tp->lno; (tp = tp->q.cqe_next) != (void *)&sp->tiq; ++lno) {
2681 if (LF_ISSET(TXT_AUTOINDENT))
2682 txt_ai_resolve(sp, tp, &changed);
2683 else
2684 changed = 0;
2685 if (db_append(sp, 0, lno, tp->lb, tp->len) ||
2686 changed && vs_change(sp, tp->lno, LINE_RESET))
2687 return (1);
2691 * Clear the input flag, the look-aside buffer is no longer valid.
2692 * Has to be done as part of text resolution, or upon return we'll
2693 * be looking at incorrect data.
2695 F_CLR(sp, SC_TINPUT);
2697 return (0);
2701 * txt_showmatch --
2702 * Show a character match.
2704 * !!!
2705 * Historic vi tried to display matches even in the :colon command line.
2706 * I think not.
2708 static int
2709 txt_showmatch(SCR *sp, TEXT *tp)
2711 GS *gp;
2712 VCS cs;
2713 MARK m;
2714 int cnt, endc, startc;
2716 gp = sp->gp;
2719 * Do a refresh first, in case we haven't done one in awhile,
2720 * so the user can see what we're complaining about.
2722 UPDATE_POSITION(sp, tp);
2723 if (vs_refresh(sp, 1))
2724 return (1);
2727 * We don't display the match if it's not on the screen. Find
2728 * out what the first character on the screen is.
2730 if (vs_sm_position(sp, &m, 0, P_TOP))
2731 return (1);
2733 /* Initialize the getc() interface. */
2734 cs.cs_lno = tp->lno;
2735 cs.cs_cno = tp->cno - 1;
2736 if (cs_init(sp, &cs))
2737 return (1);
2738 startc = (endc = cs.cs_ch) == ')' ? '(' : '{';
2740 /* Search for the match. */
2741 for (cnt = 1;;) {
2742 if (cs_prev(sp, &cs))
2743 return (1);
2744 if (cs.cs_flags != 0) {
2745 if (cs.cs_flags == CS_EOF || cs.cs_flags == CS_SOF) {
2746 msgq(sp, M_BERR,
2747 "Unmatched %s", KEY_NAME(sp, endc));
2748 return (0);
2750 continue;
2752 if (cs.cs_ch == endc)
2753 ++cnt;
2754 else if (cs.cs_ch == startc && --cnt == 0)
2755 break;
2758 /* If the match is on the screen, move to it. */
2759 if (cs.cs_lno < m.lno || cs.cs_lno == m.lno && cs.cs_cno < m.cno)
2760 return (0);
2761 sp->lno = cs.cs_lno;
2762 sp->cno = cs.cs_cno;
2763 if (vs_refresh(sp, 1))
2764 return (1);
2766 /* Wait for timeout or character arrival. */
2767 return (v_event_get(sp,
2768 NULL, O_VAL(sp, O_MATCHTIME) * 100, EC_TIMEOUT));
2772 * txt_margin --
2773 * Handle margin wrap.
2775 static int
2776 txt_margin(SCR *sp, TEXT *tp, TEXT *wmtp, int *didbreak, u_int32_t flags)
2778 VI_PRIVATE *vip;
2779 size_t len, off;
2780 CHAR_T *p, *wp;
2782 /* Find the nearest previous blank. */
2783 for (off = tp->cno - 1, p = tp->lb + off, len = 0;; --off, --p, ++len) {
2784 if (isblank(*p)) {
2785 wp = p + 1;
2786 break;
2790 * If reach the start of the line, there's nowhere to break.
2792 * !!!
2793 * Historic vi belled each time a character was entered after
2794 * crossing the margin until a space was entered which could
2795 * be used to break the line. I don't as it tends to wake the
2796 * cats.
2798 if (off == tp->ai || off == tp->offset) {
2799 *didbreak = 0;
2800 return (0);
2805 * Store saved information about the rest of the line in the
2806 * wrapmargin TEXT structure.
2808 * !!!
2809 * The offset field holds the length of the current characters
2810 * that the user entered, but which are getting split to the new
2811 * line -- it's going to be used to set the cursor value when we
2812 * move to the new line.
2814 vip = VIP(sp);
2815 wmtp->lb = p + 1;
2816 wmtp->offset = len;
2817 wmtp->insert = LF_ISSET(TXT_APPENDEOL) ? tp->insert - 1 : tp->insert;
2818 wmtp->owrite = tp->owrite;
2820 /* Correct current bookkeeping information. */
2821 tp->cno -= len;
2822 if (LF_ISSET(TXT_APPENDEOL)) {
2823 tp->len -= len + tp->owrite + (tp->insert - 1);
2824 tp->insert = 1;
2825 } else {
2826 tp->len -= len + tp->owrite + tp->insert;
2827 tp->insert = 0;
2829 tp->owrite = 0;
2832 * !!!
2833 * Delete any trailing whitespace from the current line.
2835 for (;; --p, --off) {
2836 if (!isblank(*p))
2837 break;
2838 --tp->cno;
2839 --tp->len;
2840 if (off == tp->ai || off == tp->offset)
2841 break;
2843 *didbreak = 1;
2844 return (0);
2848 * txt_Rresolve --
2849 * Resolve the input line for the 'R' command.
2851 static void
2852 txt_Rresolve(SCR *sp, TEXTH *tiqh, TEXT *tp, const const size_t orig_len)
2854 TEXT *ttp;
2855 size_t input_len, retain;
2856 CHAR_T *p;
2859 * Check to make sure that the cursor hasn't moved beyond
2860 * the end of the line.
2862 if (tp->owrite == 0)
2863 return;
2866 * Calculate how many characters the user has entered,
2867 * plus the blanks erased by <carriage-return>/<newline>s.
2869 for (ttp = tiqh->cqh_first, input_len = 0;;) {
2870 input_len += ttp == tp ? tp->cno : ttp->len + ttp->R_erase;
2871 if ((ttp = ttp->q.cqe_next) == (void *)&sp->tiq)
2872 break;
2876 * If the user has entered less characters than the original line
2877 * was long, restore any overwriteable characters to the original
2878 * characters. These characters are entered as "insert characters",
2879 * because they're after the cursor and we don't want to lose them.
2880 * (This is okay because the R command has no insert characters.)
2881 * We set owrite to 0 so that the insert characters don't get copied
2882 * to somewhere else, which means that the line and the length have
2883 * to be adjusted here as well.
2885 * We have to retrieve the original line because the original pinned
2886 * page has long since been discarded. If it doesn't exist, that's
2887 * okay, the user just extended the file.
2889 if (input_len < orig_len) {
2890 retain = MIN(tp->owrite, orig_len - input_len);
2891 if (db_get(sp,
2892 tiqh->cqh_first->lno, DBG_FATAL | DBG_NOCACHE, &p, NULL))
2893 return;
2894 MEMCPYW(tp->lb + tp->cno, p + input_len, retain);
2895 tp->len -= tp->owrite - retain;
2896 tp->owrite = 0;
2897 tp->insert += retain;
2902 * txt_nomorech --
2903 * No more characters message.
2905 static void
2906 txt_nomorech(SCR *sp)
2908 msgq(sp, M_BERR, "194|No more characters to erase");