Merge branch 'vim-with-runtime' into feat/var-tabstops
[vim_extended.git] / src / ops.c
blob04302e6a993f8c46c392e977f73a49c225e54c46
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 #ifdef FEAT_VARTABS
390 int *p_vts = curbuf->b_p_vts_ary;
391 #endif
392 int p_ts = (int)curbuf->b_p_ts;
393 struct block_def bd;
394 int incr;
395 colnr_T ws_vcol;
396 int i = 0, j = 0;
397 int len;
398 #ifdef FEAT_RIGHTLEFT
399 int old_p_ri = p_ri;
401 p_ri = 0; /* don't want revins in ident */
402 #endif
404 State = INSERT; /* don't want REPLACE for State */
405 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
406 if (bd.is_short)
407 return;
409 /* total is number of screen columns to be inserted/removed */
410 total = amount * p_sw;
411 oldp = ml_get_curline();
413 if (!left)
416 * 1. Get start vcol
417 * 2. Total ws vcols
418 * 3. Divvy into TABs & spp
419 * 4. Construct new string
421 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
422 ws_vcol = bd.start_vcol - bd.pre_whitesp;
423 if (bd.startspaces)
425 #ifdef FEAT_MBYTE
426 if (has_mbyte)
427 bd.textstart += (*mb_ptr2len)(bd.textstart);
428 else
429 #endif
430 ++bd.textstart;
432 for ( ; vim_iswhite(*bd.textstart); )
434 incr = lbr_chartabsize_adv(&bd.textstart, (colnr_T)(bd.start_vcol));
435 total += incr;
436 bd.start_vcol += incr;
438 /* OK, now total=all the VWS reqd, and textstart points at the 1st
439 * non-ws char in the block. */
440 #ifdef FEAT_VARTABS
441 if (!curbuf->b_p_et)
442 tabstop_fromto(ws_vcol, ws_vcol + total, p_ts, p_vts, &i, &j);
443 else
444 j = total;
445 #else
446 if (!curbuf->b_p_et)
447 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
448 if (i)
449 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
450 else
451 j = total;
452 #endif
453 /* if we're splitting a TAB, allow for it */
454 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
455 len = (int)STRLEN(bd.textstart) + 1;
456 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
457 if (newp == NULL)
458 return;
459 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
460 mch_memmove(newp, oldp, (size_t)bd.textcol);
461 copy_chars(newp + bd.textcol, (size_t)i, TAB);
462 copy_spaces(newp + bd.textcol + i, (size_t)j);
463 /* the end */
464 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
466 else /* left */
468 colnr_T destination_col; /* column to which text in block will
469 be shifted */
470 char_u *verbatim_copy_end; /* end of the part of the line which is
471 copied verbatim */
472 colnr_T verbatim_copy_width;/* the (displayed) width of this part
473 of line */
474 unsigned fill; /* nr of spaces that replace a TAB */
475 unsigned new_line_len; /* the length of the line after the
476 block shift */
477 size_t block_space_width;
478 size_t shift_amount;
479 char_u *non_white = bd.textstart;
480 colnr_T non_white_col;
483 * Firstly, let's find the first non-whitespace character that is
484 * displayed after the block's start column and the character's column
485 * number. Also, let's calculate the width of all the whitespace
486 * characters that are displayed in the block and precede the searched
487 * non-whitespace character.
490 /* If "bd.startspaces" is set, "bd.textstart" points to the character,
491 * the part of which is displayed at the block's beginning. Let's start
492 * searching from the next character. */
493 if (bd.startspaces)
494 mb_ptr_adv(non_white);
496 /* The character's column is in "bd.start_vcol". */
497 non_white_col = bd.start_vcol;
499 while (vim_iswhite(*non_white))
501 incr = lbr_chartabsize_adv(&non_white, non_white_col);
502 non_white_col += incr;
505 block_space_width = non_white_col - oap->start_vcol;
506 /* We will shift by "total" or "block_space_width", whichever is less.
508 shift_amount = (block_space_width < (size_t)total
509 ? block_space_width : (size_t)total);
511 /* The column to which we will shift the text. */
512 destination_col = (colnr_T)(non_white_col - shift_amount);
514 /* Now let's find out how much of the beginning of the line we can
515 * reuse without modification. */
516 verbatim_copy_end = bd.textstart;
517 verbatim_copy_width = bd.start_vcol;
519 /* If "bd.startspaces" is set, "bd.textstart" points to the character
520 * preceding the block. We have to subtract its width to obtain its
521 * column number. */
522 if (bd.startspaces)
523 verbatim_copy_width -= bd.start_char_vcols;
524 while (verbatim_copy_width < destination_col)
526 incr = lbr_chartabsize(verbatim_copy_end, verbatim_copy_width);
527 if (verbatim_copy_width + incr > destination_col)
528 break;
529 verbatim_copy_width += incr;
530 mb_ptr_adv(verbatim_copy_end);
533 /* If "destination_col" is different from the width of the initial
534 * part of the line that will be copied, it means we encountered a tab
535 * character, which we will have to partly replace with spaces. */
536 fill = destination_col - verbatim_copy_width;
538 /* The replacement line will consist of:
539 * - the beginning of the original line up to "verbatim_copy_end",
540 * - "fill" number of spaces,
541 * - the rest of the line, pointed to by non_white. */
542 new_line_len = (unsigned)(verbatim_copy_end - oldp)
543 + fill
544 + (unsigned)STRLEN(non_white) + 1;
546 newp = alloc_check(new_line_len);
547 if (newp == NULL)
548 return;
549 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp));
550 copy_spaces(newp + (verbatim_copy_end - oldp), (size_t)fill);
551 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white);
553 /* replace the line */
554 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
555 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
556 State = oldstate;
557 curwin->w_cursor.col = oldcol;
558 #ifdef FEAT_RIGHTLEFT
559 p_ri = old_p_ri;
560 #endif
562 #endif
564 #ifdef FEAT_VISUALEXTRA
566 * Insert string "s" (b_insert ? before : after) block :AKelly
567 * Caller must prepare for undo.
569 static void
570 block_insert(oap, s, b_insert, bdp)
571 oparg_T *oap;
572 char_u *s;
573 int b_insert;
574 struct block_def *bdp;
576 int p_ts;
577 int count = 0; /* extra spaces to replace a cut TAB */
578 int spaces = 0; /* non-zero if cutting a TAB */
579 colnr_T offset; /* pointer along new line */
580 unsigned s_len; /* STRLEN(s) */
581 char_u *newp, *oldp; /* new, old lines */
582 linenr_T lnum; /* loop var */
583 int oldstate = State;
585 State = INSERT; /* don't want REPLACE for State */
586 s_len = (unsigned)STRLEN(s);
588 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
590 block_prep(oap, bdp, lnum, TRUE);
591 if (bdp->is_short && b_insert)
592 continue; /* OP_INSERT, line ends before block start */
594 oldp = ml_get(lnum);
596 if (b_insert)
598 p_ts = bdp->start_char_vcols;
599 spaces = bdp->startspaces;
600 if (spaces != 0)
601 count = p_ts - 1; /* we're cutting a TAB */
602 offset = bdp->textcol;
604 else /* append */
606 p_ts = bdp->end_char_vcols;
607 if (!bdp->is_short) /* spaces = padding after block */
609 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
610 if (spaces != 0)
611 count = p_ts - 1; /* we're cutting a TAB */
612 offset = bdp->textcol + bdp->textlen - (spaces != 0);
614 else /* spaces = padding to block edge */
616 /* if $ used, just append to EOL (ie spaces==0) */
617 if (!bdp->is_MAX)
618 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
619 count = spaces;
620 offset = bdp->textcol + bdp->textlen;
624 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
625 if (newp == NULL)
626 continue;
628 /* copy up to shifted part */
629 mch_memmove(newp, oldp, (size_t)(offset));
630 oldp += offset;
632 /* insert pre-padding */
633 copy_spaces(newp + offset, (size_t)spaces);
635 /* copy the new text */
636 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
637 offset += s_len;
639 if (spaces && !bdp->is_short)
641 /* insert post-padding */
642 copy_spaces(newp + offset + spaces, (size_t)(p_ts - spaces));
643 /* We're splitting a TAB, don't copy it. */
644 oldp++;
645 /* We allowed for that TAB, remember this now */
646 count++;
649 if (spaces > 0)
650 offset += count;
651 STRMOVE(newp + offset, oldp);
653 ml_replace(lnum, newp, FALSE);
655 if (lnum == oap->end.lnum)
657 /* Set "']" mark to the end of the block instead of the end of
658 * the insert in the first line. */
659 curbuf->b_op_end.lnum = oap->end.lnum;
660 curbuf->b_op_end.col = offset;
662 } /* for all lnum */
664 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
666 State = oldstate;
668 #endif
670 #if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
672 * op_reindent - handle reindenting a block of lines.
674 void
675 op_reindent(oap, how)
676 oparg_T *oap;
677 int (*how) __ARGS((void));
679 long i;
680 char_u *l;
681 int count;
682 linenr_T first_changed = 0;
683 linenr_T last_changed = 0;
684 linenr_T start_lnum = curwin->w_cursor.lnum;
686 /* Don't even try when 'modifiable' is off. */
687 if (!curbuf->b_p_ma)
689 EMSG(_(e_modifiable));
690 return;
693 for (i = oap->line_count; --i >= 0 && !got_int; )
695 /* it's a slow thing to do, so give feedback so there's no worry that
696 * the computer's just hung. */
698 if (i > 1
699 && (i % 50 == 0 || i == oap->line_count - 1)
700 && oap->line_count > p_report)
701 smsg((char_u *)_("%ld lines to indent... "), i);
704 * Be vi-compatible: For lisp indenting the first line is not
705 * indented, unless there is only one line.
707 #ifdef FEAT_LISP
708 if (i != oap->line_count - 1 || oap->line_count == 1
709 || how != get_lisp_indent)
710 #endif
712 l = skipwhite(ml_get_curline());
713 if (*l == NUL) /* empty or blank line */
714 count = 0;
715 else
716 count = how(); /* get the indent for this line */
718 if (set_indent(count, SIN_UNDO))
720 /* did change the indent, call changed_lines() later */
721 if (first_changed == 0)
722 first_changed = curwin->w_cursor.lnum;
723 last_changed = curwin->w_cursor.lnum;
726 ++curwin->w_cursor.lnum;
727 curwin->w_cursor.col = 0; /* make sure it's valid */
730 /* put cursor on first non-blank of indented line */
731 curwin->w_cursor.lnum = start_lnum;
732 beginline(BL_SOL | BL_FIX);
734 /* Mark changed lines so that they will be redrawn. When Visual
735 * highlighting was present, need to continue until the last line. When
736 * there is no change still need to remove the Visual highlighting. */
737 if (last_changed != 0)
738 changed_lines(first_changed, 0,
739 #ifdef FEAT_VISUAL
740 oap->is_VIsual ? start_lnum + oap->line_count :
741 #endif
742 last_changed + 1, 0L);
743 #ifdef FEAT_VISUAL
744 else if (oap->is_VIsual)
745 redraw_curbuf_later(INVERTED);
746 #endif
748 if (oap->line_count > p_report)
750 i = oap->line_count - (i + 1);
751 if (i == 1)
752 MSG(_("1 line indented "));
753 else
754 smsg((char_u *)_("%ld lines indented "), i);
756 /* set '[ and '] marks */
757 curbuf->b_op_start = oap->start;
758 curbuf->b_op_end = oap->end;
760 #endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
762 #if defined(FEAT_EVAL) || defined(PROTO)
764 * Keep the last expression line here, for repeating.
766 static char_u *expr_line = NULL;
769 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
770 * Returns '=' when OK, NUL otherwise.
773 get_expr_register()
775 char_u *new_line;
777 new_line = getcmdline('=', 0L, 0);
778 if (new_line == NULL)
779 return NUL;
780 if (*new_line == NUL) /* use previous line */
781 vim_free(new_line);
782 else
783 set_expr_line(new_line);
784 return '=';
788 * Set the expression for the '=' register.
789 * Argument must be an allocated string.
791 void
792 set_expr_line(new_line)
793 char_u *new_line;
795 vim_free(expr_line);
796 expr_line = new_line;
800 * Get the result of the '=' register expression.
801 * Returns a pointer to allocated memory, or NULL for failure.
803 char_u *
804 get_expr_line()
806 char_u *expr_copy;
807 char_u *rv;
808 static int nested = 0;
810 if (expr_line == NULL)
811 return NULL;
813 /* Make a copy of the expression, because evaluating it may cause it to be
814 * changed. */
815 expr_copy = vim_strsave(expr_line);
816 if (expr_copy == NULL)
817 return NULL;
819 /* When we are invoked recursively limit the evaluation to 10 levels.
820 * Then return the string as-is. */
821 if (nested >= 10)
822 return expr_copy;
824 ++nested;
825 rv = eval_to_string(expr_copy, NULL, TRUE);
826 --nested;
827 vim_free(expr_copy);
828 return rv;
832 * Get the '=' register expression itself, without evaluating it.
834 char_u *
835 get_expr_line_src()
837 if (expr_line == NULL)
838 return NULL;
839 return vim_strsave(expr_line);
841 #endif /* FEAT_EVAL */
844 * Check if 'regname' is a valid name of a yank register.
845 * Note: There is no check for 0 (default register), caller should do this
848 valid_yank_reg(regname, writing)
849 int regname;
850 int writing; /* if TRUE check for writable registers */
852 if ( (regname > 0 && ASCII_ISALNUM(regname))
853 || (!writing && vim_strchr((char_u *)
854 #ifdef FEAT_EVAL
855 "/.%#:="
856 #else
857 "/.%#:"
858 #endif
859 , regname) != NULL)
860 || regname == '"'
861 || regname == '-'
862 || regname == '_'
863 #ifdef FEAT_CLIPBOARD
864 || regname == '*'
865 || regname == '+'
866 #endif
867 #ifdef FEAT_DND
868 || (!writing && regname == '~')
869 #endif
871 return TRUE;
872 return FALSE;
876 * Set y_current and y_append, according to the value of "regname".
877 * Cannot handle the '_' register.
878 * Must only be called with a valid register name!
880 * If regname is 0 and writing, use register 0
881 * If regname is 0 and reading, use previous register
883 void
884 get_yank_register(regname, writing)
885 int regname;
886 int writing;
888 int i;
890 y_append = FALSE;
891 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
893 y_current = y_previous;
894 return;
896 i = regname;
897 if (VIM_ISDIGIT(i))
898 i -= '0';
899 else if (ASCII_ISLOWER(i))
900 i = CharOrdLow(i) + 10;
901 else if (ASCII_ISUPPER(i))
903 i = CharOrdUp(i) + 10;
904 y_append = TRUE;
906 else if (regname == '-')
907 i = DELETION_REGISTER;
908 #ifdef FEAT_CLIPBOARD
909 /* When selection is not available, use register 0 instead of '*' */
910 else if (clip_star.available && regname == '*')
911 i = STAR_REGISTER;
912 /* When clipboard is not available, use register 0 instead of '+' */
913 else if (clip_plus.available && regname == '+')
914 i = PLUS_REGISTER;
915 #endif
916 #ifdef FEAT_DND
917 else if (!writing && regname == '~')
918 i = TILDE_REGISTER;
919 #endif
920 else /* not 0-9, a-z, A-Z or '-': use register 0 */
921 i = 0;
922 y_current = &(y_regs[i]);
923 if (writing) /* remember the register we write into for do_put() */
924 y_previous = y_current;
927 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
929 * When "regname" is a clipboard register, obtain the selection. If it's not
930 * available return zero, otherwise return "regname".
933 may_get_selection(regname)
934 int regname;
936 if (regname == '*')
938 if (!clip_star.available)
939 regname = 0;
940 else
941 clip_get_selection(&clip_star);
943 else if (regname == '+')
945 if (!clip_plus.available)
946 regname = 0;
947 else
948 clip_get_selection(&clip_plus);
950 return regname;
952 #endif
954 #if defined(FEAT_VISUAL) || defined(PROTO)
956 * Obtain the contents of a "normal" register. The register is made empty.
957 * The returned pointer has allocated memory, use put_register() later.
959 void *
960 get_register(name, copy)
961 int name;
962 int copy; /* make a copy, if FALSE make register empty. */
964 struct yankreg *reg;
965 int i;
967 #ifdef FEAT_CLIPBOARD
968 /* When Visual area changed, may have to update selection. Obtain the
969 * selection too. */
970 if (name == '*' && clip_star.available)
972 if (clip_isautosel())
973 clip_update_selection();
974 may_get_selection(name);
976 #endif
978 get_yank_register(name, 0);
979 reg = (struct yankreg *)alloc((unsigned)sizeof(struct yankreg));
980 if (reg != NULL)
982 *reg = *y_current;
983 if (copy)
985 /* If we run out of memory some or all of the lines are empty. */
986 if (reg->y_size == 0)
987 reg->y_array = NULL;
988 else
989 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
990 * reg->y_size));
991 if (reg->y_array != NULL)
993 for (i = 0; i < reg->y_size; ++i)
994 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
997 else
998 y_current->y_array = NULL;
1000 return (void *)reg;
1004 * Put "reg" into register "name". Free any previous contents and "reg".
1006 void
1007 put_register(name, reg)
1008 int name;
1009 void *reg;
1011 get_yank_register(name, 0);
1012 free_yank_all();
1013 *y_current = *(struct yankreg *)reg;
1014 vim_free(reg);
1016 # ifdef FEAT_CLIPBOARD
1017 /* Send text written to clipboard register to the clipboard. */
1018 may_set_selection();
1019 # endif
1021 #endif
1023 #if defined(FEAT_MOUSE) || defined(PROTO)
1025 * return TRUE if the current yank register has type MLINE
1028 yank_register_mline(regname)
1029 int regname;
1031 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1032 return FALSE;
1033 if (regname == '_') /* black hole is always empty */
1034 return FALSE;
1035 get_yank_register(regname, FALSE);
1036 return (y_current->y_type == MLINE);
1038 #endif
1041 * Start or stop recording into a yank register.
1043 * Return FAIL for failure, OK otherwise.
1046 do_record(c)
1047 int c;
1049 char_u *p;
1050 static int regname;
1051 struct yankreg *old_y_previous, *old_y_current;
1052 int retval;
1054 if (Recording == FALSE) /* start recording */
1056 /* registers 0-9, a-z and " are allowed */
1057 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1058 retval = FAIL;
1059 else
1061 Recording = TRUE;
1062 showmode();
1063 regname = c;
1064 retval = OK;
1067 else /* stop recording */
1070 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1071 * needs to be removed again to put it in a register. exec_reg then
1072 * adds the escaping back later.
1074 Recording = FALSE;
1075 MSG("");
1076 p = get_recorded();
1077 if (p == NULL)
1078 retval = FAIL;
1079 else
1081 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1082 vim_unescape_csi(p);
1085 * We don't want to change the default register here, so save and
1086 * restore the current register name.
1088 old_y_previous = y_previous;
1089 old_y_current = y_current;
1091 retval = stuff_yank(regname, p);
1093 y_previous = old_y_previous;
1094 y_current = old_y_current;
1097 return retval;
1101 * Stuff string "p" into yank register "regname" as a single line (append if
1102 * uppercase). "p" must have been alloced.
1104 * return FAIL for failure, OK otherwise
1106 static int
1107 stuff_yank(regname, p)
1108 int regname;
1109 char_u *p;
1111 char_u *lp;
1112 char_u **pp;
1114 /* check for read-only register */
1115 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1117 vim_free(p);
1118 return FAIL;
1120 if (regname == '_') /* black hole: don't do anything */
1122 vim_free(p);
1123 return OK;
1125 get_yank_register(regname, TRUE);
1126 if (y_append && y_current->y_array != NULL)
1128 pp = &(y_current->y_array[y_current->y_size - 1]);
1129 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1130 if (lp == NULL)
1132 vim_free(p);
1133 return FAIL;
1135 STRCPY(lp, *pp);
1136 STRCAT(lp, p);
1137 vim_free(p);
1138 vim_free(*pp);
1139 *pp = lp;
1141 else
1143 free_yank_all();
1144 if ((y_current->y_array =
1145 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1147 vim_free(p);
1148 return FAIL;
1150 y_current->y_array[0] = p;
1151 y_current->y_size = 1;
1152 y_current->y_type = MCHAR; /* used to be MLINE, why? */
1154 return OK;
1157 static int execreg_lastc = NUL;
1160 * execute a yank register: copy it into the stuff buffer
1162 * return FAIL for failure, OK otherwise
1165 do_execreg(regname, colon, addcr, silent)
1166 int regname;
1167 int colon; /* insert ':' before each line */
1168 int addcr; /* always add '\n' to end of line */
1169 int silent; /* set "silent" flag in typeahead buffer */
1171 long i;
1172 char_u *p;
1173 int retval = OK;
1174 int remap;
1176 if (regname == '@') /* repeat previous one */
1178 if (execreg_lastc == NUL)
1180 EMSG(_("E748: No previously used register"));
1181 return FAIL;
1183 regname = execreg_lastc;
1185 /* check for valid regname */
1186 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
1188 emsg_invreg(regname);
1189 return FAIL;
1191 execreg_lastc = regname;
1193 #ifdef FEAT_CLIPBOARD
1194 regname = may_get_selection(regname);
1195 #endif
1197 if (regname == '_') /* black hole: don't stuff anything */
1198 return OK;
1200 #ifdef FEAT_CMDHIST
1201 if (regname == ':') /* use last command line */
1203 if (last_cmdline == NULL)
1205 EMSG(_(e_nolastcmd));
1206 return FAIL;
1208 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
1209 new_last_cmdline = NULL;
1210 /* Escape all control characters with a CTRL-V */
1211 p = vim_strsave_escaped_ext(last_cmdline,
1212 (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);
1213 if (p != NULL)
1215 /* When in Visual mode "'<,'>" will be prepended to the command.
1216 * Remove it when it's already there. */
1217 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
1218 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
1219 else
1220 retval = put_in_typebuf(p, TRUE, TRUE, silent);
1222 vim_free(p);
1224 #endif
1225 #ifdef FEAT_EVAL
1226 else if (regname == '=')
1228 p = get_expr_line();
1229 if (p == NULL)
1230 return FAIL;
1231 retval = put_in_typebuf(p, TRUE, colon, silent);
1232 vim_free(p);
1234 #endif
1235 else if (regname == '.') /* use last inserted text */
1237 p = get_last_insert_save();
1238 if (p == NULL)
1240 EMSG(_(e_noinstext));
1241 return FAIL;
1243 retval = put_in_typebuf(p, FALSE, colon, silent);
1244 vim_free(p);
1246 else
1248 get_yank_register(regname, FALSE);
1249 if (y_current->y_array == NULL)
1250 return FAIL;
1252 /* Disallow remaping for ":@r". */
1253 remap = colon ? REMAP_NONE : REMAP_YES;
1256 * Insert lines into typeahead buffer, from last one to first one.
1258 put_reedit_in_typebuf(silent);
1259 for (i = y_current->y_size; --i >= 0; )
1261 char_u *escaped;
1263 /* insert NL between lines and after last line if type is MLINE */
1264 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1265 || addcr)
1267 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
1268 return FAIL;
1270 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1271 if (escaped == NULL)
1272 return FAIL;
1273 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1274 vim_free(escaped);
1275 if (retval == FAIL)
1276 return FAIL;
1277 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
1278 == FAIL)
1279 return FAIL;
1281 Exec_reg = TRUE; /* disable the 'q' command */
1283 return retval;
1287 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1288 * used only after other typeahead has been processed.
1290 static void
1291 put_reedit_in_typebuf(silent)
1292 int silent;
1294 char_u buf[3];
1296 if (restart_edit != NUL)
1298 if (restart_edit == 'V')
1300 buf[0] = 'g';
1301 buf[1] = 'R';
1302 buf[2] = NUL;
1304 else
1306 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1307 buf[1] = NUL;
1309 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
1310 restart_edit = NUL;
1315 * Insert register contents "s" into the typeahead buffer, so that it will be
1316 * executed again.
1317 * When "esc" is TRUE it is to be taken literally: Escape CSI characters and
1318 * no remapping.
1320 static int
1321 put_in_typebuf(s, esc, colon, silent)
1322 char_u *s;
1323 int esc;
1324 int colon; /* add ':' before the line */
1325 int silent;
1327 int retval = OK;
1329 put_reedit_in_typebuf(silent);
1330 if (colon)
1331 retval = ins_typebuf((char_u *)"\n", REMAP_NONE, 0, TRUE, silent);
1332 if (retval == OK)
1334 char_u *p;
1336 if (esc)
1337 p = vim_strsave_escape_csi(s);
1338 else
1339 p = s;
1340 if (p == NULL)
1341 retval = FAIL;
1342 else
1343 retval = ins_typebuf(p, esc ? REMAP_NONE : REMAP_YES,
1344 0, TRUE, silent);
1345 if (esc)
1346 vim_free(p);
1348 if (colon && retval == OK)
1349 retval = ins_typebuf((char_u *)":", REMAP_NONE, 0, TRUE, silent);
1350 return retval;
1354 * Insert a yank register: copy it into the Read buffer.
1355 * Used by CTRL-R command and middle mouse button in insert mode.
1357 * return FAIL for failure, OK otherwise
1360 insert_reg(regname, literally)
1361 int regname;
1362 int literally; /* insert literally, not as if typed */
1364 long i;
1365 int retval = OK;
1366 char_u *arg;
1367 int allocated;
1370 * It is possible to get into an endless loop by having CTRL-R a in
1371 * register a and then, in insert mode, doing CTRL-R a.
1372 * If you hit CTRL-C, the loop will be broken here.
1374 ui_breakcheck();
1375 if (got_int)
1376 return FAIL;
1378 /* check for valid regname */
1379 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1380 return FAIL;
1382 #ifdef FEAT_CLIPBOARD
1383 regname = may_get_selection(regname);
1384 #endif
1386 if (regname == '.') /* insert last inserted text */
1387 retval = stuff_inserted(NUL, 1L, TRUE);
1388 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1390 if (arg == NULL)
1391 return FAIL;
1392 stuffescaped(arg, literally);
1393 if (allocated)
1394 vim_free(arg);
1396 else /* name or number register */
1398 get_yank_register(regname, FALSE);
1399 if (y_current->y_array == NULL)
1400 retval = FAIL;
1401 else
1403 for (i = 0; i < y_current->y_size; ++i)
1405 stuffescaped(y_current->y_array[i], literally);
1407 * Insert a newline between lines and after last line if
1408 * y_type is MLINE.
1410 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1411 stuffcharReadbuff('\n');
1416 return retval;
1420 * Stuff a string into the typeahead buffer, such that edit() will insert it
1421 * literally ("literally" TRUE) or interpret is as typed characters.
1423 static void
1424 stuffescaped(arg, literally)
1425 char_u *arg;
1426 int literally;
1428 int c;
1429 char_u *start;
1431 while (*arg != NUL)
1433 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1434 * stuff K_SPECIAL to get the effect of a special key when "literally"
1435 * is TRUE. */
1436 start = arg;
1437 while ((*arg >= ' '
1438 #ifndef EBCDIC
1439 && *arg < DEL /* EBCDIC: chars above space are normal */
1440 #endif
1442 || (*arg == K_SPECIAL && !literally))
1443 ++arg;
1444 if (arg > start)
1445 stuffReadbuffLen(start, (long)(arg - start));
1447 /* stuff a single special character */
1448 if (*arg != NUL)
1450 #ifdef FEAT_MBYTE
1451 if (has_mbyte)
1452 c = mb_ptr2char_adv(&arg);
1453 else
1454 #endif
1455 c = *arg++;
1456 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1457 stuffcharReadbuff(Ctrl_V);
1458 stuffcharReadbuff(c);
1464 * If "regname" is a special register, return TRUE and store a pointer to its
1465 * value in "argp".
1468 get_spec_reg(regname, argp, allocated, errmsg)
1469 int regname;
1470 char_u **argp;
1471 int *allocated; /* return: TRUE when value was allocated */
1472 int errmsg; /* give error message when failing */
1474 int cnt;
1476 *argp = NULL;
1477 *allocated = FALSE;
1478 switch (regname)
1480 case '%': /* file name */
1481 if (errmsg)
1482 check_fname(); /* will give emsg if not set */
1483 *argp = curbuf->b_fname;
1484 return TRUE;
1486 case '#': /* alternate file name */
1487 *argp = getaltfname(errmsg); /* may give emsg if not set */
1488 return TRUE;
1490 #ifdef FEAT_EVAL
1491 case '=': /* result of expression */
1492 *argp = get_expr_line();
1493 *allocated = TRUE;
1494 return TRUE;
1495 #endif
1497 case ':': /* last command line */
1498 if (last_cmdline == NULL && errmsg)
1499 EMSG(_(e_nolastcmd));
1500 *argp = last_cmdline;
1501 return TRUE;
1503 case '/': /* last search-pattern */
1504 if (last_search_pat() == NULL && errmsg)
1505 EMSG(_(e_noprevre));
1506 *argp = last_search_pat();
1507 return TRUE;
1509 case '.': /* last inserted text */
1510 *argp = get_last_insert_save();
1511 *allocated = TRUE;
1512 if (*argp == NULL && errmsg)
1513 EMSG(_(e_noinstext));
1514 return TRUE;
1516 #ifdef FEAT_SEARCHPATH
1517 case Ctrl_F: /* Filename under cursor */
1518 case Ctrl_P: /* Path under cursor, expand via "path" */
1519 if (!errmsg)
1520 return FALSE;
1521 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
1522 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
1523 *allocated = TRUE;
1524 return TRUE;
1525 #endif
1527 case Ctrl_W: /* word under cursor */
1528 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1529 if (!errmsg)
1530 return FALSE;
1531 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1532 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1533 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1534 *allocated = TRUE;
1535 return TRUE;
1537 case '_': /* black hole: always empty */
1538 *argp = (char_u *)"";
1539 return TRUE;
1542 return FALSE;
1546 * Paste a yank register into the command line.
1547 * Only for non-special registers.
1548 * Used by CTRL-R command in command-line mode
1549 * insert_reg() can't be used here, because special characters from the
1550 * register contents will be interpreted as commands.
1552 * return FAIL for failure, OK otherwise
1555 cmdline_paste_reg(regname, literally, remcr)
1556 int regname;
1557 int literally; /* Insert text literally instead of "as typed" */
1558 int remcr; /* don't add trailing CR */
1560 long i;
1562 get_yank_register(regname, FALSE);
1563 if (y_current->y_array == NULL)
1564 return FAIL;
1566 for (i = 0; i < y_current->y_size; ++i)
1568 cmdline_paste_str(y_current->y_array[i], literally);
1570 /* Insert ^M between lines and after last line if type is MLINE.
1571 * Don't do this when "remcr" is TRUE and the next line is empty. */
1572 if (y_current->y_type == MLINE
1573 || (i < y_current->y_size - 1
1574 && !(remcr
1575 && i == y_current->y_size - 2
1576 && *y_current->y_array[i + 1] == NUL)))
1577 cmdline_paste_str((char_u *)"\r", literally);
1579 /* Check for CTRL-C, in case someone tries to paste a few thousand
1580 * lines and gets bored. */
1581 ui_breakcheck();
1582 if (got_int)
1583 return FAIL;
1585 return OK;
1588 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
1590 * Adjust the register name pointed to with "rp" for the clipboard being
1591 * used always and the clipboard being available.
1593 void
1594 adjust_clip_reg(rp)
1595 int *rp;
1597 /* If no reg. specified, and "unnamed" is in 'clipboard', use '*' reg. */
1598 if (*rp == 0 && clip_unnamed)
1599 *rp = '*';
1600 if (!clip_star.available && *rp == '*')
1601 *rp = 0;
1602 if (!clip_plus.available && *rp == '+')
1603 *rp = 0;
1605 #endif
1608 * op_delete - handle a delete operation
1610 * return FAIL if undo failed, OK otherwise.
1613 op_delete(oap)
1614 oparg_T *oap;
1616 int n;
1617 linenr_T lnum;
1618 char_u *ptr;
1619 #ifdef FEAT_VISUAL
1620 char_u *newp, *oldp;
1621 struct block_def bd;
1622 #endif
1623 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1624 int did_yank = FALSE;
1626 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1627 return OK;
1629 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1630 if (oap->empty)
1631 return u_save_cursor();
1633 if (!curbuf->b_p_ma)
1635 EMSG(_(e_modifiable));
1636 return FAIL;
1639 #ifdef FEAT_CLIPBOARD
1640 adjust_clip_reg(&oap->regname);
1641 #endif
1643 #ifdef FEAT_MBYTE
1644 if (has_mbyte)
1645 mb_adjust_opend(oap);
1646 #endif
1649 * Imitate the strange Vi behaviour: If the delete spans more than one line
1650 * and motion_type == MCHAR and the result is a blank line, make the delete
1651 * linewise. Don't do this for the change command or Visual mode.
1653 if ( oap->motion_type == MCHAR
1654 #ifdef FEAT_VISUAL
1655 && !oap->is_VIsual
1656 && !oap->block_mode
1657 #endif
1658 && oap->line_count > 1
1659 && oap->op_type == OP_DELETE)
1661 ptr = ml_get(oap->end.lnum) + oap->end.col + oap->inclusive;
1662 ptr = skipwhite(ptr);
1663 if (*ptr == NUL && inindent(0))
1664 oap->motion_type = MLINE;
1668 * Check for trying to delete (e.g. "D") in an empty line.
1669 * Note: For the change operator it is ok.
1671 if ( oap->motion_type == MCHAR
1672 && oap->line_count == 1
1673 && oap->op_type == OP_DELETE
1674 && *ml_get(oap->start.lnum) == NUL)
1677 * It's an error to operate on an empty region, when 'E' included in
1678 * 'cpoptions' (Vi compatible).
1680 #ifdef FEAT_VIRTUALEDIT
1681 if (virtual_op)
1682 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1683 * marks as if it happened. */
1684 goto setmarks;
1685 #endif
1686 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1687 beep_flush();
1688 return OK;
1692 * Do a yank of whatever we're about to delete.
1693 * If a yank register was specified, put the deleted text into that register.
1694 * For the black hole register '_' don't yank anything.
1696 if (oap->regname != '_')
1698 if (oap->regname != 0)
1700 /* check for read-only register */
1701 if (!valid_yank_reg(oap->regname, TRUE))
1703 beep_flush();
1704 return OK;
1706 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1707 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1708 did_yank = TRUE;
1712 * Put deleted text into register 1 and shift number registers if the
1713 * delete contains a line break, or when a regname has been specified.
1715 if (oap->regname != 0 || oap->motion_type == MLINE
1716 || oap->line_count > 1 || oap->use_reg_one)
1718 y_current = &y_regs[9];
1719 free_yank_all(); /* free register nine */
1720 for (n = 9; n > 1; --n)
1721 y_regs[n] = y_regs[n - 1];
1722 y_previous = y_current = &y_regs[1];
1723 y_regs[1].y_array = NULL; /* set register one to empty */
1724 if (op_yank(oap, TRUE, FALSE) == OK)
1725 did_yank = TRUE;
1728 /* Yank into small delete register when no register specified and the
1729 * delete is within one line. */
1730 if (oap->regname == 0 && oap->motion_type != MLINE
1731 && oap->line_count == 1)
1733 oap->regname = '-';
1734 get_yank_register(oap->regname, TRUE);
1735 if (op_yank(oap, TRUE, FALSE) == OK)
1736 did_yank = TRUE;
1737 oap->regname = 0;
1741 * If there's too much stuff to fit in the yank register, then get a
1742 * confirmation before doing the delete. This is crude, but simple.
1743 * And it avoids doing a delete of something we can't put back if we
1744 * want.
1746 if (!did_yank)
1748 int msg_silent_save = msg_silent;
1750 msg_silent = 0; /* must display the prompt */
1751 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1752 msg_silent = msg_silent_save;
1753 if (n != 'y')
1755 EMSG(_(e_abort));
1756 return FAIL;
1761 #ifdef FEAT_VISUAL
1763 * block mode delete
1765 if (oap->block_mode)
1767 if (u_save((linenr_T)(oap->start.lnum - 1),
1768 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1769 return FAIL;
1771 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1773 block_prep(oap, &bd, lnum, TRUE);
1774 if (bd.textlen == 0) /* nothing to delete */
1775 continue;
1777 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1778 if (lnum == curwin->w_cursor.lnum)
1780 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1781 # ifdef FEAT_VIRTUALEDIT
1782 curwin->w_cursor.coladd = 0;
1783 # endif
1786 /* n == number of chars deleted
1787 * If we delete a TAB, it may be replaced by several characters.
1788 * Thus the number of characters may increase!
1790 n = bd.textlen - bd.startspaces - bd.endspaces;
1791 oldp = ml_get(lnum);
1792 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1793 if (newp == NULL)
1794 continue;
1795 /* copy up to deleted part */
1796 mch_memmove(newp, oldp, (size_t)bd.textcol);
1797 /* insert spaces */
1798 copy_spaces(newp + bd.textcol,
1799 (size_t)(bd.startspaces + bd.endspaces));
1800 /* copy the part after the deleted part */
1801 oldp += bd.textcol + bd.textlen;
1802 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
1803 /* replace the line */
1804 ml_replace(lnum, newp, FALSE);
1807 check_cursor_col();
1808 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1809 oap->end.lnum + 1, 0L);
1810 oap->line_count = 0; /* no lines deleted */
1812 else
1813 #endif
1814 if (oap->motion_type == MLINE)
1816 if (oap->op_type == OP_CHANGE)
1818 /* Delete the lines except the first one. Temporarily move the
1819 * cursor to the next line. Save the current line number, if the
1820 * last line is deleted it may be changed.
1822 if (oap->line_count > 1)
1824 lnum = curwin->w_cursor.lnum;
1825 ++curwin->w_cursor.lnum;
1826 del_lines((long)(oap->line_count - 1), TRUE);
1827 curwin->w_cursor.lnum = lnum;
1829 if (u_save_cursor() == FAIL)
1830 return FAIL;
1831 if (curbuf->b_p_ai) /* don't delete indent */
1833 beginline(BL_WHITE); /* cursor on first non-white */
1834 did_ai = TRUE; /* delete the indent when ESC hit */
1835 ai_col = curwin->w_cursor.col;
1837 else
1838 beginline(0); /* cursor in column 0 */
1839 truncate_line(FALSE); /* delete the rest of the line */
1840 /* leave cursor past last char in line */
1841 if (oap->line_count > 1)
1842 u_clearline(); /* "U" command not possible after "2cc" */
1844 else
1846 del_lines(oap->line_count, TRUE);
1847 beginline(BL_WHITE | BL_FIX);
1848 u_clearline(); /* "U" command not possible after "dd" */
1851 else
1853 #ifdef FEAT_VIRTUALEDIT
1854 if (virtual_op)
1856 int endcol = 0;
1858 /* For virtualedit: break the tabs that are partly included. */
1859 if (gchar_pos(&oap->start) == '\t')
1861 if (u_save_cursor() == FAIL) /* save first line for undo */
1862 return FAIL;
1863 if (oap->line_count == 1)
1864 endcol = getviscol2(oap->end.col, oap->end.coladd);
1865 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1866 oap->start = curwin->w_cursor;
1867 if (oap->line_count == 1)
1869 coladvance(endcol);
1870 oap->end.col = curwin->w_cursor.col;
1871 oap->end.coladd = curwin->w_cursor.coladd;
1872 curwin->w_cursor = oap->start;
1876 /* Break a tab only when it's included in the area. */
1877 if (gchar_pos(&oap->end) == '\t'
1878 && (int)oap->end.coladd < oap->inclusive)
1880 /* save last line for undo */
1881 if (u_save((linenr_T)(oap->end.lnum - 1),
1882 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1883 return FAIL;
1884 curwin->w_cursor = oap->end;
1885 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1886 oap->end = curwin->w_cursor;
1887 curwin->w_cursor = oap->start;
1890 #endif
1892 if (oap->line_count == 1) /* delete characters within one line */
1894 if (u_save_cursor() == FAIL) /* save line for undo */
1895 return FAIL;
1897 /* if 'cpoptions' contains '$', display '$' at end of change */
1898 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
1899 && oap->op_type == OP_CHANGE
1900 && oap->end.lnum == curwin->w_cursor.lnum
1901 #ifdef FEAT_VISUAL
1902 && !oap->is_VIsual
1903 #endif
1905 display_dollar(oap->end.col - !oap->inclusive);
1907 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1909 #ifdef FEAT_VIRTUALEDIT
1910 if (virtual_op)
1912 /* fix up things for virtualedit-delete:
1913 * break the tabs which are going to get in our way
1915 char_u *curline = ml_get_curline();
1916 int len = (int)STRLEN(curline);
1918 if (oap->end.coladd != 0
1919 && (int)oap->end.col >= len - 1
1920 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1921 n++;
1922 /* Delete at least one char (e.g, when on a control char). */
1923 if (n == 0 && oap->start.coladd != oap->end.coladd)
1924 n = 1;
1926 /* When deleted a char in the line, reset coladd. */
1927 if (gchar_cursor() != NUL)
1928 curwin->w_cursor.coladd = 0;
1930 #endif
1931 (void)del_bytes((long)n, !virtual_op, oap->op_type == OP_DELETE
1932 #ifdef FEAT_VISUAL
1933 && !oap->is_VIsual
1934 #endif
1937 else /* delete characters between lines */
1939 pos_T curpos;
1941 /* save deleted and changed lines for undo */
1942 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1943 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1944 return FAIL;
1946 truncate_line(TRUE); /* delete from cursor to end of line */
1948 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1949 ++curwin->w_cursor.lnum;
1950 del_lines((long)(oap->line_count - 2), FALSE);
1952 /* delete from start of line until op_end */
1953 curwin->w_cursor.col = 0;
1954 (void)del_bytes((long)(oap->end.col + 1 - !oap->inclusive),
1955 !virtual_op, oap->op_type == OP_DELETE
1956 #ifdef FEAT_VISUAL
1957 && !oap->is_VIsual
1958 #endif
1960 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
1962 (void)do_join(FALSE);
1966 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
1968 #ifdef FEAT_VIRTUALEDIT
1969 setmarks:
1970 #endif
1971 #ifdef FEAT_VISUAL
1972 if (oap->block_mode)
1974 curbuf->b_op_end.lnum = oap->end.lnum;
1975 curbuf->b_op_end.col = oap->start.col;
1977 else
1978 #endif
1979 curbuf->b_op_end = oap->start;
1980 curbuf->b_op_start = oap->start;
1982 return OK;
1985 #ifdef FEAT_MBYTE
1987 * Adjust end of operating area for ending on a multi-byte character.
1988 * Used for deletion.
1990 static void
1991 mb_adjust_opend(oap)
1992 oparg_T *oap;
1994 char_u *p;
1996 if (oap->inclusive)
1998 p = ml_get(oap->end.lnum);
1999 oap->end.col += mb_tail_off(p, p + oap->end.col);
2002 #endif
2004 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2006 * Replace a whole area with one character.
2009 op_replace(oap, c)
2010 oparg_T *oap;
2011 int c;
2013 int n, numc;
2014 #ifdef FEAT_MBYTE
2015 int num_chars;
2016 #endif
2017 char_u *newp, *oldp;
2018 size_t oldlen;
2019 struct block_def bd;
2021 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2022 return OK; /* nothing to do */
2024 #ifdef FEAT_MBYTE
2025 if (has_mbyte)
2026 mb_adjust_opend(oap);
2027 #endif
2029 if (u_save((linenr_T)(oap->start.lnum - 1),
2030 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2031 return FAIL;
2034 * block mode replace
2036 if (oap->block_mode)
2038 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2039 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2041 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
2042 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2043 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2044 continue; /* nothing to replace */
2046 /* n == number of extra chars required
2047 * If we split a TAB, it may be replaced by several characters.
2048 * Thus the number of characters may increase!
2050 #ifdef FEAT_VIRTUALEDIT
2051 /* If the range starts in virtual space, count the initial
2052 * coladd offset as part of "startspaces" */
2053 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2055 pos_T vpos;
2057 vpos.lnum = curwin->w_cursor.lnum;
2058 getvpos(&vpos, oap->start_vcol);
2059 bd.startspaces += vpos.coladd;
2060 n = bd.startspaces;
2062 else
2063 #endif
2064 /* allow for pre spaces */
2065 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2067 /* allow for post spp */
2068 n += (bd.endspaces
2069 #ifdef FEAT_VIRTUALEDIT
2070 && !bd.is_oneChar
2071 #endif
2072 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2073 /* Figure out how many characters to replace. */
2074 numc = oap->end_vcol - oap->start_vcol + 1;
2075 if (bd.is_short && (!virtual_op || bd.is_MAX))
2076 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2078 #ifdef FEAT_MBYTE
2079 /* A double-wide character can be replaced only up to half the
2080 * times. */
2081 if ((*mb_char2cells)(c) > 1)
2083 if ((numc & 1) && !bd.is_short)
2085 ++bd.endspaces;
2086 ++n;
2088 numc = numc / 2;
2091 /* Compute bytes needed, move character count to num_chars. */
2092 num_chars = numc;
2093 numc *= (*mb_char2len)(c);
2094 #endif
2095 /* oldlen includes textlen, so don't double count */
2096 n += numc - bd.textlen;
2098 oldp = ml_get_curline();
2099 oldlen = STRLEN(oldp);
2100 newp = alloc_check((unsigned)oldlen + 1 + n);
2101 if (newp == NULL)
2102 continue;
2103 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2104 /* copy up to deleted part */
2105 mch_memmove(newp, oldp, (size_t)bd.textcol);
2106 oldp += bd.textcol + bd.textlen;
2107 /* insert pre-spaces */
2108 copy_spaces(newp + bd.textcol, (size_t)bd.startspaces);
2109 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
2110 #ifdef FEAT_MBYTE
2111 if (has_mbyte)
2113 n = (int)STRLEN(newp);
2114 while (--num_chars >= 0)
2115 n += (*mb_char2bytes)(c, newp + n);
2117 else
2118 #endif
2119 copy_chars(newp + STRLEN(newp), (size_t)numc, c);
2120 if (!bd.is_short)
2122 /* insert post-spaces */
2123 copy_spaces(newp + STRLEN(newp), (size_t)bd.endspaces);
2124 /* copy the part after the changed part */
2125 STRMOVE(newp + STRLEN(newp), oldp);
2127 /* replace the line */
2128 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
2131 else
2134 * MCHAR and MLINE motion replace.
2136 if (oap->motion_type == MLINE)
2138 oap->start.col = 0;
2139 curwin->w_cursor.col = 0;
2140 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2141 if (oap->end.col)
2142 --oap->end.col;
2144 else if (!oap->inclusive)
2145 dec(&(oap->end));
2147 while (ltoreq(curwin->w_cursor, oap->end))
2149 n = gchar_cursor();
2150 if (n != NUL)
2152 #ifdef FEAT_MBYTE
2153 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2155 /* This is slow, but it handles replacing a single-byte
2156 * with a multi-byte and the other way around. */
2157 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
2158 n = State;
2159 State = REPLACE;
2160 ins_char(c);
2161 State = n;
2162 /* Backup to the replaced character. */
2163 dec_cursor();
2165 else
2166 #endif
2168 #ifdef FEAT_VIRTUALEDIT
2169 if (n == TAB)
2171 int end_vcol = 0;
2173 if (curwin->w_cursor.lnum == oap->end.lnum)
2175 /* oap->end has to be recalculated when
2176 * the tab breaks */
2177 end_vcol = getviscol2(oap->end.col,
2178 oap->end.coladd);
2180 coladvance_force(getviscol());
2181 if (curwin->w_cursor.lnum == oap->end.lnum)
2182 getvpos(&oap->end, end_vcol);
2184 #endif
2185 pchar(curwin->w_cursor, c);
2188 #ifdef FEAT_VIRTUALEDIT
2189 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2191 int virtcols = oap->end.coladd;
2193 if (curwin->w_cursor.lnum == oap->start.lnum
2194 && oap->start.col == oap->end.col && oap->start.coladd)
2195 virtcols -= oap->start.coladd;
2197 /* oap->end has been trimmed so it's effectively inclusive;
2198 * as a result an extra +1 must be counted so we don't
2199 * trample the NUL byte. */
2200 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2201 curwin->w_cursor.col -= (virtcols + 1);
2202 for (; virtcols >= 0; virtcols--)
2204 pchar(curwin->w_cursor, c);
2205 if (inc(&curwin->w_cursor) == -1)
2206 break;
2209 #endif
2211 /* Advance to next character, stop at the end of the file. */
2212 if (inc_cursor() == -1)
2213 break;
2217 curwin->w_cursor = oap->start;
2218 check_cursor();
2219 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2221 /* Set "'[" and "']" marks. */
2222 curbuf->b_op_start = oap->start;
2223 curbuf->b_op_end = oap->end;
2225 return OK;
2227 #endif
2229 static int swapchars __ARGS((int op_type, pos_T *pos, int length));
2232 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2234 void
2235 op_tilde(oap)
2236 oparg_T *oap;
2238 pos_T pos;
2239 #ifdef FEAT_VISUAL
2240 struct block_def bd;
2241 #endif
2242 int did_change = FALSE;
2244 if (u_save((linenr_T)(oap->start.lnum - 1),
2245 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2246 return;
2248 pos = oap->start;
2249 #ifdef FEAT_VISUAL
2250 if (oap->block_mode) /* Visual block mode */
2252 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2254 int one_change;
2256 block_prep(oap, &bd, pos.lnum, FALSE);
2257 pos.col = bd.textcol;
2258 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2259 did_change |= one_change;
2261 # ifdef FEAT_NETBEANS_INTG
2262 if (usingNetbeans && one_change)
2264 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2266 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2267 (long)bd.textlen);
2268 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
2269 &ptr[bd.textcol], bd.textlen);
2271 # endif
2273 if (did_change)
2274 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2276 else /* not block mode */
2277 #endif
2279 if (oap->motion_type == MLINE)
2281 oap->start.col = 0;
2282 pos.col = 0;
2283 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2284 if (oap->end.col)
2285 --oap->end.col;
2287 else if (!oap->inclusive)
2288 dec(&(oap->end));
2290 if (pos.lnum == oap->end.lnum)
2291 did_change = swapchars(oap->op_type, &pos,
2292 oap->end.col - pos.col + 1);
2293 else
2294 for (;;)
2296 did_change |= swapchars(oap->op_type, &pos,
2297 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2298 (int)STRLEN(ml_get_pos(&pos)));
2299 if (ltoreq(oap->end, pos) || inc(&pos) == -1)
2300 break;
2302 if (did_change)
2304 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2305 0L);
2306 #ifdef FEAT_NETBEANS_INTG
2307 if (usingNetbeans && did_change)
2309 char_u *ptr;
2310 int count;
2312 pos = oap->start;
2313 while (pos.lnum < oap->end.lnum)
2315 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2316 count = (int)STRLEN(ptr) - pos.col;
2317 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
2318 netbeans_inserted(curbuf, pos.lnum, pos.col,
2319 &ptr[pos.col], count);
2320 pos.col = 0;
2321 pos.lnum++;
2323 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2324 count = oap->end.col - pos.col + 1;
2325 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
2326 netbeans_inserted(curbuf, pos.lnum, pos.col,
2327 &ptr[pos.col], count);
2329 #endif
2333 #ifdef FEAT_VISUAL
2334 if (!did_change && oap->is_VIsual)
2335 /* No change: need to remove the Visual selection */
2336 redraw_curbuf_later(INVERTED);
2337 #endif
2340 * Set '[ and '] marks.
2342 curbuf->b_op_start = oap->start;
2343 curbuf->b_op_end = oap->end;
2345 if (oap->line_count > p_report)
2347 if (oap->line_count == 1)
2348 MSG(_("1 line changed"));
2349 else
2350 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2355 * Invoke swapchar() on "length" bytes at position "pos".
2356 * "pos" is advanced to just after the changed characters.
2357 * "length" is rounded up to include the whole last multi-byte character.
2358 * Also works correctly when the number of bytes changes.
2359 * Returns TRUE if some character was changed.
2361 static int
2362 swapchars(op_type, pos, length)
2363 int op_type;
2364 pos_T *pos;
2365 int length;
2367 int todo;
2368 int did_change = 0;
2370 for (todo = length; todo > 0; --todo)
2372 # ifdef FEAT_MBYTE
2373 if (has_mbyte)
2374 /* we're counting bytes, not characters */
2375 todo -= (*mb_ptr2len)(ml_get_pos(pos)) - 1;
2376 # endif
2377 did_change |= swapchar(op_type, pos);
2378 if (inc(pos) == -1) /* at end of file */
2379 break;
2381 return did_change;
2385 * If op_type == OP_UPPER: make uppercase,
2386 * if op_type == OP_LOWER: make lowercase,
2387 * if op_type == OP_ROT13: do rot13 encoding,
2388 * else swap case of character at 'pos'
2389 * returns TRUE when something actually changed.
2392 swapchar(op_type, pos)
2393 int op_type;
2394 pos_T *pos;
2396 int c;
2397 int nc;
2399 c = gchar_pos(pos);
2401 /* Only do rot13 encoding for ASCII characters. */
2402 if (c >= 0x80 && op_type == OP_ROT13)
2403 return FALSE;
2405 #ifdef FEAT_MBYTE
2406 if (op_type == OP_UPPER && c == 0xdf
2407 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
2409 pos_T sp = curwin->w_cursor;
2411 /* Special handling of German sharp s: change to "SS". */
2412 curwin->w_cursor = *pos;
2413 del_char(FALSE);
2414 ins_char('S');
2415 ins_char('S');
2416 curwin->w_cursor = sp;
2417 inc(pos);
2420 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2421 return FALSE;
2422 #endif
2423 nc = c;
2424 if (MB_ISLOWER(c))
2426 if (op_type == OP_ROT13)
2427 nc = ROT13(c, 'a');
2428 else if (op_type != OP_LOWER)
2429 nc = MB_TOUPPER(c);
2431 else if (MB_ISUPPER(c))
2433 if (op_type == OP_ROT13)
2434 nc = ROT13(c, 'A');
2435 else if (op_type != OP_UPPER)
2436 nc = MB_TOLOWER(c);
2438 if (nc != c)
2440 #ifdef FEAT_MBYTE
2441 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2443 pos_T sp = curwin->w_cursor;
2445 curwin->w_cursor = *pos;
2446 del_char(FALSE);
2447 ins_char(nc);
2448 curwin->w_cursor = sp;
2450 else
2451 #endif
2452 pchar(*pos, nc);
2453 return TRUE;
2455 return FALSE;
2458 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2460 * op_insert - Insert and append operators for Visual mode.
2462 void
2463 op_insert(oap, count1)
2464 oparg_T *oap;
2465 long count1;
2467 long ins_len, pre_textlen = 0;
2468 char_u *firstline, *ins_text;
2469 struct block_def bd;
2470 int i;
2472 /* edit() changes this - record it for OP_APPEND */
2473 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2475 /* vis block is still marked. Get rid of it now. */
2476 curwin->w_cursor.lnum = oap->start.lnum;
2477 update_screen(INVERTED);
2479 if (oap->block_mode)
2481 #ifdef FEAT_VIRTUALEDIT
2482 /* When 'virtualedit' is used, need to insert the extra spaces before
2483 * doing block_prep(). When only "block" is used, virtual edit is
2484 * already disabled, but still need it when calling
2485 * coladvance_force(). */
2486 if (curwin->w_cursor.coladd > 0)
2488 int old_ve_flags = ve_flags;
2490 ve_flags = VE_ALL;
2491 if (u_save_cursor() == FAIL)
2492 return;
2493 coladvance_force(oap->op_type == OP_APPEND
2494 ? oap->end_vcol + 1 : getviscol());
2495 if (oap->op_type == OP_APPEND)
2496 --curwin->w_cursor.col;
2497 ve_flags = old_ve_flags;
2499 #endif
2500 /* Get the info about the block before entering the text */
2501 block_prep(oap, &bd, oap->start.lnum, TRUE);
2502 firstline = ml_get(oap->start.lnum) + bd.textcol;
2503 if (oap->op_type == OP_APPEND)
2504 firstline += bd.textlen;
2505 pre_textlen = (long)STRLEN(firstline);
2508 if (oap->op_type == OP_APPEND)
2510 if (oap->block_mode
2511 #ifdef FEAT_VIRTUALEDIT
2512 && curwin->w_cursor.coladd == 0
2513 #endif
2516 /* Move the cursor to the character right of the block. */
2517 curwin->w_set_curswant = TRUE;
2518 while (*ml_get_cursor() != NUL
2519 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2520 ++curwin->w_cursor.col;
2521 if (bd.is_short && !bd.is_MAX)
2523 /* First line was too short, make it longer and adjust the
2524 * values in "bd". */
2525 if (u_save_cursor() == FAIL)
2526 return;
2527 for (i = 0; i < bd.endspaces; ++i)
2528 ins_char(' ');
2529 bd.textlen += bd.endspaces;
2532 else
2534 curwin->w_cursor = oap->end;
2535 check_cursor_col();
2537 /* Works just like an 'i'nsert on the next character. */
2538 if (!lineempty(curwin->w_cursor.lnum)
2539 && oap->start_vcol != oap->end_vcol)
2540 inc_cursor();
2544 edit(NUL, FALSE, (linenr_T)count1);
2546 /* If user has moved off this line, we don't know what to do, so do
2547 * nothing.
2548 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2549 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
2550 return;
2552 if (oap->block_mode)
2554 struct block_def bd2;
2557 * Spaces and tabs in the indent may have changed to other spaces and
2558 * tabs. Get the starting column again and correct the length.
2559 * Don't do this when "$" used, end-of-line will have changed.
2561 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2562 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2564 if (oap->op_type == OP_APPEND)
2566 pre_textlen += bd2.textlen - bd.textlen;
2567 if (bd2.endspaces)
2568 --bd2.textlen;
2570 bd.textcol = bd2.textcol;
2571 bd.textlen = bd2.textlen;
2575 * Subsequent calls to ml_get() flush the firstline data - take a
2576 * copy of the required string.
2578 firstline = ml_get(oap->start.lnum) + bd.textcol;
2579 if (oap->op_type == OP_APPEND)
2580 firstline += bd.textlen;
2581 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
2583 ins_text = vim_strnsave(firstline, (int)ins_len);
2584 if (ins_text != NULL)
2586 /* block handled here */
2587 if (u_save(oap->start.lnum,
2588 (linenr_T)(oap->end.lnum + 1)) == OK)
2589 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2590 &bd);
2592 curwin->w_cursor.col = oap->start.col;
2593 check_cursor();
2594 vim_free(ins_text);
2599 #endif
2602 * op_change - handle a change operation
2604 * return TRUE if edit() returns because of a CTRL-O command
2607 op_change(oap)
2608 oparg_T *oap;
2610 colnr_T l;
2611 int retval;
2612 #ifdef FEAT_VISUALEXTRA
2613 long offset;
2614 linenr_T linenr;
2615 long ins_len;
2616 long pre_textlen = 0;
2617 long pre_indent = 0;
2618 char_u *firstline;
2619 char_u *ins_text, *newp, *oldp;
2620 struct block_def bd;
2621 #endif
2623 l = oap->start.col;
2624 if (oap->motion_type == MLINE)
2626 l = 0;
2627 #ifdef FEAT_SMARTINDENT
2628 if (!p_paste && curbuf->b_p_si
2629 # ifdef FEAT_CINDENT
2630 && !curbuf->b_p_cin
2631 # endif
2633 can_si = TRUE; /* It's like opening a new line, do si */
2634 #endif
2637 /* First delete the text in the region. In an empty buffer only need to
2638 * save for undo */
2639 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2641 if (u_save_cursor() == FAIL)
2642 return FALSE;
2644 else if (op_delete(oap) == FAIL)
2645 return FALSE;
2647 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
2648 && !virtual_op)
2649 inc_cursor();
2651 #ifdef FEAT_VISUALEXTRA
2652 /* check for still on same line (<CR> in inserted text meaningless) */
2653 /* skip blank lines too */
2654 if (oap->block_mode)
2656 # ifdef FEAT_VIRTUALEDIT
2657 /* Add spaces before getting the current line length. */
2658 if (virtual_op && (curwin->w_cursor.coladd > 0
2659 || gchar_cursor() == NUL))
2660 coladvance_force(getviscol());
2661 # endif
2662 firstline = ml_get(oap->start.lnum);
2663 pre_textlen = (long)STRLEN(firstline);
2664 pre_indent = (long)(skipwhite(firstline) - firstline);
2665 bd.textcol = curwin->w_cursor.col;
2667 #endif
2669 #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2670 if (oap->motion_type == MLINE)
2671 fix_indent();
2672 #endif
2674 retval = edit(NUL, FALSE, (linenr_T)1);
2676 #ifdef FEAT_VISUALEXTRA
2678 * In Visual block mode, handle copying the new text to all lines of the
2679 * block.
2680 * Don't repeat the insert when Insert mode ended with CTRL-C.
2682 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
2684 /* Auto-indenting may have changed the indent. If the cursor was past
2685 * the indent, exclude that indent change from the inserted text. */
2686 firstline = ml_get(oap->start.lnum);
2687 if (bd.textcol > (colnr_T)pre_indent)
2689 long new_indent = (long)(skipwhite(firstline) - firstline);
2691 pre_textlen += new_indent - pre_indent;
2692 bd.textcol += new_indent - pre_indent;
2695 ins_len = (long)STRLEN(firstline) - pre_textlen;
2696 if (ins_len > 0)
2698 /* Subsequent calls to ml_get() flush the firstline data - take a
2699 * copy of the inserted text. */
2700 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2702 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
2703 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2704 linenr++)
2706 block_prep(oap, &bd, linenr, TRUE);
2707 if (!bd.is_short || virtual_op)
2709 # ifdef FEAT_VIRTUALEDIT
2710 pos_T vpos;
2712 /* If the block starts in virtual space, count the
2713 * initial coladd offset as part of "startspaces" */
2714 if (bd.is_short)
2716 vpos.lnum = linenr;
2717 (void)getvpos(&vpos, oap->start_vcol);
2719 else
2720 vpos.coladd = 0;
2721 # endif
2722 oldp = ml_get(linenr);
2723 newp = alloc_check((unsigned)(STRLEN(oldp)
2724 # ifdef FEAT_VIRTUALEDIT
2725 + vpos.coladd
2726 # endif
2727 + ins_len + 1));
2728 if (newp == NULL)
2729 continue;
2730 /* copy up to block start */
2731 mch_memmove(newp, oldp, (size_t)bd.textcol);
2732 offset = bd.textcol;
2733 # ifdef FEAT_VIRTUALEDIT
2734 copy_spaces(newp + offset, (size_t)vpos.coladd);
2735 offset += vpos.coladd;
2736 # endif
2737 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2738 offset += ins_len;
2739 oldp += bd.textcol;
2740 STRMOVE(newp + offset, oldp);
2741 ml_replace(linenr, newp, FALSE);
2744 check_cursor();
2746 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2748 vim_free(ins_text);
2751 #endif
2753 return retval;
2757 * set all the yank registers to empty (called from main())
2759 void
2760 init_yank()
2762 int i;
2764 for (i = 0; i < NUM_REGISTERS; ++i)
2765 y_regs[i].y_array = NULL;
2768 #if defined(EXITFREE) || defined(PROTO)
2769 void
2770 clear_registers()
2772 int i;
2774 for (i = 0; i < NUM_REGISTERS; ++i)
2776 y_current = &y_regs[i];
2777 if (y_current->y_array != NULL)
2778 free_yank_all();
2781 #endif
2784 * Free "n" lines from the current yank register.
2785 * Called for normal freeing and in case of error.
2787 static void
2788 free_yank(n)
2789 long n;
2791 if (y_current->y_array != NULL)
2793 long i;
2795 for (i = n; --i >= 0; )
2797 #ifdef AMIGA /* only for very slow machines */
2798 if ((i & 1023) == 1023) /* this may take a while */
2801 * This message should never cause a hit-return message.
2802 * Overwrite this message with any next message.
2804 ++no_wait_return;
2805 smsg((char_u *)_("freeing %ld lines"), i + 1);
2806 --no_wait_return;
2807 msg_didout = FALSE;
2808 msg_col = 0;
2810 #endif
2811 vim_free(y_current->y_array[i]);
2813 vim_free(y_current->y_array);
2814 y_current->y_array = NULL;
2815 #ifdef AMIGA
2816 if (n >= 1000)
2817 MSG("");
2818 #endif
2822 static void
2823 free_yank_all()
2825 free_yank(y_current->y_size);
2829 * Yank the text between "oap->start" and "oap->end" into a yank register.
2830 * If we are to append (uppercase register), we first yank into a new yank
2831 * register and then concatenate the old and the new one (so we keep the old
2832 * one in case of out-of-memory).
2834 * return FAIL for failure, OK otherwise
2837 op_yank(oap, deleting, mess)
2838 oparg_T *oap;
2839 int deleting;
2840 int mess;
2842 long y_idx; /* index in y_array[] */
2843 struct yankreg *curr; /* copy of y_current */
2844 struct yankreg newreg; /* new yank register when appending */
2845 char_u **new_ptr;
2846 linenr_T lnum; /* current line number */
2847 long j;
2848 int yanktype = oap->motion_type;
2849 long yanklines = oap->line_count;
2850 linenr_T yankendlnum = oap->end.lnum;
2851 char_u *p;
2852 char_u *pnew;
2853 struct block_def bd;
2855 /* check for read-only register */
2856 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2858 beep_flush();
2859 return FAIL;
2861 if (oap->regname == '_') /* black hole: nothing to do */
2862 return OK;
2864 #ifdef FEAT_CLIPBOARD
2865 if (!clip_star.available && oap->regname == '*')
2866 oap->regname = 0;
2867 else if (!clip_plus.available && oap->regname == '+')
2868 oap->regname = 0;
2869 #endif
2871 if (!deleting) /* op_delete() already set y_current */
2872 get_yank_register(oap->regname, TRUE);
2874 curr = y_current;
2875 /* append to existing contents */
2876 if (y_append && y_current->y_array != NULL)
2877 y_current = &newreg;
2878 else
2879 free_yank_all(); /* free previously yanked lines */
2882 * If the cursor was in column 1 before and after the movement, and the
2883 * operator is not inclusive, the yank is always linewise.
2885 if ( oap->motion_type == MCHAR
2886 && oap->start.col == 0
2887 && !oap->inclusive
2888 #ifdef FEAT_VISUAL
2889 && (!oap->is_VIsual || *p_sel == 'o')
2890 && !oap->block_mode
2891 #endif
2892 && oap->end.col == 0
2893 && yanklines > 1)
2895 yanktype = MLINE;
2896 --yankendlnum;
2897 --yanklines;
2900 y_current->y_size = yanklines;
2901 y_current->y_type = yanktype; /* set the yank register type */
2902 #ifdef FEAT_VISUAL
2903 y_current->y_width = 0;
2904 #endif
2905 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
2906 yanklines), TRUE);
2908 if (y_current->y_array == NULL)
2910 y_current = curr;
2911 return FAIL;
2914 y_idx = 0;
2915 lnum = oap->start.lnum;
2917 #ifdef FEAT_VISUAL
2918 if (oap->block_mode)
2920 /* Visual block mode */
2921 y_current->y_type = MBLOCK; /* set the yank register type */
2922 y_current->y_width = oap->end_vcol - oap->start_vcol;
2924 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
2925 y_current->y_width--;
2927 #endif
2929 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
2931 switch (y_current->y_type)
2933 #ifdef FEAT_VISUAL
2934 case MBLOCK:
2935 block_prep(oap, &bd, lnum, FALSE);
2936 if (yank_copy_line(&bd, y_idx) == FAIL)
2937 goto fail;
2938 break;
2939 #endif
2941 case MLINE:
2942 if ((y_current->y_array[y_idx] =
2943 vim_strsave(ml_get(lnum))) == NULL)
2944 goto fail;
2945 break;
2947 case MCHAR:
2949 colnr_T startcol = 0, endcol = MAXCOL;
2950 #ifdef FEAT_VIRTUALEDIT
2951 int is_oneChar = FALSE;
2952 colnr_T cs, ce;
2953 #endif
2954 p = ml_get(lnum);
2955 bd.startspaces = 0;
2956 bd.endspaces = 0;
2958 if (lnum == oap->start.lnum)
2960 startcol = oap->start.col;
2961 #ifdef FEAT_VIRTUALEDIT
2962 if (virtual_op)
2964 getvcol(curwin, &oap->start, &cs, NULL, &ce);
2965 if (ce != cs && oap->start.coladd > 0)
2967 /* Part of a tab selected -- but don't
2968 * double-count it. */
2969 bd.startspaces = (ce - cs + 1)
2970 - oap->start.coladd;
2971 startcol++;
2974 #endif
2977 if (lnum == oap->end.lnum)
2979 endcol = oap->end.col;
2980 #ifdef FEAT_VIRTUALEDIT
2981 if (virtual_op)
2983 getvcol(curwin, &oap->end, &cs, NULL, &ce);
2984 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
2985 # ifdef FEAT_MBYTE
2986 /* Don't add space for double-wide
2987 * char; endcol will be on last byte
2988 * of multi-byte char. */
2989 && (*mb_head_off)(p, p + endcol) == 0
2990 # endif
2993 if (oap->start.lnum == oap->end.lnum
2994 && oap->start.col == oap->end.col)
2996 /* Special case: inside a single char */
2997 is_oneChar = TRUE;
2998 bd.startspaces = oap->end.coladd
2999 - oap->start.coladd + oap->inclusive;
3000 endcol = startcol;
3002 else
3004 bd.endspaces = oap->end.coladd
3005 + oap->inclusive;
3006 endcol -= oap->inclusive;
3010 #endif
3012 if (startcol > endcol
3013 #ifdef FEAT_VIRTUALEDIT
3014 || is_oneChar
3015 #endif
3017 bd.textlen = 0;
3018 else
3020 if (endcol == MAXCOL)
3021 endcol = (colnr_T)STRLEN(p);
3022 bd.textlen = endcol - startcol + oap->inclusive;
3024 bd.textstart = p + startcol;
3025 if (yank_copy_line(&bd, y_idx) == FAIL)
3026 goto fail;
3027 break;
3029 /* NOTREACHED */
3033 if (curr != y_current) /* append the new block to the old block */
3035 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3036 (curr->y_size + y_current->y_size)), TRUE);
3037 if (new_ptr == NULL)
3038 goto fail;
3039 for (j = 0; j < curr->y_size; ++j)
3040 new_ptr[j] = curr->y_array[j];
3041 vim_free(curr->y_array);
3042 curr->y_array = new_ptr;
3044 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3045 curr->y_type = MLINE;
3047 /* Concatenate the last line of the old block with the first line of
3048 * the new block, unless being Vi compatible. */
3049 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
3051 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3052 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3053 if (pnew == NULL)
3055 y_idx = y_current->y_size - 1;
3056 goto fail;
3058 STRCPY(pnew, curr->y_array[--j]);
3059 STRCAT(pnew, y_current->y_array[0]);
3060 vim_free(curr->y_array[j]);
3061 vim_free(y_current->y_array[0]);
3062 curr->y_array[j++] = pnew;
3063 y_idx = 1;
3065 else
3066 y_idx = 0;
3067 while (y_idx < y_current->y_size)
3068 curr->y_array[j++] = y_current->y_array[y_idx++];
3069 curr->y_size = j;
3070 vim_free(y_current->y_array);
3071 y_current = curr;
3073 if (mess) /* Display message about yank? */
3075 if (yanktype == MCHAR
3076 #ifdef FEAT_VISUAL
3077 && !oap->block_mode
3078 #endif
3079 && yanklines == 1)
3080 yanklines = 0;
3081 /* Some versions of Vi use ">=" here, some don't... */
3082 if (yanklines > p_report)
3084 /* redisplay now, so message is not deleted */
3085 update_topline_redraw();
3086 if (yanklines == 1)
3088 #ifdef FEAT_VISUAL
3089 if (oap->block_mode)
3090 MSG(_("block of 1 line yanked"));
3091 else
3092 #endif
3093 MSG(_("1 line yanked"));
3095 #ifdef FEAT_VISUAL
3096 else if (oap->block_mode)
3097 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
3098 #endif
3099 else
3100 smsg((char_u *)_("%ld lines yanked"), yanklines);
3105 * Set "'[" and "']" marks.
3107 curbuf->b_op_start = oap->start;
3108 curbuf->b_op_end = oap->end;
3109 if (yanktype == MLINE
3110 #ifdef FEAT_VISUAL
3111 && !oap->block_mode
3112 #endif
3115 curbuf->b_op_start.col = 0;
3116 curbuf->b_op_end.col = MAXCOL;
3119 #ifdef FEAT_CLIPBOARD
3121 * If we were yanking to the '*' register, send result to clipboard.
3122 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3123 * to the '*' register.
3125 if (clip_star.available
3126 && (curr == &(y_regs[STAR_REGISTER])
3127 || (!deleting && oap->regname == 0 && clip_unnamed)))
3129 if (curr != &(y_regs[STAR_REGISTER]))
3130 /* Copy the text from register 0 to the clipboard register. */
3131 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3133 clip_own_selection(&clip_star);
3134 clip_gen_set_selection(&clip_star);
3137 # ifdef FEAT_X11
3139 * If we were yanking to the '+' register, send result to selection.
3140 * Also copy to the '*' register, in case auto-select is off.
3142 else if (clip_plus.available && curr == &(y_regs[PLUS_REGISTER]))
3144 /* No need to copy to * register upon 'unnamed' now - see below */
3145 clip_own_selection(&clip_plus);
3146 clip_gen_set_selection(&clip_plus);
3147 if (!clip_isautosel())
3149 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3150 clip_own_selection(&clip_star);
3151 clip_gen_set_selection(&clip_star);
3154 # endif
3155 #endif
3157 return OK;
3159 fail: /* free the allocated lines */
3160 free_yank(y_idx + 1);
3161 y_current = curr;
3162 return FAIL;
3165 static int
3166 yank_copy_line(bd, y_idx)
3167 struct block_def *bd;
3168 long y_idx;
3170 char_u *pnew;
3172 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3173 == NULL)
3174 return FAIL;
3175 y_current->y_array[y_idx] = pnew;
3176 copy_spaces(pnew, (size_t)bd->startspaces);
3177 pnew += bd->startspaces;
3178 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3179 pnew += bd->textlen;
3180 copy_spaces(pnew, (size_t)bd->endspaces);
3181 pnew += bd->endspaces;
3182 *pnew = NUL;
3183 return OK;
3186 #ifdef FEAT_CLIPBOARD
3188 * Make a copy of the y_current register to register "reg".
3190 static void
3191 copy_yank_reg(reg)
3192 struct yankreg *reg;
3194 struct yankreg *curr = y_current;
3195 long j;
3197 y_current = reg;
3198 free_yank_all();
3199 *y_current = *curr;
3200 y_current->y_array = (char_u **)lalloc_clear(
3201 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3202 if (y_current->y_array == NULL)
3203 y_current->y_size = 0;
3204 else
3205 for (j = 0; j < y_current->y_size; ++j)
3206 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3208 free_yank(j);
3209 y_current->y_size = 0;
3210 break;
3212 y_current = curr;
3214 #endif
3217 * Put contents of register "regname" into the text.
3218 * Caller must check "regname" to be valid!
3219 * "flags": PUT_FIXINDENT make indent look nice
3220 * PUT_CURSEND leave cursor after end of new text
3221 * PUT_LINE force linewise put (":put")
3223 void
3224 do_put(regname, dir, count, flags)
3225 int regname;
3226 int dir; /* BACKWARD for 'P', FORWARD for 'p' */
3227 long count;
3228 int flags;
3230 char_u *ptr;
3231 char_u *newp, *oldp;
3232 int yanklen;
3233 int totlen = 0; /* init for gcc */
3234 linenr_T lnum;
3235 colnr_T col;
3236 long i; /* index in y_array[] */
3237 int y_type;
3238 long y_size;
3239 #ifdef FEAT_VISUAL
3240 int oldlen;
3241 long y_width = 0;
3242 colnr_T vcol;
3243 int delcount;
3244 int incr = 0;
3245 long j;
3246 struct block_def bd;
3247 #endif
3248 char_u **y_array = NULL;
3249 long nr_lines = 0;
3250 pos_T new_cursor;
3251 int indent;
3252 int orig_indent = 0; /* init for gcc */
3253 int indent_diff = 0; /* init for gcc */
3254 int first_indent = TRUE;
3255 int lendiff = 0;
3256 pos_T old_pos;
3257 char_u *insert_string = NULL;
3258 int allocated = FALSE;
3259 long cnt;
3261 #ifdef FEAT_CLIPBOARD
3262 /* Adjust register name for "unnamed" in 'clipboard'. */
3263 adjust_clip_reg(&regname);
3264 (void)may_get_selection(regname);
3265 #endif
3267 if (flags & PUT_FIXINDENT)
3268 orig_indent = get_indent();
3270 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3271 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3274 * Using inserted text works differently, because the register includes
3275 * special characters (newlines, etc.).
3277 if (regname == '.')
3279 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3280 (count == -1 ? 'O' : 'i')), count, FALSE);
3281 /* Putting the text is done later, so can't really move the cursor to
3282 * the next character. Use "l" to simulate it. */
3283 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3284 stuffcharReadbuff('l');
3285 return;
3289 * For special registers '%' (file name), '#' (alternate file name) and
3290 * ':' (last command line), etc. we have to create a fake yank register.
3292 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3294 if (insert_string == NULL)
3295 return;
3298 if (insert_string != NULL)
3300 y_type = MCHAR;
3301 #ifdef FEAT_EVAL
3302 if (regname == '=')
3304 /* For the = register we need to split the string at NL
3305 * characters. */
3306 /* Loop twice: count the number of lines and save them. */
3307 for (;;)
3309 y_size = 0;
3310 ptr = insert_string;
3311 while (ptr != NULL)
3313 if (y_array != NULL)
3314 y_array[y_size] = ptr;
3315 ++y_size;
3316 ptr = vim_strchr(ptr, '\n');
3317 if (ptr != NULL)
3319 if (y_array != NULL)
3320 *ptr = NUL;
3321 ++ptr;
3322 /* A trailing '\n' makes the string linewise */
3323 if (*ptr == NUL)
3325 y_type = MLINE;
3326 break;
3330 if (y_array != NULL)
3331 break;
3332 y_array = (char_u **)alloc((unsigned)
3333 (y_size * sizeof(char_u *)));
3334 if (y_array == NULL)
3335 goto end;
3338 else
3339 #endif
3341 y_size = 1; /* use fake one-line yank register */
3342 y_array = &insert_string;
3345 else
3347 get_yank_register(regname, FALSE);
3349 y_type = y_current->y_type;
3350 #ifdef FEAT_VISUAL
3351 y_width = y_current->y_width;
3352 #endif
3353 y_size = y_current->y_size;
3354 y_array = y_current->y_array;
3357 #ifdef FEAT_VISUAL
3358 if (y_type == MLINE)
3360 if (flags & PUT_LINE_SPLIT)
3362 /* "p" or "P" in Visual mode: split the lines to put the text in
3363 * between. */
3364 if (u_save_cursor() == FAIL)
3365 goto end;
3366 ptr = vim_strsave(ml_get_cursor());
3367 if (ptr == NULL)
3368 goto end;
3369 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3370 vim_free(ptr);
3372 ptr = vim_strnsave(ml_get_curline(), curwin->w_cursor.col);
3373 if (ptr == NULL)
3374 goto end;
3375 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3376 ++nr_lines;
3377 dir = FORWARD;
3379 if (flags & PUT_LINE_FORWARD)
3381 /* Must be "p" for a Visual block, put lines below the block. */
3382 curwin->w_cursor = curbuf->b_visual.vi_end;
3383 dir = FORWARD;
3385 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3386 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3388 #endif
3390 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3391 y_type = MLINE;
3393 if (y_size == 0 || y_array == NULL)
3395 EMSG2(_("E353: Nothing in register %s"),
3396 regname == 0 ? (char_u *)"\"" : transchar(regname));
3397 goto end;
3400 #ifdef FEAT_VISUAL
3401 if (y_type == MBLOCK)
3403 lnum = curwin->w_cursor.lnum + y_size + 1;
3404 if (lnum > curbuf->b_ml.ml_line_count)
3405 lnum = curbuf->b_ml.ml_line_count + 1;
3406 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3407 goto end;
3409 else
3410 #endif
3411 if (y_type == MLINE)
3413 lnum = curwin->w_cursor.lnum;
3414 #ifdef FEAT_FOLDING
3415 /* Correct line number for closed fold. Don't move the cursor yet,
3416 * u_save() uses it. */
3417 if (dir == BACKWARD)
3418 (void)hasFolding(lnum, &lnum, NULL);
3419 else
3420 (void)hasFolding(lnum, NULL, &lnum);
3421 #endif
3422 if (dir == FORWARD)
3423 ++lnum;
3424 if (u_save(lnum - 1, lnum) == FAIL)
3425 goto end;
3426 #ifdef FEAT_FOLDING
3427 if (dir == FORWARD)
3428 curwin->w_cursor.lnum = lnum - 1;
3429 else
3430 curwin->w_cursor.lnum = lnum;
3431 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3432 #endif
3434 else if (u_save_cursor() == FAIL)
3435 goto end;
3437 yanklen = (int)STRLEN(y_array[0]);
3439 #ifdef FEAT_VIRTUALEDIT
3440 if (ve_flags == VE_ALL && y_type == MCHAR)
3442 if (gchar_cursor() == TAB)
3444 /* Don't need to insert spaces when "p" on the last position of a
3445 * tab or "P" on the first position. */
3446 #ifdef FEAT_VARTABS
3447 int viscol = getviscol();
3448 if (dir == FORWARD
3449 ? tabstop_padding(viscol, curbuf->b_p_ts, curbuf->b_p_vts_ary) != 1
3450 : curwin->w_cursor.coladd > 0)
3451 coladvance_force(viscol);
3452 #else
3453 if (dir == FORWARD
3454 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3455 : curwin->w_cursor.coladd > 0)
3456 coladvance_force(getviscol());
3457 #endif
3458 else
3459 curwin->w_cursor.coladd = 0;
3461 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3462 coladvance_force(getviscol() + (dir == FORWARD));
3464 #endif
3466 lnum = curwin->w_cursor.lnum;
3467 col = curwin->w_cursor.col;
3469 #ifdef FEAT_VISUAL
3471 * Block mode
3473 if (y_type == MBLOCK)
3475 char c = gchar_cursor();
3476 colnr_T endcol2 = 0;
3478 if (dir == FORWARD && c != NUL)
3480 #ifdef FEAT_VIRTUALEDIT
3481 if (ve_flags == VE_ALL)
3482 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3483 else
3484 #endif
3485 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3487 #ifdef FEAT_MBYTE
3488 if (has_mbyte)
3489 /* move to start of next multi-byte character */
3490 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
3491 else
3492 #endif
3493 #ifdef FEAT_VIRTUALEDIT
3494 if (c != TAB || ve_flags != VE_ALL)
3495 #endif
3496 ++curwin->w_cursor.col;
3497 ++col;
3499 else
3500 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3502 #ifdef FEAT_VIRTUALEDIT
3503 col += curwin->w_cursor.coladd;
3504 if (ve_flags == VE_ALL
3505 && (curwin->w_cursor.coladd > 0
3506 || endcol2 == curwin->w_cursor.col))
3508 if (dir == FORWARD && c == NUL)
3509 ++col;
3510 if (dir != FORWARD && c != NUL)
3511 ++curwin->w_cursor.col;
3512 if (c == TAB)
3514 if (dir == BACKWARD && curwin->w_cursor.col)
3515 curwin->w_cursor.col--;
3516 if (dir == FORWARD && col - 1 == endcol2)
3517 curwin->w_cursor.col++;
3520 curwin->w_cursor.coladd = 0;
3521 #endif
3522 bd.textcol = 0;
3523 for (i = 0; i < y_size; ++i)
3525 int spaces;
3526 char shortline;
3528 bd.startspaces = 0;
3529 bd.endspaces = 0;
3530 vcol = 0;
3531 delcount = 0;
3533 /* add a new line */
3534 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3536 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3537 (colnr_T)1, FALSE) == FAIL)
3538 break;
3539 ++nr_lines;
3541 /* get the old line and advance to the position to insert at */
3542 oldp = ml_get_curline();
3543 oldlen = (int)STRLEN(oldp);
3544 for (ptr = oldp; vcol < col && *ptr; )
3546 /* Count a tab for what it's worth (if list mode not on) */
3547 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
3548 vcol += incr;
3550 bd.textcol = (colnr_T)(ptr - oldp);
3552 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3554 if (vcol < col) /* line too short, padd with spaces */
3555 bd.startspaces = col - vcol;
3556 else if (vcol > col)
3558 bd.endspaces = vcol - col;
3559 bd.startspaces = incr - bd.endspaces;
3560 --bd.textcol;
3561 delcount = 1;
3562 #ifdef FEAT_MBYTE
3563 if (has_mbyte)
3564 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3565 #endif
3566 if (oldp[bd.textcol] != TAB)
3568 /* Only a Tab can be split into spaces. Other
3569 * characters will have to be moved to after the
3570 * block, causing misalignment. */
3571 delcount = 0;
3572 bd.endspaces = 0;
3576 yanklen = (int)STRLEN(y_array[i]);
3578 /* calculate number of spaces required to fill right side of block*/
3579 spaces = y_width + 1;
3580 for (j = 0; j < yanklen; j++)
3581 spaces -= lbr_chartabsize(&y_array[i][j], 0);
3582 if (spaces < 0)
3583 spaces = 0;
3585 /* insert the new text */
3586 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3587 newp = alloc_check((unsigned)totlen + oldlen + 1);
3588 if (newp == NULL)
3589 break;
3590 /* copy part up to cursor to new line */
3591 ptr = newp;
3592 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3593 ptr += bd.textcol;
3594 /* may insert some spaces before the new text */
3595 copy_spaces(ptr, (size_t)bd.startspaces);
3596 ptr += bd.startspaces;
3597 /* insert the new text */
3598 for (j = 0; j < count; ++j)
3600 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3601 ptr += yanklen;
3603 /* insert block's trailing spaces only if there's text behind */
3604 if ((j < count - 1 || !shortline) && spaces)
3606 copy_spaces(ptr, (size_t)spaces);
3607 ptr += spaces;
3610 /* may insert some spaces after the new text */
3611 copy_spaces(ptr, (size_t)bd.endspaces);
3612 ptr += bd.endspaces;
3613 /* move the text after the cursor to the end of the line. */
3614 mch_memmove(ptr, oldp + bd.textcol + delcount,
3615 (size_t)(oldlen - bd.textcol - delcount + 1));
3616 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3618 ++curwin->w_cursor.lnum;
3619 if (i == 0)
3620 curwin->w_cursor.col += bd.startspaces;
3623 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3625 /* Set '[ mark. */
3626 curbuf->b_op_start = curwin->w_cursor;
3627 curbuf->b_op_start.lnum = lnum;
3629 /* adjust '] mark */
3630 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3631 curbuf->b_op_end.col = bd.textcol + totlen - 1;
3632 # ifdef FEAT_VIRTUALEDIT
3633 curbuf->b_op_end.coladd = 0;
3634 # endif
3635 if (flags & PUT_CURSEND)
3637 colnr_T len;
3639 curwin->w_cursor = curbuf->b_op_end;
3640 curwin->w_cursor.col++;
3642 /* in Insert mode we might be after the NUL, correct for that */
3643 len = (colnr_T)STRLEN(ml_get_curline());
3644 if (curwin->w_cursor.col > len)
3645 curwin->w_cursor.col = len;
3647 else
3648 curwin->w_cursor.lnum = lnum;
3650 else
3651 #endif
3654 * Character or Line mode
3656 if (y_type == MCHAR)
3658 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3659 * char */
3660 if (dir == FORWARD && gchar_cursor() != NUL)
3662 #ifdef FEAT_MBYTE
3663 if (has_mbyte)
3665 int bytelen = (*mb_ptr2len)(ml_get_cursor());
3667 /* put it on the next of the multi-byte character. */
3668 col += bytelen;
3669 if (yanklen)
3671 curwin->w_cursor.col += bytelen;
3672 curbuf->b_op_end.col += bytelen;
3675 else
3676 #endif
3678 ++col;
3679 if (yanklen)
3681 ++curwin->w_cursor.col;
3682 ++curbuf->b_op_end.col;
3686 curbuf->b_op_start = curwin->w_cursor;
3689 * Line mode: BACKWARD is the same as FORWARD on the previous line
3691 else if (dir == BACKWARD)
3692 --lnum;
3693 new_cursor = curwin->w_cursor;
3696 * simple case: insert into current line
3698 if (y_type == MCHAR && y_size == 1)
3700 totlen = count * yanklen;
3701 if (totlen)
3703 oldp = ml_get(lnum);
3704 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3705 if (newp == NULL)
3706 goto end; /* alloc() will give error message */
3707 mch_memmove(newp, oldp, (size_t)col);
3708 ptr = newp + col;
3709 for (i = 0; i < count; ++i)
3711 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3712 ptr += yanklen;
3714 STRMOVE(ptr, oldp + col);
3715 ml_replace(lnum, newp, FALSE);
3716 /* Put cursor on last putted char. */
3717 curwin->w_cursor.col += (colnr_T)(totlen - 1);
3719 curbuf->b_op_end = curwin->w_cursor;
3720 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3721 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3722 ++curwin->w_cursor.col;
3723 changed_bytes(lnum, col);
3725 else
3728 * Insert at least one line. When y_type is MCHAR, break the first
3729 * line in two.
3731 for (cnt = 1; cnt <= count; ++cnt)
3733 i = 0;
3734 if (y_type == MCHAR)
3737 * Split the current line in two at the insert position.
3738 * First insert y_array[size - 1] in front of second line.
3739 * Then append y_array[0] to first line.
3741 lnum = new_cursor.lnum;
3742 ptr = ml_get(lnum) + col;
3743 totlen = (int)STRLEN(y_array[y_size - 1]);
3744 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3745 if (newp == NULL)
3746 goto error;
3747 STRCPY(newp, y_array[y_size - 1]);
3748 STRCAT(newp, ptr);
3749 /* insert second line */
3750 ml_append(lnum, newp, (colnr_T)0, FALSE);
3751 vim_free(newp);
3753 oldp = ml_get(lnum);
3754 newp = alloc_check((unsigned)(col + yanklen + 1));
3755 if (newp == NULL)
3756 goto error;
3757 /* copy first part of line */
3758 mch_memmove(newp, oldp, (size_t)col);
3759 /* append to first line */
3760 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3761 ml_replace(lnum, newp, FALSE);
3763 curwin->w_cursor.lnum = lnum;
3764 i = 1;
3767 for (; i < y_size; ++i)
3769 if ((y_type != MCHAR || i < y_size - 1)
3770 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3771 == FAIL)
3772 goto error;
3773 lnum++;
3774 ++nr_lines;
3775 if (flags & PUT_FIXINDENT)
3777 old_pos = curwin->w_cursor;
3778 curwin->w_cursor.lnum = lnum;
3779 ptr = ml_get(lnum);
3780 if (cnt == count && i == y_size - 1)
3781 lendiff = (int)STRLEN(ptr);
3782 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3783 if (*ptr == '#' && preprocs_left())
3784 indent = 0; /* Leave # lines at start */
3785 else
3786 #endif
3787 if (*ptr == NUL)
3788 indent = 0; /* Ignore empty lines */
3789 else if (first_indent)
3791 indent_diff = orig_indent - get_indent();
3792 indent = orig_indent;
3793 first_indent = FALSE;
3795 else if ((indent = get_indent() + indent_diff) < 0)
3796 indent = 0;
3797 (void)set_indent(indent, 0);
3798 curwin->w_cursor = old_pos;
3799 /* remember how many chars were removed */
3800 if (cnt == count && i == y_size - 1)
3801 lendiff -= (int)STRLEN(ml_get(lnum));
3806 error:
3807 /* Adjust marks. */
3808 if (y_type == MLINE)
3810 curbuf->b_op_start.col = 0;
3811 if (dir == FORWARD)
3812 curbuf->b_op_start.lnum++;
3814 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
3815 (linenr_T)MAXLNUM, nr_lines, 0L);
3817 /* note changed text for displaying and folding */
3818 if (y_type == MCHAR)
3819 changed_lines(curwin->w_cursor.lnum, col,
3820 curwin->w_cursor.lnum + 1, nr_lines);
3821 else
3822 changed_lines(curbuf->b_op_start.lnum, 0,
3823 curbuf->b_op_start.lnum, nr_lines);
3825 /* put '] mark at last inserted character */
3826 curbuf->b_op_end.lnum = lnum;
3827 /* correct length for change in indent */
3828 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3829 if (col > 1)
3830 curbuf->b_op_end.col = col - 1;
3831 else
3832 curbuf->b_op_end.col = 0;
3834 if (flags & PUT_CURSLINE)
3836 /* ":put": put cursor on last inserted line */
3837 curwin->w_cursor.lnum = lnum;
3838 beginline(BL_WHITE | BL_FIX);
3840 else if (flags & PUT_CURSEND)
3842 /* put cursor after inserted text */
3843 if (y_type == MLINE)
3845 if (lnum >= curbuf->b_ml.ml_line_count)
3846 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3847 else
3848 curwin->w_cursor.lnum = lnum + 1;
3849 curwin->w_cursor.col = 0;
3851 else
3853 curwin->w_cursor.lnum = lnum;
3854 curwin->w_cursor.col = col;
3857 else if (y_type == MLINE)
3859 /* put cursor on first non-blank in first inserted line */
3860 curwin->w_cursor.col = 0;
3861 if (dir == FORWARD)
3862 ++curwin->w_cursor.lnum;
3863 beginline(BL_WHITE | BL_FIX);
3865 else /* put cursor on first inserted character */
3866 curwin->w_cursor = new_cursor;
3870 msgmore(nr_lines);
3871 curwin->w_set_curswant = TRUE;
3873 end:
3874 if (allocated)
3875 vim_free(insert_string);
3876 if (regname == '=')
3877 vim_free(y_array);
3879 /* If the cursor is past the end of the line put it at the end. */
3880 adjust_cursor_eol();
3884 * When the cursor is on the NUL past the end of the line and it should not be
3885 * there move it left.
3887 void
3888 adjust_cursor_eol()
3890 if (curwin->w_cursor.col > 0
3891 && gchar_cursor() == NUL
3892 #ifdef FEAT_VIRTUALEDIT
3893 && (ve_flags & VE_ONEMORE) == 0
3894 #endif
3895 && !(restart_edit || (State & INSERT)))
3897 /* Put the cursor on the last character in the line. */
3898 dec_cursor();
3900 #ifdef FEAT_VIRTUALEDIT
3901 if (ve_flags == VE_ALL)
3903 colnr_T scol, ecol;
3905 /* Coladd is set to the width of the last character. */
3906 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
3907 curwin->w_cursor.coladd = ecol - scol + 1;
3909 #endif
3913 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
3915 * Return TRUE if lines starting with '#' should be left aligned.
3918 preprocs_left()
3920 return
3921 # ifdef FEAT_SMARTINDENT
3922 # ifdef FEAT_CINDENT
3923 (curbuf->b_p_si && !curbuf->b_p_cin) ||
3924 # else
3925 curbuf->b_p_si
3926 # endif
3927 # endif
3928 # ifdef FEAT_CINDENT
3929 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE))
3930 # endif
3933 #endif
3935 /* Return the character name of the register with the given number */
3937 get_register_name(num)
3938 int num;
3940 if (num == -1)
3941 return '"';
3942 else if (num < 10)
3943 return num + '0';
3944 else if (num == DELETION_REGISTER)
3945 return '-';
3946 #ifdef FEAT_CLIPBOARD
3947 else if (num == STAR_REGISTER)
3948 return '*';
3949 else if (num == PLUS_REGISTER)
3950 return '+';
3951 #endif
3952 else
3954 #ifdef EBCDIC
3955 int i;
3957 /* EBCDIC is really braindead ... */
3958 i = 'a' + (num - 10);
3959 if (i > 'i')
3960 i += 7;
3961 if (i > 'r')
3962 i += 8;
3963 return i;
3964 #else
3965 return num + 'a' - 10;
3966 #endif
3971 * ":dis" and ":registers": Display the contents of the yank registers.
3973 void
3974 ex_display(eap)
3975 exarg_T *eap;
3977 int i, n;
3978 long j;
3979 char_u *p;
3980 struct yankreg *yb;
3981 int name;
3982 int attr;
3983 char_u *arg = eap->arg;
3984 #ifdef FEAT_MBYTE
3985 int clen;
3986 #else
3987 # define clen 1
3988 #endif
3990 if (arg != NULL && *arg == NUL)
3991 arg = NULL;
3992 attr = hl_attr(HLF_8);
3994 /* Highlight title */
3995 MSG_PUTS_TITLE(_("\n--- Registers ---"));
3996 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
3998 name = get_register_name(i);
3999 if (arg != NULL && vim_strchr(arg, name) == NULL)
4000 continue; /* did not ask for this register */
4002 #ifdef FEAT_CLIPBOARD
4003 /* Adjust register name for "unnamed" in 'clipboard'.
4004 * When it's a clipboard register, fill it with the current contents
4005 * of the clipboard. */
4006 adjust_clip_reg(&name);
4007 (void)may_get_selection(name);
4008 #endif
4010 if (i == -1)
4012 if (y_previous != NULL)
4013 yb = y_previous;
4014 else
4015 yb = &(y_regs[0]);
4017 else
4018 yb = &(y_regs[i]);
4020 #ifdef FEAT_EVAL
4021 if (name == MB_TOLOWER(redir_reg)
4022 || (redir_reg == '"' && yb == y_previous))
4023 continue; /* do not list register being written to, the
4024 * pointer can be freed */
4025 #endif
4027 if (yb->y_array != NULL)
4029 msg_putchar('\n');
4030 msg_putchar('"');
4031 msg_putchar(name);
4032 MSG_PUTS(" ");
4034 n = (int)Columns - 6;
4035 for (j = 0; j < yb->y_size && n > 1; ++j)
4037 if (j)
4039 MSG_PUTS_ATTR("^J", attr);
4040 n -= 2;
4042 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4044 #ifdef FEAT_MBYTE
4045 clen = (*mb_ptr2len)(p);
4046 #endif
4047 msg_outtrans_len(p, clen);
4048 #ifdef FEAT_MBYTE
4049 p += clen - 1;
4050 #endif
4053 if (n > 1 && yb->y_type == MLINE)
4054 MSG_PUTS_ATTR("^J", attr);
4055 out_flush(); /* show one line at a time */
4057 ui_breakcheck();
4061 * display last inserted text
4063 if ((p = get_last_insert()) != NULL
4064 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4066 MSG_PUTS("\n\". ");
4067 dis_msg(p, TRUE);
4071 * display last command line
4073 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4074 && !got_int)
4076 MSG_PUTS("\n\": ");
4077 dis_msg(last_cmdline, FALSE);
4081 * display current file name
4083 if (curbuf->b_fname != NULL
4084 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4086 MSG_PUTS("\n\"% ");
4087 dis_msg(curbuf->b_fname, FALSE);
4091 * display alternate file name
4093 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4095 char_u *fname;
4096 linenr_T dummy;
4098 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4100 MSG_PUTS("\n\"# ");
4101 dis_msg(fname, FALSE);
4106 * display last search pattern
4108 if (last_search_pat() != NULL
4109 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4111 MSG_PUTS("\n\"/ ");
4112 dis_msg(last_search_pat(), FALSE);
4115 #ifdef FEAT_EVAL
4117 * display last used expression
4119 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4120 && !got_int)
4122 MSG_PUTS("\n\"= ");
4123 dis_msg(expr_line, FALSE);
4125 #endif
4129 * display a string for do_dis()
4130 * truncate at end of screen line
4132 static void
4133 dis_msg(p, skip_esc)
4134 char_u *p;
4135 int skip_esc; /* if TRUE, ignore trailing ESC */
4137 int n;
4138 #ifdef FEAT_MBYTE
4139 int l;
4140 #endif
4142 n = (int)Columns - 6;
4143 while (*p != NUL
4144 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4145 && (n -= ptr2cells(p)) >= 0)
4147 #ifdef FEAT_MBYTE
4148 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
4150 msg_outtrans_len(p, l);
4151 p += l;
4153 else
4154 #endif
4155 msg_outtrans_len(p++, 1);
4157 ui_breakcheck();
4161 * join 'count' lines (minimal 2), including u_save()
4163 void
4164 do_do_join(count, insert_space)
4165 long count;
4166 int insert_space;
4168 colnr_T col = MAXCOL;
4170 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4171 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4172 return;
4174 while (--count > 0)
4176 line_breakcheck();
4177 if (got_int || do_join(insert_space) == FAIL)
4179 beep_flush();
4180 break;
4182 if (col == MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4183 col = curwin->w_cursor.col;
4186 /* Vi compatible: use the column of the first join */
4187 if (col != MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4188 curwin->w_cursor.col = col;
4190 #if 0
4192 * Need to update the screen if the line where the cursor is became too
4193 * long to fit on the screen.
4195 update_topline_redraw();
4196 #endif
4200 * Join two lines at the cursor position.
4201 * "redraw" is TRUE when the screen should be updated.
4202 * Caller must have setup for undo.
4204 * return FAIL for failure, OK otherwise
4207 do_join(insert_space)
4208 int insert_space;
4210 char_u *curr;
4211 char_u *next, *next_start;
4212 char_u *newp;
4213 int endcurr1, endcurr2;
4214 int currsize; /* size of the current line */
4215 int nextsize; /* size of the next line */
4216 int spaces; /* number of spaces to insert */
4217 linenr_T t;
4219 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4220 return FAIL; /* can't join on last line */
4222 curr = ml_get_curline();
4223 currsize = (int)STRLEN(curr);
4224 endcurr1 = endcurr2 = NUL;
4225 if (insert_space && currsize > 0)
4227 #ifdef FEAT_MBYTE
4228 if (has_mbyte)
4230 next = curr + currsize;
4231 mb_ptr_back(curr, next);
4232 endcurr1 = (*mb_ptr2char)(next);
4233 if (next > curr)
4235 mb_ptr_back(curr, next);
4236 endcurr2 = (*mb_ptr2char)(next);
4239 else
4240 #endif
4242 endcurr1 = *(curr + currsize - 1);
4243 if (currsize > 1)
4244 endcurr2 = *(curr + currsize - 2);
4248 next = next_start = ml_get((linenr_T)(curwin->w_cursor.lnum + 1));
4249 spaces = 0;
4250 if (insert_space)
4252 next = skipwhite(next);
4253 if (*next != ')' && currsize != 0 && endcurr1 != TAB
4254 #ifdef FEAT_MBYTE
4255 && (!has_format_option(FO_MBYTE_JOIN)
4256 || (mb_ptr2char(next) < 0x100 && endcurr1 < 0x100))
4257 && (!has_format_option(FO_MBYTE_JOIN2)
4258 || mb_ptr2char(next) < 0x100 || endcurr1 < 0x100)
4259 #endif
4262 /* don't add a space if the line is ending in a space */
4263 if (endcurr1 == ' ')
4264 endcurr1 = endcurr2;
4265 else
4266 ++spaces;
4267 /* extra space when 'joinspaces' set and line ends in '.' */
4268 if ( p_js
4269 && (endcurr1 == '.'
4270 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4271 && (endcurr1 == '?' || endcurr1 == '!'))))
4272 ++spaces;
4275 nextsize = (int)STRLEN(next);
4277 newp = alloc_check((unsigned)(currsize + nextsize + spaces + 1));
4278 if (newp == NULL)
4279 return FAIL;
4282 * Insert the next line first, because we already have that pointer.
4283 * Curr has to be obtained again, because getting next will have
4284 * invalidated it.
4286 mch_memmove(newp + currsize + spaces, next, (size_t)(nextsize + 1));
4288 curr = ml_get_curline();
4289 mch_memmove(newp, curr, (size_t)currsize);
4291 copy_spaces(newp + currsize, (size_t)spaces);
4293 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4295 /* Only report the change in the first line here, del_lines() will report
4296 * the deleted line. */
4297 changed_lines(curwin->w_cursor.lnum, currsize,
4298 curwin->w_cursor.lnum + 1, 0L);
4301 * Delete the following line. To do this we move the cursor there
4302 * briefly, and then move it back. After del_lines() the cursor may
4303 * have moved up (last line deleted), so the current lnum is kept in t.
4305 * Move marks from the deleted line to the joined line, adjusting the
4306 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4307 * should not really be a problem.
4309 t = curwin->w_cursor.lnum;
4310 mark_col_adjust(t + 1, (colnr_T)0, (linenr_T)-1,
4311 (long)(currsize + spaces - (next - next_start)));
4312 ++curwin->w_cursor.lnum;
4313 del_lines(1L, FALSE);
4314 curwin->w_cursor.lnum = t;
4317 * go to first character of the joined line
4319 curwin->w_cursor.col = currsize;
4320 check_cursor_col();
4321 #ifdef FEAT_VIRTUALEDIT
4322 curwin->w_cursor.coladd = 0;
4323 #endif
4324 curwin->w_set_curswant = TRUE;
4326 return OK;
4329 #ifdef FEAT_COMMENTS
4331 * Return TRUE if the two comment leaders given are the same. "lnum" is
4332 * the first line. White-space is ignored. Note that the whole of
4333 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4335 static int
4336 same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
4337 linenr_T lnum;
4338 int leader1_len;
4339 char_u *leader1_flags;
4340 int leader2_len;
4341 char_u *leader2_flags;
4343 int idx1 = 0, idx2 = 0;
4344 char_u *p;
4345 char_u *line1;
4346 char_u *line2;
4348 if (leader1_len == 0)
4349 return (leader2_len == 0);
4352 * If first leader has 'f' flag, the lines can be joined only if the
4353 * second line does not have a leader.
4354 * If first leader has 'e' flag, the lines can never be joined.
4355 * If fist leader has 's' flag, the lines can only be joined if there is
4356 * some text after it and the second line has the 'm' flag.
4358 if (leader1_flags != NULL)
4360 for (p = leader1_flags; *p && *p != ':'; ++p)
4362 if (*p == COM_FIRST)
4363 return (leader2_len == 0);
4364 if (*p == COM_END)
4365 return FALSE;
4366 if (*p == COM_START)
4368 if (*(ml_get(lnum) + leader1_len) == NUL)
4369 return FALSE;
4370 if (leader2_flags == NULL || leader2_len == 0)
4371 return FALSE;
4372 for (p = leader2_flags; *p && *p != ':'; ++p)
4373 if (*p == COM_MIDDLE)
4374 return TRUE;
4375 return FALSE;
4381 * Get current line and next line, compare the leaders.
4382 * The first line has to be saved, only one line can be locked at a time.
4384 line1 = vim_strsave(ml_get(lnum));
4385 if (line1 != NULL)
4387 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4389 line2 = ml_get(lnum + 1);
4390 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4392 if (!vim_iswhite(line2[idx2]))
4394 if (line1[idx1++] != line2[idx2])
4395 break;
4397 else
4398 while (vim_iswhite(line1[idx1]))
4399 ++idx1;
4401 vim_free(line1);
4403 return (idx2 == leader2_len && idx1 == leader1_len);
4405 #endif
4408 * implementation of the format operator 'gq'
4410 void
4411 op_format(oap, keep_cursor)
4412 oparg_T *oap;
4413 int keep_cursor; /* keep cursor on same text char */
4415 long old_line_count = curbuf->b_ml.ml_line_count;
4417 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4418 * can put it back there. */
4419 curwin->w_cursor = oap->cursor_start;
4421 if (u_save((linenr_T)(oap->start.lnum - 1),
4422 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4423 return;
4424 curwin->w_cursor = oap->start;
4426 #ifdef FEAT_VISUAL
4427 if (oap->is_VIsual)
4428 /* When there is no change: need to remove the Visual selection */
4429 redraw_curbuf_later(INVERTED);
4430 #endif
4432 /* Set '[ mark at the start of the formatted area */
4433 curbuf->b_op_start = oap->start;
4435 /* For "gw" remember the cursor position and put it back below (adjusted
4436 * for joined and split lines). */
4437 if (keep_cursor)
4438 saved_cursor = oap->cursor_start;
4440 format_lines(oap->line_count, keep_cursor);
4443 * Leave the cursor at the first non-blank of the last formatted line.
4444 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4445 * line, so "." will do the next lines.
4447 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4448 ++curwin->w_cursor.lnum;
4449 beginline(BL_WHITE | BL_FIX);
4450 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4451 msgmore(old_line_count);
4453 /* put '] mark on the end of the formatted area */
4454 curbuf->b_op_end = curwin->w_cursor;
4456 if (keep_cursor)
4458 curwin->w_cursor = saved_cursor;
4459 saved_cursor.lnum = 0;
4462 #ifdef FEAT_VISUAL
4463 if (oap->is_VIsual)
4465 win_T *wp;
4467 FOR_ALL_WINDOWS(wp)
4469 if (wp->w_old_cursor_lnum != 0)
4471 /* When lines have been inserted or deleted, adjust the end of
4472 * the Visual area to be redrawn. */
4473 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4474 wp->w_old_cursor_lnum += old_line_count;
4475 else
4476 wp->w_old_visual_lnum += old_line_count;
4480 #endif
4483 #if defined(FEAT_EVAL) || defined(PROTO)
4485 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4487 void
4488 op_formatexpr(oap)
4489 oparg_T *oap;
4491 # ifdef FEAT_VISUAL
4492 if (oap->is_VIsual)
4493 /* When there is no change: need to remove the Visual selection */
4494 redraw_curbuf_later(INVERTED);
4495 # endif
4497 (void)fex_format(oap->start.lnum, oap->line_count, NUL);
4501 fex_format(lnum, count, c)
4502 linenr_T lnum;
4503 long count;
4504 int c; /* character to be inserted */
4506 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4507 OPT_LOCAL);
4508 int r;
4511 * Set v:lnum to the first line number and v:count to the number of lines.
4512 * Set v:char to the character to be inserted (can be NUL).
4514 set_vim_var_nr(VV_LNUM, lnum);
4515 set_vim_var_nr(VV_COUNT, count);
4516 set_vim_var_char(c);
4519 * Evaluate the function.
4521 if (use_sandbox)
4522 ++sandbox;
4523 r = eval_to_number(curbuf->b_p_fex);
4524 if (use_sandbox)
4525 --sandbox;
4527 set_vim_var_string(VV_CHAR, NULL, -1);
4529 return r;
4531 #endif
4534 * Format "line_count" lines, starting at the cursor position.
4535 * When "line_count" is negative, format until the end of the paragraph.
4536 * Lines after the cursor line are saved for undo, caller must have saved the
4537 * first line.
4539 void
4540 format_lines(line_count, avoid_fex)
4541 linenr_T line_count;
4542 int avoid_fex; /* don't use 'formatexpr' */
4544 int max_len;
4545 int is_not_par; /* current line not part of parag. */
4546 int next_is_not_par; /* next line not part of paragraph */
4547 int is_end_par; /* at end of paragraph */
4548 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4549 int next_is_start_par = FALSE;
4550 #ifdef FEAT_COMMENTS
4551 int leader_len = 0; /* leader len of current line */
4552 int next_leader_len; /* leader len of next line */
4553 char_u *leader_flags = NULL; /* flags for leader of current line */
4554 char_u *next_leader_flags; /* flags for leader of next line */
4555 int do_comments; /* format comments */
4556 #endif
4557 int advance = TRUE;
4558 int second_indent = -1;
4559 int do_second_indent;
4560 int do_number_indent;
4561 int do_trail_white;
4562 int first_par_line = TRUE;
4563 int smd_save;
4564 long count;
4565 int need_set_indent = TRUE; /* set indent of next paragraph */
4566 int force_format = FALSE;
4567 int old_State = State;
4569 /* length of a line to force formatting: 3 * 'tw' */
4570 max_len = comp_textwidth(TRUE) * 3;
4572 /* check for 'q', '2' and '1' in 'formatoptions' */
4573 #ifdef FEAT_COMMENTS
4574 do_comments = has_format_option(FO_Q_COMS);
4575 #endif
4576 do_second_indent = has_format_option(FO_Q_SECOND);
4577 do_number_indent = has_format_option(FO_Q_NUMBER);
4578 do_trail_white = has_format_option(FO_WHITE_PAR);
4581 * Get info about the previous and current line.
4583 if (curwin->w_cursor.lnum > 1)
4584 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4585 #ifdef FEAT_COMMENTS
4586 , &leader_len, &leader_flags, do_comments
4587 #endif
4589 else
4590 is_not_par = TRUE;
4591 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4592 #ifdef FEAT_COMMENTS
4593 , &next_leader_len, &next_leader_flags, do_comments
4594 #endif
4596 is_end_par = (is_not_par || next_is_not_par);
4597 if (!is_end_par && do_trail_white)
4598 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4600 curwin->w_cursor.lnum--;
4601 for (count = line_count; count != 0 && !got_int; --count)
4604 * Advance to next paragraph.
4606 if (advance)
4608 curwin->w_cursor.lnum++;
4609 prev_is_end_par = is_end_par;
4610 is_not_par = next_is_not_par;
4611 #ifdef FEAT_COMMENTS
4612 leader_len = next_leader_len;
4613 leader_flags = next_leader_flags;
4614 #endif
4618 * The last line to be formatted.
4620 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4622 next_is_not_par = TRUE;
4623 #ifdef FEAT_COMMENTS
4624 next_leader_len = 0;
4625 next_leader_flags = NULL;
4626 #endif
4628 else
4630 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4631 #ifdef FEAT_COMMENTS
4632 , &next_leader_len, &next_leader_flags, do_comments
4633 #endif
4635 if (do_number_indent)
4636 next_is_start_par =
4637 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4639 advance = TRUE;
4640 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4641 if (!is_end_par && do_trail_white)
4642 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4645 * Skip lines that are not in a paragraph.
4647 if (is_not_par)
4649 if (line_count < 0)
4650 break;
4652 else
4655 * For the first line of a paragraph, check indent of second line.
4656 * Don't do this for comments and empty lines.
4658 if (first_par_line
4659 && (do_second_indent || do_number_indent)
4660 && prev_is_end_par
4661 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4662 #ifdef FEAT_COMMENTS
4663 && leader_len == 0
4664 && next_leader_len == 0
4665 #endif
4668 if (do_second_indent
4669 && !lineempty(curwin->w_cursor.lnum + 1))
4670 second_indent = get_indent_lnum(curwin->w_cursor.lnum + 1);
4671 else if (do_number_indent)
4672 second_indent = get_number_indent(curwin->w_cursor.lnum);
4676 * When the comment leader changes, it's the end of the paragraph.
4678 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4679 #ifdef FEAT_COMMENTS
4680 || !same_leader(curwin->w_cursor.lnum,
4681 leader_len, leader_flags,
4682 next_leader_len, next_leader_flags)
4683 #endif
4685 is_end_par = TRUE;
4688 * If we have got to the end of a paragraph, or the line is
4689 * getting long, format it.
4691 if (is_end_par || force_format)
4693 if (need_set_indent)
4694 /* replace indent in first line with minimal number of
4695 * tabs and spaces, according to current options */
4696 (void)set_indent(get_indent(), SIN_CHANGED);
4698 /* put cursor on last non-space */
4699 State = NORMAL; /* don't go past end-of-line */
4700 coladvance((colnr_T)MAXCOL);
4701 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
4702 dec_cursor();
4704 /* do the formatting, without 'showmode' */
4705 State = INSERT; /* for open_line() */
4706 smd_save = p_smd;
4707 p_smd = FALSE;
4708 insertchar(NUL, INSCHAR_FORMAT
4709 #ifdef FEAT_COMMENTS
4710 + (do_comments ? INSCHAR_DO_COM : 0)
4711 #endif
4712 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
4713 State = old_State;
4714 p_smd = smd_save;
4715 second_indent = -1;
4716 /* at end of par.: need to set indent of next par. */
4717 need_set_indent = is_end_par;
4718 if (is_end_par)
4720 /* When called with a negative line count, break at the
4721 * end of the paragraph. */
4722 if (line_count < 0)
4723 break;
4724 first_par_line = TRUE;
4726 force_format = FALSE;
4730 * When still in same paragraph, join the lines together. But
4731 * first delete the comment leader from the second line.
4733 if (!is_end_par)
4735 advance = FALSE;
4736 curwin->w_cursor.lnum++;
4737 curwin->w_cursor.col = 0;
4738 if (line_count < 0 && u_save_cursor() == FAIL)
4739 break;
4740 #ifdef FEAT_COMMENTS
4741 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
4742 if (next_leader_len > 0)
4743 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
4744 (long)-next_leader_len);
4745 #endif
4746 curwin->w_cursor.lnum--;
4747 if (do_join(TRUE) == FAIL)
4749 beep_flush();
4750 break;
4752 first_par_line = FALSE;
4753 /* If the line is getting long, format it next time */
4754 if (STRLEN(ml_get_curline()) > (size_t)max_len)
4755 force_format = TRUE;
4756 else
4757 force_format = FALSE;
4760 line_breakcheck();
4765 * Return TRUE if line "lnum" ends in a white character.
4767 static int
4768 ends_in_white(lnum)
4769 linenr_T lnum;
4771 char_u *s = ml_get(lnum);
4772 size_t l;
4774 if (*s == NUL)
4775 return FALSE;
4776 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
4777 * invocation may call function multiple times". */
4778 l = STRLEN(s) - 1;
4779 return vim_iswhite(s[l]);
4783 * Blank lines, and lines containing only the comment leader, are left
4784 * untouched by the formatting. The function returns TRUE in this
4785 * case. It also returns TRUE when a line starts with the end of a comment
4786 * ('e' in comment flags), so that this line is skipped, and not joined to the
4787 * previous line. A new paragraph starts after a blank line, or when the
4788 * comment leader changes -- webb.
4790 #ifdef FEAT_COMMENTS
4791 static int
4792 fmt_check_par(lnum, leader_len, leader_flags, do_comments)
4793 linenr_T lnum;
4794 int *leader_len;
4795 char_u **leader_flags;
4796 int do_comments;
4798 char_u *flags = NULL; /* init for GCC */
4799 char_u *ptr;
4801 ptr = ml_get(lnum);
4802 if (do_comments)
4803 *leader_len = get_leader_len(ptr, leader_flags, FALSE);
4804 else
4805 *leader_len = 0;
4807 if (*leader_len > 0)
4810 * Search for 'e' flag in comment leader flags.
4812 flags = *leader_flags;
4813 while (*flags && *flags != ':' && *flags != COM_END)
4814 ++flags;
4817 return (*skipwhite(ptr + *leader_len) == NUL
4818 || (*leader_len > 0 && *flags == COM_END)
4819 || startPS(lnum, NUL, FALSE));
4821 #else
4822 static int
4823 fmt_check_par(lnum)
4824 linenr_T lnum;
4826 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
4828 #endif
4831 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
4832 * previous line is in the same paragraph. Used for auto-formatting.
4835 paragraph_start(lnum)
4836 linenr_T lnum;
4838 char_u *p;
4839 #ifdef FEAT_COMMENTS
4840 int leader_len = 0; /* leader len of current line */
4841 char_u *leader_flags = NULL; /* flags for leader of current line */
4842 int next_leader_len; /* leader len of next line */
4843 char_u *next_leader_flags; /* flags for leader of next line */
4844 int do_comments; /* format comments */
4845 #endif
4847 if (lnum <= 1)
4848 return TRUE; /* start of the file */
4850 p = ml_get(lnum - 1);
4851 if (*p == NUL)
4852 return TRUE; /* after empty line */
4854 #ifdef FEAT_COMMENTS
4855 do_comments = has_format_option(FO_Q_COMS);
4856 #endif
4857 if (fmt_check_par(lnum - 1
4858 #ifdef FEAT_COMMENTS
4859 , &leader_len, &leader_flags, do_comments
4860 #endif
4862 return TRUE; /* after non-paragraph line */
4864 if (fmt_check_par(lnum
4865 #ifdef FEAT_COMMENTS
4866 , &next_leader_len, &next_leader_flags, do_comments
4867 #endif
4869 return TRUE; /* "lnum" is not a paragraph line */
4871 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
4872 return TRUE; /* missing trailing space in previous line. */
4874 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
4875 return TRUE; /* numbered item starts in "lnum". */
4877 #ifdef FEAT_COMMENTS
4878 if (!same_leader(lnum - 1, leader_len, leader_flags,
4879 next_leader_len, next_leader_flags))
4880 return TRUE; /* change of comment leader. */
4881 #endif
4883 return FALSE;
4886 #ifdef FEAT_VISUAL
4888 * prepare a few things for block mode yank/delete/tilde
4890 * for delete:
4891 * - textlen includes the first/last char to be (partly) deleted
4892 * - start/endspaces is the number of columns that are taken by the
4893 * first/last deleted char minus the number of columns that have to be
4894 * deleted.
4895 * for yank and tilde:
4896 * - textlen includes the first/last char to be wholly yanked
4897 * - start/endspaces is the number of columns of the first/last yanked char
4898 * that are to be yanked.
4900 static void
4901 block_prep(oap, bdp, lnum, is_del)
4902 oparg_T *oap;
4903 struct block_def *bdp;
4904 linenr_T lnum;
4905 int is_del;
4907 int incr = 0;
4908 char_u *pend;
4909 char_u *pstart;
4910 char_u *line;
4911 char_u *prev_pstart;
4912 char_u *prev_pend;
4914 bdp->startspaces = 0;
4915 bdp->endspaces = 0;
4916 bdp->textlen = 0;
4917 bdp->start_vcol = 0;
4918 bdp->end_vcol = 0;
4919 #ifdef FEAT_VISUALEXTRA
4920 bdp->is_short = FALSE;
4921 bdp->is_oneChar = FALSE;
4922 bdp->pre_whitesp = 0;
4923 bdp->pre_whitesp_c = 0;
4924 bdp->end_char_vcols = 0;
4925 #endif
4926 bdp->start_char_vcols = 0;
4928 line = ml_get(lnum);
4929 pstart = line;
4930 prev_pstart = line;
4931 while (bdp->start_vcol < oap->start_vcol && *pstart)
4933 /* Count a tab for what it's worth (if list mode not on) */
4934 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
4935 bdp->start_vcol += incr;
4936 #ifdef FEAT_VISUALEXTRA
4937 if (vim_iswhite(*pstart))
4939 bdp->pre_whitesp += incr;
4940 bdp->pre_whitesp_c++;
4942 else
4944 bdp->pre_whitesp = 0;
4945 bdp->pre_whitesp_c = 0;
4947 #endif
4948 prev_pstart = pstart;
4949 mb_ptr_adv(pstart);
4951 bdp->start_char_vcols = incr;
4952 if (bdp->start_vcol < oap->start_vcol) /* line too short */
4954 bdp->end_vcol = bdp->start_vcol;
4955 #ifdef FEAT_VISUALEXTRA
4956 bdp->is_short = TRUE;
4957 #endif
4958 if (!is_del || oap->op_type == OP_APPEND)
4959 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
4961 else
4963 /* notice: this converts partly selected Multibyte characters to
4964 * spaces, too. */
4965 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
4966 if (is_del && bdp->startspaces)
4967 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
4968 pend = pstart;
4969 bdp->end_vcol = bdp->start_vcol;
4970 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
4972 #ifdef FEAT_VISUALEXTRA
4973 bdp->is_oneChar = TRUE;
4974 #endif
4975 if (oap->op_type == OP_INSERT)
4976 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4977 else if (oap->op_type == OP_APPEND)
4979 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
4980 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4982 else
4984 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
4985 if (is_del && oap->op_type != OP_LSHIFT)
4987 /* just putting the sum of those two into
4988 * bdp->startspaces doesn't work for Visual replace,
4989 * so we have to split the tab in two */
4990 bdp->startspaces = bdp->start_char_vcols
4991 - (bdp->start_vcol - oap->start_vcol);
4992 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4996 else
4998 prev_pend = pend;
4999 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
5001 /* Count a tab for what it's worth (if list mode not on) */
5002 prev_pend = pend;
5003 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
5004 bdp->end_vcol += incr;
5006 if (bdp->end_vcol <= oap->end_vcol
5007 && (!is_del
5008 || oap->op_type == OP_APPEND
5009 || oap->op_type == OP_REPLACE)) /* line too short */
5011 #ifdef FEAT_VISUALEXTRA
5012 bdp->is_short = TRUE;
5013 #endif
5014 /* Alternative: include spaces to fill up the block.
5015 * Disadvantage: can lead to trailing spaces when the line is
5016 * short where the text is put */
5017 /* if (!is_del || oap->op_type == OP_APPEND) */
5018 if (oap->op_type == OP_APPEND || virtual_op)
5019 bdp->endspaces = oap->end_vcol - bdp->end_vcol
5020 + oap->inclusive;
5021 else
5022 bdp->endspaces = 0; /* replace doesn't add characters */
5024 else if (bdp->end_vcol > oap->end_vcol)
5026 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5027 if (!is_del && bdp->endspaces)
5029 bdp->endspaces = incr - bdp->endspaces;
5030 if (pend != pstart)
5031 pend = prev_pend;
5035 #ifdef FEAT_VISUALEXTRA
5036 bdp->end_char_vcols = incr;
5037 #endif
5038 if (is_del && bdp->startspaces)
5039 pstart = prev_pstart;
5040 bdp->textlen = (int)(pend - pstart);
5042 bdp->textcol = (colnr_T) (pstart - line);
5043 bdp->textstart = pstart;
5045 #endif /* FEAT_VISUAL */
5047 #ifdef FEAT_RIGHTLEFT
5048 static void reverse_line __ARGS((char_u *s));
5050 static void
5051 reverse_line(s)
5052 char_u *s;
5054 int i, j;
5055 char_u c;
5057 if ((i = (int)STRLEN(s) - 1) <= 0)
5058 return;
5060 curwin->w_cursor.col = i - curwin->w_cursor.col;
5061 for (j = 0; j < i; j++, i--)
5063 c = s[i]; s[i] = s[j]; s[j] = c;
5067 # define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
5068 #else
5069 # define RLADDSUBFIX(ptr)
5070 #endif
5073 * add or subtract 'Prenum1' from a number in a line
5074 * 'command' is CTRL-A for add, CTRL-X for subtract
5076 * return FAIL for failure, OK otherwise
5079 do_addsub(command, Prenum1)
5080 int command;
5081 linenr_T Prenum1;
5083 int col;
5084 char_u *buf1;
5085 char_u buf2[NUMBUFLEN];
5086 int hex; /* 'X' or 'x': hex; '0': octal */
5087 static int hexupper = FALSE; /* 0xABC */
5088 unsigned long n;
5089 long_u oldn;
5090 char_u *ptr;
5091 int c;
5092 int length = 0; /* character length of the number */
5093 int todel;
5094 int dohex;
5095 int dooct;
5096 int doalp;
5097 int firstdigit;
5098 int negative;
5099 int subtract;
5101 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5102 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
5103 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5105 ptr = ml_get_curline();
5106 RLADDSUBFIX(ptr);
5109 * First check if we are on a hexadecimal number, after the "0x".
5111 col = curwin->w_cursor.col;
5112 if (dohex)
5113 while (col > 0 && vim_isxdigit(ptr[col]))
5114 --col;
5115 if ( dohex
5116 && col > 0
5117 && (ptr[col] == 'X'
5118 || ptr[col] == 'x')
5119 && ptr[col - 1] == '0'
5120 && vim_isxdigit(ptr[col + 1]))
5123 * Found hexadecimal number, move to its start.
5125 --col;
5127 else
5130 * Search forward and then backward to find the start of number.
5132 col = curwin->w_cursor.col;
5134 while (ptr[col] != NUL
5135 && !vim_isdigit(ptr[col])
5136 && !(doalp && ASCII_ISALPHA(ptr[col])))
5137 ++col;
5139 while (col > 0
5140 && vim_isdigit(ptr[col - 1])
5141 && !(doalp && ASCII_ISALPHA(ptr[col])))
5142 --col;
5146 * If a number was found, and saving for undo works, replace the number.
5148 firstdigit = ptr[col];
5149 RLADDSUBFIX(ptr);
5150 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5151 || u_save_cursor() != OK)
5153 beep_flush();
5154 return FAIL;
5157 /* get ptr again, because u_save() may have changed it */
5158 ptr = ml_get_curline();
5159 RLADDSUBFIX(ptr);
5161 if (doalp && ASCII_ISALPHA(firstdigit))
5163 /* decrement or increment alphabetic character */
5164 if (command == Ctrl_X)
5166 if (CharOrd(firstdigit) < Prenum1)
5168 if (isupper(firstdigit))
5169 firstdigit = 'A';
5170 else
5171 firstdigit = 'a';
5173 else
5174 #ifdef EBCDIC
5175 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5176 #else
5177 firstdigit -= Prenum1;
5178 #endif
5180 else
5182 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5184 if (isupper(firstdigit))
5185 firstdigit = 'Z';
5186 else
5187 firstdigit = 'z';
5189 else
5190 #ifdef EBCDIC
5191 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5192 #else
5193 firstdigit += Prenum1;
5194 #endif
5196 curwin->w_cursor.col = col;
5197 (void)del_char(FALSE);
5198 ins_char(firstdigit);
5200 else
5202 negative = FALSE;
5203 if (col > 0 && ptr[col - 1] == '-') /* negative number */
5205 --col;
5206 negative = TRUE;
5209 /* get the number value (unsigned) */
5210 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
5212 /* ignore leading '-' for hex and octal numbers */
5213 if (hex && negative)
5215 ++col;
5216 --length;
5217 negative = FALSE;
5220 /* add or subtract */
5221 subtract = FALSE;
5222 if (command == Ctrl_X)
5223 subtract ^= TRUE;
5224 if (negative)
5225 subtract ^= TRUE;
5227 oldn = n;
5228 if (subtract)
5229 n -= (unsigned long)Prenum1;
5230 else
5231 n += (unsigned long)Prenum1;
5233 /* handle wraparound for decimal numbers */
5234 if (!hex)
5236 if (subtract)
5238 if (n > oldn)
5240 n = 1 + (n ^ (unsigned long)-1);
5241 negative ^= TRUE;
5244 else /* add */
5246 if (n < oldn)
5248 n = (n ^ (unsigned long)-1);
5249 negative ^= TRUE;
5252 if (n == 0)
5253 negative = FALSE;
5257 * Delete the old number.
5259 curwin->w_cursor.col = col;
5260 todel = length;
5261 c = gchar_cursor();
5263 * Don't include the '-' in the length, only the length of the part
5264 * after it is kept the same.
5266 if (c == '-')
5267 --length;
5268 while (todel-- > 0)
5270 if (c < 0x100 && isalpha(c))
5272 if (isupper(c))
5273 hexupper = TRUE;
5274 else
5275 hexupper = FALSE;
5277 /* del_char() will mark line needing displaying */
5278 (void)del_char(FALSE);
5279 c = gchar_cursor();
5283 * Prepare the leading characters in buf1[].
5284 * When there are many leading zeros it could be very long. Allocate
5285 * a bit too much.
5287 buf1 = alloc((unsigned)length + NUMBUFLEN);
5288 if (buf1 == NULL)
5289 return FAIL;
5290 ptr = buf1;
5291 if (negative)
5293 *ptr++ = '-';
5295 if (hex)
5297 *ptr++ = '0';
5298 --length;
5300 if (hex == 'x' || hex == 'X')
5302 *ptr++ = hex;
5303 --length;
5307 * Put the number characters in buf2[].
5309 if (hex == 0)
5310 sprintf((char *)buf2, "%lu", n);
5311 else if (hex == '0')
5312 sprintf((char *)buf2, "%lo", n);
5313 else if (hex && hexupper)
5314 sprintf((char *)buf2, "%lX", n);
5315 else
5316 sprintf((char *)buf2, "%lx", n);
5317 length -= (int)STRLEN(buf2);
5320 * Adjust number of zeros to the new number of digits, so the
5321 * total length of the number remains the same.
5322 * Don't do this when
5323 * the result may look like an octal number.
5325 if (firstdigit == '0' && !(dooct && hex == 0))
5326 while (length-- > 0)
5327 *ptr++ = '0';
5328 *ptr = NUL;
5329 STRCAT(buf1, buf2);
5330 ins_str(buf1); /* insert the new number */
5331 vim_free(buf1);
5333 --curwin->w_cursor.col;
5334 curwin->w_set_curswant = TRUE;
5335 #ifdef FEAT_RIGHTLEFT
5336 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
5337 RLADDSUBFIX(ptr);
5338 #endif
5339 return OK;
5342 #ifdef FEAT_VIMINFO
5344 read_viminfo_register(virp, force)
5345 vir_T *virp;
5346 int force;
5348 int eof;
5349 int do_it = TRUE;
5350 int size;
5351 int limit;
5352 int i;
5353 int set_prev = FALSE;
5354 char_u *str;
5355 char_u **array = NULL;
5357 /* We only get here (hopefully) if line[0] == '"' */
5358 str = virp->vir_line + 1;
5360 /* If the line starts with "" this is the y_previous register. */
5361 if (*str == '"')
5363 set_prev = TRUE;
5364 str++;
5367 if (!ASCII_ISALNUM(*str) && *str != '-')
5369 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5370 return TRUE; /* too many errors, pretend end-of-file */
5371 do_it = FALSE;
5373 get_yank_register(*str++, FALSE);
5374 if (!force && y_current->y_array != NULL)
5375 do_it = FALSE;
5377 if (*str == '@')
5379 /* "x@: register x used for @@ */
5380 if (force || execreg_lastc == NUL)
5381 execreg_lastc = str[-1];
5384 size = 0;
5385 limit = 100; /* Optimized for registers containing <= 100 lines */
5386 if (do_it)
5388 if (set_prev)
5389 y_previous = y_current;
5390 vim_free(y_current->y_array);
5391 array = y_current->y_array =
5392 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
5393 str = skipwhite(skiptowhite(str));
5394 if (STRNCMP(str, "CHAR", 4) == 0)
5395 y_current->y_type = MCHAR;
5396 #ifdef FEAT_VISUAL
5397 else if (STRNCMP(str, "BLOCK", 5) == 0)
5398 y_current->y_type = MBLOCK;
5399 #endif
5400 else
5401 y_current->y_type = MLINE;
5402 /* get the block width; if it's missing we get a zero, which is OK */
5403 str = skipwhite(skiptowhite(str));
5404 #ifdef FEAT_VISUAL
5405 y_current->y_width = getdigits(&str);
5406 #else
5407 (void)getdigits(&str);
5408 #endif
5411 while (!(eof = viminfo_readline(virp))
5412 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5414 if (do_it)
5416 if (size >= limit)
5418 y_current->y_array = (char_u **)
5419 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
5420 for (i = 0; i < limit; i++)
5421 y_current->y_array[i] = array[i];
5422 vim_free(array);
5423 limit *= 2;
5424 array = y_current->y_array;
5426 str = viminfo_readstring(virp, 1, TRUE);
5427 if (str != NULL)
5428 array[size++] = str;
5429 else
5430 do_it = FALSE;
5433 if (do_it)
5435 if (size == 0)
5437 vim_free(array);
5438 y_current->y_array = NULL;
5440 else if (size < limit)
5442 y_current->y_array =
5443 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
5444 for (i = 0; i < size; i++)
5445 y_current->y_array[i] = array[i];
5446 vim_free(array);
5448 y_current->y_size = size;
5450 return eof;
5453 void
5454 write_viminfo_registers(fp)
5455 FILE *fp;
5457 int i, j;
5458 char_u *type;
5459 char_u c;
5460 int num_lines;
5461 int max_num_lines;
5462 int max_kbyte;
5463 long len;
5465 fprintf(fp, _("\n# Registers:\n"));
5467 /* Get '<' value, use old '"' value if '<' is not found. */
5468 max_num_lines = get_viminfo_parameter('<');
5469 if (max_num_lines < 0)
5470 max_num_lines = get_viminfo_parameter('"');
5471 if (max_num_lines == 0)
5472 return;
5473 max_kbyte = get_viminfo_parameter('s');
5474 if (max_kbyte == 0)
5475 return;
5477 for (i = 0; i < NUM_REGISTERS; i++)
5479 if (y_regs[i].y_array == NULL)
5480 continue;
5481 #ifdef FEAT_CLIPBOARD
5482 /* Skip '*'/'+' register, we don't want them back next time */
5483 if (i == STAR_REGISTER || i == PLUS_REGISTER)
5484 continue;
5485 #endif
5486 #ifdef FEAT_DND
5487 /* Neither do we want the '~' register */
5488 if (i == TILDE_REGISTER)
5489 continue;
5490 #endif
5491 /* Skip empty registers. */
5492 num_lines = y_regs[i].y_size;
5493 if (num_lines == 0
5494 || (num_lines == 1 && y_regs[i].y_type == MCHAR
5495 && STRLEN(y_regs[i].y_array[0]) == 0))
5496 continue;
5498 if (max_kbyte > 0)
5500 /* Skip register if there is more text than the maximum size. */
5501 len = 0;
5502 for (j = 0; j < num_lines; j++)
5503 len += (long)STRLEN(y_regs[i].y_array[j]) + 1L;
5504 if (len > (long)max_kbyte * 1024L)
5505 continue;
5508 switch (y_regs[i].y_type)
5510 case MLINE:
5511 type = (char_u *)"LINE";
5512 break;
5513 case MCHAR:
5514 type = (char_u *)"CHAR";
5515 break;
5516 #ifdef FEAT_VISUAL
5517 case MBLOCK:
5518 type = (char_u *)"BLOCK";
5519 break;
5520 #endif
5521 default:
5522 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
5523 y_regs[i].y_type);
5524 emsg(IObuff);
5525 type = (char_u *)"LINE";
5526 break;
5528 if (y_previous == &y_regs[i])
5529 fprintf(fp, "\"");
5530 c = get_register_name(i);
5531 fprintf(fp, "\"%c", c);
5532 if (c == execreg_lastc)
5533 fprintf(fp, "@");
5534 fprintf(fp, "\t%s\t%d\n", type,
5535 #ifdef FEAT_VISUAL
5536 (int)y_regs[i].y_width
5537 #else
5539 #endif
5542 /* If max_num_lines < 0, then we save ALL the lines in the register */
5543 if (max_num_lines > 0 && num_lines > max_num_lines)
5544 num_lines = max_num_lines;
5545 for (j = 0; j < num_lines; j++)
5547 putc('\t', fp);
5548 viminfo_writestring(fp, y_regs[i].y_array[j]);
5552 #endif /* FEAT_VIMINFO */
5554 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
5556 * SELECTION / PRIMARY ('*')
5558 * Text selection stuff that uses the GUI selection register '*'. When using a
5559 * GUI this may be text from another window, otherwise it is the last text we
5560 * had highlighted with VIsual mode. With mouse support, clicking the middle
5561 * button performs the paste, otherwise you will need to do <"*p>. "
5562 * If not under X, it is synonymous with the clipboard register '+'.
5564 * X CLIPBOARD ('+')
5566 * Text selection stuff that uses the GUI clipboard register '+'.
5567 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5568 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5569 * otherwise you will need to do <"+p>. "
5570 * If not under X, it is synonymous with the selection register '*'.
5574 * Routine to export any final X selection we had to the environment
5575 * so that the text is still available after vim has exited. X selections
5576 * only exist while the owning application exists, so we write to the
5577 * permanent (while X runs) store CUT_BUFFER0.
5578 * Dump the CLIPBOARD selection if we own it (it's logically the more
5579 * 'permanent' of the two), otherwise the PRIMARY one.
5580 * For now, use a hard-coded sanity limit of 1Mb of data.
5582 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5583 void
5584 x11_export_final_selection()
5586 Display *dpy;
5587 char_u *str = NULL;
5588 long_u len = 0;
5589 int motion_type = -1;
5591 # ifdef FEAT_GUI
5592 if (gui.in_use)
5593 dpy = X_DISPLAY;
5594 else
5595 # endif
5596 # ifdef FEAT_XCLIPBOARD
5597 dpy = xterm_dpy;
5598 # else
5599 return;
5600 # endif
5602 /* Get selection to export */
5603 if (clip_plus.owned)
5604 motion_type = clip_convert_selection(&str, &len, &clip_plus);
5605 else if (clip_star.owned)
5606 motion_type = clip_convert_selection(&str, &len, &clip_star);
5608 /* Check it's OK */
5609 if (dpy != NULL && str != NULL && motion_type >= 0
5610 && len < 1024*1024 && len > 0)
5612 #ifdef FEAT_MBYTE
5613 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
5614 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
5615 * encoding conversion usually doesn't work, so keep the text as-is.
5617 if (has_mbyte)
5619 vimconv_T vc;
5621 vc.vc_type = CONV_NONE;
5622 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
5624 int intlen = len;
5625 char_u *conv_str;
5627 conv_str = string_convert(&vc, str, &intlen);
5628 len = intlen;
5629 if (conv_str != NULL)
5631 vim_free(str);
5632 str = conv_str;
5634 convert_setup(&vc, NULL, NULL);
5637 #endif
5638 XStoreBuffer(dpy, (char *)str, (int)len, 0);
5639 XFlush(dpy);
5642 vim_free(str);
5644 #endif
5646 void
5647 clip_free_selection(cbd)
5648 VimClipboard *cbd;
5650 struct yankreg *y_ptr = y_current;
5652 if (cbd == &clip_plus)
5653 y_current = &y_regs[PLUS_REGISTER];
5654 else
5655 y_current = &y_regs[STAR_REGISTER];
5656 free_yank_all();
5657 y_current->y_size = 0;
5658 y_current = y_ptr;
5662 * Get the selected text and put it in the gui selection register '*' or '+'.
5664 void
5665 clip_get_selection(cbd)
5666 VimClipboard *cbd;
5668 struct yankreg *old_y_previous, *old_y_current;
5669 pos_T old_cursor;
5670 #ifdef FEAT_VISUAL
5671 pos_T old_visual;
5672 int old_visual_mode;
5673 #endif
5674 colnr_T old_curswant;
5675 int old_set_curswant;
5676 pos_T old_op_start, old_op_end;
5677 oparg_T oa;
5678 cmdarg_T ca;
5680 if (cbd->owned)
5682 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
5683 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
5684 return;
5686 /* Get the text between clip_star.start & clip_star.end */
5687 old_y_previous = y_previous;
5688 old_y_current = y_current;
5689 old_cursor = curwin->w_cursor;
5690 old_curswant = curwin->w_curswant;
5691 old_set_curswant = curwin->w_set_curswant;
5692 old_op_start = curbuf->b_op_start;
5693 old_op_end = curbuf->b_op_end;
5694 #ifdef FEAT_VISUAL
5695 old_visual = VIsual;
5696 old_visual_mode = VIsual_mode;
5697 #endif
5698 clear_oparg(&oa);
5699 oa.regname = (cbd == &clip_plus ? '+' : '*');
5700 oa.op_type = OP_YANK;
5701 vim_memset(&ca, 0, sizeof(ca));
5702 ca.oap = &oa;
5703 ca.cmdchar = 'y';
5704 ca.count1 = 1;
5705 ca.retval = CA_NO_ADJ_OP_END;
5706 do_pending_operator(&ca, 0, TRUE);
5707 y_previous = old_y_previous;
5708 y_current = old_y_current;
5709 curwin->w_cursor = old_cursor;
5710 changed_cline_bef_curs(); /* need to update w_virtcol et al */
5711 curwin->w_curswant = old_curswant;
5712 curwin->w_set_curswant = old_set_curswant;
5713 curbuf->b_op_start = old_op_start;
5714 curbuf->b_op_end = old_op_end;
5715 #ifdef FEAT_VISUAL
5716 VIsual = old_visual;
5717 VIsual_mode = old_visual_mode;
5718 #endif
5720 else
5722 clip_free_selection(cbd);
5724 /* Try to get selected text from another window */
5725 clip_gen_request_selection(cbd);
5729 /* Convert from the GUI selection string into the '*'/'+' register */
5730 void
5731 clip_yank_selection(type, str, len, cbd)
5732 int type;
5733 char_u *str;
5734 long len;
5735 VimClipboard *cbd;
5737 struct yankreg *y_ptr;
5739 if (cbd == &clip_plus)
5740 y_ptr = &y_regs[PLUS_REGISTER];
5741 else
5742 y_ptr = &y_regs[STAR_REGISTER];
5744 clip_free_selection(cbd);
5746 str_to_reg(y_ptr, type, str, len, 0L);
5750 * Convert the '*'/'+' register into a GUI selection string returned in *str
5751 * with length *len.
5752 * Returns the motion type, or -1 for failure.
5755 clip_convert_selection(str, len, cbd)
5756 char_u **str;
5757 long_u *len;
5758 VimClipboard *cbd;
5760 char_u *p;
5761 int lnum;
5762 int i, j;
5763 int_u eolsize;
5764 struct yankreg *y_ptr;
5766 if (cbd == &clip_plus)
5767 y_ptr = &y_regs[PLUS_REGISTER];
5768 else
5769 y_ptr = &y_regs[STAR_REGISTER];
5771 #ifdef USE_CRNL
5772 eolsize = 2;
5773 #else
5774 eolsize = 1;
5775 #endif
5777 *str = NULL;
5778 *len = 0;
5779 if (y_ptr->y_array == NULL)
5780 return -1;
5782 for (i = 0; i < y_ptr->y_size; i++)
5783 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
5786 * Don't want newline character at end of last line if we're in MCHAR mode.
5788 if (y_ptr->y_type == MCHAR && *len >= eolsize)
5789 *len -= eolsize;
5791 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
5792 if (p == NULL)
5793 return -1;
5794 lnum = 0;
5795 for (i = 0, j = 0; i < (int)*len; i++, j++)
5797 if (y_ptr->y_array[lnum][j] == '\n')
5798 p[i] = NUL;
5799 else if (y_ptr->y_array[lnum][j] == NUL)
5801 #ifdef USE_CRNL
5802 p[i++] = '\r';
5803 #endif
5804 #ifdef USE_CR
5805 p[i] = '\r';
5806 #else
5807 p[i] = '\n';
5808 #endif
5809 lnum++;
5810 j = -1;
5812 else
5813 p[i] = y_ptr->y_array[lnum][j];
5815 return y_ptr->y_type;
5819 # if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
5821 * If we have written to a clipboard register, send the text to the clipboard.
5823 static void
5824 may_set_selection()
5826 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
5828 clip_own_selection(&clip_star);
5829 clip_gen_set_selection(&clip_star);
5831 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
5833 clip_own_selection(&clip_plus);
5834 clip_gen_set_selection(&clip_plus);
5837 # endif
5839 #endif /* FEAT_CLIPBOARD || PROTO */
5842 #if defined(FEAT_DND) || defined(PROTO)
5844 * Replace the contents of the '~' register with str.
5846 void
5847 dnd_yank_drag_data(str, len)
5848 char_u *str;
5849 long len;
5851 struct yankreg *curr;
5853 curr = y_current;
5854 y_current = &y_regs[TILDE_REGISTER];
5855 free_yank_all();
5856 str_to_reg(y_current, MCHAR, str, len, 0L);
5857 y_current = curr;
5859 #endif
5862 #if defined(FEAT_EVAL) || defined(PROTO)
5864 * Return the type of a register.
5865 * Used for getregtype()
5866 * Returns MAUTO for error.
5868 char_u
5869 get_reg_type(regname, reglen)
5870 int regname;
5871 long *reglen;
5873 switch (regname)
5875 case '%': /* file name */
5876 case '#': /* alternate file name */
5877 case '=': /* expression */
5878 case ':': /* last command line */
5879 case '/': /* last search-pattern */
5880 case '.': /* last inserted text */
5881 #ifdef FEAT_SEARCHPATH
5882 case Ctrl_F: /* Filename under cursor */
5883 case Ctrl_P: /* Path under cursor, expand via "path" */
5884 #endif
5885 case Ctrl_W: /* word under cursor */
5886 case Ctrl_A: /* WORD (mnemonic All) under cursor */
5887 case '_': /* black hole: always empty */
5888 return MCHAR;
5891 #ifdef FEAT_CLIPBOARD
5892 regname = may_get_selection(regname);
5893 #endif
5895 /* Should we check for a valid name? */
5896 get_yank_register(regname, FALSE);
5898 if (y_current->y_array != NULL)
5900 #ifdef FEAT_VISUAL
5901 if (reglen != NULL && y_current->y_type == MBLOCK)
5902 *reglen = y_current->y_width;
5903 #endif
5904 return y_current->y_type;
5906 return MAUTO;
5910 * Return the contents of a register as a single allocated string.
5911 * Used for "@r" in expressions and for getreg().
5912 * Returns NULL for error.
5914 char_u *
5915 get_reg_contents(regname, allowexpr, expr_src)
5916 int regname;
5917 int allowexpr; /* allow "=" register */
5918 int expr_src; /* get expression for "=" register */
5920 long i;
5921 char_u *retval;
5922 int allocated;
5923 long len;
5925 /* Don't allow using an expression register inside an expression */
5926 if (regname == '=')
5928 if (allowexpr)
5930 if (expr_src)
5931 return get_expr_line_src();
5932 return get_expr_line();
5934 return NULL;
5937 if (regname == '@') /* "@@" is used for unnamed register */
5938 regname = '"';
5940 /* check for valid regname */
5941 if (regname != NUL && !valid_yank_reg(regname, FALSE))
5942 return NULL;
5944 #ifdef FEAT_CLIPBOARD
5945 regname = may_get_selection(regname);
5946 #endif
5948 if (get_spec_reg(regname, &retval, &allocated, FALSE))
5950 if (retval == NULL)
5951 return NULL;
5952 if (!allocated)
5953 retval = vim_strsave(retval);
5954 return retval;
5957 get_yank_register(regname, FALSE);
5958 if (y_current->y_array == NULL)
5959 return NULL;
5962 * Compute length of resulting string.
5964 len = 0;
5965 for (i = 0; i < y_current->y_size; ++i)
5967 len += (long)STRLEN(y_current->y_array[i]);
5969 * Insert a newline between lines and after last line if
5970 * y_type is MLINE.
5972 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5973 ++len;
5976 retval = lalloc(len + 1, TRUE);
5979 * Copy the lines of the yank register into the string.
5981 if (retval != NULL)
5983 len = 0;
5984 for (i = 0; i < y_current->y_size; ++i)
5986 STRCPY(retval + len, y_current->y_array[i]);
5987 len += (long)STRLEN(retval + len);
5990 * Insert a NL between lines and after the last line if y_type is
5991 * MLINE.
5993 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5994 retval[len++] = '\n';
5996 retval[len] = NUL;
5999 return retval;
6003 * Store string "str" in register "name".
6004 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
6005 * If "must_append" is TRUE, always append to the register. Otherwise append
6006 * if "name" is an uppercase letter.
6007 * Note: "maxlen" and "must_append" don't work for the "/" register.
6008 * Careful: 'str' is modified, you may have to use a copy!
6009 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
6011 void
6012 write_reg_contents(name, str, maxlen, must_append)
6013 int name;
6014 char_u *str;
6015 int maxlen;
6016 int must_append;
6018 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
6021 void
6022 write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
6023 int name;
6024 char_u *str;
6025 int maxlen;
6026 int must_append;
6027 int yank_type;
6028 long block_len;
6030 struct yankreg *old_y_previous, *old_y_current;
6031 long len;
6033 if (maxlen >= 0)
6034 len = maxlen;
6035 else
6036 len = (long)STRLEN(str);
6038 /* Special case: '/' search pattern */
6039 if (name == '/')
6041 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
6042 return;
6045 #ifdef FEAT_EVAL
6046 if (name == '=')
6048 char_u *p, *s;
6050 p = vim_strnsave(str, (int)len);
6051 if (p == NULL)
6052 return;
6053 if (must_append)
6055 s = concat_str(get_expr_line_src(), p);
6056 vim_free(p);
6057 p = s;
6060 set_expr_line(p);
6061 return;
6063 #endif
6065 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6067 emsg_invreg(name);
6068 return;
6071 if (name == '_') /* black hole: nothing to do */
6072 return;
6074 /* Don't want to change the current (unnamed) register */
6075 old_y_previous = y_previous;
6076 old_y_current = y_current;
6078 get_yank_register(name, TRUE);
6079 if (!y_append && !must_append)
6080 free_yank_all();
6081 #ifndef FEAT_VISUAL
6082 /* Just in case - make sure we don't use MBLOCK */
6083 if (yank_type == MBLOCK)
6084 yank_type = MAUTO;
6085 #endif
6086 if (yank_type == MAUTO)
6087 yank_type = ((len > 0 && (str[len - 1] == '\n' || str[len - 1] == '\r'))
6088 ? MLINE : MCHAR);
6089 str_to_reg(y_current, yank_type, str, len, block_len);
6091 # ifdef FEAT_CLIPBOARD
6092 /* Send text of clipboard register to the clipboard. */
6093 may_set_selection();
6094 # endif
6096 /* ':let @" = "val"' should change the meaning of the "" register */
6097 if (name != '"')
6098 y_previous = old_y_previous;
6099 y_current = old_y_current;
6101 #endif /* FEAT_EVAL */
6103 #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6105 * Put a string into a register. When the register is not empty, the string
6106 * is appended.
6108 static void
6109 str_to_reg(y_ptr, type, str, len, blocklen)
6110 struct yankreg *y_ptr; /* pointer to yank register */
6111 int type; /* MCHAR, MLINE or MBLOCK */
6112 char_u *str; /* string to put in register */
6113 long len; /* length of string */
6114 long blocklen; /* width of Visual block */
6116 int lnum;
6117 long start;
6118 long i;
6119 int extra;
6120 int newlines; /* number of lines added */
6121 int extraline = 0; /* extra line at the end */
6122 int append = FALSE; /* append to last line in register */
6123 char_u *s;
6124 char_u **pp;
6125 #ifdef FEAT_VISUAL
6126 long maxlen;
6127 #endif
6129 if (y_ptr->y_array == NULL) /* NULL means empty register */
6130 y_ptr->y_size = 0;
6133 * Count the number of lines within the string
6135 newlines = 0;
6136 for (i = 0; i < len; i++)
6137 if (str[i] == '\n')
6138 ++newlines;
6139 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
6141 extraline = 1;
6142 ++newlines; /* count extra newline at the end */
6144 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
6146 append = TRUE;
6147 --newlines; /* uncount newline when appending first line */
6151 * Allocate an array to hold the pointers to the new register lines.
6152 * If the register was not empty, move the existing lines to the new array.
6154 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
6155 * sizeof(char_u *), TRUE);
6156 if (pp == NULL) /* out of memory */
6157 return;
6158 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
6159 pp[lnum] = y_ptr->y_array[lnum];
6160 vim_free(y_ptr->y_array);
6161 y_ptr->y_array = pp;
6162 #ifdef FEAT_VISUAL
6163 maxlen = 0;
6164 #endif
6167 * Find the end of each line and save it into the array.
6169 for (start = 0; start < len + extraline; start += i + 1)
6171 for (i = start; i < len; ++i) /* find the end of the line */
6172 if (str[i] == '\n')
6173 break;
6174 i -= start; /* i is now length of line */
6175 #ifdef FEAT_VISUAL
6176 if (i > maxlen)
6177 maxlen = i;
6178 #endif
6179 if (append)
6181 --lnum;
6182 extra = (int)STRLEN(y_ptr->y_array[lnum]);
6184 else
6185 extra = 0;
6186 s = alloc((unsigned)(i + extra + 1));
6187 if (s == NULL)
6188 break;
6189 if (extra)
6190 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
6191 if (append)
6192 vim_free(y_ptr->y_array[lnum]);
6193 if (i)
6194 mch_memmove(s + extra, str + start, (size_t)i);
6195 extra += i;
6196 s[extra] = NUL;
6197 y_ptr->y_array[lnum++] = s;
6198 while (--extra >= 0)
6200 if (*s == NUL)
6201 *s = '\n'; /* replace NUL with newline */
6202 ++s;
6204 append = FALSE; /* only first line is appended */
6206 y_ptr->y_type = type;
6207 y_ptr->y_size = lnum;
6208 # ifdef FEAT_VISUAL
6209 if (type == MBLOCK)
6210 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
6211 else
6212 y_ptr->y_width = 0;
6213 # endif
6215 #endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
6217 void
6218 clear_oparg(oap)
6219 oparg_T *oap;
6221 vim_memset(oap, 0, sizeof(oparg_T));
6224 static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
6227 * Count the number of bytes, characters and "words" in a line.
6229 * "Words" are counted by looking for boundaries between non-space and
6230 * space characters. (it seems to produce results that match 'wc'.)
6232 * Return value is byte count; word count for the line is added to "*wc".
6233 * Char count is added to "*cc".
6235 * The function will only examine the first "limit" characters in the
6236 * line, stopping if it encounters an end-of-line (NUL byte). In that
6237 * case, eol_size will be added to the character count to account for
6238 * the size of the EOL character.
6240 static long
6241 line_count_info(line, wc, cc, limit, eol_size)
6242 char_u *line;
6243 long *wc;
6244 long *cc;
6245 long limit;
6246 int eol_size;
6248 long i;
6249 long words = 0;
6250 long chars = 0;
6251 int is_word = 0;
6253 for (i = 0; line[i] && i < limit; )
6255 if (is_word)
6257 if (vim_isspace(line[i]))
6259 words++;
6260 is_word = 0;
6263 else if (!vim_isspace(line[i]))
6264 is_word = 1;
6265 ++chars;
6266 #ifdef FEAT_MBYTE
6267 i += (*mb_ptr2len)(line + i);
6268 #else
6269 ++i;
6270 #endif
6273 if (is_word)
6274 words++;
6275 *wc += words;
6277 /* Add eol_size if the end of line was reached before hitting limit. */
6278 if (line[i] == NUL && i < limit)
6280 i += eol_size;
6281 chars += eol_size;
6283 *cc += chars;
6284 return i;
6288 * Give some info about the position of the cursor (for "g CTRL-G").
6289 * In Visual mode, give some info about the selected region. (In this case,
6290 * the *_count_cursor variables store running totals for the selection.)
6292 void
6293 cursor_pos_info()
6295 char_u *p;
6296 char_u buf1[50];
6297 char_u buf2[40];
6298 linenr_T lnum;
6299 long byte_count = 0;
6300 long byte_count_cursor = 0;
6301 long char_count = 0;
6302 long char_count_cursor = 0;
6303 long word_count = 0;
6304 long word_count_cursor = 0;
6305 int eol_size;
6306 long last_check = 100000L;
6307 #ifdef FEAT_VISUAL
6308 long line_count_selected = 0;
6309 pos_T min_pos, max_pos;
6310 oparg_T oparg;
6311 struct block_def bd;
6312 #endif
6315 * Compute the length of the file in characters.
6317 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6319 MSG(_(no_lines_msg));
6321 else
6323 if (get_fileformat(curbuf) == EOL_DOS)
6324 eol_size = 2;
6325 else
6326 eol_size = 1;
6328 #ifdef FEAT_VISUAL
6329 if (VIsual_active)
6331 if (lt(VIsual, curwin->w_cursor))
6333 min_pos = VIsual;
6334 max_pos = curwin->w_cursor;
6336 else
6338 min_pos = curwin->w_cursor;
6339 max_pos = VIsual;
6341 if (*p_sel == 'e' && max_pos.col > 0)
6342 --max_pos.col;
6344 if (VIsual_mode == Ctrl_V)
6346 #ifdef FEAT_LINEBREAK
6347 char_u * saved_sbr = p_sbr;
6349 /* Make 'sbr' empty for a moment to get the correct size. */
6350 p_sbr = empty_option;
6351 #endif
6352 oparg.is_VIsual = 1;
6353 oparg.block_mode = TRUE;
6354 oparg.op_type = OP_NOP;
6355 getvcols(curwin, &min_pos, &max_pos,
6356 &oparg.start_vcol, &oparg.end_vcol);
6357 #ifdef FEAT_LINEBREAK
6358 p_sbr = saved_sbr;
6359 #endif
6360 if (curwin->w_curswant == MAXCOL)
6361 oparg.end_vcol = MAXCOL;
6362 /* Swap the start, end vcol if needed */
6363 if (oparg.end_vcol < oparg.start_vcol)
6365 oparg.end_vcol += oparg.start_vcol;
6366 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
6367 oparg.end_vcol -= oparg.start_vcol;
6370 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
6372 #endif
6374 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6376 /* Check for a CTRL-C every 100000 characters. */
6377 if (byte_count > last_check)
6379 ui_breakcheck();
6380 if (got_int)
6381 return;
6382 last_check = byte_count + 100000L;
6385 #ifdef FEAT_VISUAL
6386 /* Do extra processing for VIsual mode. */
6387 if (VIsual_active
6388 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
6390 char_u *s = NULL;
6391 long len = 0L;
6393 switch (VIsual_mode)
6395 case Ctrl_V:
6396 # ifdef FEAT_VIRTUALEDIT
6397 virtual_op = virtual_active();
6398 # endif
6399 block_prep(&oparg, &bd, lnum, 0);
6400 # ifdef FEAT_VIRTUALEDIT
6401 virtual_op = MAYBE;
6402 # endif
6403 s = bd.textstart;
6404 len = (long)bd.textlen;
6405 break;
6406 case 'V':
6407 s = ml_get(lnum);
6408 len = MAXCOL;
6409 break;
6410 case 'v':
6412 colnr_T start_col = (lnum == min_pos.lnum)
6413 ? min_pos.col : 0;
6414 colnr_T end_col = (lnum == max_pos.lnum)
6415 ? max_pos.col - start_col + 1 : MAXCOL;
6417 s = ml_get(lnum) + start_col;
6418 len = end_col;
6420 break;
6422 if (s != NULL)
6424 byte_count_cursor += line_count_info(s, &word_count_cursor,
6425 &char_count_cursor, len, eol_size);
6426 if (lnum == curbuf->b_ml.ml_line_count
6427 && !curbuf->b_p_eol
6428 && curbuf->b_p_bin
6429 && (long)STRLEN(s) < len)
6430 byte_count_cursor -= eol_size;
6433 else
6434 #endif
6436 /* In non-visual mode, check for the line the cursor is on */
6437 if (lnum == curwin->w_cursor.lnum)
6439 word_count_cursor += word_count;
6440 char_count_cursor += char_count;
6441 byte_count_cursor = byte_count +
6442 line_count_info(ml_get(lnum),
6443 &word_count_cursor, &char_count_cursor,
6444 (long)(curwin->w_cursor.col + 1), eol_size);
6447 /* Add to the running totals */
6448 byte_count += line_count_info(ml_get(lnum), &word_count,
6449 &char_count, (long)MAXCOL, eol_size);
6452 /* Correction for when last line doesn't have an EOL. */
6453 if (!curbuf->b_p_eol && curbuf->b_p_bin)
6454 byte_count -= eol_size;
6456 #ifdef FEAT_VISUAL
6457 if (VIsual_active)
6459 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
6461 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
6462 &max_pos.col);
6463 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
6464 (long)(oparg.end_vcol - oparg.start_vcol + 1));
6466 else
6467 buf1[0] = NUL;
6469 if (char_count_cursor == byte_count_cursor
6470 && char_count == byte_count)
6471 vim_snprintf((char *)IObuff, IOSIZE,
6472 _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
6473 buf1, line_count_selected,
6474 (long)curbuf->b_ml.ml_line_count,
6475 word_count_cursor, word_count,
6476 byte_count_cursor, byte_count);
6477 else
6478 vim_snprintf((char *)IObuff, IOSIZE,
6479 _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"),
6480 buf1, line_count_selected,
6481 (long)curbuf->b_ml.ml_line_count,
6482 word_count_cursor, word_count,
6483 char_count_cursor, char_count,
6484 byte_count_cursor, byte_count);
6486 else
6487 #endif
6489 p = ml_get_curline();
6490 validate_virtcol();
6491 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
6492 (int)curwin->w_virtcol + 1);
6493 col_print(buf2, sizeof(buf2), (int)STRLEN(p), linetabsize(p));
6495 if (char_count_cursor == byte_count_cursor
6496 && char_count == byte_count)
6497 vim_snprintf((char *)IObuff, IOSIZE,
6498 _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"),
6499 (char *)buf1, (char *)buf2,
6500 (long)curwin->w_cursor.lnum,
6501 (long)curbuf->b_ml.ml_line_count,
6502 word_count_cursor, word_count,
6503 byte_count_cursor, byte_count);
6504 else
6505 vim_snprintf((char *)IObuff, IOSIZE,
6506 _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"),
6507 (char *)buf1, (char *)buf2,
6508 (long)curwin->w_cursor.lnum,
6509 (long)curbuf->b_ml.ml_line_count,
6510 word_count_cursor, word_count,
6511 char_count_cursor, char_count,
6512 byte_count_cursor, byte_count);
6515 #ifdef FEAT_MBYTE
6516 byte_count = bomb_size();
6517 if (byte_count > 0)
6518 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
6519 byte_count);
6520 #endif
6521 /* Don't shorten this message, the user asked for it. */
6522 p = p_shm;
6523 p_shm = (char_u *)"";
6524 msg(IObuff);
6525 p_shm = p;