the script used to extract a release
[nvi.git] / vi / v_itxt.c
blob0b6a0796a641dbce4ab047b4beafecdbe052d5d2
1 /*-
2 * Copyright (c) 1992, 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_itxt.c,v 10.20 2000/07/15 20:26:36 skimo Exp $ (Berkeley) $Date: 2000/07/15 20:26:36 $";
14 #endif /* not lint */
16 #include <sys/types.h>
17 #include <sys/queue.h>
18 #include <sys/time.h>
20 #include <bitstring.h>
21 #include <ctype.h>
22 #include <errno.h>
23 #include <limits.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
28 #include "../common/common.h"
29 #include "vi.h"
32 * !!!
33 * Repeated input in the historic vi is mostly wrong and this isn't very
34 * backward compatible. For example, if the user entered "3Aab\ncd" in
35 * the historic vi, the "ab" was repeated 3 times, and the "\ncd" was then
36 * appended to the result. There was also a hack which I don't remember
37 * right now, where "3o" would open 3 lines and then let the user fill them
38 * in, to make screen movements on 300 baud modems more tolerable. I don't
39 * think it's going to be missed.
41 * !!!
42 * There's a problem with the way that we do logging for change commands with
43 * implied motions (e.g. A, I, O, cc, etc.). Since the main vi loop logs the
44 * starting cursor position before the change command "moves" the cursor, the
45 * cursor position to which we return on undo will be where the user entered
46 * the change command, not the start of the change. Several of the following
47 * routines re-log the cursor to make this work correctly. Historic vi tried
48 * to do the same thing, and mostly got it right. (The only spectacular way
49 * it fails is if the user entered 'o' from anywhere but the last character of
50 * the line, the undo returned the cursor to the start of the line. If the
51 * user was on the last character of the line, the cursor returned to that
52 * position.) We also check for mapped keys waiting, i.e. if we're in the
53 * middle of a map, don't bother logging the cursor.
55 #define LOG_CORRECT { \
56 if (!MAPPED_KEYS_WAITING(sp)) \
57 (void)log_cursor(sp); \
60 static u_int32_t set_txt_std __P((SCR *, VICMD *, u_int32_t));
63 * v_iA -- [count]A
64 * Append text to the end of the line.
66 * PUBLIC: int v_iA __P((SCR *, VICMD *));
68 int
69 v_iA(sp, vp)
70 SCR *sp;
71 VICMD *vp;
73 size_t len;
75 if (!db_get(sp, vp->m_start.lno, 0, NULL, &len))
76 sp->cno = len == 0 ? 0 : len - 1;
78 LOG_CORRECT;
80 return (v_ia(sp, vp));
84 * v_ia -- [count]a
85 * [count]A
86 * Append text to the cursor position.
88 * PUBLIC: int v_ia __P((SCR *, VICMD *));
90 int
91 v_ia(sp, vp)
92 SCR *sp;
93 VICMD *vp;
95 size_t len;
96 u_int32_t flags;
97 int isempty;
98 CHAR_T *p;
100 flags = set_txt_std(sp, vp, 0);
101 sp->showmode = SM_APPEND;
102 sp->lno = vp->m_start.lno;
104 /* Move the cursor one column to the right and repaint the screen. */
105 if (db_eget(sp, sp->lno, &p, &len, &isempty)) {
106 if (!isempty)
107 return (1);
108 len = 0;
109 LF_SET(TXT_APPENDEOL);
110 } else if (len) {
111 if (len == sp->cno + 1) {
112 sp->cno = len;
113 LF_SET(TXT_APPENDEOL);
114 } else
115 ++sp->cno;
116 } else
117 LF_SET(TXT_APPENDEOL);
119 return (v_txt(sp, vp, NULL, p, len,
120 0, OOBLNO, F_ISSET(vp, VC_C1SET) ? vp->count : 1, flags));
124 * v_iI -- [count]I
125 * Insert text at the first nonblank.
127 * PUBLIC: int v_iI __P((SCR *, VICMD *));
130 v_iI(sp, vp)
131 SCR *sp;
132 VICMD *vp;
134 sp->cno = 0;
135 if (nonblank(sp, vp->m_start.lno, &sp->cno))
136 return (1);
138 LOG_CORRECT;
140 return (v_ii(sp, vp));
144 * v_ii -- [count]i
145 * [count]I
146 * Insert text at the cursor position.
148 * PUBLIC: int v_ii __P((SCR *, VICMD *));
151 v_ii(sp, vp)
152 SCR *sp;
153 VICMD *vp;
155 size_t len;
156 u_int32_t flags;
157 int isempty;
158 CHAR_T *p;
160 flags = set_txt_std(sp, vp, 0);
161 sp->showmode = SM_INSERT;
162 sp->lno = vp->m_start.lno;
164 if (db_eget(sp, sp->lno, &p, &len, &isempty)) {
165 if (!isempty)
166 return (1);
167 len = 0;
170 if (len == 0)
171 LF_SET(TXT_APPENDEOL);
172 return (v_txt(sp, vp, NULL, p, len,
173 0, OOBLNO, F_ISSET(vp, VC_C1SET) ? vp->count : 1, flags));
176 enum which { o_cmd, O_cmd };
177 static int io __P((SCR *, VICMD *, enum which));
180 * v_iO -- [count]O
181 * Insert text above this line.
183 * PUBLIC: int v_iO __P((SCR *, VICMD *));
186 v_iO(sp, vp)
187 SCR *sp;
188 VICMD *vp;
190 return (io(sp, vp, O_cmd));
194 * v_io -- [count]o
195 * Insert text after this line.
197 * PUBLIC: int v_io __P((SCR *, VICMD *));
200 v_io(sp, vp)
201 SCR *sp;
202 VICMD *vp;
204 return (io(sp, vp, o_cmd));
207 static int
208 io(sp, vp, cmd)
209 SCR *sp;
210 VICMD *vp;
211 enum which cmd;
213 db_recno_t ai_line, lno;
214 size_t len;
215 u_int32_t flags;
216 CHAR_T *p;
218 flags = set_txt_std(sp, vp, TXT_ADDNEWLINE | TXT_APPENDEOL);
219 sp->showmode = SM_INSERT;
221 if (sp->lno == 1) {
222 if (db_last(sp, &lno))
223 return (1);
224 if (lno != 0)
225 goto insert;
226 p = NULL;
227 len = 0;
228 ai_line = OOBLNO;
229 } else {
230 static CHAR_T nul = 0;
231 insert: p = &nul;
232 sp->cno = 0;
233 LOG_CORRECT;
235 if (cmd == O_cmd) {
236 if (db_insert(sp, sp->lno, p, 0))
237 return (1);
238 if (db_get(sp, sp->lno, DBG_FATAL, &p, &len))
239 return (1);
240 ai_line = sp->lno + 1;
241 } else {
242 if (db_append(sp, 1, sp->lno, p, 0))
243 return (1);
244 if (db_get(sp, ++sp->lno, DBG_FATAL, &p, &len))
245 return (1);
246 ai_line = sp->lno - 1;
249 return (v_txt(sp, vp, NULL, p, len,
250 0, ai_line, F_ISSET(vp, VC_C1SET) ? vp->count : 1, flags));
254 * v_change -- [buffer][count]c[count]motion
255 * [buffer][count]C
256 * [buffer][count]S
257 * Change command.
259 * PUBLIC: int v_change __P((SCR *, VICMD *));
262 v_change(sp, vp)
263 SCR *sp;
264 VICMD *vp;
266 size_t blen, len;
267 u_int32_t flags;
268 int isempty, lmode, rval;
269 CHAR_T *bp;
270 CHAR_T *p;
273 * 'c' can be combined with motion commands that set the resulting
274 * cursor position, i.e. "cG". Clear the VM_RCM flags and make the
275 * resulting cursor position stick, inserting text has its own rules
276 * for cursor positioning.
278 F_CLR(vp, VM_RCM_MASK);
279 F_SET(vp, VM_RCM_SET);
282 * Find out if the file is empty, it's easier to handle it as a
283 * special case.
285 if (vp->m_start.lno == vp->m_stop.lno &&
286 db_eget(sp, vp->m_start.lno, &p, &len, &isempty)) {
287 if (!isempty)
288 return (1);
289 return (v_ia(sp, vp));
292 flags = set_txt_std(sp, vp, 0);
293 sp->showmode = SM_CHANGE;
296 * Move the cursor to the start of the change. Note, if autoindent
297 * is turned on, the cc command in line mode changes from the first
298 * *non-blank* character of the line, not the first character. And,
299 * to make it just a bit more exciting, the initial space is handled
300 * as auto-indent characters.
302 lmode = F_ISSET(vp, VM_LMODE) ? CUT_LINEMODE : 0;
303 if (lmode) {
304 vp->m_start.cno = 0;
305 if (O_ISSET(sp, O_AUTOINDENT)) {
306 if (nonblank(sp, vp->m_start.lno, &vp->m_start.cno))
307 return (1);
308 LF_SET(TXT_AICHARS);
311 sp->lno = vp->m_start.lno;
312 sp->cno = vp->m_start.cno;
314 LOG_CORRECT;
317 * If not in line mode and changing within a single line, copy the
318 * text and overwrite it.
320 if (!lmode && vp->m_start.lno == vp->m_stop.lno) {
322 * !!!
323 * Historic practice, c did not cut into the numeric buffers,
324 * only the unnamed one.
326 if (cut(sp,
327 F_ISSET(vp, VC_BUFFER) ? &vp->buffer : NULL,
328 &vp->m_start, &vp->m_stop, lmode))
329 return (1);
330 if (len == 0)
331 LF_SET(TXT_APPENDEOL);
332 LF_SET(TXT_EMARK | TXT_OVERWRITE);
333 return (v_txt(sp, vp, &vp->m_stop, p, len,
334 0, OOBLNO, F_ISSET(vp, VC_C1SET) ? vp->count : 1, flags));
338 * It's trickier if in line mode or changing over multiple lines. If
339 * we're in line mode delete all of the lines and insert a replacement
340 * line which the user edits. If there was leading whitespace in the
341 * first line being changed, we copy it and use it as the replacement.
342 * If we're not in line mode, we delete the text and start inserting.
344 * !!!
345 * Copy the text. Historic practice, c did not cut into the numeric
346 * buffers, only the unnamed one.
348 if (cut(sp,
349 F_ISSET(vp, VC_BUFFER) ? &vp->buffer : NULL,
350 &vp->m_start, &vp->m_stop, lmode))
351 return (1);
353 /* If replacing entire lines and there's leading text. */
354 if (lmode && vp->m_start.cno) {
356 * Get a copy of the first line changed, and copy out the
357 * leading text.
359 if (db_get(sp, vp->m_start.lno, DBG_FATAL, &p, &len))
360 return (1);
361 GET_SPACE_RETW(sp, bp, blen, vp->m_start.cno);
362 MEMMOVEW(bp, p, vp->m_start.cno);
363 } else
364 bp = NULL;
366 /* Delete the text. */
367 if (del(sp, &vp->m_start, &vp->m_stop, lmode))
368 return (1);
370 /* If replacing entire lines, insert a replacement line. */
371 if (lmode) {
372 if (db_insert(sp, vp->m_start.lno, bp, vp->m_start.cno))
373 return (1);
374 sp->lno = vp->m_start.lno;
375 len = sp->cno = vp->m_start.cno;
378 /* Get the line we're editing. */
379 if (db_eget(sp, vp->m_start.lno, &p, &len, &isempty)) {
380 if (!isempty)
381 return (1);
382 len = 0;
385 /* Check to see if we're appending to the line. */
386 if (vp->m_start.cno >= len)
387 LF_SET(TXT_APPENDEOL);
389 rval = v_txt(sp, vp, NULL, p, len,
390 0, OOBLNO, F_ISSET(vp, VC_C1SET) ? vp->count : 1, flags);
392 if (bp != NULL)
393 FREE_SPACEW(sp, bp, blen);
394 return (rval);
398 * v_Replace -- [count]R
399 * Overwrite multiple characters.
401 * PUBLIC: int v_Replace __P((SCR *, VICMD *));
404 v_Replace(sp, vp)
405 SCR *sp;
406 VICMD *vp;
408 size_t len;
409 u_int32_t flags;
410 int isempty;
411 CHAR_T *p;
413 flags = set_txt_std(sp, vp, 0);
414 sp->showmode = SM_REPLACE;
416 if (db_eget(sp, vp->m_start.lno, &p, &len, &isempty)) {
417 if (!isempty)
418 return (1);
419 len = 0;
420 LF_SET(TXT_APPENDEOL);
421 } else {
422 if (len == 0)
423 LF_SET(TXT_APPENDEOL);
424 LF_SET(TXT_OVERWRITE | TXT_REPLACE);
426 vp->m_stop.lno = vp->m_start.lno;
427 vp->m_stop.cno = len ? len - 1 : 0;
429 return (v_txt(sp, vp, &vp->m_stop, p, len,
430 0, OOBLNO, F_ISSET(vp, VC_C1SET) ? vp->count : 1, flags));
434 * v_subst -- [buffer][count]s
435 * Substitute characters.
437 * PUBLIC: int v_subst __P((SCR *, VICMD *));
440 v_subst(sp, vp)
441 SCR *sp;
442 VICMD *vp;
444 size_t len;
445 u_int32_t flags;
446 int isempty;
447 CHAR_T *p;
449 flags = set_txt_std(sp, vp, 0);
450 sp->showmode = SM_CHANGE;
452 if (db_eget(sp, vp->m_start.lno, &p, &len, &isempty)) {
453 if (!isempty)
454 return (1);
455 len = 0;
456 LF_SET(TXT_APPENDEOL);
457 } else {
458 if (len == 0)
459 LF_SET(TXT_APPENDEOL);
460 LF_SET(TXT_EMARK | TXT_OVERWRITE);
463 vp->m_stop.lno = vp->m_start.lno;
464 vp->m_stop.cno =
465 vp->m_start.cno + (F_ISSET(vp, VC_C1SET) ? vp->count - 1 : 0);
466 if (vp->m_stop.cno > len - 1)
467 vp->m_stop.cno = len - 1;
469 if (p != NULL && cut(sp,
470 F_ISSET(vp, VC_BUFFER) ? &vp->buffer : NULL,
471 &vp->m_start, &vp->m_stop, 0))
472 return (1);
474 return (v_txt(sp, vp, &vp->m_stop, p, len, 0, OOBLNO, 1, flags));
478 * set_txt_std --
479 * Initialize text processing flags.
481 static u_int32_t
482 set_txt_std(sp, vp, flags)
483 SCR *sp;
484 VICMD *vp;
485 u_int32_t flags;
487 LF_SET(TXT_CNTRLT |
488 TXT_ESCAPE | TXT_MAPINPUT | TXT_RECORD | TXT_RESOLVE);
490 if (F_ISSET(vp, VC_ISDOT))
491 LF_SET(TXT_REPLAY);
493 if (O_ISSET(sp, O_ALTWERASE))
494 LF_SET(TXT_ALTWERASE);
495 if (O_ISSET(sp, O_AUTOINDENT))
496 LF_SET(TXT_AUTOINDENT);
497 if (O_ISSET(sp, O_BEAUTIFY))
498 LF_SET(TXT_BEAUTIFY);
499 if (O_ISSET(sp, O_SHOWMATCH))
500 LF_SET(TXT_SHOWMATCH);
501 if (F_ISSET(sp, SC_SCRIPT))
502 LF_SET(TXT_CR);
503 if (O_ISSET(sp, O_TTYWERASE))
504 LF_SET(TXT_TTYWERASE);
507 * !!!
508 * Mapped keys were sometimes unaffected by the wrapmargin option
509 * in the historic 4BSD vi. Consider the following commands, where
510 * each is executed on an empty line, in an 80 column screen, with
511 * the wrapmargin value set to 60.
513 * aABC DEF <ESC>....
514 * :map K aABC DEF ^V<ESC><CR>KKKKK
515 * :map K 5aABC DEF ^V<ESC><CR>K
517 * The first and second commands are affected by wrapmargin. The
518 * third is not. (If the inserted text is itself longer than the
519 * wrapmargin value, i.e. if the "ABC DEF " string is replaced by
520 * something that's longer than 60 columns from the beginning of
521 * the line, the first two commands behave as before, but the third
522 * command gets fairly strange.) The problem is that people wrote
523 * macros that depended on the third command NOT being affected by
524 * wrapmargin, as in this gem which centers lines:
526 * map #c $mq81a ^V^[81^V^V|D`qld0:s/ / /g^V^M$p
528 * For compatibility reasons, we try and make it all work here. I
529 * offer no hope that this is right, but it's probably pretty close.
531 * XXX
532 * Once I work my courage up, this is all gonna go away. It's too
533 * evil to survive.
535 if ((O_ISSET(sp, O_WRAPLEN) || O_ISSET(sp, O_WRAPMARGIN)) &&
536 (!MAPPED_KEYS_WAITING(sp) || !F_ISSET(vp, VC_C1SET)))
537 LF_SET(TXT_WRAPMARGIN);
538 return (flags);