Add MMRenderer user default
[MacVim.git] / src / ops.c
blobe5db31347ca4495482d7a354f28838fa0bc613c8
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
11 * ops.c: implementation of various operators: op_shift, op_delete, op_tilde,
12 * op_change, op_yank, do_put, do_join
15 #include "vim.h"
18 * Number of registers.
19 * 0 = unnamed register, for normal yanks and puts
20 * 1..9 = registers '1' to '9', for deletes
21 * 10..35 = registers 'a' to 'z'
22 * 36 = delete register '-'
23 * 37 = Selection register '*'. Only if FEAT_CLIPBOARD defined
24 * 38 = Clipboard register '+'. Only if FEAT_CLIPBOARD and FEAT_X11 defined
27 * Symbolic names for some registers.
29 #define DELETION_REGISTER 36
30 #ifdef FEAT_CLIPBOARD
31 # define STAR_REGISTER 37
32 # ifdef FEAT_X11
33 # define PLUS_REGISTER 38
34 # else
35 # define PLUS_REGISTER STAR_REGISTER /* there is only one */
36 # endif
37 #endif
38 #ifdef FEAT_DND
39 # define TILDE_REGISTER (PLUS_REGISTER + 1)
40 #endif
42 #ifdef FEAT_CLIPBOARD
43 # ifdef FEAT_DND
44 # define NUM_REGISTERS (TILDE_REGISTER + 1)
45 # else
46 # define NUM_REGISTERS (PLUS_REGISTER + 1)
47 # endif
48 #else
49 # define NUM_REGISTERS 37
50 #endif
53 * Each yank register is an array of pointers to lines.
55 static struct yankreg
57 char_u **y_array; /* pointer to array of line pointers */
58 linenr_T y_size; /* number of lines in y_array */
59 char_u y_type; /* MLINE, MCHAR or MBLOCK */
60 #ifdef FEAT_VISUAL
61 colnr_T y_width; /* only set if y_type == MBLOCK */
62 #endif
63 } y_regs[NUM_REGISTERS];
65 static struct yankreg *y_current; /* ptr to current yankreg */
66 static int y_append; /* TRUE when appending */
67 static struct yankreg *y_previous = NULL; /* ptr to last written yankreg */
70 * structure used by block_prep, op_delete and op_yank for blockwise operators
71 * also op_change, op_shift, op_insert, op_replace - AKelly
73 struct block_def
75 int startspaces; /* 'extra' cols before first char */
76 int endspaces; /* 'extra' cols after last char */
77 int textlen; /* chars in block */
78 char_u *textstart; /* pointer to 1st char (partially) in block */
79 colnr_T textcol; /* index of chars (partially) in block */
80 colnr_T start_vcol; /* start col of 1st char wholly inside block */
81 colnr_T end_vcol; /* start col of 1st char wholly after block */
82 #ifdef FEAT_VISUALEXTRA
83 int is_short; /* TRUE if line is too short to fit in block */
84 int is_MAX; /* TRUE if curswant==MAXCOL when starting */
85 int is_oneChar; /* TRUE if block within one character */
86 int pre_whitesp; /* screen cols of ws before block */
87 int pre_whitesp_c; /* chars of ws before block */
88 colnr_T end_char_vcols; /* number of vcols of post-block char */
89 #endif
90 colnr_T start_char_vcols; /* number of vcols of pre-block char */
93 #ifdef FEAT_VISUALEXTRA
94 static void shift_block __ARGS((oparg_T *oap, int amount));
95 static void block_insert __ARGS((oparg_T *oap, char_u *s, int b_insert, struct block_def*bdp));
96 #endif
97 static int stuff_yank __ARGS((int, char_u *));
98 static void put_reedit_in_typebuf __ARGS((int silent));
99 static int put_in_typebuf __ARGS((char_u *s, int esc, int colon,
100 int silent));
101 static void stuffescaped __ARGS((char_u *arg, int literally));
102 #ifdef FEAT_MBYTE
103 static void mb_adjust_opend __ARGS((oparg_T *oap));
104 #endif
105 static void free_yank __ARGS((long));
106 static void free_yank_all __ARGS((void));
107 static int yank_copy_line __ARGS((struct block_def *bd, long y_idx));
108 #ifdef FEAT_CLIPBOARD
109 static void copy_yank_reg __ARGS((struct yankreg *reg));
110 # if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
111 static void may_set_selection __ARGS((void));
112 # endif
113 #endif
114 static void dis_msg __ARGS((char_u *p, int skip_esc));
115 #ifdef FEAT_VISUAL
116 static void block_prep __ARGS((oparg_T *oap, struct block_def *, linenr_T, int));
117 #endif
118 #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
119 static void str_to_reg __ARGS((struct yankreg *y_ptr, int type, char_u *str, long len, long blocklen));
120 #endif
121 static int ends_in_white __ARGS((linenr_T lnum));
122 #ifdef FEAT_COMMENTS
123 static int same_leader __ARGS((linenr_T lnum, int, char_u *, int, char_u *));
124 static int fmt_check_par __ARGS((linenr_T, int *, char_u **, int do_comments));
125 #else
126 static int fmt_check_par __ARGS((linenr_T));
127 #endif
130 * The names of operators.
131 * IMPORTANT: Index must correspond with defines in vim.h!!!
132 * The third field indicates whether the operator always works on lines.
134 static char opchars[][3] =
136 {NUL, NUL, FALSE}, /* OP_NOP */
137 {'d', NUL, FALSE}, /* OP_DELETE */
138 {'y', NUL, FALSE}, /* OP_YANK */
139 {'c', NUL, FALSE}, /* OP_CHANGE */
140 {'<', NUL, TRUE}, /* OP_LSHIFT */
141 {'>', NUL, TRUE}, /* OP_RSHIFT */
142 {'!', NUL, TRUE}, /* OP_FILTER */
143 {'g', '~', FALSE}, /* OP_TILDE */
144 {'=', NUL, TRUE}, /* OP_INDENT */
145 {'g', 'q', TRUE}, /* OP_FORMAT */
146 {':', NUL, TRUE}, /* OP_COLON */
147 {'g', 'U', FALSE}, /* OP_UPPER */
148 {'g', 'u', FALSE}, /* OP_LOWER */
149 {'J', NUL, TRUE}, /* DO_JOIN */
150 {'g', 'J', TRUE}, /* DO_JOIN_NS */
151 {'g', '?', FALSE}, /* OP_ROT13 */
152 {'r', NUL, FALSE}, /* OP_REPLACE */
153 {'I', NUL, FALSE}, /* OP_INSERT */
154 {'A', NUL, FALSE}, /* OP_APPEND */
155 {'z', 'f', TRUE}, /* OP_FOLD */
156 {'z', 'o', TRUE}, /* OP_FOLDOPEN */
157 {'z', 'O', TRUE}, /* OP_FOLDOPENREC */
158 {'z', 'c', TRUE}, /* OP_FOLDCLOSE */
159 {'z', 'C', TRUE}, /* OP_FOLDCLOSEREC */
160 {'z', 'd', TRUE}, /* OP_FOLDDEL */
161 {'z', 'D', TRUE}, /* OP_FOLDDELREC */
162 {'g', 'w', TRUE}, /* OP_FORMAT2 */
163 {'g', '@', FALSE}, /* OP_FUNCTION */
167 * Translate a command name into an operator type.
168 * Must only be called with a valid operator name!
171 get_op_type(char1, char2)
172 int char1;
173 int char2;
175 int i;
177 if (char1 == 'r') /* ignore second character */
178 return OP_REPLACE;
179 if (char1 == '~') /* when tilde is an operator */
180 return OP_TILDE;
181 for (i = 0; ; ++i)
182 if (opchars[i][0] == char1 && opchars[i][1] == char2)
183 break;
184 return i;
187 #if defined(FEAT_VISUAL) || defined(PROTO)
189 * Return TRUE if operator "op" always works on whole lines.
192 op_on_lines(op)
193 int op;
195 return opchars[op][2];
197 #endif
200 * Get first operator command character.
201 * Returns 'g' or 'z' if there is another command character.
204 get_op_char(optype)
205 int optype;
207 return opchars[optype][0];
211 * Get second operator command character.
214 get_extra_op_char(optype)
215 int optype;
217 return opchars[optype][1];
221 * op_shift - handle a shift operation
223 void
224 op_shift(oap, curs_top, amount)
225 oparg_T *oap;
226 int curs_top;
227 int amount;
229 long i;
230 int first_char;
231 char_u *s;
232 #ifdef FEAT_VISUAL
233 int block_col = 0;
234 #endif
236 if (u_save((linenr_T)(oap->start.lnum - 1),
237 (linenr_T)(oap->end.lnum + 1)) == FAIL)
238 return;
240 #ifdef FEAT_VISUAL
241 if (oap->block_mode)
242 block_col = curwin->w_cursor.col;
243 #endif
245 for (i = oap->line_count; --i >= 0; )
247 first_char = *ml_get_curline();
248 if (first_char == NUL) /* empty line */
249 curwin->w_cursor.col = 0;
250 #ifdef FEAT_VISUALEXTRA
251 else if (oap->block_mode)
252 shift_block(oap, amount);
253 #endif
254 else
255 /* Move the line right if it doesn't start with '#', 'smartindent'
256 * isn't set or 'cindent' isn't set or '#' isn't in 'cino'. */
257 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
258 if (first_char != '#' || !preprocs_left())
259 #endif
261 shift_line(oap->op_type == OP_LSHIFT, p_sr, amount, FALSE);
263 ++curwin->w_cursor.lnum;
266 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
268 #ifdef FEAT_VISUAL
269 if (oap->block_mode)
271 curwin->w_cursor.lnum = oap->start.lnum;
272 curwin->w_cursor.col = block_col;
274 else
275 #endif
276 if (curs_top) /* put cursor on first line, for ">>" */
278 curwin->w_cursor.lnum = oap->start.lnum;
279 beginline(BL_SOL | BL_FIX); /* shift_line() may have set cursor.col */
281 else
282 --curwin->w_cursor.lnum; /* put cursor on last line, for ":>" */
284 if (oap->line_count > p_report)
286 if (oap->op_type == OP_RSHIFT)
287 s = (char_u *)">";
288 else
289 s = (char_u *)"<";
290 if (oap->line_count == 1)
292 if (amount == 1)
293 sprintf((char *)IObuff, _("1 line %sed 1 time"), s);
294 else
295 sprintf((char *)IObuff, _("1 line %sed %d times"), s, amount);
297 else
299 if (amount == 1)
300 sprintf((char *)IObuff, _("%ld lines %sed 1 time"),
301 oap->line_count, s);
302 else
303 sprintf((char *)IObuff, _("%ld lines %sed %d times"),
304 oap->line_count, s, amount);
306 msg(IObuff);
310 * Set "'[" and "']" marks.
312 curbuf->b_op_start = oap->start;
313 curbuf->b_op_end.lnum = oap->end.lnum;
314 curbuf->b_op_end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
315 if (curbuf->b_op_end.col > 0)
316 --curbuf->b_op_end.col;
320 * shift the current line one shiftwidth left (if left != 0) or right
321 * leaves cursor on first blank in the line
323 void
324 shift_line(left, round, amount, call_changed_bytes)
325 int left;
326 int round;
327 int amount;
328 int call_changed_bytes; /* call changed_bytes() */
330 int count;
331 int i, j;
332 int p_sw = (int)curbuf->b_p_sw;
334 count = get_indent(); /* get current indent */
336 if (round) /* round off indent */
338 i = count / p_sw; /* number of p_sw rounded down */
339 j = count % p_sw; /* extra spaces */
340 if (j && left) /* first remove extra spaces */
341 --amount;
342 if (left)
344 i -= amount;
345 if (i < 0)
346 i = 0;
348 else
349 i += amount;
350 count = i * p_sw;
352 else /* original vi indent */
354 if (left)
356 count -= p_sw * amount;
357 if (count < 0)
358 count = 0;
360 else
361 count += p_sw * amount;
364 /* Set new indent */
365 #ifdef FEAT_VREPLACE
366 if (State & VREPLACE_FLAG)
367 change_indent(INDENT_SET, count, FALSE, NUL, call_changed_bytes);
368 else
369 #endif
370 (void)set_indent(count, call_changed_bytes ? SIN_CHANGED : 0);
373 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
375 * Shift one line of the current block one shiftwidth right or left.
376 * Leaves cursor on first character in block.
378 static void
379 shift_block(oap, amount)
380 oparg_T *oap;
381 int amount;
383 int left = (oap->op_type == OP_LSHIFT);
384 int oldstate = State;
385 int total;
386 char_u *newp, *oldp;
387 int oldcol = curwin->w_cursor.col;
388 int p_sw = (int)curbuf->b_p_sw;
389 int p_ts = (int)curbuf->b_p_ts;
390 struct block_def bd;
391 int incr;
392 colnr_T ws_vcol;
393 int i = 0, j = 0;
394 int len;
395 #ifdef FEAT_RIGHTLEFT
396 int old_p_ri = p_ri;
398 p_ri = 0; /* don't want revins in ident */
399 #endif
401 State = INSERT; /* don't want REPLACE for State */
402 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
403 if (bd.is_short)
404 return;
406 /* total is number of screen columns to be inserted/removed */
407 total = amount * p_sw;
408 oldp = ml_get_curline();
410 if (!left)
413 * 1. Get start vcol
414 * 2. Total ws vcols
415 * 3. Divvy into TABs & spp
416 * 4. Construct new string
418 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
419 ws_vcol = bd.start_vcol - bd.pre_whitesp;
420 if (bd.startspaces)
422 #ifdef FEAT_MBYTE
423 if (has_mbyte)
424 bd.textstart += (*mb_ptr2len)(bd.textstart);
425 #endif
426 ++bd.textstart;
428 for ( ; vim_iswhite(*bd.textstart); )
430 incr = lbr_chartabsize_adv(&bd.textstart, (colnr_T)(bd.start_vcol));
431 total += incr;
432 bd.start_vcol += incr;
434 /* OK, now total=all the VWS reqd, and textstart points at the 1st
435 * non-ws char in the block. */
436 if (!curbuf->b_p_et)
437 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
438 if (i)
439 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
440 else
441 j = total;
442 /* if we're splitting a TAB, allow for it */
443 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
444 len = (int)STRLEN(bd.textstart) + 1;
445 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
446 if (newp == NULL)
447 return;
448 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
449 mch_memmove(newp, oldp, (size_t)bd.textcol);
450 copy_chars(newp + bd.textcol, (size_t)i, TAB);
451 copy_spaces(newp + bd.textcol + i, (size_t)j);
452 /* the end */
453 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
455 else /* left */
457 colnr_T destination_col; /* column to which text in block will
458 be shifted */
459 char_u *verbatim_copy_end; /* end of the part of the line which is
460 copied verbatim */
461 colnr_T verbatim_copy_width;/* the (displayed) width of this part
462 of line */
463 unsigned fill; /* nr of spaces that replace a TAB */
464 unsigned new_line_len; /* the length of the line after the
465 block shift */
466 size_t block_space_width;
467 size_t shift_amount;
468 char_u *non_white = bd.textstart;
469 colnr_T non_white_col;
472 * Firstly, let's find the first non-whitespace character that is
473 * displayed after the block's start column and the character's column
474 * number. Also, let's calculate the width of all the whitespace
475 * characters that are displayed in the block and precede the searched
476 * non-whitespace character.
479 /* If "bd.startspaces" is set, "bd.textstart" points to the character,
480 * the part of which is displayed at the block's beginning. Let's start
481 * searching from the next character. */
482 if (bd.startspaces)
483 mb_ptr_adv(non_white);
485 /* The character's column is in "bd.start_vcol". */
486 non_white_col = bd.start_vcol;
488 while (vim_iswhite(*non_white))
490 incr = lbr_chartabsize_adv(&non_white, non_white_col);
491 non_white_col += incr;
494 block_space_width = non_white_col - oap->start_vcol;
495 /* We will shift by "total" or "block_space_width", whichever is less.
497 shift_amount = (block_space_width < (size_t)total
498 ? block_space_width : (size_t)total);
500 /* The column to which we will shift the text. */
501 destination_col = (colnr_T)(non_white_col - shift_amount);
503 /* Now let's find out how much of the beginning of the line we can
504 * reuse without modification. */
505 verbatim_copy_end = bd.textstart;
506 verbatim_copy_width = bd.start_vcol;
508 /* If "bd.startspaces" is set, "bd.textstart" points to the character
509 * preceding the block. We have to subtract its width to obtain its
510 * column number. */
511 if (bd.startspaces)
512 verbatim_copy_width -= bd.start_char_vcols;
513 while (verbatim_copy_width < destination_col)
515 incr = lbr_chartabsize(verbatim_copy_end, verbatim_copy_width);
516 if (verbatim_copy_width + incr > destination_col)
517 break;
518 verbatim_copy_width += incr;
519 mb_ptr_adv(verbatim_copy_end);
522 /* If "destination_col" is different from the width of the initial
523 * part of the line that will be copied, it means we encountered a tab
524 * character, which we will have to partly replace with spaces. */
525 fill = destination_col - verbatim_copy_width;
527 /* The replacement line will consist of:
528 * - the beginning of the original line up to "verbatim_copy_end",
529 * - "fill" number of spaces,
530 * - the rest of the line, pointed to by non_white. */
531 new_line_len = (unsigned)(verbatim_copy_end - oldp)
532 + fill
533 + (unsigned)STRLEN(non_white) + 1;
535 newp = alloc_check(new_line_len);
536 if (newp == NULL)
537 return;
538 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp));
539 copy_spaces(newp + (verbatim_copy_end - oldp), (size_t)fill);
540 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white);
542 /* replace the line */
543 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
544 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
545 State = oldstate;
546 curwin->w_cursor.col = oldcol;
547 #ifdef FEAT_RIGHTLEFT
548 p_ri = old_p_ri;
549 #endif
551 #endif
553 #ifdef FEAT_VISUALEXTRA
555 * Insert string "s" (b_insert ? before : after) block :AKelly
556 * Caller must prepare for undo.
558 static void
559 block_insert(oap, s, b_insert, bdp)
560 oparg_T *oap;
561 char_u *s;
562 int b_insert;
563 struct block_def *bdp;
565 int p_ts;
566 int count = 0; /* extra spaces to replace a cut TAB */
567 int spaces = 0; /* non-zero if cutting a TAB */
568 colnr_T offset; /* pointer along new line */
569 unsigned s_len; /* STRLEN(s) */
570 char_u *newp, *oldp; /* new, old lines */
571 linenr_T lnum; /* loop var */
572 int oldstate = State;
574 State = INSERT; /* don't want REPLACE for State */
575 s_len = (unsigned)STRLEN(s);
577 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
579 block_prep(oap, bdp, lnum, TRUE);
580 if (bdp->is_short && b_insert)
581 continue; /* OP_INSERT, line ends before block start */
583 oldp = ml_get(lnum);
585 if (b_insert)
587 p_ts = bdp->start_char_vcols;
588 spaces = bdp->startspaces;
589 if (spaces != 0)
590 count = p_ts - 1; /* we're cutting a TAB */
591 offset = bdp->textcol;
593 else /* append */
595 p_ts = bdp->end_char_vcols;
596 if (!bdp->is_short) /* spaces = padding after block */
598 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
599 if (spaces != 0)
600 count = p_ts - 1; /* we're cutting a TAB */
601 offset = bdp->textcol + bdp->textlen - (spaces != 0);
603 else /* spaces = padding to block edge */
605 /* if $ used, just append to EOL (ie spaces==0) */
606 if (!bdp->is_MAX)
607 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
608 count = spaces;
609 offset = bdp->textcol + bdp->textlen;
613 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
614 if (newp == NULL)
615 continue;
617 /* copy up to shifted part */
618 mch_memmove(newp, oldp, (size_t)(offset));
619 oldp += offset;
621 /* insert pre-padding */
622 copy_spaces(newp + offset, (size_t)spaces);
624 /* copy the new text */
625 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
626 offset += s_len;
628 if (spaces && !bdp->is_short)
630 /* insert post-padding */
631 copy_spaces(newp + offset + spaces, (size_t)(p_ts - spaces));
632 /* We're splitting a TAB, don't copy it. */
633 oldp++;
634 /* We allowed for that TAB, remember this now */
635 count++;
638 if (spaces > 0)
639 offset += count;
640 STRMOVE(newp + offset, oldp);
642 ml_replace(lnum, newp, FALSE);
644 if (lnum == oap->end.lnum)
646 /* Set "']" mark to the end of the block instead of the end of
647 * the insert in the first line. */
648 curbuf->b_op_end.lnum = oap->end.lnum;
649 curbuf->b_op_end.col = offset;
651 } /* for all lnum */
653 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
655 State = oldstate;
657 #endif
659 #if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
661 * op_reindent - handle reindenting a block of lines.
663 void
664 op_reindent(oap, how)
665 oparg_T *oap;
666 int (*how) __ARGS((void));
668 long i;
669 char_u *l;
670 int count;
671 linenr_T first_changed = 0;
672 linenr_T last_changed = 0;
673 linenr_T start_lnum = curwin->w_cursor.lnum;
675 /* Don't even try when 'modifiable' is off. */
676 if (!curbuf->b_p_ma)
678 EMSG(_(e_modifiable));
679 return;
682 for (i = oap->line_count; --i >= 0 && !got_int; )
684 /* it's a slow thing to do, so give feedback so there's no worry that
685 * the computer's just hung. */
687 if (i > 1
688 && (i % 50 == 0 || i == oap->line_count - 1)
689 && oap->line_count > p_report)
690 smsg((char_u *)_("%ld lines to indent... "), i);
693 * Be vi-compatible: For lisp indenting the first line is not
694 * indented, unless there is only one line.
696 #ifdef FEAT_LISP
697 if (i != oap->line_count - 1 || oap->line_count == 1
698 || how != get_lisp_indent)
699 #endif
701 l = skipwhite(ml_get_curline());
702 if (*l == NUL) /* empty or blank line */
703 count = 0;
704 else
705 count = how(); /* get the indent for this line */
707 if (set_indent(count, SIN_UNDO))
709 /* did change the indent, call changed_lines() later */
710 if (first_changed == 0)
711 first_changed = curwin->w_cursor.lnum;
712 last_changed = curwin->w_cursor.lnum;
715 ++curwin->w_cursor.lnum;
716 curwin->w_cursor.col = 0; /* make sure it's valid */
719 /* put cursor on first non-blank of indented line */
720 curwin->w_cursor.lnum = start_lnum;
721 beginline(BL_SOL | BL_FIX);
723 /* Mark changed lines so that they will be redrawn. When Visual
724 * highlighting was present, need to continue until the last line. When
725 * there is no change still need to remove the Visual highlighting. */
726 if (last_changed != 0)
727 changed_lines(first_changed, 0,
728 #ifdef FEAT_VISUAL
729 oap->is_VIsual ? start_lnum + oap->line_count :
730 #endif
731 last_changed + 1, 0L);
732 #ifdef FEAT_VISUAL
733 else if (oap->is_VIsual)
734 redraw_curbuf_later(INVERTED);
735 #endif
737 if (oap->line_count > p_report)
739 i = oap->line_count - (i + 1);
740 if (i == 1)
741 MSG(_("1 line indented "));
742 else
743 smsg((char_u *)_("%ld lines indented "), i);
745 /* set '[ and '] marks */
746 curbuf->b_op_start = oap->start;
747 curbuf->b_op_end = oap->end;
749 #endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
751 #if defined(FEAT_EVAL) || defined(PROTO)
753 * Keep the last expression line here, for repeating.
755 static char_u *expr_line = NULL;
758 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
759 * Returns '=' when OK, NUL otherwise.
762 get_expr_register()
764 char_u *new_line;
766 new_line = getcmdline('=', 0L, 0);
767 if (new_line == NULL)
768 return NUL;
769 if (*new_line == NUL) /* use previous line */
770 vim_free(new_line);
771 else
772 set_expr_line(new_line);
773 return '=';
777 * Set the expression for the '=' register.
778 * Argument must be an allocated string.
780 void
781 set_expr_line(new_line)
782 char_u *new_line;
784 vim_free(expr_line);
785 expr_line = new_line;
789 * Get the result of the '=' register expression.
790 * Returns a pointer to allocated memory, or NULL for failure.
792 char_u *
793 get_expr_line()
795 char_u *expr_copy;
796 char_u *rv;
797 static int nested = 0;
799 if (expr_line == NULL)
800 return NULL;
802 /* Make a copy of the expression, because evaluating it may cause it to be
803 * changed. */
804 expr_copy = vim_strsave(expr_line);
805 if (expr_copy == NULL)
806 return NULL;
808 /* When we are invoked recursively limit the evaluation to 10 levels.
809 * Then return the string as-is. */
810 if (nested >= 10)
811 return expr_copy;
813 ++nested;
814 rv = eval_to_string(expr_copy, NULL, TRUE);
815 --nested;
816 vim_free(expr_copy);
817 return rv;
821 * Get the '=' register expression itself, without evaluating it.
823 char_u *
824 get_expr_line_src()
826 if (expr_line == NULL)
827 return NULL;
828 return vim_strsave(expr_line);
830 #endif /* FEAT_EVAL */
833 * Check if 'regname' is a valid name of a yank register.
834 * Note: There is no check for 0 (default register), caller should do this
837 valid_yank_reg(regname, writing)
838 int regname;
839 int writing; /* if TRUE check for writable registers */
841 if ( (regname > 0 && ASCII_ISALNUM(regname))
842 || (!writing && vim_strchr((char_u *)
843 #ifdef FEAT_EVAL
844 "/.%#:="
845 #else
846 "/.%#:"
847 #endif
848 , regname) != NULL)
849 || regname == '"'
850 || regname == '-'
851 || regname == '_'
852 #ifdef FEAT_CLIPBOARD
853 || regname == '*'
854 || regname == '+'
855 #endif
856 #ifdef FEAT_DND
857 || (!writing && regname == '~')
858 #endif
860 return TRUE;
861 return FALSE;
865 * Set y_current and y_append, according to the value of "regname".
866 * Cannot handle the '_' register.
867 * Must only be called with a valid register name!
869 * If regname is 0 and writing, use register 0
870 * If regname is 0 and reading, use previous register
872 void
873 get_yank_register(regname, writing)
874 int regname;
875 int writing;
877 int i;
879 y_append = FALSE;
880 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
882 y_current = y_previous;
883 return;
885 i = regname;
886 if (VIM_ISDIGIT(i))
887 i -= '0';
888 else if (ASCII_ISLOWER(i))
889 i = CharOrdLow(i) + 10;
890 else if (ASCII_ISUPPER(i))
892 i = CharOrdUp(i) + 10;
893 y_append = TRUE;
895 else if (regname == '-')
896 i = DELETION_REGISTER;
897 #ifdef FEAT_CLIPBOARD
898 /* When selection is not available, use register 0 instead of '*' */
899 else if (clip_star.available && regname == '*')
900 i = STAR_REGISTER;
901 /* When clipboard is not available, use register 0 instead of '+' */
902 else if (clip_plus.available && regname == '+')
903 i = PLUS_REGISTER;
904 #endif
905 #ifdef FEAT_DND
906 else if (!writing && regname == '~')
907 i = TILDE_REGISTER;
908 #endif
909 else /* not 0-9, a-z, A-Z or '-': use register 0 */
910 i = 0;
911 y_current = &(y_regs[i]);
912 if (writing) /* remember the register we write into for do_put() */
913 y_previous = y_current;
916 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
918 * When "regname" is a clipboard register, obtain the selection. If it's not
919 * available return zero, otherwise return "regname".
922 may_get_selection(regname)
923 int regname;
925 if (regname == '*')
927 if (!clip_star.available)
928 regname = 0;
929 else
930 clip_get_selection(&clip_star);
932 else if (regname == '+')
934 if (!clip_plus.available)
935 regname = 0;
936 else
937 clip_get_selection(&clip_plus);
939 return regname;
941 #endif
943 #if defined(FEAT_VISUAL) || defined(PROTO)
945 * Obtain the contents of a "normal" register. The register is made empty.
946 * The returned pointer has allocated memory, use put_register() later.
948 void *
949 get_register(name, copy)
950 int name;
951 int copy; /* make a copy, if FALSE make register empty. */
953 struct yankreg *reg;
954 int i;
956 #ifdef FEAT_CLIPBOARD
957 /* When Visual area changed, may have to update selection. Obtain the
958 * selection too. */
959 if (name == '*' && clip_star.available)
961 if (clip_isautosel())
962 clip_update_selection();
963 may_get_selection(name);
965 #endif
967 get_yank_register(name, 0);
968 reg = (struct yankreg *)alloc((unsigned)sizeof(struct yankreg));
969 if (reg != NULL)
971 *reg = *y_current;
972 if (copy)
974 /* If we run out of memory some or all of the lines are empty. */
975 if (reg->y_size == 0)
976 reg->y_array = NULL;
977 else
978 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
979 * reg->y_size));
980 if (reg->y_array != NULL)
982 for (i = 0; i < reg->y_size; ++i)
983 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
986 else
987 y_current->y_array = NULL;
989 return (void *)reg;
993 * Put "reg" into register "name". Free any previous contents and "reg".
995 void
996 put_register(name, reg)
997 int name;
998 void *reg;
1000 get_yank_register(name, 0);
1001 free_yank_all();
1002 *y_current = *(struct yankreg *)reg;
1003 vim_free(reg);
1005 # ifdef FEAT_CLIPBOARD
1006 /* Send text written to clipboard register to the clipboard. */
1007 may_set_selection();
1008 # endif
1010 #endif
1012 #if defined(FEAT_MOUSE) || defined(PROTO)
1014 * return TRUE if the current yank register has type MLINE
1017 yank_register_mline(regname)
1018 int regname;
1020 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1021 return FALSE;
1022 if (regname == '_') /* black hole is always empty */
1023 return FALSE;
1024 get_yank_register(regname, FALSE);
1025 return (y_current->y_type == MLINE);
1027 #endif
1030 * Start or stop recording into a yank register.
1032 * Return FAIL for failure, OK otherwise.
1035 do_record(c)
1036 int c;
1038 char_u *p;
1039 static int regname;
1040 struct yankreg *old_y_previous, *old_y_current;
1041 int retval;
1043 if (Recording == FALSE) /* start recording */
1045 /* registers 0-9, a-z and " are allowed */
1046 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1047 retval = FAIL;
1048 else
1050 Recording = TRUE;
1051 showmode();
1052 regname = c;
1053 retval = OK;
1056 else /* stop recording */
1059 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1060 * needs to be removed again to put it in a register. exec_reg then
1061 * adds the escaping back later.
1063 Recording = FALSE;
1064 MSG("");
1065 p = get_recorded();
1066 if (p == NULL)
1067 retval = FAIL;
1068 else
1070 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1071 vim_unescape_csi(p);
1074 * We don't want to change the default register here, so save and
1075 * restore the current register name.
1077 old_y_previous = y_previous;
1078 old_y_current = y_current;
1080 retval = stuff_yank(regname, p);
1082 y_previous = old_y_previous;
1083 y_current = old_y_current;
1086 return retval;
1090 * Stuff string "p" into yank register "regname" as a single line (append if
1091 * uppercase). "p" must have been alloced.
1093 * return FAIL for failure, OK otherwise
1095 static int
1096 stuff_yank(regname, p)
1097 int regname;
1098 char_u *p;
1100 char_u *lp;
1101 char_u **pp;
1103 /* check for read-only register */
1104 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1106 vim_free(p);
1107 return FAIL;
1109 if (regname == '_') /* black hole: don't do anything */
1111 vim_free(p);
1112 return OK;
1114 get_yank_register(regname, TRUE);
1115 if (y_append && y_current->y_array != NULL)
1117 pp = &(y_current->y_array[y_current->y_size - 1]);
1118 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1119 if (lp == NULL)
1121 vim_free(p);
1122 return FAIL;
1124 STRCPY(lp, *pp);
1125 STRCAT(lp, p);
1126 vim_free(p);
1127 vim_free(*pp);
1128 *pp = lp;
1130 else
1132 free_yank_all();
1133 if ((y_current->y_array =
1134 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1136 vim_free(p);
1137 return FAIL;
1139 y_current->y_array[0] = p;
1140 y_current->y_size = 1;
1141 y_current->y_type = MCHAR; /* used to be MLINE, why? */
1143 return OK;
1146 static int execreg_lastc = NUL;
1149 * execute a yank register: copy it into the stuff buffer
1151 * return FAIL for failure, OK otherwise
1154 do_execreg(regname, colon, addcr, silent)
1155 int regname;
1156 int colon; /* insert ':' before each line */
1157 int addcr; /* always add '\n' to end of line */
1158 int silent; /* set "silent" flag in typeahead buffer */
1160 long i;
1161 char_u *p;
1162 int retval = OK;
1163 int remap;
1165 if (regname == '@') /* repeat previous one */
1167 if (execreg_lastc == NUL)
1169 EMSG(_("E748: No previously used register"));
1170 return FAIL;
1172 regname = execreg_lastc;
1174 /* check for valid regname */
1175 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
1177 emsg_invreg(regname);
1178 return FAIL;
1180 execreg_lastc = regname;
1182 #ifdef FEAT_CLIPBOARD
1183 regname = may_get_selection(regname);
1184 #endif
1186 if (regname == '_') /* black hole: don't stuff anything */
1187 return OK;
1189 #ifdef FEAT_CMDHIST
1190 if (regname == ':') /* use last command line */
1192 if (last_cmdline == NULL)
1194 EMSG(_(e_nolastcmd));
1195 return FAIL;
1197 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
1198 new_last_cmdline = NULL;
1199 /* Escape all control characters with a CTRL-V */
1200 p = vim_strsave_escaped_ext(last_cmdline,
1201 (char_u *)"\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037", Ctrl_V, FALSE);
1202 if (p != NULL)
1204 /* When in Visual mode "'<,'>" will be prepended to the command.
1205 * Remove it when it's already there. */
1206 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
1207 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
1208 else
1209 retval = put_in_typebuf(p, TRUE, TRUE, silent);
1211 vim_free(p);
1213 #endif
1214 #ifdef FEAT_EVAL
1215 else if (regname == '=')
1217 p = get_expr_line();
1218 if (p == NULL)
1219 return FAIL;
1220 retval = put_in_typebuf(p, TRUE, colon, silent);
1221 vim_free(p);
1223 #endif
1224 else if (regname == '.') /* use last inserted text */
1226 p = get_last_insert_save();
1227 if (p == NULL)
1229 EMSG(_(e_noinstext));
1230 return FAIL;
1232 retval = put_in_typebuf(p, FALSE, colon, silent);
1233 vim_free(p);
1235 else
1237 get_yank_register(regname, FALSE);
1238 if (y_current->y_array == NULL)
1239 return FAIL;
1241 /* Disallow remaping for ":@r". */
1242 remap = colon ? REMAP_NONE : REMAP_YES;
1245 * Insert lines into typeahead buffer, from last one to first one.
1247 put_reedit_in_typebuf(silent);
1248 for (i = y_current->y_size; --i >= 0; )
1250 char_u *escaped;
1252 /* insert NL between lines and after last line if type is MLINE */
1253 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1254 || addcr)
1256 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
1257 return FAIL;
1259 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1260 if (escaped == NULL)
1261 return FAIL;
1262 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1263 vim_free(escaped);
1264 if (retval == FAIL)
1265 return FAIL;
1266 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
1267 == FAIL)
1268 return FAIL;
1270 Exec_reg = TRUE; /* disable the 'q' command */
1272 return retval;
1276 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1277 * used only after other typeahead has been processed.
1279 static void
1280 put_reedit_in_typebuf(silent)
1281 int silent;
1283 char_u buf[3];
1285 if (restart_edit != NUL)
1287 if (restart_edit == 'V')
1289 buf[0] = 'g';
1290 buf[1] = 'R';
1291 buf[2] = NUL;
1293 else
1295 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1296 buf[1] = NUL;
1298 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
1299 restart_edit = NUL;
1303 static int
1304 put_in_typebuf(s, esc, colon, silent)
1305 char_u *s;
1306 int esc; /* Escape CSI characters */
1307 int colon; /* add ':' before the line */
1308 int silent;
1310 int retval = OK;
1312 put_reedit_in_typebuf(silent);
1313 if (colon)
1314 retval = ins_typebuf((char_u *)"\n", REMAP_YES, 0, TRUE, silent);
1315 if (retval == OK)
1317 char_u *p;
1319 if (esc)
1320 p = vim_strsave_escape_csi(s);
1321 else
1322 p = s;
1323 if (p == NULL)
1324 retval = FAIL;
1325 else
1326 retval = ins_typebuf(p, REMAP_YES, 0, TRUE, silent);
1327 if (esc)
1328 vim_free(p);
1330 if (colon && retval == OK)
1331 retval = ins_typebuf((char_u *)":", REMAP_YES, 0, TRUE, silent);
1332 return retval;
1336 * Insert a yank register: copy it into the Read buffer.
1337 * Used by CTRL-R command and middle mouse button in insert mode.
1339 * return FAIL for failure, OK otherwise
1342 insert_reg(regname, literally)
1343 int regname;
1344 int literally; /* insert literally, not as if typed */
1346 long i;
1347 int retval = OK;
1348 char_u *arg;
1349 int allocated;
1352 * It is possible to get into an endless loop by having CTRL-R a in
1353 * register a and then, in insert mode, doing CTRL-R a.
1354 * If you hit CTRL-C, the loop will be broken here.
1356 ui_breakcheck();
1357 if (got_int)
1358 return FAIL;
1360 /* check for valid regname */
1361 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1362 return FAIL;
1364 #ifdef FEAT_CLIPBOARD
1365 regname = may_get_selection(regname);
1366 #endif
1368 if (regname == '.') /* insert last inserted text */
1369 retval = stuff_inserted(NUL, 1L, TRUE);
1370 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1372 if (arg == NULL)
1373 return FAIL;
1374 stuffescaped(arg, literally);
1375 if (allocated)
1376 vim_free(arg);
1378 else /* name or number register */
1380 get_yank_register(regname, FALSE);
1381 if (y_current->y_array == NULL)
1382 retval = FAIL;
1383 else
1385 for (i = 0; i < y_current->y_size; ++i)
1387 stuffescaped(y_current->y_array[i], literally);
1389 * Insert a newline between lines and after last line if
1390 * y_type is MLINE.
1392 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1393 stuffcharReadbuff('\n');
1398 return retval;
1402 * Stuff a string into the typeahead buffer, such that edit() will insert it
1403 * literally ("literally" TRUE) or interpret is as typed characters.
1405 static void
1406 stuffescaped(arg, literally)
1407 char_u *arg;
1408 int literally;
1410 int c;
1411 char_u *start;
1413 while (*arg != NUL)
1415 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1416 * stuff K_SPECIAL to get the effect of a special key when "literally"
1417 * is TRUE. */
1418 start = arg;
1419 while ((*arg >= ' '
1420 #ifndef EBCDIC
1421 && *arg < DEL /* EBCDIC: chars above space are normal */
1422 #endif
1424 || (*arg == K_SPECIAL && !literally))
1425 ++arg;
1426 if (arg > start)
1427 stuffReadbuffLen(start, (long)(arg - start));
1429 /* stuff a single special character */
1430 if (*arg != NUL)
1432 #ifdef FEAT_MBYTE
1433 if (has_mbyte)
1434 c = mb_ptr2char_adv(&arg);
1435 else
1436 #endif
1437 c = *arg++;
1438 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1439 stuffcharReadbuff(Ctrl_V);
1440 stuffcharReadbuff(c);
1446 * If "regname" is a special register, return TRUE and store a pointer to its
1447 * value in "argp".
1450 get_spec_reg(regname, argp, allocated, errmsg)
1451 int regname;
1452 char_u **argp;
1453 int *allocated; /* return: TRUE when value was allocated */
1454 int errmsg; /* give error message when failing */
1456 int cnt;
1458 *argp = NULL;
1459 *allocated = FALSE;
1460 switch (regname)
1462 case '%': /* file name */
1463 if (errmsg)
1464 check_fname(); /* will give emsg if not set */
1465 *argp = curbuf->b_fname;
1466 return TRUE;
1468 case '#': /* alternate file name */
1469 *argp = getaltfname(errmsg); /* may give emsg if not set */
1470 return TRUE;
1472 #ifdef FEAT_EVAL
1473 case '=': /* result of expression */
1474 *argp = get_expr_line();
1475 *allocated = TRUE;
1476 return TRUE;
1477 #endif
1479 case ':': /* last command line */
1480 if (last_cmdline == NULL && errmsg)
1481 EMSG(_(e_nolastcmd));
1482 *argp = last_cmdline;
1483 return TRUE;
1485 case '/': /* last search-pattern */
1486 if (last_search_pat() == NULL && errmsg)
1487 EMSG(_(e_noprevre));
1488 *argp = last_search_pat();
1489 return TRUE;
1491 case '.': /* last inserted text */
1492 *argp = get_last_insert_save();
1493 *allocated = TRUE;
1494 if (*argp == NULL && errmsg)
1495 EMSG(_(e_noinstext));
1496 return TRUE;
1498 #ifdef FEAT_SEARCHPATH
1499 case Ctrl_F: /* Filename under cursor */
1500 case Ctrl_P: /* Path under cursor, expand via "path" */
1501 if (!errmsg)
1502 return FALSE;
1503 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
1504 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
1505 *allocated = TRUE;
1506 return TRUE;
1507 #endif
1509 case Ctrl_W: /* word under cursor */
1510 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1511 if (!errmsg)
1512 return FALSE;
1513 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1514 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1515 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1516 *allocated = TRUE;
1517 return TRUE;
1519 case '_': /* black hole: always empty */
1520 *argp = (char_u *)"";
1521 return TRUE;
1524 return FALSE;
1528 * Paste a yank register into the command line.
1529 * Only for non-special registers.
1530 * Used by CTRL-R command in command-line mode
1531 * insert_reg() can't be used here, because special characters from the
1532 * register contents will be interpreted as commands.
1534 * return FAIL for failure, OK otherwise
1537 cmdline_paste_reg(regname, literally, remcr)
1538 int regname;
1539 int literally; /* Insert text literally instead of "as typed" */
1540 int remcr; /* don't add trailing CR */
1542 long i;
1544 get_yank_register(regname, FALSE);
1545 if (y_current->y_array == NULL)
1546 return FAIL;
1548 for (i = 0; i < y_current->y_size; ++i)
1550 cmdline_paste_str(y_current->y_array[i], literally);
1552 /* Insert ^M between lines and after last line if type is MLINE.
1553 * Don't do this when "remcr" is TRUE and the next line is empty. */
1554 if (y_current->y_type == MLINE
1555 || (i < y_current->y_size - 1
1556 && !(remcr
1557 && i == y_current->y_size - 2
1558 && *y_current->y_array[i + 1] == NUL)))
1559 cmdline_paste_str((char_u *)"\r", literally);
1561 /* Check for CTRL-C, in case someone tries to paste a few thousand
1562 * lines and gets bored. */
1563 ui_breakcheck();
1564 if (got_int)
1565 return FAIL;
1567 return OK;
1570 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
1572 * Adjust the register name pointed to with "rp" for the clipboard being
1573 * used always and the clipboard being available.
1575 void
1576 adjust_clip_reg(rp)
1577 int *rp;
1579 /* If no reg. specified, and "unnamed" is in 'clipboard', use '*' reg. */
1580 if (*rp == 0 && clip_unnamed)
1581 *rp = '*';
1582 if (!clip_star.available && *rp == '*')
1583 *rp = 0;
1584 if (!clip_plus.available && *rp == '+')
1585 *rp = 0;
1587 #endif
1590 * op_delete - handle a delete operation
1592 * return FAIL if undo failed, OK otherwise.
1595 op_delete(oap)
1596 oparg_T *oap;
1598 int n;
1599 linenr_T lnum;
1600 char_u *ptr;
1601 #ifdef FEAT_VISUAL
1602 char_u *newp, *oldp;
1603 struct block_def bd;
1604 #endif
1605 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1606 int did_yank = FALSE;
1608 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1609 return OK;
1611 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1612 if (oap->empty)
1613 return u_save_cursor();
1615 if (!curbuf->b_p_ma)
1617 EMSG(_(e_modifiable));
1618 return FAIL;
1621 #ifdef FEAT_CLIPBOARD
1622 adjust_clip_reg(&oap->regname);
1623 #endif
1625 #ifdef FEAT_MBYTE
1626 if (has_mbyte)
1627 mb_adjust_opend(oap);
1628 #endif
1631 * Imitate the strange Vi behaviour: If the delete spans more than one line
1632 * and motion_type == MCHAR and the result is a blank line, make the delete
1633 * linewise. Don't do this for the change command or Visual mode.
1635 if ( oap->motion_type == MCHAR
1636 #ifdef FEAT_VISUAL
1637 && !oap->is_VIsual
1638 && !oap->block_mode
1639 #endif
1640 && oap->line_count > 1
1641 && oap->op_type == OP_DELETE)
1643 ptr = ml_get(oap->end.lnum) + oap->end.col + oap->inclusive;
1644 ptr = skipwhite(ptr);
1645 if (*ptr == NUL && inindent(0))
1646 oap->motion_type = MLINE;
1650 * Check for trying to delete (e.g. "D") in an empty line.
1651 * Note: For the change operator it is ok.
1653 if ( oap->motion_type == MCHAR
1654 && oap->line_count == 1
1655 && oap->op_type == OP_DELETE
1656 && *ml_get(oap->start.lnum) == NUL)
1659 * It's an error to operate on an empty region, when 'E' included in
1660 * 'cpoptions' (Vi compatible).
1662 #ifdef FEAT_VIRTUALEDIT
1663 if (virtual_op)
1664 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1665 * marks as if it happened. */
1666 goto setmarks;
1667 #endif
1668 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1669 beep_flush();
1670 return OK;
1674 * Do a yank of whatever we're about to delete.
1675 * If a yank register was specified, put the deleted text into that register.
1676 * For the black hole register '_' don't yank anything.
1678 if (oap->regname != '_')
1680 if (oap->regname != 0)
1682 /* check for read-only register */
1683 if (!valid_yank_reg(oap->regname, TRUE))
1685 beep_flush();
1686 return OK;
1688 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1689 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1690 did_yank = TRUE;
1694 * Put deleted text into register 1 and shift number registers if the
1695 * delete contains a line break, or when a regname has been specified.
1697 if (oap->regname != 0 || oap->motion_type == MLINE
1698 || oap->line_count > 1 || oap->use_reg_one)
1700 y_current = &y_regs[9];
1701 free_yank_all(); /* free register nine */
1702 for (n = 9; n > 1; --n)
1703 y_regs[n] = y_regs[n - 1];
1704 y_previous = y_current = &y_regs[1];
1705 y_regs[1].y_array = NULL; /* set register one to empty */
1706 if (op_yank(oap, TRUE, FALSE) == OK)
1707 did_yank = TRUE;
1710 /* Yank into small delete register when no register specified and the
1711 * delete is within one line. */
1712 if (oap->regname == 0 && oap->motion_type != MLINE
1713 && oap->line_count == 1)
1715 oap->regname = '-';
1716 get_yank_register(oap->regname, TRUE);
1717 if (op_yank(oap, TRUE, FALSE) == OK)
1718 did_yank = TRUE;
1719 oap->regname = 0;
1723 * If there's too much stuff to fit in the yank register, then get a
1724 * confirmation before doing the delete. This is crude, but simple.
1725 * And it avoids doing a delete of something we can't put back if we
1726 * want.
1728 if (!did_yank)
1730 int msg_silent_save = msg_silent;
1732 msg_silent = 0; /* must display the prompt */
1733 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1734 msg_silent = msg_silent_save;
1735 if (n != 'y')
1737 EMSG(_(e_abort));
1738 return FAIL;
1743 #ifdef FEAT_VISUAL
1745 * block mode delete
1747 if (oap->block_mode)
1749 if (u_save((linenr_T)(oap->start.lnum - 1),
1750 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1751 return FAIL;
1753 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1755 block_prep(oap, &bd, lnum, TRUE);
1756 if (bd.textlen == 0) /* nothing to delete */
1757 continue;
1759 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1760 if (lnum == curwin->w_cursor.lnum)
1762 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1763 # ifdef FEAT_VIRTUALEDIT
1764 curwin->w_cursor.coladd = 0;
1765 # endif
1768 /* n == number of chars deleted
1769 * If we delete a TAB, it may be replaced by several characters.
1770 * Thus the number of characters may increase!
1772 n = bd.textlen - bd.startspaces - bd.endspaces;
1773 oldp = ml_get(lnum);
1774 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1775 if (newp == NULL)
1776 continue;
1777 /* copy up to deleted part */
1778 mch_memmove(newp, oldp, (size_t)bd.textcol);
1779 /* insert spaces */
1780 copy_spaces(newp + bd.textcol,
1781 (size_t)(bd.startspaces + bd.endspaces));
1782 /* copy the part after the deleted part */
1783 oldp += bd.textcol + bd.textlen;
1784 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
1785 /* replace the line */
1786 ml_replace(lnum, newp, FALSE);
1789 check_cursor_col();
1790 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1791 oap->end.lnum + 1, 0L);
1792 oap->line_count = 0; /* no lines deleted */
1794 else
1795 #endif
1796 if (oap->motion_type == MLINE)
1798 if (oap->op_type == OP_CHANGE)
1800 /* Delete the lines except the first one. Temporarily move the
1801 * cursor to the next line. Save the current line number, if the
1802 * last line is deleted it may be changed.
1804 if (oap->line_count > 1)
1806 lnum = curwin->w_cursor.lnum;
1807 ++curwin->w_cursor.lnum;
1808 del_lines((long)(oap->line_count - 1), TRUE);
1809 curwin->w_cursor.lnum = lnum;
1811 if (u_save_cursor() == FAIL)
1812 return FAIL;
1813 if (curbuf->b_p_ai) /* don't delete indent */
1815 beginline(BL_WHITE); /* cursor on first non-white */
1816 did_ai = TRUE; /* delete the indent when ESC hit */
1817 ai_col = curwin->w_cursor.col;
1819 else
1820 beginline(0); /* cursor in column 0 */
1821 truncate_line(FALSE); /* delete the rest of the line */
1822 /* leave cursor past last char in line */
1823 if (oap->line_count > 1)
1824 u_clearline(); /* "U" command not possible after "2cc" */
1826 else
1828 del_lines(oap->line_count, TRUE);
1829 beginline(BL_WHITE | BL_FIX);
1830 u_clearline(); /* "U" command not possible after "dd" */
1833 else
1835 #ifdef FEAT_VIRTUALEDIT
1836 if (virtual_op)
1838 int endcol = 0;
1840 /* For virtualedit: break the tabs that are partly included. */
1841 if (gchar_pos(&oap->start) == '\t')
1843 if (u_save_cursor() == FAIL) /* save first line for undo */
1844 return FAIL;
1845 if (oap->line_count == 1)
1846 endcol = getviscol2(oap->end.col, oap->end.coladd);
1847 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1848 oap->start = curwin->w_cursor;
1849 if (oap->line_count == 1)
1851 coladvance(endcol);
1852 oap->end.col = curwin->w_cursor.col;
1853 oap->end.coladd = curwin->w_cursor.coladd;
1854 curwin->w_cursor = oap->start;
1858 /* Break a tab only when it's included in the area. */
1859 if (gchar_pos(&oap->end) == '\t'
1860 && (int)oap->end.coladd < oap->inclusive)
1862 /* save last line for undo */
1863 if (u_save((linenr_T)(oap->end.lnum - 1),
1864 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1865 return FAIL;
1866 curwin->w_cursor = oap->end;
1867 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1868 oap->end = curwin->w_cursor;
1869 curwin->w_cursor = oap->start;
1872 #endif
1874 if (oap->line_count == 1) /* delete characters within one line */
1876 if (u_save_cursor() == FAIL) /* save line for undo */
1877 return FAIL;
1879 /* if 'cpoptions' contains '$', display '$' at end of change */
1880 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
1881 && oap->op_type == OP_CHANGE
1882 && oap->end.lnum == curwin->w_cursor.lnum
1883 #ifdef FEAT_VISUAL
1884 && !oap->is_VIsual
1885 #endif
1887 display_dollar(oap->end.col - !oap->inclusive);
1889 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1891 #ifdef FEAT_VIRTUALEDIT
1892 if (virtual_op)
1894 /* fix up things for virtualedit-delete:
1895 * break the tabs which are going to get in our way
1897 char_u *curline = ml_get_curline();
1898 int len = (int)STRLEN(curline);
1900 if (oap->end.coladd != 0
1901 && (int)oap->end.col >= len - 1
1902 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1903 n++;
1904 /* Delete at least one char (e.g, when on a control char). */
1905 if (n == 0 && oap->start.coladd != oap->end.coladd)
1906 n = 1;
1908 /* When deleted a char in the line, reset coladd. */
1909 if (gchar_cursor() != NUL)
1910 curwin->w_cursor.coladd = 0;
1912 #endif
1913 (void)del_bytes((long)n, !virtual_op, oap->op_type == OP_DELETE
1914 #ifdef FEAT_VISUAL
1915 && !oap->is_VIsual
1916 #endif
1919 else /* delete characters between lines */
1921 pos_T curpos;
1923 /* save deleted and changed lines for undo */
1924 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1925 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1926 return FAIL;
1928 truncate_line(TRUE); /* delete from cursor to end of line */
1930 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1931 ++curwin->w_cursor.lnum;
1932 del_lines((long)(oap->line_count - 2), FALSE);
1934 /* delete from start of line until op_end */
1935 curwin->w_cursor.col = 0;
1936 (void)del_bytes((long)(oap->end.col + 1 - !oap->inclusive),
1937 !virtual_op, oap->op_type == OP_DELETE
1938 #ifdef FEAT_VISUAL
1939 && !oap->is_VIsual
1940 #endif
1942 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
1944 (void)do_join(FALSE);
1948 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
1950 #ifdef FEAT_VIRTUALEDIT
1951 setmarks:
1952 #endif
1953 #ifdef FEAT_VISUAL
1954 if (oap->block_mode)
1956 curbuf->b_op_end.lnum = oap->end.lnum;
1957 curbuf->b_op_end.col = oap->start.col;
1959 else
1960 #endif
1961 curbuf->b_op_end = oap->start;
1962 curbuf->b_op_start = oap->start;
1964 return OK;
1967 #ifdef FEAT_MBYTE
1969 * Adjust end of operating area for ending on a multi-byte character.
1970 * Used for deletion.
1972 static void
1973 mb_adjust_opend(oap)
1974 oparg_T *oap;
1976 char_u *p;
1978 if (oap->inclusive)
1980 p = ml_get(oap->end.lnum);
1981 oap->end.col += mb_tail_off(p, p + oap->end.col);
1984 #endif
1986 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1988 * Replace a whole area with one character.
1991 op_replace(oap, c)
1992 oparg_T *oap;
1993 int c;
1995 int n, numc;
1996 #ifdef FEAT_MBYTE
1997 int num_chars;
1998 #endif
1999 char_u *newp, *oldp;
2000 size_t oldlen;
2001 struct block_def bd;
2003 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2004 return OK; /* nothing to do */
2006 #ifdef FEAT_MBYTE
2007 if (has_mbyte)
2008 mb_adjust_opend(oap);
2009 #endif
2011 if (u_save((linenr_T)(oap->start.lnum - 1),
2012 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2013 return FAIL;
2016 * block mode replace
2018 if (oap->block_mode)
2020 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2021 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2023 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
2024 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2025 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2026 continue; /* nothing to replace */
2028 /* n == number of extra chars required
2029 * If we split a TAB, it may be replaced by several characters.
2030 * Thus the number of characters may increase!
2032 #ifdef FEAT_VIRTUALEDIT
2033 /* If the range starts in virtual space, count the initial
2034 * coladd offset as part of "startspaces" */
2035 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2037 pos_T vpos;
2039 vpos.lnum = curwin->w_cursor.lnum;
2040 getvpos(&vpos, oap->start_vcol);
2041 bd.startspaces += vpos.coladd;
2042 n = bd.startspaces;
2044 else
2045 #endif
2046 /* allow for pre spaces */
2047 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2049 /* allow for post spp */
2050 n += (bd.endspaces
2051 #ifdef FEAT_VIRTUALEDIT
2052 && !bd.is_oneChar
2053 #endif
2054 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2055 /* Figure out how many characters to replace. */
2056 numc = oap->end_vcol - oap->start_vcol + 1;
2057 if (bd.is_short && (!virtual_op || bd.is_MAX))
2058 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2060 #ifdef FEAT_MBYTE
2061 /* A double-wide character can be replaced only up to half the
2062 * times. */
2063 if ((*mb_char2cells)(c) > 1)
2065 if ((numc & 1) && !bd.is_short)
2067 ++bd.endspaces;
2068 ++n;
2070 numc = numc / 2;
2073 /* Compute bytes needed, move character count to num_chars. */
2074 num_chars = numc;
2075 numc *= (*mb_char2len)(c);
2076 #endif
2077 /* oldlen includes textlen, so don't double count */
2078 n += numc - bd.textlen;
2080 oldp = ml_get_curline();
2081 oldlen = STRLEN(oldp);
2082 newp = alloc_check((unsigned)oldlen + 1 + n);
2083 if (newp == NULL)
2084 continue;
2085 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2086 /* copy up to deleted part */
2087 mch_memmove(newp, oldp, (size_t)bd.textcol);
2088 oldp += bd.textcol + bd.textlen;
2089 /* insert pre-spaces */
2090 copy_spaces(newp + bd.textcol, (size_t)bd.startspaces);
2091 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
2092 #ifdef FEAT_MBYTE
2093 if (has_mbyte)
2095 n = (int)STRLEN(newp);
2096 while (--num_chars >= 0)
2097 n += (*mb_char2bytes)(c, newp + n);
2099 else
2100 #endif
2101 copy_chars(newp + STRLEN(newp), (size_t)numc, c);
2102 if (!bd.is_short)
2104 /* insert post-spaces */
2105 copy_spaces(newp + STRLEN(newp), (size_t)bd.endspaces);
2106 /* copy the part after the changed part */
2107 STRMOVE(newp + STRLEN(newp), oldp);
2109 /* replace the line */
2110 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
2113 else
2116 * MCHAR and MLINE motion replace.
2118 if (oap->motion_type == MLINE)
2120 oap->start.col = 0;
2121 curwin->w_cursor.col = 0;
2122 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2123 if (oap->end.col)
2124 --oap->end.col;
2126 else if (!oap->inclusive)
2127 dec(&(oap->end));
2129 while (ltoreq(curwin->w_cursor, oap->end))
2131 n = gchar_cursor();
2132 if (n != NUL)
2134 #ifdef FEAT_MBYTE
2135 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2137 /* This is slow, but it handles replacing a single-byte
2138 * with a multi-byte and the other way around. */
2139 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
2140 n = State;
2141 State = REPLACE;
2142 ins_char(c);
2143 State = n;
2144 /* Backup to the replaced character. */
2145 dec_cursor();
2147 else
2148 #endif
2150 #ifdef FEAT_VIRTUALEDIT
2151 if (n == TAB)
2153 int end_vcol = 0;
2155 if (curwin->w_cursor.lnum == oap->end.lnum)
2157 /* oap->end has to be recalculated when
2158 * the tab breaks */
2159 end_vcol = getviscol2(oap->end.col,
2160 oap->end.coladd);
2162 coladvance_force(getviscol());
2163 if (curwin->w_cursor.lnum == oap->end.lnum)
2164 getvpos(&oap->end, end_vcol);
2166 #endif
2167 pchar(curwin->w_cursor, c);
2170 #ifdef FEAT_VIRTUALEDIT
2171 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2173 int virtcols = oap->end.coladd;
2175 if (curwin->w_cursor.lnum == oap->start.lnum
2176 && oap->start.col == oap->end.col && oap->start.coladd)
2177 virtcols -= oap->start.coladd;
2179 /* oap->end has been trimmed so it's effectively inclusive;
2180 * as a result an extra +1 must be counted so we don't
2181 * trample the NUL byte. */
2182 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2183 curwin->w_cursor.col -= (virtcols + 1);
2184 for (; virtcols >= 0; virtcols--)
2186 pchar(curwin->w_cursor, c);
2187 if (inc(&curwin->w_cursor) == -1)
2188 break;
2191 #endif
2193 /* Advance to next character, stop at the end of the file. */
2194 if (inc_cursor() == -1)
2195 break;
2199 curwin->w_cursor = oap->start;
2200 check_cursor();
2201 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2203 /* Set "'[" and "']" marks. */
2204 curbuf->b_op_start = oap->start;
2205 curbuf->b_op_end = oap->end;
2207 return OK;
2209 #endif
2211 static int swapchars __ARGS((int op_type, pos_T *pos, int length));
2214 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2216 void
2217 op_tilde(oap)
2218 oparg_T *oap;
2220 pos_T pos;
2221 #ifdef FEAT_VISUAL
2222 struct block_def bd;
2223 #endif
2224 int did_change = FALSE;
2226 if (u_save((linenr_T)(oap->start.lnum - 1),
2227 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2228 return;
2230 pos = oap->start;
2231 #ifdef FEAT_VISUAL
2232 if (oap->block_mode) /* Visual block mode */
2234 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2236 int one_change;
2238 block_prep(oap, &bd, pos.lnum, FALSE);
2239 pos.col = bd.textcol;
2240 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2241 did_change |= one_change;
2243 # ifdef FEAT_NETBEANS_INTG
2244 if (usingNetbeans && one_change)
2246 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2248 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2249 (long)bd.textlen);
2250 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
2251 &ptr[bd.textcol], bd.textlen);
2253 # endif
2255 if (did_change)
2256 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2258 else /* not block mode */
2259 #endif
2261 if (oap->motion_type == MLINE)
2263 oap->start.col = 0;
2264 pos.col = 0;
2265 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2266 if (oap->end.col)
2267 --oap->end.col;
2269 else if (!oap->inclusive)
2270 dec(&(oap->end));
2272 if (pos.lnum == oap->end.lnum)
2273 did_change = swapchars(oap->op_type, &pos,
2274 oap->end.col - pos.col + 1);
2275 else
2276 for (;;)
2278 did_change |= swapchars(oap->op_type, &pos,
2279 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2280 (int)STRLEN(ml_get_pos(&pos)));
2281 if (ltoreq(oap->end, pos) || inc(&pos) == -1)
2282 break;
2284 if (did_change)
2286 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2287 0L);
2288 #ifdef FEAT_NETBEANS_INTG
2289 if (usingNetbeans && did_change)
2291 char_u *ptr;
2292 int count;
2294 pos = oap->start;
2295 while (pos.lnum < oap->end.lnum)
2297 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2298 count = (int)STRLEN(ptr) - pos.col;
2299 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
2300 netbeans_inserted(curbuf, pos.lnum, pos.col,
2301 &ptr[pos.col], count);
2302 pos.col = 0;
2303 pos.lnum++;
2305 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2306 count = oap->end.col - pos.col + 1;
2307 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
2308 netbeans_inserted(curbuf, pos.lnum, pos.col,
2309 &ptr[pos.col], count);
2311 #endif
2315 #ifdef FEAT_VISUAL
2316 if (!did_change && oap->is_VIsual)
2317 /* No change: need to remove the Visual selection */
2318 redraw_curbuf_later(INVERTED);
2319 #endif
2322 * Set '[ and '] marks.
2324 curbuf->b_op_start = oap->start;
2325 curbuf->b_op_end = oap->end;
2327 if (oap->line_count > p_report)
2329 if (oap->line_count == 1)
2330 MSG(_("1 line changed"));
2331 else
2332 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2337 * Invoke swapchar() on "length" bytes at position "pos".
2338 * "pos" is advanced to just after the changed characters.
2339 * "length" is rounded up to include the whole last multi-byte character.
2340 * Also works correctly when the number of bytes changes.
2341 * Returns TRUE if some character was changed.
2343 static int
2344 swapchars(op_type, pos, length)
2345 int op_type;
2346 pos_T *pos;
2347 int length;
2349 int todo;
2350 int did_change = 0;
2352 for (todo = length; todo > 0; --todo)
2354 # ifdef FEAT_MBYTE
2355 if (has_mbyte)
2356 /* we're counting bytes, not characters */
2357 todo -= (*mb_ptr2len)(ml_get_pos(pos)) - 1;
2358 # endif
2359 did_change |= swapchar(op_type, pos);
2360 if (inc(pos) == -1) /* at end of file */
2361 break;
2363 return did_change;
2367 * If op_type == OP_UPPER: make uppercase,
2368 * if op_type == OP_LOWER: make lowercase,
2369 * if op_type == OP_ROT13: do rot13 encoding,
2370 * else swap case of character at 'pos'
2371 * returns TRUE when something actually changed.
2374 swapchar(op_type, pos)
2375 int op_type;
2376 pos_T *pos;
2378 int c;
2379 int nc;
2381 c = gchar_pos(pos);
2383 /* Only do rot13 encoding for ASCII characters. */
2384 if (c >= 0x80 && op_type == OP_ROT13)
2385 return FALSE;
2387 #ifdef FEAT_MBYTE
2388 if (op_type == OP_UPPER && c == 0xdf
2389 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
2391 pos_T sp = curwin->w_cursor;
2393 /* Special handling of German sharp s: change to "SS". */
2394 curwin->w_cursor = *pos;
2395 del_char(FALSE);
2396 ins_char('S');
2397 ins_char('S');
2398 curwin->w_cursor = sp;
2399 inc(pos);
2402 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2403 return FALSE;
2404 #endif
2405 nc = c;
2406 if (MB_ISLOWER(c))
2408 if (op_type == OP_ROT13)
2409 nc = ROT13(c, 'a');
2410 else if (op_type != OP_LOWER)
2411 nc = MB_TOUPPER(c);
2413 else if (MB_ISUPPER(c))
2415 if (op_type == OP_ROT13)
2416 nc = ROT13(c, 'A');
2417 else if (op_type != OP_UPPER)
2418 nc = MB_TOLOWER(c);
2420 if (nc != c)
2422 #ifdef FEAT_MBYTE
2423 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2425 pos_T sp = curwin->w_cursor;
2427 curwin->w_cursor = *pos;
2428 del_char(FALSE);
2429 ins_char(nc);
2430 curwin->w_cursor = sp;
2432 else
2433 #endif
2434 pchar(*pos, nc);
2435 return TRUE;
2437 return FALSE;
2440 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2442 * op_insert - Insert and append operators for Visual mode.
2444 void
2445 op_insert(oap, count1)
2446 oparg_T *oap;
2447 long count1;
2449 long ins_len, pre_textlen = 0;
2450 char_u *firstline, *ins_text;
2451 struct block_def bd;
2452 int i;
2454 /* edit() changes this - record it for OP_APPEND */
2455 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2457 /* vis block is still marked. Get rid of it now. */
2458 curwin->w_cursor.lnum = oap->start.lnum;
2459 update_screen(INVERTED);
2461 if (oap->block_mode)
2463 #ifdef FEAT_VIRTUALEDIT
2464 /* When 'virtualedit' is used, need to insert the extra spaces before
2465 * doing block_prep(). When only "block" is used, virtual edit is
2466 * already disabled, but still need it when calling
2467 * coladvance_force(). */
2468 if (curwin->w_cursor.coladd > 0)
2470 int old_ve_flags = ve_flags;
2472 ve_flags = VE_ALL;
2473 if (u_save_cursor() == FAIL)
2474 return;
2475 coladvance_force(oap->op_type == OP_APPEND
2476 ? oap->end_vcol + 1 : getviscol());
2477 if (oap->op_type == OP_APPEND)
2478 --curwin->w_cursor.col;
2479 ve_flags = old_ve_flags;
2481 #endif
2482 /* Get the info about the block before entering the text */
2483 block_prep(oap, &bd, oap->start.lnum, TRUE);
2484 firstline = ml_get(oap->start.lnum) + bd.textcol;
2485 if (oap->op_type == OP_APPEND)
2486 firstline += bd.textlen;
2487 pre_textlen = (long)STRLEN(firstline);
2490 if (oap->op_type == OP_APPEND)
2492 if (oap->block_mode
2493 #ifdef FEAT_VIRTUALEDIT
2494 && curwin->w_cursor.coladd == 0
2495 #endif
2498 /* Move the cursor to the character right of the block. */
2499 curwin->w_set_curswant = TRUE;
2500 while (*ml_get_cursor() != NUL
2501 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2502 ++curwin->w_cursor.col;
2503 if (bd.is_short && !bd.is_MAX)
2505 /* First line was too short, make it longer and adjust the
2506 * values in "bd". */
2507 if (u_save_cursor() == FAIL)
2508 return;
2509 for (i = 0; i < bd.endspaces; ++i)
2510 ins_char(' ');
2511 bd.textlen += bd.endspaces;
2514 else
2516 curwin->w_cursor = oap->end;
2517 check_cursor_col();
2519 /* Works just like an 'i'nsert on the next character. */
2520 if (!lineempty(curwin->w_cursor.lnum)
2521 && oap->start_vcol != oap->end_vcol)
2522 inc_cursor();
2526 edit(NUL, FALSE, (linenr_T)count1);
2528 /* If user has moved off this line, we don't know what to do, so do
2529 * nothing.
2530 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2531 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
2532 return;
2534 if (oap->block_mode)
2536 struct block_def bd2;
2539 * Spaces and tabs in the indent may have changed to other spaces and
2540 * tabs. Get the starting column again and correct the length.
2541 * Don't do this when "$" used, end-of-line will have changed.
2543 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2544 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2546 if (oap->op_type == OP_APPEND)
2548 pre_textlen += bd2.textlen - bd.textlen;
2549 if (bd2.endspaces)
2550 --bd2.textlen;
2552 bd.textcol = bd2.textcol;
2553 bd.textlen = bd2.textlen;
2557 * Subsequent calls to ml_get() flush the firstline data - take a
2558 * copy of the required string.
2560 firstline = ml_get(oap->start.lnum) + bd.textcol;
2561 if (oap->op_type == OP_APPEND)
2562 firstline += bd.textlen;
2563 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
2565 ins_text = vim_strnsave(firstline, (int)ins_len);
2566 if (ins_text != NULL)
2568 /* block handled here */
2569 if (u_save(oap->start.lnum,
2570 (linenr_T)(oap->end.lnum + 1)) == OK)
2571 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2572 &bd);
2574 curwin->w_cursor.col = oap->start.col;
2575 check_cursor();
2576 vim_free(ins_text);
2581 #endif
2584 * op_change - handle a change operation
2586 * return TRUE if edit() returns because of a CTRL-O command
2589 op_change(oap)
2590 oparg_T *oap;
2592 colnr_T l;
2593 int retval;
2594 #ifdef FEAT_VISUALEXTRA
2595 long offset;
2596 linenr_T linenr;
2597 long ins_len;
2598 long pre_textlen = 0;
2599 long pre_indent = 0;
2600 char_u *firstline;
2601 char_u *ins_text, *newp, *oldp;
2602 struct block_def bd;
2603 #endif
2605 l = oap->start.col;
2606 if (oap->motion_type == MLINE)
2608 l = 0;
2609 #ifdef FEAT_SMARTINDENT
2610 if (!p_paste && curbuf->b_p_si
2611 # ifdef FEAT_CINDENT
2612 && !curbuf->b_p_cin
2613 # endif
2615 can_si = TRUE; /* It's like opening a new line, do si */
2616 #endif
2619 /* First delete the text in the region. In an empty buffer only need to
2620 * save for undo */
2621 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2623 if (u_save_cursor() == FAIL)
2624 return FALSE;
2626 else if (op_delete(oap) == FAIL)
2627 return FALSE;
2629 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
2630 && !virtual_op)
2631 inc_cursor();
2633 #ifdef FEAT_VISUALEXTRA
2634 /* check for still on same line (<CR> in inserted text meaningless) */
2635 /* skip blank lines too */
2636 if (oap->block_mode)
2638 # ifdef FEAT_VIRTUALEDIT
2639 /* Add spaces before getting the current line length. */
2640 if (virtual_op && (curwin->w_cursor.coladd > 0
2641 || gchar_cursor() == NUL))
2642 coladvance_force(getviscol());
2643 # endif
2644 firstline = ml_get(oap->start.lnum);
2645 pre_textlen = (long)STRLEN(firstline);
2646 pre_indent = (long)(skipwhite(firstline) - firstline);
2647 bd.textcol = curwin->w_cursor.col;
2649 #endif
2651 #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2652 if (oap->motion_type == MLINE)
2653 fix_indent();
2654 #endif
2656 retval = edit(NUL, FALSE, (linenr_T)1);
2658 #ifdef FEAT_VISUALEXTRA
2660 * In Visual block mode, handle copying the new text to all lines of the
2661 * block.
2662 * Don't repeat the insert when Insert mode ended with CTRL-C.
2664 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
2666 /* Auto-indenting may have changed the indent. If the cursor was past
2667 * the indent, exclude that indent change from the inserted text. */
2668 firstline = ml_get(oap->start.lnum);
2669 if (bd.textcol > (colnr_T)pre_indent)
2671 long new_indent = (long)(skipwhite(firstline) - firstline);
2673 pre_textlen += new_indent - pre_indent;
2674 bd.textcol += new_indent - pre_indent;
2677 ins_len = (long)STRLEN(firstline) - pre_textlen;
2678 if (ins_len > 0)
2680 /* Subsequent calls to ml_get() flush the firstline data - take a
2681 * copy of the inserted text. */
2682 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2684 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
2685 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2686 linenr++)
2688 block_prep(oap, &bd, linenr, TRUE);
2689 if (!bd.is_short || virtual_op)
2691 # ifdef FEAT_VIRTUALEDIT
2692 pos_T vpos;
2694 /* If the block starts in virtual space, count the
2695 * initial coladd offset as part of "startspaces" */
2696 if (bd.is_short)
2698 vpos.lnum = linenr;
2699 (void)getvpos(&vpos, oap->start_vcol);
2701 else
2702 vpos.coladd = 0;
2703 # endif
2704 oldp = ml_get(linenr);
2705 newp = alloc_check((unsigned)(STRLEN(oldp)
2706 # ifdef FEAT_VIRTUALEDIT
2707 + vpos.coladd
2708 # endif
2709 + ins_len + 1));
2710 if (newp == NULL)
2711 continue;
2712 /* copy up to block start */
2713 mch_memmove(newp, oldp, (size_t)bd.textcol);
2714 offset = bd.textcol;
2715 # ifdef FEAT_VIRTUALEDIT
2716 copy_spaces(newp + offset, (size_t)vpos.coladd);
2717 offset += vpos.coladd;
2718 # endif
2719 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2720 offset += ins_len;
2721 oldp += bd.textcol;
2722 STRMOVE(newp + offset, oldp);
2723 ml_replace(linenr, newp, FALSE);
2726 check_cursor();
2728 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2730 vim_free(ins_text);
2733 #endif
2735 return retval;
2739 * set all the yank registers to empty (called from main())
2741 void
2742 init_yank()
2744 int i;
2746 for (i = 0; i < NUM_REGISTERS; ++i)
2747 y_regs[i].y_array = NULL;
2750 #if defined(EXITFREE) || defined(PROTO)
2751 void
2752 clear_registers()
2754 int i;
2756 for (i = 0; i < NUM_REGISTERS; ++i)
2758 y_current = &y_regs[i];
2759 if (y_current->y_array != NULL)
2760 free_yank_all();
2763 #endif
2766 * Free "n" lines from the current yank register.
2767 * Called for normal freeing and in case of error.
2769 static void
2770 free_yank(n)
2771 long n;
2773 if (y_current->y_array != NULL)
2775 long i;
2777 for (i = n; --i >= 0; )
2779 #ifdef AMIGA /* only for very slow machines */
2780 if ((i & 1023) == 1023) /* this may take a while */
2783 * This message should never cause a hit-return message.
2784 * Overwrite this message with any next message.
2786 ++no_wait_return;
2787 smsg((char_u *)_("freeing %ld lines"), i + 1);
2788 --no_wait_return;
2789 msg_didout = FALSE;
2790 msg_col = 0;
2792 #endif
2793 vim_free(y_current->y_array[i]);
2795 vim_free(y_current->y_array);
2796 y_current->y_array = NULL;
2797 #ifdef AMIGA
2798 if (n >= 1000)
2799 MSG("");
2800 #endif
2804 static void
2805 free_yank_all()
2807 free_yank(y_current->y_size);
2811 * Yank the text between "oap->start" and "oap->end" into a yank register.
2812 * If we are to append (uppercase register), we first yank into a new yank
2813 * register and then concatenate the old and the new one (so we keep the old
2814 * one in case of out-of-memory).
2816 * return FAIL for failure, OK otherwise
2819 op_yank(oap, deleting, mess)
2820 oparg_T *oap;
2821 int deleting;
2822 int mess;
2824 long y_idx; /* index in y_array[] */
2825 struct yankreg *curr; /* copy of y_current */
2826 struct yankreg newreg; /* new yank register when appending */
2827 char_u **new_ptr;
2828 linenr_T lnum; /* current line number */
2829 long j;
2830 int yanktype = oap->motion_type;
2831 long yanklines = oap->line_count;
2832 linenr_T yankendlnum = oap->end.lnum;
2833 char_u *p;
2834 char_u *pnew;
2835 struct block_def bd;
2837 /* check for read-only register */
2838 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2840 beep_flush();
2841 return FAIL;
2843 if (oap->regname == '_') /* black hole: nothing to do */
2844 return OK;
2846 #ifdef FEAT_CLIPBOARD
2847 if (!clip_star.available && oap->regname == '*')
2848 oap->regname = 0;
2849 else if (!clip_plus.available && oap->regname == '+')
2850 oap->regname = 0;
2851 #endif
2853 if (!deleting) /* op_delete() already set y_current */
2854 get_yank_register(oap->regname, TRUE);
2856 curr = y_current;
2857 /* append to existing contents */
2858 if (y_append && y_current->y_array != NULL)
2859 y_current = &newreg;
2860 else
2861 free_yank_all(); /* free previously yanked lines */
2864 * If the cursor was in column 1 before and after the movement, and the
2865 * operator is not inclusive, the yank is always linewise.
2867 if ( oap->motion_type == MCHAR
2868 && oap->start.col == 0
2869 && !oap->inclusive
2870 #ifdef FEAT_VISUAL
2871 && (!oap->is_VIsual || *p_sel == 'o')
2872 && !oap->block_mode
2873 #endif
2874 && oap->end.col == 0
2875 && yanklines > 1)
2877 yanktype = MLINE;
2878 --yankendlnum;
2879 --yanklines;
2882 y_current->y_size = yanklines;
2883 y_current->y_type = yanktype; /* set the yank register type */
2884 #ifdef FEAT_VISUAL
2885 y_current->y_width = 0;
2886 #endif
2887 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
2888 yanklines), TRUE);
2890 if (y_current->y_array == NULL)
2892 y_current = curr;
2893 return FAIL;
2896 y_idx = 0;
2897 lnum = oap->start.lnum;
2899 #ifdef FEAT_VISUAL
2900 if (oap->block_mode)
2902 /* Visual block mode */
2903 y_current->y_type = MBLOCK; /* set the yank register type */
2904 y_current->y_width = oap->end_vcol - oap->start_vcol;
2906 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
2907 y_current->y_width--;
2909 #endif
2911 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
2913 switch (y_current->y_type)
2915 #ifdef FEAT_VISUAL
2916 case MBLOCK:
2917 block_prep(oap, &bd, lnum, FALSE);
2918 if (yank_copy_line(&bd, y_idx) == FAIL)
2919 goto fail;
2920 break;
2921 #endif
2923 case MLINE:
2924 if ((y_current->y_array[y_idx] =
2925 vim_strsave(ml_get(lnum))) == NULL)
2926 goto fail;
2927 break;
2929 case MCHAR:
2931 colnr_T startcol = 0, endcol = MAXCOL;
2932 #ifdef FEAT_VIRTUALEDIT
2933 int is_oneChar = FALSE;
2934 colnr_T cs, ce;
2935 #endif
2936 p = ml_get(lnum);
2937 bd.startspaces = 0;
2938 bd.endspaces = 0;
2940 if (lnum == oap->start.lnum)
2942 startcol = oap->start.col;
2943 #ifdef FEAT_VIRTUALEDIT
2944 if (virtual_op)
2946 getvcol(curwin, &oap->start, &cs, NULL, &ce);
2947 if (ce != cs && oap->start.coladd > 0)
2949 /* Part of a tab selected -- but don't
2950 * double-count it. */
2951 bd.startspaces = (ce - cs + 1)
2952 - oap->start.coladd;
2953 startcol++;
2956 #endif
2959 if (lnum == oap->end.lnum)
2961 endcol = oap->end.col;
2962 #ifdef FEAT_VIRTUALEDIT
2963 if (virtual_op)
2965 getvcol(curwin, &oap->end, &cs, NULL, &ce);
2966 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
2967 # ifdef FEAT_MBYTE
2968 /* Don't add space for double-wide
2969 * char; endcol will be on last byte
2970 * of multi-byte char. */
2971 && (*mb_head_off)(p, p + endcol) == 0
2972 # endif
2975 if (oap->start.lnum == oap->end.lnum
2976 && oap->start.col == oap->end.col)
2978 /* Special case: inside a single char */
2979 is_oneChar = TRUE;
2980 bd.startspaces = oap->end.coladd
2981 - oap->start.coladd + oap->inclusive;
2982 endcol = startcol;
2984 else
2986 bd.endspaces = oap->end.coladd
2987 + oap->inclusive;
2988 endcol -= oap->inclusive;
2992 #endif
2994 if (startcol > endcol
2995 #ifdef FEAT_VIRTUALEDIT
2996 || is_oneChar
2997 #endif
2999 bd.textlen = 0;
3000 else
3002 if (endcol == MAXCOL)
3003 endcol = (colnr_T)STRLEN(p);
3004 bd.textlen = endcol - startcol + oap->inclusive;
3006 bd.textstart = p + startcol;
3007 if (yank_copy_line(&bd, y_idx) == FAIL)
3008 goto fail;
3009 break;
3011 /* NOTREACHED */
3015 if (curr != y_current) /* append the new block to the old block */
3017 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3018 (curr->y_size + y_current->y_size)), TRUE);
3019 if (new_ptr == NULL)
3020 goto fail;
3021 for (j = 0; j < curr->y_size; ++j)
3022 new_ptr[j] = curr->y_array[j];
3023 vim_free(curr->y_array);
3024 curr->y_array = new_ptr;
3026 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3027 curr->y_type = MLINE;
3029 /* Concatenate the last line of the old block with the first line of
3030 * the new block, unless being Vi compatible. */
3031 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
3033 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3034 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3035 if (pnew == NULL)
3037 y_idx = y_current->y_size - 1;
3038 goto fail;
3040 STRCPY(pnew, curr->y_array[--j]);
3041 STRCAT(pnew, y_current->y_array[0]);
3042 vim_free(curr->y_array[j]);
3043 vim_free(y_current->y_array[0]);
3044 curr->y_array[j++] = pnew;
3045 y_idx = 1;
3047 else
3048 y_idx = 0;
3049 while (y_idx < y_current->y_size)
3050 curr->y_array[j++] = y_current->y_array[y_idx++];
3051 curr->y_size = j;
3052 vim_free(y_current->y_array);
3053 y_current = curr;
3055 if (mess) /* Display message about yank? */
3057 if (yanktype == MCHAR
3058 #ifdef FEAT_VISUAL
3059 && !oap->block_mode
3060 #endif
3061 && yanklines == 1)
3062 yanklines = 0;
3063 /* Some versions of Vi use ">=" here, some don't... */
3064 if (yanklines > p_report)
3066 /* redisplay now, so message is not deleted */
3067 update_topline_redraw();
3068 if (yanklines == 1)
3070 #ifdef FEAT_VISUAL
3071 if (oap->block_mode)
3072 MSG(_("block of 1 line yanked"));
3073 else
3074 #endif
3075 MSG(_("1 line yanked"));
3077 #ifdef FEAT_VISUAL
3078 else if (oap->block_mode)
3079 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
3080 #endif
3081 else
3082 smsg((char_u *)_("%ld lines yanked"), yanklines);
3087 * Set "'[" and "']" marks.
3089 curbuf->b_op_start = oap->start;
3090 curbuf->b_op_end = oap->end;
3091 if (yanktype == MLINE
3092 #ifdef FEAT_VISUAL
3093 && !oap->block_mode
3094 #endif
3097 curbuf->b_op_start.col = 0;
3098 curbuf->b_op_end.col = MAXCOL;
3101 #ifdef FEAT_CLIPBOARD
3103 * If we were yanking to the '*' register, send result to clipboard.
3104 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3105 * to the '*' register.
3107 if (clip_star.available
3108 && (curr == &(y_regs[STAR_REGISTER])
3109 || (!deleting && oap->regname == 0 && clip_unnamed)))
3111 if (curr != &(y_regs[STAR_REGISTER]))
3112 /* Copy the text from register 0 to the clipboard register. */
3113 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3115 clip_own_selection(&clip_star);
3116 clip_gen_set_selection(&clip_star);
3119 # ifdef FEAT_X11
3121 * If we were yanking to the '+' register, send result to selection.
3122 * Also copy to the '*' register, in case auto-select is off.
3124 else if (clip_plus.available && curr == &(y_regs[PLUS_REGISTER]))
3126 /* No need to copy to * register upon 'unnamed' now - see below */
3127 clip_own_selection(&clip_plus);
3128 clip_gen_set_selection(&clip_plus);
3129 if (!clip_isautosel())
3131 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3132 clip_own_selection(&clip_star);
3133 clip_gen_set_selection(&clip_star);
3136 # endif
3137 #endif
3139 return OK;
3141 fail: /* free the allocated lines */
3142 free_yank(y_idx + 1);
3143 y_current = curr;
3144 return FAIL;
3147 static int
3148 yank_copy_line(bd, y_idx)
3149 struct block_def *bd;
3150 long y_idx;
3152 char_u *pnew;
3154 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3155 == NULL)
3156 return FAIL;
3157 y_current->y_array[y_idx] = pnew;
3158 copy_spaces(pnew, (size_t)bd->startspaces);
3159 pnew += bd->startspaces;
3160 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3161 pnew += bd->textlen;
3162 copy_spaces(pnew, (size_t)bd->endspaces);
3163 pnew += bd->endspaces;
3164 *pnew = NUL;
3165 return OK;
3168 #ifdef FEAT_CLIPBOARD
3170 * Make a copy of the y_current register to register "reg".
3172 static void
3173 copy_yank_reg(reg)
3174 struct yankreg *reg;
3176 struct yankreg *curr = y_current;
3177 long j;
3179 y_current = reg;
3180 free_yank_all();
3181 *y_current = *curr;
3182 y_current->y_array = (char_u **)lalloc_clear(
3183 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3184 if (y_current->y_array == NULL)
3185 y_current->y_size = 0;
3186 else
3187 for (j = 0; j < y_current->y_size; ++j)
3188 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3190 free_yank(j);
3191 y_current->y_size = 0;
3192 break;
3194 y_current = curr;
3196 #endif
3199 * Put contents of register "regname" into the text.
3200 * Caller must check "regname" to be valid!
3201 * "flags": PUT_FIXINDENT make indent look nice
3202 * PUT_CURSEND leave cursor after end of new text
3203 * PUT_LINE force linewise put (":put")
3205 void
3206 do_put(regname, dir, count, flags)
3207 int regname;
3208 int dir; /* BACKWARD for 'P', FORWARD for 'p' */
3209 long count;
3210 int flags;
3212 char_u *ptr;
3213 char_u *newp, *oldp;
3214 int yanklen;
3215 int totlen = 0; /* init for gcc */
3216 linenr_T lnum;
3217 colnr_T col;
3218 long i; /* index in y_array[] */
3219 int y_type;
3220 long y_size;
3221 #ifdef FEAT_VISUAL
3222 int oldlen;
3223 long y_width = 0;
3224 colnr_T vcol;
3225 int delcount;
3226 int incr = 0;
3227 long j;
3228 struct block_def bd;
3229 #endif
3230 char_u **y_array = NULL;
3231 long nr_lines = 0;
3232 pos_T new_cursor;
3233 int indent;
3234 int orig_indent = 0; /* init for gcc */
3235 int indent_diff = 0; /* init for gcc */
3236 int first_indent = TRUE;
3237 int lendiff = 0;
3238 pos_T old_pos;
3239 char_u *insert_string = NULL;
3240 int allocated = FALSE;
3241 long cnt;
3243 #ifdef FEAT_CLIPBOARD
3244 /* Adjust register name for "unnamed" in 'clipboard'. */
3245 adjust_clip_reg(&regname);
3246 (void)may_get_selection(regname);
3247 #endif
3249 if (flags & PUT_FIXINDENT)
3250 orig_indent = get_indent();
3252 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3253 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3256 * Using inserted text works differently, because the register includes
3257 * special characters (newlines, etc.).
3259 if (regname == '.')
3261 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3262 (count == -1 ? 'O' : 'i')), count, FALSE);
3263 /* Putting the text is done later, so can't really move the cursor to
3264 * the next character. Use "l" to simulate it. */
3265 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3266 stuffcharReadbuff('l');
3267 return;
3271 * For special registers '%' (file name), '#' (alternate file name) and
3272 * ':' (last command line), etc. we have to create a fake yank register.
3274 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3276 if (insert_string == NULL)
3277 return;
3280 if (insert_string != NULL)
3282 y_type = MCHAR;
3283 #ifdef FEAT_EVAL
3284 if (regname == '=')
3286 /* For the = register we need to split the string at NL
3287 * characters. */
3288 /* Loop twice: count the number of lines and save them. */
3289 for (;;)
3291 y_size = 0;
3292 ptr = insert_string;
3293 while (ptr != NULL)
3295 if (y_array != NULL)
3296 y_array[y_size] = ptr;
3297 ++y_size;
3298 ptr = vim_strchr(ptr, '\n');
3299 if (ptr != NULL)
3301 if (y_array != NULL)
3302 *ptr = NUL;
3303 ++ptr;
3304 /* A trailing '\n' makes the string linewise */
3305 if (*ptr == NUL)
3307 y_type = MLINE;
3308 break;
3312 if (y_array != NULL)
3313 break;
3314 y_array = (char_u **)alloc((unsigned)
3315 (y_size * sizeof(char_u *)));
3316 if (y_array == NULL)
3317 goto end;
3320 else
3321 #endif
3323 y_size = 1; /* use fake one-line yank register */
3324 y_array = &insert_string;
3327 else
3329 get_yank_register(regname, FALSE);
3331 y_type = y_current->y_type;
3332 #ifdef FEAT_VISUAL
3333 y_width = y_current->y_width;
3334 #endif
3335 y_size = y_current->y_size;
3336 y_array = y_current->y_array;
3339 #ifdef FEAT_VISUAL
3340 if (y_type == MLINE)
3342 if (flags & PUT_LINE_SPLIT)
3344 /* "p" or "P" in Visual mode: split the lines to put the text in
3345 * between. */
3346 if (u_save_cursor() == FAIL)
3347 goto end;
3348 ptr = vim_strsave(ml_get_cursor());
3349 if (ptr == NULL)
3350 goto end;
3351 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3352 vim_free(ptr);
3354 ptr = vim_strnsave(ml_get_curline(), curwin->w_cursor.col);
3355 if (ptr == NULL)
3356 goto end;
3357 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3358 ++nr_lines;
3359 dir = FORWARD;
3361 if (flags & PUT_LINE_FORWARD)
3363 /* Must be "p" for a Visual block, put lines below the block. */
3364 curwin->w_cursor = curbuf->b_visual.vi_end;
3365 dir = FORWARD;
3367 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3368 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3370 #endif
3372 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3373 y_type = MLINE;
3375 if (y_size == 0 || y_array == NULL)
3377 EMSG2(_("E353: Nothing in register %s"),
3378 regname == 0 ? (char_u *)"\"" : transchar(regname));
3379 goto end;
3382 #ifdef FEAT_VISUAL
3383 if (y_type == MBLOCK)
3385 lnum = curwin->w_cursor.lnum + y_size + 1;
3386 if (lnum > curbuf->b_ml.ml_line_count)
3387 lnum = curbuf->b_ml.ml_line_count + 1;
3388 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3389 goto end;
3391 else
3392 #endif
3393 if (y_type == MLINE)
3395 lnum = curwin->w_cursor.lnum;
3396 #ifdef FEAT_FOLDING
3397 /* Correct line number for closed fold. Don't move the cursor yet,
3398 * u_save() uses it. */
3399 if (dir == BACKWARD)
3400 (void)hasFolding(lnum, &lnum, NULL);
3401 else
3402 (void)hasFolding(lnum, NULL, &lnum);
3403 #endif
3404 if (dir == FORWARD)
3405 ++lnum;
3406 if (u_save(lnum - 1, lnum) == FAIL)
3407 goto end;
3408 #ifdef FEAT_FOLDING
3409 if (dir == FORWARD)
3410 curwin->w_cursor.lnum = lnum - 1;
3411 else
3412 curwin->w_cursor.lnum = lnum;
3413 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3414 #endif
3416 else if (u_save_cursor() == FAIL)
3417 goto end;
3419 yanklen = (int)STRLEN(y_array[0]);
3421 #ifdef FEAT_VIRTUALEDIT
3422 if (ve_flags == VE_ALL && y_type == MCHAR)
3424 if (gchar_cursor() == TAB)
3426 /* Don't need to insert spaces when "p" on the last position of a
3427 * tab or "P" on the first position. */
3428 if (dir == FORWARD
3429 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3430 : curwin->w_cursor.coladd > 0)
3431 coladvance_force(getviscol());
3432 else
3433 curwin->w_cursor.coladd = 0;
3435 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3436 coladvance_force(getviscol() + (dir == FORWARD));
3438 #endif
3440 lnum = curwin->w_cursor.lnum;
3441 col = curwin->w_cursor.col;
3443 #ifdef FEAT_VISUAL
3445 * Block mode
3447 if (y_type == MBLOCK)
3449 char c = gchar_cursor();
3450 colnr_T endcol2 = 0;
3452 if (dir == FORWARD && c != NUL)
3454 #ifdef FEAT_VIRTUALEDIT
3455 if (ve_flags == VE_ALL)
3456 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3457 else
3458 #endif
3459 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3461 #ifdef FEAT_MBYTE
3462 if (has_mbyte)
3463 /* move to start of next multi-byte character */
3464 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
3465 else
3466 #endif
3467 #ifdef FEAT_VIRTUALEDIT
3468 if (c != TAB || ve_flags != VE_ALL)
3469 #endif
3470 ++curwin->w_cursor.col;
3471 ++col;
3473 else
3474 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3476 #ifdef FEAT_VIRTUALEDIT
3477 col += curwin->w_cursor.coladd;
3478 if (ve_flags == VE_ALL
3479 && (curwin->w_cursor.coladd > 0
3480 || endcol2 == curwin->w_cursor.col))
3482 if (dir == FORWARD && c == NUL)
3483 ++col;
3484 if (dir != FORWARD && c != NUL)
3485 ++curwin->w_cursor.col;
3486 if (c == TAB)
3488 if (dir == BACKWARD && curwin->w_cursor.col)
3489 curwin->w_cursor.col--;
3490 if (dir == FORWARD && col - 1 == endcol2)
3491 curwin->w_cursor.col++;
3494 curwin->w_cursor.coladd = 0;
3495 #endif
3496 bd.textcol = 0;
3497 for (i = 0; i < y_size; ++i)
3499 int spaces;
3500 char shortline;
3502 bd.startspaces = 0;
3503 bd.endspaces = 0;
3504 vcol = 0;
3505 delcount = 0;
3507 /* add a new line */
3508 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3510 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3511 (colnr_T)1, FALSE) == FAIL)
3512 break;
3513 ++nr_lines;
3515 /* get the old line and advance to the position to insert at */
3516 oldp = ml_get_curline();
3517 oldlen = (int)STRLEN(oldp);
3518 for (ptr = oldp; vcol < col && *ptr; )
3520 /* Count a tab for what it's worth (if list mode not on) */
3521 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
3522 vcol += incr;
3524 bd.textcol = (colnr_T)(ptr - oldp);
3526 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3528 if (vcol < col) /* line too short, padd with spaces */
3529 bd.startspaces = col - vcol;
3530 else if (vcol > col)
3532 bd.endspaces = vcol - col;
3533 bd.startspaces = incr - bd.endspaces;
3534 --bd.textcol;
3535 delcount = 1;
3536 #ifdef FEAT_MBYTE
3537 if (has_mbyte)
3538 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3539 #endif
3540 if (oldp[bd.textcol] != TAB)
3542 /* Only a Tab can be split into spaces. Other
3543 * characters will have to be moved to after the
3544 * block, causing misalignment. */
3545 delcount = 0;
3546 bd.endspaces = 0;
3550 yanklen = (int)STRLEN(y_array[i]);
3552 /* calculate number of spaces required to fill right side of block*/
3553 spaces = y_width + 1;
3554 for (j = 0; j < yanklen; j++)
3555 spaces -= lbr_chartabsize(&y_array[i][j], 0);
3556 if (spaces < 0)
3557 spaces = 0;
3559 /* insert the new text */
3560 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3561 newp = alloc_check((unsigned)totlen + oldlen + 1);
3562 if (newp == NULL)
3563 break;
3564 /* copy part up to cursor to new line */
3565 ptr = newp;
3566 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3567 ptr += bd.textcol;
3568 /* may insert some spaces before the new text */
3569 copy_spaces(ptr, (size_t)bd.startspaces);
3570 ptr += bd.startspaces;
3571 /* insert the new text */
3572 for (j = 0; j < count; ++j)
3574 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3575 ptr += yanklen;
3577 /* insert block's trailing spaces only if there's text behind */
3578 if ((j < count - 1 || !shortline) && spaces)
3580 copy_spaces(ptr, (size_t)spaces);
3581 ptr += spaces;
3584 /* may insert some spaces after the new text */
3585 copy_spaces(ptr, (size_t)bd.endspaces);
3586 ptr += bd.endspaces;
3587 /* move the text after the cursor to the end of the line. */
3588 mch_memmove(ptr, oldp + bd.textcol + delcount,
3589 (size_t)(oldlen - bd.textcol - delcount + 1));
3590 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3592 ++curwin->w_cursor.lnum;
3593 if (i == 0)
3594 curwin->w_cursor.col += bd.startspaces;
3597 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3599 /* Set '[ mark. */
3600 curbuf->b_op_start = curwin->w_cursor;
3601 curbuf->b_op_start.lnum = lnum;
3603 /* adjust '] mark */
3604 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3605 curbuf->b_op_end.col = bd.textcol + totlen - 1;
3606 # ifdef FEAT_VIRTUALEDIT
3607 curbuf->b_op_end.coladd = 0;
3608 # endif
3609 if (flags & PUT_CURSEND)
3611 colnr_T len;
3613 curwin->w_cursor = curbuf->b_op_end;
3614 curwin->w_cursor.col++;
3616 /* in Insert mode we might be after the NUL, correct for that */
3617 len = (colnr_T)STRLEN(ml_get_curline());
3618 if (curwin->w_cursor.col > len)
3619 curwin->w_cursor.col = len;
3621 else
3622 curwin->w_cursor.lnum = lnum;
3624 else
3625 #endif
3628 * Character or Line mode
3630 if (y_type == MCHAR)
3632 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3633 * char */
3634 if (dir == FORWARD && gchar_cursor() != NUL)
3636 #ifdef FEAT_MBYTE
3637 if (has_mbyte)
3639 int bytelen = (*mb_ptr2len)(ml_get_cursor());
3641 /* put it on the next of the multi-byte character. */
3642 col += bytelen;
3643 if (yanklen)
3645 curwin->w_cursor.col += bytelen;
3646 curbuf->b_op_end.col += bytelen;
3649 else
3650 #endif
3652 ++col;
3653 if (yanklen)
3655 ++curwin->w_cursor.col;
3656 ++curbuf->b_op_end.col;
3660 curbuf->b_op_start = curwin->w_cursor;
3663 * Line mode: BACKWARD is the same as FORWARD on the previous line
3665 else if (dir == BACKWARD)
3666 --lnum;
3667 new_cursor = curwin->w_cursor;
3670 * simple case: insert into current line
3672 if (y_type == MCHAR && y_size == 1)
3674 totlen = count * yanklen;
3675 if (totlen)
3677 oldp = ml_get(lnum);
3678 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3679 if (newp == NULL)
3680 goto end; /* alloc() will give error message */
3681 mch_memmove(newp, oldp, (size_t)col);
3682 ptr = newp + col;
3683 for (i = 0; i < count; ++i)
3685 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3686 ptr += yanklen;
3688 STRMOVE(ptr, oldp + col);
3689 ml_replace(lnum, newp, FALSE);
3690 /* Put cursor on last putted char. */
3691 curwin->w_cursor.col += (colnr_T)(totlen - 1);
3693 curbuf->b_op_end = curwin->w_cursor;
3694 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3695 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3696 ++curwin->w_cursor.col;
3697 changed_bytes(lnum, col);
3699 else
3702 * Insert at least one line. When y_type is MCHAR, break the first
3703 * line in two.
3705 for (cnt = 1; cnt <= count; ++cnt)
3707 i = 0;
3708 if (y_type == MCHAR)
3711 * Split the current line in two at the insert position.
3712 * First insert y_array[size - 1] in front of second line.
3713 * Then append y_array[0] to first line.
3715 lnum = new_cursor.lnum;
3716 ptr = ml_get(lnum) + col;
3717 totlen = (int)STRLEN(y_array[y_size - 1]);
3718 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3719 if (newp == NULL)
3720 goto error;
3721 STRCPY(newp, y_array[y_size - 1]);
3722 STRCAT(newp, ptr);
3723 /* insert second line */
3724 ml_append(lnum, newp, (colnr_T)0, FALSE);
3725 vim_free(newp);
3727 oldp = ml_get(lnum);
3728 newp = alloc_check((unsigned)(col + yanklen + 1));
3729 if (newp == NULL)
3730 goto error;
3731 /* copy first part of line */
3732 mch_memmove(newp, oldp, (size_t)col);
3733 /* append to first line */
3734 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3735 ml_replace(lnum, newp, FALSE);
3737 curwin->w_cursor.lnum = lnum;
3738 i = 1;
3741 for (; i < y_size; ++i)
3743 if ((y_type != MCHAR || i < y_size - 1)
3744 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3745 == FAIL)
3746 goto error;
3747 lnum++;
3748 ++nr_lines;
3749 if (flags & PUT_FIXINDENT)
3751 old_pos = curwin->w_cursor;
3752 curwin->w_cursor.lnum = lnum;
3753 ptr = ml_get(lnum);
3754 if (cnt == count && i == y_size - 1)
3755 lendiff = (int)STRLEN(ptr);
3756 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3757 if (*ptr == '#' && preprocs_left())
3758 indent = 0; /* Leave # lines at start */
3759 else
3760 #endif
3761 if (*ptr == NUL)
3762 indent = 0; /* Ignore empty lines */
3763 else if (first_indent)
3765 indent_diff = orig_indent - get_indent();
3766 indent = orig_indent;
3767 first_indent = FALSE;
3769 else if ((indent = get_indent() + indent_diff) < 0)
3770 indent = 0;
3771 (void)set_indent(indent, 0);
3772 curwin->w_cursor = old_pos;
3773 /* remember how many chars were removed */
3774 if (cnt == count && i == y_size - 1)
3775 lendiff -= (int)STRLEN(ml_get(lnum));
3780 error:
3781 /* Adjust marks. */
3782 if (y_type == MLINE)
3784 curbuf->b_op_start.col = 0;
3785 if (dir == FORWARD)
3786 curbuf->b_op_start.lnum++;
3788 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
3789 (linenr_T)MAXLNUM, nr_lines, 0L);
3791 /* note changed text for displaying and folding */
3792 if (y_type == MCHAR)
3793 changed_lines(curwin->w_cursor.lnum, col,
3794 curwin->w_cursor.lnum + 1, nr_lines);
3795 else
3796 changed_lines(curbuf->b_op_start.lnum, 0,
3797 curbuf->b_op_start.lnum, nr_lines);
3799 /* put '] mark at last inserted character */
3800 curbuf->b_op_end.lnum = lnum;
3801 /* correct length for change in indent */
3802 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3803 if (col > 1)
3804 curbuf->b_op_end.col = col - 1;
3805 else
3806 curbuf->b_op_end.col = 0;
3808 if (flags & PUT_CURSLINE)
3810 /* ":put": put cursor on last inserted line */
3811 curwin->w_cursor.lnum = lnum;
3812 beginline(BL_WHITE | BL_FIX);
3814 else if (flags & PUT_CURSEND)
3816 /* put cursor after inserted text */
3817 if (y_type == MLINE)
3819 if (lnum >= curbuf->b_ml.ml_line_count)
3820 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3821 else
3822 curwin->w_cursor.lnum = lnum + 1;
3823 curwin->w_cursor.col = 0;
3825 else
3827 curwin->w_cursor.lnum = lnum;
3828 curwin->w_cursor.col = col;
3831 else if (y_type == MLINE)
3833 /* put cursor on first non-blank in first inserted line */
3834 curwin->w_cursor.col = 0;
3835 if (dir == FORWARD)
3836 ++curwin->w_cursor.lnum;
3837 beginline(BL_WHITE | BL_FIX);
3839 else /* put cursor on first inserted character */
3840 curwin->w_cursor = new_cursor;
3844 msgmore(nr_lines);
3845 curwin->w_set_curswant = TRUE;
3847 end:
3848 if (allocated)
3849 vim_free(insert_string);
3850 if (regname == '=')
3851 vim_free(y_array);
3853 /* If the cursor is past the end of the line put it at the end. */
3854 adjust_cursor_eol();
3858 * When the cursor is on the NUL past the end of the line and it should not be
3859 * there move it left.
3861 void
3862 adjust_cursor_eol()
3864 if (curwin->w_cursor.col > 0
3865 && gchar_cursor() == NUL
3866 #ifdef FEAT_VIRTUALEDIT
3867 && (ve_flags & VE_ONEMORE) == 0
3868 #endif
3869 && !(restart_edit || (State & INSERT)))
3871 /* Put the cursor on the last character in the line. */
3872 dec_cursor();
3874 #ifdef FEAT_VIRTUALEDIT
3875 if (ve_flags == VE_ALL)
3877 colnr_T scol, ecol;
3879 /* Coladd is set to the width of the last character. */
3880 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
3881 curwin->w_cursor.coladd = ecol - scol + 1;
3883 #endif
3887 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
3889 * Return TRUE if lines starting with '#' should be left aligned.
3892 preprocs_left()
3894 return
3895 # ifdef FEAT_SMARTINDENT
3896 # ifdef FEAT_CINDENT
3897 (curbuf->b_p_si && !curbuf->b_p_cin) ||
3898 # else
3899 curbuf->b_p_si
3900 # endif
3901 # endif
3902 # ifdef FEAT_CINDENT
3903 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE))
3904 # endif
3907 #endif
3909 /* Return the character name of the register with the given number */
3911 get_register_name(num)
3912 int num;
3914 if (num == -1)
3915 return '"';
3916 else if (num < 10)
3917 return num + '0';
3918 else if (num == DELETION_REGISTER)
3919 return '-';
3920 #ifdef FEAT_CLIPBOARD
3921 else if (num == STAR_REGISTER)
3922 return '*';
3923 else if (num == PLUS_REGISTER)
3924 return '+';
3925 #endif
3926 else
3928 #ifdef EBCDIC
3929 int i;
3931 /* EBCDIC is really braindead ... */
3932 i = 'a' + (num - 10);
3933 if (i > 'i')
3934 i += 7;
3935 if (i > 'r')
3936 i += 8;
3937 return i;
3938 #else
3939 return num + 'a' - 10;
3940 #endif
3945 * ":dis" and ":registers": Display the contents of the yank registers.
3947 void
3948 ex_display(eap)
3949 exarg_T *eap;
3951 int i, n;
3952 long j;
3953 char_u *p;
3954 struct yankreg *yb;
3955 int name;
3956 int attr;
3957 char_u *arg = eap->arg;
3958 #ifdef FEAT_MBYTE
3959 int clen;
3960 #else
3961 # define clen 1
3962 #endif
3964 if (arg != NULL && *arg == NUL)
3965 arg = NULL;
3966 attr = hl_attr(HLF_8);
3968 /* Highlight title */
3969 MSG_PUTS_TITLE(_("\n--- Registers ---"));
3970 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
3972 name = get_register_name(i);
3973 if (arg != NULL && vim_strchr(arg, name) == NULL)
3974 continue; /* did not ask for this register */
3976 #ifdef FEAT_CLIPBOARD
3977 /* Adjust register name for "unnamed" in 'clipboard'.
3978 * When it's a clipboard register, fill it with the current contents
3979 * of the clipboard. */
3980 adjust_clip_reg(&name);
3981 (void)may_get_selection(name);
3982 #endif
3984 if (i == -1)
3986 if (y_previous != NULL)
3987 yb = y_previous;
3988 else
3989 yb = &(y_regs[0]);
3991 else
3992 yb = &(y_regs[i]);
3993 if (yb->y_array != NULL)
3995 msg_putchar('\n');
3996 msg_putchar('"');
3997 msg_putchar(name);
3998 MSG_PUTS(" ");
4000 n = (int)Columns - 6;
4001 for (j = 0; j < yb->y_size && n > 1; ++j)
4003 if (j)
4005 MSG_PUTS_ATTR("^J", attr);
4006 n -= 2;
4008 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4010 #ifdef FEAT_MBYTE
4011 clen = (*mb_ptr2len)(p);
4012 #endif
4013 msg_outtrans_len(p, clen);
4014 #ifdef FEAT_MBYTE
4015 p += clen - 1;
4016 #endif
4019 if (n > 1 && yb->y_type == MLINE)
4020 MSG_PUTS_ATTR("^J", attr);
4021 out_flush(); /* show one line at a time */
4023 ui_breakcheck();
4027 * display last inserted text
4029 if ((p = get_last_insert()) != NULL
4030 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4032 MSG_PUTS("\n\". ");
4033 dis_msg(p, TRUE);
4037 * display last command line
4039 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4040 && !got_int)
4042 MSG_PUTS("\n\": ");
4043 dis_msg(last_cmdline, FALSE);
4047 * display current file name
4049 if (curbuf->b_fname != NULL
4050 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4052 MSG_PUTS("\n\"% ");
4053 dis_msg(curbuf->b_fname, FALSE);
4057 * display alternate file name
4059 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4061 char_u *fname;
4062 linenr_T dummy;
4064 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4066 MSG_PUTS("\n\"# ");
4067 dis_msg(fname, FALSE);
4072 * display last search pattern
4074 if (last_search_pat() != NULL
4075 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4077 MSG_PUTS("\n\"/ ");
4078 dis_msg(last_search_pat(), FALSE);
4081 #ifdef FEAT_EVAL
4083 * display last used expression
4085 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4086 && !got_int)
4088 MSG_PUTS("\n\"= ");
4089 dis_msg(expr_line, FALSE);
4091 #endif
4095 * display a string for do_dis()
4096 * truncate at end of screen line
4098 static void
4099 dis_msg(p, skip_esc)
4100 char_u *p;
4101 int skip_esc; /* if TRUE, ignore trailing ESC */
4103 int n;
4104 #ifdef FEAT_MBYTE
4105 int l;
4106 #endif
4108 n = (int)Columns - 6;
4109 while (*p != NUL
4110 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4111 && (n -= ptr2cells(p)) >= 0)
4113 #ifdef FEAT_MBYTE
4114 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
4116 msg_outtrans_len(p, l);
4117 p += l;
4119 else
4120 #endif
4121 msg_outtrans_len(p++, 1);
4123 ui_breakcheck();
4127 * join 'count' lines (minimal 2), including u_save()
4129 void
4130 do_do_join(count, insert_space)
4131 long count;
4132 int insert_space;
4134 colnr_T col = MAXCOL;
4136 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4137 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4138 return;
4140 while (--count > 0)
4142 line_breakcheck();
4143 if (got_int || do_join(insert_space) == FAIL)
4145 beep_flush();
4146 break;
4148 if (col == MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4149 col = curwin->w_cursor.col;
4152 /* Vi compatible: use the column of the first join */
4153 if (col != MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4154 curwin->w_cursor.col = col;
4156 #if 0
4158 * Need to update the screen if the line where the cursor is became too
4159 * long to fit on the screen.
4161 update_topline_redraw();
4162 #endif
4166 * Join two lines at the cursor position.
4167 * "redraw" is TRUE when the screen should be updated.
4168 * Caller must have setup for undo.
4170 * return FAIL for failure, OK otherwise
4173 do_join(insert_space)
4174 int insert_space;
4176 char_u *curr;
4177 char_u *next, *next_start;
4178 char_u *newp;
4179 int endcurr1, endcurr2;
4180 int currsize; /* size of the current line */
4181 int nextsize; /* size of the next line */
4182 int spaces; /* number of spaces to insert */
4183 linenr_T t;
4185 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4186 return FAIL; /* can't join on last line */
4188 curr = ml_get_curline();
4189 currsize = (int)STRLEN(curr);
4190 endcurr1 = endcurr2 = NUL;
4191 if (insert_space && currsize > 0)
4193 #ifdef FEAT_MBYTE
4194 if (has_mbyte)
4196 next = curr + currsize;
4197 mb_ptr_back(curr, next);
4198 endcurr1 = (*mb_ptr2char)(next);
4199 if (next > curr)
4201 mb_ptr_back(curr, next);
4202 endcurr2 = (*mb_ptr2char)(next);
4205 else
4206 #endif
4208 endcurr1 = *(curr + currsize - 1);
4209 if (currsize > 1)
4210 endcurr2 = *(curr + currsize - 2);
4214 next = next_start = ml_get((linenr_T)(curwin->w_cursor.lnum + 1));
4215 spaces = 0;
4216 if (insert_space)
4218 next = skipwhite(next);
4219 if (*next != ')' && currsize != 0 && endcurr1 != TAB
4220 #ifdef FEAT_MBYTE
4221 && (!has_format_option(FO_MBYTE_JOIN)
4222 || (mb_ptr2char(next) < 0x100 && endcurr1 < 0x100))
4223 && (!has_format_option(FO_MBYTE_JOIN2)
4224 || mb_ptr2char(next) < 0x100 || endcurr1 < 0x100)
4225 #endif
4228 /* don't add a space if the line is ending in a space */
4229 if (endcurr1 == ' ')
4230 endcurr1 = endcurr2;
4231 else
4232 ++spaces;
4233 /* extra space when 'joinspaces' set and line ends in '.' */
4234 if ( p_js
4235 && (endcurr1 == '.'
4236 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4237 && (endcurr1 == '?' || endcurr1 == '!'))))
4238 ++spaces;
4241 nextsize = (int)STRLEN(next);
4243 newp = alloc_check((unsigned)(currsize + nextsize + spaces + 1));
4244 if (newp == NULL)
4245 return FAIL;
4248 * Insert the next line first, because we already have that pointer.
4249 * Curr has to be obtained again, because getting next will have
4250 * invalidated it.
4252 mch_memmove(newp + currsize + spaces, next, (size_t)(nextsize + 1));
4254 curr = ml_get_curline();
4255 mch_memmove(newp, curr, (size_t)currsize);
4257 copy_spaces(newp + currsize, (size_t)spaces);
4259 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4261 /* Only report the change in the first line here, del_lines() will report
4262 * the deleted line. */
4263 changed_lines(curwin->w_cursor.lnum, currsize,
4264 curwin->w_cursor.lnum + 1, 0L);
4267 * Delete the following line. To do this we move the cursor there
4268 * briefly, and then move it back. After del_lines() the cursor may
4269 * have moved up (last line deleted), so the current lnum is kept in t.
4271 * Move marks from the deleted line to the joined line, adjusting the
4272 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4273 * should not really be a problem.
4275 t = curwin->w_cursor.lnum;
4276 mark_col_adjust(t + 1, (colnr_T)0, (linenr_T)-1,
4277 (long)(currsize + spaces - (next - next_start)));
4278 ++curwin->w_cursor.lnum;
4279 del_lines(1L, FALSE);
4280 curwin->w_cursor.lnum = t;
4283 * go to first character of the joined line
4285 curwin->w_cursor.col = currsize;
4286 check_cursor_col();
4287 #ifdef FEAT_VIRTUALEDIT
4288 curwin->w_cursor.coladd = 0;
4289 #endif
4290 curwin->w_set_curswant = TRUE;
4292 return OK;
4295 #ifdef FEAT_COMMENTS
4297 * Return TRUE if the two comment leaders given are the same. "lnum" is
4298 * the first line. White-space is ignored. Note that the whole of
4299 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4301 static int
4302 same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
4303 linenr_T lnum;
4304 int leader1_len;
4305 char_u *leader1_flags;
4306 int leader2_len;
4307 char_u *leader2_flags;
4309 int idx1 = 0, idx2 = 0;
4310 char_u *p;
4311 char_u *line1;
4312 char_u *line2;
4314 if (leader1_len == 0)
4315 return (leader2_len == 0);
4318 * If first leader has 'f' flag, the lines can be joined only if the
4319 * second line does not have a leader.
4320 * If first leader has 'e' flag, the lines can never be joined.
4321 * If fist leader has 's' flag, the lines can only be joined if there is
4322 * some text after it and the second line has the 'm' flag.
4324 if (leader1_flags != NULL)
4326 for (p = leader1_flags; *p && *p != ':'; ++p)
4328 if (*p == COM_FIRST)
4329 return (leader2_len == 0);
4330 if (*p == COM_END)
4331 return FALSE;
4332 if (*p == COM_START)
4334 if (*(ml_get(lnum) + leader1_len) == NUL)
4335 return FALSE;
4336 if (leader2_flags == NULL || leader2_len == 0)
4337 return FALSE;
4338 for (p = leader2_flags; *p && *p != ':'; ++p)
4339 if (*p == COM_MIDDLE)
4340 return TRUE;
4341 return FALSE;
4347 * Get current line and next line, compare the leaders.
4348 * The first line has to be saved, only one line can be locked at a time.
4350 line1 = vim_strsave(ml_get(lnum));
4351 if (line1 != NULL)
4353 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4355 line2 = ml_get(lnum + 1);
4356 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4358 if (!vim_iswhite(line2[idx2]))
4360 if (line1[idx1++] != line2[idx2])
4361 break;
4363 else
4364 while (vim_iswhite(line1[idx1]))
4365 ++idx1;
4367 vim_free(line1);
4369 return (idx2 == leader2_len && idx1 == leader1_len);
4371 #endif
4374 * implementation of the format operator 'gq'
4376 void
4377 op_format(oap, keep_cursor)
4378 oparg_T *oap;
4379 int keep_cursor; /* keep cursor on same text char */
4381 long old_line_count = curbuf->b_ml.ml_line_count;
4383 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4384 * can put it back there. */
4385 curwin->w_cursor = oap->cursor_start;
4387 if (u_save((linenr_T)(oap->start.lnum - 1),
4388 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4389 return;
4390 curwin->w_cursor = oap->start;
4392 #ifdef FEAT_VISUAL
4393 if (oap->is_VIsual)
4394 /* When there is no change: need to remove the Visual selection */
4395 redraw_curbuf_later(INVERTED);
4396 #endif
4398 /* Set '[ mark at the start of the formatted area */
4399 curbuf->b_op_start = oap->start;
4401 /* For "gw" remember the cursor position and put it back below (adjusted
4402 * for joined and split lines). */
4403 if (keep_cursor)
4404 saved_cursor = oap->cursor_start;
4406 format_lines(oap->line_count, keep_cursor);
4409 * Leave the cursor at the first non-blank of the last formatted line.
4410 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4411 * line, so "." will do the next lines.
4413 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4414 ++curwin->w_cursor.lnum;
4415 beginline(BL_WHITE | BL_FIX);
4416 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4417 msgmore(old_line_count);
4419 /* put '] mark on the end of the formatted area */
4420 curbuf->b_op_end = curwin->w_cursor;
4422 if (keep_cursor)
4424 curwin->w_cursor = saved_cursor;
4425 saved_cursor.lnum = 0;
4428 #ifdef FEAT_VISUAL
4429 if (oap->is_VIsual)
4431 win_T *wp;
4433 FOR_ALL_WINDOWS(wp)
4435 if (wp->w_old_cursor_lnum != 0)
4437 /* When lines have been inserted or deleted, adjust the end of
4438 * the Visual area to be redrawn. */
4439 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4440 wp->w_old_cursor_lnum += old_line_count;
4441 else
4442 wp->w_old_visual_lnum += old_line_count;
4446 #endif
4449 #if defined(FEAT_EVAL) || defined(PROTO)
4451 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4453 void
4454 op_formatexpr(oap)
4455 oparg_T *oap;
4457 # ifdef FEAT_VISUAL
4458 if (oap->is_VIsual)
4459 /* When there is no change: need to remove the Visual selection */
4460 redraw_curbuf_later(INVERTED);
4461 # endif
4463 (void)fex_format(oap->start.lnum, oap->line_count, NUL);
4467 fex_format(lnum, count, c)
4468 linenr_T lnum;
4469 long count;
4470 int c; /* character to be inserted */
4472 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4473 OPT_LOCAL);
4474 int r;
4477 * Set v:lnum to the first line number and v:count to the number of lines.
4478 * Set v:char to the character to be inserted (can be NUL).
4480 set_vim_var_nr(VV_LNUM, lnum);
4481 set_vim_var_nr(VV_COUNT, count);
4482 set_vim_var_char(c);
4485 * Evaluate the function.
4487 if (use_sandbox)
4488 ++sandbox;
4489 r = eval_to_number(curbuf->b_p_fex);
4490 if (use_sandbox)
4491 --sandbox;
4493 set_vim_var_string(VV_CHAR, NULL, -1);
4495 return r;
4497 #endif
4500 * Format "line_count" lines, starting at the cursor position.
4501 * When "line_count" is negative, format until the end of the paragraph.
4502 * Lines after the cursor line are saved for undo, caller must have saved the
4503 * first line.
4505 void
4506 format_lines(line_count, avoid_fex)
4507 linenr_T line_count;
4508 int avoid_fex; /* don't use 'formatexpr' */
4510 int max_len;
4511 int is_not_par; /* current line not part of parag. */
4512 int next_is_not_par; /* next line not part of paragraph */
4513 int is_end_par; /* at end of paragraph */
4514 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4515 int next_is_start_par = FALSE;
4516 #ifdef FEAT_COMMENTS
4517 int leader_len = 0; /* leader len of current line */
4518 int next_leader_len; /* leader len of next line */
4519 char_u *leader_flags = NULL; /* flags for leader of current line */
4520 char_u *next_leader_flags; /* flags for leader of next line */
4521 int do_comments; /* format comments */
4522 #endif
4523 int advance = TRUE;
4524 int second_indent = -1;
4525 int do_second_indent;
4526 int do_number_indent;
4527 int do_trail_white;
4528 int first_par_line = TRUE;
4529 int smd_save;
4530 long count;
4531 int need_set_indent = TRUE; /* set indent of next paragraph */
4532 int force_format = FALSE;
4533 int old_State = State;
4535 /* length of a line to force formatting: 3 * 'tw' */
4536 max_len = comp_textwidth(TRUE) * 3;
4538 /* check for 'q', '2' and '1' in 'formatoptions' */
4539 #ifdef FEAT_COMMENTS
4540 do_comments = has_format_option(FO_Q_COMS);
4541 #endif
4542 do_second_indent = has_format_option(FO_Q_SECOND);
4543 do_number_indent = has_format_option(FO_Q_NUMBER);
4544 do_trail_white = has_format_option(FO_WHITE_PAR);
4547 * Get info about the previous and current line.
4549 if (curwin->w_cursor.lnum > 1)
4550 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4551 #ifdef FEAT_COMMENTS
4552 , &leader_len, &leader_flags, do_comments
4553 #endif
4555 else
4556 is_not_par = TRUE;
4557 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4558 #ifdef FEAT_COMMENTS
4559 , &next_leader_len, &next_leader_flags, do_comments
4560 #endif
4562 is_end_par = (is_not_par || next_is_not_par);
4563 if (!is_end_par && do_trail_white)
4564 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4566 curwin->w_cursor.lnum--;
4567 for (count = line_count; count != 0 && !got_int; --count)
4570 * Advance to next paragraph.
4572 if (advance)
4574 curwin->w_cursor.lnum++;
4575 prev_is_end_par = is_end_par;
4576 is_not_par = next_is_not_par;
4577 #ifdef FEAT_COMMENTS
4578 leader_len = next_leader_len;
4579 leader_flags = next_leader_flags;
4580 #endif
4584 * The last line to be formatted.
4586 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4588 next_is_not_par = TRUE;
4589 #ifdef FEAT_COMMENTS
4590 next_leader_len = 0;
4591 next_leader_flags = NULL;
4592 #endif
4594 else
4596 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4597 #ifdef FEAT_COMMENTS
4598 , &next_leader_len, &next_leader_flags, do_comments
4599 #endif
4601 if (do_number_indent)
4602 next_is_start_par =
4603 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4605 advance = TRUE;
4606 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4607 if (!is_end_par && do_trail_white)
4608 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4611 * Skip lines that are not in a paragraph.
4613 if (is_not_par)
4615 if (line_count < 0)
4616 break;
4618 else
4621 * For the first line of a paragraph, check indent of second line.
4622 * Don't do this for comments and empty lines.
4624 if (first_par_line
4625 && (do_second_indent || do_number_indent)
4626 && prev_is_end_par
4627 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4628 #ifdef FEAT_COMMENTS
4629 && leader_len == 0
4630 && next_leader_len == 0
4631 #endif
4634 if (do_second_indent
4635 && !lineempty(curwin->w_cursor.lnum + 1))
4636 second_indent = get_indent_lnum(curwin->w_cursor.lnum + 1);
4637 else if (do_number_indent)
4638 second_indent = get_number_indent(curwin->w_cursor.lnum);
4642 * When the comment leader changes, it's the end of the paragraph.
4644 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4645 #ifdef FEAT_COMMENTS
4646 || !same_leader(curwin->w_cursor.lnum,
4647 leader_len, leader_flags,
4648 next_leader_len, next_leader_flags)
4649 #endif
4651 is_end_par = TRUE;
4654 * If we have got to the end of a paragraph, or the line is
4655 * getting long, format it.
4657 if (is_end_par || force_format)
4659 if (need_set_indent)
4660 /* replace indent in first line with minimal number of
4661 * tabs and spaces, according to current options */
4662 (void)set_indent(get_indent(), SIN_CHANGED);
4664 /* put cursor on last non-space */
4665 State = NORMAL; /* don't go past end-of-line */
4666 coladvance((colnr_T)MAXCOL);
4667 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
4668 dec_cursor();
4670 /* do the formatting, without 'showmode' */
4671 State = INSERT; /* for open_line() */
4672 smd_save = p_smd;
4673 p_smd = FALSE;
4674 insertchar(NUL, INSCHAR_FORMAT
4675 #ifdef FEAT_COMMENTS
4676 + (do_comments ? INSCHAR_DO_COM : 0)
4677 #endif
4678 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
4679 State = old_State;
4680 p_smd = smd_save;
4681 second_indent = -1;
4682 /* at end of par.: need to set indent of next par. */
4683 need_set_indent = is_end_par;
4684 if (is_end_par)
4686 /* When called with a negative line count, break at the
4687 * end of the paragraph. */
4688 if (line_count < 0)
4689 break;
4690 first_par_line = TRUE;
4692 force_format = FALSE;
4696 * When still in same paragraph, join the lines together. But
4697 * first delete the comment leader from the second line.
4699 if (!is_end_par)
4701 advance = FALSE;
4702 curwin->w_cursor.lnum++;
4703 curwin->w_cursor.col = 0;
4704 if (line_count < 0 && u_save_cursor() == FAIL)
4705 break;
4706 #ifdef FEAT_COMMENTS
4707 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
4708 if (next_leader_len > 0)
4709 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
4710 (long)-next_leader_len);
4711 #endif
4712 curwin->w_cursor.lnum--;
4713 if (do_join(TRUE) == FAIL)
4715 beep_flush();
4716 break;
4718 first_par_line = FALSE;
4719 /* If the line is getting long, format it next time */
4720 if (STRLEN(ml_get_curline()) > (size_t)max_len)
4721 force_format = TRUE;
4722 else
4723 force_format = FALSE;
4726 line_breakcheck();
4731 * Return TRUE if line "lnum" ends in a white character.
4733 static int
4734 ends_in_white(lnum)
4735 linenr_T lnum;
4737 char_u *s = ml_get(lnum);
4738 size_t l;
4740 if (*s == NUL)
4741 return FALSE;
4742 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
4743 * invocation may call function multiple times". */
4744 l = STRLEN(s) - 1;
4745 return vim_iswhite(s[l]);
4749 * Blank lines, and lines containing only the comment leader, are left
4750 * untouched by the formatting. The function returns TRUE in this
4751 * case. It also returns TRUE when a line starts with the end of a comment
4752 * ('e' in comment flags), so that this line is skipped, and not joined to the
4753 * previous line. A new paragraph starts after a blank line, or when the
4754 * comment leader changes -- webb.
4756 #ifdef FEAT_COMMENTS
4757 static int
4758 fmt_check_par(lnum, leader_len, leader_flags, do_comments)
4759 linenr_T lnum;
4760 int *leader_len;
4761 char_u **leader_flags;
4762 int do_comments;
4764 char_u *flags = NULL; /* init for GCC */
4765 char_u *ptr;
4767 ptr = ml_get(lnum);
4768 if (do_comments)
4769 *leader_len = get_leader_len(ptr, leader_flags, FALSE);
4770 else
4771 *leader_len = 0;
4773 if (*leader_len > 0)
4776 * Search for 'e' flag in comment leader flags.
4778 flags = *leader_flags;
4779 while (*flags && *flags != ':' && *flags != COM_END)
4780 ++flags;
4783 return (*skipwhite(ptr + *leader_len) == NUL
4784 || (*leader_len > 0 && *flags == COM_END)
4785 || startPS(lnum, NUL, FALSE));
4787 #else
4788 static int
4789 fmt_check_par(lnum)
4790 linenr_T lnum;
4792 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
4794 #endif
4797 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
4798 * previous line is in the same paragraph. Used for auto-formatting.
4801 paragraph_start(lnum)
4802 linenr_T lnum;
4804 char_u *p;
4805 #ifdef FEAT_COMMENTS
4806 int leader_len = 0; /* leader len of current line */
4807 char_u *leader_flags = NULL; /* flags for leader of current line */
4808 int next_leader_len; /* leader len of next line */
4809 char_u *next_leader_flags; /* flags for leader of next line */
4810 int do_comments; /* format comments */
4811 #endif
4813 if (lnum <= 1)
4814 return TRUE; /* start of the file */
4816 p = ml_get(lnum - 1);
4817 if (*p == NUL)
4818 return TRUE; /* after empty line */
4820 #ifdef FEAT_COMMENTS
4821 do_comments = has_format_option(FO_Q_COMS);
4822 #endif
4823 if (fmt_check_par(lnum - 1
4824 #ifdef FEAT_COMMENTS
4825 , &leader_len, &leader_flags, do_comments
4826 #endif
4828 return TRUE; /* after non-paragraph line */
4830 if (fmt_check_par(lnum
4831 #ifdef FEAT_COMMENTS
4832 , &next_leader_len, &next_leader_flags, do_comments
4833 #endif
4835 return TRUE; /* "lnum" is not a paragraph line */
4837 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
4838 return TRUE; /* missing trailing space in previous line. */
4840 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
4841 return TRUE; /* numbered item starts in "lnum". */
4843 #ifdef FEAT_COMMENTS
4844 if (!same_leader(lnum - 1, leader_len, leader_flags,
4845 next_leader_len, next_leader_flags))
4846 return TRUE; /* change of comment leader. */
4847 #endif
4849 return FALSE;
4852 #ifdef FEAT_VISUAL
4854 * prepare a few things for block mode yank/delete/tilde
4856 * for delete:
4857 * - textlen includes the first/last char to be (partly) deleted
4858 * - start/endspaces is the number of columns that are taken by the
4859 * first/last deleted char minus the number of columns that have to be
4860 * deleted.
4861 * for yank and tilde:
4862 * - textlen includes the first/last char to be wholly yanked
4863 * - start/endspaces is the number of columns of the first/last yanked char
4864 * that are to be yanked.
4866 static void
4867 block_prep(oap, bdp, lnum, is_del)
4868 oparg_T *oap;
4869 struct block_def *bdp;
4870 linenr_T lnum;
4871 int is_del;
4873 int incr = 0;
4874 char_u *pend;
4875 char_u *pstart;
4876 char_u *line;
4877 char_u *prev_pstart;
4878 char_u *prev_pend;
4880 bdp->startspaces = 0;
4881 bdp->endspaces = 0;
4882 bdp->textlen = 0;
4883 bdp->start_vcol = 0;
4884 bdp->end_vcol = 0;
4885 #ifdef FEAT_VISUALEXTRA
4886 bdp->is_short = FALSE;
4887 bdp->is_oneChar = FALSE;
4888 bdp->pre_whitesp = 0;
4889 bdp->pre_whitesp_c = 0;
4890 bdp->end_char_vcols = 0;
4891 #endif
4892 bdp->start_char_vcols = 0;
4894 line = ml_get(lnum);
4895 pstart = line;
4896 prev_pstart = line;
4897 while (bdp->start_vcol < oap->start_vcol && *pstart)
4899 /* Count a tab for what it's worth (if list mode not on) */
4900 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
4901 bdp->start_vcol += incr;
4902 #ifdef FEAT_VISUALEXTRA
4903 if (vim_iswhite(*pstart))
4905 bdp->pre_whitesp += incr;
4906 bdp->pre_whitesp_c++;
4908 else
4910 bdp->pre_whitesp = 0;
4911 bdp->pre_whitesp_c = 0;
4913 #endif
4914 prev_pstart = pstart;
4915 mb_ptr_adv(pstart);
4917 bdp->start_char_vcols = incr;
4918 if (bdp->start_vcol < oap->start_vcol) /* line too short */
4920 bdp->end_vcol = bdp->start_vcol;
4921 #ifdef FEAT_VISUALEXTRA
4922 bdp->is_short = TRUE;
4923 #endif
4924 if (!is_del || oap->op_type == OP_APPEND)
4925 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
4927 else
4929 /* notice: this converts partly selected Multibyte characters to
4930 * spaces, too. */
4931 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
4932 if (is_del && bdp->startspaces)
4933 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
4934 pend = pstart;
4935 bdp->end_vcol = bdp->start_vcol;
4936 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
4938 #ifdef FEAT_VISUALEXTRA
4939 bdp->is_oneChar = TRUE;
4940 #endif
4941 if (oap->op_type == OP_INSERT)
4942 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4943 else if (oap->op_type == OP_APPEND)
4945 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
4946 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4948 else
4950 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
4951 if (is_del && oap->op_type != OP_LSHIFT)
4953 /* just putting the sum of those two into
4954 * bdp->startspaces doesn't work for Visual replace,
4955 * so we have to split the tab in two */
4956 bdp->startspaces = bdp->start_char_vcols
4957 - (bdp->start_vcol - oap->start_vcol);
4958 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4962 else
4964 prev_pend = pend;
4965 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
4967 /* Count a tab for what it's worth (if list mode not on) */
4968 prev_pend = pend;
4969 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
4970 bdp->end_vcol += incr;
4972 if (bdp->end_vcol <= oap->end_vcol
4973 && (!is_del
4974 || oap->op_type == OP_APPEND
4975 || oap->op_type == OP_REPLACE)) /* line too short */
4977 #ifdef FEAT_VISUALEXTRA
4978 bdp->is_short = TRUE;
4979 #endif
4980 /* Alternative: include spaces to fill up the block.
4981 * Disadvantage: can lead to trailing spaces when the line is
4982 * short where the text is put */
4983 /* if (!is_del || oap->op_type == OP_APPEND) */
4984 if (oap->op_type == OP_APPEND || virtual_op)
4985 bdp->endspaces = oap->end_vcol - bdp->end_vcol
4986 + oap->inclusive;
4987 else
4988 bdp->endspaces = 0; /* replace doesn't add characters */
4990 else if (bdp->end_vcol > oap->end_vcol)
4992 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4993 if (!is_del && bdp->endspaces)
4995 bdp->endspaces = incr - bdp->endspaces;
4996 if (pend != pstart)
4997 pend = prev_pend;
5001 #ifdef FEAT_VISUALEXTRA
5002 bdp->end_char_vcols = incr;
5003 #endif
5004 if (is_del && bdp->startspaces)
5005 pstart = prev_pstart;
5006 bdp->textlen = (int)(pend - pstart);
5008 bdp->textcol = (colnr_T) (pstart - line);
5009 bdp->textstart = pstart;
5011 #endif /* FEAT_VISUAL */
5013 #ifdef FEAT_RIGHTLEFT
5014 static void reverse_line __ARGS((char_u *s));
5016 static void
5017 reverse_line(s)
5018 char_u *s;
5020 int i, j;
5021 char_u c;
5023 if ((i = (int)STRLEN(s) - 1) <= 0)
5024 return;
5026 curwin->w_cursor.col = i - curwin->w_cursor.col;
5027 for (j = 0; j < i; j++, i--)
5029 c = s[i]; s[i] = s[j]; s[j] = c;
5033 # define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
5034 #else
5035 # define RLADDSUBFIX(ptr)
5036 #endif
5039 * add or subtract 'Prenum1' from a number in a line
5040 * 'command' is CTRL-A for add, CTRL-X for subtract
5042 * return FAIL for failure, OK otherwise
5045 do_addsub(command, Prenum1)
5046 int command;
5047 linenr_T Prenum1;
5049 int col;
5050 char_u *buf1;
5051 char_u buf2[NUMBUFLEN];
5052 int hex; /* 'X' or 'x': hex; '0': octal */
5053 static int hexupper = FALSE; /* 0xABC */
5054 unsigned long n;
5055 long_u oldn;
5056 char_u *ptr;
5057 int c;
5058 int length = 0; /* character length of the number */
5059 int todel;
5060 int dohex;
5061 int dooct;
5062 int doalp;
5063 int firstdigit;
5064 int negative;
5065 int subtract;
5067 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5068 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
5069 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5071 ptr = ml_get_curline();
5072 RLADDSUBFIX(ptr);
5075 * First check if we are on a hexadecimal number, after the "0x".
5077 col = curwin->w_cursor.col;
5078 if (dohex)
5079 while (col > 0 && vim_isxdigit(ptr[col]))
5080 --col;
5081 if ( dohex
5082 && col > 0
5083 && (ptr[col] == 'X'
5084 || ptr[col] == 'x')
5085 && ptr[col - 1] == '0'
5086 && vim_isxdigit(ptr[col + 1]))
5089 * Found hexadecimal number, move to its start.
5091 --col;
5093 else
5096 * Search forward and then backward to find the start of number.
5098 col = curwin->w_cursor.col;
5100 while (ptr[col] != NUL
5101 && !vim_isdigit(ptr[col])
5102 && !(doalp && ASCII_ISALPHA(ptr[col])))
5103 ++col;
5105 while (col > 0
5106 && vim_isdigit(ptr[col - 1])
5107 && !(doalp && ASCII_ISALPHA(ptr[col])))
5108 --col;
5112 * If a number was found, and saving for undo works, replace the number.
5114 firstdigit = ptr[col];
5115 RLADDSUBFIX(ptr);
5116 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5117 || u_save_cursor() != OK)
5119 beep_flush();
5120 return FAIL;
5123 /* get ptr again, because u_save() may have changed it */
5124 ptr = ml_get_curline();
5125 RLADDSUBFIX(ptr);
5127 if (doalp && ASCII_ISALPHA(firstdigit))
5129 /* decrement or increment alphabetic character */
5130 if (command == Ctrl_X)
5132 if (CharOrd(firstdigit) < Prenum1)
5134 if (isupper(firstdigit))
5135 firstdigit = 'A';
5136 else
5137 firstdigit = 'a';
5139 else
5140 #ifdef EBCDIC
5141 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5142 #else
5143 firstdigit -= Prenum1;
5144 #endif
5146 else
5148 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5150 if (isupper(firstdigit))
5151 firstdigit = 'Z';
5152 else
5153 firstdigit = 'z';
5155 else
5156 #ifdef EBCDIC
5157 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5158 #else
5159 firstdigit += Prenum1;
5160 #endif
5162 curwin->w_cursor.col = col;
5163 (void)del_char(FALSE);
5164 ins_char(firstdigit);
5166 else
5168 negative = FALSE;
5169 if (col > 0 && ptr[col - 1] == '-') /* negative number */
5171 --col;
5172 negative = TRUE;
5175 /* get the number value (unsigned) */
5176 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
5178 /* ignore leading '-' for hex and octal numbers */
5179 if (hex && negative)
5181 ++col;
5182 --length;
5183 negative = FALSE;
5186 /* add or subtract */
5187 subtract = FALSE;
5188 if (command == Ctrl_X)
5189 subtract ^= TRUE;
5190 if (negative)
5191 subtract ^= TRUE;
5193 oldn = n;
5194 if (subtract)
5195 n -= (unsigned long)Prenum1;
5196 else
5197 n += (unsigned long)Prenum1;
5199 /* handle wraparound for decimal numbers */
5200 if (!hex)
5202 if (subtract)
5204 if (n > oldn)
5206 n = 1 + (n ^ (unsigned long)-1);
5207 negative ^= TRUE;
5210 else /* add */
5212 if (n < oldn)
5214 n = (n ^ (unsigned long)-1);
5215 negative ^= TRUE;
5218 if (n == 0)
5219 negative = FALSE;
5223 * Delete the old number.
5225 curwin->w_cursor.col = col;
5226 todel = length;
5227 c = gchar_cursor();
5229 * Don't include the '-' in the length, only the length of the part
5230 * after it is kept the same.
5232 if (c == '-')
5233 --length;
5234 while (todel-- > 0)
5236 if (c < 0x100 && isalpha(c))
5238 if (isupper(c))
5239 hexupper = TRUE;
5240 else
5241 hexupper = FALSE;
5243 /* del_char() will mark line needing displaying */
5244 (void)del_char(FALSE);
5245 c = gchar_cursor();
5249 * Prepare the leading characters in buf1[].
5250 * When there are many leading zeros it could be very long. Allocate
5251 * a bit too much.
5253 buf1 = alloc((unsigned)length + NUMBUFLEN);
5254 if (buf1 == NULL)
5255 return FAIL;
5256 ptr = buf1;
5257 if (negative)
5259 *ptr++ = '-';
5261 if (hex)
5263 *ptr++ = '0';
5264 --length;
5266 if (hex == 'x' || hex == 'X')
5268 *ptr++ = hex;
5269 --length;
5273 * Put the number characters in buf2[].
5275 if (hex == 0)
5276 sprintf((char *)buf2, "%lu", n);
5277 else if (hex == '0')
5278 sprintf((char *)buf2, "%lo", n);
5279 else if (hex && hexupper)
5280 sprintf((char *)buf2, "%lX", n);
5281 else
5282 sprintf((char *)buf2, "%lx", n);
5283 length -= (int)STRLEN(buf2);
5286 * Adjust number of zeros to the new number of digits, so the
5287 * total length of the number remains the same.
5288 * Don't do this when
5289 * the result may look like an octal number.
5291 if (firstdigit == '0' && !(dooct && hex == 0))
5292 while (length-- > 0)
5293 *ptr++ = '0';
5294 *ptr = NUL;
5295 STRCAT(buf1, buf2);
5296 ins_str(buf1); /* insert the new number */
5297 vim_free(buf1);
5299 --curwin->w_cursor.col;
5300 curwin->w_set_curswant = TRUE;
5301 #ifdef FEAT_RIGHTLEFT
5302 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
5303 RLADDSUBFIX(ptr);
5304 #endif
5305 return OK;
5308 #ifdef FEAT_VIMINFO
5310 read_viminfo_register(virp, force)
5311 vir_T *virp;
5312 int force;
5314 int eof;
5315 int do_it = TRUE;
5316 int size;
5317 int limit;
5318 int i;
5319 int set_prev = FALSE;
5320 char_u *str;
5321 char_u **array = NULL;
5323 /* We only get here (hopefully) if line[0] == '"' */
5324 str = virp->vir_line + 1;
5326 /* If the line starts with "" this is the y_previous register. */
5327 if (*str == '"')
5329 set_prev = TRUE;
5330 str++;
5333 if (!ASCII_ISALNUM(*str) && *str != '-')
5335 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5336 return TRUE; /* too many errors, pretend end-of-file */
5337 do_it = FALSE;
5339 get_yank_register(*str++, FALSE);
5340 if (!force && y_current->y_array != NULL)
5341 do_it = FALSE;
5343 if (*str == '@')
5345 /* "x@: register x used for @@ */
5346 if (force || execreg_lastc == NUL)
5347 execreg_lastc = str[-1];
5350 size = 0;
5351 limit = 100; /* Optimized for registers containing <= 100 lines */
5352 if (do_it)
5354 if (set_prev)
5355 y_previous = y_current;
5356 vim_free(y_current->y_array);
5357 array = y_current->y_array =
5358 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
5359 str = skipwhite(skiptowhite(str));
5360 if (STRNCMP(str, "CHAR", 4) == 0)
5361 y_current->y_type = MCHAR;
5362 #ifdef FEAT_VISUAL
5363 else if (STRNCMP(str, "BLOCK", 5) == 0)
5364 y_current->y_type = MBLOCK;
5365 #endif
5366 else
5367 y_current->y_type = MLINE;
5368 /* get the block width; if it's missing we get a zero, which is OK */
5369 str = skipwhite(skiptowhite(str));
5370 #ifdef FEAT_VISUAL
5371 y_current->y_width = getdigits(&str);
5372 #else
5373 (void)getdigits(&str);
5374 #endif
5377 while (!(eof = viminfo_readline(virp))
5378 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5380 if (do_it)
5382 if (size >= limit)
5384 y_current->y_array = (char_u **)
5385 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
5386 for (i = 0; i < limit; i++)
5387 y_current->y_array[i] = array[i];
5388 vim_free(array);
5389 limit *= 2;
5390 array = y_current->y_array;
5392 str = viminfo_readstring(virp, 1, TRUE);
5393 if (str != NULL)
5394 array[size++] = str;
5395 else
5396 do_it = FALSE;
5399 if (do_it)
5401 if (size == 0)
5403 vim_free(array);
5404 y_current->y_array = NULL;
5406 else if (size < limit)
5408 y_current->y_array =
5409 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
5410 for (i = 0; i < size; i++)
5411 y_current->y_array[i] = array[i];
5412 vim_free(array);
5414 y_current->y_size = size;
5416 return eof;
5419 void
5420 write_viminfo_registers(fp)
5421 FILE *fp;
5423 int i, j;
5424 char_u *type;
5425 char_u c;
5426 int num_lines;
5427 int max_num_lines;
5428 int max_kbyte;
5429 long len;
5431 fprintf(fp, _("\n# Registers:\n"));
5433 /* Get '<' value, use old '"' value if '<' is not found. */
5434 max_num_lines = get_viminfo_parameter('<');
5435 if (max_num_lines < 0)
5436 max_num_lines = get_viminfo_parameter('"');
5437 if (max_num_lines == 0)
5438 return;
5439 max_kbyte = get_viminfo_parameter('s');
5440 if (max_kbyte == 0)
5441 return;
5443 for (i = 0; i < NUM_REGISTERS; i++)
5445 if (y_regs[i].y_array == NULL)
5446 continue;
5447 #ifdef FEAT_CLIPBOARD
5448 /* Skip '*'/'+' register, we don't want them back next time */
5449 if (i == STAR_REGISTER || i == PLUS_REGISTER)
5450 continue;
5451 #endif
5452 #ifdef FEAT_DND
5453 /* Neither do we want the '~' register */
5454 if (i == TILDE_REGISTER)
5455 continue;
5456 #endif
5457 /* Skip empty registers. */
5458 num_lines = y_regs[i].y_size;
5459 if (num_lines == 0
5460 || (num_lines == 1 && y_regs[i].y_type == MCHAR
5461 && STRLEN(y_regs[i].y_array[0]) == 0))
5462 continue;
5464 if (max_kbyte > 0)
5466 /* Skip register if there is more text than the maximum size. */
5467 len = 0;
5468 for (j = 0; j < num_lines; j++)
5469 len += (long)STRLEN(y_regs[i].y_array[j]) + 1L;
5470 if (len > (long)max_kbyte * 1024L)
5471 continue;
5474 switch (y_regs[i].y_type)
5476 case MLINE:
5477 type = (char_u *)"LINE";
5478 break;
5479 case MCHAR:
5480 type = (char_u *)"CHAR";
5481 break;
5482 #ifdef FEAT_VISUAL
5483 case MBLOCK:
5484 type = (char_u *)"BLOCK";
5485 break;
5486 #endif
5487 default:
5488 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
5489 y_regs[i].y_type);
5490 emsg(IObuff);
5491 type = (char_u *)"LINE";
5492 break;
5494 if (y_previous == &y_regs[i])
5495 fprintf(fp, "\"");
5496 c = get_register_name(i);
5497 fprintf(fp, "\"%c", c);
5498 if (c == execreg_lastc)
5499 fprintf(fp, "@");
5500 fprintf(fp, "\t%s\t%d\n", type,
5501 #ifdef FEAT_VISUAL
5502 (int)y_regs[i].y_width
5503 #else
5505 #endif
5508 /* If max_num_lines < 0, then we save ALL the lines in the register */
5509 if (max_num_lines > 0 && num_lines > max_num_lines)
5510 num_lines = max_num_lines;
5511 for (j = 0; j < num_lines; j++)
5513 putc('\t', fp);
5514 viminfo_writestring(fp, y_regs[i].y_array[j]);
5518 #endif /* FEAT_VIMINFO */
5520 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
5522 * SELECTION / PRIMARY ('*')
5524 * Text selection stuff that uses the GUI selection register '*'. When using a
5525 * GUI this may be text from another window, otherwise it is the last text we
5526 * had highlighted with VIsual mode. With mouse support, clicking the middle
5527 * button performs the paste, otherwise you will need to do <"*p>. "
5528 * If not under X, it is synonymous with the clipboard register '+'.
5530 * X CLIPBOARD ('+')
5532 * Text selection stuff that uses the GUI clipboard register '+'.
5533 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5534 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5535 * otherwise you will need to do <"+p>. "
5536 * If not under X, it is synonymous with the selection register '*'.
5540 * Routine to export any final X selection we had to the environment
5541 * so that the text is still available after vim has exited. X selections
5542 * only exist while the owning application exists, so we write to the
5543 * permanent (while X runs) store CUT_BUFFER0.
5544 * Dump the CLIPBOARD selection if we own it (it's logically the more
5545 * 'permanent' of the two), otherwise the PRIMARY one.
5546 * For now, use a hard-coded sanity limit of 1Mb of data.
5548 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5549 void
5550 x11_export_final_selection()
5552 Display *dpy;
5553 char_u *str = NULL;
5554 long_u len = 0;
5555 int motion_type = -1;
5557 # ifdef FEAT_GUI
5558 if (gui.in_use)
5559 dpy = X_DISPLAY;
5560 else
5561 # endif
5562 # ifdef FEAT_XCLIPBOARD
5563 dpy = xterm_dpy;
5564 # else
5565 return;
5566 # endif
5568 /* Get selection to export */
5569 if (clip_plus.owned)
5570 motion_type = clip_convert_selection(&str, &len, &clip_plus);
5571 else if (clip_star.owned)
5572 motion_type = clip_convert_selection(&str, &len, &clip_star);
5574 /* Check it's OK */
5575 if (dpy != NULL && str != NULL && motion_type >= 0
5576 && len < 1024*1024 && len > 0)
5578 #ifdef FEAT_MBYTE
5579 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
5580 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
5581 * encoding conversion usually doesn't work, so keep the text as-is.
5583 if (has_mbyte)
5585 char_u *conv_str = str;
5586 vimconv_T vc;
5588 vc.vc_type = CONV_NONE;
5589 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
5591 conv_str = string_convert(&vc, str, (int*)&len);
5592 if (conv_str != NULL)
5594 vim_free(str);
5595 str = conv_str;
5597 convert_setup(&vc, NULL, NULL);
5600 #endif
5601 XStoreBuffer(dpy, (char *)str, (int)len, 0);
5602 XFlush(dpy);
5605 vim_free(str);
5607 #endif
5609 void
5610 clip_free_selection(cbd)
5611 VimClipboard *cbd;
5613 struct yankreg *y_ptr = y_current;
5615 if (cbd == &clip_plus)
5616 y_current = &y_regs[PLUS_REGISTER];
5617 else
5618 y_current = &y_regs[STAR_REGISTER];
5619 free_yank_all();
5620 y_current->y_size = 0;
5621 y_current = y_ptr;
5625 * Get the selected text and put it in the gui selection register '*' or '+'.
5627 void
5628 clip_get_selection(cbd)
5629 VimClipboard *cbd;
5631 struct yankreg *old_y_previous, *old_y_current;
5632 pos_T old_cursor;
5633 #ifdef FEAT_VISUAL
5634 pos_T old_visual;
5635 int old_visual_mode;
5636 #endif
5637 colnr_T old_curswant;
5638 int old_set_curswant;
5639 pos_T old_op_start, old_op_end;
5640 oparg_T oa;
5641 cmdarg_T ca;
5643 if (cbd->owned)
5645 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
5646 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
5647 return;
5649 /* Get the text between clip_star.start & clip_star.end */
5650 old_y_previous = y_previous;
5651 old_y_current = y_current;
5652 old_cursor = curwin->w_cursor;
5653 old_curswant = curwin->w_curswant;
5654 old_set_curswant = curwin->w_set_curswant;
5655 old_op_start = curbuf->b_op_start;
5656 old_op_end = curbuf->b_op_end;
5657 #ifdef FEAT_VISUAL
5658 old_visual = VIsual;
5659 old_visual_mode = VIsual_mode;
5660 #endif
5661 clear_oparg(&oa);
5662 oa.regname = (cbd == &clip_plus ? '+' : '*');
5663 oa.op_type = OP_YANK;
5664 vim_memset(&ca, 0, sizeof(ca));
5665 ca.oap = &oa;
5666 ca.cmdchar = 'y';
5667 ca.count1 = 1;
5668 ca.retval = CA_NO_ADJ_OP_END;
5669 do_pending_operator(&ca, 0, TRUE);
5670 y_previous = old_y_previous;
5671 y_current = old_y_current;
5672 curwin->w_cursor = old_cursor;
5673 changed_cline_bef_curs(); /* need to update w_virtcol et al */
5674 curwin->w_curswant = old_curswant;
5675 curwin->w_set_curswant = old_set_curswant;
5676 curbuf->b_op_start = old_op_start;
5677 curbuf->b_op_end = old_op_end;
5678 #ifdef FEAT_VISUAL
5679 VIsual = old_visual;
5680 VIsual_mode = old_visual_mode;
5681 #endif
5683 else
5685 clip_free_selection(cbd);
5687 /* Try to get selected text from another window */
5688 clip_gen_request_selection(cbd);
5692 /* Convert from the GUI selection string into the '*'/'+' register */
5693 void
5694 clip_yank_selection(type, str, len, cbd)
5695 int type;
5696 char_u *str;
5697 long len;
5698 VimClipboard *cbd;
5700 struct yankreg *y_ptr;
5702 if (cbd == &clip_plus)
5703 y_ptr = &y_regs[PLUS_REGISTER];
5704 else
5705 y_ptr = &y_regs[STAR_REGISTER];
5707 clip_free_selection(cbd);
5709 str_to_reg(y_ptr, type, str, len, 0L);
5713 * Convert the '*'/'+' register into a GUI selection string returned in *str
5714 * with length *len.
5715 * Returns the motion type, or -1 for failure.
5718 clip_convert_selection(str, len, cbd)
5719 char_u **str;
5720 long_u *len;
5721 VimClipboard *cbd;
5723 char_u *p;
5724 int lnum;
5725 int i, j;
5726 int_u eolsize;
5727 struct yankreg *y_ptr;
5729 if (cbd == &clip_plus)
5730 y_ptr = &y_regs[PLUS_REGISTER];
5731 else
5732 y_ptr = &y_regs[STAR_REGISTER];
5734 #ifdef USE_CRNL
5735 eolsize = 2;
5736 #else
5737 eolsize = 1;
5738 #endif
5740 *str = NULL;
5741 *len = 0;
5742 if (y_ptr->y_array == NULL)
5743 return -1;
5745 for (i = 0; i < y_ptr->y_size; i++)
5746 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
5749 * Don't want newline character at end of last line if we're in MCHAR mode.
5751 if (y_ptr->y_type == MCHAR && *len >= eolsize)
5752 *len -= eolsize;
5754 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
5755 if (p == NULL)
5756 return -1;
5757 lnum = 0;
5758 for (i = 0, j = 0; i < (int)*len; i++, j++)
5760 if (y_ptr->y_array[lnum][j] == '\n')
5761 p[i] = NUL;
5762 else if (y_ptr->y_array[lnum][j] == NUL)
5764 #ifdef USE_CRNL
5765 p[i++] = '\r';
5766 #endif
5767 #ifdef USE_CR
5768 p[i] = '\r';
5769 #else
5770 p[i] = '\n';
5771 #endif
5772 lnum++;
5773 j = -1;
5775 else
5776 p[i] = y_ptr->y_array[lnum][j];
5778 return y_ptr->y_type;
5782 # if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
5784 * If we have written to a clipboard register, send the text to the clipboard.
5786 static void
5787 may_set_selection()
5789 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
5791 clip_own_selection(&clip_star);
5792 clip_gen_set_selection(&clip_star);
5794 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
5796 clip_own_selection(&clip_plus);
5797 clip_gen_set_selection(&clip_plus);
5800 # endif
5802 #endif /* FEAT_CLIPBOARD || PROTO */
5805 #if defined(FEAT_DND) || defined(PROTO)
5807 * Replace the contents of the '~' register with str.
5809 void
5810 dnd_yank_drag_data(str, len)
5811 char_u *str;
5812 long len;
5814 struct yankreg *curr;
5816 curr = y_current;
5817 y_current = &y_regs[TILDE_REGISTER];
5818 free_yank_all();
5819 str_to_reg(y_current, MCHAR, str, len, 0L);
5820 y_current = curr;
5822 #endif
5825 #if defined(FEAT_EVAL) || defined(PROTO)
5827 * Return the type of a register.
5828 * Used for getregtype()
5829 * Returns MAUTO for error.
5831 char_u
5832 get_reg_type(regname, reglen)
5833 int regname;
5834 long *reglen;
5836 switch (regname)
5838 case '%': /* file name */
5839 case '#': /* alternate file name */
5840 case '=': /* expression */
5841 case ':': /* last command line */
5842 case '/': /* last search-pattern */
5843 case '.': /* last inserted text */
5844 #ifdef FEAT_SEARCHPATH
5845 case Ctrl_F: /* Filename under cursor */
5846 case Ctrl_P: /* Path under cursor, expand via "path" */
5847 #endif
5848 case Ctrl_W: /* word under cursor */
5849 case Ctrl_A: /* WORD (mnemonic All) under cursor */
5850 case '_': /* black hole: always empty */
5851 return MCHAR;
5854 #ifdef FEAT_CLIPBOARD
5855 regname = may_get_selection(regname);
5856 #endif
5858 /* Should we check for a valid name? */
5859 get_yank_register(regname, FALSE);
5861 if (y_current->y_array != NULL)
5863 #ifdef FEAT_VISUAL
5864 if (reglen != NULL && y_current->y_type == MBLOCK)
5865 *reglen = y_current->y_width;
5866 #endif
5867 return y_current->y_type;
5869 return MAUTO;
5873 * Return the contents of a register as a single allocated string.
5874 * Used for "@r" in expressions and for getreg().
5875 * Returns NULL for error.
5877 char_u *
5878 get_reg_contents(regname, allowexpr, expr_src)
5879 int regname;
5880 int allowexpr; /* allow "=" register */
5881 int expr_src; /* get expression for "=" register */
5883 long i;
5884 char_u *retval;
5885 int allocated;
5886 long len;
5888 /* Don't allow using an expression register inside an expression */
5889 if (regname == '=')
5891 if (allowexpr)
5893 if (expr_src)
5894 return get_expr_line_src();
5895 return get_expr_line();
5897 return NULL;
5900 if (regname == '@') /* "@@" is used for unnamed register */
5901 regname = '"';
5903 /* check for valid regname */
5904 if (regname != NUL && !valid_yank_reg(regname, FALSE))
5905 return NULL;
5907 #ifdef FEAT_CLIPBOARD
5908 regname = may_get_selection(regname);
5909 #endif
5911 if (get_spec_reg(regname, &retval, &allocated, FALSE))
5913 if (retval == NULL)
5914 return NULL;
5915 if (!allocated)
5916 retval = vim_strsave(retval);
5917 return retval;
5920 get_yank_register(regname, FALSE);
5921 if (y_current->y_array == NULL)
5922 return NULL;
5925 * Compute length of resulting string.
5927 len = 0;
5928 for (i = 0; i < y_current->y_size; ++i)
5930 len += (long)STRLEN(y_current->y_array[i]);
5932 * Insert a newline between lines and after last line if
5933 * y_type is MLINE.
5935 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5936 ++len;
5939 retval = lalloc(len + 1, TRUE);
5942 * Copy the lines of the yank register into the string.
5944 if (retval != NULL)
5946 len = 0;
5947 for (i = 0; i < y_current->y_size; ++i)
5949 STRCPY(retval + len, y_current->y_array[i]);
5950 len += (long)STRLEN(retval + len);
5953 * Insert a NL between lines and after the last line if y_type is
5954 * MLINE.
5956 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5957 retval[len++] = '\n';
5959 retval[len] = NUL;
5962 return retval;
5966 * Store string "str" in register "name".
5967 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
5968 * If "must_append" is TRUE, always append to the register. Otherwise append
5969 * if "name" is an uppercase letter.
5970 * Note: "maxlen" and "must_append" don't work for the "/" register.
5971 * Careful: 'str' is modified, you may have to use a copy!
5972 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
5974 void
5975 write_reg_contents(name, str, maxlen, must_append)
5976 int name;
5977 char_u *str;
5978 int maxlen;
5979 int must_append;
5981 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
5984 void
5985 write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
5986 int name;
5987 char_u *str;
5988 int maxlen;
5989 int must_append;
5990 int yank_type;
5991 long block_len;
5993 struct yankreg *old_y_previous, *old_y_current;
5994 long len;
5996 if (maxlen >= 0)
5997 len = maxlen;
5998 else
5999 len = (long)STRLEN(str);
6001 /* Special case: '/' search pattern */
6002 if (name == '/')
6004 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
6005 return;
6008 #ifdef FEAT_EVAL
6009 if (name == '=')
6011 char_u *p, *s;
6013 p = vim_strnsave(str, (int)len);
6014 if (p == NULL)
6015 return;
6016 if (must_append)
6018 s = concat_str(get_expr_line_src(), p);
6019 vim_free(p);
6020 p = s;
6023 set_expr_line(p);
6024 return;
6026 #endif
6028 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6030 emsg_invreg(name);
6031 return;
6034 if (name == '_') /* black hole: nothing to do */
6035 return;
6037 /* Don't want to change the current (unnamed) register */
6038 old_y_previous = y_previous;
6039 old_y_current = y_current;
6041 get_yank_register(name, TRUE);
6042 if (!y_append && !must_append)
6043 free_yank_all();
6044 #ifndef FEAT_VISUAL
6045 /* Just in case - make sure we don't use MBLOCK */
6046 if (yank_type == MBLOCK)
6047 yank_type = MAUTO;
6048 #endif
6049 if (yank_type == MAUTO)
6050 yank_type = ((len > 0 && (str[len - 1] == '\n' || str[len - 1] == '\r'))
6051 ? MLINE : MCHAR);
6052 str_to_reg(y_current, yank_type, str, len, block_len);
6054 # ifdef FEAT_CLIPBOARD
6055 /* Send text of clipboard register to the clipboard. */
6056 may_set_selection();
6057 # endif
6059 /* ':let @" = "val"' should change the meaning of the "" register */
6060 if (name != '"')
6061 y_previous = old_y_previous;
6062 y_current = old_y_current;
6064 #endif /* FEAT_EVAL */
6066 #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6068 * Put a string into a register. When the register is not empty, the string
6069 * is appended.
6071 static void
6072 str_to_reg(y_ptr, type, str, len, blocklen)
6073 struct yankreg *y_ptr; /* pointer to yank register */
6074 int type; /* MCHAR, MLINE or MBLOCK */
6075 char_u *str; /* string to put in register */
6076 long len; /* length of string */
6077 long blocklen; /* width of Visual block */
6079 int lnum;
6080 long start;
6081 long i;
6082 int extra;
6083 int newlines; /* number of lines added */
6084 int extraline = 0; /* extra line at the end */
6085 int append = FALSE; /* append to last line in register */
6086 char_u *s;
6087 char_u **pp;
6088 #ifdef FEAT_VISUAL
6089 long maxlen;
6090 #endif
6092 if (y_ptr->y_array == NULL) /* NULL means emtpy register */
6093 y_ptr->y_size = 0;
6096 * Count the number of lines within the string
6098 newlines = 0;
6099 for (i = 0; i < len; i++)
6100 if (str[i] == '\n')
6101 ++newlines;
6102 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
6104 extraline = 1;
6105 ++newlines; /* count extra newline at the end */
6107 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
6109 append = TRUE;
6110 --newlines; /* uncount newline when appending first line */
6114 * Allocate an array to hold the pointers to the new register lines.
6115 * If the register was not empty, move the existing lines to the new array.
6117 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
6118 * sizeof(char_u *), TRUE);
6119 if (pp == NULL) /* out of memory */
6120 return;
6121 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
6122 pp[lnum] = y_ptr->y_array[lnum];
6123 vim_free(y_ptr->y_array);
6124 y_ptr->y_array = pp;
6125 #ifdef FEAT_VISUAL
6126 maxlen = 0;
6127 #endif
6130 * Find the end of each line and save it into the array.
6132 for (start = 0; start < len + extraline; start += i + 1)
6134 for (i = start; i < len; ++i) /* find the end of the line */
6135 if (str[i] == '\n')
6136 break;
6137 i -= start; /* i is now length of line */
6138 #ifdef FEAT_VISUAL
6139 if (i > maxlen)
6140 maxlen = i;
6141 #endif
6142 if (append)
6144 --lnum;
6145 extra = (int)STRLEN(y_ptr->y_array[lnum]);
6147 else
6148 extra = 0;
6149 s = alloc((unsigned)(i + extra + 1));
6150 if (s == NULL)
6151 break;
6152 if (extra)
6153 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
6154 if (append)
6155 vim_free(y_ptr->y_array[lnum]);
6156 if (i)
6157 mch_memmove(s + extra, str + start, (size_t)i);
6158 extra += i;
6159 s[extra] = NUL;
6160 y_ptr->y_array[lnum++] = s;
6161 while (--extra >= 0)
6163 if (*s == NUL)
6164 *s = '\n'; /* replace NUL with newline */
6165 ++s;
6167 append = FALSE; /* only first line is appended */
6169 y_ptr->y_type = type;
6170 y_ptr->y_size = lnum;
6171 # ifdef FEAT_VISUAL
6172 if (type == MBLOCK)
6173 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
6174 else
6175 y_ptr->y_width = 0;
6176 # endif
6178 #endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
6180 void
6181 clear_oparg(oap)
6182 oparg_T *oap;
6184 vim_memset(oap, 0, sizeof(oparg_T));
6187 static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
6190 * Count the number of bytes, characters and "words" in a line.
6192 * "Words" are counted by looking for boundaries between non-space and
6193 * space characters. (it seems to produce results that match 'wc'.)
6195 * Return value is byte count; word count for the line is added to "*wc".
6196 * Char count is added to "*cc".
6198 * The function will only examine the first "limit" characters in the
6199 * line, stopping if it encounters an end-of-line (NUL byte). In that
6200 * case, eol_size will be added to the character count to account for
6201 * the size of the EOL character.
6203 static long
6204 line_count_info(line, wc, cc, limit, eol_size)
6205 char_u *line;
6206 long *wc;
6207 long *cc;
6208 long limit;
6209 int eol_size;
6211 long i;
6212 long words = 0;
6213 long chars = 0;
6214 int is_word = 0;
6216 for (i = 0; line[i] && i < limit; )
6218 if (is_word)
6220 if (vim_isspace(line[i]))
6222 words++;
6223 is_word = 0;
6226 else if (!vim_isspace(line[i]))
6227 is_word = 1;
6228 ++chars;
6229 #ifdef FEAT_MBYTE
6230 i += (*mb_ptr2len)(line + i);
6231 #else
6232 ++i;
6233 #endif
6236 if (is_word)
6237 words++;
6238 *wc += words;
6240 /* Add eol_size if the end of line was reached before hitting limit. */
6241 if (line[i] == NUL && i < limit)
6243 i += eol_size;
6244 chars += eol_size;
6246 *cc += chars;
6247 return i;
6251 * Give some info about the position of the cursor (for "g CTRL-G").
6252 * In Visual mode, give some info about the selected region. (In this case,
6253 * the *_count_cursor variables store running totals for the selection.)
6255 void
6256 cursor_pos_info()
6258 char_u *p;
6259 char_u buf1[50];
6260 char_u buf2[40];
6261 linenr_T lnum;
6262 long byte_count = 0;
6263 long byte_count_cursor = 0;
6264 long char_count = 0;
6265 long char_count_cursor = 0;
6266 long word_count = 0;
6267 long word_count_cursor = 0;
6268 int eol_size;
6269 long last_check = 100000L;
6270 #ifdef FEAT_VISUAL
6271 long line_count_selected = 0;
6272 pos_T min_pos, max_pos;
6273 oparg_T oparg;
6274 struct block_def bd;
6275 #endif
6278 * Compute the length of the file in characters.
6280 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6282 MSG(_(no_lines_msg));
6284 else
6286 if (get_fileformat(curbuf) == EOL_DOS)
6287 eol_size = 2;
6288 else
6289 eol_size = 1;
6291 #ifdef FEAT_VISUAL
6292 if (VIsual_active)
6294 if (lt(VIsual, curwin->w_cursor))
6296 min_pos = VIsual;
6297 max_pos = curwin->w_cursor;
6299 else
6301 min_pos = curwin->w_cursor;
6302 max_pos = VIsual;
6304 if (*p_sel == 'e' && max_pos.col > 0)
6305 --max_pos.col;
6307 if (VIsual_mode == Ctrl_V)
6309 #ifdef FEAT_LINEBREAK
6310 char_u * saved_sbr = p_sbr;
6312 /* Make 'sbr' empty for a moment to get the correct size. */
6313 p_sbr = empty_option;
6314 #endif
6315 oparg.is_VIsual = 1;
6316 oparg.block_mode = TRUE;
6317 oparg.op_type = OP_NOP;
6318 getvcols(curwin, &min_pos, &max_pos,
6319 &oparg.start_vcol, &oparg.end_vcol);
6320 #ifdef FEAT_LINEBREAK
6321 p_sbr = saved_sbr;
6322 #endif
6323 if (curwin->w_curswant == MAXCOL)
6324 oparg.end_vcol = MAXCOL;
6325 /* Swap the start, end vcol if needed */
6326 if (oparg.end_vcol < oparg.start_vcol)
6328 oparg.end_vcol += oparg.start_vcol;
6329 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
6330 oparg.end_vcol -= oparg.start_vcol;
6333 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
6335 #endif
6337 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6339 /* Check for a CTRL-C every 100000 characters. */
6340 if (byte_count > last_check)
6342 ui_breakcheck();
6343 if (got_int)
6344 return;
6345 last_check = byte_count + 100000L;
6348 #ifdef FEAT_VISUAL
6349 /* Do extra processing for VIsual mode. */
6350 if (VIsual_active
6351 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
6353 char_u *s = NULL;
6354 long len = 0L;
6356 switch (VIsual_mode)
6358 case Ctrl_V:
6359 # ifdef FEAT_VIRTUALEDIT
6360 virtual_op = virtual_active();
6361 # endif
6362 block_prep(&oparg, &bd, lnum, 0);
6363 # ifdef FEAT_VIRTUALEDIT
6364 virtual_op = MAYBE;
6365 # endif
6366 s = bd.textstart;
6367 len = (long)bd.textlen;
6368 break;
6369 case 'V':
6370 s = ml_get(lnum);
6371 len = MAXCOL;
6372 break;
6373 case 'v':
6375 colnr_T start_col = (lnum == min_pos.lnum)
6376 ? min_pos.col : 0;
6377 colnr_T end_col = (lnum == max_pos.lnum)
6378 ? max_pos.col - start_col + 1 : MAXCOL;
6380 s = ml_get(lnum) + start_col;
6381 len = end_col;
6383 break;
6385 if (s != NULL)
6387 byte_count_cursor += line_count_info(s, &word_count_cursor,
6388 &char_count_cursor, len, eol_size);
6389 if (lnum == curbuf->b_ml.ml_line_count
6390 && !curbuf->b_p_eol
6391 && curbuf->b_p_bin
6392 && (long)STRLEN(s) < len)
6393 byte_count_cursor -= eol_size;
6396 else
6397 #endif
6399 /* In non-visual mode, check for the line the cursor is on */
6400 if (lnum == curwin->w_cursor.lnum)
6402 word_count_cursor += word_count;
6403 char_count_cursor += char_count;
6404 byte_count_cursor = byte_count +
6405 line_count_info(ml_get(lnum),
6406 &word_count_cursor, &char_count_cursor,
6407 (long)(curwin->w_cursor.col + 1), eol_size);
6410 /* Add to the running totals */
6411 byte_count += line_count_info(ml_get(lnum), &word_count,
6412 &char_count, (long)MAXCOL, eol_size);
6415 /* Correction for when last line doesn't have an EOL. */
6416 if (!curbuf->b_p_eol && curbuf->b_p_bin)
6417 byte_count -= eol_size;
6419 #ifdef FEAT_VISUAL
6420 if (VIsual_active)
6422 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
6424 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
6425 &max_pos.col);
6426 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
6427 (long)(oparg.end_vcol - oparg.start_vcol + 1));
6429 else
6430 buf1[0] = NUL;
6432 if (char_count_cursor == byte_count_cursor
6433 && char_count == byte_count)
6434 vim_snprintf((char *)IObuff, IOSIZE,
6435 _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
6436 buf1, line_count_selected,
6437 (long)curbuf->b_ml.ml_line_count,
6438 word_count_cursor, word_count,
6439 byte_count_cursor, byte_count);
6440 else
6441 vim_snprintf((char *)IObuff, IOSIZE,
6442 _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"),
6443 buf1, line_count_selected,
6444 (long)curbuf->b_ml.ml_line_count,
6445 word_count_cursor, word_count,
6446 char_count_cursor, char_count,
6447 byte_count_cursor, byte_count);
6449 else
6450 #endif
6452 p = ml_get_curline();
6453 validate_virtcol();
6454 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
6455 (int)curwin->w_virtcol + 1);
6456 col_print(buf2, sizeof(buf2), (int)STRLEN(p), linetabsize(p));
6458 if (char_count_cursor == byte_count_cursor
6459 && char_count == byte_count)
6460 vim_snprintf((char *)IObuff, IOSIZE,
6461 _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"),
6462 (char *)buf1, (char *)buf2,
6463 (long)curwin->w_cursor.lnum,
6464 (long)curbuf->b_ml.ml_line_count,
6465 word_count_cursor, word_count,
6466 byte_count_cursor, byte_count);
6467 else
6468 vim_snprintf((char *)IObuff, IOSIZE,
6469 _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"),
6470 (char *)buf1, (char *)buf2,
6471 (long)curwin->w_cursor.lnum,
6472 (long)curbuf->b_ml.ml_line_count,
6473 word_count_cursor, word_count,
6474 char_count_cursor, char_count,
6475 byte_count_cursor, byte_count);
6478 #ifdef FEAT_MBYTE
6479 byte_count = bomb_size();
6480 if (byte_count > 0)
6481 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
6482 byte_count);
6483 #endif
6484 /* Don't shorten this message, the user asked for it. */
6485 p = p_shm;
6486 p_shm = (char_u *)"";
6487 msg(IObuff);
6488 p_shm = p;