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.
13 static const char sccsid
[] = "$Id: v_txt.c,v 11.5 2013/05/19 20:37:45 bentley Exp $";
16 #include <sys/types.h>
17 #include <sys/queue.h>
20 #include <bitstring.h>
29 #include "../common/common.h"
32 static int txt_abbrev(SCR
*, TEXT
*, CHAR_T
*, int, int *, int *);
33 static void txt_ai_resolve(SCR
*, TEXT
*, int *);
34 static TEXT
*txt_backup(SCR
*, TEXTH
*, TEXT
*, u_int32_t
*);
35 static int txt_dent(SCR
*, TEXT
*, int);
36 static int txt_emark(SCR
*, TEXT
*, size_t);
37 static void txt_err(SCR
*, TEXTH
*);
38 static int txt_fc(SCR
*, TEXT
*, int *);
39 static int txt_fc_col(SCR
*, int, ARGS
**);
40 static int txt_hex(SCR
*, TEXT
*);
41 static int txt_insch(SCR
*, TEXT
*, CHAR_T
*, u_int
);
42 static int txt_isrch(SCR
*, VICMD
*, TEXT
*, u_int8_t
*);
43 static int txt_map_end(SCR
*);
44 static int txt_map_init(SCR
*);
45 static int txt_margin(SCR
*, TEXT
*, TEXT
*, int *, u_int32_t
);
46 static void txt_nomorech(SCR
*);
47 static void txt_Rresolve(SCR
*, TEXTH
*, TEXT
*, const size_t);
48 static int txt_resolve(SCR
*, TEXTH
*, u_int32_t
);
49 static int txt_showmatch(SCR
*, TEXT
*);
50 static void txt_unmap(SCR
*, TEXT
*, u_int32_t
*);
52 /* Cursor character (space is hard to track on the screen). */
53 #if defined(DEBUG) && 0
60 * Fill a buffer from the terminal for vi.
62 * PUBLIC: int v_tcmd(SCR *, VICMD *, ARG_CHAR_T, u_int);
65 v_tcmd(SCR
*sp
, VICMD
*vp
, ARG_CHAR_T prompt
, u_int flags
)
67 /* Normally, we end up where we started. */
68 vp
->m_final
.lno
= sp
->lno
;
69 vp
->m_final
.cno
= sp
->cno
;
71 /* Initialize the map. */
75 /* Move to the last line. */
76 sp
->lno
= TMAP
[0].lno
;
79 /* Don't update the modeline for now. */
80 F_SET(sp
, SC_TINPUT_INFO
);
82 /* Set the input flags. */
83 LF_SET(TXT_APPENDEOL
|
84 TXT_CR
| TXT_ESCAPE
| TXT_INFOLINE
| TXT_MAPINPUT
);
85 if (O_ISSET(sp
, O_ALTWERASE
))
86 LF_SET(TXT_ALTWERASE
);
87 if (O_ISSET(sp
, O_TTYWERASE
))
88 LF_SET(TXT_TTYWERASE
);
90 /* Do the input thing. */
91 if (v_txt(sp
, vp
, NULL
, NULL
, 0, prompt
, 0, 1, flags
))
94 /* Reenable the modeline updates. */
95 F_CLR(sp
, SC_TINPUT_INFO
);
97 /* Clean up the map. */
102 F_SET(sp
, SC_SCR_REDRAW
); /* XXX */
104 /* Set the cursor to the resulting position. */
105 sp
->lno
= vp
->m_final
.lno
;
106 sp
->cno
= vp
->m_final
.cno
;
113 * Initialize the screen map for colon command-line input.
116 txt_map_init(SCR
*sp
)
122 if (!IS_ONELINE(sp
)) {
124 * Fake like the user is doing input on the last line of the
125 * screen. This makes all of the scrolling work correctly,
126 * and allows us the use of the vi text editing routines, not
127 * to mention practically infinite length ex commands.
129 * Save the current location.
131 vip
->sv_tm_lno
= TMAP
->lno
;
132 vip
->sv_tm_soff
= TMAP
->soff
;
133 vip
->sv_tm_coff
= TMAP
->coff
;
134 vip
->sv_t_maxrows
= sp
->t_maxrows
;
135 vip
->sv_t_minrows
= sp
->t_minrows
;
136 vip
->sv_t_rows
= sp
->t_rows
;
139 * If it's a small screen, TMAP may be small for the screen.
140 * Fix it, filling in fake lines as we go.
144 HMAP
+ (sp
->t_maxrows
- 1); TMAP
< esmp
; ++TMAP
) {
145 TMAP
[1].lno
= TMAP
[0].lno
+ 1;
146 TMAP
[1].coff
= HMAP
->coff
;
150 /* Build the fake entry. */
151 TMAP
[1].lno
= TMAP
[0].lno
+ 1;
154 SMAP_FLUSH(&TMAP
[1]);
157 /* Reset the screen information. */
158 sp
->t_rows
= sp
->t_minrows
= ++sp
->t_maxrows
;
165 * Reset the screen map for colon command-line input.
174 if (!IS_ONELINE(sp
)) {
175 /* Restore the screen information. */
176 sp
->t_rows
= vip
->sv_t_rows
;
177 sp
->t_minrows
= vip
->sv_t_minrows
;
178 sp
->t_maxrows
= vip
->sv_t_maxrows
;
181 * If it's a small screen, TMAP may be wrong. Clear any
182 * lines that might have been overwritten.
185 for (cnt
= sp
->t_rows
; cnt
<= sp
->t_maxrows
; ++cnt
) {
186 (void)sp
->gp
->scr_move(sp
, cnt
, 0);
187 (void)sp
->gp
->scr_clrtoeol(sp
);
189 TMAP
= HMAP
+ (sp
->t_rows
- 1);
194 * The map may be wrong if the user entered more than one
195 * (logical) line. Fix it. If the user entered a whole
196 * screen, this will be slow, but we probably don't care.
198 if (!O_ISSET(sp
, O_LEFTRIGHT
))
199 while (vip
->sv_tm_lno
!= TMAP
->lno
||
200 vip
->sv_tm_soff
!= TMAP
->soff
)
206 * Invalidate the cursor and the line size cache, the line never
207 * really existed. This fixes bugs where the user searches for
208 * the last line on the screen + 1 and the refresh routine thinks
209 * that's where we just were.
212 F_SET(vip
, VIP_CUR_INVALID
);
218 * If doing input mapping on the colon command line, may need to unmap
219 * based on the command.
222 FL_ISSET(ec_flags, EC_MAPINPUT) && LF_ISSET(TXT_INFOLINE)
225 * Internally, we maintain tp->lno and tp->cno, externally, everyone uses
226 * sp->lno and sp->cno. Make them consistent as necessary.
228 #define UPDATE_POSITION(sp, tp) { \
229 (sp)->lno = (tp)->lno; \
230 (sp)->cno = (tp)->cno; \
237 * PUBLIC: int v_txt(SCR *, VICMD *, MARK *,
238 * PUBLIC: const CHAR_T *, size_t, ARG_CHAR_T, recno_t, u_long, u_int32_t);
244 MARK
*tm
, /* To MARK. */
245 const CHAR_T
*lp
, /* Input line. */
246 size_t len
, /* Input line length. */
247 ARG_CHAR_T prompt
, /* Prompt to display. */
248 recno_t ai_line
, /* Line number to use for autoindent count. */
249 u_long rcount
, /* Replay count. */
250 u_int32_t flags
) /* TXT_* flags. */
252 EVENT ev
, *evp
= NULL
; /* Current event. */
253 EVENT fc
; /* File name completion event. */
255 TEXT
*ntp
, *tp
; /* Input text structures. */
256 TEXT ait
; /* Autoindent text structure. */
257 TEXT wmt
= {{ 0 }}; /* Wrapmargin text structure. */
260 abb_t abb
; /* State of abbreviation checks. */
261 carat_t carat
; /* State of the "[^0]^D" sequences. */
262 quote_t quote
; /* State of quotation. */
263 size_t owrite
, insert
; /* Temporary copies of TEXT fields. */
264 size_t margin
; /* Wrapmargin value. */
265 size_t rcol
; /* 0-N: insert offset in the replay buffer. */
266 size_t tcol
; /* Temporary column. */
267 u_int32_t ec_flags
; /* Input mapping flags. */
268 #define IS_RESTART 0x01 /* Reset the incremental search. */
269 #define IS_RUNNING 0x02 /* Incremental search turned on. */
271 int abcnt
, ab_turnoff
; /* Abbreviation character count, switch. */
272 int filec_redraw
; /* Redraw after the file completion routine. */
273 int hexcnt
; /* Hex character count. */
274 int showmatch
; /* Showmatch set on this character. */
275 int wm_set
, wm_skip
; /* Wrapmargin happened, blank skip flags. */
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.
296 if (!TAILQ_EMPTY(tiqh
)) {
297 tp
= TAILQ_FIRST(tiqh
);
298 if (TAILQ_NEXT(tp
, q
) != NULL
||
299 tp
->lb_len
< (len
+ 32) * sizeof(CHAR_T
)) {
303 tp
->ai
= tp
->insert
= tp
->offset
= tp
->owrite
= 0;
306 BINC_RETW(sp
, tp
->lb
, tp
->lb_len
, len
);
307 MEMMOVE(tp
->lb
, lp
, len
);
311 newtp
: if ((tp
= text_init(sp
, lp
, len
, len
+ 32)) == NULL
)
313 TAILQ_INSERT_HEAD(tiqh
, tp
, q
);
316 /* Set default termination condition. */
319 /* Set the starting line, column. */
324 * Set the insert and overwrite counts. If overwriting characters,
325 * do insertion afterward. If not overwriting characters, assume
326 * doing insertion. If change is to a mark, emphasize it with an
327 * CH_ENDMARK character.
330 if (LF_ISSET(TXT_OVERWRITE
)) {
331 tp
->owrite
= (tm
->cno
- tp
->cno
) + 1;
332 tp
->insert
= (len
- tm
->cno
) - 1;
334 tp
->insert
= len
- tp
->cno
;
336 if (LF_ISSET(TXT_EMARK
) && txt_emark(sp
, tp
, tm
->cno
))
341 * Many of the special cases in text input are to handle autoindent
342 * support. Somebody decided that it would be a good idea if "^^D"
343 * and "0^D" deleted all of the autoindented characters. In an editor
344 * that takes single character input from the user, this beggars the
345 * imagination. Note also, "^^D" resets the next lines' autoindent,
348 * We assume that autoindent only happens on empty lines, so insert
349 * and overwrite will be zero. If doing autoindent, figure out how
350 * much indentation we need and fill it in. Update input column and
351 * screen cursor as necessary.
353 if (LF_ISSET(TXT_AUTOINDENT
) && ai_line
!= OOBLNO
) {
354 if (v_txt_auto(sp
, ai_line
, NULL
, 0, tp
))
359 * The cc and S commands have a special feature -- leading
360 * <blank> characters are handled as autoindent characters.
363 if (LF_ISSET(TXT_AICHARS
)) {
367 tp
->offset
= tp
->cno
;
370 /* If getting a command buffer from the user, there may be a prompt. */
371 if (LF_ISSET(TXT_PROMPT
)) {
372 tp
->lb
[tp
->cno
++] = prompt
;
378 * If appending after the end-of-line, add a space into the buffer
379 * and move the cursor right. This space is inserted, i.e. pushed
380 * along, and then deleted when the line is resolved. Assumes that
381 * the cursor is already positioned at the end of the line. This
382 * avoids the nastiness of having the cursor reside on a magical
383 * column, i.e. a column that doesn't really exist. The only down
384 * side is that we may wrap lines or scroll the screen before it's
385 * strictly necessary. Not a big deal.
387 if (LF_ISSET(TXT_APPENDEOL
)) {
388 tp
->lb
[tp
->cno
] = CH_CURSOR
;
391 (void)vs_change(sp
, tp
->lno
, LINE_RESET
);
395 * Historic practice is that the wrapmargin value was a distance
396 * from the RIGHT-HAND margin, not the left. It's more useful to
397 * us as a distance from the left-hand margin, i.e. the same as
398 * the wraplen value. The wrapmargin option is historic practice.
399 * Nvi added the wraplen option so that it would be possible to
400 * edit files with consistent margins without knowing the number of
401 * columns in the window.
404 * Setting margin causes a significant performance hit. Normally
405 * we don't update the screen if there are keys waiting, but we
406 * have to if margin is set, otherwise the screen routines don't
407 * know where the cursor is.
410 * Abbreviated keys were affected by the wrapmargin option in the
411 * historic 4BSD vi. Mapped keys were usually, but sometimes not.
412 * See the comment in vi/v_text():set_txt_std for more information.
415 * One more special case. If an inserted <blank> character causes
416 * wrapmargin to split the line, the next user entered character is
417 * discarded if it's a <space> character.
419 wm_set
= wm_skip
= 0;
420 if (LF_ISSET(TXT_WRAPMARGIN
))
421 if ((margin
= O_VAL(sp
, O_WRAPMARGIN
)) != 0)
422 margin
= sp
->cols
- margin
;
424 margin
= O_VAL(sp
, O_WRAPLEN
);
428 /* Initialize abbreviation checks. */
429 abcnt
= ab_turnoff
= 0;
430 abb
= F_ISSET(gp
, G_ABBREV
) &&
431 LF_ISSET(TXT_MAPINPUT
) ? AB_INWORD
: AB_NOTSET
;
434 * Set up the dot command. Dot commands are done by saving the actual
435 * characters and then reevaluating them so that things like wrapmargin
436 * can change between the insert and the replay.
439 * Historically, vi did not remap or reabbreviate replayed input. (It
440 * did beep at you if you changed an abbreviation and then replayed the
441 * input. We're not that compatible.) We don't have to do anything to
442 * avoid remapping, as we're not getting characters from the terminal
443 * routines. Turn the abbreviation check off.
446 * It would be nice if we could swallow backspaces and such, but it's
447 * not all that easy to do. What we can do is turn off the common
448 * error messages during the replay. Otherwise, when the user enters
449 * an illegal command, e.g., "Ia<erase><erase><erase><erase>b<escape>",
450 * and then does a '.', they get a list of error messages after command
454 if (LF_ISSET(TXT_REPLAY
)) {
459 /* Other text input mode setup. */
464 LF_ISSET(TXT_SEARCHINCR
) ? IS_RESTART
| IS_RUNNING
: 0);
465 filec_redraw
= hexcnt
= showmatch
= 0;
467 /* Initialize input flags. */
468 ec_flags
= LF_ISSET(TXT_MAPINPUT
) ? EC_MAPINPUT
: 0;
470 /* Refresh the screen. */
471 UPDATE_POSITION(sp
, tp
);
472 if (vs_refresh(sp
, 1))
475 /* If it's dot, just do it now. */
476 if (F_ISSET(vp
, VC_ISDOT
))
481 next
: if (v_event_get(sp
, evp
, 0, ec_flags
))
485 * If file completion overwrote part of the screen and nothing else has
486 * been displayed, clean up. We don't do this as part of the normal
487 * message resolution because we know the user is on the colon command
488 * line and there's no reason to enter explicit characters to continue.
490 if (filec_redraw
&& !F_ISSET(sp
, SC_SCR_EXWROTE
)) {
493 fc
.e_event
= E_REPAINT
;
494 fc
.e_flno
= vip
->totalcount
>=
495 sp
->rows
? 1 : sp
->rows
- vip
->totalcount
;
496 fc
.e_tlno
= sp
->rows
;
497 vip
->linecount
= vip
->lcontinue
= vip
->totalcount
= 0;
498 (void)vs_repaint(sp
, &fc
);
499 (void)vs_refresh(sp
, 1);
502 /* Deal with all non-character events. */
503 switch (evp
->e_event
) {
508 F_SET(sp
, SC_EXIT_FORCE
);
513 * Historically, <interrupt> exited the user from text input
514 * mode or cancelled a colon command, and returned to command
515 * mode. It also beeped the terminal, but that seems a bit
520 if (vs_repaint(sp
, &ev
))
524 /* <resize> interrupts the input mode. */
525 v_emsg(sp
, NULL
, VIM_WRESIZE
);
528 v_event_err(sp
, evp
);
534 * If the first character of the input is a nul, replay the previous
535 * input. (Historically, it's okay to replay non-existent input.)
536 * This was not documented as far as I know, and is a great test of vi
539 if (LF_ISSET(TXT_RECORD
) && rcol
== 0 && evp
->e_c
== '\0') {
540 if (vip
->rep
== NULL
)
550 * File name completion and colon command-line editing. We don't
551 * have enough meta characters, so we expect people to overload
552 * them. If the two characters are the same, then we do file name
553 * completion if the cursor is past the first column, and do colon
554 * command-line editing if it's not.
556 if (quote
== Q_NOTSET
) {
557 int L__cedit
, L__filec
;
559 L__cedit
= L__filec
= 0;
560 if (LF_ISSET(TXT_CEDIT
) && O_STR(sp
, O_CEDIT
) != NULL
&&
561 O_STR(sp
, O_CEDIT
)[0] == evp
->e_c
)
563 if (LF_ISSET(TXT_FILEC
) && O_STR(sp
, O_FILEC
) != NULL
&&
564 O_STR(sp
, O_FILEC
)[0] == evp
->e_c
)
566 if (L__cedit
== 1 && (L__filec
== 0 || tp
->cno
== tp
->offset
)) {
567 tp
->term
= TERM_CEDIT
;
571 if (txt_fc(sp
, tp
, &filec_redraw
))
577 /* Abbreviation overflow check. See comment in txt_abbrev(). */
578 #define MAX_ABBREVIATION_EXPANSION 256
579 if (F_ISSET(&evp
->e_ch
, CH_ABBREVIATED
)) {
580 if (++abcnt
> MAX_ABBREVIATION_EXPANSION
) {
581 if (v_event_flush(sp
, CH_ABBREVIATED
))
583 "191|Abbreviation exceeded expansion limit: characters discarded");
585 if (LF_ISSET(TXT_REPLAY
))
592 /* Check to see if the character fits into the replay buffers. */
593 if (LF_ISSET(TXT_RECORD
)) {
594 BINC_GOTO(sp
, EVENT
, vip
->rep
,
595 vip
->rep_len
, (rcol
+ 1) * sizeof(EVENT
));
596 vip
->rep
[rcol
++] = *evp
;
599 replay
: if (LF_ISSET(TXT_REPLAY
)) {
600 if (rcol
== vip
->rep_cnt
)
602 evp
= vip
->rep
+ rcol
++;
605 /* Wrapmargin check for leading space. */
612 /* If quoted by someone else, simply insert the character. */
613 if (F_ISSET(&evp
->e_ch
, CH_QUOTED
))
618 * If this character was quoted by a K_VLNEXT or a backslash, replace
619 * the placeholder (a carat or a backslash) with the new character.
620 * If it was quoted by a K_VLNEXT, we've already adjusted the cursor
621 * because it has to appear on top of the placeholder character. If
622 * it was quoted by a backslash, adjust the cursor now, the cursor
623 * doesn't appear on top of it. Historic practice in both cases.
625 * Skip tests for abbreviations; ":ab xa XA" followed by "ixa^V<space>"
626 * doesn't perform an abbreviation. Special case, ^V^J (not ^V^M) is
627 * the same as ^J, historically.
629 if (quote
== Q_BTHIS
|| quote
== Q_VTHIS
) {
630 FL_CLR(ec_flags
, EC_QUOTED
);
631 if (LF_ISSET(TXT_MAPINPUT
))
632 FL_SET(ec_flags
, EC_MAPINPUT
);
634 if (quote
== Q_BTHIS
&&
635 (evp
->e_value
== K_VERASE
|| evp
->e_value
== K_VKILL
)) {
641 if (quote
== Q_VTHIS
&& evp
->e_value
!= K_NL
) {
650 * Translate "<CH_HEX>[isxdigit()]*" to a character with a hex value:
651 * this test delimits the value by any non-hex character. Offset by
652 * one, we use 0 to mean that we've found <CH_HEX>.
654 if (hexcnt
> 1 && !ISXDIGIT(evp
->e_c
)) {
660 switch (evp
->e_value
) {
661 case K_CR
: /* Carriage return. */
662 case K_NL
: /* New line. */
663 /* Return in script windows and the command line. */
664 k_cr
: if (LF_ISSET(TXT_CR
)) {
666 * If this was a map, we may have not displayed
667 * the line. Display it, just in case.
669 * If a script window and not the colon line,
670 * push a <cr> so it gets executed.
672 if (LF_ISSET(TXT_INFOLINE
)) {
673 if (vs_change(sp
, tp
->lno
, LINE_RESET
))
675 } else if (F_ISSET(sp
, SC_SCRIPT
))
676 (void)v_event_push(sp
, NULL
, L("\r"), 1, CH_NOMAP
);
678 /* Set term condition: if empty. */
679 if (tp
->cno
<= tp
->offset
)
682 * Set term condition: if searching incrementally and
683 * the user entered a pattern, return a completed
684 * search, regardless if the entire pattern was found.
686 if (FL_ISSET(is_flags
, IS_RUNNING
) &&
687 tp
->cno
>= tp
->offset
+ 1)
688 tp
->term
= TERM_SEARCH
;
693 #define LINE_RESOLVE { \
695 * Handle abbreviations. If there was one, discard the \
696 * replay characters. \
698 if (abb == AB_INWORD && \
699 !LF_ISSET(TXT_REPLAY) && F_ISSET(gp, G_ABBREV)) { \
700 if (txt_abbrev(sp, tp, &evp->e_c, \
701 LF_ISSET(TXT_INFOLINE), &tmp, \
705 if (LF_ISSET(TXT_RECORD)) \
710 if (abb != AB_NOTSET) \
713 txt_unmap(sp, tp, &ec_flags); \
715 * Delete any appended cursor. It's possible to get in \
716 * situations where TXT_APPENDEOL is set but tp->insert \
717 * is 0 when using the R command and all the characters \
718 * are tp->owrite characters. \
720 if (LF_ISSET(TXT_APPENDEOL) && tp->insert > 0) { \
728 * Save the current line information for restoration in
729 * txt_backup(), and set the line final length.
731 tp
->sv_len
= tp
->len
;
732 tp
->sv_cno
= tp
->cno
;
735 /* Update the old line. */
736 if (vs_change(sp
, tp
->lno
, LINE_RESET
))
740 * Historic practice, when the autoindent edit option was set,
741 * was to delete <blank> characters following the inserted
742 * newline. This affected the 'R', 'c', and 's' commands; 'c'
743 * and 's' retained the insert characters only, 'R' moved the
744 * overwrite and insert characters into the next TEXT structure.
745 * We keep track of the number of characters erased for the 'R'
746 * command so that the final resolution of the line is correct.
751 if (LF_ISSET(TXT_REPLACE
) && owrite
!= 0) {
752 for (p
= tp
->lb
+ tp
->cno
; owrite
> 0 && isblank(*p
);
753 ++p
, --owrite
, ++tp
->R_erase
);
755 for (; insert
> 0 && isblank(*p
);
756 ++p
, ++tp
->R_erase
, --insert
);
758 p
= tp
->lb
+ tp
->cno
+ owrite
;
759 if (O_ISSET(sp
, O_AUTOINDENT
))
761 isblank(*p
); ++p
, --insert
);
767 * Create a new line and insert the new TEXT into the queue.
768 * DON'T insert until the old line has been updated, or the
769 * inserted line count in line.c:db_get() will be wrong.
771 if ((ntp
= text_init(sp
, p
,
772 insert
+ owrite
, insert
+ owrite
+ 32)) == NULL
)
774 TAILQ_INSERT_TAIL(sp
->tiq
, ntp
, q
);
776 /* Set up bookkeeping for the new line. */
777 ntp
->insert
= insert
;
778 ntp
->owrite
= owrite
;
779 ntp
->lno
= tp
->lno
+ 1;
782 * Reset the autoindent line value. 0^D keeps the autoindent
783 * line from changing, ^D changes the level, even if there were
784 * no characters in the old line. Note, if using the current
785 * tp structure, use the cursor as the length, the autoindent
786 * characters may have been erased.
788 if (LF_ISSET(TXT_AUTOINDENT
)) {
791 if (v_txt_auto(sp
, OOBLNO
, &ait
, ait
.ai
, ntp
))
793 FREE_SPACEW(sp
, ait
.lb
, ait
.lb_len
);
795 if (v_txt_auto(sp
, OOBLNO
, tp
, tp
->cno
, ntp
))
800 /* Reset the cursor. */
804 * If we're here because wrapmargin was set and we've broken a
805 * line, there may be additional information (i.e. the start of
806 * a line) in the wmt structure.
809 if (wmt
.offset
!= 0 ||
810 wmt
.owrite
!= 0 || wmt
.insert
!= 0) {
811 #define WMTSPACE wmt.offset + wmt.owrite + wmt.insert
812 BINC_GOTOW(sp
, ntp
->lb
,
813 ntp
->lb_len
, ntp
->len
+ WMTSPACE
+ 32);
814 MEMMOVE(ntp
->lb
+ ntp
->cno
, wmt
.lb
, WMTSPACE
);
815 ntp
->len
+= WMTSPACE
;
816 ntp
->cno
+= wmt
.offset
;
817 ntp
->owrite
= wmt
.owrite
;
818 ntp
->insert
= wmt
.insert
;
823 /* New lines are TXT_APPENDEOL. */
824 if (ntp
->owrite
== 0 && ntp
->insert
== 0) {
825 BINC_GOTOW(sp
, ntp
->lb
, ntp
->lb_len
, ntp
->len
+ 1);
826 LF_SET(TXT_APPENDEOL
);
827 ntp
->lb
[ntp
->cno
] = CH_CURSOR
;
832 /* Swap old and new TEXT's, and update the new line. */
834 if (vs_change(sp
, tp
->lno
, LINE_INSERT
))
838 case K_ESCAPE
: /* Escape. */
839 if (!LF_ISSET(TXT_ESCAPE
))
842 /* If we have a count, start replaying the input. */
853 * Some commands (e.g. 'o') need a <newline> for each
856 if (LF_ISSET(TXT_ADDNEWLINE
))
860 * The R command turns into the 'a' command after the
863 if (LF_ISSET(TXT_REPLACE
)) {
864 tp
->insert
= tp
->owrite
;
871 /* Set term condition: if empty. */
872 if (tp
->cno
<= tp
->offset
)
875 * Set term condition: if searching incrementally and the user
876 * entered a pattern, return a completed search, regardless if
877 * the entire pattern was found.
879 if (FL_ISSET(is_flags
, IS_RUNNING
) && tp
->cno
>= tp
->offset
+ 1)
880 tp
->term
= TERM_SEARCH
;
882 k_escape
: LINE_RESOLVE
;
885 * Clean up for the 'R' command, restoring overwrite
886 * characters, and making them into insert characters.
888 if (LF_ISSET(TXT_REPLACE
))
889 txt_Rresolve(sp
, sp
->tiq
, tp
, len
);
892 * If there are any overwrite characters, copy down
893 * any insert characters, and decrement the length.
897 MEMMOVE(tp
->lb
+ tp
->cno
,
898 tp
->lb
+ tp
->cno
+ tp
->owrite
, tp
->insert
);
899 tp
->len
-= tp
->owrite
;
903 * Optionally resolve the lines into the file. If not
904 * resolving the lines into the file, end the line with
905 * a nul. If the line is empty, then set the length to
906 * 0, the termination condition has already been set.
909 * This is wrong, should pass back a length.
911 if (LF_ISSET(TXT_RESOLVE
)) {
912 if (txt_resolve(sp
, sp
->tiq
, flags
))
915 BINC_GOTOW(sp
, tp
->lb
, tp
->lb_len
, tp
->len
+ 1);
916 tp
->lb
[tp
->len
] = '\0';
920 * Set the return cursor position to rest on the last
921 * inserted character.
926 /* Update the last line. */
927 if (vs_change(sp
, tp
->lno
, LINE_RESET
))
930 case K_CARAT
: /* Delete autoindent chars. */
931 if (tp
->cno
<= tp
->ai
&& LF_ISSET(TXT_AUTOINDENT
))
934 case K_ZERO
: /* Delete autoindent chars. */
935 if (tp
->cno
<= tp
->ai
&& LF_ISSET(TXT_AUTOINDENT
))
938 case K_CNTRLD
: /* Delete autoindent char. */
940 * If in the first column or no characters to erase, ignore
941 * the ^D (this matches historic practice). If not doing
942 * autoindent or already inserted non-ai characters, it's a
943 * literal. The latter test is done in the switch, as the
944 * CARAT forms are N + 1, not N.
946 if (!LF_ISSET(TXT_AUTOINDENT
))
952 case C_CARATSET
: /* ^^D */
953 if (tp
->ai
== 0 || tp
->cno
> tp
->ai
+ tp
->offset
+ 1)
956 /* Save the ai string for later. */
959 BINC_GOTOW(sp
, ait
.lb
, ait
.lb_len
, tp
->ai
);
960 MEMMOVE(ait
.lb
, tp
->lb
, tp
->ai
);
961 ait
.ai
= ait
.len
= tp
->ai
;
966 case C_ZEROSET
: /* 0^D */
967 if (tp
->ai
== 0 || tp
->cno
> tp
->ai
+ tp
->offset
+ 1)
971 leftmargin
: tp
->lb
[tp
->cno
- 1] = ' ';
972 tp
->owrite
+= tp
->cno
- tp
->offset
;
974 tp
->cno
= tp
->offset
;
976 case C_NOTSET
: /* ^D */
977 if (tp
->ai
== 0 || tp
->cno
> tp
->ai
+ tp
->offset
)
980 (void)txt_dent(sp
, tp
, 0);
986 case K_VERASE
: /* Erase the last character. */
987 /* If can erase over the prompt, return. */
988 if (tp
->cno
<= tp
->offset
&& LF_ISSET(TXT_BS
)) {
994 * If at the beginning of the line, try and drop back to a
995 * previously inserted line.
999 txt_backup(sp
, sp
->tiq
, tp
, &flags
)) == NULL
)
1005 /* If nothing to erase, bell the user. */
1006 if (tp
->cno
<= tp
->offset
) {
1007 if (!LF_ISSET(TXT_REPLAY
))
1012 /* Drop back one character. */
1016 * Historically, vi didn't replace the erased characters with
1017 * <blank>s, presumably because it's easier to fix a minor
1018 * typing mistake and continue on if the previous letters are
1019 * already there. This is a problem for incremental searching,
1020 * because the user can no longer tell where they are in the
1021 * colon command line because the cursor is at the last search
1022 * point in the screen. So, if incrementally searching, erase
1023 * the erased characters from the screen.
1025 if (FL_ISSET(is_flags
, IS_RUNNING
))
1026 tp
->lb
[tp
->cno
] = ' ';
1029 * Increment overwrite, decrement ai if deleted.
1032 * Historic vi did not permit users to use erase characters
1033 * to delete autoindent characters. We do. Eat hot death,
1037 if (tp
->cno
< tp
->ai
)
1040 /* Reset if we deleted an incremental search character. */
1041 if (FL_ISSET(is_flags
, IS_RUNNING
))
1042 FL_SET(is_flags
, IS_RESTART
);
1044 case K_VWERASE
: /* Skip back one word. */
1046 * If at the beginning of the line, try and drop back to a
1047 * previously inserted line.
1051 txt_backup(sp
, sp
->tiq
, tp
, &flags
)) == NULL
)
1057 * If at offset, nothing to erase so bell the user.
1059 if (tp
->cno
<= tp
->offset
) {
1060 if (!LF_ISSET(TXT_REPLAY
))
1066 * The first werase goes back to any autoindent column and the
1067 * second werase goes back to the offset.
1070 * Historic vi did not permit users to use erase characters to
1071 * delete autoindent characters.
1073 if (tp
->ai
&& tp
->cno
> tp
->ai
)
1080 /* Skip over trailing space characters. */
1081 while (tp
->cno
> max
&& ISBLANK(tp
->lb
[tp
->cno
- 1])) {
1088 * There are three types of word erase found on UNIX systems.
1089 * They can be identified by how the string /a/b/c is treated
1090 * -- as 1, 3, or 6 words. Historic vi had two classes of
1091 * characters, and strings were delimited by them and
1092 * <blank>'s, so, 6 words. The historic tty interface used
1093 * <blank>'s to delimit strings, so, 1 word. The algorithm
1094 * offered in the 4.4BSD tty interface (as stty altwerase)
1095 * treats it as 3 words -- there are two classes of
1096 * characters, and strings are delimited by them and
1097 * <blank>'s. The difference is that the type of the first
1098 * erased character erased is ignored, which is exactly right
1099 * when erasing pathname components. The edit options
1100 * TXT_ALTWERASE and TXT_TTYWERASE specify the 4.4BSD tty
1101 * interface and the historic tty driver behavior,
1102 * respectively, and the default is the same as the historic
1105 * Overwrite erased characters if doing incremental search;
1106 * see comment above.
1108 if (LF_ISSET(TXT_TTYWERASE
))
1109 while (tp
->cno
> max
) {
1110 if (ISBLANK(tp
->lb
[tp
->cno
- 1]))
1114 if (FL_ISSET(is_flags
, IS_RUNNING
))
1115 tp
->lb
[tp
->cno
] = ' ';
1118 if (LF_ISSET(TXT_ALTWERASE
)) {
1121 if (FL_ISSET(is_flags
, IS_RUNNING
))
1122 tp
->lb
[tp
->cno
] = ' ';
1125 tmp
= inword(tp
->lb
[tp
->cno
- 1]);
1126 while (tp
->cno
> max
) {
1127 if (tmp
!= inword(tp
->lb
[tp
->cno
- 1])
1128 || ISBLANK(tp
->lb
[tp
->cno
- 1]))
1132 if (FL_ISSET(is_flags
, IS_RUNNING
))
1133 tp
->lb
[tp
->cno
] = ' ';
1137 /* Reset if we deleted an incremental search character. */
1138 if (FL_ISSET(is_flags
, IS_RUNNING
))
1139 FL_SET(is_flags
, IS_RESTART
);
1141 case K_VKILL
: /* Restart this line. */
1144 * If at the beginning of the line, try and drop back to a
1145 * previously inserted line. Historic vi did not permit
1146 * users to go back to previous lines.
1150 txt_backup(sp
, sp
->tiq
, tp
, &flags
)) == NULL
)
1155 /* If at offset, nothing to erase so bell the user. */
1156 if (tp
->cno
<= tp
->offset
) {
1157 if (!LF_ISSET(TXT_REPLAY
))
1163 * First kill goes back to any autoindent and second kill goes
1164 * back to the offset.
1167 * Historic vi did not permit users to use erase characters to
1168 * delete autoindent characters.
1170 if (tp
->ai
&& tp
->cno
> tp
->ai
)
1176 tp
->owrite
+= tp
->cno
- max
;
1179 * Overwrite erased characters if doing incremental search;
1180 * see comment above.
1182 if (FL_ISSET(is_flags
, IS_RUNNING
))
1184 tp
->lb
[--tp
->cno
] = ' ';
1185 } while (tp
->cno
> max
);
1189 /* Reset if we deleted an incremental search character. */
1190 if (FL_ISSET(is_flags
, IS_RUNNING
))
1191 FL_SET(is_flags
, IS_RESTART
);
1193 case K_CNTRLT
: /* Add autoindent characters. */
1194 if (!LF_ISSET(TXT_CNTRLT
))
1196 if (txt_dent(sp
, tp
, 1))
1199 case K_BACKSLASH
: /* Quote next erase/kill. */
1202 * Historic vi tried to make abbreviations after a backslash
1203 * escape work. If you did ":ab x y", and inserted "x\^H",
1204 * (assuming the erase character was ^H) you got "x^H", and
1205 * no abbreviation was done. If you inserted "x\z", however,
1206 * it tried to back up and do the abbreviation, i.e. replace
1207 * 'x' with 'y'. The problem was it got it wrong, and you
1208 * ended up with "zy\".
1210 * This is really hard to do (you have to remember the
1211 * word/non-word state, for example), and doesn't make any
1212 * sense to me. Both backslash and the characters it
1213 * (usually) escapes will individually trigger the
1214 * abbreviation, so I don't see why the combination of them
1215 * wouldn't. I don't expect to get caught on this one,
1216 * particularly since it never worked right, but I've been
1219 * Do the tests for abbreviations, so ":ab xa XA",
1220 * "ixa\<K_VERASE>" performs the abbreviation.
1224 case K_VLNEXT
: /* Quote next character. */
1228 * Turn on the quote flag so that the underlying routines
1229 * quote the next character where it's possible. Turn off
1230 * the input mapbiting flag so that we don't remap the next
1233 FL_SET(ec_flags
, EC_QUOTED
);
1234 FL_CLR(ec_flags
, EC_MAPINPUT
);
1238 * Skip the tests for abbreviations, so ":ab xa XA",
1239 * "ixa^V<space>" doesn't perform the abbreviation.
1245 default: /* Insert the character. */
1246 if (LF_ISSET(TXT_SHOWMATCH
)) {
1247 CHAR_T
*match_chars
, *cp
;
1249 match_chars
= VIP(sp
)->mcs
;
1250 cp
= STRCHR(match_chars
, evp
->e_c
);
1251 if (cp
!= NULL
&& (cp
- match_chars
) & 1)
1255 * Historically, vi eliminated nul's out of hand. If the
1256 * beautify option was set, it also deleted any unknown
1257 * ASCII value less than space (040) and the del character
1258 * (0177), except for tabs. Unknown is a key word here.
1259 * Most vi documentation claims that it deleted everything
1260 * but <tab>, <nl> and <ff>, as that's what the original
1261 * 4BSD documentation said. This is obviously wrong,
1262 * however, as <esc> would be included in that list. What
1263 * we do is eliminate any unquoted, iscntrl() character that
1264 * wasn't a replay and wasn't handled specially, except
1267 if (LF_ISSET(TXT_BEAUTIFY
) && ISCNTRL(evp
->e_c
) &&
1268 evp
->e_value
!= K_FORMFEED
&& evp
->e_value
!= K_TAB
) {
1270 "192|Illegal character; quote to enter");
1271 if (LF_ISSET(TXT_REPLAY
))
1277 * If entering a non-word character after a word, check for
1278 * abbreviations. If there was one, discard replay characters.
1279 * If entering a blank character, check for unmap commands,
1282 if (!inword(evp
->e_c
)) {
1283 if (abb
== AB_INWORD
&&
1284 !LF_ISSET(TXT_REPLAY
) && F_ISSET(gp
, G_ABBREV
)) {
1285 if (txt_abbrev(sp
, tp
, &evp
->e_c
,
1286 LF_ISSET(TXT_INFOLINE
), &tmp
, &ab_turnoff
))
1289 if (LF_ISSET(TXT_RECORD
))
1294 if (isblank(evp
->e_c
) && UNMAP_TST
)
1295 txt_unmap(sp
, tp
, &ec_flags
);
1297 if (abb
!= AB_NOTSET
)
1298 abb
= inword(evp
->e_c
) ? AB_INWORD
: AB_NOTWORD
;
1300 insl_ch
: if (txt_insch(sp
, tp
, &evp
->e_c
, flags
))
1304 * If we're using K_VLNEXT to quote the next character, then
1305 * we want the cursor to position itself on the ^ placeholder
1306 * we're displaying, to match historic practice.
1308 if (quote
== Q_VNEXT
) {
1315 * Translate "<CH_HEX>[isxdigit()]*" to a character with
1316 * a hex value: this test delimits the value by the max
1317 * number of hex bytes. Offset by one, we use 0 to mean
1318 * that we've found <CH_HEX>.
1320 if (hexcnt
!= 0 && hexcnt
++ == 3) {
1322 if (txt_hex(sp
, tp
))
1327 * Check to see if we've crossed the margin.
1330 * In the historic vi, the wrapmargin value was figured out
1331 * using the display widths of the characters, i.e. <tab>
1332 * characters were counted as two characters if the list edit
1333 * option is set, but as the tabstop edit option number of
1334 * characters otherwise. That's what the vs_column() function
1335 * gives us, so we use it.
1338 if (vs_column(sp
, &tcol
))
1340 if (tcol
>= margin
) {
1341 if (txt_margin(sp
, tp
, &wmt
, &tmp
, flags
))
1344 if (isblank(evp
->e_c
))
1353 * If we've reached the end of the buffer, then we need to
1354 * switch into insert mode. This happens when there's a
1355 * change to a mark and the user puts in more characters than
1356 * the length of the motion.
1358 ebuf_chk
: if (tp
->cno
>= tp
->len
) {
1359 BINC_GOTOW(sp
, tp
->lb
, tp
->lb_len
, tp
->len
+ 1);
1360 LF_SET(TXT_APPENDEOL
);
1362 tp
->lb
[tp
->cno
] = CH_CURSOR
;
1367 /* Step the quote state forward. */
1368 if (quote
!= Q_NOTSET
) {
1369 if (quote
== Q_BNEXT
)
1371 if (quote
== Q_VNEXT
)
1378 if (tp
->cno
+ tp
->insert
+ tp
->owrite
!= tp
->len
) {
1380 "len %zu != cno: %zu ai: %zu insert %zu overwrite %zu",
1381 tp
->len
, tp
->cno
, tp
->ai
, tp
->insert
, tp
->owrite
);
1382 if (LF_ISSET(TXT_REPLAY
))
1384 tp
->len
= tp
->cno
+ tp
->insert
+ tp
->owrite
;
1389 * 1: If we don't need to know where the cursor really is and we're
1390 * replaying text, keep going.
1392 if (margin
== 0 && LF_ISSET(TXT_REPLAY
))
1396 * 2: Reset the line. Don't bother unless we're about to wait on
1397 * a character or we need to know where the cursor really is.
1398 * We have to do this before showing matching characters so the
1399 * user can see what they're matching.
1401 if ((margin
!= 0 || !KEYS_WAITING(sp
)) &&
1402 vs_change(sp
, tp
->lno
, LINE_RESET
))
1406 * 3: If there aren't keys waiting, display the matching character.
1407 * We have to do this before resolving any messages, otherwise
1408 * the error message from a missing match won't appear correctly.
1411 if (!KEYS_WAITING(sp
) && txt_showmatch(sp
, tp
))
1417 * 4: If there have been messages and we're not editing on the colon
1418 * command line or doing file name completion, resolve them.
1420 if ((vip
->totalcount
!= 0 || F_ISSET(gp
, G_BELLSCHED
)) &&
1421 !F_ISSET(sp
, SC_TINPUT_INFO
) && !filec_redraw
&&
1422 vs_resolve(sp
, NULL
, 0))
1426 * 5: Refresh the screen if we're about to wait on a character or we
1427 * need to know where the cursor really is.
1429 if (margin
!= 0 || !KEYS_WAITING(sp
)) {
1430 UPDATE_POSITION(sp
, tp
);
1431 if (vs_refresh(sp
, margin
!= 0))
1435 /* 6: Proceed with the incremental search. */
1436 if (FL_ISSET(is_flags
, IS_RUNNING
) && txt_isrch(sp
, vp
, tp
, &is_flags
))
1439 /* 7: Next character... */
1440 if (LF_ISSET(TXT_REPLAY
))
1444 done
: /* Leave input mode. */
1445 F_CLR(sp
, SC_TINPUT
);
1447 /* If recording for playback, save it. */
1448 if (LF_ISSET(TXT_RECORD
))
1449 vip
->rep_cnt
= rcol
;
1452 * If not working on the colon command line, set the final cursor
1455 if (!F_ISSET(sp
, SC_TINPUT_INFO
)) {
1456 vp
->m_final
.lno
= tp
->lno
;
1457 vp
->m_final
.cno
= tp
->cno
;
1463 F_CLR(sp
, SC_TINPUT
);
1464 txt_err(sp
, sp
->tiq
);
1470 * Handle abbreviations.
1473 txt_abbrev(SCR
*sp
, TEXT
*tp
, CHAR_T
*pushcp
, int isinfoline
, int *didsubp
, int *turnoffp
)
1480 /* Check to make sure we're not at the start of an append. */
1482 if (tp
->cno
== tp
->offset
)
1488 * Find the start of the "word".
1491 * We match historic practice, which, as far as I can tell, had an
1492 * off-by-one error. The way this worked was that when the inserted
1493 * text switched from a "word" character to a non-word character,
1494 * vi would check for possible abbreviations. It would then take the
1495 * type (i.e. word/non-word) of the character entered TWO characters
1496 * ago, and move backward in the text until reaching a character that
1497 * was not that type, or the beginning of the insert, the line, or
1498 * the file. For example, in the string "abc<space>", when the <space>
1499 * character triggered the abbreviation check, the type of the 'b'
1500 * character was used for moving through the string. Maybe there's a
1501 * reason for not using the first (i.e. 'c') character, but I can't
1504 * Terminate at the beginning of the insert or the character after the
1505 * offset character -- both can be tested for using tp->offset.
1507 off
= tp
->cno
- 1; /* Previous character. */
1509 len
= 1; /* One character test. */
1510 if (off
== tp
->offset
|| isblank(p
[-1]))
1512 if (inword(p
[-1])) /* Move backward to change. */
1515 if (off
== tp
->offset
|| !inword(p
[-1]))
1521 if (off
== tp
->offset
||
1522 inword(p
[-1]) || isblank(p
[-1]))
1528 * Historic vi exploded abbreviations on the command line. This has
1529 * obvious problems in that unabbreviating the string can be extremely
1530 * tricky, particularly if the string has, say, an embedded escape
1531 * character. Personally, I think it's a stunningly bad idea. Other
1532 * examples of problems this caused in historic vi are:
1535 * results in "bar" being abbreviated to "baz", which wasn't what the
1536 * user had in mind at all. Also, the commands:
1539 * resulted in an error message that "bar" wasn't mapped. Finally,
1540 * since the string was already exploded by the time the unabbreviate
1541 * command got it, all it knew was that an abbreviation had occurred.
1542 * Cleverly, it checked the replacement string for its unabbreviation
1543 * match, which meant that the commands:
1547 * unabbreviate "foo1", and the commands:
1550 * unabbreviate "foo"!
1552 * Anyway, people neglected to first ask my opinion before they wrote
1553 * macros that depend on this stuff, so, we make this work as follows.
1554 * When checking for an abbreviation on the command line, if we get a
1555 * string which is <blank> terminated and which starts at the beginning
1556 * of the line, we check to see it is the abbreviate or unabbreviate
1557 * commands. If it is, turn abbreviations off and return as if no
1558 * abbreviation was found. Note also, minor trickiness, so that if
1559 * the user erases the line and starts another command, we turn the
1560 * abbreviations back on.
1562 * This makes the layering look like a Nachos Supreme.
1564 search
: if (isinfoline
)
1565 if (off
== tp
->ai
|| off
== tp
->offset
)
1566 if (ex_is_abbrev(p
, len
)) {
1575 /* Check for any abbreviations. */
1576 if ((qp
= seq_find(sp
, NULL
, NULL
, p
, len
, SEQ_ABBREV
, NULL
)) == NULL
)
1580 * Push the abbreviation onto the tty stack. Historically, characters
1581 * resulting from an abbreviation expansion were themselves subject to
1582 * map expansions, O_SHOWMATCH matching etc. This means the expanded
1583 * characters will be re-tested for abbreviations. It's difficult to
1584 * know what historic practice in this case was, since abbreviations
1585 * were applied to :colon command lines, so entering abbreviations that
1586 * looped was tricky, although possible. In addition, obvious loops
1587 * didn't work as expected. (The command ':ab a b|ab b c|ab c a' will
1588 * silently only implement and/or display the last abbreviation.)
1590 * This implementation doesn't recover well from such abbreviations.
1591 * The main input loop counts abbreviated characters, and, when it
1592 * reaches a limit, discards any abbreviated characters on the queue.
1593 * It's difficult to back up to the original position, as the replay
1594 * queue would have to be adjusted, and the line state when an initial
1595 * abbreviated character was received would have to be saved.
1598 if (v_event_push(sp
, NULL
, &ch
, 1, CH_ABBREVIATED
))
1600 if (v_event_push(sp
, NULL
, qp
->output
, qp
->olen
, CH_ABBREVIATED
))
1604 * If the size of the abbreviation is larger than or equal to the size
1605 * of the original text, move to the start of the replaced characters,
1606 * and add their length to the overwrite count.
1608 * If the abbreviation is smaller than the original text, we have to
1609 * delete the additional overwrite characters and copy down any insert
1613 if (qp
->olen
>= len
)
1617 MEMMOVE(tp
->lb
+ tp
->cno
+ qp
->olen
,
1618 tp
->lb
+ tp
->cno
+ tp
->owrite
+ len
, tp
->insert
);
1619 tp
->owrite
+= qp
->olen
;
1620 tp
->len
-= len
- qp
->olen
;
1624 * We return the length of the abbreviated characters. This is so
1625 * the calling routine can replace the replay characters with the
1626 * abbreviation. This means that subsequent '.' commands will produce
1627 * the same text, regardless of intervening :[un]abbreviate commands.
1628 * This is historic practice.
1636 * Handle the unmap command.
1639 txt_unmap(SCR
*sp
, TEXT
*tp
, u_int32_t
*ec_flagsp
)
1644 /* Find the beginning of this "word". */
1645 for (off
= tp
->cno
- 1, p
= tp
->lb
+ off
, len
= 0;; --p
, --off
) {
1651 if (off
== tp
->ai
|| off
== tp
->offset
)
1657 * Historic vi exploded input mappings on the command line. See the
1658 * txt_abbrev() routine for an explanation of the problems inherent
1661 * We make this work as follows. If we get a string which is <blank>
1662 * terminated and which starts at the beginning of the line, we check
1663 * to see it is the unmap command. If it is, we return that the input
1664 * mapping should be turned off. Note also, minor trickiness, so that
1665 * if the user erases the line and starts another command, we go ahead
1666 * an turn mapping back on.
1668 if ((off
== tp
->ai
|| off
== tp
->offset
) && ex_is_unmap(p
, len
))
1669 FL_CLR(*ec_flagsp
, EC_MAPINPUT
);
1671 FL_SET(*ec_flagsp
, EC_MAPINPUT
);
1676 * When a line is resolved by <esc>, review autoindent characters.
1679 txt_ai_resolve(SCR
*sp
, TEXT
*tp
, int *changedp
)
1683 size_t cno
, len
, new, old
, scno
, spaces
, tab_after_sp
, tabs
;
1689 * If the line is empty, has an offset, or no autoindent
1690 * characters, we're done.
1692 if (!tp
->len
|| tp
->offset
|| !tp
->ai
)
1696 * If the length is less than or equal to the autoindent
1697 * characters, delete them.
1699 if (tp
->len
<= tp
->ai
) {
1700 tp
->ai
= tp
->cno
= tp
->len
= 0;
1705 * The autoindent characters plus any leading <blank> characters
1706 * in the line are resolved into the minimum number of characters.
1707 * Historic practice.
1709 ts
= O_VAL(sp
, O_TABSTOP
);
1711 /* Figure out the last <blank> screen column. */
1712 for (p
= tp
->lb
, scno
= 0, len
= tp
->len
,
1713 spaces
= tab_after_sp
= 0; len
-- && isblank(*p
); ++p
)
1717 scno
+= COL_OFF(scno
, ts
);
1724 * If there are no spaces, or no tabs after spaces and less than
1725 * ts spaces, it's already minimal.
1727 if (!spaces
|| (!tab_after_sp
&& spaces
< ts
))
1730 /* Count up spaces/tabs needed to get to the target. */
1731 for (cno
= 0, tabs
= 0; cno
+ COL_OFF(cno
, ts
) <= scno
; ++tabs
)
1732 cno
+= COL_OFF(cno
, ts
);
1733 spaces
= scno
- cno
;
1736 * Figure out how many characters we're dropping -- if we're not
1737 * dropping any, it's already minimal, we're done.
1740 new = spaces
+ tabs
;
1744 /* Shift the rest of the characters down, adjust the counts. */
1746 MEMMOVE(p
- del
, p
, tp
->len
- old
);
1750 /* Fill in space/tab characters. */
1751 for (p
= tp
->lb
; tabs
--;)
1760 * Handle autoindent. If aitp isn't NULL, use it, otherwise,
1761 * retrieve the line.
1763 * PUBLIC: int v_txt_auto(SCR *, recno_t, TEXT *, size_t, TEXT *);
1766 v_txt_auto(SCR
*sp
, recno_t lno
, TEXT
*aitp
, size_t len
, TEXT
*tp
)
1773 * If the ex append command is executed with an address of 0,
1774 * it's possible to get here with a line number of 0. Return
1781 if (db_get(sp
, lno
, DBG_FATAL
, &t
, &len
))
1786 /* Count whitespace characters. */
1787 for (p
= t
; len
> 0; ++p
, --len
)
1791 /* Set count, check for no indentation. */
1792 if ((nlen
= (p
- t
)) == 0)
1795 /* Make sure the buffer's big enough. */
1796 BINC_RETW(sp
, tp
->lb
, tp
->lb_len
, tp
->len
+ nlen
);
1798 /* Copy the buffer's current contents up. */
1800 MEMMOVE(tp
->lb
+ nlen
, tp
->lb
, tp
->len
);
1803 /* Copy the indentation into the new buffer. */
1804 MEMMOVE(tp
->lb
, t
, nlen
);
1806 /* Set the autoindent count. */
1813 * Back up to the previously edited line.
1816 txt_backup(SCR
*sp
, TEXTH
*tiqh
, TEXT
*tp
, u_int32_t
*flagsp
)
1821 /* Get a handle on the previous TEXT structure. */
1822 if ((ntp
= TAILQ_PREV(tp
, _texth
, q
)) == NULL
) {
1823 if (!FL_ISSET(*flagsp
, TXT_REPLAY
))
1825 "193|Already at the beginning of the insert");
1830 ntp
->len
= ntp
->sv_len
;
1832 /* Handle appending to the line. */
1834 if (ntp
->owrite
== 0 && ntp
->insert
== 0) {
1835 ntp
->lb
[ntp
->len
] = CH_CURSOR
;
1838 FL_SET(*flagsp
, TXT_APPENDEOL
);
1840 FL_CLR(*flagsp
, TXT_APPENDEOL
);
1842 /* Release the current TEXT. */
1843 TAILQ_REMOVE(tiqh
, tp
, q
);
1846 /* Update the old line on the screen. */
1847 if (vs_change(sp
, ntp
->lno
+ 1, LINE_DELETE
))
1850 /* Return the new/current TEXT. */
1855 * Text indentation is truly strange. ^T and ^D do movements to the next or
1856 * previous shiftwidth value, i.e. for a 1-based numbering, with shiftwidth=3,
1857 * ^T moves a cursor on the 7th, 8th or 9th column to the 10th column, and ^D
1861 * The ^T and ^D characters in historical vi had special meaning only when they
1862 * were the first characters entered after entering text input mode. As normal
1863 * erase characters couldn't erase autoindent characters (^T in this case), it
1864 * meant that inserting text into previously existing text was strange -- ^T
1865 * only worked if it was the first keystroke(s), and then could only be erased
1866 * using ^D. This implementation treats ^T specially anywhere it occurs in the
1867 * input, and permits the standard erase characters to erase the characters it
1871 * A fun test is to try:
1873 * i<CR>^Tx<CR>^Tx<CR>^Tx<CR>^Dx<CR>^Dx<CR>^Dx<esc>
1874 * Historic vi loses some of the '$' marks on the line ends, but otherwise gets
1878 * Technically, txt_dent should be part of the screen interface, as it requires
1879 * knowledge of character sizes, including <space>s, on the screen. It's here
1880 * because it's a complicated little beast, and I didn't want to shove it down
1881 * into the screen. It's probable that KEY_COL will call into the screen once
1882 * there are screens with different character representations.
1885 * Handle ^T indents, ^D outdents.
1887 * If anything changes here, check the ex version to see if it needs similar
1891 txt_dent(SCR
*sp
, TEXT
*tp
, int isindent
)
1895 size_t cno
, current
, spaces
, target
, tabs
;
1898 ts
= O_VAL(sp
, O_TABSTOP
);
1899 sw
= O_VAL(sp
, O_SHIFTWIDTH
);
1902 * Since we don't know what precedes the character(s) being inserted
1903 * (or deleted), the preceding whitespace characters must be resolved.
1904 * An example is a <tab>, which doesn't need a full shiftwidth number
1905 * of columns because it's preceded by <space>s. This is easy to get
1906 * if the user sets shiftwidth to a value less than tabstop (or worse,
1907 * something for which tabstop isn't a multiple) and then uses ^T to
1908 * indent, and ^D to outdent.
1910 * Figure out the current and target screen columns. In the historic
1911 * vi, the autoindent column was NOT determined using display widths
1912 * of characters as was the wrapmargin column. For that reason, we
1913 * can't use the vs_column() function, but have to calculate it here.
1914 * This is slow, but it's normally only on the first few characters of
1917 for (current
= cno
= 0; cno
< tp
->cno
; ++cno
)
1918 current
+= tp
->lb
[cno
] == '\t' ?
1919 COL_OFF(current
, ts
) : KEY_COL(sp
, tp
->lb
[cno
]);
1923 target
+= COL_OFF(target
, sw
);
1926 target
-= target
% sw
;
1930 * The AI characters will be turned into overwrite characters if the
1931 * cursor immediately follows them. We test both the cursor position
1932 * and the indent flag because there's no single test. (^T can only
1933 * be detected by the cursor position, and while we know that the test
1934 * is always true for ^D, the cursor can be in more than one place, as
1935 * "0^D" and "^D" are different.)
1937 ai_reset
= !isindent
|| tp
->cno
== tp
->ai
+ tp
->offset
;
1940 * Back up over any previous <blank> characters, changing them into
1941 * overwrite characters (including any ai characters). Then figure
1942 * out the current screen column.
1944 for (; tp
->cno
> tp
->offset
&&
1945 (tp
->lb
[tp
->cno
- 1] == ' ' || tp
->lb
[tp
->cno
- 1] == '\t');
1946 --tp
->cno
, ++tp
->owrite
);
1947 for (current
= cno
= 0; cno
< tp
->cno
; ++cno
)
1948 current
+= tp
->lb
[cno
] == '\t' ?
1949 COL_OFF(current
, ts
) : KEY_COL(sp
, tp
->lb
[cno
]);
1952 * If we didn't move up to or past the target, it's because there
1953 * weren't enough characters to delete, e.g. the first character
1954 * of the line was a tp->offset character, and the user entered
1955 * ^D to move to the beginning of a line. An example of this is:
1957 * :set ai sw=4<cr>i<space>a<esc>i^T^D
1959 * Otherwise, count up the total spaces/tabs needed to get from the
1960 * beginning of the line (or the last non-<blank> character) to the
1963 if (current
>= target
)
1967 tabs
= 0; cno
+ COL_OFF(cno
, ts
) <= target
; ++tabs
)
1968 cno
+= COL_OFF(cno
, ts
);
1969 spaces
= target
- cno
;
1972 /* If we overwrote ai characters, reset the ai count. */
1974 tp
->ai
= tabs
+ spaces
;
1977 * Call txt_insch() to insert each character, so that we get the
1978 * correct effect when we add a <tab> to replace N <spaces>.
1980 for (ch
= '\t'; tabs
> 0; --tabs
)
1981 (void)txt_insch(sp
, tp
, &ch
, 0);
1982 for (ch
= ' '; spaces
> 0; --spaces
)
1983 (void)txt_insch(sp
, tp
, &ch
, 0);
1989 * File name and ex command completion.
1992 txt_fc(SCR
*sp
, TEXT
*tp
, int *redrawp
)
1997 size_t indx
, len
, nlen
, off
;
2000 char *np
, *epd
= NULL
;
2005 ex_cinit(sp
, &cmd
, 0, 0, OOBLNO
, OOBLNO
, 0);
2008 * Find the beginning of this "word" -- if we're at the beginning
2009 * of the line, it's a special case.
2018 off
= MAX(tp
->ai
, tp
->offset
), ap
= tp
->lb
+ off
, p
= ap
;
2019 off
< tp
->cno
; ++off
, ++ap
) {
2020 if (IS_ESCAPE(sp
, &cmd
, *ap
)) {
2021 if (++off
== tp
->cno
)
2025 } else if (cmdskip(*ap
)) {
2036 * If we are at the first word, do ex command completion instead of
2037 * file name completion.
2040 (void)argv_flt_ex(sp
, &cmd
, p
, len
);
2042 if ((bp
= argv_uesc(sp
, &cmd
, p
, len
)) == NULL
)
2044 if (argv_flt_path(sp
, &cmd
, bp
, STRLEN(bp
))) {
2045 FREE_SPACEW(sp
, bp
, 0);
2048 FREE_SPACEW(sp
, bp
, 0);
2054 case 0: /* No matches. */
2055 (void)sp
->gp
->scr_bell(sp
);
2057 case 1: /* One match. */
2058 /* Always overwrite the old text. */
2059 nlen
= STRLEN(cmd
.argv
[0]->bp
);
2061 default: /* Multiple matches. */
2063 if (txt_fc_col(sp
, argc
, argv
))
2066 /* Find the length of the shortest match. */
2067 for (nlen
= cmd
.argv
[0]->len
; --argc
> 0;) {
2068 if (cmd
.argv
[argc
]->len
< nlen
)
2069 nlen
= cmd
.argv
[argc
]->len
;
2070 for (indx
= 0; indx
< nlen
&&
2071 cmd
.argv
[argc
]->bp
[indx
] == cmd
.argv
[0]->bp
[indx
];
2078 /* Escape the matched part of the path. */
2080 bp
= cmd
.argv
[0]->bp
;
2082 if ((bp
= argv_esc(sp
, &cmd
, cmd
.argv
[0]->bp
, nlen
)) == NULL
)
2087 /* Overwrite the expanded text first. */
2088 for (t
= bp
; len
> 0 && nlen
> 0; --len
, --nlen
)
2091 /* If lost text, make the remaining old text overwrite characters. */
2097 /* Overwrite any overwrite characters next. */
2098 for (; nlen
> 0 && tp
->owrite
> 0; --nlen
, --tp
->owrite
, ++tp
->cno
)
2101 /* Shift remaining text up, and move the cursor to the end. */
2104 BINC_RETW(sp
, tp
->lb
, tp
->lb_len
, tp
->len
+ nlen
);
2110 if (tp
->insert
!= 0)
2111 (void)MEMMOVE(p
+ nlen
, p
, tp
->insert
);
2117 FREE_SPACEW(sp
, bp
, 0);
2119 /* If not a single match of path, we've done. */
2120 if (argc
!= 1 || fstwd
)
2123 /* If a single match and it's a directory, append a '/'. */
2124 INT2CHAR(sp
, cmd
.argv
[0]->bp
, cmd
.argv
[0]->len
+ 1, np
, nplen
);
2125 if ((epd
= expanduser(np
)) != NULL
)
2127 if (!stat(np
, &sb
) && S_ISDIR(sb
.st_mode
)) {
2128 if (tp
->owrite
== 0) {
2130 BINC_RETW(sp
, tp
->lb
, tp
->lb_len
, tp
->len
+ 1);
2132 if (tp
->insert
!= 0)
2133 (void)MEMMOVE(p
+ 1, p
, tp
->insert
);
2147 * Display file names for file name completion.
2150 txt_fc_col(SCR
*sp
, int argc
, ARGS
**argv
)
2155 size_t base
, cnt
, col
, colwidth
, numrows
, numcols
, prefix
, row
;
2162 /* Trim any directory prefix common to all of the files. */
2163 INT2CHAR(sp
, argv
[0]->bp
, argv
[0]->len
+ 1, np
, nlen
);
2164 if ((pp
= strrchr(np
, '/')) == NULL
)
2167 prefix
= (pp
- np
) + 1;
2168 for (ac
= argc
- 1, av
= argv
+ 1; ac
> 0; --ac
, ++av
)
2169 if (av
[0]->len
< prefix
||
2170 MEMCMP(av
[0]->bp
, argv
[0]->bp
,
2178 * Figure out the column width for the longest name. Output is done on
2179 * 6 character "tab" boundaries for no particular reason. (Since we
2180 * don't output tab characters, we ignore the terminal's tab settings.)
2181 * Ignore the user's tab setting because we have no idea how reasonable
2184 for (ac
= argc
, av
= argv
, colwidth
= 0; ac
> 0; --ac
, ++av
) {
2185 for (col
= 0, p
= av
[0]->bp
+ prefix
; *p
!= '\0'; ++p
)
2186 col
+= KEY_COL(sp
, *p
);
2190 colwidth
+= COL_OFF(colwidth
, 6);
2193 * Writing to the bottom line of the screen is always turned off when
2194 * SC_TINPUT_INFO is set. Turn it back on, we know what we're doing.
2196 if (F_ISSET(sp
, SC_TINPUT_INFO
)) {
2198 F_CLR(sp
, SC_TINPUT_INFO
);
2203 if (F_ISSET(gp, G_INTERRUPTED)) \
2206 /* If the largest file name is too large, just print them. */
2207 if (colwidth
>= sp
->cols
) {
2208 for (ac
= argc
, av
= argv
; ac
> 0; --ac
, ++av
) {
2209 INT2CHAR(sp
, av
[0]->bp
+prefix
, av
[0]->len
+1-prefix
,
2211 pp
= msg_print(sp
, np
, &nf
);
2212 (void)ex_printf(sp
, "%s\n", pp
);
2214 FREE_SPACE(sp
, pp
, 0);
2215 if (F_ISSET(gp
, G_INTERRUPTED
))
2220 /* Figure out the number of columns. */
2221 numcols
= (sp
->cols
- 1) / colwidth
;
2222 if (argc
> numcols
) {
2223 numrows
= argc
/ numcols
;
2229 /* Display the files in sorted order. */
2230 for (row
= 0; row
< numrows
; ++row
) {
2231 for (base
= row
, col
= 0; col
< numcols
; ++col
) {
2232 INT2CHAR(sp
, argv
[base
]->bp
+prefix
,
2233 argv
[base
]->len
+1-prefix
, np
, nlen
);
2234 pp
= msg_print(sp
, np
, &nf
);
2235 cnt
= ex_printf(sp
, "%s", pp
);
2237 FREE_SPACE(sp
, pp
, 0);
2239 if ((base
+= numrows
) >= argc
)
2242 "%*s", (int)(colwidth
- cnt
), "");
2245 (void)ex_puts(sp
, "\n");
2248 (void)ex_puts(sp
, "\n");
2251 (void)ex_fflush(sp
);
2254 intr
: F_CLR(gp
, G_INTERRUPTED
);
2257 F_SET(sp
, SC_TINPUT_INFO
);
2264 * Set the end mark on the line.
2267 txt_emark(SCR
*sp
, TEXT
*tp
, size_t cno
)
2271 size_t chlen
, nlen
, olen
;
2277 * The end mark may not be the same size as the current character.
2278 * Don't let the line shift.
2280 nlen
= KEY_COL(sp
, ch
);
2281 if (tp
->lb
[cno
] == '\t')
2282 (void)vs_columns(sp
, tp
->lb
, tp
->lno
, &cno
, &olen
);
2284 olen
= KEY_COL(sp
, tp
->lb
[cno
]);
2287 * If the line got longer, well, it's weird, but it's easy. If
2288 * it's the same length, it's easy. If it got shorter, we have
2292 BINC_RETW(sp
, tp
->lb
, tp
->lb_len
, tp
->len
+ olen
);
2293 chlen
= olen
- nlen
;
2294 if (tp
->insert
!= 0)
2295 MEMMOVE(tp
->lb
+ cno
+ 1 + chlen
,
2296 tp
->lb
+ cno
+ 1, tp
->insert
);
2299 tp
->owrite
+= chlen
;
2301 if (tp
->lb
[cno
] == '\t' ||
2302 KEY_NEEDSWIDE(sp
, tp
->lb
[cno
]))
2303 for (cno
+= chlen
; chlen
--;)
2306 for (kp
= (u_char
*)
2307 KEY_NAME(sp
, tp
->lb
[cno
]),
2308 cno
+= chlen
; chlen
--;)
2312 return (vs_change(sp
, tp
->lno
, LINE_RESET
));
2317 * Handle an error during input processing.
2320 txt_err(SCR
*sp
, TEXTH
*tiqh
)
2325 * The problem with input processing is that the cursor is at an
2326 * indeterminate position since some input may have been lost due
2327 * to a malloc error. So, try to go back to the place from which
2328 * the cursor started, knowing that it may no longer be available.
2330 * We depend on at least one line number being set in the text
2333 for (lno
= TAILQ_FIRST(tiqh
)->lno
;
2334 !db_exist(sp
, lno
) && lno
> 0; --lno
);
2336 sp
->lno
= lno
== 0 ? 1 : lno
;
2339 /* Redraw the screen, just in case. */
2340 F_SET(sp
, SC_SCR_REDRAW
);
2345 * Let the user insert any character value they want.
2348 * This is an extension. The pattern "^X[0-9a-fA-F]*" is a way
2349 * for the user to specify a character value which their keyboard
2350 * may not be able to enter.
2353 txt_hex(SCR
*sp
, TEXT
*tp
)
2361 * Null-terminate the string. Since nul isn't a legal hex value,
2362 * this should be okay, and lets us use a local routine, which
2363 * presumably understands the character set, to convert the value.
2365 savec
= tp
->lb
[tp
->cno
];
2366 tp
->lb
[tp
->cno
] = 0;
2368 /* Find the previous CH_HEX character. */
2369 for (off
= tp
->cno
- 1, p
= tp
->lb
+ off
, len
= 0;; --p
, --off
, ++len
) {
2374 /* Not on this line? Shouldn't happen. */
2375 if (off
== tp
->ai
|| off
== tp
->offset
)
2379 /* If length of 0, then it wasn't a hex value. */
2383 /* Get the value. */
2385 value
= STRTOL(wp
, NULL
, 16);
2386 if (errno
|| value
> UCHAR_MAX
) {
2387 nothex
: tp
->lb
[tp
->cno
] = savec
;
2391 /* Restore the original character. */
2392 tp
->lb
[tp
->cno
] = savec
;
2394 /* Adjust the bookkeeping. */
2397 tp
->lb
[tp
->cno
- 1] = value
;
2399 /* Copy down any overwrite characters. */
2401 MEMMOVE(tp
->lb
+ tp
->cno
, tp
->lb
+ tp
->cno
+ len
,
2404 /* Copy down any insert characters. */
2406 MEMMOVE(tp
->lb
+ tp
->cno
+ tp
->owrite
,
2407 tp
->lb
+ tp
->cno
+ tp
->owrite
+ len
,
2417 * Historic vi did a special screen optimization for tab characters. As an
2418 * example, for the keystrokes "iabcd<esc>0C<tab>", the tab overwrote the
2419 * rest of the string when it was displayed.
2421 * Because early versions of this implementation redisplayed the entire line
2422 * on each keystroke, the "bcd" was pushed to the right as it ignored that
2423 * the user had "promised" to change the rest of the characters. However,
2424 * the historic vi implementation had an even worse bug: given the keystrokes
2425 * "iabcd<esc>0R<tab><esc>", the "bcd" disappears, and magically reappears
2426 * on the second <esc> key.
2428 * POSIX 1003.2 requires (will require) that this be fixed, specifying that
2429 * vi overwrite characters the user has committed to changing, on the basis
2430 * of the screen space they require, but that it not overwrite other characters.
2433 txt_insch(SCR
*sp
, TEXT
*tp
, CHAR_T
*chp
, u_int flags
)
2437 size_t chlen
, cno
, copydown
, olen
, nlen
;
2441 * The 'R' command does one-for-one replacement, because there's
2442 * no way to know how many characters the user intends to replace.
2444 if (LF_ISSET(TXT_REPLACE
)) {
2447 tp
->lb
[tp
->cno
++] = *chp
;
2450 } else if (tp
->owrite
) { /* Overwrite a character. */
2454 * If the old or new characters are tabs, then the length of the
2455 * display depends on the character position in the display. We
2456 * don't even try to handle this here, just ask the screen.
2459 savech
= tp
->lb
[cno
];
2461 (void)vs_columns(sp
, tp
->lb
, tp
->lno
, &cno
, &nlen
);
2462 tp
->lb
[cno
] = savech
;
2464 nlen
= KEY_COL(sp
, *chp
);
2467 * Eat overwrite characters until we run out of them or we've
2468 * handled the length of the new character. If we only eat
2469 * part of an overwrite character, break it into its component
2470 * elements and display the remaining components.
2472 for (copydown
= 0; nlen
!= 0 && tp
->owrite
!= 0;) {
2475 if (tp
->lb
[cno
] == '\t')
2476 (void)vs_columns(sp
,
2477 tp
->lb
, tp
->lno
, &cno
, &olen
);
2479 olen
= KEY_COL(sp
, tp
->lb
[cno
]);
2490 tp
->lb
, tp
->lb_len
, tp
->len
+ olen
);
2491 chlen
= olen
- nlen
;
2492 MEMMOVE(tp
->lb
+ cno
+ 1 + chlen
,
2494 tp
->owrite
+ tp
->insert
);
2497 tp
->owrite
+= chlen
;
2498 if (tp
->lb
[cno
] == '\t' ||
2499 KEY_NEEDSWIDE(sp
, tp
->lb
[cno
]))
2500 for (p
= tp
->lb
+ cno
+ 1; chlen
--;)
2503 for (kp
= (u_char
*)
2504 KEY_NAME(sp
, tp
->lb
[cno
]) + nlen
,
2505 p
= tp
->lb
+ cno
+ 1; chlen
--;)
2513 * If had to erase several characters, we adjust the total
2514 * count, and if there are any characters left, shift them
2517 if (copydown
!= 0 && (tp
->len
-= copydown
) != 0)
2518 MEMMOVE(tp
->lb
+ cno
, tp
->lb
+ cno
+ copydown
,
2519 tp
->owrite
+ tp
->insert
+ copydown
);
2521 /* If we had enough overwrite characters, we're done. */
2523 tp
->lb
[tp
->cno
++] = *chp
;
2528 /* Check to see if the character fits into the input buffer. */
2529 BINC_RETW(sp
, tp
->lb
, tp
->lb_len
, tp
->len
+ 1);
2532 if (tp
->insert
) { /* Insert a character. */
2533 if (tp
->insert
== 1)
2534 tp
->lb
[tp
->cno
+ 1] = tp
->lb
[tp
->cno
];
2536 MEMMOVE(tp
->lb
+ tp
->cno
+ 1,
2537 tp
->lb
+ tp
->cno
, tp
->owrite
+ tp
->insert
);
2539 tp
->lb
[tp
->cno
++] = *chp
;
2545 * Do an incremental search.
2548 txt_isrch(SCR
*sp
, VICMD
*vp
, TEXT
*tp
, u_int8_t
*is_flagsp
)
2554 /* If it's a one-line screen, we don't do incrementals. */
2555 if (IS_ONELINE(sp
)) {
2556 FL_CLR(*is_flagsp
, IS_RUNNING
);
2561 * If the user erases back to the beginning of the buffer, there's
2562 * nothing to search for. Reset the cursor to the starting point.
2565 vp
->m_final
= vp
->m_start
;
2570 * If it's an RE quote character, and not quoted, ignore it until
2571 * we get another character.
2573 if (tp
->lb
[tp
->cno
- 1] == '\\' &&
2574 (tp
->cno
== 2 || tp
->lb
[tp
->cno
- 2] != '\\'))
2578 * If it's a magic shell character, and not quoted, reset the cursor
2579 * to the starting point.
2581 if (IS_SHELLMETA(sp
, tp
->lb
[tp
->cno
- 1]) &&
2582 (tp
->cno
== 2 || tp
->lb
[tp
->cno
- 2] != '\\'))
2583 vp
->m_final
= vp
->m_start
;
2586 * If we see the search pattern termination character, then quit doing
2587 * an incremental search. There may be more, e.g., ":/foo/;/bar/",
2588 * and we can't handle that incrementally. Also, reset the cursor to
2589 * the original location, the ex search routines don't know anything
2590 * about incremental searches.
2592 if (tp
->lb
[0] == tp
->lb
[tp
->cno
- 1] &&
2593 (tp
->cno
== 2 || tp
->lb
[tp
->cno
- 2] != '\\')) {
2594 vp
->m_final
= vp
->m_start
;
2595 FL_CLR(*is_flagsp
, IS_RUNNING
);
2600 * Remember the input line and discard the special input map,
2601 * but don't overwrite the input line on the screen.
2604 F_SET(VIP(sp
), VIP_S_MODELINE
);
2605 F_CLR(sp
, SC_TINPUT
| SC_TINPUT_INFO
);
2606 if (txt_map_end(sp
))
2610 * Specify a starting point and search. If we find a match, move to
2611 * it and refresh the screen. If we didn't find the match, then we
2612 * beep the screen. When searching from the original cursor position,
2613 * we have to move the cursor, otherwise, we don't want to move the
2614 * cursor in case the text at the current position continues to match.
2616 if (FL_ISSET(*is_flagsp
, IS_RESTART
)) {
2617 start
= vp
->m_start
;
2620 start
= vp
->m_final
;
2621 sf
= SEARCH_INCR
| SEARCH_SET
;
2624 if (tp
->lb
[0] == '/' ?
2626 &start
, &vp
->m_final
, tp
->lb
+ 1, tp
->cno
- 1, NULL
, sf
) :
2628 &start
, &vp
->m_final
, tp
->lb
+ 1, tp
->cno
- 1, NULL
, sf
)) {
2629 sp
->lno
= vp
->m_final
.lno
;
2630 sp
->cno
= vp
->m_final
.cno
;
2631 FL_CLR(*is_flagsp
, IS_RESTART
);
2633 if (!KEYS_WAITING(sp
) && vs_refresh(sp
, 0))
2636 FL_SET(*is_flagsp
, IS_RESTART
);
2638 /* Reinstantiate the special input map. */
2639 if (txt_map_init(sp
))
2641 F_CLR(VIP(sp
), VIP_S_MODELINE
);
2642 F_SET(sp
, SC_TINPUT
| SC_TINPUT_INFO
);
2644 /* Reset the line number of the input line. */
2645 tp
->lno
= TMAP
[0].lno
;
2648 * If the colon command-line moved, i.e. the screen scrolled,
2649 * refresh the input line.
2652 * We shouldn't be calling vs_line, here -- we need dirty bits
2653 * on entries in the SMAP array.
2655 if (lno
!= TMAP
[0].lno
) {
2656 if (vs_line(sp
, &TMAP
[0], NULL
, NULL
))
2658 (void)sp
->gp
->scr_refresh(sp
, 0);
2665 * Resolve the input text chain into the file.
2668 txt_resolve(SCR
*sp
, TEXTH
*tiqh
, u_int32_t flags
)
2676 * The first line replaces a current line, and all subsequent lines
2677 * are appended into the file. Resolve autoindented characters for
2678 * each line before committing it. If the latter causes the line to
2679 * change, we have to redisplay it, otherwise the information cached
2680 * about the line will be wrong.
2683 tp
= TAILQ_FIRST(tiqh
);
2685 if (LF_ISSET(TXT_AUTOINDENT
))
2686 txt_ai_resolve(sp
, tp
, &changed
);
2689 if (db_set(sp
, tp
->lno
, tp
->lb
, tp
->len
) ||
2690 (changed
&& vs_change(sp
, tp
->lno
, LINE_RESET
)))
2693 for (lno
= tp
->lno
; (tp
= TAILQ_NEXT(tp
, q
)) != NULL
; ++lno
) {
2694 if (LF_ISSET(TXT_AUTOINDENT
))
2695 txt_ai_resolve(sp
, tp
, &changed
);
2698 if (db_append(sp
, 0, lno
, tp
->lb
, tp
->len
) ||
2699 (changed
&& vs_change(sp
, tp
->lno
, LINE_RESET
)))
2704 * Clear the input flag, the look-aside buffer is no longer valid.
2705 * Has to be done as part of text resolution, or upon return we'll
2706 * be looking at incorrect data.
2708 F_CLR(sp
, SC_TINPUT
);
2715 * Show a character match.
2718 * Historic vi tried to display matches even in the :colon command line.
2722 txt_showmatch(SCR
*sp
, TEXT
*tp
)
2727 int cnt
, endc
, startc
;
2732 * Do a refresh first, in case we haven't done one in awhile,
2733 * so the user can see what we're complaining about.
2735 UPDATE_POSITION(sp
, tp
);
2736 if (vs_refresh(sp
, 1))
2740 * We don't display the match if it's not on the screen. Find
2741 * out what the first character on the screen is.
2743 if (vs_sm_position(sp
, &m
, 0, P_TOP
))
2746 /* Initialize the getc() interface. */
2747 cs
.cs_lno
= tp
->lno
;
2748 cs
.cs_cno
= tp
->cno
- 1;
2749 if (cs_init(sp
, &cs
))
2751 startc
= STRCHR(VIP(sp
)->mcs
, endc
= cs
.cs_ch
)[-1];
2753 /* Search for the match. */
2755 if (cs_prev(sp
, &cs
))
2757 if (cs
.cs_flags
!= 0) {
2758 if (cs
.cs_flags
== CS_EOF
|| cs
.cs_flags
== CS_SOF
) {
2760 "Unmatched %s", KEY_NAME(sp
, endc
));
2765 if (cs
.cs_ch
== endc
)
2767 else if (cs
.cs_ch
== startc
&& --cnt
== 0)
2771 /* If the match is on the screen, move to it. */
2772 if (cs
.cs_lno
< m
.lno
|| (cs
.cs_lno
== m
.lno
&& cs
.cs_cno
< m
.cno
))
2774 sp
->lno
= cs
.cs_lno
;
2775 sp
->cno
= cs
.cs_cno
;
2776 if (vs_refresh(sp
, 1))
2779 /* Wait for timeout or character arrival. */
2780 return (v_event_get(sp
,
2781 NULL
, O_VAL(sp
, O_MATCHTIME
) * 100, EC_TIMEOUT
));
2786 * Handle margin wrap.
2789 txt_margin(SCR
*sp
, TEXT
*tp
, TEXT
*wmtp
, int *didbreak
, u_int32_t flags
)
2795 /* Find the nearest previous blank. */
2796 for (off
= tp
->cno
- 1, p
= tp
->lb
+ off
, len
= 0;; --off
, --p
, ++len
) {
2803 * If reach the start of the line, there's nowhere to break.
2806 * Historic vi belled each time a character was entered after
2807 * crossing the margin until a space was entered which could
2808 * be used to break the line. I don't as it tends to wake the
2811 if (off
== tp
->ai
|| off
== tp
->offset
) {
2818 * Store saved information about the rest of the line in the
2819 * wrapmargin TEXT structure.
2822 * The offset field holds the length of the current characters
2823 * that the user entered, but which are getting split to the new
2824 * line -- it's going to be used to set the cursor value when we
2825 * move to the new line.
2830 wmtp
->insert
= LF_ISSET(TXT_APPENDEOL
) ? tp
->insert
- 1 : tp
->insert
;
2831 wmtp
->owrite
= tp
->owrite
;
2833 /* Correct current bookkeeping information. */
2835 if (LF_ISSET(TXT_APPENDEOL
)) {
2836 tp
->len
-= len
+ tp
->owrite
+ (tp
->insert
- 1);
2839 tp
->len
-= len
+ tp
->owrite
+ tp
->insert
;
2846 * Delete any trailing whitespace from the current line.
2848 for (;; --p
, --off
) {
2853 if (off
== tp
->ai
|| off
== tp
->offset
)
2862 * Resolve the input line for the 'R' command.
2865 txt_Rresolve(SCR
*sp
, TEXTH
*tiqh
, TEXT
*tp
, const size_t orig_len
)
2868 size_t input_len
, retain
;
2872 * Check to make sure that the cursor hasn't moved beyond
2873 * the end of the line.
2875 if (tp
->owrite
== 0)
2879 * Calculate how many characters the user has entered,
2880 * plus the blanks erased by <carriage-return>/<newline>s.
2882 for (ttp
= TAILQ_FIRST(tiqh
), input_len
= 0;;) {
2883 input_len
+= ttp
== tp
? tp
->cno
: ttp
->len
+ ttp
->R_erase
;
2884 if ((ttp
= TAILQ_NEXT(ttp
, q
)) == NULL
)
2889 * If the user has entered less characters than the original line
2890 * was long, restore any overwriteable characters to the original
2891 * characters. These characters are entered as "insert characters",
2892 * because they're after the cursor and we don't want to lose them.
2893 * (This is okay because the R command has no insert characters.)
2894 * We set owrite to 0 so that the insert characters don't get copied
2895 * to somewhere else, which means that the line and the length have
2896 * to be adjusted here as well.
2898 * We have to retrieve the original line because the original pinned
2899 * page has long since been discarded. If it doesn't exist, that's
2900 * okay, the user just extended the file.
2902 if (input_len
< orig_len
) {
2903 retain
= MIN(tp
->owrite
, orig_len
- input_len
);
2905 TAILQ_FIRST(tiqh
)->lno
, DBG_FATAL
| DBG_NOCACHE
, &p
, NULL
))
2907 MEMCPY(tp
->lb
+ tp
->cno
, p
+ input_len
, retain
);
2908 tp
->len
-= tp
->owrite
- retain
;
2910 tp
->insert
+= retain
;
2916 * No more characters message.
2919 txt_nomorech(SCR
*sp
)
2921 msgq(sp
, M_BERR
, "194|No more characters to erase");