Merged from the latest developing branch.
[MacVim.git] / src / ops.c
blobb8bb53851a792eb07ed282def00a881cfa6cb4fa
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 before first char */
76 int endspaces; /* 'extra' cols after last char */
77 int textlen; /* chars in block */
78 char_u *textstart; /* pointer to 1st char (partially) in block */
79 colnr_T textcol; /* index of chars (partially) 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, FALSE);
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, call_changed_bytes)
325 int left;
326 int round;
327 int amount;
328 int call_changed_bytes; /* call changed_bytes() */
330 int count;
331 int i, j;
332 int p_sw = (int)curbuf->b_p_sw;
334 count = get_indent(); /* get current indent */
336 if (round) /* round off indent */
338 i = count / p_sw; /* number of p_sw rounded down */
339 j = count % p_sw; /* extra spaces */
340 if (j && left) /* first remove extra spaces */
341 --amount;
342 if (left)
344 i -= amount;
345 if (i < 0)
346 i = 0;
348 else
349 i += amount;
350 count = i * p_sw;
352 else /* original vi indent */
354 if (left)
356 count -= p_sw * amount;
357 if (count < 0)
358 count = 0;
360 else
361 count += p_sw * amount;
364 /* Set new indent */
365 #ifdef FEAT_VREPLACE
366 if (State & VREPLACE_FLAG)
367 change_indent(INDENT_SET, count, FALSE, NUL, call_changed_bytes);
368 else
369 #endif
370 (void)set_indent(count, call_changed_bytes ? SIN_CHANGED : 0);
373 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
375 * Shift one line of the current block one shiftwidth right or left.
376 * Leaves cursor on first character in block.
378 static void
379 shift_block(oap, amount)
380 oparg_T *oap;
381 int amount;
383 int left = (oap->op_type == OP_LSHIFT);
384 int oldstate = State;
385 int total;
386 char_u *newp, *oldp;
387 int oldcol = curwin->w_cursor.col;
388 int p_sw = (int)curbuf->b_p_sw;
389 int p_ts = (int)curbuf->b_p_ts;
390 struct block_def bd;
391 int incr;
392 colnr_T 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 colnr_T destination_col; /* column to which text in block will
459 be shifted */
460 char_u *verbatim_copy_end; /* end of the part of the line which is
461 copied verbatim */
462 colnr_T verbatim_copy_width;/* the (displayed) width of this part
463 of line */
464 unsigned fill; /* nr of spaces that replace a TAB */
465 unsigned new_line_len; /* the length of the line after the
466 block shift */
467 size_t block_space_width;
468 size_t shift_amount;
469 char_u *non_white = bd.textstart;
470 colnr_T non_white_col;
473 * Firstly, let's find the first non-whitespace character that is
474 * displayed after the block's start column and the character's column
475 * number. Also, let's calculate the width of all the whitespace
476 * characters that are displayed in the block and precede the searched
477 * non-whitespace character.
480 /* If "bd.startspaces" is set, "bd.textstart" points to the character,
481 * the part of which is displayed at the block's beginning. Let's start
482 * searching from the next character. */
483 if (bd.startspaces)
484 mb_ptr_adv(non_white);
486 /* The character's column is in "bd.start_vcol". */
487 non_white_col = bd.start_vcol;
489 while (vim_iswhite(*non_white))
491 incr = lbr_chartabsize_adv(&non_white, non_white_col);
492 non_white_col += incr;
495 block_space_width = non_white_col - oap->start_vcol;
496 /* We will shift by "total" or "block_space_width", whichever is less.
498 shift_amount = (block_space_width < (size_t)total
499 ? block_space_width : (size_t)total);
501 /* The column to which we will shift the text. */
502 destination_col = (colnr_T)(non_white_col - shift_amount);
504 /* Now let's find out how much of the beginning of the line we can
505 * reuse without modification. */
506 verbatim_copy_end = bd.textstart;
507 verbatim_copy_width = bd.start_vcol;
509 /* If "bd.startspaces" is set, "bd.textstart" points to the character
510 * preceding the block. We have to subtract its width to obtain its
511 * column number. */
512 if (bd.startspaces)
513 verbatim_copy_width -= bd.start_char_vcols;
514 while (verbatim_copy_width < destination_col)
516 incr = lbr_chartabsize(verbatim_copy_end, verbatim_copy_width);
517 if (verbatim_copy_width + incr > destination_col)
518 break;
519 verbatim_copy_width += incr;
520 mb_ptr_adv(verbatim_copy_end);
523 /* If "destination_col" is different from the width of the initial
524 * part of the line that will be copied, it means we encountered a tab
525 * character, which we will have to partly replace with spaces. */
526 fill = destination_col - verbatim_copy_width;
528 /* The replacement line will consist of:
529 * - the beginning of the original line up to "verbatim_copy_end",
530 * - "fill" number of spaces,
531 * - the rest of the line, pointed to by non_white. */
532 new_line_len = (unsigned)(verbatim_copy_end - oldp)
533 + fill
534 + (unsigned)STRLEN(non_white) + 1;
536 newp = alloc_check(new_line_len);
537 if (newp == NULL)
538 return;
539 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp));
540 copy_spaces(newp + (verbatim_copy_end - oldp), (size_t)fill);
541 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white);
543 /* replace the line */
544 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
545 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
546 State = oldstate;
547 curwin->w_cursor.col = oldcol;
548 #ifdef FEAT_RIGHTLEFT
549 p_ri = old_p_ri;
550 #endif
552 #endif
554 #ifdef FEAT_VISUALEXTRA
556 * Insert string "s" (b_insert ? before : after) block :AKelly
557 * Caller must prepare for undo.
559 static void
560 block_insert(oap, s, b_insert, bdp)
561 oparg_T *oap;
562 char_u *s;
563 int b_insert;
564 struct block_def *bdp;
566 int p_ts;
567 int count = 0; /* extra spaces to replace a cut TAB */
568 int spaces = 0; /* non-zero if cutting a TAB */
569 colnr_T offset; /* pointer along new line */
570 unsigned s_len; /* STRLEN(s) */
571 char_u *newp, *oldp; /* new, old lines */
572 linenr_T lnum; /* loop var */
573 int oldstate = State;
575 State = INSERT; /* don't want REPLACE for State */
576 s_len = (unsigned)STRLEN(s);
578 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
580 block_prep(oap, bdp, lnum, TRUE);
581 if (bdp->is_short && b_insert)
582 continue; /* OP_INSERT, line ends before block start */
584 oldp = ml_get(lnum);
586 if (b_insert)
588 p_ts = bdp->start_char_vcols;
589 spaces = bdp->startspaces;
590 if (spaces != 0)
591 count = p_ts - 1; /* we're cutting a TAB */
592 offset = bdp->textcol;
594 else /* append */
596 p_ts = bdp->end_char_vcols;
597 if (!bdp->is_short) /* spaces = padding after block */
599 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
600 if (spaces != 0)
601 count = p_ts - 1; /* we're cutting a TAB */
602 offset = bdp->textcol + bdp->textlen - (spaces != 0);
604 else /* spaces = padding to block edge */
606 /* if $ used, just append to EOL (ie spaces==0) */
607 if (!bdp->is_MAX)
608 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
609 count = spaces;
610 offset = bdp->textcol + bdp->textlen;
614 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
615 if (newp == NULL)
616 continue;
618 /* copy up to shifted part */
619 mch_memmove(newp, oldp, (size_t)(offset));
620 oldp += offset;
622 /* insert pre-padding */
623 copy_spaces(newp + offset, (size_t)spaces);
625 /* copy the new text */
626 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
627 offset += s_len;
629 if (spaces && !bdp->is_short)
631 /* insert post-padding */
632 copy_spaces(newp + offset + spaces, (size_t)(p_ts - spaces));
633 /* We're splitting a TAB, don't copy it. */
634 oldp++;
635 /* We allowed for that TAB, remember this now */
636 count++;
639 if (spaces > 0)
640 offset += count;
641 STRMOVE(newp + offset, oldp);
643 ml_replace(lnum, newp, FALSE);
645 if (lnum == oap->end.lnum)
647 /* Set "']" mark to the end of the block instead of the end of
648 * the insert in the first line. */
649 curbuf->b_op_end.lnum = oap->end.lnum;
650 curbuf->b_op_end.col = offset;
652 } /* for all lnum */
654 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
656 State = oldstate;
658 #endif
660 #if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
662 * op_reindent - handle reindenting a block of lines.
664 void
665 op_reindent(oap, how)
666 oparg_T *oap;
667 int (*how) __ARGS((void));
669 long i;
670 char_u *l;
671 int count;
672 linenr_T first_changed = 0;
673 linenr_T last_changed = 0;
674 linenr_T start_lnum = curwin->w_cursor.lnum;
676 /* Don't even try when 'modifiable' is off. */
677 if (!curbuf->b_p_ma)
679 EMSG(_(e_modifiable));
680 return;
683 for (i = oap->line_count; --i >= 0 && !got_int; )
685 /* it's a slow thing to do, so give feedback so there's no worry that
686 * the computer's just hung. */
688 if (i > 1
689 && (i % 50 == 0 || i == oap->line_count - 1)
690 && oap->line_count > p_report)
691 smsg((char_u *)_("%ld lines to indent... "), i);
694 * Be vi-compatible: For lisp indenting the first line is not
695 * indented, unless there is only one line.
697 #ifdef FEAT_LISP
698 if (i != oap->line_count - 1 || oap->line_count == 1
699 || how != get_lisp_indent)
700 #endif
702 l = skipwhite(ml_get_curline());
703 if (*l == NUL) /* empty or blank line */
704 count = 0;
705 else
706 count = how(); /* get the indent for this line */
708 if (set_indent(count, SIN_UNDO))
710 /* did change the indent, call changed_lines() later */
711 if (first_changed == 0)
712 first_changed = curwin->w_cursor.lnum;
713 last_changed = curwin->w_cursor.lnum;
716 ++curwin->w_cursor.lnum;
717 curwin->w_cursor.col = 0; /* make sure it's valid */
720 /* put cursor on first non-blank of indented line */
721 curwin->w_cursor.lnum = start_lnum;
722 beginline(BL_SOL | BL_FIX);
724 /* Mark changed lines so that they will be redrawn. When Visual
725 * highlighting was present, need to continue until the last line. When
726 * there is no change still need to remove the Visual highlighting. */
727 if (last_changed != 0)
728 changed_lines(first_changed, 0,
729 #ifdef FEAT_VISUAL
730 oap->is_VIsual ? start_lnum + oap->line_count :
731 #endif
732 last_changed + 1, 0L);
733 #ifdef FEAT_VISUAL
734 else if (oap->is_VIsual)
735 redraw_curbuf_later(INVERTED);
736 #endif
738 if (oap->line_count > p_report)
740 i = oap->line_count - (i + 1);
741 if (i == 1)
742 MSG(_("1 line indented "));
743 else
744 smsg((char_u *)_("%ld lines indented "), i);
746 /* set '[ and '] marks */
747 curbuf->b_op_start = oap->start;
748 curbuf->b_op_end = oap->end;
750 #endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
752 #if defined(FEAT_EVAL) || defined(PROTO)
754 * Keep the last expression line here, for repeating.
756 static char_u *expr_line = NULL;
759 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
760 * Returns '=' when OK, NUL otherwise.
763 get_expr_register()
765 char_u *new_line;
767 new_line = getcmdline('=', 0L, 0);
768 if (new_line == NULL)
769 return NUL;
770 if (*new_line == NUL) /* use previous line */
771 vim_free(new_line);
772 else
773 set_expr_line(new_line);
774 return '=';
778 * Set the expression for the '=' register.
779 * Argument must be an allocated string.
781 void
782 set_expr_line(new_line)
783 char_u *new_line;
785 vim_free(expr_line);
786 expr_line = new_line;
790 * Get the result of the '=' register expression.
791 * Returns a pointer to allocated memory, or NULL for failure.
793 char_u *
794 get_expr_line()
796 char_u *expr_copy;
797 char_u *rv;
798 static int nested = 0;
800 if (expr_line == NULL)
801 return NULL;
803 /* Make a copy of the expression, because evaluating it may cause it to be
804 * changed. */
805 expr_copy = vim_strsave(expr_line);
806 if (expr_copy == NULL)
807 return NULL;
809 /* When we are invoked recursively limit the evaluation to 10 levels.
810 * Then return the string as-is. */
811 if (nested >= 10)
812 return expr_copy;
814 ++nested;
815 rv = eval_to_string(expr_copy, NULL, TRUE);
816 --nested;
817 vim_free(expr_copy);
818 return rv;
822 * Get the '=' register expression itself, without evaluating it.
824 char_u *
825 get_expr_line_src()
827 if (expr_line == NULL)
828 return NULL;
829 return vim_strsave(expr_line);
831 #endif /* FEAT_EVAL */
834 * Check if 'regname' is a valid name of a yank register.
835 * Note: There is no check for 0 (default register), caller should do this
838 valid_yank_reg(regname, writing)
839 int regname;
840 int writing; /* if TRUE check for writable registers */
842 if ( (regname > 0 && ASCII_ISALNUM(regname))
843 || (!writing && vim_strchr((char_u *)
844 #ifdef FEAT_EVAL
845 "/.%#:="
846 #else
847 "/.%#:"
848 #endif
849 , regname) != NULL)
850 || regname == '"'
851 || regname == '-'
852 || regname == '_'
853 #ifdef FEAT_CLIPBOARD
854 || regname == '*'
855 || regname == '+'
856 #endif
857 #ifdef FEAT_DND
858 || (!writing && regname == '~')
859 #endif
861 return TRUE;
862 return FALSE;
866 * Set y_current and y_append, according to the value of "regname".
867 * Cannot handle the '_' register.
868 * Must only be called with a valid register name!
870 * If regname is 0 and writing, use register 0
871 * If regname is 0 and reading, use previous register
873 void
874 get_yank_register(regname, writing)
875 int regname;
876 int writing;
878 int i;
880 y_append = FALSE;
881 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
883 y_current = y_previous;
884 return;
886 i = regname;
887 if (VIM_ISDIGIT(i))
888 i -= '0';
889 else if (ASCII_ISLOWER(i))
890 i = CharOrdLow(i) + 10;
891 else if (ASCII_ISUPPER(i))
893 i = CharOrdUp(i) + 10;
894 y_append = TRUE;
896 else if (regname == '-')
897 i = DELETION_REGISTER;
898 #ifdef FEAT_CLIPBOARD
899 /* When selection is not available, use register 0 instead of '*' */
900 else if (clip_star.available && regname == '*')
901 i = STAR_REGISTER;
902 /* When clipboard is not available, use register 0 instead of '+' */
903 else if (clip_plus.available && regname == '+')
904 i = PLUS_REGISTER;
905 #endif
906 #ifdef FEAT_DND
907 else if (!writing && regname == '~')
908 i = TILDE_REGISTER;
909 #endif
910 else /* not 0-9, a-z, A-Z or '-': use register 0 */
911 i = 0;
912 y_current = &(y_regs[i]);
913 if (writing) /* remember the register we write into for do_put() */
914 y_previous = y_current;
917 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
919 * When "regname" is a clipboard register, obtain the selection. If it's not
920 * available return zero, otherwise return "regname".
923 may_get_selection(regname)
924 int regname;
926 if (regname == '*')
928 if (!clip_star.available)
929 regname = 0;
930 else
931 clip_get_selection(&clip_star);
933 else if (regname == '+')
935 if (!clip_plus.available)
936 regname = 0;
937 else
938 clip_get_selection(&clip_plus);
940 return regname;
942 #endif
944 #if defined(FEAT_VISUAL) || defined(PROTO)
946 * Obtain the contents of a "normal" register. The register is made empty.
947 * The returned pointer has allocated memory, use put_register() later.
949 void *
950 get_register(name, copy)
951 int name;
952 int copy; /* make a copy, if FALSE make register empty. */
954 struct yankreg *reg;
955 int i;
957 #ifdef FEAT_CLIPBOARD
958 /* When Visual area changed, may have to update selection. Obtain the
959 * selection too. */
960 if (name == '*' && clip_star.available)
962 if (clip_isautosel())
963 clip_update_selection();
964 may_get_selection(name);
966 #endif
968 get_yank_register(name, 0);
969 reg = (struct yankreg *)alloc((unsigned)sizeof(struct yankreg));
970 if (reg != NULL)
972 *reg = *y_current;
973 if (copy)
975 /* If we run out of memory some or all of the lines are empty. */
976 if (reg->y_size == 0)
977 reg->y_array = NULL;
978 else
979 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
980 * reg->y_size));
981 if (reg->y_array != NULL)
983 for (i = 0; i < reg->y_size; ++i)
984 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
987 else
988 y_current->y_array = NULL;
990 return (void *)reg;
994 * Put "reg" into register "name". Free any previous contents and "reg".
996 void
997 put_register(name, reg)
998 int name;
999 void *reg;
1001 get_yank_register(name, 0);
1002 free_yank_all();
1003 *y_current = *(struct yankreg *)reg;
1004 vim_free(reg);
1006 # ifdef FEAT_CLIPBOARD
1007 /* Send text written to clipboard register to the clipboard. */
1008 may_set_selection();
1009 # endif
1011 #endif
1013 #if defined(FEAT_MOUSE) || defined(PROTO)
1015 * return TRUE if the current yank register has type MLINE
1018 yank_register_mline(regname)
1019 int regname;
1021 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1022 return FALSE;
1023 if (regname == '_') /* black hole is always empty */
1024 return FALSE;
1025 get_yank_register(regname, FALSE);
1026 return (y_current->y_type == MLINE);
1028 #endif
1031 * Start or stop recording into a yank register.
1033 * Return FAIL for failure, OK otherwise.
1036 do_record(c)
1037 int c;
1039 char_u *p;
1040 static int regname;
1041 struct yankreg *old_y_previous, *old_y_current;
1042 int retval;
1044 if (Recording == FALSE) /* start recording */
1046 /* registers 0-9, a-z and " are allowed */
1047 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1048 retval = FAIL;
1049 else
1051 Recording = TRUE;
1052 showmode();
1053 regname = c;
1054 retval = OK;
1057 else /* stop recording */
1060 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1061 * needs to be removed again to put it in a register. exec_reg then
1062 * adds the escaping back later.
1064 Recording = FALSE;
1065 MSG("");
1066 p = get_recorded();
1067 if (p == NULL)
1068 retval = FAIL;
1069 else
1071 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1072 vim_unescape_csi(p);
1075 * We don't want to change the default register here, so save and
1076 * restore the current register name.
1078 old_y_previous = y_previous;
1079 old_y_current = y_current;
1081 retval = stuff_yank(regname, p);
1083 y_previous = old_y_previous;
1084 y_current = old_y_current;
1087 return retval;
1091 * Stuff string "p" into yank register "regname" as a single line (append if
1092 * uppercase). "p" must have been alloced.
1094 * return FAIL for failure, OK otherwise
1096 static int
1097 stuff_yank(regname, p)
1098 int regname;
1099 char_u *p;
1101 char_u *lp;
1102 char_u **pp;
1104 /* check for read-only register */
1105 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1107 vim_free(p);
1108 return FAIL;
1110 if (regname == '_') /* black hole: don't do anything */
1112 vim_free(p);
1113 return OK;
1115 get_yank_register(regname, TRUE);
1116 if (y_append && y_current->y_array != NULL)
1118 pp = &(y_current->y_array[y_current->y_size - 1]);
1119 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1120 if (lp == NULL)
1122 vim_free(p);
1123 return FAIL;
1125 STRCPY(lp, *pp);
1126 STRCAT(lp, p);
1127 vim_free(p);
1128 vim_free(*pp);
1129 *pp = lp;
1131 else
1133 free_yank_all();
1134 if ((y_current->y_array =
1135 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1137 vim_free(p);
1138 return FAIL;
1140 y_current->y_array[0] = p;
1141 y_current->y_size = 1;
1142 y_current->y_type = MCHAR; /* used to be MLINE, why? */
1144 return OK;
1148 * execute a yank register: copy it into the stuff buffer
1150 * return FAIL for failure, OK otherwise
1153 do_execreg(regname, colon, addcr, silent)
1154 int regname;
1155 int colon; /* insert ':' before each line */
1156 int addcr; /* always add '\n' to end of line */
1157 int silent; /* set "silent" flag in typeahead buffer */
1159 static int lastc = NUL;
1160 long i;
1161 char_u *p;
1162 int retval = OK;
1163 int remap;
1165 if (regname == '@') /* repeat previous one */
1167 if (lastc == NUL)
1169 EMSG(_("E748: No previously used register"));
1170 return FAIL;
1172 regname = lastc;
1174 /* check for valid regname */
1175 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
1177 emsg_invreg(regname);
1178 return FAIL;
1180 lastc = regname;
1182 #ifdef FEAT_CLIPBOARD
1183 regname = may_get_selection(regname);
1184 #endif
1186 if (regname == '_') /* black hole: don't stuff anything */
1187 return OK;
1189 #ifdef FEAT_CMDHIST
1190 if (regname == ':') /* use last command line */
1192 if (last_cmdline == NULL)
1194 EMSG(_(e_nolastcmd));
1195 return FAIL;
1197 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
1198 new_last_cmdline = NULL;
1199 /* Escape all control characters with a CTRL-V */
1200 p = vim_strsave_escaped_ext(last_cmdline,
1201 (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);
1202 if (p != NULL)
1204 /* When in Visual mode "'<,'>" will be prepended to the command.
1205 * Remove it when it's already there. */
1206 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
1207 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
1208 else
1209 retval = put_in_typebuf(p, TRUE, TRUE, silent);
1211 vim_free(p);
1213 #endif
1214 #ifdef FEAT_EVAL
1215 else if (regname == '=')
1217 p = get_expr_line();
1218 if (p == NULL)
1219 return FAIL;
1220 retval = put_in_typebuf(p, TRUE, colon, silent);
1221 vim_free(p);
1223 #endif
1224 else if (regname == '.') /* use last inserted text */
1226 p = get_last_insert_save();
1227 if (p == NULL)
1229 EMSG(_(e_noinstext));
1230 return FAIL;
1232 retval = put_in_typebuf(p, FALSE, colon, silent);
1233 vim_free(p);
1235 else
1237 get_yank_register(regname, FALSE);
1238 if (y_current->y_array == NULL)
1239 return FAIL;
1241 /* Disallow remaping for ":@r". */
1242 remap = colon ? REMAP_NONE : REMAP_YES;
1245 * Insert lines into typeahead buffer, from last one to first one.
1247 put_reedit_in_typebuf(silent);
1248 for (i = y_current->y_size; --i >= 0; )
1250 char_u *escaped;
1252 /* insert NL between lines and after last line if type is MLINE */
1253 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1254 || addcr)
1256 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
1257 return FAIL;
1259 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1260 if (escaped == NULL)
1261 return FAIL;
1262 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1263 vim_free(escaped);
1264 if (retval == FAIL)
1265 return FAIL;
1266 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
1267 == FAIL)
1268 return FAIL;
1270 Exec_reg = TRUE; /* disable the 'q' command */
1272 return retval;
1276 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1277 * used only after other typeahead has been processed.
1279 static void
1280 put_reedit_in_typebuf(silent)
1281 int silent;
1283 char_u buf[3];
1285 if (restart_edit != NUL)
1287 if (restart_edit == 'V')
1289 buf[0] = 'g';
1290 buf[1] = 'R';
1291 buf[2] = NUL;
1293 else
1295 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1296 buf[1] = NUL;
1298 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
1299 restart_edit = NUL;
1303 static int
1304 put_in_typebuf(s, esc, colon, silent)
1305 char_u *s;
1306 int esc; /* Escape CSI characters */
1307 int colon; /* add ':' before the line */
1308 int silent;
1310 int retval = OK;
1312 put_reedit_in_typebuf(silent);
1313 if (colon)
1314 retval = ins_typebuf((char_u *)"\n", REMAP_YES, 0, TRUE, silent);
1315 if (retval == OK)
1317 char_u *p;
1319 if (esc)
1320 p = vim_strsave_escape_csi(s);
1321 else
1322 p = s;
1323 if (p == NULL)
1324 retval = FAIL;
1325 else
1326 retval = ins_typebuf(p, REMAP_YES, 0, TRUE, silent);
1327 if (esc)
1328 vim_free(p);
1330 if (colon && retval == OK)
1331 retval = ins_typebuf((char_u *)":", REMAP_YES, 0, TRUE, silent);
1332 return retval;
1336 * Insert a yank register: copy it into the Read buffer.
1337 * Used by CTRL-R command and middle mouse button in insert mode.
1339 * return FAIL for failure, OK otherwise
1342 insert_reg(regname, literally)
1343 int regname;
1344 int literally; /* insert literally, not as if typed */
1346 long i;
1347 int retval = OK;
1348 char_u *arg;
1349 int allocated;
1352 * It is possible to get into an endless loop by having CTRL-R a in
1353 * register a and then, in insert mode, doing CTRL-R a.
1354 * If you hit CTRL-C, the loop will be broken here.
1356 ui_breakcheck();
1357 if (got_int)
1358 return FAIL;
1360 /* check for valid regname */
1361 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1362 return FAIL;
1364 #ifdef FEAT_CLIPBOARD
1365 regname = may_get_selection(regname);
1366 #endif
1368 if (regname == '.') /* insert last inserted text */
1369 retval = stuff_inserted(NUL, 1L, TRUE);
1370 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1372 if (arg == NULL)
1373 return FAIL;
1374 stuffescaped(arg, literally);
1375 if (allocated)
1376 vim_free(arg);
1378 else /* name or number register */
1380 get_yank_register(regname, FALSE);
1381 if (y_current->y_array == NULL)
1382 retval = FAIL;
1383 else
1385 for (i = 0; i < y_current->y_size; ++i)
1387 stuffescaped(y_current->y_array[i], literally);
1389 * Insert a newline between lines and after last line if
1390 * y_type is MLINE.
1392 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1393 stuffcharReadbuff('\n');
1398 return retval;
1402 * Stuff a string into the typeahead buffer, such that edit() will insert it
1403 * literally ("literally" TRUE) or interpret is as typed characters.
1405 static void
1406 stuffescaped(arg, literally)
1407 char_u *arg;
1408 int literally;
1410 int c;
1411 char_u *start;
1413 while (*arg != NUL)
1415 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1416 * stuff K_SPECIAL to get the effect of a special key when "literally"
1417 * is TRUE. */
1418 start = arg;
1419 while ((*arg >= ' '
1420 #ifndef EBCDIC
1421 && *arg < DEL /* EBCDIC: chars above space are normal */
1422 #endif
1424 || (*arg == K_SPECIAL && !literally))
1425 ++arg;
1426 if (arg > start)
1427 stuffReadbuffLen(start, (long)(arg - start));
1429 /* stuff a single special character */
1430 if (*arg != NUL)
1432 #ifdef FEAT_MBYTE
1433 if (has_mbyte)
1434 c = mb_ptr2char_adv(&arg);
1435 else
1436 #endif
1437 c = *arg++;
1438 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1439 stuffcharReadbuff(Ctrl_V);
1440 stuffcharReadbuff(c);
1446 * If "regname" is a special register, return TRUE and store a pointer to its
1447 * value in "argp".
1450 get_spec_reg(regname, argp, allocated, errmsg)
1451 int regname;
1452 char_u **argp;
1453 int *allocated; /* return: TRUE when value was allocated */
1454 int errmsg; /* give error message when failing */
1456 int cnt;
1458 *argp = NULL;
1459 *allocated = FALSE;
1460 switch (regname)
1462 case '%': /* file name */
1463 if (errmsg)
1464 check_fname(); /* will give emsg if not set */
1465 *argp = curbuf->b_fname;
1466 return TRUE;
1468 case '#': /* alternate file name */
1469 *argp = getaltfname(errmsg); /* may give emsg if not set */
1470 return TRUE;
1472 #ifdef FEAT_EVAL
1473 case '=': /* result of expression */
1474 *argp = get_expr_line();
1475 *allocated = TRUE;
1476 return TRUE;
1477 #endif
1479 case ':': /* last command line */
1480 if (last_cmdline == NULL && errmsg)
1481 EMSG(_(e_nolastcmd));
1482 *argp = last_cmdline;
1483 return TRUE;
1485 case '/': /* last search-pattern */
1486 if (last_search_pat() == NULL && errmsg)
1487 EMSG(_(e_noprevre));
1488 *argp = last_search_pat();
1489 return TRUE;
1491 case '.': /* last inserted text */
1492 *argp = get_last_insert_save();
1493 *allocated = TRUE;
1494 if (*argp == NULL && errmsg)
1495 EMSG(_(e_noinstext));
1496 return TRUE;
1498 #ifdef FEAT_SEARCHPATH
1499 case Ctrl_F: /* Filename under cursor */
1500 case Ctrl_P: /* Path under cursor, expand via "path" */
1501 if (!errmsg)
1502 return FALSE;
1503 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
1504 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
1505 *allocated = TRUE;
1506 return TRUE;
1507 #endif
1509 case Ctrl_W: /* word under cursor */
1510 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1511 if (!errmsg)
1512 return FALSE;
1513 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1514 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1515 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1516 *allocated = TRUE;
1517 return TRUE;
1519 case '_': /* black hole: always empty */
1520 *argp = (char_u *)"";
1521 return TRUE;
1524 return FALSE;
1528 * Paste a yank register into the command line.
1529 * Only for non-special registers.
1530 * Used by CTRL-R command in command-line mode
1531 * insert_reg() can't be used here, because special characters from the
1532 * register contents will be interpreted as commands.
1534 * return FAIL for failure, OK otherwise
1537 cmdline_paste_reg(regname, literally, remcr)
1538 int regname;
1539 int literally; /* Insert text literally instead of "as typed" */
1540 int remcr; /* don't add trailing CR */
1542 long i;
1544 get_yank_register(regname, FALSE);
1545 if (y_current->y_array == NULL)
1546 return FAIL;
1548 for (i = 0; i < y_current->y_size; ++i)
1550 cmdline_paste_str(y_current->y_array[i], literally);
1552 /* Insert ^M between lines and after last line if type is MLINE.
1553 * Don't do this when "remcr" is TRUE and the next line is empty. */
1554 if (y_current->y_type == MLINE
1555 || (i < y_current->y_size - 1
1556 && !(remcr
1557 && i == y_current->y_size - 2
1558 && *y_current->y_array[i + 1] == NUL)))
1559 cmdline_paste_str((char_u *)"\r", literally);
1561 /* Check for CTRL-C, in case someone tries to paste a few thousand
1562 * lines and gets bored. */
1563 ui_breakcheck();
1564 if (got_int)
1565 return FAIL;
1567 return OK;
1570 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
1572 * Adjust the register name pointed to with "rp" for the clipboard being
1573 * used always and the clipboard being available.
1575 void
1576 adjust_clip_reg(rp)
1577 int *rp;
1579 /* If no reg. specified, and "unnamed" is in 'clipboard', use '*' reg. */
1580 if (*rp == 0 && clip_unnamed)
1581 *rp = '*';
1582 if (!clip_star.available && *rp == '*')
1583 *rp = 0;
1584 if (!clip_plus.available && *rp == '+')
1585 *rp = 0;
1587 #endif
1590 * op_delete - handle a delete operation
1592 * return FAIL if undo failed, OK otherwise.
1595 op_delete(oap)
1596 oparg_T *oap;
1598 int n;
1599 linenr_T lnum;
1600 char_u *ptr;
1601 #ifdef FEAT_VISUAL
1602 char_u *newp, *oldp;
1603 struct block_def bd;
1604 #endif
1605 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1606 int did_yank = FALSE;
1608 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1609 return OK;
1611 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1612 if (oap->empty)
1613 return u_save_cursor();
1615 if (!curbuf->b_p_ma)
1617 EMSG(_(e_modifiable));
1618 return FAIL;
1621 #ifdef FEAT_CLIPBOARD
1622 adjust_clip_reg(&oap->regname);
1623 #endif
1625 #ifdef FEAT_MBYTE
1626 if (has_mbyte)
1627 mb_adjust_opend(oap);
1628 #endif
1631 * Imitate the strange Vi behaviour: If the delete spans more than one line
1632 * and motion_type == MCHAR and the result is a blank line, make the delete
1633 * linewise. Don't do this for the change command or Visual mode.
1635 if ( oap->motion_type == MCHAR
1636 #ifdef FEAT_VISUAL
1637 && !oap->is_VIsual
1638 && !oap->block_mode
1639 #endif
1640 && oap->line_count > 1
1641 && oap->op_type == OP_DELETE)
1643 ptr = ml_get(oap->end.lnum) + oap->end.col + oap->inclusive;
1644 ptr = skipwhite(ptr);
1645 if (*ptr == NUL && inindent(0))
1646 oap->motion_type = MLINE;
1650 * Check for trying to delete (e.g. "D") in an empty line.
1651 * Note: For the change operator it is ok.
1653 if ( oap->motion_type == MCHAR
1654 && oap->line_count == 1
1655 && oap->op_type == OP_DELETE
1656 && *ml_get(oap->start.lnum) == NUL)
1659 * It's an error to operate on an empty region, when 'E' included in
1660 * 'cpoptions' (Vi compatible).
1662 #ifdef FEAT_VIRTUALEDIT
1663 if (virtual_op)
1664 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1665 * marks as if it happened. */
1666 goto setmarks;
1667 #endif
1668 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1669 beep_flush();
1670 return OK;
1674 * Do a yank of whatever we're about to delete.
1675 * If a yank register was specified, put the deleted text into that register.
1676 * For the black hole register '_' don't yank anything.
1678 if (oap->regname != '_')
1680 if (oap->regname != 0)
1682 /* check for read-only register */
1683 if (!valid_yank_reg(oap->regname, TRUE))
1685 beep_flush();
1686 return OK;
1688 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1689 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1690 did_yank = TRUE;
1694 * Put deleted text into register 1 and shift number registers if the
1695 * delete contains a line break, or when a regname has been specified.
1697 if (oap->regname != 0 || oap->motion_type == MLINE
1698 || oap->line_count > 1 || oap->use_reg_one)
1700 y_current = &y_regs[9];
1701 free_yank_all(); /* free register nine */
1702 for (n = 9; n > 1; --n)
1703 y_regs[n] = y_regs[n - 1];
1704 y_previous = y_current = &y_regs[1];
1705 y_regs[1].y_array = NULL; /* set register one to empty */
1706 if (op_yank(oap, TRUE, FALSE) == OK)
1707 did_yank = TRUE;
1710 /* Yank into small delete register when no register specified and the
1711 * delete is within one line. */
1712 if (oap->regname == 0 && oap->motion_type != MLINE
1713 && oap->line_count == 1)
1715 oap->regname = '-';
1716 get_yank_register(oap->regname, TRUE);
1717 if (op_yank(oap, TRUE, FALSE) == OK)
1718 did_yank = TRUE;
1719 oap->regname = 0;
1723 * If there's too much stuff to fit in the yank register, then get a
1724 * confirmation before doing the delete. This is crude, but simple.
1725 * And it avoids doing a delete of something we can't put back if we
1726 * want.
1728 if (!did_yank)
1730 int msg_silent_save = msg_silent;
1732 msg_silent = 0; /* must display the prompt */
1733 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1734 msg_silent = msg_silent_save;
1735 if (n != 'y')
1737 EMSG(_(e_abort));
1738 return FAIL;
1743 #ifdef FEAT_VISUAL
1745 * block mode delete
1747 if (oap->block_mode)
1749 if (u_save((linenr_T)(oap->start.lnum - 1),
1750 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1751 return FAIL;
1753 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1755 block_prep(oap, &bd, lnum, TRUE);
1756 if (bd.textlen == 0) /* nothing to delete */
1757 continue;
1759 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1760 if (lnum == curwin->w_cursor.lnum)
1762 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1763 # ifdef FEAT_VIRTUALEDIT
1764 curwin->w_cursor.coladd = 0;
1765 # endif
1768 /* n == number of chars deleted
1769 * If we delete a TAB, it may be replaced by several characters.
1770 * Thus the number of characters may increase!
1772 n = bd.textlen - bd.startspaces - bd.endspaces;
1773 oldp = ml_get(lnum);
1774 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1775 if (newp == NULL)
1776 continue;
1777 /* copy up to deleted part */
1778 mch_memmove(newp, oldp, (size_t)bd.textcol);
1779 /* insert spaces */
1780 copy_spaces(newp + bd.textcol,
1781 (size_t)(bd.startspaces + bd.endspaces));
1782 /* copy the part after the deleted part */
1783 oldp += bd.textcol + bd.textlen;
1784 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
1785 /* replace the line */
1786 ml_replace(lnum, newp, FALSE);
1789 check_cursor_col();
1790 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1791 oap->end.lnum + 1, 0L);
1792 oap->line_count = 0; /* no lines deleted */
1794 else
1795 #endif
1796 if (oap->motion_type == MLINE)
1798 if (oap->op_type == OP_CHANGE)
1800 /* Delete the lines except the first one. Temporarily move the
1801 * cursor to the next line. Save the current line number, if the
1802 * last line is deleted it may be changed.
1804 if (oap->line_count > 1)
1806 lnum = curwin->w_cursor.lnum;
1807 ++curwin->w_cursor.lnum;
1808 del_lines((long)(oap->line_count - 1), TRUE);
1809 curwin->w_cursor.lnum = lnum;
1811 if (u_save_cursor() == FAIL)
1812 return FAIL;
1813 if (curbuf->b_p_ai) /* don't delete indent */
1815 beginline(BL_WHITE); /* cursor on first non-white */
1816 did_ai = TRUE; /* delete the indent when ESC hit */
1817 ai_col = curwin->w_cursor.col;
1819 else
1820 beginline(0); /* cursor in column 0 */
1821 truncate_line(FALSE); /* delete the rest of the line */
1822 /* leave cursor past last char in line */
1823 if (oap->line_count > 1)
1824 u_clearline(); /* "U" command not possible after "2cc" */
1826 else
1828 del_lines(oap->line_count, TRUE);
1829 beginline(BL_WHITE | BL_FIX);
1830 u_clearline(); /* "U" command not possible after "dd" */
1833 else
1835 #ifdef FEAT_VIRTUALEDIT
1836 if (virtual_op)
1838 int endcol = 0;
1840 /* For virtualedit: break the tabs that are partly included. */
1841 if (gchar_pos(&oap->start) == '\t')
1843 if (u_save_cursor() == FAIL) /* save first line for undo */
1844 return FAIL;
1845 if (oap->line_count == 1)
1846 endcol = getviscol2(oap->end.col, oap->end.coladd);
1847 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1848 oap->start = curwin->w_cursor;
1849 if (oap->line_count == 1)
1851 coladvance(endcol);
1852 oap->end.col = curwin->w_cursor.col;
1853 oap->end.coladd = curwin->w_cursor.coladd;
1854 curwin->w_cursor = oap->start;
1858 /* Break a tab only when it's included in the area. */
1859 if (gchar_pos(&oap->end) == '\t'
1860 && (int)oap->end.coladd < oap->inclusive)
1862 /* save last line for undo */
1863 if (u_save((linenr_T)(oap->end.lnum - 1),
1864 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1865 return FAIL;
1866 curwin->w_cursor = oap->end;
1867 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1868 oap->end = curwin->w_cursor;
1869 curwin->w_cursor = oap->start;
1872 #endif
1874 if (oap->line_count == 1) /* delete characters within one line */
1876 if (u_save_cursor() == FAIL) /* save line for undo */
1877 return FAIL;
1879 /* if 'cpoptions' contains '$', display '$' at end of change */
1880 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
1881 && oap->op_type == OP_CHANGE
1882 && oap->end.lnum == curwin->w_cursor.lnum
1883 #ifdef FEAT_VISUAL
1884 && !oap->is_VIsual
1885 #endif
1887 display_dollar(oap->end.col - !oap->inclusive);
1889 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1891 #ifdef FEAT_VIRTUALEDIT
1892 if (virtual_op)
1894 /* fix up things for virtualedit-delete:
1895 * break the tabs which are going to get in our way
1897 char_u *curline = ml_get_curline();
1898 int len = (int)STRLEN(curline);
1900 if (oap->end.coladd != 0
1901 && (int)oap->end.col >= len - 1
1902 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1903 n++;
1904 /* Delete at least one char (e.g, when on a control char). */
1905 if (n == 0 && oap->start.coladd != oap->end.coladd)
1906 n = 1;
1908 /* When deleted a char in the line, reset coladd. */
1909 if (gchar_cursor() != NUL)
1910 curwin->w_cursor.coladd = 0;
1912 #endif
1913 (void)del_bytes((long)n, !virtual_op, oap->op_type == OP_DELETE
1914 #ifdef FEAT_VISUAL
1915 && !oap->is_VIsual
1916 #endif
1919 else /* delete characters between lines */
1921 pos_T curpos;
1923 /* save deleted and changed lines for undo */
1924 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1925 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1926 return FAIL;
1928 truncate_line(TRUE); /* delete from cursor to end of line */
1930 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1931 ++curwin->w_cursor.lnum;
1932 del_lines((long)(oap->line_count - 2), FALSE);
1934 /* delete from start of line until op_end */
1935 curwin->w_cursor.col = 0;
1936 (void)del_bytes((long)(oap->end.col + 1 - !oap->inclusive),
1937 !virtual_op, oap->op_type == OP_DELETE
1938 #ifdef FEAT_VISUAL
1939 && !oap->is_VIsual
1940 #endif
1942 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
1944 (void)do_join(FALSE);
1948 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
1950 #ifdef FEAT_VIRTUALEDIT
1951 setmarks:
1952 #endif
1953 #ifdef FEAT_VISUAL
1954 if (oap->block_mode)
1956 curbuf->b_op_end.lnum = oap->end.lnum;
1957 curbuf->b_op_end.col = oap->start.col;
1959 else
1960 #endif
1961 curbuf->b_op_end = oap->start;
1962 curbuf->b_op_start = oap->start;
1964 return OK;
1967 #ifdef FEAT_MBYTE
1969 * Adjust end of operating area for ending on a multi-byte character.
1970 * Used for deletion.
1972 static void
1973 mb_adjust_opend(oap)
1974 oparg_T *oap;
1976 char_u *p;
1978 if (oap->inclusive)
1980 p = ml_get(oap->end.lnum);
1981 oap->end.col += mb_tail_off(p, p + oap->end.col);
1984 #endif
1986 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1988 * Replace a whole area with one character.
1991 op_replace(oap, c)
1992 oparg_T *oap;
1993 int c;
1995 int n, numc;
1996 #ifdef FEAT_MBYTE
1997 int num_chars;
1998 #endif
1999 char_u *newp, *oldp;
2000 size_t oldlen;
2001 struct block_def bd;
2003 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2004 return OK; /* nothing to do */
2006 #ifdef FEAT_MBYTE
2007 if (has_mbyte)
2008 mb_adjust_opend(oap);
2009 #endif
2011 if (u_save((linenr_T)(oap->start.lnum - 1),
2012 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2013 return FAIL;
2016 * block mode replace
2018 if (oap->block_mode)
2020 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2021 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2023 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2024 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2025 continue; /* nothing to replace */
2027 /* n == number of extra chars required
2028 * If we split a TAB, it may be replaced by several characters.
2029 * Thus the number of characters may increase!
2031 #ifdef FEAT_VIRTUALEDIT
2032 /* If the range starts in virtual space, count the initial
2033 * coladd offset as part of "startspaces" */
2034 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2036 pos_T vpos;
2038 getvpos(&vpos, oap->start_vcol);
2039 bd.startspaces += vpos.coladd;
2040 n = bd.startspaces;
2042 else
2043 #endif
2044 /* allow for pre spaces */
2045 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2047 /* allow for post spp */
2048 n += (bd.endspaces
2049 #ifdef FEAT_VIRTUALEDIT
2050 && !bd.is_oneChar
2051 #endif
2052 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2053 /* Figure out how many characters to replace. */
2054 numc = oap->end_vcol - oap->start_vcol + 1;
2055 if (bd.is_short && (!virtual_op || bd.is_MAX))
2056 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2058 #ifdef FEAT_MBYTE
2059 /* A double-wide character can be replaced only up to half the
2060 * times. */
2061 if ((*mb_char2cells)(c) > 1)
2063 if ((numc & 1) && !bd.is_short)
2065 ++bd.endspaces;
2066 ++n;
2068 numc = numc / 2;
2071 /* Compute bytes needed, move character count to num_chars. */
2072 num_chars = numc;
2073 numc *= (*mb_char2len)(c);
2074 #endif
2075 /* oldlen includes textlen, so don't double count */
2076 n += numc - bd.textlen;
2078 oldp = ml_get_curline();
2079 oldlen = STRLEN(oldp);
2080 newp = alloc_check((unsigned)oldlen + 1 + n);
2081 if (newp == NULL)
2082 continue;
2083 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2084 /* copy up to deleted part */
2085 mch_memmove(newp, oldp, (size_t)bd.textcol);
2086 oldp += bd.textcol + bd.textlen;
2087 /* insert pre-spaces */
2088 copy_spaces(newp + bd.textcol, (size_t)bd.startspaces);
2089 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
2090 #ifdef FEAT_MBYTE
2091 if (has_mbyte)
2093 n = (int)STRLEN(newp);
2094 while (--num_chars >= 0)
2095 n += (*mb_char2bytes)(c, newp + n);
2097 else
2098 #endif
2099 copy_chars(newp + STRLEN(newp), (size_t)numc, c);
2100 if (!bd.is_short)
2102 /* insert post-spaces */
2103 copy_spaces(newp + STRLEN(newp), (size_t)bd.endspaces);
2104 /* copy the part after the changed part */
2105 STRMOVE(newp + STRLEN(newp), oldp);
2107 /* replace the line */
2108 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
2111 else
2114 * MCHAR and MLINE motion replace.
2116 if (oap->motion_type == MLINE)
2118 oap->start.col = 0;
2119 curwin->w_cursor.col = 0;
2120 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2121 if (oap->end.col)
2122 --oap->end.col;
2124 else if (!oap->inclusive)
2125 dec(&(oap->end));
2127 while (ltoreq(curwin->w_cursor, oap->end))
2129 n = gchar_cursor();
2130 if (n != NUL)
2132 #ifdef FEAT_MBYTE
2133 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2135 /* This is slow, but it handles replacing a single-byte
2136 * with a multi-byte and the other way around. */
2137 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
2138 n = State;
2139 State = REPLACE;
2140 ins_char(c);
2141 State = n;
2142 /* Backup to the replaced character. */
2143 dec_cursor();
2145 else
2146 #endif
2148 #ifdef FEAT_VIRTUALEDIT
2149 if (n == TAB)
2151 int end_vcol = 0;
2153 if (curwin->w_cursor.lnum == oap->end.lnum)
2155 /* oap->end has to be recalculated when
2156 * the tab breaks */
2157 end_vcol = getviscol2(oap->end.col,
2158 oap->end.coladd);
2160 coladvance_force(getviscol());
2161 if (curwin->w_cursor.lnum == oap->end.lnum)
2162 getvpos(&oap->end, end_vcol);
2164 #endif
2165 pchar(curwin->w_cursor, c);
2168 #ifdef FEAT_VIRTUALEDIT
2169 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2171 int virtcols = oap->end.coladd;
2173 if (curwin->w_cursor.lnum == oap->start.lnum
2174 && oap->start.col == oap->end.col && oap->start.coladd)
2175 virtcols -= oap->start.coladd;
2177 /* oap->end has been trimmed so it's effectively inclusive;
2178 * as a result an extra +1 must be counted so we don't
2179 * trample the NUL byte. */
2180 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2181 curwin->w_cursor.col -= (virtcols + 1);
2182 for (; virtcols >= 0; virtcols--)
2184 pchar(curwin->w_cursor, c);
2185 if (inc(&curwin->w_cursor) == -1)
2186 break;
2189 #endif
2191 /* Advance to next character, stop at the end of the file. */
2192 if (inc_cursor() == -1)
2193 break;
2197 curwin->w_cursor = oap->start;
2198 check_cursor();
2199 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2201 /* Set "'[" and "']" marks. */
2202 curbuf->b_op_start = oap->start;
2203 curbuf->b_op_end = oap->end;
2205 return OK;
2207 #endif
2209 static int swapchars __ARGS((int op_type, pos_T *pos, int length));
2212 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2214 void
2215 op_tilde(oap)
2216 oparg_T *oap;
2218 pos_T pos;
2219 #ifdef FEAT_VISUAL
2220 struct block_def bd;
2221 #endif
2222 int did_change = FALSE;
2224 if (u_save((linenr_T)(oap->start.lnum - 1),
2225 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2226 return;
2228 pos = oap->start;
2229 #ifdef FEAT_VISUAL
2230 if (oap->block_mode) /* Visual block mode */
2232 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2234 int one_change;
2236 block_prep(oap, &bd, pos.lnum, FALSE);
2237 pos.col = bd.textcol;
2238 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2239 did_change |= one_change;
2241 # ifdef FEAT_NETBEANS_INTG
2242 if (usingNetbeans && one_change)
2244 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2246 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2247 (long)bd.textlen);
2248 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
2249 &ptr[bd.textcol], bd.textlen);
2251 # endif
2253 if (did_change)
2254 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2256 else /* not block mode */
2257 #endif
2259 if (oap->motion_type == MLINE)
2261 oap->start.col = 0;
2262 pos.col = 0;
2263 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2264 if (oap->end.col)
2265 --oap->end.col;
2267 else if (!oap->inclusive)
2268 dec(&(oap->end));
2270 if (pos.lnum == oap->end.lnum)
2271 did_change = swapchars(oap->op_type, &pos,
2272 oap->end.col - pos.col + 1);
2273 else
2274 for (;;)
2276 did_change |= swapchars(oap->op_type, &pos,
2277 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2278 (int)STRLEN(ml_get_pos(&pos)));
2279 if (ltoreq(oap->end, pos) || inc(&pos) == -1)
2280 break;
2282 if (did_change)
2284 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2285 0L);
2286 #ifdef FEAT_NETBEANS_INTG
2287 if (usingNetbeans && did_change)
2289 char_u *ptr;
2290 int count;
2292 pos = oap->start;
2293 while (pos.lnum < oap->end.lnum)
2295 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2296 count = (int)STRLEN(ptr) - pos.col;
2297 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
2298 netbeans_inserted(curbuf, pos.lnum, pos.col,
2299 &ptr[pos.col], count);
2300 pos.col = 0;
2301 pos.lnum++;
2303 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2304 count = oap->end.col - pos.col + 1;
2305 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
2306 netbeans_inserted(curbuf, pos.lnum, pos.col,
2307 &ptr[pos.col], count);
2309 #endif
2313 #ifdef FEAT_VISUAL
2314 if (!did_change && oap->is_VIsual)
2315 /* No change: need to remove the Visual selection */
2316 redraw_curbuf_later(INVERTED);
2317 #endif
2320 * Set '[ and '] marks.
2322 curbuf->b_op_start = oap->start;
2323 curbuf->b_op_end = oap->end;
2325 if (oap->line_count > p_report)
2327 if (oap->line_count == 1)
2328 MSG(_("1 line changed"));
2329 else
2330 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2335 * Invoke swapchar() on "length" bytes at position "pos".
2336 * "pos" is advanced to just after the changed characters.
2337 * "length" is rounded up to include the whole last multi-byte character.
2338 * Also works correctly when the number of bytes changes.
2339 * Returns TRUE if some character was changed.
2341 static int
2342 swapchars(op_type, pos, length)
2343 int op_type;
2344 pos_T *pos;
2345 int length;
2347 int todo;
2348 int did_change = 0;
2350 for (todo = length; todo > 0; --todo)
2352 # ifdef FEAT_MBYTE
2353 if (has_mbyte)
2354 /* we're counting bytes, not characters */
2355 todo -= (*mb_ptr2len)(ml_get_pos(pos)) - 1;
2356 # endif
2357 did_change |= swapchar(op_type, pos);
2358 if (inc(pos) == -1) /* at end of file */
2359 break;
2361 return did_change;
2365 * If op_type == OP_UPPER: make uppercase,
2366 * if op_type == OP_LOWER: make lowercase,
2367 * if op_type == OP_ROT13: do rot13 encoding,
2368 * else swap case of character at 'pos'
2369 * returns TRUE when something actually changed.
2372 swapchar(op_type, pos)
2373 int op_type;
2374 pos_T *pos;
2376 int c;
2377 int nc;
2379 c = gchar_pos(pos);
2381 /* Only do rot13 encoding for ASCII characters. */
2382 if (c >= 0x80 && op_type == OP_ROT13)
2383 return FALSE;
2385 #ifdef FEAT_MBYTE
2386 if (op_type == OP_UPPER && c == 0xdf
2387 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
2389 pos_T sp = curwin->w_cursor;
2391 /* Special handling of German sharp s: change to "SS". */
2392 curwin->w_cursor = *pos;
2393 del_char(FALSE);
2394 ins_char('S');
2395 ins_char('S');
2396 curwin->w_cursor = sp;
2397 inc(pos);
2400 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2401 return FALSE;
2402 #endif
2403 nc = c;
2404 if (MB_ISLOWER(c))
2406 if (op_type == OP_ROT13)
2407 nc = ROT13(c, 'a');
2408 else if (op_type != OP_LOWER)
2409 nc = MB_TOUPPER(c);
2411 else if (MB_ISUPPER(c))
2413 if (op_type == OP_ROT13)
2414 nc = ROT13(c, 'A');
2415 else if (op_type != OP_UPPER)
2416 nc = MB_TOLOWER(c);
2418 if (nc != c)
2420 #ifdef FEAT_MBYTE
2421 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2423 pos_T sp = curwin->w_cursor;
2425 curwin->w_cursor = *pos;
2426 del_char(FALSE);
2427 ins_char(nc);
2428 curwin->w_cursor = sp;
2430 else
2431 #endif
2432 pchar(*pos, nc);
2433 return TRUE;
2435 return FALSE;
2438 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2440 * op_insert - Insert and append operators for Visual mode.
2442 void
2443 op_insert(oap, count1)
2444 oparg_T *oap;
2445 long count1;
2447 long ins_len, pre_textlen = 0;
2448 char_u *firstline, *ins_text;
2449 struct block_def bd;
2450 int i;
2452 /* edit() changes this - record it for OP_APPEND */
2453 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2455 /* vis block is still marked. Get rid of it now. */
2456 curwin->w_cursor.lnum = oap->start.lnum;
2457 update_screen(INVERTED);
2459 if (oap->block_mode)
2461 #ifdef FEAT_VIRTUALEDIT
2462 /* When 'virtualedit' is used, need to insert the extra spaces before
2463 * doing block_prep(). When only "block" is used, virtual edit is
2464 * already disabled, but still need it when calling
2465 * coladvance_force(). */
2466 if (curwin->w_cursor.coladd > 0)
2468 int old_ve_flags = ve_flags;
2470 ve_flags = VE_ALL;
2471 if (u_save_cursor() == FAIL)
2472 return;
2473 coladvance_force(oap->op_type == OP_APPEND
2474 ? oap->end_vcol + 1 : getviscol());
2475 if (oap->op_type == OP_APPEND)
2476 --curwin->w_cursor.col;
2477 ve_flags = old_ve_flags;
2479 #endif
2480 /* Get the info about the block before entering the text */
2481 block_prep(oap, &bd, oap->start.lnum, TRUE);
2482 firstline = ml_get(oap->start.lnum) + bd.textcol;
2483 if (oap->op_type == OP_APPEND)
2484 firstline += bd.textlen;
2485 pre_textlen = (long)STRLEN(firstline);
2488 if (oap->op_type == OP_APPEND)
2490 if (oap->block_mode
2491 #ifdef FEAT_VIRTUALEDIT
2492 && curwin->w_cursor.coladd == 0
2493 #endif
2496 /* Move the cursor to the character right of the block. */
2497 curwin->w_set_curswant = TRUE;
2498 while (*ml_get_cursor() != NUL
2499 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2500 ++curwin->w_cursor.col;
2501 if (bd.is_short && !bd.is_MAX)
2503 /* First line was too short, make it longer and adjust the
2504 * values in "bd". */
2505 if (u_save_cursor() == FAIL)
2506 return;
2507 for (i = 0; i < bd.endspaces; ++i)
2508 ins_char(' ');
2509 bd.textlen += bd.endspaces;
2512 else
2514 curwin->w_cursor = oap->end;
2515 check_cursor_col();
2517 /* Works just like an 'i'nsert on the next character. */
2518 if (!lineempty(curwin->w_cursor.lnum)
2519 && oap->start_vcol != oap->end_vcol)
2520 inc_cursor();
2524 edit(NUL, FALSE, (linenr_T)count1);
2526 /* If user has moved off this line, we don't know what to do, so do
2527 * nothing.
2528 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2529 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
2530 return;
2532 if (oap->block_mode)
2534 struct block_def bd2;
2537 * Spaces and tabs in the indent may have changed to other spaces and
2538 * tabs. Get the starting column again and correct the length.
2539 * Don't do this when "$" used, end-of-line will have changed.
2541 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2542 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2544 if (oap->op_type == OP_APPEND)
2546 pre_textlen += bd2.textlen - bd.textlen;
2547 if (bd2.endspaces)
2548 --bd2.textlen;
2550 bd.textcol = bd2.textcol;
2551 bd.textlen = bd2.textlen;
2555 * Subsequent calls to ml_get() flush the firstline data - take a
2556 * copy of the required string.
2558 firstline = ml_get(oap->start.lnum) + bd.textcol;
2559 if (oap->op_type == OP_APPEND)
2560 firstline += bd.textlen;
2561 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
2563 ins_text = vim_strnsave(firstline, (int)ins_len);
2564 if (ins_text != NULL)
2566 /* block handled here */
2567 if (u_save(oap->start.lnum,
2568 (linenr_T)(oap->end.lnum + 1)) == OK)
2569 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2570 &bd);
2572 curwin->w_cursor.col = oap->start.col;
2573 check_cursor();
2574 vim_free(ins_text);
2579 #endif
2582 * op_change - handle a change operation
2584 * return TRUE if edit() returns because of a CTRL-O command
2587 op_change(oap)
2588 oparg_T *oap;
2590 colnr_T l;
2591 int retval;
2592 #ifdef FEAT_VISUALEXTRA
2593 long offset;
2594 linenr_T linenr;
2595 long ins_len;
2596 long pre_textlen = 0;
2597 long pre_indent = 0;
2598 char_u *firstline;
2599 char_u *ins_text, *newp, *oldp;
2600 struct block_def bd;
2601 #endif
2603 l = oap->start.col;
2604 if (oap->motion_type == MLINE)
2606 l = 0;
2607 #ifdef FEAT_SMARTINDENT
2608 if (!p_paste && curbuf->b_p_si
2609 # ifdef FEAT_CINDENT
2610 && !curbuf->b_p_cin
2611 # endif
2613 can_si = TRUE; /* It's like opening a new line, do si */
2614 #endif
2617 /* First delete the text in the region. In an empty buffer only need to
2618 * save for undo */
2619 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2621 if (u_save_cursor() == FAIL)
2622 return FALSE;
2624 else if (op_delete(oap) == FAIL)
2625 return FALSE;
2627 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
2628 && !virtual_op)
2629 inc_cursor();
2631 #ifdef FEAT_VISUALEXTRA
2632 /* check for still on same line (<CR> in inserted text meaningless) */
2633 /* skip blank lines too */
2634 if (oap->block_mode)
2636 # ifdef FEAT_VIRTUALEDIT
2637 /* Add spaces before getting the current line length. */
2638 if (virtual_op && (curwin->w_cursor.coladd > 0
2639 || gchar_cursor() == NUL))
2640 coladvance_force(getviscol());
2641 # endif
2642 firstline = ml_get(oap->start.lnum);
2643 pre_textlen = (long)STRLEN(firstline);
2644 pre_indent = (long)(skipwhite(firstline) - firstline);
2645 bd.textcol = curwin->w_cursor.col;
2647 #endif
2649 #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2650 if (oap->motion_type == MLINE)
2651 fix_indent();
2652 #endif
2654 retval = edit(NUL, FALSE, (linenr_T)1);
2656 #ifdef FEAT_VISUALEXTRA
2658 * In Visual block mode, handle copying the new text to all lines of the
2659 * block.
2660 * Don't repeat the insert when Insert mode ended with CTRL-C.
2662 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
2664 /* Auto-indenting may have changed the indent. If the cursor was past
2665 * the indent, exclude that indent change from the inserted text. */
2666 firstline = ml_get(oap->start.lnum);
2667 if (bd.textcol > (colnr_T)pre_indent)
2669 long new_indent = (long)(skipwhite(firstline) - firstline);
2671 pre_textlen += new_indent - pre_indent;
2672 bd.textcol += new_indent - pre_indent;
2675 ins_len = (long)STRLEN(firstline) - pre_textlen;
2676 if (ins_len > 0)
2678 /* Subsequent calls to ml_get() flush the firstline data - take a
2679 * copy of the inserted text. */
2680 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2682 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
2683 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2684 linenr++)
2686 block_prep(oap, &bd, linenr, TRUE);
2687 if (!bd.is_short || virtual_op)
2689 # ifdef FEAT_VIRTUALEDIT
2690 pos_T vpos;
2692 /* If the block starts in virtual space, count the
2693 * initial coladd offset as part of "startspaces" */
2694 if (bd.is_short)
2696 linenr_T lnum = curwin->w_cursor.lnum;
2698 curwin->w_cursor.lnum = linenr;
2699 (void)getvpos(&vpos, oap->start_vcol);
2700 curwin->w_cursor.lnum = lnum;
2702 else
2703 vpos.coladd = 0;
2704 # endif
2705 oldp = ml_get(linenr);
2706 newp = alloc_check((unsigned)(STRLEN(oldp)
2707 # ifdef FEAT_VIRTUALEDIT
2708 + vpos.coladd
2709 # endif
2710 + ins_len + 1));
2711 if (newp == NULL)
2712 continue;
2713 /* copy up to block start */
2714 mch_memmove(newp, oldp, (size_t)bd.textcol);
2715 offset = bd.textcol;
2716 # ifdef FEAT_VIRTUALEDIT
2717 copy_spaces(newp + offset, (size_t)vpos.coladd);
2718 offset += vpos.coladd;
2719 # endif
2720 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2721 offset += ins_len;
2722 oldp += bd.textcol;
2723 STRMOVE(newp + offset, oldp);
2724 ml_replace(linenr, newp, FALSE);
2727 check_cursor();
2729 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2731 vim_free(ins_text);
2734 #endif
2736 return retval;
2740 * set all the yank registers to empty (called from main())
2742 void
2743 init_yank()
2745 int i;
2747 for (i = 0; i < NUM_REGISTERS; ++i)
2748 y_regs[i].y_array = NULL;
2751 #if defined(EXITFREE) || defined(PROTO)
2752 void
2753 clear_registers()
2755 int i;
2757 for (i = 0; i < NUM_REGISTERS; ++i)
2759 y_current = &y_regs[i];
2760 if (y_current->y_array != NULL)
2761 free_yank_all();
2764 #endif
2767 * Free "n" lines from the current yank register.
2768 * Called for normal freeing and in case of error.
2770 static void
2771 free_yank(n)
2772 long n;
2774 if (y_current->y_array != NULL)
2776 long i;
2778 for (i = n; --i >= 0; )
2780 #ifdef AMIGA /* only for very slow machines */
2781 if ((i & 1023) == 1023) /* this may take a while */
2784 * This message should never cause a hit-return message.
2785 * Overwrite this message with any next message.
2787 ++no_wait_return;
2788 smsg((char_u *)_("freeing %ld lines"), i + 1);
2789 --no_wait_return;
2790 msg_didout = FALSE;
2791 msg_col = 0;
2793 #endif
2794 vim_free(y_current->y_array[i]);
2796 vim_free(y_current->y_array);
2797 y_current->y_array = NULL;
2798 #ifdef AMIGA
2799 if (n >= 1000)
2800 MSG("");
2801 #endif
2805 static void
2806 free_yank_all()
2808 free_yank(y_current->y_size);
2812 * Yank the text between "oap->start" and "oap->end" into a yank register.
2813 * If we are to append (uppercase register), we first yank into a new yank
2814 * register and then concatenate the old and the new one (so we keep the old
2815 * one in case of out-of-memory).
2817 * return FAIL for failure, OK otherwise
2820 op_yank(oap, deleting, mess)
2821 oparg_T *oap;
2822 int deleting;
2823 int mess;
2825 long y_idx; /* index in y_array[] */
2826 struct yankreg *curr; /* copy of y_current */
2827 struct yankreg newreg; /* new yank register when appending */
2828 char_u **new_ptr;
2829 linenr_T lnum; /* current line number */
2830 long j;
2831 int yanktype = oap->motion_type;
2832 long yanklines = oap->line_count;
2833 linenr_T yankendlnum = oap->end.lnum;
2834 char_u *p;
2835 char_u *pnew;
2836 struct block_def bd;
2838 /* check for read-only register */
2839 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2841 beep_flush();
2842 return FAIL;
2844 if (oap->regname == '_') /* black hole: nothing to do */
2845 return OK;
2847 #ifdef FEAT_CLIPBOARD
2848 if (!clip_star.available && oap->regname == '*')
2849 oap->regname = 0;
2850 else if (!clip_plus.available && oap->regname == '+')
2851 oap->regname = 0;
2852 #endif
2854 if (!deleting) /* op_delete() already set y_current */
2855 get_yank_register(oap->regname, TRUE);
2857 curr = y_current;
2858 /* append to existing contents */
2859 if (y_append && y_current->y_array != NULL)
2860 y_current = &newreg;
2861 else
2862 free_yank_all(); /* free previously yanked lines */
2865 * If the cursor was in column 1 before and after the movement, and the
2866 * operator is not inclusive, the yank is always linewise.
2868 if ( oap->motion_type == MCHAR
2869 && oap->start.col == 0
2870 && !oap->inclusive
2871 #ifdef FEAT_VISUAL
2872 && (!oap->is_VIsual || *p_sel == 'o')
2873 && !oap->block_mode
2874 #endif
2875 && oap->end.col == 0
2876 && yanklines > 1)
2878 yanktype = MLINE;
2879 --yankendlnum;
2880 --yanklines;
2883 y_current->y_size = yanklines;
2884 y_current->y_type = yanktype; /* set the yank register type */
2885 #ifdef FEAT_VISUAL
2886 y_current->y_width = 0;
2887 #endif
2888 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
2889 yanklines), TRUE);
2891 if (y_current->y_array == NULL)
2893 y_current = curr;
2894 return FAIL;
2897 y_idx = 0;
2898 lnum = oap->start.lnum;
2900 #ifdef FEAT_VISUAL
2901 if (oap->block_mode)
2903 /* Visual block mode */
2904 y_current->y_type = MBLOCK; /* set the yank register type */
2905 y_current->y_width = oap->end_vcol - oap->start_vcol;
2907 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
2908 y_current->y_width--;
2910 #endif
2912 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
2914 switch (y_current->y_type)
2916 #ifdef FEAT_VISUAL
2917 case MBLOCK:
2918 block_prep(oap, &bd, lnum, FALSE);
2919 if (yank_copy_line(&bd, y_idx) == FAIL)
2920 goto fail;
2921 break;
2922 #endif
2924 case MLINE:
2925 if ((y_current->y_array[y_idx] =
2926 vim_strsave(ml_get(lnum))) == NULL)
2927 goto fail;
2928 break;
2930 case MCHAR:
2932 colnr_T startcol = 0, endcol = MAXCOL;
2933 #ifdef FEAT_VIRTUALEDIT
2934 int is_oneChar = FALSE;
2935 colnr_T cs, ce;
2936 #endif
2937 p = ml_get(lnum);
2938 bd.startspaces = 0;
2939 bd.endspaces = 0;
2941 if (lnum == oap->start.lnum)
2943 startcol = oap->start.col;
2944 #ifdef FEAT_VIRTUALEDIT
2945 if (virtual_op)
2947 getvcol(curwin, &oap->start, &cs, NULL, &ce);
2948 if (ce != cs && oap->start.coladd > 0)
2950 /* Part of a tab selected -- but don't
2951 * double-count it. */
2952 bd.startspaces = (ce - cs + 1)
2953 - oap->start.coladd;
2954 startcol++;
2957 #endif
2960 if (lnum == oap->end.lnum)
2962 endcol = oap->end.col;
2963 #ifdef FEAT_VIRTUALEDIT
2964 if (virtual_op)
2966 getvcol(curwin, &oap->end, &cs, NULL, &ce);
2967 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
2968 # ifdef FEAT_MBYTE
2969 /* Don't add space for double-wide
2970 * char; endcol will be on last byte
2971 * of multi-byte char. */
2972 && (*mb_head_off)(p, p + endcol) == 0
2973 # endif
2976 if (oap->start.lnum == oap->end.lnum
2977 && oap->start.col == oap->end.col)
2979 /* Special case: inside a single char */
2980 is_oneChar = TRUE;
2981 bd.startspaces = oap->end.coladd
2982 - oap->start.coladd + oap->inclusive;
2983 endcol = startcol;
2985 else
2987 bd.endspaces = oap->end.coladd
2988 + oap->inclusive;
2989 endcol -= oap->inclusive;
2993 #endif
2995 if (startcol > endcol
2996 #ifdef FEAT_VIRTUALEDIT
2997 || is_oneChar
2998 #endif
3000 bd.textlen = 0;
3001 else
3003 if (endcol == MAXCOL)
3004 endcol = (colnr_T)STRLEN(p);
3005 bd.textlen = endcol - startcol + oap->inclusive;
3007 bd.textstart = p + startcol;
3008 if (yank_copy_line(&bd, y_idx) == FAIL)
3009 goto fail;
3010 break;
3012 /* NOTREACHED */
3016 if (curr != y_current) /* append the new block to the old block */
3018 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3019 (curr->y_size + y_current->y_size)), TRUE);
3020 if (new_ptr == NULL)
3021 goto fail;
3022 for (j = 0; j < curr->y_size; ++j)
3023 new_ptr[j] = curr->y_array[j];
3024 vim_free(curr->y_array);
3025 curr->y_array = new_ptr;
3027 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3028 curr->y_type = MLINE;
3030 /* Concatenate the last line of the old block with the first line of
3031 * the new block, unless being Vi compatible. */
3032 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
3034 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3035 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3036 if (pnew == NULL)
3038 y_idx = y_current->y_size - 1;
3039 goto fail;
3041 STRCPY(pnew, curr->y_array[--j]);
3042 STRCAT(pnew, y_current->y_array[0]);
3043 vim_free(curr->y_array[j]);
3044 vim_free(y_current->y_array[0]);
3045 curr->y_array[j++] = pnew;
3046 y_idx = 1;
3048 else
3049 y_idx = 0;
3050 while (y_idx < y_current->y_size)
3051 curr->y_array[j++] = y_current->y_array[y_idx++];
3052 curr->y_size = j;
3053 vim_free(y_current->y_array);
3054 y_current = curr;
3056 if (mess) /* Display message about yank? */
3058 if (yanktype == MCHAR
3059 #ifdef FEAT_VISUAL
3060 && !oap->block_mode
3061 #endif
3062 && yanklines == 1)
3063 yanklines = 0;
3064 /* Some versions of Vi use ">=" here, some don't... */
3065 if (yanklines > p_report)
3067 /* redisplay now, so message is not deleted */
3068 update_topline_redraw();
3069 if (yanklines == 1)
3071 #ifdef FEAT_VISUAL
3072 if (oap->block_mode)
3073 MSG(_("block of 1 line yanked"));
3074 else
3075 #endif
3076 MSG(_("1 line yanked"));
3078 #ifdef FEAT_VISUAL
3079 else if (oap->block_mode)
3080 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
3081 #endif
3082 else
3083 smsg((char_u *)_("%ld lines yanked"), yanklines);
3088 * Set "'[" and "']" marks.
3090 curbuf->b_op_start = oap->start;
3091 curbuf->b_op_end = oap->end;
3092 if (yanktype == MLINE
3093 #ifdef FEAT_VISUAL
3094 && !oap->block_mode
3095 #endif
3098 curbuf->b_op_start.col = 0;
3099 curbuf->b_op_end.col = MAXCOL;
3102 #ifdef FEAT_CLIPBOARD
3104 * If we were yanking to the '*' register, send result to clipboard.
3105 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3106 * to the '*' register.
3108 if (clip_star.available
3109 && (curr == &(y_regs[STAR_REGISTER])
3110 || (!deleting && oap->regname == 0 && clip_unnamed)))
3112 if (curr != &(y_regs[STAR_REGISTER]))
3113 /* Copy the text from register 0 to the clipboard register. */
3114 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3116 clip_own_selection(&clip_star);
3117 clip_gen_set_selection(&clip_star);
3120 # ifdef FEAT_X11
3122 * If we were yanking to the '+' register, send result to selection.
3123 * Also copy to the '*' register, in case auto-select is off.
3125 else if (clip_plus.available && curr == &(y_regs[PLUS_REGISTER]))
3127 /* No need to copy to * register upon 'unnamed' now - see below */
3128 clip_own_selection(&clip_plus);
3129 clip_gen_set_selection(&clip_plus);
3130 if (!clip_isautosel())
3132 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3133 clip_own_selection(&clip_star);
3134 clip_gen_set_selection(&clip_star);
3137 # endif
3138 #endif
3140 return OK;
3142 fail: /* free the allocated lines */
3143 free_yank(y_idx + 1);
3144 y_current = curr;
3145 return FAIL;
3148 static int
3149 yank_copy_line(bd, y_idx)
3150 struct block_def *bd;
3151 long y_idx;
3153 char_u *pnew;
3155 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3156 == NULL)
3157 return FAIL;
3158 y_current->y_array[y_idx] = pnew;
3159 copy_spaces(pnew, (size_t)bd->startspaces);
3160 pnew += bd->startspaces;
3161 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3162 pnew += bd->textlen;
3163 copy_spaces(pnew, (size_t)bd->endspaces);
3164 pnew += bd->endspaces;
3165 *pnew = NUL;
3166 return OK;
3169 #ifdef FEAT_CLIPBOARD
3171 * Make a copy of the y_current register to register "reg".
3173 static void
3174 copy_yank_reg(reg)
3175 struct yankreg *reg;
3177 struct yankreg *curr = y_current;
3178 long j;
3180 y_current = reg;
3181 free_yank_all();
3182 *y_current = *curr;
3183 y_current->y_array = (char_u **)lalloc_clear(
3184 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3185 if (y_current->y_array == NULL)
3186 y_current->y_size = 0;
3187 else
3188 for (j = 0; j < y_current->y_size; ++j)
3189 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3191 free_yank(j);
3192 y_current->y_size = 0;
3193 break;
3195 y_current = curr;
3197 #endif
3200 * Put contents of register "regname" into the text.
3201 * Caller must check "regname" to be valid!
3202 * "flags": PUT_FIXINDENT make indent look nice
3203 * PUT_CURSEND leave cursor after end of new text
3204 * PUT_LINE force linewise put (":put")
3206 void
3207 do_put(regname, dir, count, flags)
3208 int regname;
3209 int dir; /* BACKWARD for 'P', FORWARD for 'p' */
3210 long count;
3211 int flags;
3213 char_u *ptr;
3214 char_u *newp, *oldp;
3215 int yanklen;
3216 int totlen = 0; /* init for gcc */
3217 linenr_T lnum;
3218 colnr_T col;
3219 long i; /* index in y_array[] */
3220 int y_type;
3221 long y_size;
3222 #ifdef FEAT_VISUAL
3223 int oldlen;
3224 long y_width = 0;
3225 colnr_T vcol;
3226 int delcount;
3227 int incr = 0;
3228 long j;
3229 struct block_def bd;
3230 #endif
3231 char_u **y_array = NULL;
3232 long nr_lines = 0;
3233 pos_T new_cursor;
3234 int indent;
3235 int orig_indent = 0; /* init for gcc */
3236 int indent_diff = 0; /* init for gcc */
3237 int first_indent = TRUE;
3238 int lendiff = 0;
3239 pos_T old_pos;
3240 char_u *insert_string = NULL;
3241 int allocated = FALSE;
3242 long cnt;
3244 #ifdef FEAT_CLIPBOARD
3245 /* Adjust register name for "unnamed" in 'clipboard'. */
3246 adjust_clip_reg(&regname);
3247 (void)may_get_selection(regname);
3248 #endif
3250 if (flags & PUT_FIXINDENT)
3251 orig_indent = get_indent();
3253 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3254 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3257 * Using inserted text works differently, because the register includes
3258 * special characters (newlines, etc.).
3260 if (regname == '.')
3262 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3263 (count == -1 ? 'O' : 'i')), count, FALSE);
3264 /* Putting the text is done later, so can't really move the cursor to
3265 * the next character. Use "l" to simulate it. */
3266 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3267 stuffcharReadbuff('l');
3268 return;
3272 * For special registers '%' (file name), '#' (alternate file name) and
3273 * ':' (last command line), etc. we have to create a fake yank register.
3275 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3277 if (insert_string == NULL)
3278 return;
3281 if (insert_string != NULL)
3283 y_type = MCHAR;
3284 #ifdef FEAT_EVAL
3285 if (regname == '=')
3287 /* For the = register we need to split the string at NL
3288 * characters. */
3289 /* Loop twice: count the number of lines and save them. */
3290 for (;;)
3292 y_size = 0;
3293 ptr = insert_string;
3294 while (ptr != NULL)
3296 if (y_array != NULL)
3297 y_array[y_size] = ptr;
3298 ++y_size;
3299 ptr = vim_strchr(ptr, '\n');
3300 if (ptr != NULL)
3302 if (y_array != NULL)
3303 *ptr = NUL;
3304 ++ptr;
3305 /* A trailing '\n' makes the string linewise */
3306 if (*ptr == NUL)
3308 y_type = MLINE;
3309 break;
3313 if (y_array != NULL)
3314 break;
3315 y_array = (char_u **)alloc((unsigned)
3316 (y_size * sizeof(char_u *)));
3317 if (y_array == NULL)
3318 goto end;
3321 else
3322 #endif
3324 y_size = 1; /* use fake one-line yank register */
3325 y_array = &insert_string;
3328 else
3330 get_yank_register(regname, FALSE);
3332 y_type = y_current->y_type;
3333 #ifdef FEAT_VISUAL
3334 y_width = y_current->y_width;
3335 #endif
3336 y_size = y_current->y_size;
3337 y_array = y_current->y_array;
3340 #ifdef FEAT_VISUAL
3341 if (y_type == MLINE)
3343 if (flags & PUT_LINE_SPLIT)
3345 /* "p" or "P" in Visual mode: split the lines to put the text in
3346 * between. */
3347 if (u_save_cursor() == FAIL)
3348 goto end;
3349 ptr = vim_strsave(ml_get_cursor());
3350 if (ptr == NULL)
3351 goto end;
3352 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3353 vim_free(ptr);
3355 ptr = vim_strnsave(ml_get_curline(), curwin->w_cursor.col);
3356 if (ptr == NULL)
3357 goto end;
3358 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3359 ++nr_lines;
3360 dir = FORWARD;
3362 if (flags & PUT_LINE_FORWARD)
3364 /* Must be "p" for a Visual block, put lines below the block. */
3365 curwin->w_cursor = curbuf->b_visual.vi_end;
3366 dir = FORWARD;
3368 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3369 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3371 #endif
3373 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3374 y_type = MLINE;
3376 if (y_size == 0 || y_array == NULL)
3378 EMSG2(_("E353: Nothing in register %s"),
3379 regname == 0 ? (char_u *)"\"" : transchar(regname));
3380 goto end;
3383 #ifdef FEAT_VISUAL
3384 if (y_type == MBLOCK)
3386 lnum = curwin->w_cursor.lnum + y_size + 1;
3387 if (lnum > curbuf->b_ml.ml_line_count)
3388 lnum = curbuf->b_ml.ml_line_count + 1;
3389 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3390 goto end;
3392 else
3393 #endif
3394 if (y_type == MLINE)
3396 lnum = curwin->w_cursor.lnum;
3397 #ifdef FEAT_FOLDING
3398 /* Correct line number for closed fold. Don't move the cursor yet,
3399 * u_save() uses it. */
3400 if (dir == BACKWARD)
3401 (void)hasFolding(lnum, &lnum, NULL);
3402 else
3403 (void)hasFolding(lnum, NULL, &lnum);
3404 #endif
3405 if (dir == FORWARD)
3406 ++lnum;
3407 if (u_save(lnum - 1, lnum) == FAIL)
3408 goto end;
3409 #ifdef FEAT_FOLDING
3410 if (dir == FORWARD)
3411 curwin->w_cursor.lnum = lnum - 1;
3412 else
3413 curwin->w_cursor.lnum = lnum;
3414 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3415 #endif
3417 else if (u_save_cursor() == FAIL)
3418 goto end;
3420 yanklen = (int)STRLEN(y_array[0]);
3422 #ifdef FEAT_VIRTUALEDIT
3423 if (ve_flags == VE_ALL && y_type == MCHAR)
3425 if (gchar_cursor() == TAB)
3427 /* Don't need to insert spaces when "p" on the last position of a
3428 * tab or "P" on the first position. */
3429 if (dir == FORWARD
3430 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3431 : curwin->w_cursor.coladd > 0)
3432 coladvance_force(getviscol());
3433 else
3434 curwin->w_cursor.coladd = 0;
3436 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3437 coladvance_force(getviscol() + (dir == FORWARD));
3439 #endif
3441 lnum = curwin->w_cursor.lnum;
3442 col = curwin->w_cursor.col;
3444 #ifdef FEAT_VISUAL
3446 * Block mode
3448 if (y_type == MBLOCK)
3450 char c = gchar_cursor();
3451 colnr_T endcol2 = 0;
3453 if (dir == FORWARD && c != NUL)
3455 #ifdef FEAT_VIRTUALEDIT
3456 if (ve_flags == VE_ALL)
3457 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3458 else
3459 #endif
3460 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3462 #ifdef FEAT_MBYTE
3463 if (has_mbyte)
3464 /* move to start of next multi-byte character */
3465 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
3466 else
3467 #endif
3468 #ifdef FEAT_VIRTUALEDIT
3469 if (c != TAB || ve_flags != VE_ALL)
3470 #endif
3471 ++curwin->w_cursor.col;
3472 ++col;
3474 else
3475 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3477 #ifdef FEAT_VIRTUALEDIT
3478 col += curwin->w_cursor.coladd;
3479 if (ve_flags == VE_ALL
3480 && (curwin->w_cursor.coladd > 0
3481 || endcol2 == curwin->w_cursor.col))
3483 if (dir == FORWARD && c == NUL)
3484 ++col;
3485 if (dir != FORWARD && c != NUL)
3486 ++curwin->w_cursor.col;
3487 if (c == TAB)
3489 if (dir == BACKWARD && curwin->w_cursor.col)
3490 curwin->w_cursor.col--;
3491 if (dir == FORWARD && col - 1 == endcol2)
3492 curwin->w_cursor.col++;
3495 curwin->w_cursor.coladd = 0;
3496 #endif
3497 bd.textcol = 0;
3498 for (i = 0; i < y_size; ++i)
3500 int spaces;
3501 char shortline;
3503 bd.startspaces = 0;
3504 bd.endspaces = 0;
3505 vcol = 0;
3506 delcount = 0;
3508 /* add a new line */
3509 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3511 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3512 (colnr_T)1, FALSE) == FAIL)
3513 break;
3514 ++nr_lines;
3516 /* get the old line and advance to the position to insert at */
3517 oldp = ml_get_curline();
3518 oldlen = (int)STRLEN(oldp);
3519 for (ptr = oldp; vcol < col && *ptr; )
3521 /* Count a tab for what it's worth (if list mode not on) */
3522 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
3523 vcol += incr;
3525 bd.textcol = (colnr_T)(ptr - oldp);
3527 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3529 if (vcol < col) /* line too short, padd with spaces */
3530 bd.startspaces = col - vcol;
3531 else if (vcol > col)
3533 bd.endspaces = vcol - col;
3534 bd.startspaces = incr - bd.endspaces;
3535 --bd.textcol;
3536 delcount = 1;
3537 #ifdef FEAT_MBYTE
3538 if (has_mbyte)
3539 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3540 #endif
3541 if (oldp[bd.textcol] != TAB)
3543 /* Only a Tab can be split into spaces. Other
3544 * characters will have to be moved to after the
3545 * block, causing misalignment. */
3546 delcount = 0;
3547 bd.endspaces = 0;
3551 yanklen = (int)STRLEN(y_array[i]);
3553 /* calculate number of spaces required to fill right side of block*/
3554 spaces = y_width + 1;
3555 for (j = 0; j < yanklen; j++)
3556 spaces -= lbr_chartabsize(&y_array[i][j], 0);
3557 if (spaces < 0)
3558 spaces = 0;
3560 /* insert the new text */
3561 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3562 newp = alloc_check((unsigned)totlen + oldlen + 1);
3563 if (newp == NULL)
3564 break;
3565 /* copy part up to cursor to new line */
3566 ptr = newp;
3567 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3568 ptr += bd.textcol;
3569 /* may insert some spaces before the new text */
3570 copy_spaces(ptr, (size_t)bd.startspaces);
3571 ptr += bd.startspaces;
3572 /* insert the new text */
3573 for (j = 0; j < count; ++j)
3575 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3576 ptr += yanklen;
3578 /* insert block's trailing spaces only if there's text behind */
3579 if ((j < count - 1 || !shortline) && spaces)
3581 copy_spaces(ptr, (size_t)spaces);
3582 ptr += spaces;
3585 /* may insert some spaces after the new text */
3586 copy_spaces(ptr, (size_t)bd.endspaces);
3587 ptr += bd.endspaces;
3588 /* move the text after the cursor to the end of the line. */
3589 mch_memmove(ptr, oldp + bd.textcol + delcount,
3590 (size_t)(oldlen - bd.textcol - delcount + 1));
3591 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3593 ++curwin->w_cursor.lnum;
3594 if (i == 0)
3595 curwin->w_cursor.col += bd.startspaces;
3598 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3600 /* Set '[ mark. */
3601 curbuf->b_op_start = curwin->w_cursor;
3602 curbuf->b_op_start.lnum = lnum;
3604 /* adjust '] mark */
3605 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3606 curbuf->b_op_end.col = bd.textcol + totlen - 1;
3607 # ifdef FEAT_VIRTUALEDIT
3608 curbuf->b_op_end.coladd = 0;
3609 # endif
3610 if (flags & PUT_CURSEND)
3612 colnr_T len;
3614 curwin->w_cursor = curbuf->b_op_end;
3615 curwin->w_cursor.col++;
3617 /* in Insert mode we might be after the NUL, correct for that */
3618 len = (colnr_T)STRLEN(ml_get_curline());
3619 if (curwin->w_cursor.col > len)
3620 curwin->w_cursor.col = len;
3622 else
3623 curwin->w_cursor.lnum = lnum;
3625 else
3626 #endif
3629 * Character or Line mode
3631 if (y_type == MCHAR)
3633 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3634 * char */
3635 if (dir == FORWARD && gchar_cursor() != NUL)
3637 #ifdef FEAT_MBYTE
3638 if (has_mbyte)
3640 int bytelen = (*mb_ptr2len)(ml_get_cursor());
3642 /* put it on the next of the multi-byte character. */
3643 col += bytelen;
3644 if (yanklen)
3646 curwin->w_cursor.col += bytelen;
3647 curbuf->b_op_end.col += bytelen;
3650 else
3651 #endif
3653 ++col;
3654 if (yanklen)
3656 ++curwin->w_cursor.col;
3657 ++curbuf->b_op_end.col;
3661 curbuf->b_op_start = curwin->w_cursor;
3664 * Line mode: BACKWARD is the same as FORWARD on the previous line
3666 else if (dir == BACKWARD)
3667 --lnum;
3668 new_cursor = curwin->w_cursor;
3671 * simple case: insert into current line
3673 if (y_type == MCHAR && y_size == 1)
3675 totlen = count * yanklen;
3676 if (totlen)
3678 oldp = ml_get(lnum);
3679 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3680 if (newp == NULL)
3681 goto end; /* alloc() will give error message */
3682 mch_memmove(newp, oldp, (size_t)col);
3683 ptr = newp + col;
3684 for (i = 0; i < count; ++i)
3686 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3687 ptr += yanklen;
3689 STRMOVE(ptr, oldp + col);
3690 ml_replace(lnum, newp, FALSE);
3691 /* Put cursor on last putted char. */
3692 curwin->w_cursor.col += (colnr_T)(totlen - 1);
3694 curbuf->b_op_end = curwin->w_cursor;
3695 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3696 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3697 ++curwin->w_cursor.col;
3698 changed_bytes(lnum, col);
3700 else
3703 * Insert at least one line. When y_type is MCHAR, break the first
3704 * line in two.
3706 for (cnt = 1; cnt <= count; ++cnt)
3708 i = 0;
3709 if (y_type == MCHAR)
3712 * Split the current line in two at the insert position.
3713 * First insert y_array[size - 1] in front of second line.
3714 * Then append y_array[0] to first line.
3716 lnum = new_cursor.lnum;
3717 ptr = ml_get(lnum) + col;
3718 totlen = (int)STRLEN(y_array[y_size - 1]);
3719 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3720 if (newp == NULL)
3721 goto error;
3722 STRCPY(newp, y_array[y_size - 1]);
3723 STRCAT(newp, ptr);
3724 /* insert second line */
3725 ml_append(lnum, newp, (colnr_T)0, FALSE);
3726 vim_free(newp);
3728 oldp = ml_get(lnum);
3729 newp = alloc_check((unsigned)(col + yanklen + 1));
3730 if (newp == NULL)
3731 goto error;
3732 /* copy first part of line */
3733 mch_memmove(newp, oldp, (size_t)col);
3734 /* append to first line */
3735 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3736 ml_replace(lnum, newp, FALSE);
3738 curwin->w_cursor.lnum = lnum;
3739 i = 1;
3742 for (; i < y_size; ++i)
3744 if ((y_type != MCHAR || i < y_size - 1)
3745 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3746 == FAIL)
3747 goto error;
3748 lnum++;
3749 ++nr_lines;
3750 if (flags & PUT_FIXINDENT)
3752 old_pos = curwin->w_cursor;
3753 curwin->w_cursor.lnum = lnum;
3754 ptr = ml_get(lnum);
3755 if (cnt == count && i == y_size - 1)
3756 lendiff = (int)STRLEN(ptr);
3757 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3758 if (*ptr == '#' && preprocs_left())
3759 indent = 0; /* Leave # lines at start */
3760 else
3761 #endif
3762 if (*ptr == NUL)
3763 indent = 0; /* Ignore empty lines */
3764 else if (first_indent)
3766 indent_diff = orig_indent - get_indent();
3767 indent = orig_indent;
3768 first_indent = FALSE;
3770 else if ((indent = get_indent() + indent_diff) < 0)
3771 indent = 0;
3772 (void)set_indent(indent, 0);
3773 curwin->w_cursor = old_pos;
3774 /* remember how many chars were removed */
3775 if (cnt == count && i == y_size - 1)
3776 lendiff -= (int)STRLEN(ml_get(lnum));
3781 error:
3782 /* Adjust marks. */
3783 if (y_type == MLINE)
3785 curbuf->b_op_start.col = 0;
3786 if (dir == FORWARD)
3787 curbuf->b_op_start.lnum++;
3789 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
3790 (linenr_T)MAXLNUM, nr_lines, 0L);
3792 /* note changed text for displaying and folding */
3793 if (y_type == MCHAR)
3794 changed_lines(curwin->w_cursor.lnum, col,
3795 curwin->w_cursor.lnum + 1, nr_lines);
3796 else
3797 changed_lines(curbuf->b_op_start.lnum, 0,
3798 curbuf->b_op_start.lnum, nr_lines);
3800 /* put '] mark at last inserted character */
3801 curbuf->b_op_end.lnum = lnum;
3802 /* correct length for change in indent */
3803 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3804 if (col > 1)
3805 curbuf->b_op_end.col = col - 1;
3806 else
3807 curbuf->b_op_end.col = 0;
3809 if (flags & PUT_CURSLINE)
3811 /* ":put": put cursor on last inserted line */
3812 curwin->w_cursor.lnum = lnum;
3813 beginline(BL_WHITE | BL_FIX);
3815 else if (flags & PUT_CURSEND)
3817 /* put cursor after inserted text */
3818 if (y_type == MLINE)
3820 if (lnum >= curbuf->b_ml.ml_line_count)
3821 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3822 else
3823 curwin->w_cursor.lnum = lnum + 1;
3824 curwin->w_cursor.col = 0;
3826 else
3828 curwin->w_cursor.lnum = lnum;
3829 curwin->w_cursor.col = col;
3832 else if (y_type == MLINE)
3834 /* put cursor on first non-blank in first inserted line */
3835 curwin->w_cursor.col = 0;
3836 if (dir == FORWARD)
3837 ++curwin->w_cursor.lnum;
3838 beginline(BL_WHITE | BL_FIX);
3840 else /* put cursor on first inserted character */
3841 curwin->w_cursor = new_cursor;
3845 msgmore(nr_lines);
3846 curwin->w_set_curswant = TRUE;
3848 end:
3849 if (allocated)
3850 vim_free(insert_string);
3851 if (regname == '=')
3852 vim_free(y_array);
3854 /* If the cursor is past the end of the line put it at the end. */
3855 adjust_cursor_eol();
3859 * When the cursor is on the NUL past the end of the line and it should not be
3860 * there move it left.
3862 void
3863 adjust_cursor_eol()
3865 if (curwin->w_cursor.col > 0
3866 && gchar_cursor() == NUL
3867 #ifdef FEAT_VIRTUALEDIT
3868 && (ve_flags & VE_ONEMORE) == 0
3869 #endif
3870 && !(restart_edit || (State & INSERT)))
3872 /* Put the cursor on the last character in the line. */
3873 dec_cursor();
3875 #ifdef FEAT_VIRTUALEDIT
3876 if (ve_flags == VE_ALL)
3878 colnr_T scol, ecol;
3880 /* Coladd is set to the width of the last character. */
3881 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
3882 curwin->w_cursor.coladd = ecol - scol + 1;
3884 #endif
3888 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
3890 * Return TRUE if lines starting with '#' should be left aligned.
3893 preprocs_left()
3895 return
3896 # ifdef FEAT_SMARTINDENT
3897 # ifdef FEAT_CINDENT
3898 (curbuf->b_p_si && !curbuf->b_p_cin) ||
3899 # else
3900 curbuf->b_p_si
3901 # endif
3902 # endif
3903 # ifdef FEAT_CINDENT
3904 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE))
3905 # endif
3908 #endif
3910 /* Return the character name of the register with the given number */
3912 get_register_name(num)
3913 int num;
3915 if (num == -1)
3916 return '"';
3917 else if (num < 10)
3918 return num + '0';
3919 else if (num == DELETION_REGISTER)
3920 return '-';
3921 #ifdef FEAT_CLIPBOARD
3922 else if (num == STAR_REGISTER)
3923 return '*';
3924 else if (num == PLUS_REGISTER)
3925 return '+';
3926 #endif
3927 else
3929 #ifdef EBCDIC
3930 int i;
3932 /* EBCDIC is really braindead ... */
3933 i = 'a' + (num - 10);
3934 if (i > 'i')
3935 i += 7;
3936 if (i > 'r')
3937 i += 8;
3938 return i;
3939 #else
3940 return num + 'a' - 10;
3941 #endif
3946 * ":dis" and ":registers": Display the contents of the yank registers.
3948 void
3949 ex_display(eap)
3950 exarg_T *eap;
3952 int i, n;
3953 long j;
3954 char_u *p;
3955 struct yankreg *yb;
3956 int name;
3957 int attr;
3958 char_u *arg = eap->arg;
3959 #ifdef FEAT_MBYTE
3960 int clen;
3961 #else
3962 # define clen 1
3963 #endif
3965 if (arg != NULL && *arg == NUL)
3966 arg = NULL;
3967 attr = hl_attr(HLF_8);
3969 /* Highlight title */
3970 MSG_PUTS_TITLE(_("\n--- Registers ---"));
3971 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
3973 name = get_register_name(i);
3974 if (arg != NULL && vim_strchr(arg, name) == NULL)
3975 continue; /* did not ask for this register */
3977 #ifdef FEAT_CLIPBOARD
3978 /* Adjust register name for "unnamed" in 'clipboard'.
3979 * When it's a clipboard register, fill it with the current contents
3980 * of the clipboard. */
3981 adjust_clip_reg(&name);
3982 (void)may_get_selection(name);
3983 #endif
3985 if (i == -1)
3987 if (y_previous != NULL)
3988 yb = y_previous;
3989 else
3990 yb = &(y_regs[0]);
3992 else
3993 yb = &(y_regs[i]);
3994 if (yb->y_array != NULL)
3996 msg_putchar('\n');
3997 msg_putchar('"');
3998 msg_putchar(name);
3999 MSG_PUTS(" ");
4001 n = (int)Columns - 6;
4002 for (j = 0; j < yb->y_size && n > 1; ++j)
4004 if (j)
4006 MSG_PUTS_ATTR("^J", attr);
4007 n -= 2;
4009 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4011 #ifdef FEAT_MBYTE
4012 clen = (*mb_ptr2len)(p);
4013 #endif
4014 msg_outtrans_len(p, clen);
4015 #ifdef FEAT_MBYTE
4016 p += clen - 1;
4017 #endif
4020 if (n > 1 && yb->y_type == MLINE)
4021 MSG_PUTS_ATTR("^J", attr);
4022 out_flush(); /* show one line at a time */
4024 ui_breakcheck();
4028 * display last inserted text
4030 if ((p = get_last_insert()) != NULL
4031 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4033 MSG_PUTS("\n\". ");
4034 dis_msg(p, TRUE);
4038 * display last command line
4040 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4041 && !got_int)
4043 MSG_PUTS("\n\": ");
4044 dis_msg(last_cmdline, FALSE);
4048 * display current file name
4050 if (curbuf->b_fname != NULL
4051 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4053 MSG_PUTS("\n\"% ");
4054 dis_msg(curbuf->b_fname, FALSE);
4058 * display alternate file name
4060 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4062 char_u *fname;
4063 linenr_T dummy;
4065 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4067 MSG_PUTS("\n\"# ");
4068 dis_msg(fname, FALSE);
4073 * display last search pattern
4075 if (last_search_pat() != NULL
4076 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4078 MSG_PUTS("\n\"/ ");
4079 dis_msg(last_search_pat(), FALSE);
4082 #ifdef FEAT_EVAL
4084 * display last used expression
4086 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4087 && !got_int)
4089 MSG_PUTS("\n\"= ");
4090 dis_msg(expr_line, FALSE);
4092 #endif
4096 * display a string for do_dis()
4097 * truncate at end of screen line
4099 static void
4100 dis_msg(p, skip_esc)
4101 char_u *p;
4102 int skip_esc; /* if TRUE, ignore trailing ESC */
4104 int n;
4105 #ifdef FEAT_MBYTE
4106 int l;
4107 #endif
4109 n = (int)Columns - 6;
4110 while (*p != NUL
4111 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4112 && (n -= ptr2cells(p)) >= 0)
4114 #ifdef FEAT_MBYTE
4115 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
4117 msg_outtrans_len(p, l);
4118 p += l;
4120 else
4121 #endif
4122 msg_outtrans_len(p++, 1);
4124 ui_breakcheck();
4128 * join 'count' lines (minimal 2), including u_save()
4130 void
4131 do_do_join(count, insert_space)
4132 long count;
4133 int insert_space;
4135 colnr_T col = MAXCOL;
4137 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4138 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4139 return;
4141 while (--count > 0)
4143 line_breakcheck();
4144 if (got_int || do_join(insert_space) == FAIL)
4146 beep_flush();
4147 break;
4149 if (col == MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4150 col = curwin->w_cursor.col;
4153 /* Vi compatible: use the column of the first join */
4154 if (col != MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4155 curwin->w_cursor.col = col;
4157 #if 0
4159 * Need to update the screen if the line where the cursor is became too
4160 * long to fit on the screen.
4162 update_topline_redraw();
4163 #endif
4167 * Join two lines at the cursor position.
4168 * "redraw" is TRUE when the screen should be updated.
4169 * Caller must have setup for undo.
4171 * return FAIL for failure, OK otherwise
4174 do_join(insert_space)
4175 int insert_space;
4177 char_u *curr;
4178 char_u *next, *next_start;
4179 char_u *newp;
4180 int endcurr1, endcurr2;
4181 int currsize; /* size of the current line */
4182 int nextsize; /* size of the next line */
4183 int spaces; /* number of spaces to insert */
4184 linenr_T t;
4186 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4187 return FAIL; /* can't join on last line */
4189 curr = ml_get_curline();
4190 currsize = (int)STRLEN(curr);
4191 endcurr1 = endcurr2 = NUL;
4192 if (insert_space && currsize > 0)
4194 #ifdef FEAT_MBYTE
4195 if (has_mbyte)
4197 next = curr + currsize;
4198 mb_ptr_back(curr, next);
4199 endcurr1 = (*mb_ptr2char)(next);
4200 if (next > curr)
4202 mb_ptr_back(curr, next);
4203 endcurr2 = (*mb_ptr2char)(next);
4206 else
4207 #endif
4209 endcurr1 = *(curr + currsize - 1);
4210 if (currsize > 1)
4211 endcurr2 = *(curr + currsize - 2);
4215 next = next_start = ml_get((linenr_T)(curwin->w_cursor.lnum + 1));
4216 spaces = 0;
4217 if (insert_space)
4219 next = skipwhite(next);
4220 if (*next != ')' && currsize != 0 && endcurr1 != TAB
4221 #ifdef FEAT_MBYTE
4222 && (!has_format_option(FO_MBYTE_JOIN)
4223 || (mb_ptr2char(next) < 0x100 && endcurr1 < 0x100))
4224 && (!has_format_option(FO_MBYTE_JOIN2)
4225 || mb_ptr2char(next) < 0x100 || endcurr1 < 0x100)
4226 #endif
4229 /* don't add a space if the line is ending in a space */
4230 if (endcurr1 == ' ')
4231 endcurr1 = endcurr2;
4232 else
4233 ++spaces;
4234 /* extra space when 'joinspaces' set and line ends in '.' */
4235 if ( p_js
4236 && (endcurr1 == '.'
4237 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4238 && (endcurr1 == '?' || endcurr1 == '!'))))
4239 ++spaces;
4242 nextsize = (int)STRLEN(next);
4244 newp = alloc_check((unsigned)(currsize + nextsize + spaces + 1));
4245 if (newp == NULL)
4246 return FAIL;
4249 * Insert the next line first, because we already have that pointer.
4250 * Curr has to be obtained again, because getting next will have
4251 * invalidated it.
4253 mch_memmove(newp + currsize + spaces, next, (size_t)(nextsize + 1));
4255 curr = ml_get_curline();
4256 mch_memmove(newp, curr, (size_t)currsize);
4258 copy_spaces(newp + currsize, (size_t)spaces);
4260 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4262 /* Only report the change in the first line here, del_lines() will report
4263 * the deleted line. */
4264 changed_lines(curwin->w_cursor.lnum, currsize,
4265 curwin->w_cursor.lnum + 1, 0L);
4268 * Delete the following line. To do this we move the cursor there
4269 * briefly, and then move it back. After del_lines() the cursor may
4270 * have moved up (last line deleted), so the current lnum is kept in t.
4272 * Move marks from the deleted line to the joined line, adjusting the
4273 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4274 * should not really be a problem.
4276 t = curwin->w_cursor.lnum;
4277 mark_col_adjust(t + 1, (colnr_T)0, (linenr_T)-1,
4278 (long)(currsize + spaces - (next - next_start)));
4279 ++curwin->w_cursor.lnum;
4280 del_lines(1L, FALSE);
4281 curwin->w_cursor.lnum = t;
4284 * go to first character of the joined line
4286 curwin->w_cursor.col = currsize;
4287 check_cursor_col();
4288 #ifdef FEAT_VIRTUALEDIT
4289 curwin->w_cursor.coladd = 0;
4290 #endif
4291 curwin->w_set_curswant = TRUE;
4293 return OK;
4296 #ifdef FEAT_COMMENTS
4298 * Return TRUE if the two comment leaders given are the same. "lnum" is
4299 * the first line. White-space is ignored. Note that the whole of
4300 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4302 static int
4303 same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
4304 linenr_T lnum;
4305 int leader1_len;
4306 char_u *leader1_flags;
4307 int leader2_len;
4308 char_u *leader2_flags;
4310 int idx1 = 0, idx2 = 0;
4311 char_u *p;
4312 char_u *line1;
4313 char_u *line2;
4315 if (leader1_len == 0)
4316 return (leader2_len == 0);
4319 * If first leader has 'f' flag, the lines can be joined only if the
4320 * second line does not have a leader.
4321 * If first leader has 'e' flag, the lines can never be joined.
4322 * If fist leader has 's' flag, the lines can only be joined if there is
4323 * some text after it and the second line has the 'm' flag.
4325 if (leader1_flags != NULL)
4327 for (p = leader1_flags; *p && *p != ':'; ++p)
4329 if (*p == COM_FIRST)
4330 return (leader2_len == 0);
4331 if (*p == COM_END)
4332 return FALSE;
4333 if (*p == COM_START)
4335 if (*(ml_get(lnum) + leader1_len) == NUL)
4336 return FALSE;
4337 if (leader2_flags == NULL || leader2_len == 0)
4338 return FALSE;
4339 for (p = leader2_flags; *p && *p != ':'; ++p)
4340 if (*p == COM_MIDDLE)
4341 return TRUE;
4342 return FALSE;
4348 * Get current line and next line, compare the leaders.
4349 * The first line has to be saved, only one line can be locked at a time.
4351 line1 = vim_strsave(ml_get(lnum));
4352 if (line1 != NULL)
4354 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4356 line2 = ml_get(lnum + 1);
4357 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4359 if (!vim_iswhite(line2[idx2]))
4361 if (line1[idx1++] != line2[idx2])
4362 break;
4364 else
4365 while (vim_iswhite(line1[idx1]))
4366 ++idx1;
4368 vim_free(line1);
4370 return (idx2 == leader2_len && idx1 == leader1_len);
4372 #endif
4375 * implementation of the format operator 'gq'
4377 void
4378 op_format(oap, keep_cursor)
4379 oparg_T *oap;
4380 int keep_cursor; /* keep cursor on same text char */
4382 long old_line_count = curbuf->b_ml.ml_line_count;
4384 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4385 * can put it back there. */
4386 curwin->w_cursor = oap->cursor_start;
4388 if (u_save((linenr_T)(oap->start.lnum - 1),
4389 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4390 return;
4391 curwin->w_cursor = oap->start;
4393 #ifdef FEAT_VISUAL
4394 if (oap->is_VIsual)
4395 /* When there is no change: need to remove the Visual selection */
4396 redraw_curbuf_later(INVERTED);
4397 #endif
4399 /* Set '[ mark at the start of the formatted area */
4400 curbuf->b_op_start = oap->start;
4402 /* For "gw" remember the cursor position and put it back below (adjusted
4403 * for joined and split lines). */
4404 if (keep_cursor)
4405 saved_cursor = oap->cursor_start;
4407 format_lines(oap->line_count, keep_cursor);
4410 * Leave the cursor at the first non-blank of the last formatted line.
4411 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4412 * line, so "." will do the next lines.
4414 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4415 ++curwin->w_cursor.lnum;
4416 beginline(BL_WHITE | BL_FIX);
4417 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4418 msgmore(old_line_count);
4420 /* put '] mark on the end of the formatted area */
4421 curbuf->b_op_end = curwin->w_cursor;
4423 if (keep_cursor)
4425 curwin->w_cursor = saved_cursor;
4426 saved_cursor.lnum = 0;
4429 #ifdef FEAT_VISUAL
4430 if (oap->is_VIsual)
4432 win_T *wp;
4434 FOR_ALL_WINDOWS(wp)
4436 if (wp->w_old_cursor_lnum != 0)
4438 /* When lines have been inserted or deleted, adjust the end of
4439 * the Visual area to be redrawn. */
4440 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4441 wp->w_old_cursor_lnum += old_line_count;
4442 else
4443 wp->w_old_visual_lnum += old_line_count;
4447 #endif
4450 #if defined(FEAT_EVAL) || defined(PROTO)
4452 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4454 void
4455 op_formatexpr(oap)
4456 oparg_T *oap;
4458 # ifdef FEAT_VISUAL
4459 if (oap->is_VIsual)
4460 /* When there is no change: need to remove the Visual selection */
4461 redraw_curbuf_later(INVERTED);
4462 # endif
4464 (void)fex_format(oap->start.lnum, oap->line_count, NUL);
4468 fex_format(lnum, count, c)
4469 linenr_T lnum;
4470 long count;
4471 int c; /* character to be inserted */
4473 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4474 OPT_LOCAL);
4475 int r;
4476 #ifdef FEAT_MBYTE
4477 char_u buf[MB_MAXBYTES];
4478 #else
4479 char_u buf[2];
4480 #endif
4483 * Set v:lnum to the first line number and v:count to the number of lines.
4484 * Set v:char to the character to be inserted (can be NUL).
4486 set_vim_var_nr(VV_LNUM, lnum);
4487 set_vim_var_nr(VV_COUNT, count);
4489 #ifdef FEAT_MBYTE
4490 if (has_mbyte)
4491 buf[(*mb_char2bytes)(c, buf)] = NUL;
4492 else
4493 #endif
4495 buf[0] = c;
4496 buf[1] = NUL;
4498 set_vim_var_string(VV_CHAR, buf, -1);
4501 * Evaluate the function.
4503 if (use_sandbox)
4504 ++sandbox;
4505 r = eval_to_number(curbuf->b_p_fex);
4506 if (use_sandbox)
4507 --sandbox;
4509 set_vim_var_string(VV_CHAR, NULL, -1);
4511 return r;
4513 #endif
4516 * Format "line_count" lines, starting at the cursor position.
4517 * When "line_count" is negative, format until the end of the paragraph.
4518 * Lines after the cursor line are saved for undo, caller must have saved the
4519 * first line.
4521 void
4522 format_lines(line_count, avoid_fex)
4523 linenr_T line_count;
4524 int avoid_fex; /* don't use 'formatexpr' */
4526 int max_len;
4527 int is_not_par; /* current line not part of parag. */
4528 int next_is_not_par; /* next line not part of paragraph */
4529 int is_end_par; /* at end of paragraph */
4530 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4531 int next_is_start_par = FALSE;
4532 #ifdef FEAT_COMMENTS
4533 int leader_len = 0; /* leader len of current line */
4534 int next_leader_len; /* leader len of next line */
4535 char_u *leader_flags = NULL; /* flags for leader of current line */
4536 char_u *next_leader_flags; /* flags for leader of next line */
4537 int do_comments; /* format comments */
4538 #endif
4539 int advance = TRUE;
4540 int second_indent = -1;
4541 int do_second_indent;
4542 int do_number_indent;
4543 int do_trail_white;
4544 int first_par_line = TRUE;
4545 int smd_save;
4546 long count;
4547 int need_set_indent = TRUE; /* set indent of next paragraph */
4548 int force_format = FALSE;
4549 int old_State = State;
4551 /* length of a line to force formatting: 3 * 'tw' */
4552 max_len = comp_textwidth(TRUE) * 3;
4554 /* check for 'q', '2' and '1' in 'formatoptions' */
4555 #ifdef FEAT_COMMENTS
4556 do_comments = has_format_option(FO_Q_COMS);
4557 #endif
4558 do_second_indent = has_format_option(FO_Q_SECOND);
4559 do_number_indent = has_format_option(FO_Q_NUMBER);
4560 do_trail_white = has_format_option(FO_WHITE_PAR);
4563 * Get info about the previous and current line.
4565 if (curwin->w_cursor.lnum > 1)
4566 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4567 #ifdef FEAT_COMMENTS
4568 , &leader_len, &leader_flags, do_comments
4569 #endif
4571 else
4572 is_not_par = TRUE;
4573 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4574 #ifdef FEAT_COMMENTS
4575 , &next_leader_len, &next_leader_flags, do_comments
4576 #endif
4578 is_end_par = (is_not_par || next_is_not_par);
4579 if (!is_end_par && do_trail_white)
4580 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4582 curwin->w_cursor.lnum--;
4583 for (count = line_count; count != 0 && !got_int; --count)
4586 * Advance to next paragraph.
4588 if (advance)
4590 curwin->w_cursor.lnum++;
4591 prev_is_end_par = is_end_par;
4592 is_not_par = next_is_not_par;
4593 #ifdef FEAT_COMMENTS
4594 leader_len = next_leader_len;
4595 leader_flags = next_leader_flags;
4596 #endif
4600 * The last line to be formatted.
4602 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4604 next_is_not_par = TRUE;
4605 #ifdef FEAT_COMMENTS
4606 next_leader_len = 0;
4607 next_leader_flags = NULL;
4608 #endif
4610 else
4612 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4613 #ifdef FEAT_COMMENTS
4614 , &next_leader_len, &next_leader_flags, do_comments
4615 #endif
4617 if (do_number_indent)
4618 next_is_start_par =
4619 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4621 advance = TRUE;
4622 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4623 if (!is_end_par && do_trail_white)
4624 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4627 * Skip lines that are not in a paragraph.
4629 if (is_not_par)
4631 if (line_count < 0)
4632 break;
4634 else
4637 * For the first line of a paragraph, check indent of second line.
4638 * Don't do this for comments and empty lines.
4640 if (first_par_line
4641 && (do_second_indent || do_number_indent)
4642 && prev_is_end_par
4643 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4644 #ifdef FEAT_COMMENTS
4645 && leader_len == 0
4646 && next_leader_len == 0
4647 #endif
4650 if (do_second_indent
4651 && !lineempty(curwin->w_cursor.lnum + 1))
4652 second_indent = get_indent_lnum(curwin->w_cursor.lnum + 1);
4653 else if (do_number_indent)
4654 second_indent = get_number_indent(curwin->w_cursor.lnum);
4658 * When the comment leader changes, it's the end of the paragraph.
4660 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4661 #ifdef FEAT_COMMENTS
4662 || !same_leader(curwin->w_cursor.lnum,
4663 leader_len, leader_flags,
4664 next_leader_len, next_leader_flags)
4665 #endif
4667 is_end_par = TRUE;
4670 * If we have got to the end of a paragraph, or the line is
4671 * getting long, format it.
4673 if (is_end_par || force_format)
4675 if (need_set_indent)
4676 /* replace indent in first line with minimal number of
4677 * tabs and spaces, according to current options */
4678 (void)set_indent(get_indent(), SIN_CHANGED);
4680 /* put cursor on last non-space */
4681 State = NORMAL; /* don't go past end-of-line */
4682 coladvance((colnr_T)MAXCOL);
4683 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
4684 dec_cursor();
4686 /* do the formatting, without 'showmode' */
4687 State = INSERT; /* for open_line() */
4688 smd_save = p_smd;
4689 p_smd = FALSE;
4690 insertchar(NUL, INSCHAR_FORMAT
4691 #ifdef FEAT_COMMENTS
4692 + (do_comments ? INSCHAR_DO_COM : 0)
4693 #endif
4694 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
4695 State = old_State;
4696 p_smd = smd_save;
4697 second_indent = -1;
4698 /* at end of par.: need to set indent of next par. */
4699 need_set_indent = is_end_par;
4700 if (is_end_par)
4702 /* When called with a negative line count, break at the
4703 * end of the paragraph. */
4704 if (line_count < 0)
4705 break;
4706 first_par_line = TRUE;
4708 force_format = FALSE;
4712 * When still in same paragraph, join the lines together. But
4713 * first delete the comment leader from the second line.
4715 if (!is_end_par)
4717 advance = FALSE;
4718 curwin->w_cursor.lnum++;
4719 curwin->w_cursor.col = 0;
4720 if (line_count < 0 && u_save_cursor() == FAIL)
4721 break;
4722 #ifdef FEAT_COMMENTS
4723 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
4724 if (next_leader_len > 0)
4725 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
4726 (long)-next_leader_len);
4727 #endif
4728 curwin->w_cursor.lnum--;
4729 if (do_join(TRUE) == FAIL)
4731 beep_flush();
4732 break;
4734 first_par_line = FALSE;
4735 /* If the line is getting long, format it next time */
4736 if (STRLEN(ml_get_curline()) > (size_t)max_len)
4737 force_format = TRUE;
4738 else
4739 force_format = FALSE;
4742 line_breakcheck();
4747 * Return TRUE if line "lnum" ends in a white character.
4749 static int
4750 ends_in_white(lnum)
4751 linenr_T lnum;
4753 char_u *s = ml_get(lnum);
4754 size_t l;
4756 if (*s == NUL)
4757 return FALSE;
4758 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
4759 * invocation may call function multiple times". */
4760 l = STRLEN(s) - 1;
4761 return vim_iswhite(s[l]);
4765 * Blank lines, and lines containing only the comment leader, are left
4766 * untouched by the formatting. The function returns TRUE in this
4767 * case. It also returns TRUE when a line starts with the end of a comment
4768 * ('e' in comment flags), so that this line is skipped, and not joined to the
4769 * previous line. A new paragraph starts after a blank line, or when the
4770 * comment leader changes -- webb.
4772 #ifdef FEAT_COMMENTS
4773 static int
4774 fmt_check_par(lnum, leader_len, leader_flags, do_comments)
4775 linenr_T lnum;
4776 int *leader_len;
4777 char_u **leader_flags;
4778 int do_comments;
4780 char_u *flags = NULL; /* init for GCC */
4781 char_u *ptr;
4783 ptr = ml_get(lnum);
4784 if (do_comments)
4785 *leader_len = get_leader_len(ptr, leader_flags, FALSE);
4786 else
4787 *leader_len = 0;
4789 if (*leader_len > 0)
4792 * Search for 'e' flag in comment leader flags.
4794 flags = *leader_flags;
4795 while (*flags && *flags != ':' && *flags != COM_END)
4796 ++flags;
4799 return (*skipwhite(ptr + *leader_len) == NUL
4800 || (*leader_len > 0 && *flags == COM_END)
4801 || startPS(lnum, NUL, FALSE));
4803 #else
4804 static int
4805 fmt_check_par(lnum)
4806 linenr_T lnum;
4808 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
4810 #endif
4813 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
4814 * previous line is in the same paragraph. Used for auto-formatting.
4817 paragraph_start(lnum)
4818 linenr_T lnum;
4820 char_u *p;
4821 #ifdef FEAT_COMMENTS
4822 int leader_len = 0; /* leader len of current line */
4823 char_u *leader_flags = NULL; /* flags for leader of current line */
4824 int next_leader_len; /* leader len of next line */
4825 char_u *next_leader_flags; /* flags for leader of next line */
4826 int do_comments; /* format comments */
4827 #endif
4829 if (lnum <= 1)
4830 return TRUE; /* start of the file */
4832 p = ml_get(lnum - 1);
4833 if (*p == NUL)
4834 return TRUE; /* after empty line */
4836 #ifdef FEAT_COMMENTS
4837 do_comments = has_format_option(FO_Q_COMS);
4838 #endif
4839 if (fmt_check_par(lnum - 1
4840 #ifdef FEAT_COMMENTS
4841 , &leader_len, &leader_flags, do_comments
4842 #endif
4844 return TRUE; /* after non-paragraph line */
4846 if (fmt_check_par(lnum
4847 #ifdef FEAT_COMMENTS
4848 , &next_leader_len, &next_leader_flags, do_comments
4849 #endif
4851 return TRUE; /* "lnum" is not a paragraph line */
4853 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
4854 return TRUE; /* missing trailing space in previous line. */
4856 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
4857 return TRUE; /* numbered item starts in "lnum". */
4859 #ifdef FEAT_COMMENTS
4860 if (!same_leader(lnum - 1, leader_len, leader_flags,
4861 next_leader_len, next_leader_flags))
4862 return TRUE; /* change of comment leader. */
4863 #endif
4865 return FALSE;
4868 #ifdef FEAT_VISUAL
4870 * prepare a few things for block mode yank/delete/tilde
4872 * for delete:
4873 * - textlen includes the first/last char to be (partly) deleted
4874 * - start/endspaces is the number of columns that are taken by the
4875 * first/last deleted char minus the number of columns that have to be
4876 * deleted.
4877 * for yank and tilde:
4878 * - textlen includes the first/last char to be wholly yanked
4879 * - start/endspaces is the number of columns of the first/last yanked char
4880 * that are to be yanked.
4882 static void
4883 block_prep(oap, bdp, lnum, is_del)
4884 oparg_T *oap;
4885 struct block_def *bdp;
4886 linenr_T lnum;
4887 int is_del;
4889 int incr = 0;
4890 char_u *pend;
4891 char_u *pstart;
4892 char_u *line;
4893 char_u *prev_pstart;
4894 char_u *prev_pend;
4896 bdp->startspaces = 0;
4897 bdp->endspaces = 0;
4898 bdp->textlen = 0;
4899 bdp->start_vcol = 0;
4900 bdp->end_vcol = 0;
4901 #ifdef FEAT_VISUALEXTRA
4902 bdp->is_short = FALSE;
4903 bdp->is_oneChar = FALSE;
4904 bdp->pre_whitesp = 0;
4905 bdp->pre_whitesp_c = 0;
4906 bdp->end_char_vcols = 0;
4907 #endif
4908 bdp->start_char_vcols = 0;
4910 line = ml_get(lnum);
4911 pstart = line;
4912 prev_pstart = line;
4913 while (bdp->start_vcol < oap->start_vcol && *pstart)
4915 /* Count a tab for what it's worth (if list mode not on) */
4916 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
4917 bdp->start_vcol += incr;
4918 #ifdef FEAT_VISUALEXTRA
4919 if (vim_iswhite(*pstart))
4921 bdp->pre_whitesp += incr;
4922 bdp->pre_whitesp_c++;
4924 else
4926 bdp->pre_whitesp = 0;
4927 bdp->pre_whitesp_c = 0;
4929 #endif
4930 prev_pstart = pstart;
4931 mb_ptr_adv(pstart);
4933 bdp->start_char_vcols = incr;
4934 if (bdp->start_vcol < oap->start_vcol) /* line too short */
4936 bdp->end_vcol = bdp->start_vcol;
4937 #ifdef FEAT_VISUALEXTRA
4938 bdp->is_short = TRUE;
4939 #endif
4940 if (!is_del || oap->op_type == OP_APPEND)
4941 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
4943 else
4945 /* notice: this converts partly selected Multibyte characters to
4946 * spaces, too. */
4947 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
4948 if (is_del && bdp->startspaces)
4949 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
4950 pend = pstart;
4951 bdp->end_vcol = bdp->start_vcol;
4952 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
4954 #ifdef FEAT_VISUALEXTRA
4955 bdp->is_oneChar = TRUE;
4956 #endif
4957 if (oap->op_type == OP_INSERT)
4958 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4959 else if (oap->op_type == OP_APPEND)
4961 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
4962 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4964 else
4966 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
4967 if (is_del && oap->op_type != OP_LSHIFT)
4969 /* just putting the sum of those two into
4970 * bdp->startspaces doesn't work for Visual replace,
4971 * so we have to split the tab in two */
4972 bdp->startspaces = bdp->start_char_vcols
4973 - (bdp->start_vcol - oap->start_vcol);
4974 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4978 else
4980 prev_pend = pend;
4981 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
4983 /* Count a tab for what it's worth (if list mode not on) */
4984 prev_pend = pend;
4985 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
4986 bdp->end_vcol += incr;
4988 if (bdp->end_vcol <= oap->end_vcol
4989 && (!is_del
4990 || oap->op_type == OP_APPEND
4991 || oap->op_type == OP_REPLACE)) /* line too short */
4993 #ifdef FEAT_VISUALEXTRA
4994 bdp->is_short = TRUE;
4995 #endif
4996 /* Alternative: include spaces to fill up the block.
4997 * Disadvantage: can lead to trailing spaces when the line is
4998 * short where the text is put */
4999 /* if (!is_del || oap->op_type == OP_APPEND) */
5000 if (oap->op_type == OP_APPEND || virtual_op)
5001 bdp->endspaces = oap->end_vcol - bdp->end_vcol
5002 + oap->inclusive;
5003 else
5004 bdp->endspaces = 0; /* replace doesn't add characters */
5006 else if (bdp->end_vcol > oap->end_vcol)
5008 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5009 if (!is_del && bdp->endspaces)
5011 bdp->endspaces = incr - bdp->endspaces;
5012 if (pend != pstart)
5013 pend = prev_pend;
5017 #ifdef FEAT_VISUALEXTRA
5018 bdp->end_char_vcols = incr;
5019 #endif
5020 if (is_del && bdp->startspaces)
5021 pstart = prev_pstart;
5022 bdp->textlen = (int)(pend - pstart);
5024 bdp->textcol = (colnr_T) (pstart - line);
5025 bdp->textstart = pstart;
5027 #endif /* FEAT_VISUAL */
5029 #ifdef FEAT_RIGHTLEFT
5030 static void reverse_line __ARGS((char_u *s));
5032 static void
5033 reverse_line(s)
5034 char_u *s;
5036 int i, j;
5037 char_u c;
5039 if ((i = (int)STRLEN(s) - 1) <= 0)
5040 return;
5042 curwin->w_cursor.col = i - curwin->w_cursor.col;
5043 for (j = 0; j < i; j++, i--)
5045 c = s[i]; s[i] = s[j]; s[j] = c;
5049 # define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
5050 #else
5051 # define RLADDSUBFIX(ptr)
5052 #endif
5055 * add or subtract 'Prenum1' from a number in a line
5056 * 'command' is CTRL-A for add, CTRL-X for subtract
5058 * return FAIL for failure, OK otherwise
5061 do_addsub(command, Prenum1)
5062 int command;
5063 linenr_T Prenum1;
5065 int col;
5066 char_u *buf1;
5067 char_u buf2[NUMBUFLEN];
5068 int hex; /* 'X' or 'x': hex; '0': octal */
5069 static int hexupper = FALSE; /* 0xABC */
5070 unsigned long n;
5071 long_u oldn;
5072 char_u *ptr;
5073 int c;
5074 int length = 0; /* character length of the number */
5075 int todel;
5076 int dohex;
5077 int dooct;
5078 int doalp;
5079 int firstdigit;
5080 int negative;
5081 int subtract;
5083 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5084 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
5085 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5087 ptr = ml_get_curline();
5088 RLADDSUBFIX(ptr);
5091 * First check if we are on a hexadecimal number, after the "0x".
5093 col = curwin->w_cursor.col;
5094 if (dohex)
5095 while (col > 0 && vim_isxdigit(ptr[col]))
5096 --col;
5097 if ( dohex
5098 && col > 0
5099 && (ptr[col] == 'X'
5100 || ptr[col] == 'x')
5101 && ptr[col - 1] == '0'
5102 && vim_isxdigit(ptr[col + 1]))
5105 * Found hexadecimal number, move to its start.
5107 --col;
5109 else
5112 * Search forward and then backward to find the start of number.
5114 col = curwin->w_cursor.col;
5116 while (ptr[col] != NUL
5117 && !vim_isdigit(ptr[col])
5118 && !(doalp && ASCII_ISALPHA(ptr[col])))
5119 ++col;
5121 while (col > 0
5122 && vim_isdigit(ptr[col - 1])
5123 && !(doalp && ASCII_ISALPHA(ptr[col])))
5124 --col;
5128 * If a number was found, and saving for undo works, replace the number.
5130 firstdigit = ptr[col];
5131 RLADDSUBFIX(ptr);
5132 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5133 || u_save_cursor() != OK)
5135 beep_flush();
5136 return FAIL;
5139 /* get ptr again, because u_save() may have changed it */
5140 ptr = ml_get_curline();
5141 RLADDSUBFIX(ptr);
5143 if (doalp && ASCII_ISALPHA(firstdigit))
5145 /* decrement or increment alphabetic character */
5146 if (command == Ctrl_X)
5148 if (CharOrd(firstdigit) < Prenum1)
5150 if (isupper(firstdigit))
5151 firstdigit = 'A';
5152 else
5153 firstdigit = 'a';
5155 else
5156 #ifdef EBCDIC
5157 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5158 #else
5159 firstdigit -= Prenum1;
5160 #endif
5162 else
5164 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5166 if (isupper(firstdigit))
5167 firstdigit = 'Z';
5168 else
5169 firstdigit = 'z';
5171 else
5172 #ifdef EBCDIC
5173 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5174 #else
5175 firstdigit += Prenum1;
5176 #endif
5178 curwin->w_cursor.col = col;
5179 (void)del_char(FALSE);
5180 ins_char(firstdigit);
5182 else
5184 negative = FALSE;
5185 if (col > 0 && ptr[col - 1] == '-') /* negative number */
5187 --col;
5188 negative = TRUE;
5191 /* get the number value (unsigned) */
5192 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
5194 /* ignore leading '-' for hex and octal numbers */
5195 if (hex && negative)
5197 ++col;
5198 --length;
5199 negative = FALSE;
5202 /* add or subtract */
5203 subtract = FALSE;
5204 if (command == Ctrl_X)
5205 subtract ^= TRUE;
5206 if (negative)
5207 subtract ^= TRUE;
5209 oldn = n;
5210 if (subtract)
5211 n -= (unsigned long)Prenum1;
5212 else
5213 n += (unsigned long)Prenum1;
5215 /* handle wraparound for decimal numbers */
5216 if (!hex)
5218 if (subtract)
5220 if (n > oldn)
5222 n = 1 + (n ^ (unsigned long)-1);
5223 negative ^= TRUE;
5226 else /* add */
5228 if (n < oldn)
5230 n = (n ^ (unsigned long)-1);
5231 negative ^= TRUE;
5234 if (n == 0)
5235 negative = FALSE;
5239 * Delete the old number.
5241 curwin->w_cursor.col = col;
5242 todel = length;
5243 c = gchar_cursor();
5245 * Don't include the '-' in the length, only the length of the part
5246 * after it is kept the same.
5248 if (c == '-')
5249 --length;
5250 while (todel-- > 0)
5252 if (c < 0x100 && isalpha(c))
5254 if (isupper(c))
5255 hexupper = TRUE;
5256 else
5257 hexupper = FALSE;
5259 /* del_char() will mark line needing displaying */
5260 (void)del_char(FALSE);
5261 c = gchar_cursor();
5265 * Prepare the leading characters in buf1[].
5266 * When there are many leading zeros it could be very long. Allocate
5267 * a bit too much.
5269 buf1 = alloc((unsigned)length + NUMBUFLEN);
5270 if (buf1 == NULL)
5271 return FAIL;
5272 ptr = buf1;
5273 if (negative)
5275 *ptr++ = '-';
5277 if (hex)
5279 *ptr++ = '0';
5280 --length;
5282 if (hex == 'x' || hex == 'X')
5284 *ptr++ = hex;
5285 --length;
5289 * Put the number characters in buf2[].
5291 if (hex == 0)
5292 sprintf((char *)buf2, "%lu", n);
5293 else if (hex == '0')
5294 sprintf((char *)buf2, "%lo", n);
5295 else if (hex && hexupper)
5296 sprintf((char *)buf2, "%lX", n);
5297 else
5298 sprintf((char *)buf2, "%lx", n);
5299 length -= (int)STRLEN(buf2);
5302 * Adjust number of zeros to the new number of digits, so the
5303 * total length of the number remains the same.
5304 * Don't do this when
5305 * the result may look like an octal number.
5307 if (firstdigit == '0' && !(dooct && hex == 0))
5308 while (length-- > 0)
5309 *ptr++ = '0';
5310 *ptr = NUL;
5311 STRCAT(buf1, buf2);
5312 ins_str(buf1); /* insert the new number */
5313 vim_free(buf1);
5315 --curwin->w_cursor.col;
5316 curwin->w_set_curswant = TRUE;
5317 #ifdef FEAT_RIGHTLEFT
5318 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
5319 RLADDSUBFIX(ptr);
5320 #endif
5321 return OK;
5324 #ifdef FEAT_VIMINFO
5326 read_viminfo_register(virp, force)
5327 vir_T *virp;
5328 int force;
5330 int eof;
5331 int do_it = TRUE;
5332 int size;
5333 int limit;
5334 int i;
5335 int set_prev = FALSE;
5336 char_u *str;
5337 char_u **array = NULL;
5339 /* We only get here (hopefully) if line[0] == '"' */
5340 str = virp->vir_line + 1;
5341 if (*str == '"')
5343 set_prev = TRUE;
5344 str++;
5346 if (!ASCII_ISALNUM(*str) && *str != '-')
5348 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5349 return TRUE; /* too many errors, pretend end-of-file */
5350 do_it = FALSE;
5352 get_yank_register(*str++, FALSE);
5353 if (!force && y_current->y_array != NULL)
5354 do_it = FALSE;
5355 size = 0;
5356 limit = 100; /* Optimized for registers containing <= 100 lines */
5357 if (do_it)
5359 if (set_prev)
5360 y_previous = y_current;
5361 vim_free(y_current->y_array);
5362 array = y_current->y_array =
5363 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
5364 str = skipwhite(str);
5365 if (STRNCMP(str, "CHAR", 4) == 0)
5366 y_current->y_type = MCHAR;
5367 #ifdef FEAT_VISUAL
5368 else if (STRNCMP(str, "BLOCK", 5) == 0)
5369 y_current->y_type = MBLOCK;
5370 #endif
5371 else
5372 y_current->y_type = MLINE;
5373 /* get the block width; if it's missing we get a zero, which is OK */
5374 str = skipwhite(skiptowhite(str));
5375 #ifdef FEAT_VISUAL
5376 y_current->y_width = getdigits(&str);
5377 #else
5378 (void)getdigits(&str);
5379 #endif
5382 while (!(eof = viminfo_readline(virp))
5383 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5385 if (do_it)
5387 if (size >= limit)
5389 y_current->y_array = (char_u **)
5390 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
5391 for (i = 0; i < limit; i++)
5392 y_current->y_array[i] = array[i];
5393 vim_free(array);
5394 limit *= 2;
5395 array = y_current->y_array;
5397 str = viminfo_readstring(virp, 1, TRUE);
5398 if (str != NULL)
5399 array[size++] = str;
5400 else
5401 do_it = FALSE;
5404 if (do_it)
5406 if (size == 0)
5408 vim_free(array);
5409 y_current->y_array = NULL;
5411 else if (size < limit)
5413 y_current->y_array =
5414 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
5415 for (i = 0; i < size; i++)
5416 y_current->y_array[i] = array[i];
5417 vim_free(array);
5419 y_current->y_size = size;
5421 return eof;
5424 void
5425 write_viminfo_registers(fp)
5426 FILE *fp;
5428 int i, j;
5429 char_u *type;
5430 char_u c;
5431 int num_lines;
5432 int max_num_lines;
5433 int max_kbyte;
5434 long len;
5436 fprintf(fp, _("\n# Registers:\n"));
5438 /* Get '<' value, use old '"' value if '<' is not found. */
5439 max_num_lines = get_viminfo_parameter('<');
5440 if (max_num_lines < 0)
5441 max_num_lines = get_viminfo_parameter('"');
5442 if (max_num_lines == 0)
5443 return;
5444 max_kbyte = get_viminfo_parameter('s');
5445 if (max_kbyte == 0)
5446 return;
5447 for (i = 0; i < NUM_REGISTERS; i++)
5449 if (y_regs[i].y_array == NULL)
5450 continue;
5451 #ifdef FEAT_CLIPBOARD
5452 /* Skip '*'/'+' register, we don't want them back next time */
5453 if (i == STAR_REGISTER || i == PLUS_REGISTER)
5454 continue;
5455 #endif
5456 #ifdef FEAT_DND
5457 /* Neither do we want the '~' register */
5458 if (i == TILDE_REGISTER)
5459 continue;
5460 #endif
5461 /* Skip empty registers. */
5462 num_lines = y_regs[i].y_size;
5463 if (num_lines == 0
5464 || (num_lines == 1 && y_regs[i].y_type == MCHAR
5465 && STRLEN(y_regs[i].y_array[0]) == 0))
5466 continue;
5468 if (max_kbyte > 0)
5470 /* Skip register if there is more text than the maximum size. */
5471 len = 0;
5472 for (j = 0; j < num_lines; j++)
5473 len += (long)STRLEN(y_regs[i].y_array[j]) + 1L;
5474 if (len > (long)max_kbyte * 1024L)
5475 continue;
5478 switch (y_regs[i].y_type)
5480 case MLINE:
5481 type = (char_u *)"LINE";
5482 break;
5483 case MCHAR:
5484 type = (char_u *)"CHAR";
5485 break;
5486 #ifdef FEAT_VISUAL
5487 case MBLOCK:
5488 type = (char_u *)"BLOCK";
5489 break;
5490 #endif
5491 default:
5492 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
5493 y_regs[i].y_type);
5494 emsg(IObuff);
5495 type = (char_u *)"LINE";
5496 break;
5498 if (y_previous == &y_regs[i])
5499 fprintf(fp, "\"");
5500 c = get_register_name(i);
5501 fprintf(fp, "\"%c\t%s\t%d\n", c, type,
5502 #ifdef FEAT_VISUAL
5503 (int)y_regs[i].y_width
5504 #else
5506 #endif
5509 /* If max_num_lines < 0, then we save ALL the lines in the register */
5510 if (max_num_lines > 0 && num_lines > max_num_lines)
5511 num_lines = max_num_lines;
5512 for (j = 0; j < num_lines; j++)
5514 putc('\t', fp);
5515 viminfo_writestring(fp, y_regs[i].y_array[j]);
5519 #endif /* FEAT_VIMINFO */
5521 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
5523 * SELECTION / PRIMARY ('*')
5525 * Text selection stuff that uses the GUI selection register '*'. When using a
5526 * GUI this may be text from another window, otherwise it is the last text we
5527 * had highlighted with VIsual mode. With mouse support, clicking the middle
5528 * button performs the paste, otherwise you will need to do <"*p>. "
5529 * If not under X, it is synonymous with the clipboard register '+'.
5531 * X CLIPBOARD ('+')
5533 * Text selection stuff that uses the GUI clipboard register '+'.
5534 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5535 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5536 * otherwise you will need to do <"+p>. "
5537 * If not under X, it is synonymous with the selection register '*'.
5541 * Routine to export any final X selection we had to the environment
5542 * so that the text is still available after vim has exited. X selections
5543 * only exist while the owning application exists, so we write to the
5544 * permanent (while X runs) store CUT_BUFFER0.
5545 * Dump the CLIPBOARD selection if we own it (it's logically the more
5546 * 'permanent' of the two), otherwise the PRIMARY one.
5547 * For now, use a hard-coded sanity limit of 1Mb of data.
5549 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5550 void
5551 x11_export_final_selection()
5553 Display *dpy;
5554 char_u *str = NULL;
5555 long_u len = 0;
5556 int motion_type = -1;
5558 # ifdef FEAT_GUI
5559 if (gui.in_use)
5560 dpy = X_DISPLAY;
5561 else
5562 # endif
5563 # ifdef FEAT_XCLIPBOARD
5564 dpy = xterm_dpy;
5565 # else
5566 return;
5567 # endif
5569 /* Get selection to export */
5570 if (clip_plus.owned)
5571 motion_type = clip_convert_selection(&str, &len, &clip_plus);
5572 else if (clip_star.owned)
5573 motion_type = clip_convert_selection(&str, &len, &clip_star);
5575 /* Check it's OK */
5576 if (dpy != NULL && str != NULL && motion_type >= 0
5577 && len < 1024*1024 && len > 0)
5579 XStoreBuffer(dpy, (char *)str, (int)len, 0);
5580 XFlush(dpy);
5583 vim_free(str);
5585 #endif
5587 void
5588 clip_free_selection(cbd)
5589 VimClipboard *cbd;
5591 struct yankreg *y_ptr = y_current;
5593 if (cbd == &clip_plus)
5594 y_current = &y_regs[PLUS_REGISTER];
5595 else
5596 y_current = &y_regs[STAR_REGISTER];
5597 free_yank_all();
5598 y_current->y_size = 0;
5599 y_current = y_ptr;
5603 * Get the selected text and put it in the gui selection register '*' or '+'.
5605 void
5606 clip_get_selection(cbd)
5607 VimClipboard *cbd;
5609 struct yankreg *old_y_previous, *old_y_current;
5610 pos_T old_cursor;
5611 #ifdef FEAT_VISUAL
5612 pos_T old_visual;
5613 int old_visual_mode;
5614 #endif
5615 colnr_T old_curswant;
5616 int old_set_curswant;
5617 pos_T old_op_start, old_op_end;
5618 oparg_T oa;
5619 cmdarg_T ca;
5621 if (cbd->owned)
5623 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
5624 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
5625 return;
5627 /* Get the text between clip_star.start & clip_star.end */
5628 old_y_previous = y_previous;
5629 old_y_current = y_current;
5630 old_cursor = curwin->w_cursor;
5631 old_curswant = curwin->w_curswant;
5632 old_set_curswant = curwin->w_set_curswant;
5633 old_op_start = curbuf->b_op_start;
5634 old_op_end = curbuf->b_op_end;
5635 #ifdef FEAT_VISUAL
5636 old_visual = VIsual;
5637 old_visual_mode = VIsual_mode;
5638 #endif
5639 clear_oparg(&oa);
5640 oa.regname = (cbd == &clip_plus ? '+' : '*');
5641 oa.op_type = OP_YANK;
5642 vim_memset(&ca, 0, sizeof(ca));
5643 ca.oap = &oa;
5644 ca.cmdchar = 'y';
5645 ca.count1 = 1;
5646 ca.retval = CA_NO_ADJ_OP_END;
5647 do_pending_operator(&ca, 0, TRUE);
5648 y_previous = old_y_previous;
5649 y_current = old_y_current;
5650 curwin->w_cursor = old_cursor;
5651 changed_cline_bef_curs(); /* need to update w_virtcol et al */
5652 curwin->w_curswant = old_curswant;
5653 curwin->w_set_curswant = old_set_curswant;
5654 curbuf->b_op_start = old_op_start;
5655 curbuf->b_op_end = old_op_end;
5656 #ifdef FEAT_VISUAL
5657 VIsual = old_visual;
5658 VIsual_mode = old_visual_mode;
5659 #endif
5661 else
5663 clip_free_selection(cbd);
5665 /* Try to get selected text from another window */
5666 clip_gen_request_selection(cbd);
5670 /* Convert from the GUI selection string into the '*'/'+' register */
5671 void
5672 clip_yank_selection(type, str, len, cbd)
5673 int type;
5674 char_u *str;
5675 long len;
5676 VimClipboard *cbd;
5678 struct yankreg *y_ptr;
5680 if (cbd == &clip_plus)
5681 y_ptr = &y_regs[PLUS_REGISTER];
5682 else
5683 y_ptr = &y_regs[STAR_REGISTER];
5685 clip_free_selection(cbd);
5687 str_to_reg(y_ptr, type, str, len, 0L);
5691 * Convert the '*'/'+' register into a GUI selection string returned in *str
5692 * with length *len.
5693 * Returns the motion type, or -1 for failure.
5696 clip_convert_selection(str, len, cbd)
5697 char_u **str;
5698 long_u *len;
5699 VimClipboard *cbd;
5701 char_u *p;
5702 int lnum;
5703 int i, j;
5704 int_u eolsize;
5705 struct yankreg *y_ptr;
5707 if (cbd == &clip_plus)
5708 y_ptr = &y_regs[PLUS_REGISTER];
5709 else
5710 y_ptr = &y_regs[STAR_REGISTER];
5712 #ifdef USE_CRNL
5713 eolsize = 2;
5714 #else
5715 eolsize = 1;
5716 #endif
5718 *str = NULL;
5719 *len = 0;
5720 if (y_ptr->y_array == NULL)
5721 return -1;
5723 for (i = 0; i < y_ptr->y_size; i++)
5724 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
5727 * Don't want newline character at end of last line if we're in MCHAR mode.
5729 if (y_ptr->y_type == MCHAR && *len >= eolsize)
5730 *len -= eolsize;
5732 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
5733 if (p == NULL)
5734 return -1;
5735 lnum = 0;
5736 for (i = 0, j = 0; i < (int)*len; i++, j++)
5738 if (y_ptr->y_array[lnum][j] == '\n')
5739 p[i] = NUL;
5740 else if (y_ptr->y_array[lnum][j] == NUL)
5742 #ifdef USE_CRNL
5743 p[i++] = '\r';
5744 #endif
5745 #ifdef USE_CR
5746 p[i] = '\r';
5747 #else
5748 p[i] = '\n';
5749 #endif
5750 lnum++;
5751 j = -1;
5753 else
5754 p[i] = y_ptr->y_array[lnum][j];
5756 return y_ptr->y_type;
5760 # if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
5762 * If we have written to a clipboard register, send the text to the clipboard.
5764 static void
5765 may_set_selection()
5767 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
5769 clip_own_selection(&clip_star);
5770 clip_gen_set_selection(&clip_star);
5772 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
5774 clip_own_selection(&clip_plus);
5775 clip_gen_set_selection(&clip_plus);
5778 # endif
5780 #endif /* FEAT_CLIPBOARD || PROTO */
5783 #if defined(FEAT_DND) || defined(PROTO)
5785 * Replace the contents of the '~' register with str.
5787 void
5788 dnd_yank_drag_data(str, len)
5789 char_u *str;
5790 long len;
5792 struct yankreg *curr;
5794 curr = y_current;
5795 y_current = &y_regs[TILDE_REGISTER];
5796 free_yank_all();
5797 str_to_reg(y_current, MCHAR, str, len, 0L);
5798 y_current = curr;
5800 #endif
5803 #if defined(FEAT_EVAL) || defined(PROTO)
5805 * Return the type of a register.
5806 * Used for getregtype()
5807 * Returns MAUTO for error.
5809 char_u
5810 get_reg_type(regname, reglen)
5811 int regname;
5812 long *reglen;
5814 switch (regname)
5816 case '%': /* file name */
5817 case '#': /* alternate file name */
5818 case '=': /* expression */
5819 case ':': /* last command line */
5820 case '/': /* last search-pattern */
5821 case '.': /* last inserted text */
5822 #ifdef FEAT_SEARCHPATH
5823 case Ctrl_F: /* Filename under cursor */
5824 case Ctrl_P: /* Path under cursor, expand via "path" */
5825 #endif
5826 case Ctrl_W: /* word under cursor */
5827 case Ctrl_A: /* WORD (mnemonic All) under cursor */
5828 case '_': /* black hole: always empty */
5829 return MCHAR;
5832 #ifdef FEAT_CLIPBOARD
5833 regname = may_get_selection(regname);
5834 #endif
5836 /* Should we check for a valid name? */
5837 get_yank_register(regname, FALSE);
5839 if (y_current->y_array != NULL)
5841 #ifdef FEAT_VISUAL
5842 if (reglen != NULL && y_current->y_type == MBLOCK)
5843 *reglen = y_current->y_width;
5844 #endif
5845 return y_current->y_type;
5847 return MAUTO;
5851 * Return the contents of a register as a single allocated string.
5852 * Used for "@r" in expressions and for getreg().
5853 * Returns NULL for error.
5855 char_u *
5856 get_reg_contents(regname, allowexpr, expr_src)
5857 int regname;
5858 int allowexpr; /* allow "=" register */
5859 int expr_src; /* get expression for "=" register */
5861 long i;
5862 char_u *retval;
5863 int allocated;
5864 long len;
5866 /* Don't allow using an expression register inside an expression */
5867 if (regname == '=')
5869 if (allowexpr)
5871 if (expr_src)
5872 return get_expr_line_src();
5873 return get_expr_line();
5875 return NULL;
5878 if (regname == '@') /* "@@" is used for unnamed register */
5879 regname = '"';
5881 /* check for valid regname */
5882 if (regname != NUL && !valid_yank_reg(regname, FALSE))
5883 return NULL;
5885 #ifdef FEAT_CLIPBOARD
5886 regname = may_get_selection(regname);
5887 #endif
5889 if (get_spec_reg(regname, &retval, &allocated, FALSE))
5891 if (retval == NULL)
5892 return NULL;
5893 if (!allocated)
5894 retval = vim_strsave(retval);
5895 return retval;
5898 get_yank_register(regname, FALSE);
5899 if (y_current->y_array == NULL)
5900 return NULL;
5903 * Compute length of resulting string.
5905 len = 0;
5906 for (i = 0; i < y_current->y_size; ++i)
5908 len += (long)STRLEN(y_current->y_array[i]);
5910 * Insert a newline between lines and after last line if
5911 * y_type is MLINE.
5913 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5914 ++len;
5917 retval = lalloc(len + 1, TRUE);
5920 * Copy the lines of the yank register into the string.
5922 if (retval != NULL)
5924 len = 0;
5925 for (i = 0; i < y_current->y_size; ++i)
5927 STRCPY(retval + len, y_current->y_array[i]);
5928 len += (long)STRLEN(retval + len);
5931 * Insert a NL between lines and after the last line if y_type is
5932 * MLINE.
5934 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5935 retval[len++] = '\n';
5937 retval[len] = NUL;
5940 return retval;
5944 * Store string "str" in register "name".
5945 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
5946 * If "must_append" is TRUE, always append to the register. Otherwise append
5947 * if "name" is an uppercase letter.
5948 * Note: "maxlen" and "must_append" don't work for the "/" register.
5949 * Careful: 'str' is modified, you may have to use a copy!
5950 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
5952 void
5953 write_reg_contents(name, str, maxlen, must_append)
5954 int name;
5955 char_u *str;
5956 int maxlen;
5957 int must_append;
5959 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
5962 void
5963 write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
5964 int name;
5965 char_u *str;
5966 int maxlen;
5967 int must_append;
5968 int yank_type;
5969 long block_len;
5971 struct yankreg *old_y_previous, *old_y_current;
5972 long len;
5974 if (maxlen >= 0)
5975 len = maxlen;
5976 else
5977 len = (long)STRLEN(str);
5979 /* Special case: '/' search pattern */
5980 if (name == '/')
5982 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
5983 return;
5986 #ifdef FEAT_EVAL
5987 if (name == '=')
5989 char_u *p, *s;
5991 p = vim_strnsave(str, (int)len);
5992 if (p == NULL)
5993 return;
5994 if (must_append)
5996 s = concat_str(get_expr_line_src(), p);
5997 vim_free(p);
5998 p = s;
6001 set_expr_line(p);
6002 return;
6004 #endif
6006 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6008 emsg_invreg(name);
6009 return;
6012 if (name == '_') /* black hole: nothing to do */
6013 return;
6015 /* Don't want to change the current (unnamed) register */
6016 old_y_previous = y_previous;
6017 old_y_current = y_current;
6019 get_yank_register(name, TRUE);
6020 if (!y_append && !must_append)
6021 free_yank_all();
6022 #ifndef FEAT_VISUAL
6023 /* Just in case - make sure we don't use MBLOCK */
6024 if (yank_type == MBLOCK)
6025 yank_type = MAUTO;
6026 #endif
6027 if (yank_type == MAUTO)
6028 yank_type = ((len > 0 && (str[len - 1] == '\n' || str[len - 1] == '\r'))
6029 ? MLINE : MCHAR);
6030 str_to_reg(y_current, yank_type, str, len, block_len);
6032 # ifdef FEAT_CLIPBOARD
6033 /* Send text of clipboard register to the clipboard. */
6034 may_set_selection();
6035 # endif
6037 /* ':let @" = "val"' should change the meaning of the "" register */
6038 if (name != '"')
6039 y_previous = old_y_previous;
6040 y_current = old_y_current;
6042 #endif /* FEAT_EVAL */
6044 #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6046 * Put a string into a register. When the register is not empty, the string
6047 * is appended.
6049 static void
6050 str_to_reg(y_ptr, type, str, len, blocklen)
6051 struct yankreg *y_ptr; /* pointer to yank register */
6052 int type; /* MCHAR, MLINE or MBLOCK */
6053 char_u *str; /* string to put in register */
6054 long len; /* length of string */
6055 long blocklen; /* width of Visual block */
6057 int lnum;
6058 long start;
6059 long i;
6060 int extra;
6061 int newlines; /* number of lines added */
6062 int extraline = 0; /* extra line at the end */
6063 int append = FALSE; /* append to last line in register */
6064 char_u *s;
6065 char_u **pp;
6066 #ifdef FEAT_VISUAL
6067 long maxlen;
6068 #endif
6070 if (y_ptr->y_array == NULL) /* NULL means emtpy register */
6071 y_ptr->y_size = 0;
6074 * Count the number of lines within the string
6076 newlines = 0;
6077 for (i = 0; i < len; i++)
6078 if (str[i] == '\n')
6079 ++newlines;
6080 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
6082 extraline = 1;
6083 ++newlines; /* count extra newline at the end */
6085 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
6087 append = TRUE;
6088 --newlines; /* uncount newline when appending first line */
6092 * Allocate an array to hold the pointers to the new register lines.
6093 * If the register was not empty, move the existing lines to the new array.
6095 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
6096 * sizeof(char_u *), TRUE);
6097 if (pp == NULL) /* out of memory */
6098 return;
6099 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
6100 pp[lnum] = y_ptr->y_array[lnum];
6101 vim_free(y_ptr->y_array);
6102 y_ptr->y_array = pp;
6103 #ifdef FEAT_VISUAL
6104 maxlen = 0;
6105 #endif
6108 * Find the end of each line and save it into the array.
6110 for (start = 0; start < len + extraline; start += i + 1)
6112 for (i = start; i < len; ++i) /* find the end of the line */
6113 if (str[i] == '\n')
6114 break;
6115 i -= start; /* i is now length of line */
6116 #ifdef FEAT_VISUAL
6117 if (i > maxlen)
6118 maxlen = i;
6119 #endif
6120 if (append)
6122 --lnum;
6123 extra = (int)STRLEN(y_ptr->y_array[lnum]);
6125 else
6126 extra = 0;
6127 s = alloc((unsigned)(i + extra + 1));
6128 if (s == NULL)
6129 break;
6130 if (extra)
6131 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
6132 if (append)
6133 vim_free(y_ptr->y_array[lnum]);
6134 if (i)
6135 mch_memmove(s + extra, str + start, (size_t)i);
6136 extra += i;
6137 s[extra] = NUL;
6138 y_ptr->y_array[lnum++] = s;
6139 while (--extra >= 0)
6141 if (*s == NUL)
6142 *s = '\n'; /* replace NUL with newline */
6143 ++s;
6145 append = FALSE; /* only first line is appended */
6147 y_ptr->y_type = type;
6148 y_ptr->y_size = lnum;
6149 # ifdef FEAT_VISUAL
6150 if (type == MBLOCK)
6151 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
6152 else
6153 y_ptr->y_width = 0;
6154 # endif
6156 #endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
6158 void
6159 clear_oparg(oap)
6160 oparg_T *oap;
6162 vim_memset(oap, 0, sizeof(oparg_T));
6165 static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
6168 * Count the number of bytes, characters and "words" in a line.
6170 * "Words" are counted by looking for boundaries between non-space and
6171 * space characters. (it seems to produce results that match 'wc'.)
6173 * Return value is byte count; word count for the line is added to "*wc".
6174 * Char count is added to "*cc".
6176 * The function will only examine the first "limit" characters in the
6177 * line, stopping if it encounters an end-of-line (NUL byte). In that
6178 * case, eol_size will be added to the character count to account for
6179 * the size of the EOL character.
6181 static long
6182 line_count_info(line, wc, cc, limit, eol_size)
6183 char_u *line;
6184 long *wc;
6185 long *cc;
6186 long limit;
6187 int eol_size;
6189 long i;
6190 long words = 0;
6191 long chars = 0;
6192 int is_word = 0;
6194 for (i = 0; line[i] && i < limit; )
6196 if (is_word)
6198 if (vim_isspace(line[i]))
6200 words++;
6201 is_word = 0;
6204 else if (!vim_isspace(line[i]))
6205 is_word = 1;
6206 ++chars;
6207 #ifdef FEAT_MBYTE
6208 i += (*mb_ptr2len)(line + i);
6209 #else
6210 ++i;
6211 #endif
6214 if (is_word)
6215 words++;
6216 *wc += words;
6218 /* Add eol_size if the end of line was reached before hitting limit. */
6219 if (line[i] == NUL && i < limit)
6221 i += eol_size;
6222 chars += eol_size;
6224 *cc += chars;
6225 return i;
6229 * Give some info about the position of the cursor (for "g CTRL-G").
6230 * In Visual mode, give some info about the selected region. (In this case,
6231 * the *_count_cursor variables store running totals for the selection.)
6233 void
6234 cursor_pos_info()
6236 char_u *p;
6237 char_u buf1[50];
6238 char_u buf2[40];
6239 linenr_T lnum;
6240 long byte_count = 0;
6241 long byte_count_cursor = 0;
6242 long char_count = 0;
6243 long char_count_cursor = 0;
6244 long word_count = 0;
6245 long word_count_cursor = 0;
6246 int eol_size;
6247 long last_check = 100000L;
6248 #ifdef FEAT_VISUAL
6249 long line_count_selected = 0;
6250 pos_T min_pos, max_pos;
6251 oparg_T oparg;
6252 struct block_def bd;
6253 #endif
6256 * Compute the length of the file in characters.
6258 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6260 MSG(_(no_lines_msg));
6262 else
6264 if (get_fileformat(curbuf) == EOL_DOS)
6265 eol_size = 2;
6266 else
6267 eol_size = 1;
6269 #ifdef FEAT_VISUAL
6270 if (VIsual_active)
6272 if (lt(VIsual, curwin->w_cursor))
6274 min_pos = VIsual;
6275 max_pos = curwin->w_cursor;
6277 else
6279 min_pos = curwin->w_cursor;
6280 max_pos = VIsual;
6282 if (*p_sel == 'e' && max_pos.col > 0)
6283 --max_pos.col;
6285 if (VIsual_mode == Ctrl_V)
6287 oparg.is_VIsual = 1;
6288 oparg.block_mode = TRUE;
6289 oparg.op_type = OP_NOP;
6290 getvcols(curwin, &min_pos, &max_pos,
6291 &oparg.start_vcol, &oparg.end_vcol);
6292 if (curwin->w_curswant == MAXCOL)
6293 oparg.end_vcol = MAXCOL;
6294 /* Swap the start, end vcol if needed */
6295 if (oparg.end_vcol < oparg.start_vcol)
6297 oparg.end_vcol += oparg.start_vcol;
6298 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
6299 oparg.end_vcol -= oparg.start_vcol;
6302 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
6304 #endif
6306 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6308 /* Check for a CTRL-C every 100000 characters. */
6309 if (byte_count > last_check)
6311 ui_breakcheck();
6312 if (got_int)
6313 return;
6314 last_check = byte_count + 100000L;
6317 #ifdef FEAT_VISUAL
6318 /* Do extra processing for VIsual mode. */
6319 if (VIsual_active
6320 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
6322 char_u *s = NULL;
6323 long len = 0L;
6325 switch (VIsual_mode)
6327 case Ctrl_V:
6328 # ifdef FEAT_VIRTUALEDIT
6329 virtual_op = virtual_active();
6330 # endif
6331 block_prep(&oparg, &bd, lnum, 0);
6332 # ifdef FEAT_VIRTUALEDIT
6333 virtual_op = MAYBE;
6334 # endif
6335 s = bd.textstart;
6336 len = (long)bd.textlen;
6337 break;
6338 case 'V':
6339 s = ml_get(lnum);
6340 len = MAXCOL;
6341 break;
6342 case 'v':
6344 colnr_T start_col = (lnum == min_pos.lnum)
6345 ? min_pos.col : 0;
6346 colnr_T end_col = (lnum == max_pos.lnum)
6347 ? max_pos.col - start_col + 1 : MAXCOL;
6349 s = ml_get(lnum) + start_col;
6350 len = end_col;
6352 break;
6354 if (s != NULL)
6356 byte_count_cursor += line_count_info(s, &word_count_cursor,
6357 &char_count_cursor, len, eol_size);
6358 if (lnum == curbuf->b_ml.ml_line_count
6359 && !curbuf->b_p_eol
6360 && curbuf->b_p_bin
6361 && (long)STRLEN(s) < len)
6362 byte_count_cursor -= eol_size;
6365 else
6366 #endif
6368 /* In non-visual mode, check for the line the cursor is on */
6369 if (lnum == curwin->w_cursor.lnum)
6371 word_count_cursor += word_count;
6372 char_count_cursor += char_count;
6373 byte_count_cursor = byte_count +
6374 line_count_info(ml_get(lnum),
6375 &word_count_cursor, &char_count_cursor,
6376 (long)(curwin->w_cursor.col + 1), eol_size);
6379 /* Add to the running totals */
6380 byte_count += line_count_info(ml_get(lnum), &word_count,
6381 &char_count, (long)MAXCOL, eol_size);
6384 /* Correction for when last line doesn't have an EOL. */
6385 if (!curbuf->b_p_eol && curbuf->b_p_bin)
6386 byte_count -= eol_size;
6388 #ifdef FEAT_VISUAL
6389 if (VIsual_active)
6391 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
6393 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
6394 &max_pos.col);
6395 sprintf((char *)buf1, _("%ld Cols; "),
6396 (long)(oparg.end_vcol - oparg.start_vcol + 1));
6398 else
6399 buf1[0] = NUL;
6401 if (char_count_cursor == byte_count_cursor
6402 && char_count == byte_count)
6403 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
6404 buf1, line_count_selected,
6405 (long)curbuf->b_ml.ml_line_count,
6406 word_count_cursor, word_count,
6407 byte_count_cursor, byte_count);
6408 else
6409 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"),
6410 buf1, line_count_selected,
6411 (long)curbuf->b_ml.ml_line_count,
6412 word_count_cursor, word_count,
6413 char_count_cursor, char_count,
6414 byte_count_cursor, byte_count);
6416 else
6417 #endif
6419 p = ml_get_curline();
6420 validate_virtcol();
6421 col_print(buf1, (int)curwin->w_cursor.col + 1,
6422 (int)curwin->w_virtcol + 1);
6423 col_print(buf2, (int)STRLEN(p), linetabsize(p));
6425 if (char_count_cursor == byte_count_cursor
6426 && char_count == byte_count)
6427 sprintf((char *)IObuff, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"),
6428 (char *)buf1, (char *)buf2,
6429 (long)curwin->w_cursor.lnum,
6430 (long)curbuf->b_ml.ml_line_count,
6431 word_count_cursor, word_count,
6432 byte_count_cursor, byte_count);
6433 else
6434 sprintf((char *)IObuff, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"),
6435 (char *)buf1, (char *)buf2,
6436 (long)curwin->w_cursor.lnum,
6437 (long)curbuf->b_ml.ml_line_count,
6438 word_count_cursor, word_count,
6439 char_count_cursor, char_count,
6440 byte_count_cursor, byte_count);
6443 #ifdef FEAT_MBYTE
6444 byte_count = bomb_size();
6445 if (byte_count > 0)
6446 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
6447 byte_count);
6448 #endif
6449 /* Don't shorten this message, the user asked for it. */
6450 p = p_shm;
6451 p_shm = (char_u *)"";
6452 msg(IObuff);
6453 p_shm = p;