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.
11 * ops.c: implementation of various operators: op_shift, op_delete, op_tilde,
12 * op_change, op_yank, do_put, do_join
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
31 # define STAR_REGISTER 37
33 # define PLUS_REGISTER 38
35 # define PLUS_REGISTER STAR_REGISTER /* there is only one */
39 # define TILDE_REGISTER (PLUS_REGISTER + 1)
44 # define NUM_REGISTERS (TILDE_REGISTER + 1)
46 # define NUM_REGISTERS (PLUS_REGISTER + 1)
49 # define NUM_REGISTERS 37
53 * Each yank register is an array of pointers to lines.
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 */
61 colnr_T y_width
; /* only set if y_type == MBLOCK */
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
75 int startspaces
; /* 'extra' cols of first char */
76 int endspaces
; /* 'extra' cols of first char */
77 int textlen
; /* chars in block */
78 char_u
*textstart
; /* pointer to 1st char in block */
79 colnr_T textcol
; /* cols of chars (at least part.) in block */
80 colnr_T start_vcol
; /* start col of 1st char wholly inside block */
81 colnr_T end_vcol
; /* start col of 1st char wholly after block */
82 #ifdef FEAT_VISUALEXTRA
83 int is_short
; /* TRUE if line is too short to fit in block */
84 int is_MAX
; /* TRUE if curswant==MAXCOL when starting */
85 int is_oneChar
; /* TRUE if block within one character */
86 int pre_whitesp
; /* screen cols of ws before block */
87 int pre_whitesp_c
; /* chars of ws before block */
88 colnr_T end_char_vcols
; /* number of vcols of post-block char */
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
));
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
,
101 static void stuffescaped
__ARGS((char_u
*arg
, int literally
));
103 static void mb_adjust_opend
__ARGS((oparg_T
*oap
));
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));
114 static void dis_msg
__ARGS((char_u
*p
, int skip_esc
));
116 static void block_prep
__ARGS((oparg_T
*oap
, struct block_def
*, linenr_T
, int));
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
));
121 static int ends_in_white
__ARGS((linenr_T lnum
));
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
));
126 static int fmt_check_par
__ARGS((linenr_T
));
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
)
177 if (char1
== 'r') /* ignore second character */
179 if (char1
== '~') /* when tilde is an operator */
182 if (opchars
[i
][0] == char1
&& opchars
[i
][1] == char2
)
187 #if defined(FEAT_VISUAL) || defined(PROTO)
189 * Return TRUE if operator "op" always works on whole lines.
195 return opchars
[op
][2];
200 * Get first operator command character.
201 * Returns 'g' or 'z' if there is another command character.
207 return opchars
[optype
][0];
211 * Get second operator command character.
214 get_extra_op_char(optype
)
217 return opchars
[optype
][1];
221 * op_shift - handle a shift operation
224 op_shift(oap
, curs_top
, amount
)
236 if (u_save((linenr_T
)(oap
->start
.lnum
- 1),
237 (linenr_T
)(oap
->end
.lnum
+ 1)) == FAIL
)
242 block_col
= curwin
->w_cursor
.col
;
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
);
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())
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);
271 curwin
->w_cursor
.lnum
= oap
->start
.lnum
;
272 curwin
->w_cursor
.col
= block_col
;
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 */
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
)
290 if (oap
->line_count
== 1)
293 sprintf((char *)IObuff
, _("1 line %sed 1 time"), s
);
295 sprintf((char *)IObuff
, _("1 line %sed %d times"), s
, amount
);
300 sprintf((char *)IObuff
, _("%ld lines %sed 1 time"),
303 sprintf((char *)IObuff
, _("%ld lines %sed %d times"),
304 oap
->line_count
, s
, amount
);
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
324 shift_line(left
, round
, amount
, call_changed_bytes
)
328 int call_changed_bytes
; /* call changed_bytes() */
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 */
352 else /* original vi indent */
356 count
-= p_sw
* amount
;
361 count
+= p_sw
* amount
;
366 if (State
& VREPLACE_FLAG
)
367 change_indent(INDENT_SET
, count
, FALSE
, NUL
, call_changed_bytes
);
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.
379 shift_block(oap
, amount
)
383 int left
= (oap
->op_type
== OP_LSHIFT
);
384 int oldstate
= State
;
386 char_u
*newp
, *oldp
, *midp
, *ptr
;
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
;
393 colnr_T vcol
, col
= 0, ws_vcol
;
397 #ifdef FEAT_RIGHTLEFT
400 p_ri
= 0; /* don't want revins in ident */
403 State
= INSERT
; /* don't want REPLACE for State */
404 block_prep(oap
, &bd
, curwin
->w_cursor
.lnum
, TRUE
);
408 /* total is number of screen columns to be inserted/removed */
409 total
= amount
* p_sw
;
410 oldp
= ml_get_curline();
417 * 3. Divvy into TABs & spp
418 * 4. Construct new string
420 total
+= bd
.pre_whitesp
; /* all virtual WS upto & incl a split TAB */
421 ws_vcol
= bd
.start_vcol
- bd
.pre_whitesp
;
426 bd
.textstart
+= (*mb_ptr2len
)(bd
.textstart
);
430 for ( ; vim_iswhite(*bd
.textstart
); )
432 incr
= lbr_chartabsize_adv(&bd
.textstart
, (colnr_T
)(bd
.start_vcol
));
434 bd
.start_vcol
+= incr
;
436 /* OK, now total=all the VWS reqd, and textstart points at the 1st
437 * non-ws char in the block. */
439 i
= ((ws_vcol
% p_ts
) + total
) / p_ts
; /* number of tabs */
441 j
= ((ws_vcol
% p_ts
) + total
) % p_ts
; /* number of spp */
444 /* if we're splitting a TAB, allow for it */
445 bd
.textcol
-= bd
.pre_whitesp_c
- (bd
.startspaces
!= 0);
446 len
= (int)STRLEN(bd
.textstart
) + 1;
447 newp
= alloc_check((unsigned)(bd
.textcol
+ i
+ j
+ len
));
450 vim_memset(newp
, NUL
, (size_t)(bd
.textcol
+ i
+ j
+ len
));
451 mch_memmove(newp
, oldp
, (size_t)bd
.textcol
);
452 copy_chars(newp
+ bd
.textcol
, (size_t)i
, TAB
);
453 copy_spaces(newp
+ bd
.textcol
+ i
, (size_t)j
);
455 mch_memmove(newp
+ bd
.textcol
+ i
+ j
, bd
.textstart
, (size_t)len
);
459 vcol
= oap
->start_vcol
;
460 /* walk vcol past ws to be removed */
461 for (midp
= oldp
+ bd
.textcol
;
462 vcol
< (oap
->start_vcol
+ total
) && vim_iswhite(*midp
); )
464 incr
= lbr_chartabsize_adv(&midp
, (colnr_T
)vcol
);
467 /* internal is the block-internal ws replacing a split TAB */
468 if (vcol
> (oap
->start_vcol
+ total
))
470 /* we have to split the TAB *(midp-1) */
471 internal
= vcol
- (oap
->start_vcol
+ total
);
473 /* if 'expandtab' is not set, use TABs */
475 split
= bd
.startspaces
+ internal
;
480 for (ptr
= oldp
, col
= 0; ptr
< oldp
+bd
.textcol
; )
481 col
+= lbr_chartabsize_adv(&ptr
, (colnr_T
)col
);
483 /* col+1 now equals the start col of the first char of the
484 * block (may be < oap.start_vcol if we're splitting a TAB) */
485 i
= ((col
% p_ts
) + split
) / p_ts
; /* number of tabs */
488 j
= ((col
% p_ts
) + split
) % p_ts
; /* number of spp */
493 newp
= alloc_check(bd
.textcol
+ i
+ j
+ (unsigned)STRLEN(midp
) + 1);
496 vim_memset(newp
, NUL
, (size_t)(bd
.textcol
+ i
+ j
+ STRLEN(midp
) + 1));
498 /* copy first part we want to keep */
499 mch_memmove(newp
, oldp
, (size_t)bd
.textcol
);
500 /* Now copy any TABS and spp to ensure correct alignment! */
501 while (vim_iswhite(*midp
))
509 /* We might have an extra TAB worth of spp now! */
510 if (j
/ p_ts
&& !curbuf
->b_p_et
)
515 copy_chars(newp
+ bd
.textcol
, (size_t)i
, TAB
);
516 copy_spaces(newp
+ bd
.textcol
+ i
, (size_t)j
);
519 mch_memmove(newp
+ STRLEN(newp
), midp
, (size_t)STRLEN(midp
) + 1);
521 /* replace the line */
522 ml_replace(curwin
->w_cursor
.lnum
, newp
, FALSE
);
523 changed_bytes(curwin
->w_cursor
.lnum
, (colnr_T
)bd
.textcol
);
525 curwin
->w_cursor
.col
= oldcol
;
526 #ifdef FEAT_RIGHTLEFT
532 #ifdef FEAT_VISUALEXTRA
534 * Insert string "s" (b_insert ? before : after) block :AKelly
535 * Caller must prepare for undo.
538 block_insert(oap
, s
, b_insert
, bdp
)
542 struct block_def
*bdp
;
545 int count
= 0; /* extra spaces to replace a cut TAB */
546 int spaces
= 0; /* non-zero if cutting a TAB */
547 colnr_T offset
; /* pointer along new line */
548 unsigned s_len
; /* STRLEN(s) */
549 char_u
*newp
, *oldp
; /* new, old lines */
550 linenr_T lnum
; /* loop var */
551 int oldstate
= State
;
553 State
= INSERT
; /* don't want REPLACE for State */
554 s_len
= (unsigned)STRLEN(s
);
556 for (lnum
= oap
->start
.lnum
+ 1; lnum
<= oap
->end
.lnum
; lnum
++)
558 block_prep(oap
, bdp
, lnum
, TRUE
);
559 if (bdp
->is_short
&& b_insert
)
560 continue; /* OP_INSERT, line ends before block start */
566 p_ts
= bdp
->start_char_vcols
;
567 spaces
= bdp
->startspaces
;
569 count
= p_ts
- 1; /* we're cutting a TAB */
570 offset
= bdp
->textcol
;
574 p_ts
= bdp
->end_char_vcols
;
575 if (!bdp
->is_short
) /* spaces = padding after block */
577 spaces
= (bdp
->endspaces
? p_ts
- bdp
->endspaces
: 0);
579 count
= p_ts
- 1; /* we're cutting a TAB */
580 offset
= bdp
->textcol
+ bdp
->textlen
- (spaces
!= 0);
582 else /* spaces = padding to block edge */
584 /* if $ used, just append to EOL (ie spaces==0) */
586 spaces
= (oap
->end_vcol
- bdp
->end_vcol
) + 1;
588 offset
= bdp
->textcol
+ bdp
->textlen
;
592 newp
= alloc_check((unsigned)(STRLEN(oldp
)) + s_len
+ count
+ 1);
596 /* copy up to shifted part */
597 mch_memmove(newp
, oldp
, (size_t)(offset
));
600 /* insert pre-padding */
601 copy_spaces(newp
+ offset
, (size_t)spaces
);
603 /* copy the new text */
604 mch_memmove(newp
+ offset
+ spaces
, s
, (size_t)s_len
);
607 if (spaces
&& !bdp
->is_short
)
609 /* insert post-padding */
610 copy_spaces(newp
+ offset
+ spaces
, (size_t)(p_ts
- spaces
));
611 /* We're splitting a TAB, don't copy it. */
613 /* We allowed for that TAB, remember this now */
619 mch_memmove(newp
+ offset
, oldp
, (size_t)(STRLEN(oldp
) + 1));
621 ml_replace(lnum
, newp
, FALSE
);
623 if (lnum
== oap
->end
.lnum
)
625 /* Set "']" mark to the end of the block instead of the end of
626 * the insert in the first line. */
627 curbuf
->b_op_end
.lnum
= oap
->end
.lnum
;
628 curbuf
->b_op_end
.col
= offset
;
632 changed_lines(oap
->start
.lnum
+ 1, 0, oap
->end
.lnum
+ 1, 0L);
638 #if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
640 * op_reindent - handle reindenting a block of lines.
643 op_reindent(oap
, how
)
645 int (*how
) __ARGS((void));
650 linenr_T first_changed
= 0;
651 linenr_T last_changed
= 0;
652 linenr_T start_lnum
= curwin
->w_cursor
.lnum
;
654 /* Don't even try when 'modifiable' is off. */
657 EMSG(_(e_modifiable
));
661 for (i
= oap
->line_count
; --i
>= 0 && !got_int
; )
663 /* it's a slow thing to do, so give feedback so there's no worry that
664 * the computer's just hung. */
667 && (i
% 50 == 0 || i
== oap
->line_count
- 1)
668 && oap
->line_count
> p_report
)
669 smsg((char_u
*)_("%ld lines to indent... "), i
);
672 * Be vi-compatible: For lisp indenting the first line is not
673 * indented, unless there is only one line.
676 if (i
!= oap
->line_count
- 1 || oap
->line_count
== 1
677 || how
!= get_lisp_indent
)
680 l
= skipwhite(ml_get_curline());
681 if (*l
== NUL
) /* empty or blank line */
684 count
= how(); /* get the indent for this line */
686 if (set_indent(count
, SIN_UNDO
))
688 /* did change the indent, call changed_lines() later */
689 if (first_changed
== 0)
690 first_changed
= curwin
->w_cursor
.lnum
;
691 last_changed
= curwin
->w_cursor
.lnum
;
694 ++curwin
->w_cursor
.lnum
;
695 curwin
->w_cursor
.col
= 0; /* make sure it's valid */
698 /* put cursor on first non-blank of indented line */
699 curwin
->w_cursor
.lnum
= start_lnum
;
700 beginline(BL_SOL
| BL_FIX
);
702 /* Mark changed lines so that they will be redrawn. When Visual
703 * highlighting was present, need to continue until the last line. When
704 * there is no change still need to remove the Visual highlighting. */
705 if (last_changed
!= 0)
706 changed_lines(first_changed
, 0,
708 oap
->is_VIsual
? start_lnum
+ oap
->line_count
:
710 last_changed
+ 1, 0L);
712 else if (oap
->is_VIsual
)
713 redraw_curbuf_later(INVERTED
);
716 if (oap
->line_count
> p_report
)
718 i
= oap
->line_count
- (i
+ 1);
720 MSG(_("1 line indented "));
722 smsg((char_u
*)_("%ld lines indented "), i
);
724 /* set '[ and '] marks */
725 curbuf
->b_op_start
= oap
->start
;
726 curbuf
->b_op_end
= oap
->end
;
728 #endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
730 #if defined(FEAT_EVAL) || defined(PROTO)
732 * Keep the last expression line here, for repeating.
734 static char_u
*expr_line
= NULL
;
737 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
738 * Returns '=' when OK, NUL otherwise.
745 new_line
= getcmdline('=', 0L, 0);
746 if (new_line
== NULL
)
748 if (*new_line
== NUL
) /* use previous line */
751 set_expr_line(new_line
);
756 * Set the expression for the '=' register.
757 * Argument must be an allocated string.
760 set_expr_line(new_line
)
764 expr_line
= new_line
;
768 * Get the result of the '=' register expression.
769 * Returns a pointer to allocated memory, or NULL for failure.
776 static int nested
= 0;
778 if (expr_line
== NULL
)
781 /* Make a copy of the expression, because evaluating it may cause it to be
783 expr_copy
= vim_strsave(expr_line
);
784 if (expr_copy
== NULL
)
787 /* When we are invoked recursively limit the evaluation to 10 levels.
788 * Then return the string as-is. */
793 rv
= eval_to_string(expr_copy
, NULL
, TRUE
);
800 * Get the '=' register expression itself, without evaluating it.
805 if (expr_line
== NULL
)
807 return vim_strsave(expr_line
);
809 #endif /* FEAT_EVAL */
812 * Check if 'regname' is a valid name of a yank register.
813 * Note: There is no check for 0 (default register), caller should do this
816 valid_yank_reg(regname
, writing
)
818 int writing
; /* if TRUE check for writable registers */
820 if ( (regname
> 0 && ASCII_ISALNUM(regname
))
821 || (!writing
&& vim_strchr((char_u
*)
831 #ifdef FEAT_CLIPBOARD
836 || (!writing
&& regname
== '~')
844 * Set y_current and y_append, according to the value of "regname".
845 * Cannot handle the '_' register.
846 * Must only be called with a valid register name!
848 * If regname is 0 and writing, use register 0
849 * If regname is 0 and reading, use previous register
852 get_yank_register(regname
, writing
)
859 if ((regname
== 0 || regname
== '"') && !writing
&& y_previous
!= NULL
)
861 y_current
= y_previous
;
867 else if (ASCII_ISLOWER(i
))
868 i
= CharOrdLow(i
) + 10;
869 else if (ASCII_ISUPPER(i
))
871 i
= CharOrdUp(i
) + 10;
874 else if (regname
== '-')
875 i
= DELETION_REGISTER
;
876 #ifdef FEAT_CLIPBOARD
877 /* When selection is not available, use register 0 instead of '*' */
878 else if (clip_star
.available
&& regname
== '*')
880 /* When clipboard is not available, use register 0 instead of '+' */
881 else if (clip_plus
.available
&& regname
== '+')
885 else if (!writing
&& regname
== '~')
888 else /* not 0-9, a-z, A-Z or '-': use register 0 */
890 y_current
= &(y_regs
[i
]);
891 if (writing
) /* remember the register we write into for do_put() */
892 y_previous
= y_current
;
895 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
897 * When "regname" is a clipboard register, obtain the selection. If it's not
898 * available return zero, otherwise return "regname".
901 may_get_selection(regname
)
906 if (!clip_star
.available
)
909 clip_get_selection(&clip_star
);
911 else if (regname
== '+')
913 if (!clip_plus
.available
)
916 clip_get_selection(&clip_plus
);
922 #if defined(FEAT_VISUAL) || defined(PROTO)
924 * Obtain the contents of a "normal" register. The register is made empty.
925 * The returned pointer has allocated memory, use put_register() later.
928 get_register(name
, copy
)
930 int copy
; /* make a copy, if FALSE make register empty. */
935 #ifdef FEAT_CLIPBOARD
936 /* When Visual area changed, may have to update selection. Obtain the
938 if (name
== '*' && clip_star
.available
)
940 if (clip_isautosel())
941 clip_update_selection();
942 may_get_selection(name
);
946 get_yank_register(name
, 0);
947 reg
= (struct yankreg
*)alloc((unsigned)sizeof(struct yankreg
));
953 /* If we run out of memory some or all of the lines are empty. */
954 if (reg
->y_size
== 0)
957 reg
->y_array
= (char_u
**)alloc((unsigned)(sizeof(char_u
*)
959 if (reg
->y_array
!= NULL
)
961 for (i
= 0; i
< reg
->y_size
; ++i
)
962 reg
->y_array
[i
] = vim_strsave(y_current
->y_array
[i
]);
966 y_current
->y_array
= NULL
;
972 * Put "reg" into register "name". Free any previous contents and "reg".
975 put_register(name
, reg
)
979 get_yank_register(name
, 0);
981 *y_current
= *(struct yankreg
*)reg
;
984 # ifdef FEAT_CLIPBOARD
985 /* Send text written to clipboard register to the clipboard. */
991 #if defined(FEAT_MOUSE) || defined(PROTO)
993 * return TRUE if the current yank register has type MLINE
996 yank_register_mline(regname
)
999 if (regname
!= 0 && !valid_yank_reg(regname
, FALSE
))
1001 if (regname
== '_') /* black hole is always empty */
1003 get_yank_register(regname
, FALSE
);
1004 return (y_current
->y_type
== MLINE
);
1009 * Start or stop recording into a yank register.
1011 * Return FAIL for failure, OK otherwise.
1019 struct yankreg
*old_y_previous
, *old_y_current
;
1022 if (Recording
== FALSE
) /* start recording */
1024 /* registers 0-9, a-z and " are allowed */
1025 if (c
< 0 || (!ASCII_ISALNUM(c
) && c
!= '"'))
1035 else /* stop recording */
1038 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1039 * needs to be removed again to put it in a register. exec_reg then
1040 * adds the escaping back later.
1049 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1050 vim_unescape_csi(p
);
1053 * We don't want to change the default register here, so save and
1054 * restore the current register name.
1056 old_y_previous
= y_previous
;
1057 old_y_current
= y_current
;
1059 retval
= stuff_yank(regname
, p
);
1061 y_previous
= old_y_previous
;
1062 y_current
= old_y_current
;
1069 * Stuff string "p" into yank register "regname" as a single line (append if
1070 * uppercase). "p" must have been alloced.
1072 * return FAIL for failure, OK otherwise
1075 stuff_yank(regname
, p
)
1082 /* check for read-only register */
1083 if (regname
!= 0 && !valid_yank_reg(regname
, TRUE
))
1088 if (regname
== '_') /* black hole: don't do anything */
1093 get_yank_register(regname
, TRUE
);
1094 if (y_append
&& y_current
->y_array
!= NULL
)
1096 pp
= &(y_current
->y_array
[y_current
->y_size
- 1]);
1097 lp
= lalloc((long_u
)(STRLEN(*pp
) + STRLEN(p
) + 1), TRUE
);
1112 if ((y_current
->y_array
=
1113 (char_u
**)alloc((unsigned)sizeof(char_u
*))) == NULL
)
1118 y_current
->y_array
[0] = p
;
1119 y_current
->y_size
= 1;
1120 y_current
->y_type
= MCHAR
; /* used to be MLINE, why? */
1126 * execute a yank register: copy it into the stuff buffer
1128 * return FAIL for failure, OK otherwise
1131 do_execreg(regname
, colon
, addcr
, silent
)
1133 int colon
; /* insert ':' before each line */
1134 int addcr
; /* always add '\n' to end of line */
1135 int silent
; /* set "silent" flag in typeahead buffer */
1137 static int lastc
= NUL
;
1143 if (regname
== '@') /* repeat previous one */
1147 EMSG(_("E748: No previously used register"));
1152 /* check for valid regname */
1153 if (regname
== '%' || regname
== '#' || !valid_yank_reg(regname
, FALSE
))
1155 emsg_invreg(regname
);
1160 #ifdef FEAT_CLIPBOARD
1161 regname
= may_get_selection(regname
);
1164 if (regname
== '_') /* black hole: don't stuff anything */
1168 if (regname
== ':') /* use last command line */
1170 if (last_cmdline
== NULL
)
1172 EMSG(_(e_nolastcmd
));
1175 vim_free(new_last_cmdline
); /* don't keep the cmdline containing @: */
1176 new_last_cmdline
= NULL
;
1177 /* Escape all control characters with a CTRL-V */
1178 p
= vim_strsave_escaped_ext(last_cmdline
,
1179 (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
);
1182 /* When in Visual mode "'<,'>" will be prepended to the command.
1183 * Remove it when it's already there. */
1184 if (VIsual_active
&& STRNCMP(p
, "'<,'>", 5) == 0)
1185 retval
= put_in_typebuf(p
+ 5, TRUE
, TRUE
, silent
);
1187 retval
= put_in_typebuf(p
, TRUE
, TRUE
, silent
);
1193 else if (regname
== '=')
1195 p
= get_expr_line();
1198 retval
= put_in_typebuf(p
, TRUE
, colon
, silent
);
1202 else if (regname
== '.') /* use last inserted text */
1204 p
= get_last_insert_save();
1207 EMSG(_(e_noinstext
));
1210 retval
= put_in_typebuf(p
, FALSE
, colon
, silent
);
1215 get_yank_register(regname
, FALSE
);
1216 if (y_current
->y_array
== NULL
)
1219 /* Disallow remaping for ":@r". */
1220 remap
= colon
? REMAP_NONE
: REMAP_YES
;
1223 * Insert lines into typeahead buffer, from last one to first one.
1225 put_reedit_in_typebuf(silent
);
1226 for (i
= y_current
->y_size
; --i
>= 0; )
1230 /* insert NL between lines and after last line if type is MLINE */
1231 if (y_current
->y_type
== MLINE
|| i
< y_current
->y_size
- 1
1234 if (ins_typebuf((char_u
*)"\n", remap
, 0, TRUE
, silent
) == FAIL
)
1237 escaped
= vim_strsave_escape_csi(y_current
->y_array
[i
]);
1238 if (escaped
== NULL
)
1240 retval
= ins_typebuf(escaped
, remap
, 0, TRUE
, silent
);
1244 if (colon
&& ins_typebuf((char_u
*)":", remap
, 0, TRUE
, silent
)
1248 Exec_reg
= TRUE
; /* disable the 'q' command */
1254 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1255 * used only after other typeahead has been processed.
1258 put_reedit_in_typebuf(silent
)
1263 if (restart_edit
!= NUL
)
1265 if (restart_edit
== 'V')
1273 buf
[0] = restart_edit
== 'I' ? 'i' : restart_edit
;
1276 if (ins_typebuf(buf
, REMAP_NONE
, 0, TRUE
, silent
) == OK
)
1282 put_in_typebuf(s
, esc
, colon
, silent
)
1284 int esc
; /* Escape CSI characters */
1285 int colon
; /* add ':' before the line */
1290 put_reedit_in_typebuf(silent
);
1292 retval
= ins_typebuf((char_u
*)"\n", REMAP_YES
, 0, TRUE
, silent
);
1298 p
= vim_strsave_escape_csi(s
);
1304 retval
= ins_typebuf(p
, REMAP_YES
, 0, TRUE
, silent
);
1308 if (colon
&& retval
== OK
)
1309 retval
= ins_typebuf((char_u
*)":", REMAP_YES
, 0, TRUE
, silent
);
1314 * Insert a yank register: copy it into the Read buffer.
1315 * Used by CTRL-R command and middle mouse button in insert mode.
1317 * return FAIL for failure, OK otherwise
1320 insert_reg(regname
, literally
)
1322 int literally
; /* insert literally, not as if typed */
1330 * It is possible to get into an endless loop by having CTRL-R a in
1331 * register a and then, in insert mode, doing CTRL-R a.
1332 * If you hit CTRL-C, the loop will be broken here.
1338 /* check for valid regname */
1339 if (regname
!= NUL
&& !valid_yank_reg(regname
, FALSE
))
1342 #ifdef FEAT_CLIPBOARD
1343 regname
= may_get_selection(regname
);
1346 if (regname
== '.') /* insert last inserted text */
1347 retval
= stuff_inserted(NUL
, 1L, TRUE
);
1348 else if (get_spec_reg(regname
, &arg
, &allocated
, TRUE
))
1352 stuffescaped(arg
, literally
);
1356 else /* name or number register */
1358 get_yank_register(regname
, FALSE
);
1359 if (y_current
->y_array
== NULL
)
1363 for (i
= 0; i
< y_current
->y_size
; ++i
)
1365 stuffescaped(y_current
->y_array
[i
], literally
);
1367 * Insert a newline between lines and after last line if
1370 if (y_current
->y_type
== MLINE
|| i
< y_current
->y_size
- 1)
1371 stuffcharReadbuff('\n');
1380 * Stuff a string into the typeahead buffer, such that edit() will insert it
1381 * literally ("literally" TRUE) or interpret is as typed characters.
1384 stuffescaped(arg
, literally
)
1393 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1394 * stuff K_SPECIAL to get the effect of a special key when "literally"
1399 && *arg
< DEL
/* EBCDIC: chars above space are normal */
1402 || (*arg
== K_SPECIAL
&& !literally
))
1405 stuffReadbuffLen(start
, (long)(arg
- start
));
1407 /* stuff a single special character */
1412 c
= mb_ptr2char_adv(&arg
);
1416 if (literally
&& ((c
< ' ' && c
!= TAB
) || c
== DEL
))
1417 stuffcharReadbuff(Ctrl_V
);
1418 stuffcharReadbuff(c
);
1424 * If "regname" is a special register, return TRUE and store a pointer to its
1428 get_spec_reg(regname
, argp
, allocated
, errmsg
)
1431 int *allocated
; /* return: TRUE when value was allocated */
1432 int errmsg
; /* give error message when failing */
1440 case '%': /* file name */
1442 check_fname(); /* will give emsg if not set */
1443 *argp
= curbuf
->b_fname
;
1446 case '#': /* alternate file name */
1447 *argp
= getaltfname(errmsg
); /* may give emsg if not set */
1451 case '=': /* result of expression */
1452 *argp
= get_expr_line();
1457 case ':': /* last command line */
1458 if (last_cmdline
== NULL
&& errmsg
)
1459 EMSG(_(e_nolastcmd
));
1460 *argp
= last_cmdline
;
1463 case '/': /* last search-pattern */
1464 if (last_search_pat() == NULL
&& errmsg
)
1465 EMSG(_(e_noprevre
));
1466 *argp
= last_search_pat();
1469 case '.': /* last inserted text */
1470 *argp
= get_last_insert_save();
1472 if (*argp
== NULL
&& errmsg
)
1473 EMSG(_(e_noinstext
));
1476 #ifdef FEAT_SEARCHPATH
1477 case Ctrl_F
: /* Filename under cursor */
1478 case Ctrl_P
: /* Path under cursor, expand via "path" */
1481 *argp
= file_name_at_cursor(FNAME_MESS
| FNAME_HYP
1482 | (regname
== Ctrl_P
? FNAME_EXP
: 0), 1L, NULL
);
1487 case Ctrl_W
: /* word under cursor */
1488 case Ctrl_A
: /* WORD (mnemonic All) under cursor */
1491 cnt
= find_ident_under_cursor(argp
, regname
== Ctrl_W
1492 ? (FIND_IDENT
|FIND_STRING
) : FIND_STRING
);
1493 *argp
= cnt
? vim_strnsave(*argp
, cnt
) : NULL
;
1497 case '_': /* black hole: always empty */
1498 *argp
= (char_u
*)"";
1506 * Paste a yank register into the command line.
1507 * Only for non-special registers.
1508 * Used by CTRL-R command in command-line mode
1509 * insert_reg() can't be used here, because special characters from the
1510 * register contents will be interpreted as commands.
1512 * return FAIL for failure, OK otherwise
1515 cmdline_paste_reg(regname
, literally
, remcr
)
1517 int literally
; /* Insert text literally instead of "as typed" */
1518 int remcr
; /* don't add trailing CR */
1522 get_yank_register(regname
, FALSE
);
1523 if (y_current
->y_array
== NULL
)
1526 for (i
= 0; i
< y_current
->y_size
; ++i
)
1528 cmdline_paste_str(y_current
->y_array
[i
], literally
);
1530 /* Insert ^M between lines and after last line if type is MLINE.
1531 * Don't do this when "remcr" is TRUE and the next line is empty. */
1532 if (y_current
->y_type
== MLINE
1533 || (i
< y_current
->y_size
- 1
1535 && i
== y_current
->y_size
- 2
1536 && *y_current
->y_array
[i
+ 1] == NUL
)))
1537 cmdline_paste_str((char_u
*)"\r", literally
);
1539 /* Check for CTRL-C, in case someone tries to paste a few thousand
1540 * lines and gets bored. */
1548 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
1550 * Adjust the register name pointed to with "rp" for the clipboard being
1551 * used always and the clipboard being available.
1557 /* If no reg. specified, and "unnamed" is in 'clipboard', use '*' reg. */
1558 if (*rp
== 0 && clip_unnamed
)
1560 if (!clip_star
.available
&& *rp
== '*')
1562 if (!clip_plus
.available
&& *rp
== '+')
1568 * op_delete - handle a delete operation
1570 * return FAIL if undo failed, OK otherwise.
1580 char_u
*newp
, *oldp
;
1581 struct block_def bd
;
1583 linenr_T old_lcount
= curbuf
->b_ml
.ml_line_count
;
1584 int did_yank
= FALSE
;
1586 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
) /* nothing to do */
1589 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1591 return u_save_cursor();
1593 if (!curbuf
->b_p_ma
)
1595 EMSG(_(e_modifiable
));
1599 #ifdef FEAT_CLIPBOARD
1600 adjust_clip_reg(&oap
->regname
);
1605 mb_adjust_opend(oap
);
1609 * Imitate the strange Vi behaviour: If the delete spans more than one line
1610 * and motion_type == MCHAR and the result is a blank line, make the delete
1611 * linewise. Don't do this for the change command or Visual mode.
1613 if ( oap
->motion_type
== MCHAR
1618 && oap
->line_count
> 1
1619 && oap
->op_type
== OP_DELETE
)
1621 ptr
= ml_get(oap
->end
.lnum
) + oap
->end
.col
+ oap
->inclusive
;
1622 ptr
= skipwhite(ptr
);
1623 if (*ptr
== NUL
&& inindent(0))
1624 oap
->motion_type
= MLINE
;
1628 * Check for trying to delete (e.g. "D") in an empty line.
1629 * Note: For the change operator it is ok.
1631 if ( oap
->motion_type
== MCHAR
1632 && oap
->line_count
== 1
1633 && oap
->op_type
== OP_DELETE
1634 && *ml_get(oap
->start
.lnum
) == NUL
)
1637 * It's an error to operate on an empty region, when 'E' included in
1638 * 'cpoptions' (Vi compatible).
1640 #ifdef FEAT_VIRTUALEDIT
1642 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1643 * marks as if it happened. */
1646 if (vim_strchr(p_cpo
, CPO_EMPTYREGION
) != NULL
)
1652 * Do a yank of whatever we're about to delete.
1653 * If a yank register was specified, put the deleted text into that register.
1654 * For the black hole register '_' don't yank anything.
1656 if (oap
->regname
!= '_')
1658 if (oap
->regname
!= 0)
1660 /* check for read-only register */
1661 if (!valid_yank_reg(oap
->regname
, TRUE
))
1666 get_yank_register(oap
->regname
, TRUE
); /* yank into specif'd reg. */
1667 if (op_yank(oap
, TRUE
, FALSE
) == OK
) /* yank without message */
1672 * Put deleted text into register 1 and shift number registers if the
1673 * delete contains a line break, or when a regname has been specified.
1675 if (oap
->regname
!= 0 || oap
->motion_type
== MLINE
1676 || oap
->line_count
> 1 || oap
->use_reg_one
)
1678 y_current
= &y_regs
[9];
1679 free_yank_all(); /* free register nine */
1680 for (n
= 9; n
> 1; --n
)
1681 y_regs
[n
] = y_regs
[n
- 1];
1682 y_previous
= y_current
= &y_regs
[1];
1683 y_regs
[1].y_array
= NULL
; /* set register one to empty */
1684 if (op_yank(oap
, TRUE
, FALSE
) == OK
)
1688 /* Yank into small delete register when no register specified and the
1689 * delete is within one line. */
1690 if (oap
->regname
== 0 && oap
->motion_type
!= MLINE
1691 && oap
->line_count
== 1)
1694 get_yank_register(oap
->regname
, TRUE
);
1695 if (op_yank(oap
, TRUE
, FALSE
) == OK
)
1701 * If there's too much stuff to fit in the yank register, then get a
1702 * confirmation before doing the delete. This is crude, but simple.
1703 * And it avoids doing a delete of something we can't put back if we
1708 int msg_silent_save
= msg_silent
;
1710 msg_silent
= 0; /* must display the prompt */
1711 n
= ask_yesno((char_u
*)_("cannot yank; delete anyway"), TRUE
);
1712 msg_silent
= msg_silent_save
;
1725 if (oap
->block_mode
)
1727 if (u_save((linenr_T
)(oap
->start
.lnum
- 1),
1728 (linenr_T
)(oap
->end
.lnum
+ 1)) == FAIL
)
1731 for (lnum
= curwin
->w_cursor
.lnum
; lnum
<= oap
->end
.lnum
; ++lnum
)
1733 block_prep(oap
, &bd
, lnum
, TRUE
);
1734 if (bd
.textlen
== 0) /* nothing to delete */
1737 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1738 if (lnum
== curwin
->w_cursor
.lnum
)
1740 curwin
->w_cursor
.col
= bd
.textcol
+ bd
.startspaces
;
1741 # ifdef FEAT_VIRTUALEDIT
1742 curwin
->w_cursor
.coladd
= 0;
1746 /* n == number of chars deleted
1747 * If we delete a TAB, it may be replaced by several characters.
1748 * Thus the number of characters may increase!
1750 n
= bd
.textlen
- bd
.startspaces
- bd
.endspaces
;
1751 oldp
= ml_get(lnum
);
1752 newp
= alloc_check((unsigned)STRLEN(oldp
) + 1 - n
);
1755 /* copy up to deleted part */
1756 mch_memmove(newp
, oldp
, (size_t)bd
.textcol
);
1758 copy_spaces(newp
+ bd
.textcol
,
1759 (size_t)(bd
.startspaces
+ bd
.endspaces
));
1760 /* copy the part after the deleted part */
1761 oldp
+= bd
.textcol
+ bd
.textlen
;
1762 mch_memmove(newp
+ bd
.textcol
+ bd
.startspaces
+ bd
.endspaces
,
1763 oldp
, STRLEN(oldp
) + 1);
1764 /* replace the line */
1765 ml_replace(lnum
, newp
, FALSE
);
1769 changed_lines(curwin
->w_cursor
.lnum
, curwin
->w_cursor
.col
,
1770 oap
->end
.lnum
+ 1, 0L);
1771 oap
->line_count
= 0; /* no lines deleted */
1775 if (oap
->motion_type
== MLINE
)
1777 if (oap
->op_type
== OP_CHANGE
)
1779 /* Delete the lines except the first one. Temporarily move the
1780 * cursor to the next line. Save the current line number, if the
1781 * last line is deleted it may be changed.
1783 if (oap
->line_count
> 1)
1785 lnum
= curwin
->w_cursor
.lnum
;
1786 ++curwin
->w_cursor
.lnum
;
1787 del_lines((long)(oap
->line_count
- 1), TRUE
);
1788 curwin
->w_cursor
.lnum
= lnum
;
1790 if (u_save_cursor() == FAIL
)
1792 if (curbuf
->b_p_ai
) /* don't delete indent */
1794 beginline(BL_WHITE
); /* cursor on first non-white */
1795 did_ai
= TRUE
; /* delete the indent when ESC hit */
1796 ai_col
= curwin
->w_cursor
.col
;
1799 beginline(0); /* cursor in column 0 */
1800 truncate_line(FALSE
); /* delete the rest of the line */
1801 /* leave cursor past last char in line */
1802 if (oap
->line_count
> 1)
1803 u_clearline(); /* "U" command not possible after "2cc" */
1807 del_lines(oap
->line_count
, TRUE
);
1808 beginline(BL_WHITE
| BL_FIX
);
1809 u_clearline(); /* "U" command not possible after "dd" */
1814 #ifdef FEAT_VIRTUALEDIT
1819 /* For virtualedit: break the tabs that are partly included. */
1820 if (gchar_pos(&oap
->start
) == '\t')
1822 if (u_save_cursor() == FAIL
) /* save first line for undo */
1824 if (oap
->line_count
== 1)
1825 endcol
= getviscol2(oap
->end
.col
, oap
->end
.coladd
);
1826 coladvance_force(getviscol2(oap
->start
.col
, oap
->start
.coladd
));
1827 oap
->start
= curwin
->w_cursor
;
1828 if (oap
->line_count
== 1)
1831 oap
->end
.col
= curwin
->w_cursor
.col
;
1832 oap
->end
.coladd
= curwin
->w_cursor
.coladd
;
1833 curwin
->w_cursor
= oap
->start
;
1837 /* Break a tab only when it's included in the area. */
1838 if (gchar_pos(&oap
->end
) == '\t'
1839 && (int)oap
->end
.coladd
< oap
->inclusive
)
1841 /* save last line for undo */
1842 if (u_save((linenr_T
)(oap
->end
.lnum
- 1),
1843 (linenr_T
)(oap
->end
.lnum
+ 1)) == FAIL
)
1845 curwin
->w_cursor
= oap
->end
;
1846 coladvance_force(getviscol2(oap
->end
.col
, oap
->end
.coladd
));
1847 oap
->end
= curwin
->w_cursor
;
1848 curwin
->w_cursor
= oap
->start
;
1853 if (oap
->line_count
== 1) /* delete characters within one line */
1855 if (u_save_cursor() == FAIL
) /* save line for undo */
1858 /* if 'cpoptions' contains '$', display '$' at end of change */
1859 if ( vim_strchr(p_cpo
, CPO_DOLLAR
) != NULL
1860 && oap
->op_type
== OP_CHANGE
1861 && oap
->end
.lnum
== curwin
->w_cursor
.lnum
1866 display_dollar(oap
->end
.col
- !oap
->inclusive
);
1868 n
= oap
->end
.col
- oap
->start
.col
+ 1 - !oap
->inclusive
;
1870 #ifdef FEAT_VIRTUALEDIT
1873 /* fix up things for virtualedit-delete:
1874 * break the tabs which are going to get in our way
1876 char_u
*curline
= ml_get_curline();
1877 int len
= (int)STRLEN(curline
);
1879 if (oap
->end
.coladd
!= 0
1880 && (int)oap
->end
.col
>= len
- 1
1881 && !(oap
->start
.coladd
&& (int)oap
->end
.col
>= len
- 1))
1883 /* Delete at least one char (e.g, when on a control char). */
1884 if (n
== 0 && oap
->start
.coladd
!= oap
->end
.coladd
)
1887 /* When deleted a char in the line, reset coladd. */
1888 if (gchar_cursor() != NUL
)
1889 curwin
->w_cursor
.coladd
= 0;
1892 (void)del_bytes((long)n
, !virtual_op
, oap
->op_type
== OP_DELETE
1898 else /* delete characters between lines */
1902 /* save deleted and changed lines for undo */
1903 if (u_save((linenr_T
)(curwin
->w_cursor
.lnum
- 1),
1904 (linenr_T
)(curwin
->w_cursor
.lnum
+ oap
->line_count
)) == FAIL
)
1907 truncate_line(TRUE
); /* delete from cursor to end of line */
1909 curpos
= curwin
->w_cursor
; /* remember curwin->w_cursor */
1910 ++curwin
->w_cursor
.lnum
;
1911 del_lines((long)(oap
->line_count
- 2), FALSE
);
1913 /* delete from start of line until op_end */
1914 curwin
->w_cursor
.col
= 0;
1915 (void)del_bytes((long)(oap
->end
.col
+ 1 - !oap
->inclusive
),
1916 !virtual_op
, oap
->op_type
== OP_DELETE
1921 curwin
->w_cursor
= curpos
; /* restore curwin->w_cursor */
1923 (void)do_join(FALSE
);
1927 msgmore(curbuf
->b_ml
.ml_line_count
- old_lcount
);
1929 #ifdef FEAT_VIRTUALEDIT
1933 if (oap
->block_mode
)
1935 curbuf
->b_op_end
.lnum
= oap
->end
.lnum
;
1936 curbuf
->b_op_end
.col
= oap
->start
.col
;
1940 curbuf
->b_op_end
= oap
->start
;
1941 curbuf
->b_op_start
= oap
->start
;
1948 * Adjust end of operating area for ending on a multi-byte character.
1949 * Used for deletion.
1952 mb_adjust_opend(oap
)
1959 p
= ml_get(oap
->end
.lnum
);
1960 oap
->end
.col
+= mb_tail_off(p
, p
+ oap
->end
.col
);
1965 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1967 * Replace a whole area with one character.
1978 char_u
*newp
, *oldp
;
1980 struct block_def bd
;
1982 if ((curbuf
->b_ml
.ml_flags
& ML_EMPTY
) || oap
->empty
)
1983 return OK
; /* nothing to do */
1987 mb_adjust_opend(oap
);
1990 if (u_save((linenr_T
)(oap
->start
.lnum
- 1),
1991 (linenr_T
)(oap
->end
.lnum
+ 1)) == FAIL
)
1995 * block mode replace
1997 if (oap
->block_mode
)
1999 bd
.is_MAX
= (curwin
->w_curswant
== MAXCOL
);
2000 for ( ; curwin
->w_cursor
.lnum
<= oap
->end
.lnum
; ++curwin
->w_cursor
.lnum
)
2002 block_prep(oap
, &bd
, curwin
->w_cursor
.lnum
, TRUE
);
2003 if (bd
.textlen
== 0 && (!virtual_op
|| bd
.is_MAX
))
2004 continue; /* nothing to replace */
2006 /* n == number of extra chars required
2007 * If we split a TAB, it may be replaced by several characters.
2008 * Thus the number of characters may increase!
2010 #ifdef FEAT_VIRTUALEDIT
2011 /* If the range starts in virtual space, count the initial
2012 * coladd offset as part of "startspaces" */
2013 if (virtual_op
&& bd
.is_short
&& *bd
.textstart
== NUL
)
2017 getvpos(&vpos
, oap
->start_vcol
);
2018 bd
.startspaces
+= vpos
.coladd
;
2023 /* allow for pre spaces */
2024 n
= (bd
.startspaces
? bd
.start_char_vcols
- 1 : 0);
2026 /* allow for post spp */
2028 #ifdef FEAT_VIRTUALEDIT
2031 && bd
.end_char_vcols
> 0) ? bd
.end_char_vcols
- 1 : 0;
2032 /* Figure out how many characters to replace. */
2033 numc
= oap
->end_vcol
- oap
->start_vcol
+ 1;
2034 if (bd
.is_short
&& (!virtual_op
|| bd
.is_MAX
))
2035 numc
-= (oap
->end_vcol
- bd
.end_vcol
) + 1;
2038 /* A double-wide character can be replaced only up to half the
2040 if ((*mb_char2cells
)(c
) > 1)
2042 if ((numc
& 1) && !bd
.is_short
)
2050 /* Compute bytes needed, move character count to num_chars. */
2052 numc
*= (*mb_char2len
)(c
);
2054 /* oldlen includes textlen, so don't double count */
2055 n
+= numc
- bd
.textlen
;
2057 oldp
= ml_get_curline();
2058 oldlen
= STRLEN(oldp
);
2059 newp
= alloc_check((unsigned)oldlen
+ 1 + n
);
2062 vim_memset(newp
, NUL
, (size_t)(oldlen
+ 1 + n
));
2063 /* copy up to deleted part */
2064 mch_memmove(newp
, oldp
, (size_t)bd
.textcol
);
2065 oldp
+= bd
.textcol
+ bd
.textlen
;
2066 /* insert pre-spaces */
2067 copy_spaces(newp
+ bd
.textcol
, (size_t)bd
.startspaces
);
2068 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
2072 n
= (int)STRLEN(newp
);
2073 while (--num_chars
>= 0)
2074 n
+= (*mb_char2bytes
)(c
, newp
+ n
);
2078 copy_chars(newp
+ STRLEN(newp
), (size_t)numc
, c
);
2081 /* insert post-spaces */
2082 copy_spaces(newp
+ STRLEN(newp
), (size_t)bd
.endspaces
);
2083 /* copy the part after the changed part */
2084 mch_memmove(newp
+ STRLEN(newp
), oldp
, STRLEN(oldp
) + 1);
2086 /* replace the line */
2087 ml_replace(curwin
->w_cursor
.lnum
, newp
, FALSE
);
2093 * MCHAR and MLINE motion replace.
2095 if (oap
->motion_type
== MLINE
)
2098 curwin
->w_cursor
.col
= 0;
2099 oap
->end
.col
= (colnr_T
)STRLEN(ml_get(oap
->end
.lnum
));
2103 else if (!oap
->inclusive
)
2106 while (ltoreq(curwin
->w_cursor
, oap
->end
))
2112 if ((*mb_char2len
)(c
) > 1 || (*mb_char2len
)(n
) > 1)
2114 /* This is slow, but it handles replacing a single-byte
2115 * with a multi-byte and the other way around. */
2116 oap
->end
.col
+= (*mb_char2len
)(c
) - (*mb_char2len
)(n
);
2121 /* Backup to the replaced character. */
2127 #ifdef FEAT_VIRTUALEDIT
2132 if (curwin
->w_cursor
.lnum
== oap
->end
.lnum
)
2134 /* oap->end has to be recalculated when
2136 end_vcol
= getviscol2(oap
->end
.col
,
2139 coladvance_force(getviscol());
2140 if (curwin
->w_cursor
.lnum
== oap
->end
.lnum
)
2141 getvpos(&oap
->end
, end_vcol
);
2144 pchar(curwin
->w_cursor
, c
);
2147 #ifdef FEAT_VIRTUALEDIT
2148 else if (virtual_op
&& curwin
->w_cursor
.lnum
== oap
->end
.lnum
)
2150 int virtcols
= oap
->end
.coladd
;
2152 if (curwin
->w_cursor
.lnum
== oap
->start
.lnum
2153 && oap
->start
.col
== oap
->end
.col
&& oap
->start
.coladd
)
2154 virtcols
-= oap
->start
.coladd
;
2156 /* oap->end has been trimmed so it's effectively inclusive;
2157 * as a result an extra +1 must be counted so we don't
2158 * trample the NUL byte. */
2159 coladvance_force(getviscol2(oap
->end
.col
, oap
->end
.coladd
) + 1);
2160 curwin
->w_cursor
.col
-= (virtcols
+ 1);
2161 for (; virtcols
>= 0; virtcols
--)
2163 pchar(curwin
->w_cursor
, c
);
2164 if (inc(&curwin
->w_cursor
) == -1)
2170 /* Advance to next character, stop at the end of the file. */
2171 if (inc_cursor() == -1)
2176 curwin
->w_cursor
= oap
->start
;
2178 changed_lines(oap
->start
.lnum
, oap
->start
.col
, oap
->end
.lnum
+ 1, 0L);
2180 /* Set "'[" and "']" marks. */
2181 curbuf
->b_op_start
= oap
->start
;
2182 curbuf
->b_op_end
= oap
->end
;
2188 static int swapchars
__ARGS((int op_type
, pos_T
*pos
, int length
));
2191 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2199 struct block_def bd
;
2201 int did_change
= FALSE
;
2203 if (u_save((linenr_T
)(oap
->start
.lnum
- 1),
2204 (linenr_T
)(oap
->end
.lnum
+ 1)) == FAIL
)
2209 if (oap
->block_mode
) /* Visual block mode */
2211 for (; pos
.lnum
<= oap
->end
.lnum
; ++pos
.lnum
)
2213 block_prep(oap
, &bd
, pos
.lnum
, FALSE
);
2214 pos
.col
= bd
.textcol
;
2215 did_change
= swapchars(oap
->op_type
, &pos
, bd
.textlen
);
2217 # ifdef FEAT_NETBEANS_INTG
2218 if (usingNetbeans
&& did_change
)
2220 char_u
*ptr
= ml_get_buf(curbuf
, pos
.lnum
, FALSE
);
2222 netbeans_removed(curbuf
, pos
.lnum
, bd
.textcol
,
2224 netbeans_inserted(curbuf
, pos
.lnum
, bd
.textcol
,
2225 &ptr
[bd
.textcol
], bd
.textlen
);
2230 changed_lines(oap
->start
.lnum
, 0, oap
->end
.lnum
+ 1, 0L);
2232 else /* not block mode */
2235 if (oap
->motion_type
== MLINE
)
2239 oap
->end
.col
= (colnr_T
)STRLEN(ml_get(oap
->end
.lnum
));
2243 else if (!oap
->inclusive
)
2246 if (pos
.lnum
== oap
->end
.lnum
)
2247 did_change
= swapchars(oap
->op_type
, &pos
,
2248 oap
->end
.col
- pos
.col
+ 1);
2252 did_change
|= swapchars(oap
->op_type
, &pos
,
2253 pos
.lnum
== oap
->end
.lnum
? oap
->end
.col
+ 1:
2254 (int)STRLEN(ml_get_pos(&pos
)));
2255 if (ltoreq(oap
->end
, pos
) || inc(&pos
) == -1)
2260 changed_lines(oap
->start
.lnum
, oap
->start
.col
, oap
->end
.lnum
+ 1,
2262 #ifdef FEAT_NETBEANS_INTG
2263 if (usingNetbeans
&& did_change
)
2269 while (pos
.lnum
< oap
->end
.lnum
)
2271 ptr
= ml_get_buf(curbuf
, pos
.lnum
, FALSE
);
2272 count
= (int)STRLEN(ptr
) - pos
.col
;
2273 netbeans_removed(curbuf
, pos
.lnum
, pos
.col
, (long)count
);
2274 netbeans_inserted(curbuf
, pos
.lnum
, pos
.col
,
2275 &ptr
[pos
.col
], count
);
2279 ptr
= ml_get_buf(curbuf
, pos
.lnum
, FALSE
);
2280 count
= oap
->end
.col
- pos
.col
+ 1;
2281 netbeans_removed(curbuf
, pos
.lnum
, pos
.col
, (long)count
);
2282 netbeans_inserted(curbuf
, pos
.lnum
, pos
.col
,
2283 &ptr
[pos
.col
], count
);
2290 if (!did_change
&& oap
->is_VIsual
)
2291 /* No change: need to remove the Visual selection */
2292 redraw_curbuf_later(INVERTED
);
2296 * Set '[ and '] marks.
2298 curbuf
->b_op_start
= oap
->start
;
2299 curbuf
->b_op_end
= oap
->end
;
2301 if (oap
->line_count
> p_report
)
2303 if (oap
->line_count
== 1)
2304 MSG(_("1 line changed"));
2306 smsg((char_u
*)_("%ld lines changed"), oap
->line_count
);
2311 * Invoke swapchar() on "length" bytes at position "pos".
2312 * "pos" is advanced to just after the changed characters.
2313 * "length" is rounded up to include the whole last multi-byte character.
2314 * Also works correctly when the number of bytes changes.
2315 * Returns TRUE if some character was changed.
2318 swapchars(op_type
, pos
, length
)
2326 for (todo
= length
; todo
> 0; --todo
)
2330 /* we're counting bytes, not characters */
2331 todo
-= (*mb_ptr2len
)(ml_get_pos(pos
)) - 1;
2333 did_change
|= swapchar(op_type
, pos
);
2334 if (inc(pos
) == -1) /* at end of file */
2341 * If op_type == OP_UPPER: make uppercase,
2342 * if op_type == OP_LOWER: make lowercase,
2343 * if op_type == OP_ROT13: do rot13 encoding,
2344 * else swap case of character at 'pos'
2345 * returns TRUE when something actually changed.
2348 swapchar(op_type
, pos
)
2357 /* Only do rot13 encoding for ASCII characters. */
2358 if (c
>= 0x80 && op_type
== OP_ROT13
)
2362 if (op_type
== OP_UPPER
&& c
== 0xdf
2363 && (enc_latin1like
|| STRCMP(p_enc
, "iso-8859-2") == 0))
2365 pos_T sp
= curwin
->w_cursor
;
2367 /* Special handling of German sharp s: change to "SS". */
2368 curwin
->w_cursor
= *pos
;
2372 curwin
->w_cursor
= sp
;
2376 if (enc_dbcs
!= 0 && c
>= 0x100) /* No lower/uppercase letter */
2382 if (op_type
== OP_ROT13
)
2384 else if (op_type
!= OP_LOWER
)
2387 else if (MB_ISUPPER(c
))
2389 if (op_type
== OP_ROT13
)
2391 else if (op_type
!= OP_UPPER
)
2397 if (enc_utf8
&& (c
>= 0x80 || nc
>= 0x80))
2399 pos_T sp
= curwin
->w_cursor
;
2401 curwin
->w_cursor
= *pos
;
2404 curwin
->w_cursor
= sp
;
2414 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2416 * op_insert - Insert and append operators for Visual mode.
2419 op_insert(oap
, count1
)
2423 long ins_len
, pre_textlen
= 0;
2424 char_u
*firstline
, *ins_text
;
2425 struct block_def bd
;
2428 /* edit() changes this - record it for OP_APPEND */
2429 bd
.is_MAX
= (curwin
->w_curswant
== MAXCOL
);
2431 /* vis block is still marked. Get rid of it now. */
2432 curwin
->w_cursor
.lnum
= oap
->start
.lnum
;
2433 update_screen(INVERTED
);
2435 if (oap
->block_mode
)
2437 #ifdef FEAT_VIRTUALEDIT
2438 /* When 'virtualedit' is used, need to insert the extra spaces before
2439 * doing block_prep(). When only "block" is used, virtual edit is
2440 * already disabled, but still need it when calling
2441 * coladvance_force(). */
2442 if (curwin
->w_cursor
.coladd
> 0)
2444 int old_ve_flags
= ve_flags
;
2447 if (u_save_cursor() == FAIL
)
2449 coladvance_force(oap
->op_type
== OP_APPEND
2450 ? oap
->end_vcol
+ 1 : getviscol());
2451 if (oap
->op_type
== OP_APPEND
)
2452 --curwin
->w_cursor
.col
;
2453 ve_flags
= old_ve_flags
;
2456 /* Get the info about the block before entering the text */
2457 block_prep(oap
, &bd
, oap
->start
.lnum
, TRUE
);
2458 firstline
= ml_get(oap
->start
.lnum
) + bd
.textcol
;
2459 if (oap
->op_type
== OP_APPEND
)
2460 firstline
+= bd
.textlen
;
2461 pre_textlen
= (long)STRLEN(firstline
);
2464 if (oap
->op_type
== OP_APPEND
)
2467 #ifdef FEAT_VIRTUALEDIT
2468 && curwin
->w_cursor
.coladd
== 0
2472 /* Move the cursor to the character right of the block. */
2473 curwin
->w_set_curswant
= TRUE
;
2474 while (*ml_get_cursor() != NUL
2475 && (curwin
->w_cursor
.col
< bd
.textcol
+ bd
.textlen
))
2476 ++curwin
->w_cursor
.col
;
2477 if (bd
.is_short
&& !bd
.is_MAX
)
2479 /* First line was too short, make it longer and adjust the
2480 * values in "bd". */
2481 if (u_save_cursor() == FAIL
)
2483 for (i
= 0; i
< bd
.endspaces
; ++i
)
2485 bd
.textlen
+= bd
.endspaces
;
2490 curwin
->w_cursor
= oap
->end
;
2493 /* Works just like an 'i'nsert on the next character. */
2494 if (!lineempty(curwin
->w_cursor
.lnum
)
2495 && oap
->start_vcol
!= oap
->end_vcol
)
2500 edit(NUL
, FALSE
, (linenr_T
)count1
);
2502 /* If user has moved off this line, we don't know what to do, so do
2504 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2505 if (curwin
->w_cursor
.lnum
!= oap
->start
.lnum
|| got_int
)
2508 if (oap
->block_mode
)
2510 struct block_def bd2
;
2513 * Spaces and tabs in the indent may have changed to other spaces and
2514 * tabs. Get the starting column again and correct the length.
2515 * Don't do this when "$" used, end-of-line will have changed.
2517 block_prep(oap
, &bd2
, oap
->start
.lnum
, TRUE
);
2518 if (!bd
.is_MAX
|| bd2
.textlen
< bd
.textlen
)
2520 if (oap
->op_type
== OP_APPEND
)
2522 pre_textlen
+= bd2
.textlen
- bd
.textlen
;
2526 bd
.textcol
= bd2
.textcol
;
2527 bd
.textlen
= bd2
.textlen
;
2531 * Subsequent calls to ml_get() flush the firstline data - take a
2532 * copy of the required string.
2534 firstline
= ml_get(oap
->start
.lnum
) + bd
.textcol
;
2535 if (oap
->op_type
== OP_APPEND
)
2536 firstline
+= bd
.textlen
;
2537 if ((ins_len
= (long)STRLEN(firstline
) - pre_textlen
) > 0)
2539 ins_text
= vim_strnsave(firstline
, (int)ins_len
);
2540 if (ins_text
!= NULL
)
2542 /* block handled here */
2543 if (u_save(oap
->start
.lnum
,
2544 (linenr_T
)(oap
->end
.lnum
+ 1)) == OK
)
2545 block_insert(oap
, ins_text
, (oap
->op_type
== OP_INSERT
),
2548 curwin
->w_cursor
.col
= oap
->start
.col
;
2558 * op_change - handle a change operation
2560 * return TRUE if edit() returns because of a CTRL-O command
2568 #ifdef FEAT_VISUALEXTRA
2572 long pre_textlen
= 0;
2573 long pre_indent
= 0;
2575 char_u
*ins_text
, *newp
, *oldp
;
2576 struct block_def bd
;
2580 if (oap
->motion_type
== MLINE
)
2583 #ifdef FEAT_SMARTINDENT
2584 if (!p_paste
&& curbuf
->b_p_si
2585 # ifdef FEAT_CINDENT
2589 can_si
= TRUE
; /* It's like opening a new line, do si */
2593 /* First delete the text in the region. In an empty buffer only need to
2595 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
)
2597 if (u_save_cursor() == FAIL
)
2600 else if (op_delete(oap
) == FAIL
)
2603 if ((l
> curwin
->w_cursor
.col
) && !lineempty(curwin
->w_cursor
.lnum
)
2607 #ifdef FEAT_VISUALEXTRA
2608 /* check for still on same line (<CR> in inserted text meaningless) */
2609 /* skip blank lines too */
2610 if (oap
->block_mode
)
2612 # ifdef FEAT_VIRTUALEDIT
2613 /* Add spaces before getting the current line length. */
2614 if (virtual_op
&& (curwin
->w_cursor
.coladd
> 0
2615 || gchar_cursor() == NUL
))
2616 coladvance_force(getviscol());
2618 firstline
= ml_get(oap
->start
.lnum
);
2619 pre_textlen
= (long)STRLEN(firstline
);
2620 pre_indent
= (long)(skipwhite(firstline
) - firstline
);
2621 bd
.textcol
= curwin
->w_cursor
.col
;
2625 #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2626 if (oap
->motion_type
== MLINE
)
2630 retval
= edit(NUL
, FALSE
, (linenr_T
)1);
2632 #ifdef FEAT_VISUALEXTRA
2634 * In Visual block mode, handle copying the new text to all lines of the
2636 * Don't repeat the insert when Insert mode ended with CTRL-C.
2638 if (oap
->block_mode
&& oap
->start
.lnum
!= oap
->end
.lnum
&& !got_int
)
2640 /* Auto-indenting may have changed the indent. If the cursor was past
2641 * the indent, exclude that indent change from the inserted text. */
2642 firstline
= ml_get(oap
->start
.lnum
);
2643 if (bd
.textcol
> (colnr_T
)pre_indent
)
2645 long new_indent
= (long)(skipwhite(firstline
) - firstline
);
2647 pre_textlen
+= new_indent
- pre_indent
;
2648 bd
.textcol
+= new_indent
- pre_indent
;
2651 ins_len
= (long)STRLEN(firstline
) - pre_textlen
;
2654 /* Subsequent calls to ml_get() flush the firstline data - take a
2655 * copy of the inserted text. */
2656 if ((ins_text
= alloc_check((unsigned)(ins_len
+ 1))) != NULL
)
2658 vim_strncpy(ins_text
, firstline
+ bd
.textcol
, (size_t)ins_len
);
2659 for (linenr
= oap
->start
.lnum
+ 1; linenr
<= oap
->end
.lnum
;
2662 block_prep(oap
, &bd
, linenr
, TRUE
);
2663 if (!bd
.is_short
|| virtual_op
)
2665 # ifdef FEAT_VIRTUALEDIT
2668 /* If the block starts in virtual space, count the
2669 * initial coladd offset as part of "startspaces" */
2672 linenr_T lnum
= curwin
->w_cursor
.lnum
;
2674 curwin
->w_cursor
.lnum
= linenr
;
2675 (void)getvpos(&vpos
, oap
->start_vcol
);
2676 curwin
->w_cursor
.lnum
= lnum
;
2681 oldp
= ml_get(linenr
);
2682 newp
= alloc_check((unsigned)(STRLEN(oldp
)
2683 # ifdef FEAT_VIRTUALEDIT
2689 /* copy up to block start */
2690 mch_memmove(newp
, oldp
, (size_t)bd
.textcol
);
2691 offset
= bd
.textcol
;
2692 # ifdef FEAT_VIRTUALEDIT
2693 copy_spaces(newp
+ offset
, (size_t)vpos
.coladd
);
2694 offset
+= vpos
.coladd
;
2696 mch_memmove(newp
+ offset
, ins_text
, (size_t)ins_len
);
2699 mch_memmove(newp
+ offset
, oldp
, STRLEN(oldp
) + 1);
2700 ml_replace(linenr
, newp
, FALSE
);
2705 changed_lines(oap
->start
.lnum
+ 1, 0, oap
->end
.lnum
+ 1, 0L);
2716 * set all the yank registers to empty (called from main())
2723 for (i
= 0; i
< NUM_REGISTERS
; ++i
)
2724 y_regs
[i
].y_array
= NULL
;
2727 #if defined(EXITFREE) || defined(PROTO)
2733 for (i
= 0; i
< NUM_REGISTERS
; ++i
)
2735 y_current
= &y_regs
[i
];
2736 if (y_current
->y_array
!= NULL
)
2743 * Free "n" lines from the current yank register.
2744 * Called for normal freeing and in case of error.
2750 if (y_current
->y_array
!= NULL
)
2754 for (i
= n
; --i
>= 0; )
2756 #ifdef AMIGA /* only for very slow machines */
2757 if ((i
& 1023) == 1023) /* this may take a while */
2760 * This message should never cause a hit-return message.
2761 * Overwrite this message with any next message.
2764 smsg((char_u
*)_("freeing %ld lines"), i
+ 1);
2770 vim_free(y_current
->y_array
[i
]);
2772 vim_free(y_current
->y_array
);
2773 y_current
->y_array
= NULL
;
2784 free_yank(y_current
->y_size
);
2788 * Yank the text between "oap->start" and "oap->end" into a yank register.
2789 * If we are to append (uppercase register), we first yank into a new yank
2790 * register and then concatenate the old and the new one (so we keep the old
2791 * one in case of out-of-memory).
2793 * return FAIL for failure, OK otherwise
2796 op_yank(oap
, deleting
, mess
)
2801 long y_idx
; /* index in y_array[] */
2802 struct yankreg
*curr
; /* copy of y_current */
2803 struct yankreg newreg
; /* new yank register when appending */
2805 linenr_T lnum
; /* current line number */
2807 int yanktype
= oap
->motion_type
;
2808 long yanklines
= oap
->line_count
;
2809 linenr_T yankendlnum
= oap
->end
.lnum
;
2812 struct block_def bd
;
2814 /* check for read-only register */
2815 if (oap
->regname
!= 0 && !valid_yank_reg(oap
->regname
, TRUE
))
2820 if (oap
->regname
== '_') /* black hole: nothing to do */
2823 #ifdef FEAT_CLIPBOARD
2824 if (!clip_star
.available
&& oap
->regname
== '*')
2826 else if (!clip_plus
.available
&& oap
->regname
== '+')
2830 if (!deleting
) /* op_delete() already set y_current */
2831 get_yank_register(oap
->regname
, TRUE
);
2834 /* append to existing contents */
2835 if (y_append
&& y_current
->y_array
!= NULL
)
2836 y_current
= &newreg
;
2838 free_yank_all(); /* free previously yanked lines */
2841 * If the cursor was in column 1 before and after the movement, and the
2842 * operator is not inclusive, the yank is always linewise.
2844 if ( oap
->motion_type
== MCHAR
2845 && oap
->start
.col
== 0
2848 && (!oap
->is_VIsual
|| *p_sel
== 'o')
2851 && oap
->end
.col
== 0
2859 y_current
->y_size
= yanklines
;
2860 y_current
->y_type
= yanktype
; /* set the yank register type */
2862 y_current
->y_width
= 0;
2864 y_current
->y_array
= (char_u
**)lalloc_clear((long_u
)(sizeof(char_u
*) *
2867 if (y_current
->y_array
== NULL
)
2874 lnum
= oap
->start
.lnum
;
2877 if (oap
->block_mode
)
2879 /* Visual block mode */
2880 y_current
->y_type
= MBLOCK
; /* set the yank register type */
2881 y_current
->y_width
= oap
->end_vcol
- oap
->start_vcol
;
2883 if (curwin
->w_curswant
== MAXCOL
&& y_current
->y_width
> 0)
2884 y_current
->y_width
--;
2888 for ( ; lnum
<= yankendlnum
; lnum
++, y_idx
++)
2890 switch (y_current
->y_type
)
2894 block_prep(oap
, &bd
, lnum
, FALSE
);
2895 if (yank_copy_line(&bd
, y_idx
) == FAIL
)
2901 if ((y_current
->y_array
[y_idx
] =
2902 vim_strsave(ml_get(lnum
))) == NULL
)
2908 colnr_T startcol
= 0, endcol
= MAXCOL
;
2909 #ifdef FEAT_VIRTUALEDIT
2910 int is_oneChar
= FALSE
;
2917 if (lnum
== oap
->start
.lnum
)
2919 startcol
= oap
->start
.col
;
2920 #ifdef FEAT_VIRTUALEDIT
2923 getvcol(curwin
, &oap
->start
, &cs
, NULL
, &ce
);
2924 if (ce
!= cs
&& oap
->start
.coladd
> 0)
2926 /* Part of a tab selected -- but don't
2927 * double-count it. */
2928 bd
.startspaces
= (ce
- cs
+ 1)
2929 - oap
->start
.coladd
;
2936 if (lnum
== oap
->end
.lnum
)
2938 endcol
= oap
->end
.col
;
2939 #ifdef FEAT_VIRTUALEDIT
2942 getvcol(curwin
, &oap
->end
, &cs
, NULL
, &ce
);
2943 if (p
[endcol
] == NUL
|| (cs
+ oap
->end
.coladd
< ce
2945 /* Don't add space for double-wide
2946 * char; endcol will be on last byte
2947 * of multi-byte char. */
2948 && (*mb_head_off
)(p
, p
+ endcol
) == 0
2952 if (oap
->start
.lnum
== oap
->end
.lnum
2953 && oap
->start
.col
== oap
->end
.col
)
2955 /* Special case: inside a single char */
2957 bd
.startspaces
= oap
->end
.coladd
2958 - oap
->start
.coladd
+ oap
->inclusive
;
2963 bd
.endspaces
= oap
->end
.coladd
2965 endcol
-= oap
->inclusive
;
2971 if (startcol
> endcol
2972 #ifdef FEAT_VIRTUALEDIT
2979 if (endcol
== MAXCOL
)
2980 endcol
= (colnr_T
)STRLEN(p
);
2981 bd
.textlen
= endcol
- startcol
+ oap
->inclusive
;
2983 bd
.textstart
= p
+ startcol
;
2984 if (yank_copy_line(&bd
, y_idx
) == FAIL
)
2992 if (curr
!= y_current
) /* append the new block to the old block */
2994 new_ptr
= (char_u
**)lalloc((long_u
)(sizeof(char_u
*) *
2995 (curr
->y_size
+ y_current
->y_size
)), TRUE
);
2996 if (new_ptr
== NULL
)
2998 for (j
= 0; j
< curr
->y_size
; ++j
)
2999 new_ptr
[j
] = curr
->y_array
[j
];
3000 vim_free(curr
->y_array
);
3001 curr
->y_array
= new_ptr
;
3003 if (yanktype
== MLINE
) /* MLINE overrides MCHAR and MBLOCK */
3004 curr
->y_type
= MLINE
;
3006 /* Concatenate the last line of the old block with the first line of
3007 * the new block, unless being Vi compatible. */
3008 if (curr
->y_type
== MCHAR
&& vim_strchr(p_cpo
, CPO_REGAPPEND
) == NULL
)
3010 pnew
= lalloc((long_u
)(STRLEN(curr
->y_array
[curr
->y_size
- 1])
3011 + STRLEN(y_current
->y_array
[0]) + 1), TRUE
);
3014 y_idx
= y_current
->y_size
- 1;
3017 STRCPY(pnew
, curr
->y_array
[--j
]);
3018 STRCAT(pnew
, y_current
->y_array
[0]);
3019 vim_free(curr
->y_array
[j
]);
3020 vim_free(y_current
->y_array
[0]);
3021 curr
->y_array
[j
++] = pnew
;
3026 while (y_idx
< y_current
->y_size
)
3027 curr
->y_array
[j
++] = y_current
->y_array
[y_idx
++];
3029 vim_free(y_current
->y_array
);
3032 if (mess
) /* Display message about yank? */
3034 if (yanktype
== MCHAR
3040 /* Some versions of Vi use ">=" here, some don't... */
3041 if (yanklines
> p_report
)
3043 /* redisplay now, so message is not deleted */
3044 update_topline_redraw();
3048 if (oap
->block_mode
)
3049 MSG(_("block of 1 line yanked"));
3052 MSG(_("1 line yanked"));
3055 else if (oap
->block_mode
)
3056 smsg((char_u
*)_("block of %ld lines yanked"), yanklines
);
3059 smsg((char_u
*)_("%ld lines yanked"), yanklines
);
3064 * Set "'[" and "']" marks.
3066 curbuf
->b_op_start
= oap
->start
;
3067 curbuf
->b_op_end
= oap
->end
;
3068 if (yanktype
== MLINE
3074 curbuf
->b_op_start
.col
= 0;
3075 curbuf
->b_op_end
.col
= MAXCOL
;
3078 #ifdef FEAT_CLIPBOARD
3080 * If we were yanking to the '*' register, send result to clipboard.
3081 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3082 * to the '*' register.
3084 if (clip_star
.available
3085 && (curr
== &(y_regs
[STAR_REGISTER
])
3086 || (!deleting
&& oap
->regname
== 0 && clip_unnamed
)))
3088 if (curr
!= &(y_regs
[STAR_REGISTER
]))
3089 /* Copy the text from register 0 to the clipboard register. */
3090 copy_yank_reg(&(y_regs
[STAR_REGISTER
]));
3092 clip_own_selection(&clip_star
);
3093 clip_gen_set_selection(&clip_star
);
3098 * If we were yanking to the '+' register, send result to selection.
3099 * Also copy to the '*' register, in case auto-select is off.
3101 else if (clip_plus
.available
&& curr
== &(y_regs
[PLUS_REGISTER
]))
3103 /* No need to copy to * register upon 'unnamed' now - see below */
3104 clip_own_selection(&clip_plus
);
3105 clip_gen_set_selection(&clip_plus
);
3106 if (!clip_isautosel())
3108 copy_yank_reg(&(y_regs
[STAR_REGISTER
]));
3109 clip_own_selection(&clip_star
);
3110 clip_gen_set_selection(&clip_star
);
3118 fail
: /* free the allocated lines */
3119 free_yank(y_idx
+ 1);
3125 yank_copy_line(bd
, y_idx
)
3126 struct block_def
*bd
;
3131 if ((pnew
= alloc(bd
->startspaces
+ bd
->endspaces
+ bd
->textlen
+ 1))
3134 y_current
->y_array
[y_idx
] = pnew
;
3135 copy_spaces(pnew
, (size_t)bd
->startspaces
);
3136 pnew
+= bd
->startspaces
;
3137 mch_memmove(pnew
, bd
->textstart
, (size_t)bd
->textlen
);
3138 pnew
+= bd
->textlen
;
3139 copy_spaces(pnew
, (size_t)bd
->endspaces
);
3140 pnew
+= bd
->endspaces
;
3145 #ifdef FEAT_CLIPBOARD
3147 * Make a copy of the y_current register to register "reg".
3151 struct yankreg
*reg
;
3153 struct yankreg
*curr
= y_current
;
3159 y_current
->y_array
= (char_u
**)lalloc_clear(
3160 (long_u
)(sizeof(char_u
*) * y_current
->y_size
), TRUE
);
3161 if (y_current
->y_array
== NULL
)
3162 y_current
->y_size
= 0;
3164 for (j
= 0; j
< y_current
->y_size
; ++j
)
3165 if ((y_current
->y_array
[j
] = vim_strsave(curr
->y_array
[j
])) == NULL
)
3168 y_current
->y_size
= 0;
3176 * Put contents of register "regname" into the text.
3177 * Caller must check "regname" to be valid!
3178 * "flags": PUT_FIXINDENT make indent look nice
3179 * PUT_CURSEND leave cursor after end of new text
3180 * PUT_LINE force linewise put (":put")
3183 do_put(regname
, dir
, count
, flags
)
3185 int dir
; /* BACKWARD for 'P', FORWARD for 'p' */
3190 char_u
*newp
, *oldp
;
3192 int totlen
= 0; /* init for gcc */
3195 long i
; /* index in y_array[] */
3205 struct block_def bd
;
3207 char_u
**y_array
= NULL
;
3211 int orig_indent
= 0; /* init for gcc */
3212 int indent_diff
= 0; /* init for gcc */
3213 int first_indent
= TRUE
;
3216 char_u
*insert_string
= NULL
;
3217 int allocated
= FALSE
;
3220 #ifdef FEAT_CLIPBOARD
3221 /* Adjust register name for "unnamed" in 'clipboard'. */
3222 adjust_clip_reg(®name
);
3223 (void)may_get_selection(regname
);
3226 if (flags
& PUT_FIXINDENT
)
3227 orig_indent
= get_indent();
3229 curbuf
->b_op_start
= curwin
->w_cursor
; /* default for '[ mark */
3230 curbuf
->b_op_end
= curwin
->w_cursor
; /* default for '] mark */
3233 * Using inserted text works differently, because the register includes
3234 * special characters (newlines, etc.).
3238 (void)stuff_inserted((dir
== FORWARD
? (count
== -1 ? 'o' : 'a') :
3239 (count
== -1 ? 'O' : 'i')), count
, FALSE
);
3240 /* Putting the text is done later, so can't really move the cursor to
3241 * the next character. Use "l" to simulate it. */
3242 if ((flags
& PUT_CURSEND
) && gchar_cursor() != NUL
)
3243 stuffcharReadbuff('l');
3248 * For special registers '%' (file name), '#' (alternate file name) and
3249 * ':' (last command line), etc. we have to create a fake yank register.
3251 if (get_spec_reg(regname
, &insert_string
, &allocated
, TRUE
))
3253 if (insert_string
== NULL
)
3257 if (insert_string
!= NULL
)
3263 /* For the = register we need to split the string at NL
3265 /* Loop twice: count the number of lines and save them. */
3269 ptr
= insert_string
;
3272 if (y_array
!= NULL
)
3273 y_array
[y_size
] = ptr
;
3275 ptr
= vim_strchr(ptr
, '\n');
3278 if (y_array
!= NULL
)
3281 /* A trailing '\n' makes the string linewise */
3289 if (y_array
!= NULL
)
3291 y_array
= (char_u
**)alloc((unsigned)
3292 (y_size
* sizeof(char_u
*)));
3293 if (y_array
== NULL
)
3300 y_size
= 1; /* use fake one-line yank register */
3301 y_array
= &insert_string
;
3306 get_yank_register(regname
, FALSE
);
3308 y_type
= y_current
->y_type
;
3310 y_width
= y_current
->y_width
;
3312 y_size
= y_current
->y_size
;
3313 y_array
= y_current
->y_array
;
3317 if (y_type
== MLINE
)
3319 if (flags
& PUT_LINE_SPLIT
)
3321 /* "p" or "P" in Visual mode: split the lines to put the text in
3323 if (u_save_cursor() == FAIL
)
3325 ptr
= vim_strsave(ml_get_cursor());
3328 ml_append(curwin
->w_cursor
.lnum
, ptr
, (colnr_T
)0, FALSE
);
3331 ptr
= vim_strnsave(ml_get_curline(), curwin
->w_cursor
.col
);
3334 ml_replace(curwin
->w_cursor
.lnum
, ptr
, FALSE
);
3338 if (flags
& PUT_LINE_FORWARD
)
3340 /* Must be "p" for a Visual block, put lines below the block. */
3341 curwin
->w_cursor
= curbuf
->b_visual
.vi_end
;
3344 curbuf
->b_op_start
= curwin
->w_cursor
; /* default for '[ mark */
3345 curbuf
->b_op_end
= curwin
->w_cursor
; /* default for '] mark */
3349 if (flags
& PUT_LINE
) /* :put command or "p" in Visual line mode. */
3352 if (y_size
== 0 || y_array
== NULL
)
3354 EMSG2(_("E353: Nothing in register %s"),
3355 regname
== 0 ? (char_u
*)"\"" : transchar(regname
));
3360 if (y_type
== MBLOCK
)
3362 lnum
= curwin
->w_cursor
.lnum
+ y_size
+ 1;
3363 if (lnum
> curbuf
->b_ml
.ml_line_count
)
3364 lnum
= curbuf
->b_ml
.ml_line_count
+ 1;
3365 if (u_save(curwin
->w_cursor
.lnum
- 1, lnum
) == FAIL
)
3370 if (y_type
== MLINE
)
3372 lnum
= curwin
->w_cursor
.lnum
;
3374 /* Correct line number for closed fold. Don't move the cursor yet,
3375 * u_save() uses it. */
3376 if (dir
== BACKWARD
)
3377 (void)hasFolding(lnum
, &lnum
, NULL
);
3379 (void)hasFolding(lnum
, NULL
, &lnum
);
3383 if (u_save(lnum
- 1, lnum
) == FAIL
)
3387 curwin
->w_cursor
.lnum
= lnum
- 1;
3389 curwin
->w_cursor
.lnum
= lnum
;
3390 curbuf
->b_op_start
= curwin
->w_cursor
; /* for mark_adjust() */
3393 else if (u_save_cursor() == FAIL
)
3396 yanklen
= (int)STRLEN(y_array
[0]);
3398 #ifdef FEAT_VIRTUALEDIT
3399 if (ve_flags
== VE_ALL
&& y_type
== MCHAR
)
3401 if (gchar_cursor() == TAB
)
3403 /* Don't need to insert spaces when "p" on the last position of a
3404 * tab or "P" on the first position. */
3406 ? (int)curwin
->w_cursor
.coladd
< curbuf
->b_p_ts
- 1
3407 : curwin
->w_cursor
.coladd
> 0)
3408 coladvance_force(getviscol());
3410 curwin
->w_cursor
.coladd
= 0;
3412 else if (curwin
->w_cursor
.coladd
> 0 || gchar_cursor() == NUL
)
3413 coladvance_force(getviscol() + (dir
== FORWARD
));
3417 lnum
= curwin
->w_cursor
.lnum
;
3418 col
= curwin
->w_cursor
.col
;
3424 if (y_type
== MBLOCK
)
3426 char c
= gchar_cursor();
3427 colnr_T endcol2
= 0;
3429 if (dir
== FORWARD
&& c
!= NUL
)
3431 #ifdef FEAT_VIRTUALEDIT
3432 if (ve_flags
== VE_ALL
)
3433 getvcol(curwin
, &curwin
->w_cursor
, &col
, NULL
, &endcol2
);
3436 getvcol(curwin
, &curwin
->w_cursor
, NULL
, NULL
, &col
);
3440 /* move to start of next multi-byte character */
3441 curwin
->w_cursor
.col
+= (*mb_ptr2len
)(ml_get_cursor());
3444 #ifdef FEAT_VIRTUALEDIT
3445 if (c
!= TAB
|| ve_flags
!= VE_ALL
)
3447 ++curwin
->w_cursor
.col
;
3451 getvcol(curwin
, &curwin
->w_cursor
, &col
, NULL
, &endcol2
);
3453 #ifdef FEAT_VIRTUALEDIT
3454 col
+= curwin
->w_cursor
.coladd
;
3455 if (ve_flags
== VE_ALL
3456 && (curwin
->w_cursor
.coladd
> 0
3457 || endcol2
== curwin
->w_cursor
.col
))
3459 if (dir
== FORWARD
&& c
== NUL
)
3461 if (dir
!= FORWARD
&& c
!= NUL
)
3462 ++curwin
->w_cursor
.col
;
3465 if (dir
== BACKWARD
&& curwin
->w_cursor
.col
)
3466 curwin
->w_cursor
.col
--;
3467 if (dir
== FORWARD
&& col
- 1 == endcol2
)
3468 curwin
->w_cursor
.col
++;
3471 curwin
->w_cursor
.coladd
= 0;
3474 for (i
= 0; i
< y_size
; ++i
)
3484 /* add a new line */
3485 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
3487 if (ml_append(curbuf
->b_ml
.ml_line_count
, (char_u
*)"",
3488 (colnr_T
)1, FALSE
) == FAIL
)
3492 /* get the old line and advance to the position to insert at */
3493 oldp
= ml_get_curline();
3494 oldlen
= (int)STRLEN(oldp
);
3495 for (ptr
= oldp
; vcol
< col
&& *ptr
; )
3497 /* Count a tab for what it's worth (if list mode not on) */
3498 incr
= lbr_chartabsize_adv(&ptr
, (colnr_T
)vcol
);
3501 bd
.textcol
= (colnr_T
)(ptr
- oldp
);
3503 shortline
= (vcol
< col
) || (vcol
== col
&& !*ptr
) ;
3505 if (vcol
< col
) /* line too short, padd with spaces */
3506 bd
.startspaces
= col
- vcol
;
3507 else if (vcol
> col
)
3509 bd
.endspaces
= vcol
- col
;
3510 bd
.startspaces
= incr
- bd
.endspaces
;
3515 bd
.textcol
-= (*mb_head_off
)(oldp
, oldp
+ bd
.textcol
);
3517 if (oldp
[bd
.textcol
] != TAB
)
3519 /* Only a Tab can be split into spaces. Other
3520 * characters will have to be moved to after the
3521 * block, causing misalignment. */
3527 yanklen
= (int)STRLEN(y_array
[i
]);
3529 /* calculate number of spaces required to fill right side of block*/
3530 spaces
= y_width
+ 1;
3531 for (j
= 0; j
< yanklen
; j
++)
3532 spaces
-= lbr_chartabsize(&y_array
[i
][j
], 0);
3536 /* insert the new text */
3537 totlen
= count
* (yanklen
+ spaces
) + bd
.startspaces
+ bd
.endspaces
;
3538 newp
= alloc_check((unsigned)totlen
+ oldlen
+ 1);
3541 /* copy part up to cursor to new line */
3543 mch_memmove(ptr
, oldp
, (size_t)bd
.textcol
);
3545 /* may insert some spaces before the new text */
3546 copy_spaces(ptr
, (size_t)bd
.startspaces
);
3547 ptr
+= bd
.startspaces
;
3548 /* insert the new text */
3549 for (j
= 0; j
< count
; ++j
)
3551 mch_memmove(ptr
, y_array
[i
], (size_t)yanklen
);
3554 /* insert block's trailing spaces only if there's text behind */
3555 if ((j
< count
- 1 || !shortline
) && spaces
)
3557 copy_spaces(ptr
, (size_t)spaces
);
3561 /* may insert some spaces after the new text */
3562 copy_spaces(ptr
, (size_t)bd
.endspaces
);
3563 ptr
+= bd
.endspaces
;
3564 /* move the text after the cursor to the end of the line. */
3565 mch_memmove(ptr
, oldp
+ bd
.textcol
+ delcount
,
3566 (size_t)(oldlen
- bd
.textcol
- delcount
+ 1));
3567 ml_replace(curwin
->w_cursor
.lnum
, newp
, FALSE
);
3569 ++curwin
->w_cursor
.lnum
;
3571 curwin
->w_cursor
.col
+= bd
.startspaces
;
3574 changed_lines(lnum
, 0, curwin
->w_cursor
.lnum
, nr_lines
);
3577 curbuf
->b_op_start
= curwin
->w_cursor
;
3578 curbuf
->b_op_start
.lnum
= lnum
;
3580 /* adjust '] mark */
3581 curbuf
->b_op_end
.lnum
= curwin
->w_cursor
.lnum
- 1;
3582 curbuf
->b_op_end
.col
= bd
.textcol
+ totlen
- 1;
3583 # ifdef FEAT_VIRTUALEDIT
3584 curbuf
->b_op_end
.coladd
= 0;
3586 if (flags
& PUT_CURSEND
)
3590 curwin
->w_cursor
= curbuf
->b_op_end
;
3591 curwin
->w_cursor
.col
++;
3593 /* in Insert mode we might be after the NUL, correct for that */
3594 len
= (colnr_T
)STRLEN(ml_get_curline());
3595 if (curwin
->w_cursor
.col
> len
)
3596 curwin
->w_cursor
.col
= len
;
3599 curwin
->w_cursor
.lnum
= lnum
;
3605 * Character or Line mode
3607 if (y_type
== MCHAR
)
3609 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3611 if (dir
== FORWARD
&& gchar_cursor() != NUL
)
3616 int bytelen
= (*mb_ptr2len
)(ml_get_cursor());
3618 /* put it on the next of the multi-byte character. */
3622 curwin
->w_cursor
.col
+= bytelen
;
3623 curbuf
->b_op_end
.col
+= bytelen
;
3632 ++curwin
->w_cursor
.col
;
3633 ++curbuf
->b_op_end
.col
;
3637 curbuf
->b_op_start
= curwin
->w_cursor
;
3640 * Line mode: BACKWARD is the same as FORWARD on the previous line
3642 else if (dir
== BACKWARD
)
3644 new_cursor
= curwin
->w_cursor
;
3647 * simple case: insert into current line
3649 if (y_type
== MCHAR
&& y_size
== 1)
3651 totlen
= count
* yanklen
;
3654 oldp
= ml_get(lnum
);
3655 newp
= alloc_check((unsigned)(STRLEN(oldp
) + totlen
+ 1));
3657 goto end
; /* alloc() will give error message */
3658 mch_memmove(newp
, oldp
, (size_t)col
);
3660 for (i
= 0; i
< count
; ++i
)
3662 mch_memmove(ptr
, y_array
[0], (size_t)yanklen
);
3665 mch_memmove(ptr
, oldp
+ col
, STRLEN(oldp
+ col
) + 1);
3666 ml_replace(lnum
, newp
, FALSE
);
3667 /* Put cursor on last putted char. */
3668 curwin
->w_cursor
.col
+= (colnr_T
)(totlen
- 1);
3670 curbuf
->b_op_end
= curwin
->w_cursor
;
3671 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3672 if (totlen
&& (restart_edit
!= 0 || (flags
& PUT_CURSEND
)))
3673 ++curwin
->w_cursor
.col
;
3674 changed_bytes(lnum
, col
);
3679 * Insert at least one line. When y_type is MCHAR, break the first
3682 for (cnt
= 1; cnt
<= count
; ++cnt
)
3685 if (y_type
== MCHAR
)
3688 * Split the current line in two at the insert position.
3689 * First insert y_array[size - 1] in front of second line.
3690 * Then append y_array[0] to first line.
3692 lnum
= new_cursor
.lnum
;
3693 ptr
= ml_get(lnum
) + col
;
3694 totlen
= (int)STRLEN(y_array
[y_size
- 1]);
3695 newp
= alloc_check((unsigned)(STRLEN(ptr
) + totlen
+ 1));
3698 STRCPY(newp
, y_array
[y_size
- 1]);
3700 /* insert second line */
3701 ml_append(lnum
, newp
, (colnr_T
)0, FALSE
);
3704 oldp
= ml_get(lnum
);
3705 newp
= alloc_check((unsigned)(col
+ yanklen
+ 1));
3708 /* copy first part of line */
3709 mch_memmove(newp
, oldp
, (size_t)col
);
3710 /* append to first line */
3711 mch_memmove(newp
+ col
, y_array
[0], (size_t)(yanklen
+ 1));
3712 ml_replace(lnum
, newp
, FALSE
);
3714 curwin
->w_cursor
.lnum
= lnum
;
3718 for (; i
< y_size
; ++i
)
3720 if ((y_type
!= MCHAR
|| i
< y_size
- 1)
3721 && ml_append(lnum
, y_array
[i
], (colnr_T
)0, FALSE
)
3726 if (flags
& PUT_FIXINDENT
)
3728 old_pos
= curwin
->w_cursor
;
3729 curwin
->w_cursor
.lnum
= lnum
;
3731 if (cnt
== count
&& i
== y_size
- 1)
3732 lendiff
= (int)STRLEN(ptr
);
3733 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3734 if (*ptr
== '#' && preprocs_left())
3735 indent
= 0; /* Leave # lines at start */
3739 indent
= 0; /* Ignore empty lines */
3740 else if (first_indent
)
3742 indent_diff
= orig_indent
- get_indent();
3743 indent
= orig_indent
;
3744 first_indent
= FALSE
;
3746 else if ((indent
= get_indent() + indent_diff
) < 0)
3748 (void)set_indent(indent
, 0);
3749 curwin
->w_cursor
= old_pos
;
3750 /* remember how many chars were removed */
3751 if (cnt
== count
&& i
== y_size
- 1)
3752 lendiff
-= (int)STRLEN(ml_get(lnum
));
3759 if (y_type
== MLINE
)
3761 curbuf
->b_op_start
.col
= 0;
3763 curbuf
->b_op_start
.lnum
++;
3765 mark_adjust(curbuf
->b_op_start
.lnum
+ (y_type
== MCHAR
),
3766 (linenr_T
)MAXLNUM
, nr_lines
, 0L);
3768 /* note changed text for displaying and folding */
3769 if (y_type
== MCHAR
)
3770 changed_lines(curwin
->w_cursor
.lnum
, col
,
3771 curwin
->w_cursor
.lnum
+ 1, nr_lines
);
3773 changed_lines(curbuf
->b_op_start
.lnum
, 0,
3774 curbuf
->b_op_start
.lnum
, nr_lines
);
3776 /* put '] mark at last inserted character */
3777 curbuf
->b_op_end
.lnum
= lnum
;
3778 /* correct length for change in indent */
3779 col
= (colnr_T
)STRLEN(y_array
[y_size
- 1]) - lendiff
;
3781 curbuf
->b_op_end
.col
= col
- 1;
3783 curbuf
->b_op_end
.col
= 0;
3785 if (flags
& PUT_CURSLINE
)
3787 /* ":put": put cursor on last inserted line */
3788 curwin
->w_cursor
.lnum
= lnum
;
3789 beginline(BL_WHITE
| BL_FIX
);
3791 else if (flags
& PUT_CURSEND
)
3793 /* put cursor after inserted text */
3794 if (y_type
== MLINE
)
3796 if (lnum
>= curbuf
->b_ml
.ml_line_count
)
3797 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
3799 curwin
->w_cursor
.lnum
= lnum
+ 1;
3800 curwin
->w_cursor
.col
= 0;
3804 curwin
->w_cursor
.lnum
= lnum
;
3805 curwin
->w_cursor
.col
= col
;
3808 else if (y_type
== MLINE
)
3810 /* put cursor on first non-blank in first inserted line */
3811 curwin
->w_cursor
.col
= 0;
3813 ++curwin
->w_cursor
.lnum
;
3814 beginline(BL_WHITE
| BL_FIX
);
3816 else /* put cursor on first inserted character */
3817 curwin
->w_cursor
= new_cursor
;
3822 curwin
->w_set_curswant
= TRUE
;
3826 vim_free(insert_string
);
3830 /* If the cursor is past the end of the line put it at the end. */
3831 adjust_cursor_eol();
3835 * When the cursor is on the NUL past the end of the line and it should not be
3836 * there move it left.
3841 if (curwin
->w_cursor
.col
> 0
3842 && gchar_cursor() == NUL
3843 #ifdef FEAT_VIRTUALEDIT
3844 && (ve_flags
& VE_ONEMORE
) == 0
3846 && !(restart_edit
|| (State
& INSERT
)))
3848 /* Put the cursor on the last character in the line. */
3851 #ifdef FEAT_VIRTUALEDIT
3852 if (ve_flags
== VE_ALL
)
3856 /* Coladd is set to the width of the last character. */
3857 getvcol(curwin
, &curwin
->w_cursor
, &scol
, NULL
, &ecol
);
3858 curwin
->w_cursor
.coladd
= ecol
- scol
+ 1;
3864 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
3866 * Return TRUE if lines starting with '#' should be left aligned.
3872 # ifdef FEAT_SMARTINDENT
3873 # ifdef FEAT_CINDENT
3874 (curbuf
->b_p_si
&& !curbuf
->b_p_cin
) ||
3879 # ifdef FEAT_CINDENT
3880 (curbuf
->b_p_cin
&& in_cinkeys('#', ' ', TRUE
))
3886 /* Return the character name of the register with the given number */
3888 get_register_name(num
)
3895 else if (num
== DELETION_REGISTER
)
3897 #ifdef FEAT_CLIPBOARD
3898 else if (num
== STAR_REGISTER
)
3900 else if (num
== PLUS_REGISTER
)
3908 /* EBCDIC is really braindead ... */
3909 i
= 'a' + (num
- 10);
3916 return num
+ 'a' - 10;
3922 * ":dis" and ":registers": Display the contents of the yank registers.
3934 char_u
*arg
= eap
->arg
;
3941 if (arg
!= NULL
&& *arg
== NUL
)
3943 attr
= hl_attr(HLF_8
);
3945 /* Highlight title */
3946 MSG_PUTS_TITLE(_("\n--- Registers ---"));
3947 for (i
= -1; i
< NUM_REGISTERS
&& !got_int
; ++i
)
3949 name
= get_register_name(i
);
3950 if (arg
!= NULL
&& vim_strchr(arg
, name
) == NULL
)
3951 continue; /* did not ask for this register */
3953 #ifdef FEAT_CLIPBOARD
3954 /* Adjust register name for "unnamed" in 'clipboard'.
3955 * When it's a clipboard register, fill it with the current contents
3956 * of the clipboard. */
3957 adjust_clip_reg(&name
);
3958 (void)may_get_selection(name
);
3963 if (y_previous
!= NULL
)
3970 if (yb
->y_array
!= NULL
)
3977 n
= (int)Columns
- 6;
3978 for (j
= 0; j
< yb
->y_size
&& n
> 1; ++j
)
3982 MSG_PUTS_ATTR("^J", attr
);
3985 for (p
= yb
->y_array
[j
]; *p
&& (n
-= ptr2cells(p
)) >= 0; ++p
)
3988 clen
= (*mb_ptr2len
)(p
);
3990 msg_outtrans_len(p
, clen
);
3996 if (n
> 1 && yb
->y_type
== MLINE
)
3997 MSG_PUTS_ATTR("^J", attr
);
3998 out_flush(); /* show one line at a time */
4004 * display last inserted text
4006 if ((p
= get_last_insert()) != NULL
4007 && (arg
== NULL
|| vim_strchr(arg
, '.') != NULL
) && !got_int
)
4014 * display last command line
4016 if (last_cmdline
!= NULL
&& (arg
== NULL
|| vim_strchr(arg
, ':') != NULL
)
4020 dis_msg(last_cmdline
, FALSE
);
4024 * display current file name
4026 if (curbuf
->b_fname
!= NULL
4027 && (arg
== NULL
|| vim_strchr(arg
, '%') != NULL
) && !got_int
)
4030 dis_msg(curbuf
->b_fname
, FALSE
);
4034 * display alternate file name
4036 if ((arg
== NULL
|| vim_strchr(arg
, '%') != NULL
) && !got_int
)
4041 if (buflist_name_nr(0, &fname
, &dummy
) != FAIL
)
4044 dis_msg(fname
, FALSE
);
4049 * display last search pattern
4051 if (last_search_pat() != NULL
4052 && (arg
== NULL
|| vim_strchr(arg
, '/') != NULL
) && !got_int
)
4055 dis_msg(last_search_pat(), FALSE
);
4060 * display last used expression
4062 if (expr_line
!= NULL
&& (arg
== NULL
|| vim_strchr(arg
, '=') != NULL
)
4066 dis_msg(expr_line
, FALSE
);
4072 * display a string for do_dis()
4073 * truncate at end of screen line
4076 dis_msg(p
, skip_esc
)
4078 int skip_esc
; /* if TRUE, ignore trailing ESC */
4085 n
= (int)Columns
- 6;
4087 && !(*p
== ESC
&& skip_esc
&& *(p
+ 1) == NUL
)
4088 && (n
-= ptr2cells(p
)) >= 0)
4091 if (has_mbyte
&& (l
= (*mb_ptr2len
)(p
)) > 1)
4093 msg_outtrans_len(p
, l
);
4098 msg_outtrans_len(p
++, 1);
4104 * join 'count' lines (minimal 2), including u_save()
4107 do_do_join(count
, insert_space
)
4111 colnr_T col
= MAXCOL
;
4113 if (u_save((linenr_T
)(curwin
->w_cursor
.lnum
- 1),
4114 (linenr_T
)(curwin
->w_cursor
.lnum
+ count
)) == FAIL
)
4120 if (got_int
|| do_join(insert_space
) == FAIL
)
4125 if (col
== MAXCOL
&& vim_strchr(p_cpo
, CPO_JOINCOL
) != NULL
)
4126 col
= curwin
->w_cursor
.col
;
4129 /* Vi compatible: use the column of the first join */
4130 if (col
!= MAXCOL
&& vim_strchr(p_cpo
, CPO_JOINCOL
) != NULL
)
4131 curwin
->w_cursor
.col
= col
;
4135 * Need to update the screen if the line where the cursor is became too
4136 * long to fit on the screen.
4138 update_topline_redraw();
4143 * Join two lines at the cursor position.
4144 * "redraw" is TRUE when the screen should be updated.
4145 * Caller must have setup for undo.
4147 * return FAIL for failure, OK otherwise
4150 do_join(insert_space
)
4154 char_u
*next
, *next_start
;
4156 int endcurr1
, endcurr2
;
4157 int currsize
; /* size of the current line */
4158 int nextsize
; /* size of the next line */
4159 int spaces
; /* number of spaces to insert */
4162 if (curwin
->w_cursor
.lnum
== curbuf
->b_ml
.ml_line_count
)
4163 return FAIL
; /* can't join on last line */
4165 curr
= ml_get_curline();
4166 currsize
= (int)STRLEN(curr
);
4167 endcurr1
= endcurr2
= NUL
;
4168 if (insert_space
&& currsize
> 0)
4173 next
= curr
+ currsize
;
4174 mb_ptr_back(curr
, next
);
4175 endcurr1
= (*mb_ptr2char
)(next
);
4178 mb_ptr_back(curr
, next
);
4179 endcurr2
= (*mb_ptr2char
)(next
);
4185 endcurr1
= *(curr
+ currsize
- 1);
4187 endcurr2
= *(curr
+ currsize
- 2);
4191 next
= next_start
= ml_get((linenr_T
)(curwin
->w_cursor
.lnum
+ 1));
4195 next
= skipwhite(next
);
4196 if (*next
!= ')' && currsize
!= 0 && endcurr1
!= TAB
4198 && (!has_format_option(FO_MBYTE_JOIN
)
4199 || (mb_ptr2char(next
) < 0x100 && endcurr1
< 0x100))
4200 && (!has_format_option(FO_MBYTE_JOIN2
)
4201 || mb_ptr2char(next
) < 0x100 || endcurr1
< 0x100)
4205 /* don't add a space if the line is ending in a space */
4206 if (endcurr1
== ' ')
4207 endcurr1
= endcurr2
;
4210 /* extra space when 'joinspaces' set and line ends in '.' */
4213 || (vim_strchr(p_cpo
, CPO_JOINSP
) == NULL
4214 && (endcurr1
== '?' || endcurr1
== '!'))))
4218 nextsize
= (int)STRLEN(next
);
4220 newp
= alloc_check((unsigned)(currsize
+ nextsize
+ spaces
+ 1));
4225 * Insert the next line first, because we already have that pointer.
4226 * Curr has to be obtained again, because getting next will have
4229 mch_memmove(newp
+ currsize
+ spaces
, next
, (size_t)(nextsize
+ 1));
4231 curr
= ml_get_curline();
4232 mch_memmove(newp
, curr
, (size_t)currsize
);
4234 copy_spaces(newp
+ currsize
, (size_t)spaces
);
4236 ml_replace(curwin
->w_cursor
.lnum
, newp
, FALSE
);
4238 /* Only report the change in the first line here, del_lines() will report
4239 * the deleted line. */
4240 changed_lines(curwin
->w_cursor
.lnum
, currsize
,
4241 curwin
->w_cursor
.lnum
+ 1, 0L);
4244 * Delete the following line. To do this we move the cursor there
4245 * briefly, and then move it back. After del_lines() the cursor may
4246 * have moved up (last line deleted), so the current lnum is kept in t.
4248 * Move marks from the deleted line to the joined line, adjusting the
4249 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4250 * should not really be a problem.
4252 t
= curwin
->w_cursor
.lnum
;
4253 mark_col_adjust(t
+ 1, (colnr_T
)0, (linenr_T
)-1,
4254 (long)(currsize
+ spaces
- (next
- next_start
)));
4255 ++curwin
->w_cursor
.lnum
;
4256 del_lines(1L, FALSE
);
4257 curwin
->w_cursor
.lnum
= t
;
4260 * go to first character of the joined line
4262 curwin
->w_cursor
.col
= currsize
;
4264 #ifdef FEAT_VIRTUALEDIT
4265 curwin
->w_cursor
.coladd
= 0;
4267 curwin
->w_set_curswant
= TRUE
;
4272 #ifdef FEAT_COMMENTS
4274 * Return TRUE if the two comment leaders given are the same. "lnum" is
4275 * the first line. White-space is ignored. Note that the whole of
4276 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4279 same_leader(lnum
, leader1_len
, leader1_flags
, leader2_len
, leader2_flags
)
4282 char_u
*leader1_flags
;
4284 char_u
*leader2_flags
;
4286 int idx1
= 0, idx2
= 0;
4291 if (leader1_len
== 0)
4292 return (leader2_len
== 0);
4295 * If first leader has 'f' flag, the lines can be joined only if the
4296 * second line does not have a leader.
4297 * If first leader has 'e' flag, the lines can never be joined.
4298 * If fist leader has 's' flag, the lines can only be joined if there is
4299 * some text after it and the second line has the 'm' flag.
4301 if (leader1_flags
!= NULL
)
4303 for (p
= leader1_flags
; *p
&& *p
!= ':'; ++p
)
4305 if (*p
== COM_FIRST
)
4306 return (leader2_len
== 0);
4309 if (*p
== COM_START
)
4311 if (*(ml_get(lnum
) + leader1_len
) == NUL
)
4313 if (leader2_flags
== NULL
|| leader2_len
== 0)
4315 for (p
= leader2_flags
; *p
&& *p
!= ':'; ++p
)
4316 if (*p
== COM_MIDDLE
)
4324 * Get current line and next line, compare the leaders.
4325 * The first line has to be saved, only one line can be locked at a time.
4327 line1
= vim_strsave(ml_get(lnum
));
4330 for (idx1
= 0; vim_iswhite(line1
[idx1
]); ++idx1
)
4332 line2
= ml_get(lnum
+ 1);
4333 for (idx2
= 0; idx2
< leader2_len
; ++idx2
)
4335 if (!vim_iswhite(line2
[idx2
]))
4337 if (line1
[idx1
++] != line2
[idx2
])
4341 while (vim_iswhite(line1
[idx1
]))
4346 return (idx2
== leader2_len
&& idx1
== leader1_len
);
4351 * implementation of the format operator 'gq'
4354 op_format(oap
, keep_cursor
)
4356 int keep_cursor
; /* keep cursor on same text char */
4358 long old_line_count
= curbuf
->b_ml
.ml_line_count
;
4360 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4361 * can put it back there. */
4362 curwin
->w_cursor
= oap
->cursor_start
;
4364 if (u_save((linenr_T
)(oap
->start
.lnum
- 1),
4365 (linenr_T
)(oap
->end
.lnum
+ 1)) == FAIL
)
4367 curwin
->w_cursor
= oap
->start
;
4371 /* When there is no change: need to remove the Visual selection */
4372 redraw_curbuf_later(INVERTED
);
4375 /* Set '[ mark at the start of the formatted area */
4376 curbuf
->b_op_start
= oap
->start
;
4378 /* For "gw" remember the cursor position and put it back below (adjusted
4379 * for joined and split lines). */
4381 saved_cursor
= oap
->cursor_start
;
4383 format_lines(oap
->line_count
);
4386 * Leave the cursor at the first non-blank of the last formatted line.
4387 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4388 * line, so "." will do the next lines.
4390 if (oap
->end_adjusted
&& curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
)
4391 ++curwin
->w_cursor
.lnum
;
4392 beginline(BL_WHITE
| BL_FIX
);
4393 old_line_count
= curbuf
->b_ml
.ml_line_count
- old_line_count
;
4394 msgmore(old_line_count
);
4396 /* put '] mark on the end of the formatted area */
4397 curbuf
->b_op_end
= curwin
->w_cursor
;
4401 curwin
->w_cursor
= saved_cursor
;
4402 saved_cursor
.lnum
= 0;
4412 if (wp
->w_old_cursor_lnum
!= 0)
4414 /* When lines have been inserted or deleted, adjust the end of
4415 * the Visual area to be redrawn. */
4416 if (wp
->w_old_cursor_lnum
> wp
->w_old_visual_lnum
)
4417 wp
->w_old_cursor_lnum
+= old_line_count
;
4419 wp
->w_old_visual_lnum
+= old_line_count
;
4426 #if defined(FEAT_EVAL) || defined(PROTO)
4428 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4436 /* When there is no change: need to remove the Visual selection */
4437 redraw_curbuf_later(INVERTED
);
4440 (void)fex_format(oap
->start
.lnum
, oap
->line_count
, NUL
);
4444 fex_format(lnum
, count
, c
)
4447 int c
; /* character to be inserted */
4449 int use_sandbox
= was_set_insecurely((char_u
*)"formatexpr",
4453 char_u buf
[MB_MAXBYTES
];
4459 * Set v:lnum to the first line number and v:count to the number of lines.
4460 * Set v:char to the character to be inserted (can be NUL).
4462 set_vim_var_nr(VV_LNUM
, lnum
);
4463 set_vim_var_nr(VV_COUNT
, count
);
4467 buf
[(*mb_char2bytes
)(c
, buf
)] = NUL
;
4474 set_vim_var_string(VV_CHAR
, buf
, -1);
4477 * Evaluate the function.
4481 r
= eval_to_number(curbuf
->b_p_fex
);
4485 set_vim_var_string(VV_CHAR
, NULL
, -1);
4492 * Format "line_count" lines, starting at the cursor position.
4493 * When "line_count" is negative, format until the end of the paragraph.
4494 * Lines after the cursor line are saved for undo, caller must have saved the
4498 format_lines(line_count
)
4499 linenr_T line_count
;
4502 int is_not_par
; /* current line not part of parag. */
4503 int next_is_not_par
; /* next line not part of paragraph */
4504 int is_end_par
; /* at end of paragraph */
4505 int prev_is_end_par
= FALSE
;/* prev. line not part of parag. */
4506 int next_is_start_par
= FALSE
;
4507 #ifdef FEAT_COMMENTS
4508 int leader_len
= 0; /* leader len of current line */
4509 int next_leader_len
; /* leader len of next line */
4510 char_u
*leader_flags
= NULL
; /* flags for leader of current line */
4511 char_u
*next_leader_flags
; /* flags for leader of next line */
4512 int do_comments
; /* format comments */
4515 int second_indent
= -1;
4516 int do_second_indent
;
4517 int do_number_indent
;
4519 int first_par_line
= TRUE
;
4522 int need_set_indent
= TRUE
; /* set indent of next paragraph */
4523 int force_format
= FALSE
;
4524 int old_State
= State
;
4526 /* length of a line to force formatting: 3 * 'tw' */
4527 max_len
= comp_textwidth(TRUE
) * 3;
4529 /* check for 'q', '2' and '1' in 'formatoptions' */
4530 #ifdef FEAT_COMMENTS
4531 do_comments
= has_format_option(FO_Q_COMS
);
4533 do_second_indent
= has_format_option(FO_Q_SECOND
);
4534 do_number_indent
= has_format_option(FO_Q_NUMBER
);
4535 do_trail_white
= has_format_option(FO_WHITE_PAR
);
4538 * Get info about the previous and current line.
4540 if (curwin
->w_cursor
.lnum
> 1)
4541 is_not_par
= fmt_check_par(curwin
->w_cursor
.lnum
- 1
4542 #ifdef FEAT_COMMENTS
4543 , &leader_len
, &leader_flags
, do_comments
4548 next_is_not_par
= fmt_check_par(curwin
->w_cursor
.lnum
4549 #ifdef FEAT_COMMENTS
4550 , &next_leader_len
, &next_leader_flags
, do_comments
4553 is_end_par
= (is_not_par
|| next_is_not_par
);
4554 if (!is_end_par
&& do_trail_white
)
4555 is_end_par
= !ends_in_white(curwin
->w_cursor
.lnum
- 1);
4557 curwin
->w_cursor
.lnum
--;
4558 for (count
= line_count
; count
!= 0 && !got_int
; --count
)
4561 * Advance to next paragraph.
4565 curwin
->w_cursor
.lnum
++;
4566 prev_is_end_par
= is_end_par
;
4567 is_not_par
= next_is_not_par
;
4568 #ifdef FEAT_COMMENTS
4569 leader_len
= next_leader_len
;
4570 leader_flags
= next_leader_flags
;
4575 * The last line to be formatted.
4577 if (count
== 1 || curwin
->w_cursor
.lnum
== curbuf
->b_ml
.ml_line_count
)
4579 next_is_not_par
= TRUE
;
4580 #ifdef FEAT_COMMENTS
4581 next_leader_len
= 0;
4582 next_leader_flags
= NULL
;
4587 next_is_not_par
= fmt_check_par(curwin
->w_cursor
.lnum
+ 1
4588 #ifdef FEAT_COMMENTS
4589 , &next_leader_len
, &next_leader_flags
, do_comments
4592 if (do_number_indent
)
4594 (get_number_indent(curwin
->w_cursor
.lnum
+ 1) > 0);
4597 is_end_par
= (is_not_par
|| next_is_not_par
|| next_is_start_par
);
4598 if (!is_end_par
&& do_trail_white
)
4599 is_end_par
= !ends_in_white(curwin
->w_cursor
.lnum
);
4602 * Skip lines that are not in a paragraph.
4612 * For the first line of a paragraph, check indent of second line.
4613 * Don't do this for comments and empty lines.
4616 && (do_second_indent
|| do_number_indent
)
4618 && curwin
->w_cursor
.lnum
< curbuf
->b_ml
.ml_line_count
4619 #ifdef FEAT_COMMENTS
4621 && next_leader_len
== 0
4625 if (do_second_indent
4626 && !lineempty(curwin
->w_cursor
.lnum
+ 1))
4627 second_indent
= get_indent_lnum(curwin
->w_cursor
.lnum
+ 1);
4628 else if (do_number_indent
)
4629 second_indent
= get_number_indent(curwin
->w_cursor
.lnum
);
4633 * When the comment leader changes, it's the end of the paragraph.
4635 if (curwin
->w_cursor
.lnum
>= curbuf
->b_ml
.ml_line_count
4636 #ifdef FEAT_COMMENTS
4637 || !same_leader(curwin
->w_cursor
.lnum
,
4638 leader_len
, leader_flags
,
4639 next_leader_len
, next_leader_flags
)
4645 * If we have got to the end of a paragraph, or the line is
4646 * getting long, format it.
4648 if (is_end_par
|| force_format
)
4650 if (need_set_indent
)
4651 /* replace indent in first line with minimal number of
4652 * tabs and spaces, according to current options */
4653 (void)set_indent(get_indent(), SIN_CHANGED
);
4655 /* put cursor on last non-space */
4656 State
= NORMAL
; /* don't go past end-of-line */
4657 coladvance((colnr_T
)MAXCOL
);
4658 while (curwin
->w_cursor
.col
&& vim_isspace(gchar_cursor()))
4661 /* do the formatting, without 'showmode' */
4662 State
= INSERT
; /* for open_line() */
4665 insertchar(NUL
, INSCHAR_FORMAT
4666 #ifdef FEAT_COMMENTS
4667 + (do_comments
? INSCHAR_DO_COM
: 0)
4673 /* at end of par.: need to set indent of next par. */
4674 need_set_indent
= is_end_par
;
4677 /* When called with a negative line count, break at the
4678 * end of the paragraph. */
4681 first_par_line
= TRUE
;
4683 force_format
= FALSE
;
4687 * When still in same paragraph, join the lines together. But
4688 * first delete the comment leader from the second line.
4693 curwin
->w_cursor
.lnum
++;
4694 curwin
->w_cursor
.col
= 0;
4695 if (line_count
< 0 && u_save_cursor() == FAIL
)
4697 #ifdef FEAT_COMMENTS
4698 (void)del_bytes((long)next_leader_len
, FALSE
, FALSE
);
4699 if (next_leader_len
> 0)
4700 mark_col_adjust(curwin
->w_cursor
.lnum
, (colnr_T
)0, 0L,
4701 (long)-next_leader_len
);
4703 curwin
->w_cursor
.lnum
--;
4704 if (do_join(TRUE
) == FAIL
)
4709 first_par_line
= FALSE
;
4710 /* If the line is getting long, format it next time */
4711 if (STRLEN(ml_get_curline()) > (size_t)max_len
)
4712 force_format
= TRUE
;
4714 force_format
= FALSE
;
4722 * Return TRUE if line "lnum" ends in a white character.
4728 char_u
*s
= ml_get(lnum
);
4733 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
4734 * invocation may call function multiple times". */
4736 return vim_iswhite(s
[l
]);
4740 * Blank lines, and lines containing only the comment leader, are left
4741 * untouched by the formatting. The function returns TRUE in this
4742 * case. It also returns TRUE when a line starts with the end of a comment
4743 * ('e' in comment flags), so that this line is skipped, and not joined to the
4744 * previous line. A new paragraph starts after a blank line, or when the
4745 * comment leader changes -- webb.
4747 #ifdef FEAT_COMMENTS
4749 fmt_check_par(lnum
, leader_len
, leader_flags
, do_comments
)
4752 char_u
**leader_flags
;
4755 char_u
*flags
= NULL
; /* init for GCC */
4760 *leader_len
= get_leader_len(ptr
, leader_flags
, FALSE
);
4764 if (*leader_len
> 0)
4767 * Search for 'e' flag in comment leader flags.
4769 flags
= *leader_flags
;
4770 while (*flags
&& *flags
!= ':' && *flags
!= COM_END
)
4774 return (*skipwhite(ptr
+ *leader_len
) == NUL
4775 || (*leader_len
> 0 && *flags
== COM_END
)
4776 || startPS(lnum
, NUL
, FALSE
));
4783 return (*skipwhite(ml_get(lnum
)) == NUL
|| startPS(lnum
, NUL
, FALSE
));
4788 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
4789 * previous line is in the same paragraph. Used for auto-formatting.
4792 paragraph_start(lnum
)
4796 #ifdef FEAT_COMMENTS
4797 int leader_len
= 0; /* leader len of current line */
4798 char_u
*leader_flags
= NULL
; /* flags for leader of current line */
4799 int next_leader_len
; /* leader len of next line */
4800 char_u
*next_leader_flags
; /* flags for leader of next line */
4801 int do_comments
; /* format comments */
4805 return TRUE
; /* start of the file */
4807 p
= ml_get(lnum
- 1);
4809 return TRUE
; /* after empty line */
4811 #ifdef FEAT_COMMENTS
4812 do_comments
= has_format_option(FO_Q_COMS
);
4814 if (fmt_check_par(lnum
- 1
4815 #ifdef FEAT_COMMENTS
4816 , &leader_len
, &leader_flags
, do_comments
4819 return TRUE
; /* after non-paragraph line */
4821 if (fmt_check_par(lnum
4822 #ifdef FEAT_COMMENTS
4823 , &next_leader_len
, &next_leader_flags
, do_comments
4826 return TRUE
; /* "lnum" is not a paragraph line */
4828 if (has_format_option(FO_WHITE_PAR
) && !ends_in_white(lnum
- 1))
4829 return TRUE
; /* missing trailing space in previous line. */
4831 if (has_format_option(FO_Q_NUMBER
) && (get_number_indent(lnum
) > 0))
4832 return TRUE
; /* numbered item starts in "lnum". */
4834 #ifdef FEAT_COMMENTS
4835 if (!same_leader(lnum
- 1, leader_len
, leader_flags
,
4836 next_leader_len
, next_leader_flags
))
4837 return TRUE
; /* change of comment leader. */
4845 * prepare a few things for block mode yank/delete/tilde
4848 * - textlen includes the first/last char to be (partly) deleted
4849 * - start/endspaces is the number of columns that are taken by the
4850 * first/last deleted char minus the number of columns that have to be
4851 * deleted. for yank and tilde:
4852 * - textlen includes the first/last char to be wholly yanked
4853 * - start/endspaces is the number of columns of the first/last yanked char
4854 * that are to be yanked.
4857 block_prep(oap
, bdp
, lnum
, is_del
)
4859 struct block_def
*bdp
;
4867 char_u
*prev_pstart
;
4870 bdp
->startspaces
= 0;
4873 bdp
->start_vcol
= 0;
4875 #ifdef FEAT_VISUALEXTRA
4876 bdp
->is_short
= FALSE
;
4877 bdp
->is_oneChar
= FALSE
;
4878 bdp
->pre_whitesp
= 0;
4879 bdp
->pre_whitesp_c
= 0;
4880 bdp
->end_char_vcols
= 0;
4882 bdp
->start_char_vcols
= 0;
4884 line
= ml_get(lnum
);
4887 while (bdp
->start_vcol
< oap
->start_vcol
&& *pstart
)
4889 /* Count a tab for what it's worth (if list mode not on) */
4890 incr
= lbr_chartabsize(pstart
, (colnr_T
)bdp
->start_vcol
);
4891 bdp
->start_vcol
+= incr
;
4892 #ifdef FEAT_VISUALEXTRA
4893 if (vim_iswhite(*pstart
))
4895 bdp
->pre_whitesp
+= incr
;
4896 bdp
->pre_whitesp_c
++;
4900 bdp
->pre_whitesp
= 0;
4901 bdp
->pre_whitesp_c
= 0;
4904 prev_pstart
= pstart
;
4907 bdp
->start_char_vcols
= incr
;
4908 if (bdp
->start_vcol
< oap
->start_vcol
) /* line too short */
4910 bdp
->end_vcol
= bdp
->start_vcol
;
4911 #ifdef FEAT_VISUALEXTRA
4912 bdp
->is_short
= TRUE
;
4914 if (!is_del
|| oap
->op_type
== OP_APPEND
)
4915 bdp
->endspaces
= oap
->end_vcol
- oap
->start_vcol
+ 1;
4919 /* notice: this converts partly selected Multibyte characters to
4921 bdp
->startspaces
= bdp
->start_vcol
- oap
->start_vcol
;
4922 if (is_del
&& bdp
->startspaces
)
4923 bdp
->startspaces
= bdp
->start_char_vcols
- bdp
->startspaces
;
4925 bdp
->end_vcol
= bdp
->start_vcol
;
4926 if (bdp
->end_vcol
> oap
->end_vcol
) /* it's all in one character */
4928 #ifdef FEAT_VISUALEXTRA
4929 bdp
->is_oneChar
= TRUE
;
4931 if (oap
->op_type
== OP_INSERT
)
4932 bdp
->endspaces
= bdp
->start_char_vcols
- bdp
->startspaces
;
4933 else if (oap
->op_type
== OP_APPEND
)
4935 bdp
->startspaces
+= oap
->end_vcol
- oap
->start_vcol
+ 1;
4936 bdp
->endspaces
= bdp
->start_char_vcols
- bdp
->startspaces
;
4940 bdp
->startspaces
= oap
->end_vcol
- oap
->start_vcol
+ 1;
4941 if (is_del
&& oap
->op_type
!= OP_LSHIFT
)
4943 /* just putting the sum of those two into
4944 * bdp->startspaces doesn't work for Visual replace,
4945 * so we have to split the tab in two */
4946 bdp
->startspaces
= bdp
->start_char_vcols
4947 - (bdp
->start_vcol
- oap
->start_vcol
);
4948 bdp
->endspaces
= bdp
->end_vcol
- oap
->end_vcol
- 1;
4955 while (bdp
->end_vcol
<= oap
->end_vcol
&& *pend
!= NUL
)
4957 /* Count a tab for what it's worth (if list mode not on) */
4959 incr
= lbr_chartabsize_adv(&pend
, (colnr_T
)bdp
->end_vcol
);
4960 bdp
->end_vcol
+= incr
;
4962 if (bdp
->end_vcol
<= oap
->end_vcol
4964 || oap
->op_type
== OP_APPEND
4965 || oap
->op_type
== OP_REPLACE
)) /* line too short */
4967 #ifdef FEAT_VISUALEXTRA
4968 bdp
->is_short
= TRUE
;
4970 /* Alternative: include spaces to fill up the block.
4971 * Disadvantage: can lead to trailing spaces when the line is
4972 * short where the text is put */
4973 /* if (!is_del || oap->op_type == OP_APPEND) */
4974 if (oap
->op_type
== OP_APPEND
|| virtual_op
)
4975 bdp
->endspaces
= oap
->end_vcol
- bdp
->end_vcol
4978 bdp
->endspaces
= 0; /* replace doesn't add characters */
4980 else if (bdp
->end_vcol
> oap
->end_vcol
)
4982 bdp
->endspaces
= bdp
->end_vcol
- oap
->end_vcol
- 1;
4983 if (!is_del
&& bdp
->endspaces
)
4985 bdp
->endspaces
= incr
- bdp
->endspaces
;
4991 #ifdef FEAT_VISUALEXTRA
4992 bdp
->end_char_vcols
= incr
;
4994 if (is_del
&& bdp
->startspaces
)
4995 pstart
= prev_pstart
;
4996 bdp
->textlen
= (int)(pend
- pstart
);
4998 bdp
->textcol
= (colnr_T
) (pstart
- line
);
4999 bdp
->textstart
= pstart
;
5001 #endif /* FEAT_VISUAL */
5003 #ifdef FEAT_RIGHTLEFT
5004 static void reverse_line
__ARGS((char_u
*s
));
5013 if ((i
= (int)STRLEN(s
) - 1) <= 0)
5016 curwin
->w_cursor
.col
= i
- curwin
->w_cursor
.col
;
5017 for (j
= 0; j
< i
; j
++, i
--)
5019 c
= s
[i
]; s
[i
] = s
[j
]; s
[j
] = c
;
5023 # define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
5025 # define RLADDSUBFIX(ptr)
5029 * add or subtract 'Prenum1' from a number in a line
5030 * 'command' is CTRL-A for add, CTRL-X for subtract
5032 * return FAIL for failure, OK otherwise
5035 do_addsub(command
, Prenum1
)
5041 char_u buf2
[NUMBUFLEN
];
5042 int hex
; /* 'X' or 'x': hex; '0': octal */
5043 static int hexupper
= FALSE
; /* 0xABC */
5048 int length
= 0; /* character length of the number */
5057 dohex
= (vim_strchr(curbuf
->b_p_nf
, 'x') != NULL
); /* "heX" */
5058 dooct
= (vim_strchr(curbuf
->b_p_nf
, 'o') != NULL
); /* "Octal" */
5059 doalp
= (vim_strchr(curbuf
->b_p_nf
, 'p') != NULL
); /* "alPha" */
5061 ptr
= ml_get_curline();
5065 * First check if we are on a hexadecimal number, after the "0x".
5067 col
= curwin
->w_cursor
.col
;
5069 while (col
> 0 && vim_isxdigit(ptr
[col
]))
5075 && ptr
[col
- 1] == '0'
5076 && vim_isxdigit(ptr
[col
+ 1]))
5079 * Found hexadecimal number, move to its start.
5086 * Search forward and then backward to find the start of number.
5088 col
= curwin
->w_cursor
.col
;
5090 while (ptr
[col
] != NUL
5091 && !vim_isdigit(ptr
[col
])
5092 && !(doalp
&& ASCII_ISALPHA(ptr
[col
])))
5096 && vim_isdigit(ptr
[col
- 1])
5097 && !(doalp
&& ASCII_ISALPHA(ptr
[col
])))
5102 * If a number was found, and saving for undo works, replace the number.
5104 firstdigit
= ptr
[col
];
5106 if ((!VIM_ISDIGIT(firstdigit
) && !(doalp
&& ASCII_ISALPHA(firstdigit
)))
5107 || u_save_cursor() != OK
)
5113 /* get ptr again, because u_save() may have changed it */
5114 ptr
= ml_get_curline();
5117 if (doalp
&& ASCII_ISALPHA(firstdigit
))
5119 /* decrement or increment alphabetic character */
5120 if (command
== Ctrl_X
)
5122 if (CharOrd(firstdigit
) < Prenum1
)
5124 if (isupper(firstdigit
))
5131 firstdigit
= EBCDIC_CHAR_ADD(firstdigit
, -Prenum1
);
5133 firstdigit
-= Prenum1
;
5138 if (26 - CharOrd(firstdigit
) - 1 < Prenum1
)
5140 if (isupper(firstdigit
))
5147 firstdigit
= EBCDIC_CHAR_ADD(firstdigit
, Prenum1
);
5149 firstdigit
+= Prenum1
;
5152 curwin
->w_cursor
.col
= col
;
5153 (void)del_char(FALSE
);
5154 ins_char(firstdigit
);
5159 if (col
> 0 && ptr
[col
- 1] == '-') /* negative number */
5165 /* get the number value (unsigned) */
5166 vim_str2nr(ptr
+ col
, &hex
, &length
, dooct
, dohex
, NULL
, &n
);
5168 /* ignore leading '-' for hex and octal numbers */
5169 if (hex
&& negative
)
5176 /* add or subtract */
5178 if (command
== Ctrl_X
)
5185 n
-= (unsigned long)Prenum1
;
5187 n
+= (unsigned long)Prenum1
;
5189 /* handle wraparound for decimal numbers */
5196 n
= 1 + (n
^ (unsigned long)-1);
5204 n
= (n
^ (unsigned long)-1);
5213 * Delete the old number.
5215 curwin
->w_cursor
.col
= col
;
5219 * Don't include the '-' in the length, only the length of the part
5220 * after it is kept the same.
5226 if (c
< 0x100 && isalpha(c
))
5233 /* del_char() will mark line needing displaying */
5234 (void)del_char(FALSE
);
5239 * Prepare the leading characters in buf1[].
5240 * When there are many leading zeros it could be very long. Allocate
5243 buf1
= alloc((unsigned)length
+ NUMBUFLEN
);
5256 if (hex
== 'x' || hex
== 'X')
5263 * Put the number characters in buf2[].
5266 sprintf((char *)buf2
, "%lu", n
);
5267 else if (hex
== '0')
5268 sprintf((char *)buf2
, "%lo", n
);
5269 else if (hex
&& hexupper
)
5270 sprintf((char *)buf2
, "%lX", n
);
5272 sprintf((char *)buf2
, "%lx", n
);
5273 length
-= (int)STRLEN(buf2
);
5276 * Adjust number of zeros to the new number of digits, so the
5277 * total length of the number remains the same.
5278 * Don't do this when
5279 * the result may look like an octal number.
5281 if (firstdigit
== '0' && !(dooct
&& hex
== 0))
5282 while (length
-- > 0)
5286 ins_str(buf1
); /* insert the new number */
5289 --curwin
->w_cursor
.col
;
5290 curwin
->w_set_curswant
= TRUE
;
5291 #ifdef FEAT_RIGHTLEFT
5292 ptr
= ml_get_buf(curbuf
, curwin
->w_cursor
.lnum
, TRUE
);
5300 read_viminfo_register(virp
, force
)
5309 int set_prev
= FALSE
;
5311 char_u
**array
= NULL
;
5313 /* We only get here (hopefully) if line[0] == '"' */
5314 str
= virp
->vir_line
+ 1;
5320 if (!ASCII_ISALNUM(*str
) && *str
!= '-')
5322 if (viminfo_error("E577: ", _("Illegal register name"), virp
->vir_line
))
5323 return TRUE
; /* too many errors, pretend end-of-file */
5326 get_yank_register(*str
++, FALSE
);
5327 if (!force
&& y_current
->y_array
!= NULL
)
5330 limit
= 100; /* Optimized for registers containing <= 100 lines */
5334 y_previous
= y_current
;
5335 vim_free(y_current
->y_array
);
5336 array
= y_current
->y_array
=
5337 (char_u
**)alloc((unsigned)(limit
* sizeof(char_u
*)));
5338 str
= skipwhite(str
);
5339 if (STRNCMP(str
, "CHAR", 4) == 0)
5340 y_current
->y_type
= MCHAR
;
5342 else if (STRNCMP(str
, "BLOCK", 5) == 0)
5343 y_current
->y_type
= MBLOCK
;
5346 y_current
->y_type
= MLINE
;
5347 /* get the block width; if it's missing we get a zero, which is OK */
5348 str
= skipwhite(skiptowhite(str
));
5350 y_current
->y_width
= getdigits(&str
);
5352 (void)getdigits(&str
);
5356 while (!(eof
= viminfo_readline(virp
))
5357 && (virp
->vir_line
[0] == TAB
|| virp
->vir_line
[0] == '<'))
5363 y_current
->y_array
= (char_u
**)
5364 alloc((unsigned)(limit
* 2 * sizeof(char_u
*)));
5365 for (i
= 0; i
< limit
; i
++)
5366 y_current
->y_array
[i
] = array
[i
];
5369 array
= y_current
->y_array
;
5371 str
= viminfo_readstring(virp
, 1, TRUE
);
5373 array
[size
++] = str
;
5383 y_current
->y_array
= NULL
;
5385 else if (size
< limit
)
5387 y_current
->y_array
=
5388 (char_u
**)alloc((unsigned)(size
* sizeof(char_u
*)));
5389 for (i
= 0; i
< size
; i
++)
5390 y_current
->y_array
[i
] = array
[i
];
5393 y_current
->y_size
= size
;
5399 write_viminfo_registers(fp
)
5410 fprintf(fp
, _("\n# Registers:\n"));
5412 /* Get '<' value, use old '"' value if '<' is not found. */
5413 max_num_lines
= get_viminfo_parameter('<');
5414 if (max_num_lines
< 0)
5415 max_num_lines
= get_viminfo_parameter('"');
5416 if (max_num_lines
== 0)
5418 max_kbyte
= get_viminfo_parameter('s');
5421 for (i
= 0; i
< NUM_REGISTERS
; i
++)
5423 if (y_regs
[i
].y_array
== NULL
)
5425 #ifdef FEAT_CLIPBOARD
5426 /* Skip '*'/'+' register, we don't want them back next time */
5427 if (i
== STAR_REGISTER
|| i
== PLUS_REGISTER
)
5431 /* Neither do we want the '~' register */
5432 if (i
== TILDE_REGISTER
)
5435 /* Skip empty registers. */
5436 num_lines
= y_regs
[i
].y_size
;
5438 || (num_lines
== 1 && y_regs
[i
].y_type
== MCHAR
5439 && STRLEN(y_regs
[i
].y_array
[0]) == 0))
5444 /* Skip register if there is more text than the maximum size. */
5446 for (j
= 0; j
< num_lines
; j
++)
5447 len
+= (long)STRLEN(y_regs
[i
].y_array
[j
]) + 1L;
5448 if (len
> (long)max_kbyte
* 1024L)
5452 switch (y_regs
[i
].y_type
)
5455 type
= (char_u
*)"LINE";
5458 type
= (char_u
*)"CHAR";
5462 type
= (char_u
*)"BLOCK";
5466 sprintf((char *)IObuff
, _("E574: Unknown register type %d"),
5469 type
= (char_u
*)"LINE";
5472 if (y_previous
== &y_regs
[i
])
5474 c
= get_register_name(i
);
5475 fprintf(fp
, "\"%c\t%s\t%d\n", c
, type
,
5477 (int)y_regs
[i
].y_width
5483 /* If max_num_lines < 0, then we save ALL the lines in the register */
5484 if (max_num_lines
> 0 && num_lines
> max_num_lines
)
5485 num_lines
= max_num_lines
;
5486 for (j
= 0; j
< num_lines
; j
++)
5489 viminfo_writestring(fp
, y_regs
[i
].y_array
[j
]);
5493 #endif /* FEAT_VIMINFO */
5495 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
5497 * SELECTION / PRIMARY ('*')
5499 * Text selection stuff that uses the GUI selection register '*'. When using a
5500 * GUI this may be text from another window, otherwise it is the last text we
5501 * had highlighted with VIsual mode. With mouse support, clicking the middle
5502 * button performs the paste, otherwise you will need to do <"*p>. "
5503 * If not under X, it is synonymous with the clipboard register '+'.
5507 * Text selection stuff that uses the GUI clipboard register '+'.
5508 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5509 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5510 * otherwise you will need to do <"+p>. "
5511 * If not under X, it is synonymous with the selection register '*'.
5515 * Routine to export any final X selection we had to the environment
5516 * so that the text is still available after vim has exited. X selections
5517 * only exist while the owning application exists, so we write to the
5518 * permanent (while X runs) store CUT_BUFFER0.
5519 * Dump the CLIPBOARD selection if we own it (it's logically the more
5520 * 'permanent' of the two), otherwise the PRIMARY one.
5521 * For now, use a hard-coded sanity limit of 1Mb of data.
5523 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5525 x11_export_final_selection()
5530 int motion_type
= -1;
5537 # ifdef FEAT_XCLIPBOARD
5543 /* Get selection to export */
5544 if (clip_plus
.owned
)
5545 motion_type
= clip_convert_selection(&str
, &len
, &clip_plus
);
5546 else if (clip_star
.owned
)
5547 motion_type
= clip_convert_selection(&str
, &len
, &clip_star
);
5550 if (dpy
!= NULL
&& str
!= NULL
&& motion_type
>= 0
5551 && len
< 1024*1024 && len
> 0)
5553 XStoreBuffer(dpy
, (char *)str
, (int)len
, 0);
5562 clip_free_selection(cbd
)
5565 struct yankreg
*y_ptr
= y_current
;
5567 if (cbd
== &clip_plus
)
5568 y_current
= &y_regs
[PLUS_REGISTER
];
5570 y_current
= &y_regs
[STAR_REGISTER
];
5572 y_current
->y_size
= 0;
5577 * Get the selected text and put it in the gui selection register '*' or '+'.
5580 clip_get_selection(cbd
)
5583 struct yankreg
*old_y_previous
, *old_y_current
;
5587 int old_visual_mode
;
5589 colnr_T old_curswant
;
5590 int old_set_curswant
;
5591 pos_T old_op_start
, old_op_end
;
5597 if ((cbd
== &clip_plus
&& y_regs
[PLUS_REGISTER
].y_array
!= NULL
)
5598 || (cbd
== &clip_star
&& y_regs
[STAR_REGISTER
].y_array
!= NULL
))
5601 /* Get the text between clip_star.start & clip_star.end */
5602 old_y_previous
= y_previous
;
5603 old_y_current
= y_current
;
5604 old_cursor
= curwin
->w_cursor
;
5605 old_curswant
= curwin
->w_curswant
;
5606 old_set_curswant
= curwin
->w_set_curswant
;
5607 old_op_start
= curbuf
->b_op_start
;
5608 old_op_end
= curbuf
->b_op_end
;
5610 old_visual
= VIsual
;
5611 old_visual_mode
= VIsual_mode
;
5614 oa
.regname
= (cbd
== &clip_plus
? '+' : '*');
5615 oa
.op_type
= OP_YANK
;
5616 vim_memset(&ca
, 0, sizeof(ca
));
5620 ca
.retval
= CA_NO_ADJ_OP_END
;
5621 do_pending_operator(&ca
, 0, TRUE
);
5622 y_previous
= old_y_previous
;
5623 y_current
= old_y_current
;
5624 curwin
->w_cursor
= old_cursor
;
5625 changed_cline_bef_curs(); /* need to update w_virtcol et al */
5626 curwin
->w_curswant
= old_curswant
;
5627 curwin
->w_set_curswant
= old_set_curswant
;
5628 curbuf
->b_op_start
= old_op_start
;
5629 curbuf
->b_op_end
= old_op_end
;
5631 VIsual
= old_visual
;
5632 VIsual_mode
= old_visual_mode
;
5637 clip_free_selection(cbd
);
5639 /* Try to get selected text from another window */
5640 clip_gen_request_selection(cbd
);
5644 /* Convert from the GUI selection string into the '*'/'+' register */
5646 clip_yank_selection(type
, str
, len
, cbd
)
5652 struct yankreg
*y_ptr
;
5654 if (cbd
== &clip_plus
)
5655 y_ptr
= &y_regs
[PLUS_REGISTER
];
5657 y_ptr
= &y_regs
[STAR_REGISTER
];
5659 clip_free_selection(cbd
);
5661 str_to_reg(y_ptr
, type
, str
, len
, 0L);
5665 * Convert the '*'/'+' register into a GUI selection string returned in *str
5667 * Returns the motion type, or -1 for failure.
5670 clip_convert_selection(str
, len
, cbd
)
5679 struct yankreg
*y_ptr
;
5681 if (cbd
== &clip_plus
)
5682 y_ptr
= &y_regs
[PLUS_REGISTER
];
5684 y_ptr
= &y_regs
[STAR_REGISTER
];
5694 if (y_ptr
->y_array
== NULL
)
5697 for (i
= 0; i
< y_ptr
->y_size
; i
++)
5698 *len
+= (long_u
)STRLEN(y_ptr
->y_array
[i
]) + eolsize
;
5701 * Don't want newline character at end of last line if we're in MCHAR mode.
5703 if (y_ptr
->y_type
== MCHAR
&& *len
>= eolsize
)
5706 p
= *str
= lalloc(*len
+ 1, TRUE
); /* add one to avoid zero */
5710 for (i
= 0, j
= 0; i
< (int)*len
; i
++, j
++)
5712 if (y_ptr
->y_array
[lnum
][j
] == '\n')
5714 else if (y_ptr
->y_array
[lnum
][j
] == NUL
)
5728 p
[i
] = y_ptr
->y_array
[lnum
][j
];
5730 return y_ptr
->y_type
;
5734 # if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
5736 * If we have written to a clipboard register, send the text to the clipboard.
5741 if (y_current
== &(y_regs
[STAR_REGISTER
]) && clip_star
.available
)
5743 clip_own_selection(&clip_star
);
5744 clip_gen_set_selection(&clip_star
);
5746 else if (y_current
== &(y_regs
[PLUS_REGISTER
]) && clip_plus
.available
)
5748 clip_own_selection(&clip_plus
);
5749 clip_gen_set_selection(&clip_plus
);
5754 #endif /* FEAT_CLIPBOARD || PROTO */
5757 #if defined(FEAT_DND) || defined(PROTO)
5759 * Replace the contents of the '~' register with str.
5762 dnd_yank_drag_data(str
, len
)
5766 struct yankreg
*curr
;
5769 y_current
= &y_regs
[TILDE_REGISTER
];
5771 str_to_reg(y_current
, MCHAR
, str
, len
, 0L);
5777 #if defined(FEAT_EVAL) || defined(PROTO)
5779 * Return the type of a register.
5780 * Used for getregtype()
5781 * Returns MAUTO for error.
5784 get_reg_type(regname
, reglen
)
5790 case '%': /* file name */
5791 case '#': /* alternate file name */
5792 case '=': /* expression */
5793 case ':': /* last command line */
5794 case '/': /* last search-pattern */
5795 case '.': /* last inserted text */
5796 #ifdef FEAT_SEARCHPATH
5797 case Ctrl_F
: /* Filename under cursor */
5798 case Ctrl_P
: /* Path under cursor, expand via "path" */
5800 case Ctrl_W
: /* word under cursor */
5801 case Ctrl_A
: /* WORD (mnemonic All) under cursor */
5802 case '_': /* black hole: always empty */
5806 #ifdef FEAT_CLIPBOARD
5807 regname
= may_get_selection(regname
);
5810 /* Should we check for a valid name? */
5811 get_yank_register(regname
, FALSE
);
5813 if (y_current
->y_array
!= NULL
)
5816 if (reglen
!= NULL
&& y_current
->y_type
== MBLOCK
)
5817 *reglen
= y_current
->y_width
;
5819 return y_current
->y_type
;
5825 * Return the contents of a register as a single allocated string.
5826 * Used for "@r" in expressions and for getreg().
5827 * Returns NULL for error.
5830 get_reg_contents(regname
, allowexpr
, expr_src
)
5832 int allowexpr
; /* allow "=" register */
5833 int expr_src
; /* get expression for "=" register */
5840 /* Don't allow using an expression register inside an expression */
5846 return get_expr_line_src();
5847 return get_expr_line();
5852 if (regname
== '@') /* "@@" is used for unnamed register */
5855 /* check for valid regname */
5856 if (regname
!= NUL
&& !valid_yank_reg(regname
, FALSE
))
5859 #ifdef FEAT_CLIPBOARD
5860 regname
= may_get_selection(regname
);
5863 if (get_spec_reg(regname
, &retval
, &allocated
, FALSE
))
5868 retval
= vim_strsave(retval
);
5872 get_yank_register(regname
, FALSE
);
5873 if (y_current
->y_array
== NULL
)
5877 * Compute length of resulting string.
5880 for (i
= 0; i
< y_current
->y_size
; ++i
)
5882 len
+= (long)STRLEN(y_current
->y_array
[i
]);
5884 * Insert a newline between lines and after last line if
5887 if (y_current
->y_type
== MLINE
|| i
< y_current
->y_size
- 1)
5891 retval
= lalloc(len
+ 1, TRUE
);
5894 * Copy the lines of the yank register into the string.
5899 for (i
= 0; i
< y_current
->y_size
; ++i
)
5901 STRCPY(retval
+ len
, y_current
->y_array
[i
]);
5902 len
+= (long)STRLEN(retval
+ len
);
5905 * Insert a NL between lines and after the last line if y_type is
5908 if (y_current
->y_type
== MLINE
|| i
< y_current
->y_size
- 1)
5909 retval
[len
++] = '\n';
5918 * Store string "str" in register "name".
5919 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
5920 * If "must_append" is TRUE, always append to the register. Otherwise append
5921 * if "name" is an uppercase letter.
5922 * Note: "maxlen" and "must_append" don't work for the "/" register.
5923 * Careful: 'str' is modified, you may have to use a copy!
5924 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
5927 write_reg_contents(name
, str
, maxlen
, must_append
)
5933 write_reg_contents_ex(name
, str
, maxlen
, must_append
, MAUTO
, 0L);
5937 write_reg_contents_ex(name
, str
, maxlen
, must_append
, yank_type
, block_len
)
5945 struct yankreg
*old_y_previous
, *old_y_current
;
5951 len
= (long)STRLEN(str
);
5953 /* Special case: '/' search pattern */
5956 set_last_search_pat(str
, RE_SEARCH
, TRUE
, TRUE
);
5965 p
= vim_strnsave(str
, (int)len
);
5970 s
= concat_str(get_expr_line_src(), p
);
5980 if (!valid_yank_reg(name
, TRUE
)) /* check for valid reg name */
5986 if (name
== '_') /* black hole: nothing to do */
5989 /* Don't want to change the current (unnamed) register */
5990 old_y_previous
= y_previous
;
5991 old_y_current
= y_current
;
5993 get_yank_register(name
, TRUE
);
5994 if (!y_append
&& !must_append
)
5997 /* Just in case - make sure we don't use MBLOCK */
5998 if (yank_type
== MBLOCK
)
6001 if (yank_type
== MAUTO
)
6002 yank_type
= ((len
> 0 && (str
[len
- 1] == '\n' || str
[len
- 1] == '\r'))
6004 str_to_reg(y_current
, yank_type
, str
, len
, block_len
);
6006 # ifdef FEAT_CLIPBOARD
6007 /* Send text of clipboard register to the clipboard. */
6008 may_set_selection();
6011 /* ':let @" = "val"' should change the meaning of the "" register */
6013 y_previous
= old_y_previous
;
6014 y_current
= old_y_current
;
6016 #endif /* FEAT_EVAL */
6018 #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6020 * Put a string into a register. When the register is not empty, the string
6024 str_to_reg(y_ptr
, type
, str
, len
, blocklen
)
6025 struct yankreg
*y_ptr
; /* pointer to yank register */
6026 int type
; /* MCHAR, MLINE or MBLOCK */
6027 char_u
*str
; /* string to put in register */
6028 long len
; /* length of string */
6029 long blocklen
; /* width of Visual block */
6035 int newlines
; /* number of lines added */
6036 int extraline
= 0; /* extra line at the end */
6037 int append
= FALSE
; /* append to last line in register */
6044 if (y_ptr
->y_array
== NULL
) /* NULL means emtpy register */
6048 * Count the number of lines within the string
6051 for (i
= 0; i
< len
; i
++)
6054 if (type
== MCHAR
|| len
== 0 || str
[len
- 1] != '\n')
6057 ++newlines
; /* count extra newline at the end */
6059 if (y_ptr
->y_size
> 0 && y_ptr
->y_type
== MCHAR
)
6062 --newlines
; /* uncount newline when appending first line */
6066 * Allocate an array to hold the pointers to the new register lines.
6067 * If the register was not empty, move the existing lines to the new array.
6069 pp
= (char_u
**)lalloc_clear((y_ptr
->y_size
+ newlines
)
6070 * sizeof(char_u
*), TRUE
);
6071 if (pp
== NULL
) /* out of memory */
6073 for (lnum
= 0; lnum
< y_ptr
->y_size
; ++lnum
)
6074 pp
[lnum
] = y_ptr
->y_array
[lnum
];
6075 vim_free(y_ptr
->y_array
);
6076 y_ptr
->y_array
= pp
;
6082 * Find the end of each line and save it into the array.
6084 for (start
= 0; start
< len
+ extraline
; start
+= i
+ 1)
6086 for (i
= start
; i
< len
; ++i
) /* find the end of the line */
6089 i
-= start
; /* i is now length of line */
6097 extra
= (int)STRLEN(y_ptr
->y_array
[lnum
]);
6101 s
= alloc((unsigned)(i
+ extra
+ 1));
6105 mch_memmove(s
, y_ptr
->y_array
[lnum
], (size_t)extra
);
6107 vim_free(y_ptr
->y_array
[lnum
]);
6109 mch_memmove(s
+ extra
, str
+ start
, (size_t)i
);
6112 y_ptr
->y_array
[lnum
++] = s
;
6113 while (--extra
>= 0)
6116 *s
= '\n'; /* replace NUL with newline */
6119 append
= FALSE
; /* only first line is appended */
6121 y_ptr
->y_type
= type
;
6122 y_ptr
->y_size
= lnum
;
6125 y_ptr
->y_width
= (blocklen
< 0 ? maxlen
- 1 : blocklen
);
6130 #endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
6136 vim_memset(oap
, 0, sizeof(oparg_T
));
6139 static long line_count_info
__ARGS((char_u
*line
, long *wc
, long *cc
, long limit
, int eol_size
));
6142 * Count the number of bytes, characters and "words" in a line.
6144 * "Words" are counted by looking for boundaries between non-space and
6145 * space characters. (it seems to produce results that match 'wc'.)
6147 * Return value is byte count; word count for the line is added to "*wc".
6148 * Char count is added to "*cc".
6150 * The function will only examine the first "limit" characters in the
6151 * line, stopping if it encounters an end-of-line (NUL byte). In that
6152 * case, eol_size will be added to the character count to account for
6153 * the size of the EOL character.
6156 line_count_info(line
, wc
, cc
, limit
, eol_size
)
6168 for (i
= 0; line
[i
] && i
< limit
; )
6172 if (vim_isspace(line
[i
]))
6178 else if (!vim_isspace(line
[i
]))
6182 i
+= (*mb_ptr2len
)(line
+ i
);
6192 /* Add eol_size if the end of line was reached before hitting limit. */
6193 if (line
[i
] == NUL
&& i
< limit
)
6203 * Give some info about the position of the cursor (for "g CTRL-G").
6204 * In Visual mode, give some info about the selected region. (In this case,
6205 * the *_count_cursor variables store running totals for the selection.)
6214 long byte_count
= 0;
6215 long byte_count_cursor
= 0;
6216 long char_count
= 0;
6217 long char_count_cursor
= 0;
6218 long word_count
= 0;
6219 long word_count_cursor
= 0;
6221 long last_check
= 100000L;
6223 long line_count_selected
= 0;
6224 pos_T min_pos
, max_pos
;
6226 struct block_def bd
;
6230 * Compute the length of the file in characters.
6232 if (curbuf
->b_ml
.ml_flags
& ML_EMPTY
)
6234 MSG(_(no_lines_msg
));
6238 if (get_fileformat(curbuf
) == EOL_DOS
)
6246 if (lt(VIsual
, curwin
->w_cursor
))
6249 max_pos
= curwin
->w_cursor
;
6253 min_pos
= curwin
->w_cursor
;
6256 if (*p_sel
== 'e' && max_pos
.col
> 0)
6259 if (VIsual_mode
== Ctrl_V
)
6261 oparg
.is_VIsual
= 1;
6262 oparg
.block_mode
= TRUE
;
6263 oparg
.op_type
= OP_NOP
;
6264 getvcols(curwin
, &min_pos
, &max_pos
,
6265 &oparg
.start_vcol
, &oparg
.end_vcol
);
6266 if (curwin
->w_curswant
== MAXCOL
)
6267 oparg
.end_vcol
= MAXCOL
;
6268 /* Swap the start, end vcol if needed */
6269 if (oparg
.end_vcol
< oparg
.start_vcol
)
6271 oparg
.end_vcol
+= oparg
.start_vcol
;
6272 oparg
.start_vcol
= oparg
.end_vcol
- oparg
.start_vcol
;
6273 oparg
.end_vcol
-= oparg
.start_vcol
;
6276 line_count_selected
= max_pos
.lnum
- min_pos
.lnum
+ 1;
6280 for (lnum
= 1; lnum
<= curbuf
->b_ml
.ml_line_count
; ++lnum
)
6282 /* Check for a CTRL-C every 100000 characters. */
6283 if (byte_count
> last_check
)
6288 last_check
= byte_count
+ 100000L;
6292 /* Do extra processing for VIsual mode. */
6294 && lnum
>= min_pos
.lnum
&& lnum
<= max_pos
.lnum
)
6299 switch (VIsual_mode
)
6302 # ifdef FEAT_VIRTUALEDIT
6303 virtual_op
= virtual_active();
6305 block_prep(&oparg
, &bd
, lnum
, 0);
6306 # ifdef FEAT_VIRTUALEDIT
6310 len
= (long)bd
.textlen
;
6318 colnr_T start_col
= (lnum
== min_pos
.lnum
)
6320 colnr_T end_col
= (lnum
== max_pos
.lnum
)
6321 ? max_pos
.col
- start_col
+ 1 : MAXCOL
;
6323 s
= ml_get(lnum
) + start_col
;
6330 byte_count_cursor
+= line_count_info(s
, &word_count_cursor
,
6331 &char_count_cursor
, len
, eol_size
);
6332 if (lnum
== curbuf
->b_ml
.ml_line_count
6335 && (long)STRLEN(s
) < len
)
6336 byte_count_cursor
-= eol_size
;
6342 /* In non-visual mode, check for the line the cursor is on */
6343 if (lnum
== curwin
->w_cursor
.lnum
)
6345 word_count_cursor
+= word_count
;
6346 char_count_cursor
+= char_count
;
6347 byte_count_cursor
= byte_count
+
6348 line_count_info(ml_get(lnum
),
6349 &word_count_cursor
, &char_count_cursor
,
6350 (long)(curwin
->w_cursor
.col
+ 1), eol_size
);
6353 /* Add to the running totals */
6354 byte_count
+= line_count_info(ml_get(lnum
), &word_count
,
6355 &char_count
, (long)MAXCOL
, eol_size
);
6358 /* Correction for when last line doesn't have an EOL. */
6359 if (!curbuf
->b_p_eol
&& curbuf
->b_p_bin
)
6360 byte_count
-= eol_size
;
6365 if (VIsual_mode
== Ctrl_V
&& curwin
->w_curswant
< MAXCOL
)
6367 getvcols(curwin
, &min_pos
, &max_pos
, &min_pos
.col
,
6369 sprintf((char *)buf1
, _("%ld Cols; "),
6370 (long)(oparg
.end_vcol
- oparg
.start_vcol
+ 1));
6375 if (char_count_cursor
== byte_count_cursor
6376 && char_count
== byte_count
)
6377 sprintf((char *)IObuff
, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
6378 buf1
, line_count_selected
,
6379 (long)curbuf
->b_ml
.ml_line_count
,
6380 word_count_cursor
, word_count
,
6381 byte_count_cursor
, byte_count
);
6383 sprintf((char *)IObuff
, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"),
6384 buf1
, line_count_selected
,
6385 (long)curbuf
->b_ml
.ml_line_count
,
6386 word_count_cursor
, word_count
,
6387 char_count_cursor
, char_count
,
6388 byte_count_cursor
, byte_count
);
6393 p
= ml_get_curline();
6395 col_print(buf1
, (int)curwin
->w_cursor
.col
+ 1,
6396 (int)curwin
->w_virtcol
+ 1);
6397 col_print(buf2
, (int)STRLEN(p
), linetabsize(p
));
6399 if (char_count_cursor
== byte_count_cursor
6400 && char_count
== byte_count
)
6401 sprintf((char *)IObuff
, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"),
6402 (char *)buf1
, (char *)buf2
,
6403 (long)curwin
->w_cursor
.lnum
,
6404 (long)curbuf
->b_ml
.ml_line_count
,
6405 word_count_cursor
, word_count
,
6406 byte_count_cursor
, byte_count
);
6408 sprintf((char *)IObuff
, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"),
6409 (char *)buf1
, (char *)buf2
,
6410 (long)curwin
->w_cursor
.lnum
,
6411 (long)curbuf
->b_ml
.ml_line_count
,
6412 word_count_cursor
, word_count
,
6413 char_count_cursor
, char_count
,
6414 byte_count_cursor
, byte_count
);
6418 byte_count
= bomb_size();
6420 sprintf((char *)IObuff
+ STRLEN(IObuff
), _("(+%ld for BOM)"),
6423 /* Don't shorten this message, the user asked for it. */
6425 p_shm
= (char_u
*)"";