Merged from the latest developing branch.
[MacVim.git] / src / ops.c
blobe8c69170f8bcc3972e964ffb5ea7bad9cb956917
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
11 * ops.c: implementation of various operators: op_shift, op_delete, op_tilde,
12 * op_change, op_yank, do_put, do_join
15 #include "vim.h"
18 * Number of registers.
19 * 0 = unnamed register, for normal yanks and puts
20 * 1..9 = registers '1' to '9', for deletes
21 * 10..35 = registers 'a' to 'z'
22 * 36 = delete register '-'
23 * 37 = Selection register '*'. Only if FEAT_CLIPBOARD defined
24 * 38 = Clipboard register '+'. Only if FEAT_CLIPBOARD and FEAT_X11 defined
27 * Symbolic names for some registers.
29 #define DELETION_REGISTER 36
30 #ifdef FEAT_CLIPBOARD
31 # define STAR_REGISTER 37
32 # ifdef FEAT_X11
33 # define PLUS_REGISTER 38
34 # else
35 # define PLUS_REGISTER STAR_REGISTER /* there is only one */
36 # endif
37 #endif
38 #ifdef FEAT_DND
39 # define TILDE_REGISTER (PLUS_REGISTER + 1)
40 #endif
42 #ifdef FEAT_CLIPBOARD
43 # ifdef FEAT_DND
44 # define NUM_REGISTERS (TILDE_REGISTER + 1)
45 # else
46 # define NUM_REGISTERS (PLUS_REGISTER + 1)
47 # endif
48 #else
49 # define NUM_REGISTERS 37
50 #endif
53 * Each yank register is an array of pointers to lines.
55 static struct yankreg
57 char_u **y_array; /* pointer to array of line pointers */
58 linenr_T y_size; /* number of lines in y_array */
59 char_u y_type; /* MLINE, MCHAR or MBLOCK */
60 #ifdef FEAT_VISUAL
61 colnr_T y_width; /* only set if y_type == MBLOCK */
62 #endif
63 } y_regs[NUM_REGISTERS];
65 static struct yankreg *y_current; /* ptr to current yankreg */
66 static int y_append; /* TRUE when appending */
67 static struct yankreg *y_previous = NULL; /* ptr to last written yankreg */
70 * structure used by block_prep, op_delete and op_yank for blockwise operators
71 * also op_change, op_shift, op_insert, op_replace - AKelly
73 struct block_def
75 int startspaces; /* 'extra' cols of first char */
76 int endspaces; /* 'extra' cols of first char */
77 int textlen; /* chars in block */
78 char_u *textstart; /* pointer to 1st char in block */
79 colnr_T textcol; /* cols of chars (at least part.) in block */
80 colnr_T start_vcol; /* start col of 1st char wholly inside block */
81 colnr_T end_vcol; /* start col of 1st char wholly after block */
82 #ifdef FEAT_VISUALEXTRA
83 int is_short; /* TRUE if line is too short to fit in block */
84 int is_MAX; /* TRUE if curswant==MAXCOL when starting */
85 int is_oneChar; /* TRUE if block within one character */
86 int pre_whitesp; /* screen cols of ws before block */
87 int pre_whitesp_c; /* chars of ws before block */
88 colnr_T end_char_vcols; /* number of vcols of post-block char */
89 #endif
90 colnr_T start_char_vcols; /* number of vcols of pre-block char */
93 #ifdef FEAT_VISUALEXTRA
94 static void shift_block __ARGS((oparg_T *oap, int amount));
95 static void block_insert __ARGS((oparg_T *oap, char_u *s, int b_insert, struct block_def*bdp));
96 #endif
97 static int stuff_yank __ARGS((int, char_u *));
98 static void put_reedit_in_typebuf __ARGS((int silent));
99 static int put_in_typebuf __ARGS((char_u *s, int esc, int colon,
100 int silent));
101 static void stuffescaped __ARGS((char_u *arg, int literally));
102 #ifdef FEAT_MBYTE
103 static void mb_adjust_opend __ARGS((oparg_T *oap));
104 #endif
105 static void free_yank __ARGS((long));
106 static void free_yank_all __ARGS((void));
107 static int yank_copy_line __ARGS((struct block_def *bd, long y_idx));
108 #ifdef FEAT_CLIPBOARD
109 static void copy_yank_reg __ARGS((struct yankreg *reg));
110 # if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
111 static void may_set_selection __ARGS((void));
112 # endif
113 #endif
114 static void dis_msg __ARGS((char_u *p, int skip_esc));
115 #ifdef FEAT_VISUAL
116 static void block_prep __ARGS((oparg_T *oap, struct block_def *, linenr_T, int));
117 #endif
118 #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
119 static void str_to_reg __ARGS((struct yankreg *y_ptr, int type, char_u *str, long len, long blocklen));
120 #endif
121 static int ends_in_white __ARGS((linenr_T lnum));
122 #ifdef FEAT_COMMENTS
123 static int same_leader __ARGS((linenr_T lnum, int, char_u *, int, char_u *));
124 static int fmt_check_par __ARGS((linenr_T, int *, char_u **, int do_comments));
125 #else
126 static int fmt_check_par __ARGS((linenr_T));
127 #endif
130 * The names of operators.
131 * IMPORTANT: Index must correspond with defines in vim.h!!!
132 * The third field indicates whether the operator always works on lines.
134 static char opchars[][3] =
136 {NUL, NUL, FALSE}, /* OP_NOP */
137 {'d', NUL, FALSE}, /* OP_DELETE */
138 {'y', NUL, FALSE}, /* OP_YANK */
139 {'c', NUL, FALSE}, /* OP_CHANGE */
140 {'<', NUL, TRUE}, /* OP_LSHIFT */
141 {'>', NUL, TRUE}, /* OP_RSHIFT */
142 {'!', NUL, TRUE}, /* OP_FILTER */
143 {'g', '~', FALSE}, /* OP_TILDE */
144 {'=', NUL, TRUE}, /* OP_INDENT */
145 {'g', 'q', TRUE}, /* OP_FORMAT */
146 {':', NUL, TRUE}, /* OP_COLON */
147 {'g', 'U', FALSE}, /* OP_UPPER */
148 {'g', 'u', FALSE}, /* OP_LOWER */
149 {'J', NUL, TRUE}, /* DO_JOIN */
150 {'g', 'J', TRUE}, /* DO_JOIN_NS */
151 {'g', '?', FALSE}, /* OP_ROT13 */
152 {'r', NUL, FALSE}, /* OP_REPLACE */
153 {'I', NUL, FALSE}, /* OP_INSERT */
154 {'A', NUL, FALSE}, /* OP_APPEND */
155 {'z', 'f', TRUE}, /* OP_FOLD */
156 {'z', 'o', TRUE}, /* OP_FOLDOPEN */
157 {'z', 'O', TRUE}, /* OP_FOLDOPENREC */
158 {'z', 'c', TRUE}, /* OP_FOLDCLOSE */
159 {'z', 'C', TRUE}, /* OP_FOLDCLOSEREC */
160 {'z', 'd', TRUE}, /* OP_FOLDDEL */
161 {'z', 'D', TRUE}, /* OP_FOLDDELREC */
162 {'g', 'w', TRUE}, /* OP_FORMAT2 */
163 {'g', '@', FALSE}, /* OP_FUNCTION */
167 * Translate a command name into an operator type.
168 * Must only be called with a valid operator name!
171 get_op_type(char1, char2)
172 int char1;
173 int char2;
175 int i;
177 if (char1 == 'r') /* ignore second character */
178 return OP_REPLACE;
179 if (char1 == '~') /* when tilde is an operator */
180 return OP_TILDE;
181 for (i = 0; ; ++i)
182 if (opchars[i][0] == char1 && opchars[i][1] == char2)
183 break;
184 return i;
187 #if defined(FEAT_VISUAL) || defined(PROTO)
189 * Return TRUE if operator "op" always works on whole lines.
192 op_on_lines(op)
193 int op;
195 return opchars[op][2];
197 #endif
200 * Get first operator command character.
201 * Returns 'g' or 'z' if there is another command character.
204 get_op_char(optype)
205 int optype;
207 return opchars[optype][0];
211 * Get second operator command character.
214 get_extra_op_char(optype)
215 int optype;
217 return opchars[optype][1];
221 * op_shift - handle a shift operation
223 void
224 op_shift(oap, curs_top, amount)
225 oparg_T *oap;
226 int curs_top;
227 int amount;
229 long i;
230 int first_char;
231 char_u *s;
232 #ifdef FEAT_VISUAL
233 int block_col = 0;
234 #endif
236 if (u_save((linenr_T)(oap->start.lnum - 1),
237 (linenr_T)(oap->end.lnum + 1)) == FAIL)
238 return;
240 #ifdef FEAT_VISUAL
241 if (oap->block_mode)
242 block_col = curwin->w_cursor.col;
243 #endif
245 for (i = oap->line_count; --i >= 0; )
247 first_char = *ml_get_curline();
248 if (first_char == NUL) /* empty line */
249 curwin->w_cursor.col = 0;
250 #ifdef FEAT_VISUALEXTRA
251 else if (oap->block_mode)
252 shift_block(oap, amount);
253 #endif
254 else
255 /* Move the line right if it doesn't start with '#', 'smartindent'
256 * isn't set or 'cindent' isn't set or '#' isn't in 'cino'. */
257 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
258 if (first_char != '#' || !preprocs_left())
259 #endif
261 shift_line(oap->op_type == OP_LSHIFT, p_sr, amount);
263 ++curwin->w_cursor.lnum;
266 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
268 #ifdef FEAT_VISUAL
269 if (oap->block_mode)
271 curwin->w_cursor.lnum = oap->start.lnum;
272 curwin->w_cursor.col = block_col;
274 else
275 #endif
276 if (curs_top) /* put cursor on first line, for ">>" */
278 curwin->w_cursor.lnum = oap->start.lnum;
279 beginline(BL_SOL | BL_FIX); /* shift_line() may have set cursor.col */
281 else
282 --curwin->w_cursor.lnum; /* put cursor on last line, for ":>" */
284 if (oap->line_count > p_report)
286 if (oap->op_type == OP_RSHIFT)
287 s = (char_u *)">";
288 else
289 s = (char_u *)"<";
290 if (oap->line_count == 1)
292 if (amount == 1)
293 sprintf((char *)IObuff, _("1 line %sed 1 time"), s);
294 else
295 sprintf((char *)IObuff, _("1 line %sed %d times"), s, amount);
297 else
299 if (amount == 1)
300 sprintf((char *)IObuff, _("%ld lines %sed 1 time"),
301 oap->line_count, s);
302 else
303 sprintf((char *)IObuff, _("%ld lines %sed %d times"),
304 oap->line_count, s, amount);
306 msg(IObuff);
310 * Set "'[" and "']" marks.
312 curbuf->b_op_start = oap->start;
313 curbuf->b_op_end.lnum = oap->end.lnum;
314 curbuf->b_op_end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
315 if (curbuf->b_op_end.col > 0)
316 --curbuf->b_op_end.col;
320 * shift the current line one shiftwidth left (if left != 0) or right
321 * leaves cursor on first blank in the line
323 void
324 shift_line(left, round, amount)
325 int left;
326 int round;
327 int amount;
329 int count;
330 int i, j;
331 int p_sw = (int)curbuf->b_p_sw;
333 count = get_indent(); /* get current indent */
335 if (round) /* round off indent */
337 i = count / p_sw; /* number of p_sw rounded down */
338 j = count % p_sw; /* extra spaces */
339 if (j && left) /* first remove extra spaces */
340 --amount;
341 if (left)
343 i -= amount;
344 if (i < 0)
345 i = 0;
347 else
348 i += amount;
349 count = i * p_sw;
351 else /* original vi indent */
353 if (left)
355 count -= p_sw * amount;
356 if (count < 0)
357 count = 0;
359 else
360 count += p_sw * amount;
363 /* Set new indent */
364 #ifdef FEAT_VREPLACE
365 if (State & VREPLACE_FLAG)
366 change_indent(INDENT_SET, count, FALSE, NUL);
367 else
368 #endif
369 (void)set_indent(count, SIN_CHANGED);
372 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
374 * Shift one line of the current block one shiftwidth right or left.
375 * Leaves cursor on first character in block.
377 static void
378 shift_block(oap, amount)
379 oparg_T *oap;
380 int amount;
382 int left = (oap->op_type == OP_LSHIFT);
383 int oldstate = State;
384 int total, split;
385 char_u *newp, *oldp, *midp, *ptr;
386 int oldcol = curwin->w_cursor.col;
387 int p_sw = (int)curbuf->b_p_sw;
388 int p_ts = (int)curbuf->b_p_ts;
389 struct block_def bd;
390 int internal = 0;
391 int incr;
392 colnr_T vcol, col = 0, ws_vcol;
393 int i = 0, j = 0;
394 int len;
396 #ifdef FEAT_RIGHTLEFT
397 int old_p_ri = p_ri;
399 p_ri = 0; /* don't want revins in ident */
400 #endif
402 State = INSERT; /* don't want REPLACE for State */
403 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
404 if (bd.is_short)
405 return;
407 /* total is number of screen columns to be inserted/removed */
408 total = amount * p_sw;
409 oldp = ml_get_curline();
411 if (!left)
414 * 1. Get start vcol
415 * 2. Total ws vcols
416 * 3. Divvy into TABs & spp
417 * 4. Construct new string
419 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
420 ws_vcol = bd.start_vcol - bd.pre_whitesp;
421 if (bd.startspaces)
423 #ifdef FEAT_MBYTE
424 if (has_mbyte)
425 bd.textstart += (*mb_ptr2len)(bd.textstart);
426 #endif
427 ++bd.textstart;
429 for ( ; vim_iswhite(*bd.textstart); )
431 incr = lbr_chartabsize_adv(&bd.textstart, (colnr_T)(bd.start_vcol));
432 total += incr;
433 bd.start_vcol += incr;
435 /* OK, now total=all the VWS reqd, and textstart points at the 1st
436 * non-ws char in the block. */
437 if (!curbuf->b_p_et)
438 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
439 if (i)
440 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
441 else
442 j = total;
443 /* if we're splitting a TAB, allow for it */
444 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
445 len = (int)STRLEN(bd.textstart) + 1;
446 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
447 if (newp == NULL)
448 return;
449 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
450 mch_memmove(newp, oldp, (size_t)bd.textcol);
451 copy_chars(newp + bd.textcol, (size_t)i, TAB);
452 copy_spaces(newp + bd.textcol + i, (size_t)j);
453 /* the end */
454 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
456 else /* left */
458 vcol = oap->start_vcol;
459 /* walk vcol past ws to be removed */
460 for (midp = oldp + bd.textcol;
461 vcol < (oap->start_vcol + total) && vim_iswhite(*midp); )
463 incr = lbr_chartabsize_adv(&midp, (colnr_T)vcol);
464 vcol += incr;
466 /* internal is the block-internal ws replacing a split TAB */
467 if (vcol > (oap->start_vcol + total))
469 /* we have to split the TAB *(midp-1) */
470 internal = vcol - (oap->start_vcol + total);
472 /* if 'expandtab' is not set, use TABs */
474 split = bd.startspaces + internal;
475 if (split > 0)
477 if (!curbuf->b_p_et)
479 for (ptr = oldp, col = 0; ptr < oldp+bd.textcol; )
480 col += lbr_chartabsize_adv(&ptr, (colnr_T)col);
482 /* col+1 now equals the start col of the first char of the
483 * block (may be < oap.start_vcol if we're splitting a TAB) */
484 i = ((col % p_ts) + split) / p_ts; /* number of tabs */
486 if (i)
487 j = ((col % p_ts) + split) % p_ts; /* number of spp */
488 else
489 j = split;
492 newp = alloc_check(bd.textcol + i + j + (unsigned)STRLEN(midp) + 1);
493 if (newp == NULL)
494 return;
495 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + STRLEN(midp) + 1));
497 /* copy first part we want to keep */
498 mch_memmove(newp, oldp, (size_t)bd.textcol);
499 /* Now copy any TABS and spp to ensure correct alignment! */
500 while (vim_iswhite(*midp))
502 if (*midp == TAB)
503 i++;
504 else /*space */
505 j++;
506 midp++;
508 /* We might have an extra TAB worth of spp now! */
509 if (j / p_ts && !curbuf->b_p_et)
511 i++;
512 j -= p_ts;
514 copy_chars(newp + bd.textcol, (size_t)i, TAB);
515 copy_spaces(newp + bd.textcol + i, (size_t)j);
517 /* the end */
518 mch_memmove(newp + STRLEN(newp), midp, (size_t)STRLEN(midp) + 1);
520 /* replace the line */
521 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
522 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
523 State = oldstate;
524 curwin->w_cursor.col = oldcol;
525 #ifdef FEAT_RIGHTLEFT
526 p_ri = old_p_ri;
527 #endif
529 #endif
531 #ifdef FEAT_VISUALEXTRA
533 * Insert string "s" (b_insert ? before : after) block :AKelly
534 * Caller must prepare for undo.
536 static void
537 block_insert(oap, s, b_insert, bdp)
538 oparg_T *oap;
539 char_u *s;
540 int b_insert;
541 struct block_def *bdp;
543 int p_ts;
544 int count = 0; /* extra spaces to replace a cut TAB */
545 int spaces = 0; /* non-zero if cutting a TAB */
546 colnr_T offset; /* pointer along new line */
547 unsigned s_len; /* STRLEN(s) */
548 char_u *newp, *oldp; /* new, old lines */
549 linenr_T lnum; /* loop var */
550 int oldstate = State;
552 State = INSERT; /* don't want REPLACE for State */
553 s_len = (unsigned)STRLEN(s);
555 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
557 block_prep(oap, bdp, lnum, TRUE);
558 if (bdp->is_short && b_insert)
559 continue; /* OP_INSERT, line ends before block start */
561 oldp = ml_get(lnum);
563 if (b_insert)
565 p_ts = bdp->start_char_vcols;
566 spaces = bdp->startspaces;
567 if (spaces != 0)
568 count = p_ts - 1; /* we're cutting a TAB */
569 offset = bdp->textcol;
571 else /* append */
573 p_ts = bdp->end_char_vcols;
574 if (!bdp->is_short) /* spaces = padding after block */
576 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
577 if (spaces != 0)
578 count = p_ts - 1; /* we're cutting a TAB */
579 offset = bdp->textcol + bdp->textlen - (spaces != 0);
581 else /* spaces = padding to block edge */
583 /* if $ used, just append to EOL (ie spaces==0) */
584 if (!bdp->is_MAX)
585 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
586 count = spaces;
587 offset = bdp->textcol + bdp->textlen;
591 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
592 if (newp == NULL)
593 continue;
595 /* copy up to shifted part */
596 mch_memmove(newp, oldp, (size_t)(offset));
597 oldp += offset;
599 /* insert pre-padding */
600 copy_spaces(newp + offset, (size_t)spaces);
602 /* copy the new text */
603 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
604 offset += s_len;
606 if (spaces && !bdp->is_short)
608 /* insert post-padding */
609 copy_spaces(newp + offset + spaces, (size_t)(p_ts - spaces));
610 /* We're splitting a TAB, don't copy it. */
611 oldp++;
612 /* We allowed for that TAB, remember this now */
613 count++;
616 if (spaces > 0)
617 offset += count;
618 mch_memmove(newp + offset, oldp, (size_t)(STRLEN(oldp) + 1));
620 ml_replace(lnum, newp, FALSE);
622 if (lnum == oap->end.lnum)
624 /* Set "']" mark to the end of the block instead of the end of
625 * the insert in the first line. */
626 curbuf->b_op_end.lnum = oap->end.lnum;
627 curbuf->b_op_end.col = offset;
629 } /* for all lnum */
631 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
633 State = oldstate;
635 #endif
637 #if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
639 * op_reindent - handle reindenting a block of lines.
641 void
642 op_reindent(oap, how)
643 oparg_T *oap;
644 int (*how) __ARGS((void));
646 long i;
647 char_u *l;
648 int count;
649 linenr_T first_changed = 0;
650 linenr_T last_changed = 0;
651 linenr_T start_lnum = curwin->w_cursor.lnum;
653 /* Don't even try when 'modifiable' is off. */
654 if (!curbuf->b_p_ma)
656 EMSG(_(e_modifiable));
657 return;
660 for (i = oap->line_count; --i >= 0 && !got_int; )
662 /* it's a slow thing to do, so give feedback so there's no worry that
663 * the computer's just hung. */
665 if (i > 1
666 && (i % 50 == 0 || i == oap->line_count - 1)
667 && oap->line_count > p_report)
668 smsg((char_u *)_("%ld lines to indent... "), i);
671 * Be vi-compatible: For lisp indenting the first line is not
672 * indented, unless there is only one line.
674 #ifdef FEAT_LISP
675 if (i != oap->line_count - 1 || oap->line_count == 1
676 || how != get_lisp_indent)
677 #endif
679 l = skipwhite(ml_get_curline());
680 if (*l == NUL) /* empty or blank line */
681 count = 0;
682 else
683 count = how(); /* get the indent for this line */
685 if (set_indent(count, SIN_UNDO))
687 /* did change the indent, call changed_lines() later */
688 if (first_changed == 0)
689 first_changed = curwin->w_cursor.lnum;
690 last_changed = curwin->w_cursor.lnum;
693 ++curwin->w_cursor.lnum;
696 /* put cursor on first non-blank of indented line */
697 curwin->w_cursor.lnum = start_lnum;
698 beginline(BL_SOL | BL_FIX);
700 /* Mark changed lines so that they will be redrawn. When Visual
701 * highlighting was present, need to continue until the last line. When
702 * there is no change still need to remove the Visual highlighting. */
703 if (last_changed != 0)
704 changed_lines(first_changed, 0,
705 #ifdef FEAT_VISUAL
706 oap->is_VIsual ? start_lnum + oap->line_count :
707 #endif
708 last_changed + 1, 0L);
709 #ifdef FEAT_VISUAL
710 else if (oap->is_VIsual)
711 redraw_curbuf_later(INVERTED);
712 #endif
714 if (oap->line_count > p_report)
716 i = oap->line_count - (i + 1);
717 if (i == 1)
718 MSG(_("1 line indented "));
719 else
720 smsg((char_u *)_("%ld lines indented "), i);
722 /* set '[ and '] marks */
723 curbuf->b_op_start = oap->start;
724 curbuf->b_op_end = oap->end;
726 #endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
728 #if defined(FEAT_EVAL) || defined(PROTO)
730 * Keep the last expression line here, for repeating.
732 static char_u *expr_line = NULL;
735 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
736 * Returns '=' when OK, NUL otherwise.
739 get_expr_register()
741 char_u *new_line;
743 new_line = getcmdline('=', 0L, 0);
744 if (new_line == NULL)
745 return NUL;
746 if (*new_line == NUL) /* use previous line */
747 vim_free(new_line);
748 else
749 set_expr_line(new_line);
750 return '=';
754 * Set the expression for the '=' register.
755 * Argument must be an allocated string.
757 void
758 set_expr_line(new_line)
759 char_u *new_line;
761 vim_free(expr_line);
762 expr_line = new_line;
766 * Get the result of the '=' register expression.
767 * Returns a pointer to allocated memory, or NULL for failure.
769 char_u *
770 get_expr_line()
772 char_u *expr_copy;
773 char_u *rv;
774 static int nested = 0;
776 if (expr_line == NULL)
777 return NULL;
779 /* Make a copy of the expression, because evaluating it may cause it to be
780 * changed. */
781 expr_copy = vim_strsave(expr_line);
782 if (expr_copy == NULL)
783 return NULL;
785 /* When we are invoked recursively limit the evaluation to 10 levels.
786 * Then return the string as-is. */
787 if (nested >= 10)
788 return expr_copy;
790 ++nested;
791 rv = eval_to_string(expr_copy, NULL, TRUE);
792 --nested;
793 vim_free(expr_copy);
794 return rv;
798 * Get the '=' register expression itself, without evaluating it.
800 char_u *
801 get_expr_line_src()
803 if (expr_line == NULL)
804 return NULL;
805 return vim_strsave(expr_line);
807 #endif /* FEAT_EVAL */
810 * Check if 'regname' is a valid name of a yank register.
811 * Note: There is no check for 0 (default register), caller should do this
814 valid_yank_reg(regname, writing)
815 int regname;
816 int writing; /* if TRUE check for writable registers */
818 if ( (regname > 0 && ASCII_ISALNUM(regname))
819 || (!writing && vim_strchr((char_u *)
820 #ifdef FEAT_EVAL
821 "/.%#:="
822 #else
823 "/.%#:"
824 #endif
825 , regname) != NULL)
826 || regname == '"'
827 || regname == '-'
828 || regname == '_'
829 #ifdef FEAT_CLIPBOARD
830 || regname == '*'
831 || regname == '+'
832 #endif
833 #ifdef FEAT_DND
834 || (!writing && regname == '~')
835 #endif
837 return TRUE;
838 return FALSE;
842 * Set y_current and y_append, according to the value of "regname".
843 * Cannot handle the '_' register.
844 * Must only be called with a valid register name!
846 * If regname is 0 and writing, use register 0
847 * If regname is 0 and reading, use previous register
849 void
850 get_yank_register(regname, writing)
851 int regname;
852 int writing;
854 int i;
856 y_append = FALSE;
857 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
859 y_current = y_previous;
860 return;
862 i = regname;
863 if (VIM_ISDIGIT(i))
864 i -= '0';
865 else if (ASCII_ISLOWER(i))
866 i = CharOrdLow(i) + 10;
867 else if (ASCII_ISUPPER(i))
869 i = CharOrdUp(i) + 10;
870 y_append = TRUE;
872 else if (regname == '-')
873 i = DELETION_REGISTER;
874 #ifdef FEAT_CLIPBOARD
875 /* When selection is not available, use register 0 instead of '*' */
876 else if (clip_star.available && regname == '*')
877 i = STAR_REGISTER;
878 /* When clipboard is not available, use register 0 instead of '+' */
879 else if (clip_plus.available && regname == '+')
880 i = PLUS_REGISTER;
881 #endif
882 #ifdef FEAT_DND
883 else if (!writing && regname == '~')
884 i = TILDE_REGISTER;
885 #endif
886 else /* not 0-9, a-z, A-Z or '-': use register 0 */
887 i = 0;
888 y_current = &(y_regs[i]);
889 if (writing) /* remember the register we write into for do_put() */
890 y_previous = y_current;
893 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
895 * When "regname" is a clipboard register, obtain the selection. If it's not
896 * available return zero, otherwise return "regname".
899 may_get_selection(regname)
900 int regname;
902 if (regname == '*')
904 if (!clip_star.available)
905 regname = 0;
906 else
907 clip_get_selection(&clip_star);
909 else if (regname == '+')
911 if (!clip_plus.available)
912 regname = 0;
913 else
914 clip_get_selection(&clip_plus);
916 return regname;
918 #endif
920 #if defined(FEAT_VISUAL) || defined(PROTO)
922 * Obtain the contents of a "normal" register. The register is made empty.
923 * The returned pointer has allocated memory, use put_register() later.
925 void *
926 get_register(name, copy)
927 int name;
928 int copy; /* make a copy, if FALSE make register empty. */
930 static struct yankreg *reg;
931 int i;
933 #ifdef FEAT_CLIPBOARD
934 /* When Visual area changed, may have to update selection. Obtain the
935 * selection too. */
936 if (name == '*' && clip_star.available && clip_isautosel())
938 clip_update_selection();
939 may_get_selection(name);
941 #endif
943 get_yank_register(name, 0);
944 reg = (struct yankreg *)alloc((unsigned)sizeof(struct yankreg));
945 if (reg != NULL)
947 *reg = *y_current;
948 if (copy)
950 /* If we run out of memory some or all of the lines are empty. */
951 if (reg->y_size == 0)
952 reg->y_array = NULL;
953 else
954 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
955 * reg->y_size));
956 if (reg->y_array != NULL)
958 for (i = 0; i < reg->y_size; ++i)
959 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
962 else
963 y_current->y_array = NULL;
965 return (void *)reg;
969 * Put "reg" into register "name". Free any previous contents.
971 void
972 put_register(name, reg)
973 int name;
974 void *reg;
976 get_yank_register(name, 0);
977 free_yank_all();
978 *y_current = *(struct yankreg *)reg;
980 # ifdef FEAT_CLIPBOARD
981 /* Send text written to clipboard register to the clipboard. */
982 may_set_selection();
983 # endif
985 #endif
987 #if defined(FEAT_MOUSE) || defined(PROTO)
989 * return TRUE if the current yank register has type MLINE
992 yank_register_mline(regname)
993 int regname;
995 if (regname != 0 && !valid_yank_reg(regname, FALSE))
996 return FALSE;
997 if (regname == '_') /* black hole is always empty */
998 return FALSE;
999 get_yank_register(regname, FALSE);
1000 return (y_current->y_type == MLINE);
1002 #endif
1005 * Start or stop recording into a yank register.
1007 * Return FAIL for failure, OK otherwise.
1010 do_record(c)
1011 int c;
1013 char_u *p;
1014 static int regname;
1015 struct yankreg *old_y_previous, *old_y_current;
1016 int retval;
1018 if (Recording == FALSE) /* start recording */
1020 /* registers 0-9, a-z and " are allowed */
1021 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1022 retval = FAIL;
1023 else
1025 Recording = TRUE;
1026 showmode();
1027 regname = c;
1028 retval = OK;
1031 else /* stop recording */
1034 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1035 * needs to be removed again to put it in a register. exec_reg then
1036 * adds the escaping back later.
1038 Recording = FALSE;
1039 MSG("");
1040 p = get_recorded();
1041 if (p == NULL)
1042 retval = FAIL;
1043 else
1045 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1046 vim_unescape_csi(p);
1049 * We don't want to change the default register here, so save and
1050 * restore the current register name.
1052 old_y_previous = y_previous;
1053 old_y_current = y_current;
1055 retval = stuff_yank(regname, p);
1057 y_previous = old_y_previous;
1058 y_current = old_y_current;
1061 return retval;
1065 * Stuff string "p" into yank register "regname" as a single line (append if
1066 * uppercase). "p" must have been alloced.
1068 * return FAIL for failure, OK otherwise
1070 static int
1071 stuff_yank(regname, p)
1072 int regname;
1073 char_u *p;
1075 char_u *lp;
1076 char_u **pp;
1078 /* check for read-only register */
1079 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1081 vim_free(p);
1082 return FAIL;
1084 if (regname == '_') /* black hole: don't do anything */
1086 vim_free(p);
1087 return OK;
1089 get_yank_register(regname, TRUE);
1090 if (y_append && y_current->y_array != NULL)
1092 pp = &(y_current->y_array[y_current->y_size - 1]);
1093 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1094 if (lp == NULL)
1096 vim_free(p);
1097 return FAIL;
1099 STRCPY(lp, *pp);
1100 STRCAT(lp, p);
1101 vim_free(p);
1102 vim_free(*pp);
1103 *pp = lp;
1105 else
1107 free_yank_all();
1108 if ((y_current->y_array =
1109 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1111 vim_free(p);
1112 return FAIL;
1114 y_current->y_array[0] = p;
1115 y_current->y_size = 1;
1116 y_current->y_type = MCHAR; /* used to be MLINE, why? */
1118 return OK;
1122 * execute a yank register: copy it into the stuff buffer
1124 * return FAIL for failure, OK otherwise
1127 do_execreg(regname, colon, addcr, silent)
1128 int regname;
1129 int colon; /* insert ':' before each line */
1130 int addcr; /* always add '\n' to end of line */
1131 int silent; /* set "silent" flag in typeahead buffer */
1133 static int lastc = NUL;
1134 long i;
1135 char_u *p;
1136 int retval = OK;
1137 int remap;
1139 if (regname == '@') /* repeat previous one */
1141 if (lastc == NUL)
1143 EMSG(_("E748: No previously used register"));
1144 return FAIL;
1146 regname = lastc;
1148 /* check for valid regname */
1149 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
1151 emsg_invreg(regname);
1152 return FAIL;
1154 lastc = regname;
1156 #ifdef FEAT_CLIPBOARD
1157 regname = may_get_selection(regname);
1158 #endif
1160 if (regname == '_') /* black hole: don't stuff anything */
1161 return OK;
1163 #ifdef FEAT_CMDHIST
1164 if (regname == ':') /* use last command line */
1166 if (last_cmdline == NULL)
1168 EMSG(_(e_nolastcmd));
1169 return FAIL;
1171 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
1172 new_last_cmdline = NULL;
1173 /* Escape all control characters with a CTRL-V */
1174 p = vim_strsave_escaped_ext(last_cmdline,
1175 (char_u *)"\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037", Ctrl_V, FALSE);
1176 if (p != NULL)
1178 /* When in Visual mode "'<,'>" will be prepended to the command.
1179 * Remove it when it's already there. */
1180 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
1181 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
1182 else
1183 retval = put_in_typebuf(p, TRUE, TRUE, silent);
1185 vim_free(p);
1187 #endif
1188 #ifdef FEAT_EVAL
1189 else if (regname == '=')
1191 p = get_expr_line();
1192 if (p == NULL)
1193 return FAIL;
1194 retval = put_in_typebuf(p, TRUE, colon, silent);
1195 vim_free(p);
1197 #endif
1198 else if (regname == '.') /* use last inserted text */
1200 p = get_last_insert_save();
1201 if (p == NULL)
1203 EMSG(_(e_noinstext));
1204 return FAIL;
1206 retval = put_in_typebuf(p, FALSE, colon, silent);
1207 vim_free(p);
1209 else
1211 get_yank_register(regname, FALSE);
1212 if (y_current->y_array == NULL)
1213 return FAIL;
1215 /* Disallow remaping for ":@r". */
1216 remap = colon ? REMAP_NONE : REMAP_YES;
1219 * Insert lines into typeahead buffer, from last one to first one.
1221 put_reedit_in_typebuf(silent);
1222 for (i = y_current->y_size; --i >= 0; )
1224 char_u *escaped;
1226 /* insert NL between lines and after last line if type is MLINE */
1227 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1228 || addcr)
1230 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
1231 return FAIL;
1233 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1234 if (escaped == NULL)
1235 return FAIL;
1236 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1237 vim_free(escaped);
1238 if (retval == FAIL)
1239 return FAIL;
1240 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
1241 == FAIL)
1242 return FAIL;
1244 Exec_reg = TRUE; /* disable the 'q' command */
1246 return retval;
1250 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1251 * used only after other typeahead has been processed.
1253 static void
1254 put_reedit_in_typebuf(silent)
1255 int silent;
1257 char_u buf[3];
1259 if (restart_edit != NUL)
1261 if (restart_edit == 'V')
1263 buf[0] = 'g';
1264 buf[1] = 'R';
1265 buf[2] = NUL;
1267 else
1269 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1270 buf[1] = NUL;
1272 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
1273 restart_edit = NUL;
1277 static int
1278 put_in_typebuf(s, esc, colon, silent)
1279 char_u *s;
1280 int esc; /* Escape CSI characters */
1281 int colon; /* add ':' before the line */
1282 int silent;
1284 int retval = OK;
1286 put_reedit_in_typebuf(silent);
1287 if (colon)
1288 retval = ins_typebuf((char_u *)"\n", REMAP_YES, 0, TRUE, silent);
1289 if (retval == OK)
1291 char_u *p;
1293 if (esc)
1294 p = vim_strsave_escape_csi(s);
1295 else
1296 p = s;
1297 if (p == NULL)
1298 retval = FAIL;
1299 else
1300 retval = ins_typebuf(p, REMAP_YES, 0, TRUE, silent);
1301 if (esc)
1302 vim_free(p);
1304 if (colon && retval == OK)
1305 retval = ins_typebuf((char_u *)":", REMAP_YES, 0, TRUE, silent);
1306 return retval;
1310 * Insert a yank register: copy it into the Read buffer.
1311 * Used by CTRL-R command and middle mouse button in insert mode.
1313 * return FAIL for failure, OK otherwise
1316 insert_reg(regname, literally)
1317 int regname;
1318 int literally; /* insert literally, not as if typed */
1320 long i;
1321 int retval = OK;
1322 char_u *arg;
1323 int allocated;
1326 * It is possible to get into an endless loop by having CTRL-R a in
1327 * register a and then, in insert mode, doing CTRL-R a.
1328 * If you hit CTRL-C, the loop will be broken here.
1330 ui_breakcheck();
1331 if (got_int)
1332 return FAIL;
1334 /* check for valid regname */
1335 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1336 return FAIL;
1338 #ifdef FEAT_CLIPBOARD
1339 regname = may_get_selection(regname);
1340 #endif
1342 if (regname == '.') /* insert last inserted text */
1343 retval = stuff_inserted(NUL, 1L, TRUE);
1344 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1346 if (arg == NULL)
1347 return FAIL;
1348 stuffescaped(arg, literally);
1349 if (allocated)
1350 vim_free(arg);
1352 else /* name or number register */
1354 get_yank_register(regname, FALSE);
1355 if (y_current->y_array == NULL)
1356 retval = FAIL;
1357 else
1359 for (i = 0; i < y_current->y_size; ++i)
1361 stuffescaped(y_current->y_array[i], literally);
1363 * Insert a newline between lines and after last line if
1364 * y_type is MLINE.
1366 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1367 stuffcharReadbuff('\n');
1372 return retval;
1376 * Stuff a string into the typeahead buffer, such that edit() will insert it
1377 * literally ("literally" TRUE) or interpret is as typed characters.
1379 static void
1380 stuffescaped(arg, literally)
1381 char_u *arg;
1382 int literally;
1384 int c;
1385 char_u *start;
1387 while (*arg != NUL)
1389 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1390 * stuff K_SPECIAL to get the effect of a special key when "literally"
1391 * is TRUE. */
1392 start = arg;
1393 while ((*arg >= ' '
1394 #ifndef EBCDIC
1395 && *arg < DEL /* EBCDIC: chars above space are normal */
1396 #endif
1398 || (*arg == K_SPECIAL && !literally))
1399 ++arg;
1400 if (arg > start)
1401 stuffReadbuffLen(start, (long)(arg - start));
1403 /* stuff a single special character */
1404 if (*arg != NUL)
1406 #ifdef FEAT_MBYTE
1407 if (has_mbyte)
1408 c = mb_ptr2char_adv(&arg);
1409 else
1410 #endif
1411 c = *arg++;
1412 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1413 stuffcharReadbuff(Ctrl_V);
1414 stuffcharReadbuff(c);
1420 * If "regname" is a special register, return TRUE and store a pointer to its
1421 * value in "argp".
1424 get_spec_reg(regname, argp, allocated, errmsg)
1425 int regname;
1426 char_u **argp;
1427 int *allocated; /* return: TRUE when value was allocated */
1428 int errmsg; /* give error message when failing */
1430 int cnt;
1432 *argp = NULL;
1433 *allocated = FALSE;
1434 switch (regname)
1436 case '%': /* file name */
1437 if (errmsg)
1438 check_fname(); /* will give emsg if not set */
1439 *argp = curbuf->b_fname;
1440 return TRUE;
1442 case '#': /* alternate file name */
1443 *argp = getaltfname(errmsg); /* may give emsg if not set */
1444 return TRUE;
1446 #ifdef FEAT_EVAL
1447 case '=': /* result of expression */
1448 *argp = get_expr_line();
1449 *allocated = TRUE;
1450 return TRUE;
1451 #endif
1453 case ':': /* last command line */
1454 if (last_cmdline == NULL && errmsg)
1455 EMSG(_(e_nolastcmd));
1456 *argp = last_cmdline;
1457 return TRUE;
1459 case '/': /* last search-pattern */
1460 if (last_search_pat() == NULL && errmsg)
1461 EMSG(_(e_noprevre));
1462 *argp = last_search_pat();
1463 return TRUE;
1465 case '.': /* last inserted text */
1466 *argp = get_last_insert_save();
1467 *allocated = TRUE;
1468 if (*argp == NULL && errmsg)
1469 EMSG(_(e_noinstext));
1470 return TRUE;
1472 #ifdef FEAT_SEARCHPATH
1473 case Ctrl_F: /* Filename under cursor */
1474 case Ctrl_P: /* Path under cursor, expand via "path" */
1475 if (!errmsg)
1476 return FALSE;
1477 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
1478 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
1479 *allocated = TRUE;
1480 return TRUE;
1481 #endif
1483 case Ctrl_W: /* word under cursor */
1484 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1485 if (!errmsg)
1486 return FALSE;
1487 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1488 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1489 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1490 *allocated = TRUE;
1491 return TRUE;
1493 case '_': /* black hole: always empty */
1494 *argp = (char_u *)"";
1495 return TRUE;
1498 return FALSE;
1502 * Paste a yank register into the command line.
1503 * Only for non-special registers.
1504 * Used by CTRL-R command in command-line mode
1505 * insert_reg() can't be used here, because special characters from the
1506 * register contents will be interpreted as commands.
1508 * return FAIL for failure, OK otherwise
1511 cmdline_paste_reg(regname, literally, remcr)
1512 int regname;
1513 int literally; /* Insert text literally instead of "as typed" */
1514 int remcr; /* don't add trailing CR */
1516 long i;
1518 get_yank_register(regname, FALSE);
1519 if (y_current->y_array == NULL)
1520 return FAIL;
1522 for (i = 0; i < y_current->y_size; ++i)
1524 cmdline_paste_str(y_current->y_array[i], literally);
1526 /* Insert ^M between lines and after last line if type is MLINE.
1527 * Don't do this when "remcr" is TRUE and the next line is empty. */
1528 if (y_current->y_type == MLINE
1529 || (i < y_current->y_size - 1
1530 && !(remcr
1531 && i == y_current->y_size - 2
1532 && *y_current->y_array[i + 1] == NUL)))
1533 cmdline_paste_str((char_u *)"\r", literally);
1535 /* Check for CTRL-C, in case someone tries to paste a few thousand
1536 * lines and gets bored. */
1537 ui_breakcheck();
1538 if (got_int)
1539 return FAIL;
1541 return OK;
1544 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
1546 * Adjust the register name pointed to with "rp" for the clipboard being
1547 * used always and the clipboard being available.
1549 void
1550 adjust_clip_reg(rp)
1551 int *rp;
1553 /* If no reg. specified, and "unnamed" is in 'clipboard', use '*' reg. */
1554 if (*rp == 0 && clip_unnamed)
1555 *rp = '*';
1556 if (!clip_star.available && *rp == '*')
1557 *rp = 0;
1558 if (!clip_plus.available && *rp == '+')
1559 *rp = 0;
1561 #endif
1564 * op_delete - handle a delete operation
1566 * return FAIL if undo failed, OK otherwise.
1569 op_delete(oap)
1570 oparg_T *oap;
1572 int n;
1573 linenr_T lnum;
1574 char_u *ptr;
1575 #ifdef FEAT_VISUAL
1576 char_u *newp, *oldp;
1577 struct block_def bd;
1578 #endif
1579 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1580 int did_yank = FALSE;
1582 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1583 return OK;
1585 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1586 if (oap->empty)
1587 return u_save_cursor();
1589 if (!curbuf->b_p_ma)
1591 EMSG(_(e_modifiable));
1592 return FAIL;
1595 #ifdef FEAT_CLIPBOARD
1596 adjust_clip_reg(&oap->regname);
1597 #endif
1599 #ifdef FEAT_MBYTE
1600 if (has_mbyte)
1601 mb_adjust_opend(oap);
1602 #endif
1605 * Imitate the strange Vi behaviour: If the delete spans more than one line
1606 * and motion_type == MCHAR and the result is a blank line, make the delete
1607 * linewise. Don't do this for the change command or Visual mode.
1609 if ( oap->motion_type == MCHAR
1610 #ifdef FEAT_VISUAL
1611 && !oap->is_VIsual
1612 && !oap->block_mode
1613 #endif
1614 && oap->line_count > 1
1615 && oap->op_type == OP_DELETE)
1617 ptr = ml_get(oap->end.lnum) + oap->end.col + oap->inclusive;
1618 ptr = skipwhite(ptr);
1619 if (*ptr == NUL && inindent(0))
1620 oap->motion_type = MLINE;
1624 * Check for trying to delete (e.g. "D") in an empty line.
1625 * Note: For the change operator it is ok.
1627 if ( oap->motion_type == MCHAR
1628 && oap->line_count == 1
1629 && oap->op_type == OP_DELETE
1630 && *ml_get(oap->start.lnum) == NUL)
1633 * It's an error to operate on an empty region, when 'E' included in
1634 * 'cpoptions' (Vi compatible).
1636 #ifdef FEAT_VIRTUALEDIT
1637 if (virtual_op)
1638 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1639 * marks as if it happened. */
1640 goto setmarks;
1641 #endif
1642 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1643 beep_flush();
1644 return OK;
1648 * Do a yank of whatever we're about to delete.
1649 * If a yank register was specified, put the deleted text into that register.
1650 * For the black hole register '_' don't yank anything.
1652 if (oap->regname != '_')
1654 if (oap->regname != 0)
1656 /* check for read-only register */
1657 if (!valid_yank_reg(oap->regname, TRUE))
1659 beep_flush();
1660 return OK;
1662 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1663 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1664 did_yank = TRUE;
1668 * Put deleted text into register 1 and shift number registers if the
1669 * delete contains a line break, or when a regname has been specified.
1671 if (oap->regname != 0 || oap->motion_type == MLINE
1672 || oap->line_count > 1 || oap->use_reg_one)
1674 y_current = &y_regs[9];
1675 free_yank_all(); /* free register nine */
1676 for (n = 9; n > 1; --n)
1677 y_regs[n] = y_regs[n - 1];
1678 y_previous = y_current = &y_regs[1];
1679 y_regs[1].y_array = NULL; /* set register one to empty */
1680 if (op_yank(oap, TRUE, FALSE) == OK)
1681 did_yank = TRUE;
1684 /* Yank into small delete register when no register specified and the
1685 * delete is within one line. */
1686 if (oap->regname == 0 && oap->motion_type != MLINE
1687 && oap->line_count == 1)
1689 oap->regname = '-';
1690 get_yank_register(oap->regname, TRUE);
1691 if (op_yank(oap, TRUE, FALSE) == OK)
1692 did_yank = TRUE;
1693 oap->regname = 0;
1697 * If there's too much stuff to fit in the yank register, then get a
1698 * confirmation before doing the delete. This is crude, but simple.
1699 * And it avoids doing a delete of something we can't put back if we
1700 * want.
1702 if (!did_yank)
1704 int msg_silent_save = msg_silent;
1706 msg_silent = 0; /* must display the prompt */
1707 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1708 msg_silent = msg_silent_save;
1709 if (n != 'y')
1711 EMSG(_(e_abort));
1712 return FAIL;
1717 #ifdef FEAT_VISUAL
1719 * block mode delete
1721 if (oap->block_mode)
1723 if (u_save((linenr_T)(oap->start.lnum - 1),
1724 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1725 return FAIL;
1727 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1729 block_prep(oap, &bd, lnum, TRUE);
1730 if (bd.textlen == 0) /* nothing to delete */
1731 continue;
1733 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1734 if (lnum == curwin->w_cursor.lnum)
1736 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1737 # ifdef FEAT_VIRTUALEDIT
1738 curwin->w_cursor.coladd = 0;
1739 # endif
1742 /* n == number of chars deleted
1743 * If we delete a TAB, it may be replaced by several characters.
1744 * Thus the number of characters may increase!
1746 n = bd.textlen - bd.startspaces - bd.endspaces;
1747 oldp = ml_get(lnum);
1748 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1749 if (newp == NULL)
1750 continue;
1751 /* copy up to deleted part */
1752 mch_memmove(newp, oldp, (size_t)bd.textcol);
1753 /* insert spaces */
1754 copy_spaces(newp + bd.textcol,
1755 (size_t)(bd.startspaces + bd.endspaces));
1756 /* copy the part after the deleted part */
1757 oldp += bd.textcol + bd.textlen;
1758 mch_memmove(newp + bd.textcol + bd.startspaces + bd.endspaces,
1759 oldp, STRLEN(oldp) + 1);
1760 /* replace the line */
1761 ml_replace(lnum, newp, FALSE);
1764 check_cursor_col();
1765 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1766 oap->end.lnum + 1, 0L);
1767 oap->line_count = 0; /* no lines deleted */
1769 else
1770 #endif
1771 if (oap->motion_type == MLINE)
1773 if (oap->op_type == OP_CHANGE)
1775 /* Delete the lines except the first one. Temporarily move the
1776 * cursor to the next line. Save the current line number, if the
1777 * last line is deleted it may be changed.
1779 if (oap->line_count > 1)
1781 lnum = curwin->w_cursor.lnum;
1782 ++curwin->w_cursor.lnum;
1783 del_lines((long)(oap->line_count - 1), TRUE);
1784 curwin->w_cursor.lnum = lnum;
1786 if (u_save_cursor() == FAIL)
1787 return FAIL;
1788 if (curbuf->b_p_ai) /* don't delete indent */
1790 beginline(BL_WHITE); /* cursor on first non-white */
1791 did_ai = TRUE; /* delete the indent when ESC hit */
1792 ai_col = curwin->w_cursor.col;
1794 else
1795 beginline(0); /* cursor in column 0 */
1796 truncate_line(FALSE); /* delete the rest of the line */
1797 /* leave cursor past last char in line */
1798 if (oap->line_count > 1)
1799 u_clearline(); /* "U" command not possible after "2cc" */
1801 else
1803 del_lines(oap->line_count, TRUE);
1804 beginline(BL_WHITE | BL_FIX);
1805 u_clearline(); /* "U" command not possible after "dd" */
1808 else
1810 #ifdef FEAT_VIRTUALEDIT
1811 if (virtual_op)
1813 int endcol = 0;
1815 /* For virtualedit: break the tabs that are partly included. */
1816 if (gchar_pos(&oap->start) == '\t')
1818 if (u_save_cursor() == FAIL) /* save first line for undo */
1819 return FAIL;
1820 if (oap->line_count == 1)
1821 endcol = getviscol2(oap->end.col, oap->end.coladd);
1822 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1823 oap->start = curwin->w_cursor;
1824 if (oap->line_count == 1)
1826 coladvance(endcol);
1827 oap->end.col = curwin->w_cursor.col;
1828 oap->end.coladd = curwin->w_cursor.coladd;
1829 curwin->w_cursor = oap->start;
1833 /* Break a tab only when it's included in the area. */
1834 if (gchar_pos(&oap->end) == '\t'
1835 && (int)oap->end.coladd < oap->inclusive)
1837 /* save last line for undo */
1838 if (u_save((linenr_T)(oap->end.lnum - 1),
1839 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1840 return FAIL;
1841 curwin->w_cursor = oap->end;
1842 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1843 oap->end = curwin->w_cursor;
1844 curwin->w_cursor = oap->start;
1847 #endif
1849 if (oap->line_count == 1) /* delete characters within one line */
1851 if (u_save_cursor() == FAIL) /* save line for undo */
1852 return FAIL;
1854 /* if 'cpoptions' contains '$', display '$' at end of change */
1855 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
1856 && oap->op_type == OP_CHANGE
1857 && oap->end.lnum == curwin->w_cursor.lnum
1858 #ifdef FEAT_VISUAL
1859 && !oap->is_VIsual
1860 #endif
1862 display_dollar(oap->end.col - !oap->inclusive);
1864 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1866 #ifdef FEAT_VIRTUALEDIT
1867 if (virtual_op)
1869 /* fix up things for virtualedit-delete:
1870 * break the tabs which are going to get in our way
1872 char_u *curline = ml_get_curline();
1873 int len = (int)STRLEN(curline);
1875 if (oap->end.coladd != 0
1876 && (int)oap->end.col >= len - 1
1877 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1878 n++;
1879 /* Delete at least one char (e.g, when on a control char). */
1880 if (n == 0 && oap->start.coladd != oap->end.coladd)
1881 n = 1;
1883 /* When deleted a char in the line, reset coladd. */
1884 if (gchar_cursor() != NUL)
1885 curwin->w_cursor.coladd = 0;
1887 #endif
1888 (void)del_bytes((long)n, !virtual_op, oap->op_type == OP_DELETE
1889 #ifdef FEAT_VISUAL
1890 && !oap->is_VIsual
1891 #endif
1894 else /* delete characters between lines */
1896 pos_T curpos;
1898 /* save deleted and changed lines for undo */
1899 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1900 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1901 return FAIL;
1903 truncate_line(TRUE); /* delete from cursor to end of line */
1905 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1906 ++curwin->w_cursor.lnum;
1907 del_lines((long)(oap->line_count - 2), FALSE);
1909 /* delete from start of line until op_end */
1910 curwin->w_cursor.col = 0;
1911 (void)del_bytes((long)(oap->end.col + 1 - !oap->inclusive),
1912 !virtual_op, oap->op_type == OP_DELETE
1913 #ifdef FEAT_VISUAL
1914 && !oap->is_VIsual
1915 #endif
1917 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
1919 (void)do_join(FALSE);
1923 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
1925 #ifdef FEAT_VIRTUALEDIT
1926 setmarks:
1927 #endif
1928 #ifdef FEAT_VISUAL
1929 if (oap->block_mode)
1931 curbuf->b_op_end.lnum = oap->end.lnum;
1932 curbuf->b_op_end.col = oap->start.col;
1934 else
1935 #endif
1936 curbuf->b_op_end = oap->start;
1937 curbuf->b_op_start = oap->start;
1939 return OK;
1942 #ifdef FEAT_MBYTE
1944 * Adjust end of operating area for ending on a multi-byte character.
1945 * Used for deletion.
1947 static void
1948 mb_adjust_opend(oap)
1949 oparg_T *oap;
1951 char_u *p;
1953 if (oap->inclusive)
1955 p = ml_get(oap->end.lnum);
1956 oap->end.col += mb_tail_off(p, p + oap->end.col);
1959 #endif
1961 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1963 * Replace a whole area with one character.
1966 op_replace(oap, c)
1967 oparg_T *oap;
1968 int c;
1970 int n, numc;
1971 #ifdef FEAT_MBYTE
1972 int num_chars;
1973 #endif
1974 char_u *newp, *oldp;
1975 size_t oldlen;
1976 struct block_def bd;
1978 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
1979 return OK; /* nothing to do */
1981 #ifdef FEAT_MBYTE
1982 if (has_mbyte)
1983 mb_adjust_opend(oap);
1984 #endif
1986 if (u_save((linenr_T)(oap->start.lnum - 1),
1987 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1988 return FAIL;
1991 * block mode replace
1993 if (oap->block_mode)
1995 bd.is_MAX = (curwin->w_curswant == MAXCOL);
1996 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
1998 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
1999 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2000 continue; /* nothing to replace */
2002 /* n == number of extra chars required
2003 * If we split a TAB, it may be replaced by several characters.
2004 * Thus the number of characters may increase!
2006 #ifdef FEAT_VIRTUALEDIT
2007 /* If the range starts in virtual space, count the initial
2008 * coladd offset as part of "startspaces" */
2009 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2011 pos_T vpos;
2013 getvpos(&vpos, oap->start_vcol);
2014 bd.startspaces += vpos.coladd;
2015 n = bd.startspaces;
2017 else
2018 #endif
2019 /* allow for pre spaces */
2020 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2022 /* allow for post spp */
2023 n += (bd.endspaces
2024 #ifdef FEAT_VIRTUALEDIT
2025 && !bd.is_oneChar
2026 #endif
2027 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2028 /* Figure out how many characters to replace. */
2029 numc = oap->end_vcol - oap->start_vcol + 1;
2030 if (bd.is_short && (!virtual_op || bd.is_MAX))
2031 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2033 #ifdef FEAT_MBYTE
2034 /* A double-wide character can be replaced only up to half the
2035 * times. */
2036 if ((*mb_char2cells)(c) > 1)
2038 if ((numc & 1) && !bd.is_short)
2040 ++bd.endspaces;
2041 ++n;
2043 numc = numc / 2;
2046 /* Compute bytes needed, move character count to num_chars. */
2047 num_chars = numc;
2048 numc *= (*mb_char2len)(c);
2049 #endif
2050 /* oldlen includes textlen, so don't double count */
2051 n += numc - bd.textlen;
2053 oldp = ml_get_curline();
2054 oldlen = STRLEN(oldp);
2055 newp = alloc_check((unsigned)oldlen + 1 + n);
2056 if (newp == NULL)
2057 continue;
2058 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2059 /* copy up to deleted part */
2060 mch_memmove(newp, oldp, (size_t)bd.textcol);
2061 oldp += bd.textcol + bd.textlen;
2062 /* insert pre-spaces */
2063 copy_spaces(newp + bd.textcol, (size_t)bd.startspaces);
2064 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
2065 #ifdef FEAT_MBYTE
2066 if (has_mbyte)
2068 n = (int)STRLEN(newp);
2069 while (--num_chars >= 0)
2070 n += (*mb_char2bytes)(c, newp + n);
2072 else
2073 #endif
2074 copy_chars(newp + STRLEN(newp), (size_t)numc, c);
2075 if (!bd.is_short)
2077 /* insert post-spaces */
2078 copy_spaces(newp + STRLEN(newp), (size_t)bd.endspaces);
2079 /* copy the part after the changed part */
2080 mch_memmove(newp + STRLEN(newp), oldp, STRLEN(oldp) + 1);
2082 /* replace the line */
2083 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
2086 else
2089 * MCHAR and MLINE motion replace.
2091 if (oap->motion_type == MLINE)
2093 oap->start.col = 0;
2094 curwin->w_cursor.col = 0;
2095 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2096 if (oap->end.col)
2097 --oap->end.col;
2099 else if (!oap->inclusive)
2100 dec(&(oap->end));
2102 while (ltoreq(curwin->w_cursor, oap->end))
2104 n = gchar_cursor();
2105 if (n != NUL)
2107 #ifdef FEAT_MBYTE
2108 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2110 /* This is slow, but it handles replacing a single-byte
2111 * with a multi-byte and the other way around. */
2112 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
2113 n = State;
2114 State = REPLACE;
2115 ins_char(c);
2116 State = n;
2117 /* Backup to the replaced character. */
2118 dec_cursor();
2120 else
2121 #endif
2123 #ifdef FEAT_VIRTUALEDIT
2124 if (n == TAB)
2126 int end_vcol = 0;
2128 if (curwin->w_cursor.lnum == oap->end.lnum)
2130 /* oap->end has to be recalculated when
2131 * the tab breaks */
2132 end_vcol = getviscol2(oap->end.col,
2133 oap->end.coladd);
2135 coladvance_force(getviscol());
2136 if (curwin->w_cursor.lnum == oap->end.lnum)
2137 getvpos(&oap->end, end_vcol);
2139 #endif
2140 pchar(curwin->w_cursor, c);
2143 #ifdef FEAT_VIRTUALEDIT
2144 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2146 int virtcols = oap->end.coladd;
2148 if (curwin->w_cursor.lnum == oap->start.lnum
2149 && oap->start.col == oap->end.col && oap->start.coladd)
2150 virtcols -= oap->start.coladd;
2152 /* oap->end has been trimmed so it's effectively inclusive;
2153 * as a result an extra +1 must be counted so we don't
2154 * trample the NUL byte. */
2155 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2156 curwin->w_cursor.col -= (virtcols + 1);
2157 for (; virtcols >= 0; virtcols--)
2159 pchar(curwin->w_cursor, c);
2160 if (inc(&curwin->w_cursor) == -1)
2161 break;
2164 #endif
2166 /* Advance to next character, stop at the end of the file. */
2167 if (inc_cursor() == -1)
2168 break;
2172 curwin->w_cursor = oap->start;
2173 check_cursor();
2174 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2176 /* Set "'[" and "']" marks. */
2177 curbuf->b_op_start = oap->start;
2178 curbuf->b_op_end = oap->end;
2180 return OK;
2182 #endif
2185 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2187 void
2188 op_tilde(oap)
2189 oparg_T *oap;
2191 pos_T pos;
2192 #ifdef FEAT_VISUAL
2193 struct block_def bd;
2194 int todo;
2195 #endif
2196 int did_change = 0;
2198 if (u_save((linenr_T)(oap->start.lnum - 1),
2199 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2200 return;
2202 pos = oap->start;
2203 #ifdef FEAT_VISUAL
2204 if (oap->block_mode) /* Visual block mode */
2206 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2208 block_prep(oap, &bd, pos.lnum, FALSE);
2209 pos.col = bd.textcol;
2210 for (todo = bd.textlen; todo > 0; --todo)
2212 # ifdef FEAT_MBYTE
2213 if (has_mbyte)
2214 todo -= (*mb_ptr2len)(ml_get_pos(&pos)) - 1;
2215 # endif
2216 did_change |= swapchar(oap->op_type, &pos);
2217 if (inc(&pos) == -1) /* at end of file */
2218 break;
2220 # ifdef FEAT_NETBEANS_INTG
2221 if (usingNetbeans && did_change)
2223 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2225 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2226 (long)bd.textlen);
2227 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
2228 &ptr[bd.textcol], bd.textlen);
2230 # endif
2232 if (did_change)
2233 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2235 else /* not block mode */
2236 #endif
2238 if (oap->motion_type == MLINE)
2240 oap->start.col = 0;
2241 pos.col = 0;
2242 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2243 if (oap->end.col)
2244 --oap->end.col;
2246 else if (!oap->inclusive)
2247 dec(&(oap->end));
2249 while (ltoreq(pos, oap->end))
2251 did_change |= swapchar(oap->op_type, &pos);
2252 if (inc(&pos) == -1) /* at end of file */
2253 break;
2256 if (did_change)
2258 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2259 0L);
2260 #ifdef FEAT_NETBEANS_INTG
2261 if (usingNetbeans && did_change)
2263 char_u *ptr;
2264 int count;
2266 pos = oap->start;
2267 while (pos.lnum < oap->end.lnum)
2269 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2270 count = (int)STRLEN(ptr) - pos.col;
2271 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
2272 netbeans_inserted(curbuf, pos.lnum, pos.col,
2273 &ptr[pos.col], count);
2274 pos.col = 0;
2275 pos.lnum++;
2277 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2278 count = oap->end.col - pos.col + 1;
2279 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
2280 netbeans_inserted(curbuf, pos.lnum, pos.col,
2281 &ptr[pos.col], count);
2283 #endif
2287 #ifdef FEAT_VISUAL
2288 if (!did_change && oap->is_VIsual)
2289 /* No change: need to remove the Visual selection */
2290 redraw_curbuf_later(INVERTED);
2291 #endif
2294 * Set '[ and '] marks.
2296 curbuf->b_op_start = oap->start;
2297 curbuf->b_op_end = oap->end;
2299 if (oap->line_count > p_report)
2301 if (oap->line_count == 1)
2302 MSG(_("1 line changed"));
2303 else
2304 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2309 * If op_type == OP_UPPER: make uppercase,
2310 * if op_type == OP_LOWER: make lowercase,
2311 * if op_type == OP_ROT13: do rot13 encoding,
2312 * else swap case of character at 'pos'
2313 * returns TRUE when something actually changed.
2316 swapchar(op_type, pos)
2317 int op_type;
2318 pos_T *pos;
2320 int c;
2321 int nc;
2323 c = gchar_pos(pos);
2325 /* Only do rot13 encoding for ASCII characters. */
2326 if (c >= 0x80 && op_type == OP_ROT13)
2327 return FALSE;
2329 #ifdef FEAT_MBYTE
2330 if (op_type == OP_UPPER && enc_latin1like && c == 0xdf)
2332 pos_T sp = curwin->w_cursor;
2334 /* Special handling of German sharp s: change to "SS". */
2335 curwin->w_cursor = *pos;
2336 del_char(FALSE);
2337 ins_char('S');
2338 ins_char('S');
2339 curwin->w_cursor = sp;
2340 inc(pos);
2343 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2344 return FALSE;
2345 #endif
2346 nc = c;
2347 if (MB_ISLOWER(c))
2349 if (op_type == OP_ROT13)
2350 nc = ROT13(c, 'a');
2351 else if (op_type != OP_LOWER)
2352 nc = MB_TOUPPER(c);
2354 else if (MB_ISUPPER(c))
2356 if (op_type == OP_ROT13)
2357 nc = ROT13(c, 'A');
2358 else if (op_type != OP_UPPER)
2359 nc = MB_TOLOWER(c);
2361 if (nc != c)
2363 #ifdef FEAT_MBYTE
2364 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2366 pos_T sp = curwin->w_cursor;
2368 curwin->w_cursor = *pos;
2369 del_char(FALSE);
2370 ins_char(nc);
2371 curwin->w_cursor = sp;
2373 else
2374 #endif
2375 pchar(*pos, nc);
2376 return TRUE;
2378 return FALSE;
2381 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2383 * op_insert - Insert and append operators for Visual mode.
2385 void
2386 op_insert(oap, count1)
2387 oparg_T *oap;
2388 long count1;
2390 long ins_len, pre_textlen = 0;
2391 char_u *firstline, *ins_text;
2392 struct block_def bd;
2393 int i;
2395 /* edit() changes this - record it for OP_APPEND */
2396 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2398 /* vis block is still marked. Get rid of it now. */
2399 curwin->w_cursor.lnum = oap->start.lnum;
2400 update_screen(INVERTED);
2402 if (oap->block_mode)
2404 #ifdef FEAT_VIRTUALEDIT
2405 /* When 'virtualedit' is used, need to insert the extra spaces before
2406 * doing block_prep(). When only "block" is used, virtual edit is
2407 * already disabled, but still need it when calling
2408 * coladvance_force(). */
2409 if (curwin->w_cursor.coladd > 0)
2411 int old_ve_flags = ve_flags;
2413 ve_flags = VE_ALL;
2414 if (u_save_cursor() == FAIL)
2415 return;
2416 coladvance_force(oap->op_type == OP_APPEND
2417 ? oap->end_vcol + 1 : getviscol());
2418 if (oap->op_type == OP_APPEND)
2419 --curwin->w_cursor.col;
2420 ve_flags = old_ve_flags;
2422 #endif
2423 /* Get the info about the block before entering the text */
2424 block_prep(oap, &bd, oap->start.lnum, TRUE);
2425 firstline = ml_get(oap->start.lnum) + bd.textcol;
2426 if (oap->op_type == OP_APPEND)
2427 firstline += bd.textlen;
2428 pre_textlen = (long)STRLEN(firstline);
2431 if (oap->op_type == OP_APPEND)
2433 if (oap->block_mode
2434 #ifdef FEAT_VIRTUALEDIT
2435 && curwin->w_cursor.coladd == 0
2436 #endif
2439 /* Move the cursor to the character right of the block. */
2440 curwin->w_set_curswant = TRUE;
2441 while (*ml_get_cursor() != NUL
2442 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2443 ++curwin->w_cursor.col;
2444 if (bd.is_short && !bd.is_MAX)
2446 /* First line was too short, make it longer and adjust the
2447 * values in "bd". */
2448 if (u_save_cursor() == FAIL)
2449 return;
2450 for (i = 0; i < bd.endspaces; ++i)
2451 ins_char(' ');
2452 bd.textlen += bd.endspaces;
2455 else
2457 curwin->w_cursor = oap->end;
2458 check_cursor_col();
2460 /* Works just like an 'i'nsert on the next character. */
2461 if (!lineempty(curwin->w_cursor.lnum)
2462 && oap->start_vcol != oap->end_vcol)
2463 inc_cursor();
2467 edit(NUL, FALSE, (linenr_T)count1);
2469 /* if user has moved off this line, we don't know what to do, so do
2470 * nothing */
2471 if (curwin->w_cursor.lnum != oap->start.lnum)
2472 return;
2474 if (oap->block_mode)
2476 struct block_def bd2;
2479 * Spaces and tabs in the indent may have changed to other spaces and
2480 * tabs. Get the starting column again and correct the lenght.
2481 * Don't do this when "$" used, end-of-line will have changed.
2483 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2484 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2486 if (oap->op_type == OP_APPEND)
2488 pre_textlen += bd2.textlen - bd.textlen;
2489 if (bd2.endspaces)
2490 --bd2.textlen;
2492 bd.textcol = bd2.textcol;
2493 bd.textlen = bd2.textlen;
2497 * Subsequent calls to ml_get() flush the firstline data - take a
2498 * copy of the required string.
2500 firstline = ml_get(oap->start.lnum) + bd.textcol;
2501 if (oap->op_type == OP_APPEND)
2502 firstline += bd.textlen;
2503 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
2505 ins_text = vim_strnsave(firstline, (int)ins_len);
2506 if (ins_text != NULL)
2508 /* block handled here */
2509 if (u_save(oap->start.lnum,
2510 (linenr_T)(oap->end.lnum + 1)) == OK)
2511 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2512 &bd);
2514 curwin->w_cursor.col = oap->start.col;
2515 check_cursor();
2516 vim_free(ins_text);
2521 #endif
2524 * op_change - handle a change operation
2526 * return TRUE if edit() returns because of a CTRL-O command
2529 op_change(oap)
2530 oparg_T *oap;
2532 colnr_T l;
2533 int retval;
2534 #ifdef FEAT_VISUALEXTRA
2535 long offset;
2536 linenr_T linenr;
2537 long ins_len, pre_textlen = 0;
2538 char_u *firstline;
2539 char_u *ins_text, *newp, *oldp;
2540 struct block_def bd;
2541 #endif
2543 l = oap->start.col;
2544 if (oap->motion_type == MLINE)
2546 l = 0;
2547 #ifdef FEAT_SMARTINDENT
2548 if (!p_paste && curbuf->b_p_si
2549 # ifdef FEAT_CINDENT
2550 && !curbuf->b_p_cin
2551 # endif
2553 can_si = TRUE; /* It's like opening a new line, do si */
2554 #endif
2557 /* First delete the text in the region. In an empty buffer only need to
2558 * save for undo */
2559 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2561 if (u_save_cursor() == FAIL)
2562 return FALSE;
2564 else if (op_delete(oap) == FAIL)
2565 return FALSE;
2567 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
2568 && !virtual_op)
2569 inc_cursor();
2571 #ifdef FEAT_VISUALEXTRA
2572 /* check for still on same line (<CR> in inserted text meaningless) */
2573 /* skip blank lines too */
2574 if (oap->block_mode)
2576 # ifdef FEAT_VIRTUALEDIT
2577 /* Add spaces before getting the current line length. */
2578 if (virtual_op && (curwin->w_cursor.coladd > 0
2579 || gchar_cursor() == NUL))
2580 coladvance_force(getviscol());
2581 # endif
2582 pre_textlen = (long)STRLEN(ml_get(oap->start.lnum));
2583 bd.textcol = curwin->w_cursor.col;
2585 #endif
2587 #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2588 if (oap->motion_type == MLINE)
2589 fix_indent();
2590 #endif
2592 retval = edit(NUL, FALSE, (linenr_T)1);
2594 #ifdef FEAT_VISUALEXTRA
2596 * In Visual block mode, handle copying the new text to all lines of the
2597 * block.
2599 if (oap->block_mode && oap->start.lnum != oap->end.lnum)
2601 firstline = ml_get(oap->start.lnum);
2603 * Subsequent calls to ml_get() flush the firstline data - take a
2604 * copy of the required bit.
2606 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
2608 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2610 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
2611 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2612 linenr++)
2614 block_prep(oap, &bd, linenr, TRUE);
2615 if (!bd.is_short || virtual_op)
2617 # ifdef FEAT_VIRTUALEDIT
2618 pos_T vpos;
2620 /* If the block starts in virtual space, count the
2621 * initial coladd offset as part of "startspaces" */
2622 if (bd.is_short)
2624 linenr_T lnum = curwin->w_cursor.lnum;
2626 curwin->w_cursor.lnum = linenr;
2627 (void)getvpos(&vpos, oap->start_vcol);
2628 curwin->w_cursor.lnum = lnum;
2630 else
2631 vpos.coladd = 0;
2632 # endif
2633 oldp = ml_get(linenr);
2634 newp = alloc_check((unsigned)(STRLEN(oldp)
2635 # ifdef FEAT_VIRTUALEDIT
2636 + vpos.coladd
2637 # endif
2638 + ins_len + 1));
2639 if (newp == NULL)
2640 continue;
2641 /* copy up to block start */
2642 mch_memmove(newp, oldp, (size_t)bd.textcol);
2643 offset = bd.textcol;
2644 # ifdef FEAT_VIRTUALEDIT
2645 copy_spaces(newp + offset, (size_t)vpos.coladd);
2646 offset += vpos.coladd;
2647 # endif
2648 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2649 offset += ins_len;
2650 oldp += bd.textcol;
2651 mch_memmove(newp + offset, oldp, STRLEN(oldp) + 1);
2652 ml_replace(linenr, newp, FALSE);
2655 check_cursor();
2657 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2659 vim_free(ins_text);
2662 #endif
2664 return retval;
2668 * set all the yank registers to empty (called from main())
2670 void
2671 init_yank()
2673 int i;
2675 for (i = 0; i < NUM_REGISTERS; ++i)
2676 y_regs[i].y_array = NULL;
2679 #if defined(EXITFREE) || defined(PROTO)
2680 void
2681 clear_registers()
2683 int i;
2685 for (i = 0; i < NUM_REGISTERS; ++i)
2687 y_current = &y_regs[i];
2688 if (y_current->y_array != NULL)
2689 free_yank_all();
2692 #endif
2695 * Free "n" lines from the current yank register.
2696 * Called for normal freeing and in case of error.
2698 static void
2699 free_yank(n)
2700 long n;
2702 if (y_current->y_array != NULL)
2704 long i;
2706 for (i = n; --i >= 0; )
2708 #ifdef AMIGA /* only for very slow machines */
2709 if ((i & 1023) == 1023) /* this may take a while */
2712 * This message should never cause a hit-return message.
2713 * Overwrite this message with any next message.
2715 ++no_wait_return;
2716 smsg((char_u *)_("freeing %ld lines"), i + 1);
2717 --no_wait_return;
2718 msg_didout = FALSE;
2719 msg_col = 0;
2721 #endif
2722 vim_free(y_current->y_array[i]);
2724 vim_free(y_current->y_array);
2725 y_current->y_array = NULL;
2726 #ifdef AMIGA
2727 if (n >= 1000)
2728 MSG("");
2729 #endif
2733 static void
2734 free_yank_all()
2736 free_yank(y_current->y_size);
2740 * Yank the text between "oap->start" and "oap->end" into a yank register.
2741 * If we are to append (uppercase register), we first yank into a new yank
2742 * register and then concatenate the old and the new one (so we keep the old
2743 * one in case of out-of-memory).
2745 * return FAIL for failure, OK otherwise
2748 op_yank(oap, deleting, mess)
2749 oparg_T *oap;
2750 int deleting;
2751 int mess;
2753 long y_idx; /* index in y_array[] */
2754 struct yankreg *curr; /* copy of y_current */
2755 struct yankreg newreg; /* new yank register when appending */
2756 char_u **new_ptr;
2757 linenr_T lnum; /* current line number */
2758 long j;
2759 int yanktype = oap->motion_type;
2760 long yanklines = oap->line_count;
2761 linenr_T yankendlnum = oap->end.lnum;
2762 char_u *p;
2763 char_u *pnew;
2764 struct block_def bd;
2766 /* check for read-only register */
2767 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2769 beep_flush();
2770 return FAIL;
2772 if (oap->regname == '_') /* black hole: nothing to do */
2773 return OK;
2775 #ifdef FEAT_CLIPBOARD
2776 if (!clip_star.available && oap->regname == '*')
2777 oap->regname = 0;
2778 else if (!clip_plus.available && oap->regname == '+')
2779 oap->regname = 0;
2780 #endif
2782 if (!deleting) /* op_delete() already set y_current */
2783 get_yank_register(oap->regname, TRUE);
2785 curr = y_current;
2786 /* append to existing contents */
2787 if (y_append && y_current->y_array != NULL)
2788 y_current = &newreg;
2789 else
2790 free_yank_all(); /* free previously yanked lines */
2793 * If the cursor was in column 1 before and after the movement, and the
2794 * operator is not inclusive, the yank is always linewise.
2796 if ( oap->motion_type == MCHAR
2797 && oap->start.col == 0
2798 && !oap->inclusive
2799 #ifdef FEAT_VISUAL
2800 && (!oap->is_VIsual || *p_sel == 'o')
2801 && !oap->block_mode
2802 #endif
2803 && oap->end.col == 0
2804 && yanklines > 1)
2806 yanktype = MLINE;
2807 --yankendlnum;
2808 --yanklines;
2811 y_current->y_size = yanklines;
2812 y_current->y_type = yanktype; /* set the yank register type */
2813 #ifdef FEAT_VISUAL
2814 y_current->y_width = 0;
2815 #endif
2816 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
2817 yanklines), TRUE);
2819 if (y_current->y_array == NULL)
2821 y_current = curr;
2822 return FAIL;
2825 y_idx = 0;
2826 lnum = oap->start.lnum;
2828 #ifdef FEAT_VISUAL
2829 if (oap->block_mode)
2831 /* Visual block mode */
2832 y_current->y_type = MBLOCK; /* set the yank register type */
2833 y_current->y_width = oap->end_vcol - oap->start_vcol;
2835 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
2836 y_current->y_width--;
2838 #endif
2840 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
2842 switch (y_current->y_type)
2844 #ifdef FEAT_VISUAL
2845 case MBLOCK:
2846 block_prep(oap, &bd, lnum, FALSE);
2847 if (yank_copy_line(&bd, y_idx) == FAIL)
2848 goto fail;
2849 break;
2850 #endif
2852 case MLINE:
2853 if ((y_current->y_array[y_idx] =
2854 vim_strsave(ml_get(lnum))) == NULL)
2855 goto fail;
2856 break;
2858 case MCHAR:
2860 colnr_T startcol = 0, endcol = MAXCOL;
2861 #ifdef FEAT_VIRTUALEDIT
2862 int is_oneChar = FALSE;
2863 colnr_T cs, ce;
2864 #endif
2865 p = ml_get(lnum);
2866 bd.startspaces = 0;
2867 bd.endspaces = 0;
2869 if (lnum == oap->start.lnum)
2871 startcol = oap->start.col;
2872 #ifdef FEAT_VIRTUALEDIT
2873 if (virtual_op)
2875 getvcol(curwin, &oap->start, &cs, NULL, &ce);
2876 if (ce != cs && oap->start.coladd > 0)
2878 /* Part of a tab selected -- but don't
2879 * double-count it. */
2880 bd.startspaces = (ce - cs + 1)
2881 - oap->start.coladd;
2882 startcol++;
2885 #endif
2888 if (lnum == oap->end.lnum)
2890 endcol = oap->end.col;
2891 #ifdef FEAT_VIRTUALEDIT
2892 if (virtual_op)
2894 getvcol(curwin, &oap->end, &cs, NULL, &ce);
2895 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
2896 # ifdef FEAT_MBYTE
2897 /* Don't add space for double-wide
2898 * char; endcol will be on last byte
2899 * of multi-byte char. */
2900 && (*mb_head_off)(p, p + endcol) == 0
2901 # endif
2904 if (oap->start.lnum == oap->end.lnum
2905 && oap->start.col == oap->end.col)
2907 /* Special case: inside a single char */
2908 is_oneChar = TRUE;
2909 bd.startspaces = oap->end.coladd
2910 - oap->start.coladd + oap->inclusive;
2911 endcol = startcol;
2913 else
2915 bd.endspaces = oap->end.coladd
2916 + oap->inclusive;
2917 endcol -= oap->inclusive;
2921 #endif
2923 if (startcol > endcol
2924 #ifdef FEAT_VIRTUALEDIT
2925 || is_oneChar
2926 #endif
2928 bd.textlen = 0;
2929 else
2931 if (endcol == MAXCOL)
2932 endcol = (colnr_T)STRLEN(p);
2933 bd.textlen = endcol - startcol + oap->inclusive;
2935 bd.textstart = p + startcol;
2936 if (yank_copy_line(&bd, y_idx) == FAIL)
2937 goto fail;
2938 break;
2940 /* NOTREACHED */
2944 if (curr != y_current) /* append the new block to the old block */
2946 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
2947 (curr->y_size + y_current->y_size)), TRUE);
2948 if (new_ptr == NULL)
2949 goto fail;
2950 for (j = 0; j < curr->y_size; ++j)
2951 new_ptr[j] = curr->y_array[j];
2952 vim_free(curr->y_array);
2953 curr->y_array = new_ptr;
2955 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
2956 curr->y_type = MLINE;
2958 /* Concatenate the last line of the old block with the first line of
2959 * the new block, unless being Vi compatible. */
2960 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
2962 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
2963 + STRLEN(y_current->y_array[0]) + 1), TRUE);
2964 if (pnew == NULL)
2966 y_idx = y_current->y_size - 1;
2967 goto fail;
2969 STRCPY(pnew, curr->y_array[--j]);
2970 STRCAT(pnew, y_current->y_array[0]);
2971 vim_free(curr->y_array[j]);
2972 vim_free(y_current->y_array[0]);
2973 curr->y_array[j++] = pnew;
2974 y_idx = 1;
2976 else
2977 y_idx = 0;
2978 while (y_idx < y_current->y_size)
2979 curr->y_array[j++] = y_current->y_array[y_idx++];
2980 curr->y_size = j;
2981 vim_free(y_current->y_array);
2982 y_current = curr;
2984 if (mess) /* Display message about yank? */
2986 if (yanktype == MCHAR
2987 #ifdef FEAT_VISUAL
2988 && !oap->block_mode
2989 #endif
2990 && yanklines == 1)
2991 yanklines = 0;
2992 /* Some versions of Vi use ">=" here, some don't... */
2993 if (yanklines > p_report)
2995 /* redisplay now, so message is not deleted */
2996 update_topline_redraw();
2997 if (yanklines == 1)
2999 #ifdef FEAT_VISUAL
3000 if (oap->block_mode)
3001 MSG(_("block of 1 line yanked"));
3002 else
3003 #endif
3004 MSG(_("1 line yanked"));
3006 #ifdef FEAT_VISUAL
3007 else if (oap->block_mode)
3008 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
3009 #endif
3010 else
3011 smsg((char_u *)_("%ld lines yanked"), yanklines);
3016 * Set "'[" and "']" marks.
3018 curbuf->b_op_start = oap->start;
3019 curbuf->b_op_end = oap->end;
3020 if (yanktype == MLINE
3021 #ifdef FEAT_VISUAL
3022 && !oap->block_mode
3023 #endif
3026 curbuf->b_op_start.col = 0;
3027 curbuf->b_op_end.col = MAXCOL;
3030 #ifdef FEAT_CLIPBOARD
3032 * If we were yanking to the '*' register, send result to clipboard.
3033 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3034 * to the '*' register.
3036 if (clip_star.available
3037 && (curr == &(y_regs[STAR_REGISTER])
3038 || (!deleting && oap->regname == 0 && clip_unnamed)))
3040 if (curr != &(y_regs[STAR_REGISTER]))
3041 /* Copy the text from register 0 to the clipboard register. */
3042 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3044 clip_own_selection(&clip_star);
3045 clip_gen_set_selection(&clip_star);
3048 # ifdef FEAT_X11
3050 * If we were yanking to the '+' register, send result to selection.
3051 * Also copy to the '*' register, in case auto-select is off.
3053 else if (clip_plus.available && curr == &(y_regs[PLUS_REGISTER]))
3055 /* No need to copy to * register upon 'unnamed' now - see below */
3056 clip_own_selection(&clip_plus);
3057 clip_gen_set_selection(&clip_plus);
3058 if (!clip_isautosel())
3060 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3061 clip_own_selection(&clip_star);
3062 clip_gen_set_selection(&clip_star);
3065 # endif
3066 #endif
3068 return OK;
3070 fail: /* free the allocated lines */
3071 free_yank(y_idx + 1);
3072 y_current = curr;
3073 return FAIL;
3076 static int
3077 yank_copy_line(bd, y_idx)
3078 struct block_def *bd;
3079 long y_idx;
3081 char_u *pnew;
3083 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3084 == NULL)
3085 return FAIL;
3086 y_current->y_array[y_idx] = pnew;
3087 copy_spaces(pnew, (size_t)bd->startspaces);
3088 pnew += bd->startspaces;
3089 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3090 pnew += bd->textlen;
3091 copy_spaces(pnew, (size_t)bd->endspaces);
3092 pnew += bd->endspaces;
3093 *pnew = NUL;
3094 return OK;
3097 #ifdef FEAT_CLIPBOARD
3099 * Make a copy of the y_current register to register "reg".
3101 static void
3102 copy_yank_reg(reg)
3103 struct yankreg *reg;
3105 struct yankreg *curr = y_current;
3106 long j;
3108 y_current = reg;
3109 free_yank_all();
3110 *y_current = *curr;
3111 y_current->y_array = (char_u **)lalloc_clear(
3112 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3113 if (y_current->y_array == NULL)
3114 y_current->y_size = 0;
3115 else
3116 for (j = 0; j < y_current->y_size; ++j)
3117 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3119 free_yank(j);
3120 y_current->y_size = 0;
3121 break;
3123 y_current = curr;
3125 #endif
3128 * Put contents of register "regname" into the text.
3129 * Caller must check "regname" to be valid!
3130 * "flags": PUT_FIXINDENT make indent look nice
3131 * PUT_CURSEND leave cursor after end of new text
3132 * PUT_LINE force linewise put (":put")
3134 void
3135 do_put(regname, dir, count, flags)
3136 int regname;
3137 int dir; /* BACKWARD for 'P', FORWARD for 'p' */
3138 long count;
3139 int flags;
3141 char_u *ptr;
3142 char_u *newp, *oldp;
3143 int yanklen;
3144 int totlen = 0; /* init for gcc */
3145 linenr_T lnum;
3146 colnr_T col;
3147 long i; /* index in y_array[] */
3148 int y_type;
3149 long y_size;
3150 #ifdef FEAT_VISUAL
3151 int oldlen;
3152 long y_width = 0;
3153 colnr_T vcol;
3154 int delcount;
3155 int incr = 0;
3156 long j;
3157 struct block_def bd;
3158 #endif
3159 char_u **y_array = NULL;
3160 long nr_lines = 0;
3161 pos_T new_cursor;
3162 int indent;
3163 int orig_indent = 0; /* init for gcc */
3164 int indent_diff = 0; /* init for gcc */
3165 int first_indent = TRUE;
3166 int lendiff = 0;
3167 pos_T old_pos;
3168 char_u *insert_string = NULL;
3169 int allocated = FALSE;
3170 long cnt;
3172 #ifdef FEAT_CLIPBOARD
3173 /* Adjust register name for "unnamed" in 'clipboard'. */
3174 adjust_clip_reg(&regname);
3175 (void)may_get_selection(regname);
3176 #endif
3178 if (flags & PUT_FIXINDENT)
3179 orig_indent = get_indent();
3181 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3182 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3185 * Using inserted text works differently, because the register includes
3186 * special characters (newlines, etc.).
3188 if (regname == '.')
3190 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3191 (count == -1 ? 'O' : 'i')), count, FALSE);
3192 /* Putting the text is done later, so can't really move the cursor to
3193 * the next character. Use "l" to simulate it. */
3194 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3195 stuffcharReadbuff('l');
3196 return;
3200 * For special registers '%' (file name), '#' (alternate file name) and
3201 * ':' (last command line), etc. we have to create a fake yank register.
3203 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3205 if (insert_string == NULL)
3206 return;
3209 if (insert_string != NULL)
3211 y_type = MCHAR;
3212 #ifdef FEAT_EVAL
3213 if (regname == '=')
3215 /* For the = register we need to split the string at NL
3216 * characters. */
3217 /* Loop twice: count the number of lines and save them. */
3218 for (;;)
3220 y_size = 0;
3221 ptr = insert_string;
3222 while (ptr != NULL)
3224 if (y_array != NULL)
3225 y_array[y_size] = ptr;
3226 ++y_size;
3227 ptr = vim_strchr(ptr, '\n');
3228 if (ptr != NULL)
3230 if (y_array != NULL)
3231 *ptr = NUL;
3232 ++ptr;
3233 /* A trailing '\n' makes the string linewise */
3234 if (*ptr == NUL)
3236 y_type = MLINE;
3237 break;
3241 if (y_array != NULL)
3242 break;
3243 y_array = (char_u **)alloc((unsigned)
3244 (y_size * sizeof(char_u *)));
3245 if (y_array == NULL)
3246 goto end;
3249 else
3250 #endif
3252 y_size = 1; /* use fake one-line yank register */
3253 y_array = &insert_string;
3256 else
3258 get_yank_register(regname, FALSE);
3260 y_type = y_current->y_type;
3261 #ifdef FEAT_VISUAL
3262 y_width = y_current->y_width;
3263 #endif
3264 y_size = y_current->y_size;
3265 y_array = y_current->y_array;
3268 #ifdef FEAT_VISUAL
3269 if (y_type == MLINE)
3271 if (flags & PUT_LINE_SPLIT)
3273 /* "p" or "P" in Visual mode: split the lines to put the text in
3274 * between. */
3275 if (u_save_cursor() == FAIL)
3276 goto end;
3277 ptr = vim_strsave(ml_get_cursor());
3278 if (ptr == NULL)
3279 goto end;
3280 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3281 vim_free(ptr);
3283 ptr = vim_strnsave(ml_get_curline(), curwin->w_cursor.col);
3284 if (ptr == NULL)
3285 goto end;
3286 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3287 ++nr_lines;
3288 dir = FORWARD;
3290 if (flags & PUT_LINE_FORWARD)
3292 /* Must be "p" for a Visual block, put lines below the block. */
3293 curwin->w_cursor = curbuf->b_visual.vi_end;
3294 dir = FORWARD;
3296 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3297 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3299 #endif
3301 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3302 y_type = MLINE;
3304 if (y_size == 0 || y_array == NULL)
3306 EMSG2(_("E353: Nothing in register %s"),
3307 regname == 0 ? (char_u *)"\"" : transchar(regname));
3308 goto end;
3311 #ifdef FEAT_VISUAL
3312 if (y_type == MBLOCK)
3314 lnum = curwin->w_cursor.lnum + y_size + 1;
3315 if (lnum > curbuf->b_ml.ml_line_count)
3316 lnum = curbuf->b_ml.ml_line_count + 1;
3317 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3318 goto end;
3320 else
3321 #endif
3322 if (y_type == MLINE)
3324 lnum = curwin->w_cursor.lnum;
3325 #ifdef FEAT_FOLDING
3326 /* Correct line number for closed fold. Don't move the cursor yet,
3327 * u_save() uses it. */
3328 if (dir == BACKWARD)
3329 (void)hasFolding(lnum, &lnum, NULL);
3330 else
3331 (void)hasFolding(lnum, NULL, &lnum);
3332 #endif
3333 if (dir == FORWARD)
3334 ++lnum;
3335 if (u_save(lnum - 1, lnum) == FAIL)
3336 goto end;
3337 #ifdef FEAT_FOLDING
3338 if (dir == FORWARD)
3339 curwin->w_cursor.lnum = lnum - 1;
3340 else
3341 curwin->w_cursor.lnum = lnum;
3342 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3343 #endif
3345 else if (u_save_cursor() == FAIL)
3346 goto end;
3348 yanklen = (int)STRLEN(y_array[0]);
3350 #ifdef FEAT_VIRTUALEDIT
3351 if (ve_flags == VE_ALL && y_type == MCHAR)
3353 if (gchar_cursor() == TAB)
3355 /* Don't need to insert spaces when "p" on the last position of a
3356 * tab or "P" on the first position. */
3357 if (dir == FORWARD
3358 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3359 : curwin->w_cursor.coladd > 0)
3360 coladvance_force(getviscol());
3361 else
3362 curwin->w_cursor.coladd = 0;
3364 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3365 coladvance_force(getviscol() + (dir == FORWARD));
3367 #endif
3369 lnum = curwin->w_cursor.lnum;
3370 col = curwin->w_cursor.col;
3372 #ifdef FEAT_VISUAL
3374 * Block mode
3376 if (y_type == MBLOCK)
3378 char c = gchar_cursor();
3379 colnr_T endcol2 = 0;
3381 if (dir == FORWARD && c != NUL)
3383 #ifdef FEAT_VIRTUALEDIT
3384 if (ve_flags == VE_ALL)
3385 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3386 else
3387 #endif
3388 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3390 #ifdef FEAT_MBYTE
3391 if (has_mbyte)
3392 /* move to start of next multi-byte character */
3393 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
3394 else
3395 #endif
3396 #ifdef FEAT_VIRTUALEDIT
3397 if (c != TAB || ve_flags != VE_ALL)
3398 #endif
3399 ++curwin->w_cursor.col;
3400 ++col;
3402 else
3403 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3405 #ifdef FEAT_VIRTUALEDIT
3406 col += curwin->w_cursor.coladd;
3407 if (ve_flags == VE_ALL
3408 && (curwin->w_cursor.coladd > 0
3409 || endcol2 == curwin->w_cursor.col))
3411 if (dir == FORWARD && c == NUL)
3412 ++col;
3413 if (dir != FORWARD && c != NUL)
3414 ++curwin->w_cursor.col;
3415 if (c == TAB)
3417 if (dir == BACKWARD && curwin->w_cursor.col)
3418 curwin->w_cursor.col--;
3419 if (dir == FORWARD && col - 1 == endcol2)
3420 curwin->w_cursor.col++;
3423 curwin->w_cursor.coladd = 0;
3424 #endif
3425 bd.textcol = 0;
3426 for (i = 0; i < y_size; ++i)
3428 int spaces;
3429 char shortline;
3431 bd.startspaces = 0;
3432 bd.endspaces = 0;
3433 vcol = 0;
3434 delcount = 0;
3436 /* add a new line */
3437 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3439 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3440 (colnr_T)1, FALSE) == FAIL)
3441 break;
3442 ++nr_lines;
3444 /* get the old line and advance to the position to insert at */
3445 oldp = ml_get_curline();
3446 oldlen = (int)STRLEN(oldp);
3447 for (ptr = oldp; vcol < col && *ptr; )
3449 /* Count a tab for what it's worth (if list mode not on) */
3450 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
3451 vcol += incr;
3453 bd.textcol = (colnr_T)(ptr - oldp);
3455 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3457 if (vcol < col) /* line too short, padd with spaces */
3458 bd.startspaces = col - vcol;
3459 else if (vcol > col)
3461 bd.endspaces = vcol - col;
3462 bd.startspaces = incr - bd.endspaces;
3463 --bd.textcol;
3464 delcount = 1;
3465 #ifdef FEAT_MBYTE
3466 if (has_mbyte)
3467 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3468 #endif
3469 if (oldp[bd.textcol] != TAB)
3471 /* Only a Tab can be split into spaces. Other
3472 * characters will have to be moved to after the
3473 * block, causing misalignment. */
3474 delcount = 0;
3475 bd.endspaces = 0;
3479 yanklen = (int)STRLEN(y_array[i]);
3481 /* calculate number of spaces required to fill right side of block*/
3482 spaces = y_width + 1;
3483 for (j = 0; j < yanklen; j++)
3484 spaces -= lbr_chartabsize(&y_array[i][j], 0);
3485 if (spaces < 0)
3486 spaces = 0;
3488 /* insert the new text */
3489 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3490 newp = alloc_check((unsigned)totlen + oldlen + 1);
3491 if (newp == NULL)
3492 break;
3493 /* copy part up to cursor to new line */
3494 ptr = newp;
3495 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3496 ptr += bd.textcol;
3497 /* may insert some spaces before the new text */
3498 copy_spaces(ptr, (size_t)bd.startspaces);
3499 ptr += bd.startspaces;
3500 /* insert the new text */
3501 for (j = 0; j < count; ++j)
3503 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3504 ptr += yanklen;
3506 /* insert block's trailing spaces only if there's text behind */
3507 if ((j < count - 1 || !shortline) && spaces)
3509 copy_spaces(ptr, (size_t)spaces);
3510 ptr += spaces;
3513 /* may insert some spaces after the new text */
3514 copy_spaces(ptr, (size_t)bd.endspaces);
3515 ptr += bd.endspaces;
3516 /* move the text after the cursor to the end of the line. */
3517 mch_memmove(ptr, oldp + bd.textcol + delcount,
3518 (size_t)(oldlen - bd.textcol - delcount + 1));
3519 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3521 ++curwin->w_cursor.lnum;
3522 if (i == 0)
3523 curwin->w_cursor.col += bd.startspaces;
3526 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3528 /* Set '[ mark. */
3529 curbuf->b_op_start = curwin->w_cursor;
3530 curbuf->b_op_start.lnum = lnum;
3532 /* adjust '] mark */
3533 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3534 curbuf->b_op_end.col = bd.textcol + totlen - 1;
3535 # ifdef FEAT_VIRTUALEDIT
3536 curbuf->b_op_end.coladd = 0;
3537 # endif
3538 if (flags & PUT_CURSEND)
3540 colnr_T len;
3542 curwin->w_cursor = curbuf->b_op_end;
3543 curwin->w_cursor.col++;
3545 /* in Insert mode we might be after the NUL, correct for that */
3546 len = (colnr_T)STRLEN(ml_get_curline());
3547 if (curwin->w_cursor.col > len)
3548 curwin->w_cursor.col = len;
3550 else
3551 curwin->w_cursor.lnum = lnum;
3553 else
3554 #endif
3557 * Character or Line mode
3559 if (y_type == MCHAR)
3561 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3562 * char */
3563 if (dir == FORWARD && gchar_cursor() != NUL)
3565 #ifdef FEAT_MBYTE
3566 if (has_mbyte)
3568 int bytelen = (*mb_ptr2len)(ml_get_cursor());
3570 /* put it on the next of the multi-byte character. */
3571 col += bytelen;
3572 if (yanklen)
3574 curwin->w_cursor.col += bytelen;
3575 curbuf->b_op_end.col += bytelen;
3578 else
3579 #endif
3581 ++col;
3582 if (yanklen)
3584 ++curwin->w_cursor.col;
3585 ++curbuf->b_op_end.col;
3589 curbuf->b_op_start = curwin->w_cursor;
3592 * Line mode: BACKWARD is the same as FORWARD on the previous line
3594 else if (dir == BACKWARD)
3595 --lnum;
3596 new_cursor = curwin->w_cursor;
3599 * simple case: insert into current line
3601 if (y_type == MCHAR && y_size == 1)
3603 totlen = count * yanklen;
3604 if (totlen)
3606 oldp = ml_get(lnum);
3607 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3608 if (newp == NULL)
3609 goto end; /* alloc() will give error message */
3610 mch_memmove(newp, oldp, (size_t)col);
3611 ptr = newp + col;
3612 for (i = 0; i < count; ++i)
3614 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3615 ptr += yanklen;
3617 mch_memmove(ptr, oldp + col, STRLEN(oldp + col) + 1);
3618 ml_replace(lnum, newp, FALSE);
3619 /* Put cursor on last putted char. */
3620 curwin->w_cursor.col += (colnr_T)(totlen - 1);
3622 curbuf->b_op_end = curwin->w_cursor;
3623 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3624 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3625 ++curwin->w_cursor.col;
3626 changed_bytes(lnum, col);
3628 else
3631 * Insert at least one line. When y_type is MCHAR, break the first
3632 * line in two.
3634 for (cnt = 1; cnt <= count; ++cnt)
3636 i = 0;
3637 if (y_type == MCHAR)
3640 * Split the current line in two at the insert position.
3641 * First insert y_array[size - 1] in front of second line.
3642 * Then append y_array[0] to first line.
3644 lnum = new_cursor.lnum;
3645 ptr = ml_get(lnum) + col;
3646 totlen = (int)STRLEN(y_array[y_size - 1]);
3647 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3648 if (newp == NULL)
3649 goto error;
3650 STRCPY(newp, y_array[y_size - 1]);
3651 STRCAT(newp, ptr);
3652 /* insert second line */
3653 ml_append(lnum, newp, (colnr_T)0, FALSE);
3654 vim_free(newp);
3656 oldp = ml_get(lnum);
3657 newp = alloc_check((unsigned)(col + yanklen + 1));
3658 if (newp == NULL)
3659 goto error;
3660 /* copy first part of line */
3661 mch_memmove(newp, oldp, (size_t)col);
3662 /* append to first line */
3663 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3664 ml_replace(lnum, newp, FALSE);
3666 curwin->w_cursor.lnum = lnum;
3667 i = 1;
3670 for (; i < y_size; ++i)
3672 if ((y_type != MCHAR || i < y_size - 1)
3673 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3674 == FAIL)
3675 goto error;
3676 lnum++;
3677 ++nr_lines;
3678 if (flags & PUT_FIXINDENT)
3680 old_pos = curwin->w_cursor;
3681 curwin->w_cursor.lnum = lnum;
3682 ptr = ml_get(lnum);
3683 if (cnt == count && i == y_size - 1)
3684 lendiff = (int)STRLEN(ptr);
3685 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3686 if (*ptr == '#' && preprocs_left())
3687 indent = 0; /* Leave # lines at start */
3688 else
3689 #endif
3690 if (*ptr == NUL)
3691 indent = 0; /* Ignore empty lines */
3692 else if (first_indent)
3694 indent_diff = orig_indent - get_indent();
3695 indent = orig_indent;
3696 first_indent = FALSE;
3698 else if ((indent = get_indent() + indent_diff) < 0)
3699 indent = 0;
3700 (void)set_indent(indent, 0);
3701 curwin->w_cursor = old_pos;
3702 /* remember how many chars were removed */
3703 if (cnt == count && i == y_size - 1)
3704 lendiff -= (int)STRLEN(ml_get(lnum));
3709 error:
3710 /* Adjust marks. */
3711 if (y_type == MLINE)
3713 curbuf->b_op_start.col = 0;
3714 if (dir == FORWARD)
3715 curbuf->b_op_start.lnum++;
3717 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
3718 (linenr_T)MAXLNUM, nr_lines, 0L);
3720 /* note changed text for displaying and folding */
3721 if (y_type == MCHAR)
3722 changed_lines(curwin->w_cursor.lnum, col,
3723 curwin->w_cursor.lnum + 1, nr_lines);
3724 else
3725 changed_lines(curbuf->b_op_start.lnum, 0,
3726 curbuf->b_op_start.lnum, nr_lines);
3728 /* put '] mark at last inserted character */
3729 curbuf->b_op_end.lnum = lnum;
3730 /* correct length for change in indent */
3731 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3732 if (col > 1)
3733 curbuf->b_op_end.col = col - 1;
3734 else
3735 curbuf->b_op_end.col = 0;
3737 if (flags & PUT_CURSLINE)
3739 /* ":put": put cursor on last inserted line */
3740 curwin->w_cursor.lnum = lnum;
3741 beginline(BL_WHITE | BL_FIX);
3743 else if (flags & PUT_CURSEND)
3745 /* put cursor after inserted text */
3746 if (y_type == MLINE)
3748 if (lnum >= curbuf->b_ml.ml_line_count)
3749 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3750 else
3751 curwin->w_cursor.lnum = lnum + 1;
3752 curwin->w_cursor.col = 0;
3754 else
3756 curwin->w_cursor.lnum = lnum;
3757 curwin->w_cursor.col = col;
3760 else if (y_type == MLINE)
3762 /* put cursor on first non-blank in first inserted line */
3763 curwin->w_cursor.col = 0;
3764 if (dir == FORWARD)
3765 ++curwin->w_cursor.lnum;
3766 beginline(BL_WHITE | BL_FIX);
3768 else /* put cursor on first inserted character */
3769 curwin->w_cursor = new_cursor;
3773 msgmore(nr_lines);
3774 curwin->w_set_curswant = TRUE;
3776 end:
3777 if (allocated)
3778 vim_free(insert_string);
3779 if (regname == '=')
3780 vim_free(y_array);
3782 /* If the cursor is past the end of the line put it at the end. */
3783 adjust_cursor_eol();
3787 * When the cursor is on the NUL past the end of the line and it should not be
3788 * there move it left.
3790 void
3791 adjust_cursor_eol()
3793 if (curwin->w_cursor.col > 0
3794 && gchar_cursor() == NUL
3795 #ifdef FEAT_VIRTUALEDIT
3796 && (ve_flags & VE_ONEMORE) == 0
3797 #endif
3798 && !(restart_edit || (State & INSERT)))
3800 /* Put the cursor on the last character in the line. */
3801 dec_cursor();
3803 #ifdef FEAT_VIRTUALEDIT
3804 if (ve_flags == VE_ALL)
3806 colnr_T scol, ecol;
3808 /* Coladd is set to the width of the last character. */
3809 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
3810 curwin->w_cursor.coladd = ecol - scol + 1;
3812 #endif
3816 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
3818 * Return TRUE if lines starting with '#' should be left aligned.
3821 preprocs_left()
3823 return
3824 # ifdef FEAT_SMARTINDENT
3825 # ifdef FEAT_CINDENT
3826 (curbuf->b_p_si && !curbuf->b_p_cin) ||
3827 # else
3828 curbuf->b_p_si
3829 # endif
3830 # endif
3831 # ifdef FEAT_CINDENT
3832 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE))
3833 # endif
3836 #endif
3838 /* Return the character name of the register with the given number */
3840 get_register_name(num)
3841 int num;
3843 if (num == -1)
3844 return '"';
3845 else if (num < 10)
3846 return num + '0';
3847 else if (num == DELETION_REGISTER)
3848 return '-';
3849 #ifdef FEAT_CLIPBOARD
3850 else if (num == STAR_REGISTER)
3851 return '*';
3852 else if (num == PLUS_REGISTER)
3853 return '+';
3854 #endif
3855 else
3857 #ifdef EBCDIC
3858 int i;
3860 /* EBCDIC is really braindead ... */
3861 i = 'a' + (num - 10);
3862 if (i > 'i')
3863 i += 7;
3864 if (i > 'r')
3865 i += 8;
3866 return i;
3867 #else
3868 return num + 'a' - 10;
3869 #endif
3874 * ":dis" and ":registers": Display the contents of the yank registers.
3876 void
3877 ex_display(eap)
3878 exarg_T *eap;
3880 int i, n;
3881 long j;
3882 char_u *p;
3883 struct yankreg *yb;
3884 int name;
3885 int attr;
3886 char_u *arg = eap->arg;
3887 #ifdef FEAT_MBYTE
3888 int clen;
3889 #else
3890 # define clen 1
3891 #endif
3893 if (arg != NULL && *arg == NUL)
3894 arg = NULL;
3895 attr = hl_attr(HLF_8);
3897 /* Highlight title */
3898 MSG_PUTS_TITLE(_("\n--- Registers ---"));
3899 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
3901 name = get_register_name(i);
3902 if (arg != NULL && vim_strchr(arg, name) == NULL)
3903 continue; /* did not ask for this register */
3905 #ifdef FEAT_CLIPBOARD
3906 /* Adjust register name for "unnamed" in 'clipboard'.
3907 * When it's a clipboard register, fill it with the current contents
3908 * of the clipboard. */
3909 adjust_clip_reg(&name);
3910 (void)may_get_selection(name);
3911 #endif
3913 if (i == -1)
3915 if (y_previous != NULL)
3916 yb = y_previous;
3917 else
3918 yb = &(y_regs[0]);
3920 else
3921 yb = &(y_regs[i]);
3922 if (yb->y_array != NULL)
3924 msg_putchar('\n');
3925 msg_putchar('"');
3926 msg_putchar(name);
3927 MSG_PUTS(" ");
3929 n = (int)Columns - 6;
3930 for (j = 0; j < yb->y_size && n > 1; ++j)
3932 if (j)
3934 MSG_PUTS_ATTR("^J", attr);
3935 n -= 2;
3937 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
3939 #ifdef FEAT_MBYTE
3940 clen = (*mb_ptr2len)(p);
3941 #endif
3942 msg_outtrans_len(p, clen);
3943 #ifdef FEAT_MBYTE
3944 p += clen - 1;
3945 #endif
3948 if (n > 1 && yb->y_type == MLINE)
3949 MSG_PUTS_ATTR("^J", attr);
3950 out_flush(); /* show one line at a time */
3952 ui_breakcheck();
3956 * display last inserted text
3958 if ((p = get_last_insert()) != NULL
3959 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
3961 MSG_PUTS("\n\". ");
3962 dis_msg(p, TRUE);
3966 * display last command line
3968 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
3969 && !got_int)
3971 MSG_PUTS("\n\": ");
3972 dis_msg(last_cmdline, FALSE);
3976 * display current file name
3978 if (curbuf->b_fname != NULL
3979 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
3981 MSG_PUTS("\n\"% ");
3982 dis_msg(curbuf->b_fname, FALSE);
3986 * display alternate file name
3988 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
3990 char_u *fname;
3991 linenr_T dummy;
3993 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
3995 MSG_PUTS("\n\"# ");
3996 dis_msg(fname, FALSE);
4001 * display last search pattern
4003 if (last_search_pat() != NULL
4004 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4006 MSG_PUTS("\n\"/ ");
4007 dis_msg(last_search_pat(), FALSE);
4010 #ifdef FEAT_EVAL
4012 * display last used expression
4014 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4015 && !got_int)
4017 MSG_PUTS("\n\"= ");
4018 dis_msg(expr_line, FALSE);
4020 #endif
4024 * display a string for do_dis()
4025 * truncate at end of screen line
4027 static void
4028 dis_msg(p, skip_esc)
4029 char_u *p;
4030 int skip_esc; /* if TRUE, ignore trailing ESC */
4032 int n;
4033 #ifdef FEAT_MBYTE
4034 int l;
4035 #endif
4037 n = (int)Columns - 6;
4038 while (*p != NUL
4039 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4040 && (n -= ptr2cells(p)) >= 0)
4042 #ifdef FEAT_MBYTE
4043 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
4045 msg_outtrans_len(p, l);
4046 p += l;
4048 else
4049 #endif
4050 msg_outtrans_len(p++, 1);
4052 ui_breakcheck();
4056 * join 'count' lines (minimal 2), including u_save()
4058 void
4059 do_do_join(count, insert_space)
4060 long count;
4061 int insert_space;
4063 colnr_T col = MAXCOL;
4065 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4066 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4067 return;
4069 while (--count > 0)
4071 line_breakcheck();
4072 if (got_int || do_join(insert_space) == FAIL)
4074 beep_flush();
4075 break;
4077 if (col == MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4078 col = curwin->w_cursor.col;
4081 /* Vi compatible: use the column of the first join */
4082 if (col != MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4083 curwin->w_cursor.col = col;
4085 #if 0
4087 * Need to update the screen if the line where the cursor is became too
4088 * long to fit on the screen.
4090 update_topline_redraw();
4091 #endif
4095 * Join two lines at the cursor position.
4096 * "redraw" is TRUE when the screen should be updated.
4097 * Caller must have setup for undo.
4099 * return FAIL for failure, OK otherwise
4102 do_join(insert_space)
4103 int insert_space;
4105 char_u *curr;
4106 char_u *next, *next_start;
4107 char_u *newp;
4108 int endcurr1, endcurr2;
4109 int currsize; /* size of the current line */
4110 int nextsize; /* size of the next line */
4111 int spaces; /* number of spaces to insert */
4112 linenr_T t;
4114 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4115 return FAIL; /* can't join on last line */
4117 curr = ml_get_curline();
4118 currsize = (int)STRLEN(curr);
4119 endcurr1 = endcurr2 = NUL;
4120 if (insert_space && currsize > 0)
4122 #ifdef FEAT_MBYTE
4123 if (has_mbyte)
4125 next = curr + currsize;
4126 mb_ptr_back(curr, next);
4127 endcurr1 = (*mb_ptr2char)(next);
4128 if (next > curr)
4130 mb_ptr_back(curr, next);
4131 endcurr2 = (*mb_ptr2char)(next);
4134 else
4135 #endif
4137 endcurr1 = *(curr + currsize - 1);
4138 if (currsize > 1)
4139 endcurr2 = *(curr + currsize - 2);
4143 next = next_start = ml_get((linenr_T)(curwin->w_cursor.lnum + 1));
4144 spaces = 0;
4145 if (insert_space)
4147 next = skipwhite(next);
4148 if (*next != ')' && currsize != 0 && endcurr1 != TAB
4149 #ifdef FEAT_MBYTE
4150 && (!has_format_option(FO_MBYTE_JOIN)
4151 || (mb_ptr2char(next) < 0x100 && endcurr1 < 0x100))
4152 && (!has_format_option(FO_MBYTE_JOIN2)
4153 || mb_ptr2char(next) < 0x100 || endcurr1 < 0x100)
4154 #endif
4157 /* don't add a space if the line is ending in a space */
4158 if (endcurr1 == ' ')
4159 endcurr1 = endcurr2;
4160 else
4161 ++spaces;
4162 /* extra space when 'joinspaces' set and line ends in '.' */
4163 if ( p_js
4164 && (endcurr1 == '.'
4165 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4166 && (endcurr1 == '?' || endcurr1 == '!'))))
4167 ++spaces;
4170 nextsize = (int)STRLEN(next);
4172 newp = alloc_check((unsigned)(currsize + nextsize + spaces + 1));
4173 if (newp == NULL)
4174 return FAIL;
4177 * Insert the next line first, because we already have that pointer.
4178 * Curr has to be obtained again, because getting next will have
4179 * invalidated it.
4181 mch_memmove(newp + currsize + spaces, next, (size_t)(nextsize + 1));
4183 curr = ml_get_curline();
4184 mch_memmove(newp, curr, (size_t)currsize);
4186 copy_spaces(newp + currsize, (size_t)spaces);
4188 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4190 /* Only report the change in the first line here, del_lines() will report
4191 * the deleted line. */
4192 changed_lines(curwin->w_cursor.lnum, currsize,
4193 curwin->w_cursor.lnum + 1, 0L);
4196 * Delete the following line. To do this we move the cursor there
4197 * briefly, and then move it back. After del_lines() the cursor may
4198 * have moved up (last line deleted), so the current lnum is kept in t.
4200 * Move marks from the deleted line to the joined line, adjusting the
4201 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4202 * should not really be a problem.
4204 t = curwin->w_cursor.lnum;
4205 mark_col_adjust(t + 1, (colnr_T)0, (linenr_T)-1,
4206 (long)(currsize + spaces - (next - next_start)));
4207 ++curwin->w_cursor.lnum;
4208 del_lines(1L, FALSE);
4209 curwin->w_cursor.lnum = t;
4212 * go to first character of the joined line
4214 curwin->w_cursor.col = currsize;
4215 check_cursor_col();
4216 #ifdef FEAT_VIRTUALEDIT
4217 curwin->w_cursor.coladd = 0;
4218 #endif
4219 curwin->w_set_curswant = TRUE;
4221 return OK;
4224 #ifdef FEAT_COMMENTS
4226 * Return TRUE if the two comment leaders given are the same. "lnum" is
4227 * the first line. White-space is ignored. Note that the whole of
4228 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4230 static int
4231 same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
4232 linenr_T lnum;
4233 int leader1_len;
4234 char_u *leader1_flags;
4235 int leader2_len;
4236 char_u *leader2_flags;
4238 int idx1 = 0, idx2 = 0;
4239 char_u *p;
4240 char_u *line1;
4241 char_u *line2;
4243 if (leader1_len == 0)
4244 return (leader2_len == 0);
4247 * If first leader has 'f' flag, the lines can be joined only if the
4248 * second line does not have a leader.
4249 * If first leader has 'e' flag, the lines can never be joined.
4250 * If fist leader has 's' flag, the lines can only be joined if there is
4251 * some text after it and the second line has the 'm' flag.
4253 if (leader1_flags != NULL)
4255 for (p = leader1_flags; *p && *p != ':'; ++p)
4257 if (*p == COM_FIRST)
4258 return (leader2_len == 0);
4259 if (*p == COM_END)
4260 return FALSE;
4261 if (*p == COM_START)
4263 if (*(ml_get(lnum) + leader1_len) == NUL)
4264 return FALSE;
4265 if (leader2_flags == NULL || leader2_len == 0)
4266 return FALSE;
4267 for (p = leader2_flags; *p && *p != ':'; ++p)
4268 if (*p == COM_MIDDLE)
4269 return TRUE;
4270 return FALSE;
4276 * Get current line and next line, compare the leaders.
4277 * The first line has to be saved, only one line can be locked at a time.
4279 line1 = vim_strsave(ml_get(lnum));
4280 if (line1 != NULL)
4282 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4284 line2 = ml_get(lnum + 1);
4285 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4287 if (!vim_iswhite(line2[idx2]))
4289 if (line1[idx1++] != line2[idx2])
4290 break;
4292 else
4293 while (vim_iswhite(line1[idx1]))
4294 ++idx1;
4296 vim_free(line1);
4298 return (idx2 == leader2_len && idx1 == leader1_len);
4300 #endif
4303 * implementation of the format operator 'gq'
4305 void
4306 op_format(oap, keep_cursor)
4307 oparg_T *oap;
4308 int keep_cursor; /* keep cursor on same text char */
4310 long old_line_count = curbuf->b_ml.ml_line_count;
4312 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4313 * can put it back there. */
4314 curwin->w_cursor = oap->cursor_start;
4316 if (u_save((linenr_T)(oap->start.lnum - 1),
4317 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4318 return;
4319 curwin->w_cursor = oap->start;
4321 #ifdef FEAT_VISUAL
4322 if (oap->is_VIsual)
4323 /* When there is no change: need to remove the Visual selection */
4324 redraw_curbuf_later(INVERTED);
4325 #endif
4327 /* Set '[ mark at the start of the formatted area */
4328 curbuf->b_op_start = oap->start;
4330 /* For "gw" remember the cursor position and put it back below (adjusted
4331 * for joined and split lines). */
4332 if (keep_cursor)
4333 saved_cursor = oap->cursor_start;
4335 format_lines(oap->line_count);
4338 * Leave the cursor at the first non-blank of the last formatted line.
4339 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4340 * line, so "." will do the next lines.
4342 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4343 ++curwin->w_cursor.lnum;
4344 beginline(BL_WHITE | BL_FIX);
4345 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4346 msgmore(old_line_count);
4348 /* put '] mark on the end of the formatted area */
4349 curbuf->b_op_end = curwin->w_cursor;
4351 if (keep_cursor)
4353 curwin->w_cursor = saved_cursor;
4354 saved_cursor.lnum = 0;
4357 #ifdef FEAT_VISUAL
4358 if (oap->is_VIsual)
4360 win_T *wp;
4362 FOR_ALL_WINDOWS(wp)
4364 if (wp->w_old_cursor_lnum != 0)
4366 /* When lines have been inserted or deleted, adjust the end of
4367 * the Visual area to be redrawn. */
4368 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4369 wp->w_old_cursor_lnum += old_line_count;
4370 else
4371 wp->w_old_visual_lnum += old_line_count;
4375 #endif
4378 #if defined(FEAT_EVAL) || defined(PROTO)
4380 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4382 void
4383 op_formatexpr(oap)
4384 oparg_T *oap;
4386 # ifdef FEAT_VISUAL
4387 if (oap->is_VIsual)
4388 /* When there is no change: need to remove the Visual selection */
4389 redraw_curbuf_later(INVERTED);
4390 # endif
4392 (void)fex_format(oap->start.lnum, oap->line_count, NUL);
4396 fex_format(lnum, count, c)
4397 linenr_T lnum;
4398 long count;
4399 int c; /* character to be inserted */
4401 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4402 OPT_LOCAL);
4403 int r;
4404 #ifdef FEAT_MBYTE
4405 char_u buf[MB_MAXBYTES];
4406 #else
4407 char_u buf[2];
4408 #endif
4411 * Set v:lnum to the first line number and v:count to the number of lines.
4412 * Set v:char to the character to be inserted (can be NUL).
4414 set_vim_var_nr(VV_LNUM, lnum);
4415 set_vim_var_nr(VV_COUNT, count);
4417 #ifdef FEAT_MBYTE
4418 if (has_mbyte)
4419 buf[(*mb_char2bytes)(c, buf)] = NUL;
4420 else
4421 #endif
4423 buf[0] = c;
4424 buf[1] = NUL;
4426 set_vim_var_string(VV_CHAR, buf, -1);
4429 * Evaluate the function.
4431 if (use_sandbox)
4432 ++sandbox;
4433 r = eval_to_number(curbuf->b_p_fex);
4434 if (use_sandbox)
4435 --sandbox;
4437 set_vim_var_string(VV_CHAR, NULL, -1);
4439 return r;
4441 #endif
4444 * Format "line_count" lines, starting at the cursor position.
4445 * When "line_count" is negative, format until the end of the paragraph.
4446 * Lines after the cursor line are saved for undo, caller must have saved the
4447 * first line.
4449 void
4450 format_lines(line_count)
4451 linenr_T line_count;
4453 int max_len;
4454 int is_not_par; /* current line not part of parag. */
4455 int next_is_not_par; /* next line not part of paragraph */
4456 int is_end_par; /* at end of paragraph */
4457 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4458 int next_is_start_par = FALSE;
4459 #ifdef FEAT_COMMENTS
4460 int leader_len = 0; /* leader len of current line */
4461 int next_leader_len; /* leader len of next line */
4462 char_u *leader_flags = NULL; /* flags for leader of current line */
4463 char_u *next_leader_flags; /* flags for leader of next line */
4464 int do_comments; /* format comments */
4465 #endif
4466 int advance = TRUE;
4467 int second_indent = -1;
4468 int do_second_indent;
4469 int do_number_indent;
4470 int do_trail_white;
4471 int first_par_line = TRUE;
4472 int smd_save;
4473 long count;
4474 int need_set_indent = TRUE; /* set indent of next paragraph */
4475 int force_format = FALSE;
4476 int old_State = State;
4478 /* length of a line to force formatting: 3 * 'tw' */
4479 max_len = comp_textwidth(TRUE) * 3;
4481 /* check for 'q', '2' and '1' in 'formatoptions' */
4482 #ifdef FEAT_COMMENTS
4483 do_comments = has_format_option(FO_Q_COMS);
4484 #endif
4485 do_second_indent = has_format_option(FO_Q_SECOND);
4486 do_number_indent = has_format_option(FO_Q_NUMBER);
4487 do_trail_white = has_format_option(FO_WHITE_PAR);
4490 * Get info about the previous and current line.
4492 if (curwin->w_cursor.lnum > 1)
4493 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4494 #ifdef FEAT_COMMENTS
4495 , &leader_len, &leader_flags, do_comments
4496 #endif
4498 else
4499 is_not_par = TRUE;
4500 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4501 #ifdef FEAT_COMMENTS
4502 , &next_leader_len, &next_leader_flags, do_comments
4503 #endif
4505 is_end_par = (is_not_par || next_is_not_par);
4506 if (!is_end_par && do_trail_white)
4507 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4509 curwin->w_cursor.lnum--;
4510 for (count = line_count; count != 0 && !got_int; --count)
4513 * Advance to next paragraph.
4515 if (advance)
4517 curwin->w_cursor.lnum++;
4518 prev_is_end_par = is_end_par;
4519 is_not_par = next_is_not_par;
4520 #ifdef FEAT_COMMENTS
4521 leader_len = next_leader_len;
4522 leader_flags = next_leader_flags;
4523 #endif
4527 * The last line to be formatted.
4529 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4531 next_is_not_par = TRUE;
4532 #ifdef FEAT_COMMENTS
4533 next_leader_len = 0;
4534 next_leader_flags = NULL;
4535 #endif
4537 else
4539 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4540 #ifdef FEAT_COMMENTS
4541 , &next_leader_len, &next_leader_flags, do_comments
4542 #endif
4544 if (do_number_indent)
4545 next_is_start_par =
4546 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4548 advance = TRUE;
4549 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4550 if (!is_end_par && do_trail_white)
4551 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4554 * Skip lines that are not in a paragraph.
4556 if (is_not_par)
4558 if (line_count < 0)
4559 break;
4561 else
4564 * For the first line of a paragraph, check indent of second line.
4565 * Don't do this for comments and empty lines.
4567 if (first_par_line
4568 && (do_second_indent || do_number_indent)
4569 && prev_is_end_par
4570 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4571 #ifdef FEAT_COMMENTS
4572 && leader_len == 0
4573 && next_leader_len == 0
4574 #endif
4577 if (do_second_indent
4578 && !lineempty(curwin->w_cursor.lnum + 1))
4579 second_indent = get_indent_lnum(curwin->w_cursor.lnum + 1);
4580 else if (do_number_indent)
4581 second_indent = get_number_indent(curwin->w_cursor.lnum);
4585 * When the comment leader changes, it's the end of the paragraph.
4587 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4588 #ifdef FEAT_COMMENTS
4589 || !same_leader(curwin->w_cursor.lnum,
4590 leader_len, leader_flags,
4591 next_leader_len, next_leader_flags)
4592 #endif
4594 is_end_par = TRUE;
4597 * If we have got to the end of a paragraph, or the line is
4598 * getting long, format it.
4600 if (is_end_par || force_format)
4602 if (need_set_indent)
4603 /* replace indent in first line with minimal number of
4604 * tabs and spaces, according to current options */
4605 (void)set_indent(get_indent(), SIN_CHANGED);
4607 /* put cursor on last non-space */
4608 State = NORMAL; /* don't go past end-of-line */
4609 coladvance((colnr_T)MAXCOL);
4610 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
4611 dec_cursor();
4613 /* do the formatting, without 'showmode' */
4614 State = INSERT; /* for open_line() */
4615 smd_save = p_smd;
4616 p_smd = FALSE;
4617 insertchar(NUL, INSCHAR_FORMAT
4618 #ifdef FEAT_COMMENTS
4619 + (do_comments ? INSCHAR_DO_COM : 0)
4620 #endif
4621 , second_indent);
4622 State = old_State;
4623 p_smd = smd_save;
4624 second_indent = -1;
4625 /* at end of par.: need to set indent of next par. */
4626 need_set_indent = is_end_par;
4627 if (is_end_par)
4629 /* When called with a negative line count, break at the
4630 * end of the paragraph. */
4631 if (line_count < 0)
4632 break;
4633 first_par_line = TRUE;
4635 force_format = FALSE;
4639 * When still in same paragraph, join the lines together. But
4640 * first delete the comment leader from the second line.
4642 if (!is_end_par)
4644 advance = FALSE;
4645 curwin->w_cursor.lnum++;
4646 curwin->w_cursor.col = 0;
4647 if (line_count < 0 && u_save_cursor() == FAIL)
4648 break;
4649 #ifdef FEAT_COMMENTS
4650 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
4651 if (next_leader_len > 0)
4652 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
4653 (long)-next_leader_len);
4654 #endif
4655 curwin->w_cursor.lnum--;
4656 if (do_join(TRUE) == FAIL)
4658 beep_flush();
4659 break;
4661 first_par_line = FALSE;
4662 /* If the line is getting long, format it next time */
4663 if (STRLEN(ml_get_curline()) > (size_t)max_len)
4664 force_format = TRUE;
4665 else
4666 force_format = FALSE;
4669 line_breakcheck();
4674 * Return TRUE if line "lnum" ends in a white character.
4676 static int
4677 ends_in_white(lnum)
4678 linenr_T lnum;
4680 char_u *s = ml_get(lnum);
4681 size_t l;
4683 if (*s == NUL)
4684 return FALSE;
4685 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
4686 * invocation may call function multiple times". */
4687 l = STRLEN(s) - 1;
4688 return vim_iswhite(s[l]);
4692 * Blank lines, and lines containing only the comment leader, are left
4693 * untouched by the formatting. The function returns TRUE in this
4694 * case. It also returns TRUE when a line starts with the end of a comment
4695 * ('e' in comment flags), so that this line is skipped, and not joined to the
4696 * previous line. A new paragraph starts after a blank line, or when the
4697 * comment leader changes -- webb.
4699 #ifdef FEAT_COMMENTS
4700 static int
4701 fmt_check_par(lnum, leader_len, leader_flags, do_comments)
4702 linenr_T lnum;
4703 int *leader_len;
4704 char_u **leader_flags;
4705 int do_comments;
4707 char_u *flags = NULL; /* init for GCC */
4708 char_u *ptr;
4710 ptr = ml_get(lnum);
4711 if (do_comments)
4712 *leader_len = get_leader_len(ptr, leader_flags, FALSE);
4713 else
4714 *leader_len = 0;
4716 if (*leader_len > 0)
4719 * Search for 'e' flag in comment leader flags.
4721 flags = *leader_flags;
4722 while (*flags && *flags != ':' && *flags != COM_END)
4723 ++flags;
4726 return (*skipwhite(ptr + *leader_len) == NUL
4727 || (*leader_len > 0 && *flags == COM_END)
4728 || startPS(lnum, NUL, FALSE));
4730 #else
4731 static int
4732 fmt_check_par(lnum)
4733 linenr_T lnum;
4735 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
4737 #endif
4740 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
4741 * previous line is in the same paragraph. Used for auto-formatting.
4744 paragraph_start(lnum)
4745 linenr_T lnum;
4747 char_u *p;
4748 #ifdef FEAT_COMMENTS
4749 int leader_len = 0; /* leader len of current line */
4750 char_u *leader_flags = NULL; /* flags for leader of current line */
4751 int next_leader_len; /* leader len of next line */
4752 char_u *next_leader_flags; /* flags for leader of next line */
4753 int do_comments; /* format comments */
4754 #endif
4756 if (lnum <= 1)
4757 return TRUE; /* start of the file */
4759 p = ml_get(lnum - 1);
4760 if (*p == NUL)
4761 return TRUE; /* after empty line */
4763 #ifdef FEAT_COMMENTS
4764 do_comments = has_format_option(FO_Q_COMS);
4765 #endif
4766 if (fmt_check_par(lnum - 1
4767 #ifdef FEAT_COMMENTS
4768 , &leader_len, &leader_flags, do_comments
4769 #endif
4771 return TRUE; /* after non-paragraph line */
4773 if (fmt_check_par(lnum
4774 #ifdef FEAT_COMMENTS
4775 , &next_leader_len, &next_leader_flags, do_comments
4776 #endif
4778 return TRUE; /* "lnum" is not a paragraph line */
4780 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
4781 return TRUE; /* missing trailing space in previous line. */
4783 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
4784 return TRUE; /* numbered item starts in "lnum". */
4786 #ifdef FEAT_COMMENTS
4787 if (!same_leader(lnum - 1, leader_len, leader_flags,
4788 next_leader_len, next_leader_flags))
4789 return TRUE; /* change of comment leader. */
4790 #endif
4792 return FALSE;
4795 #ifdef FEAT_VISUAL
4797 * prepare a few things for block mode yank/delete/tilde
4799 * for delete:
4800 * - textlen includes the first/last char to be (partly) deleted
4801 * - start/endspaces is the number of columns that are taken by the
4802 * first/last deleted char minus the number of columns that have to be
4803 * deleted. for yank and tilde:
4804 * - textlen includes the first/last char to be wholly yanked
4805 * - start/endspaces is the number of columns of the first/last yanked char
4806 * that are to be yanked.
4808 static void
4809 block_prep(oap, bdp, lnum, is_del)
4810 oparg_T *oap;
4811 struct block_def *bdp;
4812 linenr_T lnum;
4813 int is_del;
4815 int incr = 0;
4816 char_u *pend;
4817 char_u *pstart;
4818 char_u *line;
4819 char_u *prev_pstart;
4820 char_u *prev_pend;
4822 bdp->startspaces = 0;
4823 bdp->endspaces = 0;
4824 bdp->textlen = 0;
4825 bdp->start_vcol = 0;
4826 bdp->end_vcol = 0;
4827 #ifdef FEAT_VISUALEXTRA
4828 bdp->is_short = FALSE;
4829 bdp->is_oneChar = FALSE;
4830 bdp->pre_whitesp = 0;
4831 bdp->pre_whitesp_c = 0;
4832 bdp->end_char_vcols = 0;
4833 #endif
4834 bdp->start_char_vcols = 0;
4836 line = ml_get(lnum);
4837 pstart = line;
4838 prev_pstart = line;
4839 while (bdp->start_vcol < oap->start_vcol && *pstart)
4841 /* Count a tab for what it's worth (if list mode not on) */
4842 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
4843 bdp->start_vcol += incr;
4844 #ifdef FEAT_VISUALEXTRA
4845 if (vim_iswhite(*pstart))
4847 bdp->pre_whitesp += incr;
4848 bdp->pre_whitesp_c++;
4850 else
4852 bdp->pre_whitesp = 0;
4853 bdp->pre_whitesp_c = 0;
4855 #endif
4856 prev_pstart = pstart;
4857 mb_ptr_adv(pstart);
4859 bdp->start_char_vcols = incr;
4860 if (bdp->start_vcol < oap->start_vcol) /* line too short */
4862 bdp->end_vcol = bdp->start_vcol;
4863 #ifdef FEAT_VISUALEXTRA
4864 bdp->is_short = TRUE;
4865 #endif
4866 if (!is_del || oap->op_type == OP_APPEND)
4867 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
4869 else
4871 /* notice: this converts partly selected Multibyte characters to
4872 * spaces, too. */
4873 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
4874 if (is_del && bdp->startspaces)
4875 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
4876 pend = pstart;
4877 bdp->end_vcol = bdp->start_vcol;
4878 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
4880 #ifdef FEAT_VISUALEXTRA
4881 bdp->is_oneChar = TRUE;
4882 #endif
4883 if (oap->op_type == OP_INSERT)
4884 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4885 else if (oap->op_type == OP_APPEND)
4887 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
4888 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4890 else
4892 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
4893 if (is_del && oap->op_type != OP_LSHIFT)
4895 /* just putting the sum of those two into
4896 * bdp->startspaces doesn't work for Visual replace,
4897 * so we have to split the tab in two */
4898 bdp->startspaces = bdp->start_char_vcols
4899 - (bdp->start_vcol - oap->start_vcol);
4900 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4904 else
4906 prev_pend = pend;
4907 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
4909 /* Count a tab for what it's worth (if list mode not on) */
4910 prev_pend = pend;
4911 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
4912 bdp->end_vcol += incr;
4914 if (bdp->end_vcol <= oap->end_vcol
4915 && (!is_del
4916 || oap->op_type == OP_APPEND
4917 || oap->op_type == OP_REPLACE)) /* line too short */
4919 #ifdef FEAT_VISUALEXTRA
4920 bdp->is_short = TRUE;
4921 #endif
4922 /* Alternative: include spaces to fill up the block.
4923 * Disadvantage: can lead to trailing spaces when the line is
4924 * short where the text is put */
4925 /* if (!is_del || oap->op_type == OP_APPEND) */
4926 if (oap->op_type == OP_APPEND || virtual_op)
4927 bdp->endspaces = oap->end_vcol - bdp->end_vcol
4928 + oap->inclusive;
4929 else
4930 bdp->endspaces = 0; /* replace doesn't add characters */
4932 else if (bdp->end_vcol > oap->end_vcol)
4934 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4935 if (!is_del && bdp->endspaces)
4937 bdp->endspaces = incr - bdp->endspaces;
4938 if (pend != pstart)
4939 pend = prev_pend;
4943 #ifdef FEAT_VISUALEXTRA
4944 bdp->end_char_vcols = incr;
4945 #endif
4946 if (is_del && bdp->startspaces)
4947 pstart = prev_pstart;
4948 bdp->textlen = (int)(pend - pstart);
4950 bdp->textcol = (colnr_T) (pstart - line);
4951 bdp->textstart = pstart;
4953 #endif /* FEAT_VISUAL */
4955 #ifdef FEAT_RIGHTLEFT
4956 static void reverse_line __ARGS((char_u *s));
4958 static void
4959 reverse_line(s)
4960 char_u *s;
4962 int i, j;
4963 char_u c;
4965 if ((i = (int)STRLEN(s) - 1) <= 0)
4966 return;
4968 curwin->w_cursor.col = i - curwin->w_cursor.col;
4969 for (j = 0; j < i; j++, i--)
4971 c = s[i]; s[i] = s[j]; s[j] = c;
4975 # define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
4976 #else
4977 # define RLADDSUBFIX(ptr)
4978 #endif
4981 * add or subtract 'Prenum1' from a number in a line
4982 * 'command' is CTRL-A for add, CTRL-X for subtract
4984 * return FAIL for failure, OK otherwise
4987 do_addsub(command, Prenum1)
4988 int command;
4989 linenr_T Prenum1;
4991 int col;
4992 char_u *buf1;
4993 char_u buf2[NUMBUFLEN];
4994 int hex; /* 'X' or 'x': hex; '0': octal */
4995 static int hexupper = FALSE; /* 0xABC */
4996 unsigned long n;
4997 long_u oldn;
4998 char_u *ptr;
4999 int c;
5000 int length = 0; /* character length of the number */
5001 int todel;
5002 int dohex;
5003 int dooct;
5004 int doalp;
5005 int firstdigit;
5006 int negative;
5007 int subtract;
5009 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5010 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
5011 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5013 ptr = ml_get_curline();
5014 RLADDSUBFIX(ptr);
5017 * First check if we are on a hexadecimal number, after the "0x".
5019 col = curwin->w_cursor.col;
5020 if (dohex)
5021 while (col > 0 && vim_isxdigit(ptr[col]))
5022 --col;
5023 if ( dohex
5024 && col > 0
5025 && (ptr[col] == 'X'
5026 || ptr[col] == 'x')
5027 && ptr[col - 1] == '0'
5028 && vim_isxdigit(ptr[col + 1]))
5031 * Found hexadecimal number, move to its start.
5033 --col;
5035 else
5038 * Search forward and then backward to find the start of number.
5040 col = curwin->w_cursor.col;
5042 while (ptr[col] != NUL
5043 && !vim_isdigit(ptr[col])
5044 && !(doalp && ASCII_ISALPHA(ptr[col])))
5045 ++col;
5047 while (col > 0
5048 && vim_isdigit(ptr[col - 1])
5049 && !(doalp && ASCII_ISALPHA(ptr[col])))
5050 --col;
5054 * If a number was found, and saving for undo works, replace the number.
5056 firstdigit = ptr[col];
5057 RLADDSUBFIX(ptr);
5058 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5059 || u_save_cursor() != OK)
5061 beep_flush();
5062 return FAIL;
5065 /* get ptr again, because u_save() may have changed it */
5066 ptr = ml_get_curline();
5067 RLADDSUBFIX(ptr);
5069 if (doalp && ASCII_ISALPHA(firstdigit))
5071 /* decrement or increment alphabetic character */
5072 if (command == Ctrl_X)
5074 if (CharOrd(firstdigit) < Prenum1)
5076 if (isupper(firstdigit))
5077 firstdigit = 'A';
5078 else
5079 firstdigit = 'a';
5081 else
5082 #ifdef EBCDIC
5083 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5084 #else
5085 firstdigit -= Prenum1;
5086 #endif
5088 else
5090 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5092 if (isupper(firstdigit))
5093 firstdigit = 'Z';
5094 else
5095 firstdigit = 'z';
5097 else
5098 #ifdef EBCDIC
5099 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5100 #else
5101 firstdigit += Prenum1;
5102 #endif
5104 curwin->w_cursor.col = col;
5105 (void)del_char(FALSE);
5106 ins_char(firstdigit);
5108 else
5110 negative = FALSE;
5111 if (col > 0 && ptr[col - 1] == '-') /* negative number */
5113 --col;
5114 negative = TRUE;
5117 /* get the number value (unsigned) */
5118 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
5120 /* ignore leading '-' for hex and octal numbers */
5121 if (hex && negative)
5123 ++col;
5124 --length;
5125 negative = FALSE;
5128 /* add or subtract */
5129 subtract = FALSE;
5130 if (command == Ctrl_X)
5131 subtract ^= TRUE;
5132 if (negative)
5133 subtract ^= TRUE;
5135 oldn = n;
5136 if (subtract)
5137 n -= (unsigned long)Prenum1;
5138 else
5139 n += (unsigned long)Prenum1;
5141 /* handle wraparound for decimal numbers */
5142 if (!hex)
5144 if (subtract)
5146 if (n > oldn)
5148 n = 1 + (n ^ (unsigned long)-1);
5149 negative ^= TRUE;
5152 else /* add */
5154 if (n < oldn)
5156 n = (n ^ (unsigned long)-1);
5157 negative ^= TRUE;
5160 if (n == 0)
5161 negative = FALSE;
5165 * Delete the old number.
5167 curwin->w_cursor.col = col;
5168 todel = length;
5169 c = gchar_cursor();
5171 * Don't include the '-' in the length, only the length of the part
5172 * after it is kept the same.
5174 if (c == '-')
5175 --length;
5176 while (todel-- > 0)
5178 if (c < 0x100 && isalpha(c))
5180 if (isupper(c))
5181 hexupper = TRUE;
5182 else
5183 hexupper = FALSE;
5185 /* del_char() will mark line needing displaying */
5186 (void)del_char(FALSE);
5187 c = gchar_cursor();
5191 * Prepare the leading characters in buf1[].
5192 * When there are many leading zeros it could be very long. Allocate
5193 * a bit too much.
5195 buf1 = alloc((unsigned)length + NUMBUFLEN);
5196 if (buf1 == NULL)
5197 return FAIL;
5198 ptr = buf1;
5199 if (negative)
5201 *ptr++ = '-';
5203 if (hex)
5205 *ptr++ = '0';
5206 --length;
5208 if (hex == 'x' || hex == 'X')
5210 *ptr++ = hex;
5211 --length;
5215 * Put the number characters in buf2[].
5217 if (hex == 0)
5218 sprintf((char *)buf2, "%lu", n);
5219 else if (hex == '0')
5220 sprintf((char *)buf2, "%lo", n);
5221 else if (hex && hexupper)
5222 sprintf((char *)buf2, "%lX", n);
5223 else
5224 sprintf((char *)buf2, "%lx", n);
5225 length -= (int)STRLEN(buf2);
5228 * Adjust number of zeros to the new number of digits, so the
5229 * total length of the number remains the same.
5230 * Don't do this when
5231 * the result may look like an octal number.
5233 if (firstdigit == '0' && !(dooct && hex == 0))
5234 while (length-- > 0)
5235 *ptr++ = '0';
5236 *ptr = NUL;
5237 STRCAT(buf1, buf2);
5238 ins_str(buf1); /* insert the new number */
5239 vim_free(buf1);
5241 --curwin->w_cursor.col;
5242 curwin->w_set_curswant = TRUE;
5243 #ifdef FEAT_RIGHTLEFT
5244 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
5245 RLADDSUBFIX(ptr);
5246 #endif
5247 return OK;
5250 #ifdef FEAT_VIMINFO
5252 read_viminfo_register(virp, force)
5253 vir_T *virp;
5254 int force;
5256 int eof;
5257 int do_it = TRUE;
5258 int size;
5259 int limit;
5260 int i;
5261 int set_prev = FALSE;
5262 char_u *str;
5263 char_u **array = NULL;
5265 /* We only get here (hopefully) if line[0] == '"' */
5266 str = virp->vir_line + 1;
5267 if (*str == '"')
5269 set_prev = TRUE;
5270 str++;
5272 if (!ASCII_ISALNUM(*str) && *str != '-')
5274 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5275 return TRUE; /* too many errors, pretend end-of-file */
5276 do_it = FALSE;
5278 get_yank_register(*str++, FALSE);
5279 if (!force && y_current->y_array != NULL)
5280 do_it = FALSE;
5281 size = 0;
5282 limit = 100; /* Optimized for registers containing <= 100 lines */
5283 if (do_it)
5285 if (set_prev)
5286 y_previous = y_current;
5287 vim_free(y_current->y_array);
5288 array = y_current->y_array =
5289 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
5290 str = skipwhite(str);
5291 if (STRNCMP(str, "CHAR", 4) == 0)
5292 y_current->y_type = MCHAR;
5293 #ifdef FEAT_VISUAL
5294 else if (STRNCMP(str, "BLOCK", 5) == 0)
5295 y_current->y_type = MBLOCK;
5296 #endif
5297 else
5298 y_current->y_type = MLINE;
5299 /* get the block width; if it's missing we get a zero, which is OK */
5300 str = skipwhite(skiptowhite(str));
5301 #ifdef FEAT_VISUAL
5302 y_current->y_width = getdigits(&str);
5303 #else
5304 (void)getdigits(&str);
5305 #endif
5308 while (!(eof = viminfo_readline(virp))
5309 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5311 if (do_it)
5313 if (size >= limit)
5315 y_current->y_array = (char_u **)
5316 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
5317 for (i = 0; i < limit; i++)
5318 y_current->y_array[i] = array[i];
5319 vim_free(array);
5320 limit *= 2;
5321 array = y_current->y_array;
5323 str = viminfo_readstring(virp, 1, TRUE);
5324 if (str != NULL)
5325 array[size++] = str;
5326 else
5327 do_it = FALSE;
5330 if (do_it)
5332 if (size == 0)
5334 vim_free(array);
5335 y_current->y_array = NULL;
5337 else if (size < limit)
5339 y_current->y_array =
5340 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
5341 for (i = 0; i < size; i++)
5342 y_current->y_array[i] = array[i];
5343 vim_free(array);
5345 y_current->y_size = size;
5347 return eof;
5350 void
5351 write_viminfo_registers(fp)
5352 FILE *fp;
5354 int i, j;
5355 char_u *type;
5356 char_u c;
5357 int num_lines;
5358 int max_num_lines;
5359 int max_kbyte;
5360 long len;
5362 fprintf(fp, _("\n# Registers:\n"));
5364 /* Get '<' value, use old '"' value if '<' is not found. */
5365 max_num_lines = get_viminfo_parameter('<');
5366 if (max_num_lines < 0)
5367 max_num_lines = get_viminfo_parameter('"');
5368 if (max_num_lines == 0)
5369 return;
5370 max_kbyte = get_viminfo_parameter('s');
5371 if (max_kbyte == 0)
5372 return;
5373 for (i = 0; i < NUM_REGISTERS; i++)
5375 if (y_regs[i].y_array == NULL)
5376 continue;
5377 #ifdef FEAT_CLIPBOARD
5378 /* Skip '*'/'+' register, we don't want them back next time */
5379 if (i == STAR_REGISTER || i == PLUS_REGISTER)
5380 continue;
5381 #endif
5382 #ifdef FEAT_DND
5383 /* Neither do we want the '~' register */
5384 if (i == TILDE_REGISTER)
5385 continue;
5386 #endif
5387 /* Skip empty registers. */
5388 num_lines = y_regs[i].y_size;
5389 if (num_lines == 0
5390 || (num_lines == 1 && y_regs[i].y_type == MCHAR
5391 && STRLEN(y_regs[i].y_array[0]) == 0))
5392 continue;
5394 if (max_kbyte > 0)
5396 /* Skip register if there is more text than the maximum size. */
5397 len = 0;
5398 for (j = 0; j < num_lines; j++)
5399 len += (long)STRLEN(y_regs[i].y_array[j]) + 1L;
5400 if (len > (long)max_kbyte * 1024L)
5401 continue;
5404 switch (y_regs[i].y_type)
5406 case MLINE:
5407 type = (char_u *)"LINE";
5408 break;
5409 case MCHAR:
5410 type = (char_u *)"CHAR";
5411 break;
5412 #ifdef FEAT_VISUAL
5413 case MBLOCK:
5414 type = (char_u *)"BLOCK";
5415 break;
5416 #endif
5417 default:
5418 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
5419 y_regs[i].y_type);
5420 emsg(IObuff);
5421 type = (char_u *)"LINE";
5422 break;
5424 if (y_previous == &y_regs[i])
5425 fprintf(fp, "\"");
5426 c = get_register_name(i);
5427 fprintf(fp, "\"%c\t%s\t%d\n", c, type,
5428 #ifdef FEAT_VISUAL
5429 (int)y_regs[i].y_width
5430 #else
5432 #endif
5435 /* If max_num_lines < 0, then we save ALL the lines in the register */
5436 if (max_num_lines > 0 && num_lines > max_num_lines)
5437 num_lines = max_num_lines;
5438 for (j = 0; j < num_lines; j++)
5440 putc('\t', fp);
5441 viminfo_writestring(fp, y_regs[i].y_array[j]);
5445 #endif /* FEAT_VIMINFO */
5447 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
5449 * SELECTION / PRIMARY ('*')
5451 * Text selection stuff that uses the GUI selection register '*'. When using a
5452 * GUI this may be text from another window, otherwise it is the last text we
5453 * had highlighted with VIsual mode. With mouse support, clicking the middle
5454 * button performs the paste, otherwise you will need to do <"*p>. "
5455 * If not under X, it is synonymous with the clipboard register '+'.
5457 * X CLIPBOARD ('+')
5459 * Text selection stuff that uses the GUI clipboard register '+'.
5460 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5461 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5462 * otherwise you will need to do <"+p>. "
5463 * If not under X, it is synonymous with the selection register '*'.
5467 * Routine to export any final X selection we had to the environment
5468 * so that the text is still available after vim has exited. X selections
5469 * only exist while the owning application exists, so we write to the
5470 * permanent (while X runs) store CUT_BUFFER0.
5471 * Dump the CLIPBOARD selection if we own it (it's logically the more
5472 * 'permanent' of the two), otherwise the PRIMARY one.
5473 * For now, use a hard-coded sanity limit of 1Mb of data.
5475 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5476 void
5477 x11_export_final_selection()
5479 Display *dpy;
5480 char_u *str = NULL;
5481 long_u len = 0;
5482 int motion_type = -1;
5484 # ifdef FEAT_GUI
5485 if (gui.in_use)
5486 dpy = X_DISPLAY;
5487 else
5488 # endif
5489 # ifdef FEAT_XCLIPBOARD
5490 dpy = xterm_dpy;
5491 # else
5492 return;
5493 # endif
5495 /* Get selection to export */
5496 if (clip_plus.owned)
5497 motion_type = clip_convert_selection(&str, &len, &clip_plus);
5498 else if (clip_star.owned)
5499 motion_type = clip_convert_selection(&str, &len, &clip_star);
5501 /* Check it's OK */
5502 if (dpy != NULL && str != NULL && motion_type >= 0
5503 && len < 1024*1024 && len > 0)
5505 XStoreBuffer(dpy, (char *)str, (int)len, 0);
5506 XFlush(dpy);
5509 vim_free(str);
5511 #endif
5513 void
5514 clip_free_selection(cbd)
5515 VimClipboard *cbd;
5517 struct yankreg *y_ptr = y_current;
5519 if (cbd == &clip_plus)
5520 y_current = &y_regs[PLUS_REGISTER];
5521 else
5522 y_current = &y_regs[STAR_REGISTER];
5523 free_yank_all();
5524 y_current->y_size = 0;
5525 y_current = y_ptr;
5529 * Get the selected text and put it in the gui selection register '*' or '+'.
5531 void
5532 clip_get_selection(cbd)
5533 VimClipboard *cbd;
5535 struct yankreg *old_y_previous, *old_y_current;
5536 pos_T old_cursor;
5537 #ifdef FEAT_VISUAL
5538 pos_T old_visual;
5539 int old_visual_mode;
5540 #endif
5541 colnr_T old_curswant;
5542 int old_set_curswant;
5543 pos_T old_op_start, old_op_end;
5544 oparg_T oa;
5545 cmdarg_T ca;
5547 if (cbd->owned)
5549 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
5550 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
5551 return;
5553 /* Get the text between clip_star.start & clip_star.end */
5554 old_y_previous = y_previous;
5555 old_y_current = y_current;
5556 old_cursor = curwin->w_cursor;
5557 old_curswant = curwin->w_curswant;
5558 old_set_curswant = curwin->w_set_curswant;
5559 old_op_start = curbuf->b_op_start;
5560 old_op_end = curbuf->b_op_end;
5561 #ifdef FEAT_VISUAL
5562 old_visual = VIsual;
5563 old_visual_mode = VIsual_mode;
5564 #endif
5565 clear_oparg(&oa);
5566 oa.regname = (cbd == &clip_plus ? '+' : '*');
5567 oa.op_type = OP_YANK;
5568 vim_memset(&ca, 0, sizeof(ca));
5569 ca.oap = &oa;
5570 ca.cmdchar = 'y';
5571 ca.count1 = 1;
5572 ca.retval = CA_NO_ADJ_OP_END;
5573 do_pending_operator(&ca, 0, TRUE);
5574 y_previous = old_y_previous;
5575 y_current = old_y_current;
5576 curwin->w_cursor = old_cursor;
5577 changed_cline_bef_curs(); /* need to update w_virtcol et al */
5578 curwin->w_curswant = old_curswant;
5579 curwin->w_set_curswant = old_set_curswant;
5580 curbuf->b_op_start = old_op_start;
5581 curbuf->b_op_end = old_op_end;
5582 #ifdef FEAT_VISUAL
5583 VIsual = old_visual;
5584 VIsual_mode = old_visual_mode;
5585 #endif
5587 else
5589 clip_free_selection(cbd);
5591 /* Try to get selected text from another window */
5592 clip_gen_request_selection(cbd);
5596 /* Convert from the GUI selection string into the '*'/'+' register */
5597 void
5598 clip_yank_selection(type, str, len, cbd)
5599 int type;
5600 char_u *str;
5601 long len;
5602 VimClipboard *cbd;
5604 struct yankreg *y_ptr;
5606 if (cbd == &clip_plus)
5607 y_ptr = &y_regs[PLUS_REGISTER];
5608 else
5609 y_ptr = &y_regs[STAR_REGISTER];
5611 clip_free_selection(cbd);
5613 str_to_reg(y_ptr, type, str, len, 0L);
5617 * Convert the '*'/'+' register into a GUI selection string returned in *str
5618 * with length *len.
5619 * Returns the motion type, or -1 for failure.
5622 clip_convert_selection(str, len, cbd)
5623 char_u **str;
5624 long_u *len;
5625 VimClipboard *cbd;
5627 char_u *p;
5628 int lnum;
5629 int i, j;
5630 int_u eolsize;
5631 struct yankreg *y_ptr;
5633 if (cbd == &clip_plus)
5634 y_ptr = &y_regs[PLUS_REGISTER];
5635 else
5636 y_ptr = &y_regs[STAR_REGISTER];
5638 #ifdef USE_CRNL
5639 eolsize = 2;
5640 #else
5641 eolsize = 1;
5642 #endif
5644 *str = NULL;
5645 *len = 0;
5646 if (y_ptr->y_array == NULL)
5647 return -1;
5649 for (i = 0; i < y_ptr->y_size; i++)
5650 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
5653 * Don't want newline character at end of last line if we're in MCHAR mode.
5655 if (y_ptr->y_type == MCHAR && *len >= eolsize)
5656 *len -= eolsize;
5658 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
5659 if (p == NULL)
5660 return -1;
5661 lnum = 0;
5662 for (i = 0, j = 0; i < (int)*len; i++, j++)
5664 if (y_ptr->y_array[lnum][j] == '\n')
5665 p[i] = NUL;
5666 else if (y_ptr->y_array[lnum][j] == NUL)
5668 #ifdef USE_CRNL
5669 p[i++] = '\r';
5670 #endif
5671 #ifdef USE_CR
5672 p[i] = '\r';
5673 #else
5674 p[i] = '\n';
5675 #endif
5676 lnum++;
5677 j = -1;
5679 else
5680 p[i] = y_ptr->y_array[lnum][j];
5682 return y_ptr->y_type;
5686 # if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
5688 * If we have written to a clipboard register, send the text to the clipboard.
5690 static void
5691 may_set_selection()
5693 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
5695 clip_own_selection(&clip_star);
5696 clip_gen_set_selection(&clip_star);
5698 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
5700 clip_own_selection(&clip_plus);
5701 clip_gen_set_selection(&clip_plus);
5704 # endif
5706 #endif /* FEAT_CLIPBOARD || PROTO */
5709 #if defined(FEAT_DND) || defined(PROTO)
5711 * Replace the contents of the '~' register with str.
5713 void
5714 dnd_yank_drag_data(str, len)
5715 char_u *str;
5716 long len;
5718 struct yankreg *curr;
5720 curr = y_current;
5721 y_current = &y_regs[TILDE_REGISTER];
5722 free_yank_all();
5723 str_to_reg(y_current, MCHAR, str, len, 0L);
5724 y_current = curr;
5726 #endif
5729 #if defined(FEAT_EVAL) || defined(PROTO)
5731 * Return the type of a register.
5732 * Used for getregtype()
5733 * Returns MAUTO for error.
5735 char_u
5736 get_reg_type(regname, reglen)
5737 int regname;
5738 long *reglen;
5740 switch (regname)
5742 case '%': /* file name */
5743 case '#': /* alternate file name */
5744 case '=': /* expression */
5745 case ':': /* last command line */
5746 case '/': /* last search-pattern */
5747 case '.': /* last inserted text */
5748 #ifdef FEAT_SEARCHPATH
5749 case Ctrl_F: /* Filename under cursor */
5750 case Ctrl_P: /* Path under cursor, expand via "path" */
5751 #endif
5752 case Ctrl_W: /* word under cursor */
5753 case Ctrl_A: /* WORD (mnemonic All) under cursor */
5754 case '_': /* black hole: always empty */
5755 return MCHAR;
5758 #ifdef FEAT_CLIPBOARD
5759 regname = may_get_selection(regname);
5760 #endif
5762 /* Should we check for a valid name? */
5763 get_yank_register(regname, FALSE);
5765 if (y_current->y_array != NULL)
5767 #ifdef FEAT_VISUAL
5768 if (reglen != NULL && y_current->y_type == MBLOCK)
5769 *reglen = y_current->y_width;
5770 #endif
5771 return y_current->y_type;
5773 return MAUTO;
5777 * Return the contents of a register as a single allocated string.
5778 * Used for "@r" in expressions and for getreg().
5779 * Returns NULL for error.
5781 char_u *
5782 get_reg_contents(regname, allowexpr, expr_src)
5783 int regname;
5784 int allowexpr; /* allow "=" register */
5785 int expr_src; /* get expression for "=" register */
5787 long i;
5788 char_u *retval;
5789 int allocated;
5790 long len;
5792 /* Don't allow using an expression register inside an expression */
5793 if (regname == '=')
5795 if (allowexpr)
5797 if (expr_src)
5798 return get_expr_line_src();
5799 return get_expr_line();
5801 return NULL;
5804 if (regname == '@') /* "@@" is used for unnamed register */
5805 regname = '"';
5807 /* check for valid regname */
5808 if (regname != NUL && !valid_yank_reg(regname, FALSE))
5809 return NULL;
5811 #ifdef FEAT_CLIPBOARD
5812 regname = may_get_selection(regname);
5813 #endif
5815 if (get_spec_reg(regname, &retval, &allocated, FALSE))
5817 if (retval == NULL)
5818 return NULL;
5819 if (!allocated)
5820 retval = vim_strsave(retval);
5821 return retval;
5824 get_yank_register(regname, FALSE);
5825 if (y_current->y_array == NULL)
5826 return NULL;
5829 * Compute length of resulting string.
5831 len = 0;
5832 for (i = 0; i < y_current->y_size; ++i)
5834 len += (long)STRLEN(y_current->y_array[i]);
5836 * Insert a newline between lines and after last line if
5837 * y_type is MLINE.
5839 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5840 ++len;
5843 retval = lalloc(len + 1, TRUE);
5846 * Copy the lines of the yank register into the string.
5848 if (retval != NULL)
5850 len = 0;
5851 for (i = 0; i < y_current->y_size; ++i)
5853 STRCPY(retval + len, y_current->y_array[i]);
5854 len += (long)STRLEN(retval + len);
5857 * Insert a NL between lines and after the last line if y_type is
5858 * MLINE.
5860 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5861 retval[len++] = '\n';
5863 retval[len] = NUL;
5866 return retval;
5870 * Store string "str" in register "name".
5871 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
5872 * If "must_append" is TRUE, always append to the register. Otherwise append
5873 * if "name" is an uppercase letter.
5874 * Note: "maxlen" and "must_append" don't work for the "/" register.
5875 * Careful: 'str' is modified, you may have to use a copy!
5876 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
5878 void
5879 write_reg_contents(name, str, maxlen, must_append)
5880 int name;
5881 char_u *str;
5882 int maxlen;
5883 int must_append;
5885 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
5888 void
5889 write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
5890 int name;
5891 char_u *str;
5892 int maxlen;
5893 int must_append;
5894 int yank_type;
5895 long block_len;
5897 struct yankreg *old_y_previous, *old_y_current;
5898 long len;
5900 if (maxlen >= 0)
5901 len = maxlen;
5902 else
5903 len = (long)STRLEN(str);
5905 /* Special case: '/' search pattern */
5906 if (name == '/')
5908 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
5909 return;
5912 #ifdef FEAT_EVAL
5913 if (name == '=')
5915 char_u *p, *s;
5917 p = vim_strnsave(str, (int)len);
5918 if (p == NULL)
5919 return;
5920 if (must_append)
5922 s = concat_str(get_expr_line_src(), p);
5923 vim_free(p);
5924 p = s;
5927 set_expr_line(p);
5928 return;
5930 #endif
5932 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
5934 emsg_invreg(name);
5935 return;
5938 if (name == '_') /* black hole: nothing to do */
5939 return;
5941 /* Don't want to change the current (unnamed) register */
5942 old_y_previous = y_previous;
5943 old_y_current = y_current;
5945 get_yank_register(name, TRUE);
5946 if (!y_append && !must_append)
5947 free_yank_all();
5948 #ifndef FEAT_VISUAL
5949 /* Just in case - make sure we don't use MBLOCK */
5950 if (yank_type == MBLOCK)
5951 yank_type = MAUTO;
5952 #endif
5953 if (yank_type == MAUTO)
5954 yank_type = ((len > 0 && (str[len - 1] == '\n' || str[len - 1] == '\r'))
5955 ? MLINE : MCHAR);
5956 str_to_reg(y_current, yank_type, str, len, block_len);
5958 # ifdef FEAT_CLIPBOARD
5959 /* Send text of clipboard register to the clipboard. */
5960 may_set_selection();
5961 # endif
5963 /* ':let @" = "val"' should change the meaning of the "" register */
5964 if (name != '"')
5965 y_previous = old_y_previous;
5966 y_current = old_y_current;
5968 #endif /* FEAT_EVAL */
5970 #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
5972 * Put a string into a register. When the register is not empty, the string
5973 * is appended.
5975 static void
5976 str_to_reg(y_ptr, type, str, len, blocklen)
5977 struct yankreg *y_ptr; /* pointer to yank register */
5978 int type; /* MCHAR, MLINE or MBLOCK */
5979 char_u *str; /* string to put in register */
5980 long len; /* length of string */
5981 long blocklen; /* width of Visual block */
5983 int lnum;
5984 long start;
5985 long i;
5986 int extra;
5987 int newlines; /* number of lines added */
5988 int extraline = 0; /* extra line at the end */
5989 int append = FALSE; /* append to last line in register */
5990 char_u *s;
5991 char_u **pp;
5992 #ifdef FEAT_VISUAL
5993 long maxlen;
5994 #endif
5996 if (y_ptr->y_array == NULL) /* NULL means emtpy register */
5997 y_ptr->y_size = 0;
6000 * Count the number of lines within the string
6002 newlines = 0;
6003 for (i = 0; i < len; i++)
6004 if (str[i] == '\n')
6005 ++newlines;
6006 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
6008 extraline = 1;
6009 ++newlines; /* count extra newline at the end */
6011 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
6013 append = TRUE;
6014 --newlines; /* uncount newline when appending first line */
6018 * Allocate an array to hold the pointers to the new register lines.
6019 * If the register was not empty, move the existing lines to the new array.
6021 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
6022 * sizeof(char_u *), TRUE);
6023 if (pp == NULL) /* out of memory */
6024 return;
6025 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
6026 pp[lnum] = y_ptr->y_array[lnum];
6027 vim_free(y_ptr->y_array);
6028 y_ptr->y_array = pp;
6029 #ifdef FEAT_VISUAL
6030 maxlen = 0;
6031 #endif
6034 * Find the end of each line and save it into the array.
6036 for (start = 0; start < len + extraline; start += i + 1)
6038 for (i = start; i < len; ++i) /* find the end of the line */
6039 if (str[i] == '\n')
6040 break;
6041 i -= start; /* i is now length of line */
6042 #ifdef FEAT_VISUAL
6043 if (i > maxlen)
6044 maxlen = i;
6045 #endif
6046 if (append)
6048 --lnum;
6049 extra = (int)STRLEN(y_ptr->y_array[lnum]);
6051 else
6052 extra = 0;
6053 s = alloc((unsigned)(i + extra + 1));
6054 if (s == NULL)
6055 break;
6056 if (extra)
6057 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
6058 if (append)
6059 vim_free(y_ptr->y_array[lnum]);
6060 if (i)
6061 mch_memmove(s + extra, str + start, (size_t)i);
6062 extra += i;
6063 s[extra] = NUL;
6064 y_ptr->y_array[lnum++] = s;
6065 while (--extra >= 0)
6067 if (*s == NUL)
6068 *s = '\n'; /* replace NUL with newline */
6069 ++s;
6071 append = FALSE; /* only first line is appended */
6073 y_ptr->y_type = type;
6074 y_ptr->y_size = lnum;
6075 # ifdef FEAT_VISUAL
6076 if (type == MBLOCK)
6077 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
6078 else
6079 y_ptr->y_width = 0;
6080 # endif
6082 #endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
6084 void
6085 clear_oparg(oap)
6086 oparg_T *oap;
6088 vim_memset(oap, 0, sizeof(oparg_T));
6091 static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
6094 * Count the number of bytes, characters and "words" in a line.
6096 * "Words" are counted by looking for boundaries between non-space and
6097 * space characters. (it seems to produce results that match 'wc'.)
6099 * Return value is byte count; word count for the line is added to "*wc".
6100 * Char count is added to "*cc".
6102 * The function will only examine the first "limit" characters in the
6103 * line, stopping if it encounters an end-of-line (NUL byte). In that
6104 * case, eol_size will be added to the character count to account for
6105 * the size of the EOL character.
6107 static long
6108 line_count_info(line, wc, cc, limit, eol_size)
6109 char_u *line;
6110 long *wc;
6111 long *cc;
6112 long limit;
6113 int eol_size;
6115 long i;
6116 long words = 0;
6117 long chars = 0;
6118 int is_word = 0;
6120 for (i = 0; line[i] && i < limit; )
6122 if (is_word)
6124 if (vim_isspace(line[i]))
6126 words++;
6127 is_word = 0;
6130 else if (!vim_isspace(line[i]))
6131 is_word = 1;
6132 ++chars;
6133 #ifdef FEAT_MBYTE
6134 i += (*mb_ptr2len)(line + i);
6135 #else
6136 ++i;
6137 #endif
6140 if (is_word)
6141 words++;
6142 *wc += words;
6144 /* Add eol_size if the end of line was reached before hitting limit. */
6145 if (line[i] == NUL && i < limit)
6147 i += eol_size;
6148 chars += eol_size;
6150 *cc += chars;
6151 return i;
6155 * Give some info about the position of the cursor (for "g CTRL-G").
6156 * In Visual mode, give some info about the selected region. (In this case,
6157 * the *_count_cursor variables store running totals for the selection.)
6159 void
6160 cursor_pos_info()
6162 char_u *p;
6163 char_u buf1[50];
6164 char_u buf2[40];
6165 linenr_T lnum;
6166 long byte_count = 0;
6167 long byte_count_cursor = 0;
6168 long char_count = 0;
6169 long char_count_cursor = 0;
6170 long word_count = 0;
6171 long word_count_cursor = 0;
6172 int eol_size;
6173 long last_check = 100000L;
6174 #ifdef FEAT_VISUAL
6175 long line_count_selected = 0;
6176 pos_T min_pos, max_pos;
6177 oparg_T oparg;
6178 struct block_def bd;
6179 #endif
6182 * Compute the length of the file in characters.
6184 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6186 MSG(_(no_lines_msg));
6188 else
6190 if (get_fileformat(curbuf) == EOL_DOS)
6191 eol_size = 2;
6192 else
6193 eol_size = 1;
6195 #ifdef FEAT_VISUAL
6196 if (VIsual_active)
6198 if (lt(VIsual, curwin->w_cursor))
6200 min_pos = VIsual;
6201 max_pos = curwin->w_cursor;
6203 else
6205 min_pos = curwin->w_cursor;
6206 max_pos = VIsual;
6208 if (*p_sel == 'e' && max_pos.col > 0)
6209 --max_pos.col;
6211 if (VIsual_mode == Ctrl_V)
6213 oparg.is_VIsual = 1;
6214 oparg.block_mode = TRUE;
6215 oparg.op_type = OP_NOP;
6216 getvcols(curwin, &min_pos, &max_pos,
6217 &oparg.start_vcol, &oparg.end_vcol);
6218 if (curwin->w_curswant == MAXCOL)
6219 oparg.end_vcol = MAXCOL;
6220 /* Swap the start, end vcol if needed */
6221 if (oparg.end_vcol < oparg.start_vcol)
6223 oparg.end_vcol += oparg.start_vcol;
6224 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
6225 oparg.end_vcol -= oparg.start_vcol;
6228 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
6230 #endif
6232 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6234 /* Check for a CTRL-C every 100000 characters. */
6235 if (byte_count > last_check)
6237 ui_breakcheck();
6238 if (got_int)
6239 return;
6240 last_check = byte_count + 100000L;
6243 #ifdef FEAT_VISUAL
6244 /* Do extra processing for VIsual mode. */
6245 if (VIsual_active
6246 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
6248 char_u *s = NULL;
6249 long len = 0L;
6251 switch (VIsual_mode)
6253 case Ctrl_V:
6254 # ifdef FEAT_VIRTUALEDIT
6255 virtual_op = virtual_active();
6256 # endif
6257 block_prep(&oparg, &bd, lnum, 0);
6258 # ifdef FEAT_VIRTUALEDIT
6259 virtual_op = MAYBE;
6260 # endif
6261 s = bd.textstart;
6262 len = (long)bd.textlen;
6263 break;
6264 case 'V':
6265 s = ml_get(lnum);
6266 len = MAXCOL;
6267 break;
6268 case 'v':
6270 colnr_T start_col = (lnum == min_pos.lnum)
6271 ? min_pos.col : 0;
6272 colnr_T end_col = (lnum == max_pos.lnum)
6273 ? max_pos.col - start_col + 1 : MAXCOL;
6275 s = ml_get(lnum) + start_col;
6276 len = end_col;
6278 break;
6280 if (s != NULL)
6282 byte_count_cursor += line_count_info(s, &word_count_cursor,
6283 &char_count_cursor, len, eol_size);
6284 if (lnum == curbuf->b_ml.ml_line_count
6285 && !curbuf->b_p_eol
6286 && curbuf->b_p_bin
6287 && (long)STRLEN(s) < len)
6288 byte_count_cursor -= eol_size;
6291 else
6292 #endif
6294 /* In non-visual mode, check for the line the cursor is on */
6295 if (lnum == curwin->w_cursor.lnum)
6297 word_count_cursor += word_count;
6298 char_count_cursor += char_count;
6299 byte_count_cursor = byte_count +
6300 line_count_info(ml_get(lnum),
6301 &word_count_cursor, &char_count_cursor,
6302 (long)(curwin->w_cursor.col + 1), eol_size);
6305 /* Add to the running totals */
6306 byte_count += line_count_info(ml_get(lnum), &word_count,
6307 &char_count, (long)MAXCOL, eol_size);
6310 /* Correction for when last line doesn't have an EOL. */
6311 if (!curbuf->b_p_eol && curbuf->b_p_bin)
6312 byte_count -= eol_size;
6314 #ifdef FEAT_VISUAL
6315 if (VIsual_active)
6317 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
6319 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
6320 &max_pos.col);
6321 sprintf((char *)buf1, _("%ld Cols; "),
6322 (long)(oparg.end_vcol - oparg.start_vcol + 1));
6324 else
6325 buf1[0] = NUL;
6327 if (char_count_cursor == byte_count_cursor
6328 && char_count == byte_count)
6329 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
6330 buf1, line_count_selected,
6331 (long)curbuf->b_ml.ml_line_count,
6332 word_count_cursor, word_count,
6333 byte_count_cursor, byte_count);
6334 else
6335 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"),
6336 buf1, line_count_selected,
6337 (long)curbuf->b_ml.ml_line_count,
6338 word_count_cursor, word_count,
6339 char_count_cursor, char_count,
6340 byte_count_cursor, byte_count);
6342 else
6343 #endif
6345 p = ml_get_curline();
6346 validate_virtcol();
6347 col_print(buf1, (int)curwin->w_cursor.col + 1,
6348 (int)curwin->w_virtcol + 1);
6349 col_print(buf2, (int)STRLEN(p), linetabsize(p));
6351 if (char_count_cursor == byte_count_cursor
6352 && char_count == byte_count)
6353 sprintf((char *)IObuff, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"),
6354 (char *)buf1, (char *)buf2,
6355 (long)curwin->w_cursor.lnum,
6356 (long)curbuf->b_ml.ml_line_count,
6357 word_count_cursor, word_count,
6358 byte_count_cursor, byte_count);
6359 else
6360 sprintf((char *)IObuff, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"),
6361 (char *)buf1, (char *)buf2,
6362 (long)curwin->w_cursor.lnum,
6363 (long)curbuf->b_ml.ml_line_count,
6364 word_count_cursor, word_count,
6365 char_count_cursor, char_count,
6366 byte_count_cursor, byte_count);
6369 #ifdef FEAT_MBYTE
6370 byte_count = bomb_size();
6371 if (byte_count > 0)
6372 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
6373 byte_count);
6374 #endif
6375 /* Don't shorten this message, the user asked for it. */
6376 p = p_shm;
6377 p_shm = (char_u *)"";
6378 msg(IObuff);
6379 p_shm = p;