blob: e5db31347ca4495482d7a354f28838fa0bc613c8 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ops.c: implementation of various operators: op_shift, op_delete, op_tilde,
12 * op_change, op_yank, do_put, do_join
13 */
14
15#include "vim.h"
16
17/*
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
25 */
26/*
27 * Symbolic names for some registers.
28 */
29#define DELETION_REGISTER 36
30#ifdef FEAT_CLIPBOARD
31# define STAR_REGISTER 37
32# ifdef FEAT_X11
33# define PLUS_REGISTER 38
34# else
35# define PLUS_REGISTER STAR_REGISTER /* there is only one */
36# endif
37#endif
38#ifdef FEAT_DND
39# define TILDE_REGISTER (PLUS_REGISTER + 1)
40#endif
41
42#ifdef FEAT_CLIPBOARD
43# ifdef FEAT_DND
44# define NUM_REGISTERS (TILDE_REGISTER + 1)
45# else
46# define NUM_REGISTERS (PLUS_REGISTER + 1)
47# endif
48#else
49# define NUM_REGISTERS 37
50#endif
51
52/*
53 * Each yank register is an array of pointers to lines.
54 */
55static struct yankreg
56{
57 char_u **y_array; /* pointer to array of line pointers */
58 linenr_T y_size; /* number of lines in y_array */
59 char_u y_type; /* MLINE, MCHAR or MBLOCK */
60#ifdef FEAT_VISUAL
61 colnr_T y_width; /* only set if y_type == MBLOCK */
62#endif
63} y_regs[NUM_REGISTERS];
64
65static struct yankreg *y_current; /* ptr to current yankreg */
66static int y_append; /* TRUE when appending */
67static struct yankreg *y_previous = NULL; /* ptr to last written yankreg */
68
69/*
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
72 */
73struct block_def
74{
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +000075 int startspaces; /* 'extra' cols before first char */
76 int endspaces; /* 'extra' cols after last char */
Bram Moolenaar071d4272004-06-13 20:20:40 +000077 int textlen; /* chars in block */
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +000078 char_u *textstart; /* pointer to 1st char (partially) in block */
79 colnr_T textcol; /* index of chars (partially) in block */
Bram Moolenaar071d4272004-06-13 20:20:40 +000080 colnr_T start_vcol; /* start col of 1st char wholly inside block */
81 colnr_T end_vcol; /* start col of 1st char wholly after block */
82#ifdef FEAT_VISUALEXTRA
83 int is_short; /* TRUE if line is too short to fit in block */
84 int is_MAX; /* TRUE if curswant==MAXCOL when starting */
85 int is_oneChar; /* TRUE if block within one character */
86 int pre_whitesp; /* screen cols of ws before block */
87 int pre_whitesp_c; /* chars of ws before block */
88 colnr_T end_char_vcols; /* number of vcols of post-block char */
89#endif
90 colnr_T start_char_vcols; /* number of vcols of pre-block char */
91};
92
93#ifdef FEAT_VISUALEXTRA
94static void shift_block __ARGS((oparg_T *oap, int amount));
95static void block_insert __ARGS((oparg_T *oap, char_u *s, int b_insert, struct block_def*bdp));
96#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000097static int stuff_yank __ARGS((int, char_u *));
Bram Moolenaard333d1e2006-11-07 17:43:47 +000098static void put_reedit_in_typebuf __ARGS((int silent));
Bram Moolenaar7f6ca072007-02-27 16:21:38 +000099static int put_in_typebuf __ARGS((char_u *s, int esc, int colon,
100 int silent));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101static void stuffescaped __ARGS((char_u *arg, int literally));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102#ifdef FEAT_MBYTE
103static void mb_adjust_opend __ARGS((oparg_T *oap));
104#endif
105static void free_yank __ARGS((long));
106static void free_yank_all __ARGS((void));
107static int yank_copy_line __ARGS((struct block_def *bd, long y_idx));
108#ifdef FEAT_CLIPBOARD
109static void copy_yank_reg __ARGS((struct yankreg *reg));
110# if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
111static void may_set_selection __ARGS((void));
112# endif
113#endif
114static void dis_msg __ARGS((char_u *p, int skip_esc));
115#ifdef FEAT_VISUAL
116static void block_prep __ARGS((oparg_T *oap, struct block_def *, linenr_T, int));
117#endif
118#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
119static void str_to_reg __ARGS((struct yankreg *y_ptr, int type, char_u *str, long len, long blocklen));
120#endif
121static int ends_in_white __ARGS((linenr_T lnum));
122#ifdef FEAT_COMMENTS
123static int same_leader __ARGS((linenr_T lnum, int, char_u *, int, char_u *));
124static int fmt_check_par __ARGS((linenr_T, int *, char_u **, int do_comments));
125#else
126static int fmt_check_par __ARGS((linenr_T));
127#endif
128
129/*
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.
133 */
134static char opchars[][3] =
135{
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 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000163 {'g', '@', FALSE}, /* OP_FUNCTION */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164};
165
166/*
167 * Translate a command name into an operator type.
168 * Must only be called with a valid operator name!
169 */
170 int
171get_op_type(char1, char2)
172 int char1;
173 int char2;
174{
175 int i;
176
177 if (char1 == 'r') /* ignore second character */
178 return OP_REPLACE;
179 if (char1 == '~') /* when tilde is an operator */
180 return OP_TILDE;
181 for (i = 0; ; ++i)
182 if (opchars[i][0] == char1 && opchars[i][1] == char2)
183 break;
184 return i;
185}
186
187#if defined(FEAT_VISUAL) || defined(PROTO)
188/*
189 * Return TRUE if operator "op" always works on whole lines.
190 */
191 int
192op_on_lines(op)
193 int op;
194{
195 return opchars[op][2];
196}
197#endif
198
199/*
200 * Get first operator command character.
201 * Returns 'g' or 'z' if there is another command character.
202 */
203 int
204get_op_char(optype)
205 int optype;
206{
207 return opchars[optype][0];
208}
209
210/*
211 * Get second operator command character.
212 */
213 int
214get_extra_op_char(optype)
215 int optype;
216{
217 return opchars[optype][1];
218}
219
220/*
221 * op_shift - handle a shift operation
222 */
223 void
224op_shift(oap, curs_top, amount)
225 oparg_T *oap;
226 int curs_top;
227 int amount;
228{
229 long i;
230 int first_char;
231 char_u *s;
232#ifdef FEAT_VISUAL
233 int block_col = 0;
234#endif
235
236 if (u_save((linenr_T)(oap->start.lnum - 1),
237 (linenr_T)(oap->end.lnum + 1)) == FAIL)
238 return;
239
240#ifdef FEAT_VISUAL
241 if (oap->block_mode)
242 block_col = curwin->w_cursor.col;
243#endif
244
245 for (i = oap->line_count; --i >= 0; )
246 {
247 first_char = *ml_get_curline();
248 if (first_char == NUL) /* empty line */
249 curwin->w_cursor.col = 0;
250#ifdef FEAT_VISUALEXTRA
251 else if (oap->block_mode)
252 shift_block(oap, amount);
253#endif
254 else
255 /* Move the line right if it doesn't start with '#', 'smartindent'
256 * isn't set or 'cindent' isn't set or '#' isn't in 'cino'. */
257#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
258 if (first_char != '#' || !preprocs_left())
259#endif
260 {
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000261 shift_line(oap->op_type == OP_LSHIFT, p_sr, amount, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262 }
263 ++curwin->w_cursor.lnum;
264 }
265
266 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
267
268#ifdef FEAT_VISUAL
269 if (oap->block_mode)
270 {
271 curwin->w_cursor.lnum = oap->start.lnum;
272 curwin->w_cursor.col = block_col;
273 }
274 else
275#endif
276 if (curs_top) /* put cursor on first line, for ">>" */
277 {
278 curwin->w_cursor.lnum = oap->start.lnum;
279 beginline(BL_SOL | BL_FIX); /* shift_line() may have set cursor.col */
280 }
281 else
282 --curwin->w_cursor.lnum; /* put cursor on last line, for ":>" */
283
284 if (oap->line_count > p_report)
285 {
286 if (oap->op_type == OP_RSHIFT)
287 s = (char_u *)">";
288 else
289 s = (char_u *)"<";
290 if (oap->line_count == 1)
291 {
292 if (amount == 1)
293 sprintf((char *)IObuff, _("1 line %sed 1 time"), s);
294 else
295 sprintf((char *)IObuff, _("1 line %sed %d times"), s, amount);
296 }
297 else
298 {
299 if (amount == 1)
300 sprintf((char *)IObuff, _("%ld lines %sed 1 time"),
301 oap->line_count, s);
302 else
303 sprintf((char *)IObuff, _("%ld lines %sed %d times"),
304 oap->line_count, s, amount);
305 }
306 msg(IObuff);
307 }
308
309 /*
310 * Set "'[" and "']" marks.
311 */
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;
317}
318
319/*
320 * shift the current line one shiftwidth left (if left != 0) or right
321 * leaves cursor on first blank in the line
322 */
323 void
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000324shift_line(left, round, amount, call_changed_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325 int left;
326 int round;
327 int amount;
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000328 int call_changed_bytes; /* call changed_bytes() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329{
330 int count;
331 int i, j;
332 int p_sw = (int)curbuf->b_p_sw;
333
334 count = get_indent(); /* get current indent */
335
336 if (round) /* round off indent */
337 {
338 i = count / p_sw; /* number of p_sw rounded down */
339 j = count % p_sw; /* extra spaces */
340 if (j && left) /* first remove extra spaces */
341 --amount;
342 if (left)
343 {
344 i -= amount;
345 if (i < 0)
346 i = 0;
347 }
348 else
349 i += amount;
350 count = i * p_sw;
351 }
352 else /* original vi indent */
353 {
354 if (left)
355 {
356 count -= p_sw * amount;
357 if (count < 0)
358 count = 0;
359 }
360 else
361 count += p_sw * amount;
362 }
363
364 /* Set new indent */
365#ifdef FEAT_VREPLACE
366 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000367 change_indent(INDENT_SET, count, FALSE, NUL, call_changed_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 else
369#endif
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000370 (void)set_indent(count, call_changed_bytes ? SIN_CHANGED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371}
372
373#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
374/*
375 * Shift one line of the current block one shiftwidth right or left.
376 * Leaves cursor on first character in block.
377 */
378 static void
379shift_block(oap, amount)
380 oparg_T *oap;
381 int amount;
382{
383 int left = (oap->op_type == OP_LSHIFT);
384 int oldstate = State;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000385 int total;
386 char_u *newp, *oldp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 int oldcol = curwin->w_cursor.col;
388 int p_sw = (int)curbuf->b_p_sw;
389 int p_ts = (int)curbuf->b_p_ts;
390 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 int incr;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000392 colnr_T ws_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393 int i = 0, j = 0;
394 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395#ifdef FEAT_RIGHTLEFT
396 int old_p_ri = p_ri;
397
398 p_ri = 0; /* don't want revins in ident */
399#endif
400
401 State = INSERT; /* don't want REPLACE for State */
402 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
403 if (bd.is_short)
404 return;
405
406 /* total is number of screen columns to be inserted/removed */
407 total = amount * p_sw;
408 oldp = ml_get_curline();
409
410 if (!left)
411 {
412 /*
413 * 1. Get start vcol
414 * 2. Total ws vcols
415 * 3. Divvy into TABs & spp
416 * 4. Construct new string
417 */
418 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
419 ws_vcol = bd.start_vcol - bd.pre_whitesp;
420 if (bd.startspaces)
421 {
422#ifdef FEAT_MBYTE
423 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000424 bd.textstart += (*mb_ptr2len)(bd.textstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425#endif
426 ++bd.textstart;
427 }
428 for ( ; vim_iswhite(*bd.textstart); )
429 {
430 incr = lbr_chartabsize_adv(&bd.textstart, (colnr_T)(bd.start_vcol));
431 total += incr;
432 bd.start_vcol += incr;
433 }
434 /* OK, now total=all the VWS reqd, and textstart points at the 1st
435 * non-ws char in the block. */
436 if (!curbuf->b_p_et)
437 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
438 if (i)
439 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
440 else
441 j = total;
442 /* if we're splitting a TAB, allow for it */
443 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
444 len = (int)STRLEN(bd.textstart) + 1;
445 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
446 if (newp == NULL)
447 return;
448 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
449 mch_memmove(newp, oldp, (size_t)bd.textcol);
450 copy_chars(newp + bd.textcol, (size_t)i, TAB);
451 copy_spaces(newp + bd.textcol + i, (size_t)j);
452 /* the end */
453 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
454 }
455 else /* left */
456 {
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000457 colnr_T destination_col; /* column to which text in block will
458 be shifted */
459 char_u *verbatim_copy_end; /* end of the part of the line which is
460 copied verbatim */
461 colnr_T verbatim_copy_width;/* the (displayed) width of this part
462 of line */
463 unsigned fill; /* nr of spaces that replace a TAB */
464 unsigned new_line_len; /* the length of the line after the
465 block shift */
466 size_t block_space_width;
467 size_t shift_amount;
468 char_u *non_white = bd.textstart;
469 colnr_T non_white_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000471 /*
472 * Firstly, let's find the first non-whitespace character that is
473 * displayed after the block's start column and the character's column
474 * number. Also, let's calculate the width of all the whitespace
475 * characters that are displayed in the block and precede the searched
476 * non-whitespace character.
477 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000479 /* If "bd.startspaces" is set, "bd.textstart" points to the character,
480 * the part of which is displayed at the block's beginning. Let's start
481 * searching from the next character. */
482 if (bd.startspaces)
483 mb_ptr_adv(non_white);
484
485 /* The character's column is in "bd.start_vcol". */
486 non_white_col = bd.start_vcol;
487
488 while (vim_iswhite(*non_white))
489 {
490 incr = lbr_chartabsize_adv(&non_white, non_white_col);
491 non_white_col += incr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492 }
493
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000494 block_space_width = non_white_col - oap->start_vcol;
495 /* We will shift by "total" or "block_space_width", whichever is less.
496 */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000497 shift_amount = (block_space_width < (size_t)total
498 ? block_space_width : (size_t)total);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000499
500 /* The column to which we will shift the text. */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000501 destination_col = (colnr_T)(non_white_col - shift_amount);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000502
503 /* Now let's find out how much of the beginning of the line we can
504 * reuse without modification. */
505 verbatim_copy_end = bd.textstart;
506 verbatim_copy_width = bd.start_vcol;
507
508 /* If "bd.startspaces" is set, "bd.textstart" points to the character
509 * preceding the block. We have to subtract its width to obtain its
510 * column number. */
511 if (bd.startspaces)
512 verbatim_copy_width -= bd.start_char_vcols;
513 while (verbatim_copy_width < destination_col)
514 {
515 incr = lbr_chartabsize(verbatim_copy_end, verbatim_copy_width);
516 if (verbatim_copy_width + incr > destination_col)
517 break;
518 verbatim_copy_width += incr;
519 mb_ptr_adv(verbatim_copy_end);
520 }
521
522 /* If "destination_col" is different from the width of the initial
523 * part of the line that will be copied, it means we encountered a tab
524 * character, which we will have to partly replace with spaces. */
525 fill = destination_col - verbatim_copy_width;
526
527 /* The replacement line will consist of:
528 * - the beginning of the original line up to "verbatim_copy_end",
529 * - "fill" number of spaces,
530 * - the rest of the line, pointed to by non_white. */
531 new_line_len = (unsigned)(verbatim_copy_end - oldp)
532 + fill
533 + (unsigned)STRLEN(non_white) + 1;
534
535 newp = alloc_check(new_line_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 if (newp == NULL)
537 return;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000538 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp));
539 copy_spaces(newp + (verbatim_copy_end - oldp), (size_t)fill);
540 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 }
542 /* replace the line */
543 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
544 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
545 State = oldstate;
546 curwin->w_cursor.col = oldcol;
547#ifdef FEAT_RIGHTLEFT
548 p_ri = old_p_ri;
549#endif
550}
551#endif
552
553#ifdef FEAT_VISUALEXTRA
554/*
555 * Insert string "s" (b_insert ? before : after) block :AKelly
556 * Caller must prepare for undo.
557 */
558 static void
559block_insert(oap, s, b_insert, bdp)
560 oparg_T *oap;
561 char_u *s;
562 int b_insert;
563 struct block_def *bdp;
564{
565 int p_ts;
566 int count = 0; /* extra spaces to replace a cut TAB */
567 int spaces = 0; /* non-zero if cutting a TAB */
568 colnr_T offset; /* pointer along new line */
569 unsigned s_len; /* STRLEN(s) */
570 char_u *newp, *oldp; /* new, old lines */
571 linenr_T lnum; /* loop var */
572 int oldstate = State;
573
574 State = INSERT; /* don't want REPLACE for State */
575 s_len = (unsigned)STRLEN(s);
576
577 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
578 {
579 block_prep(oap, bdp, lnum, TRUE);
580 if (bdp->is_short && b_insert)
581 continue; /* OP_INSERT, line ends before block start */
582
583 oldp = ml_get(lnum);
584
585 if (b_insert)
586 {
587 p_ts = bdp->start_char_vcols;
588 spaces = bdp->startspaces;
589 if (spaces != 0)
590 count = p_ts - 1; /* we're cutting a TAB */
591 offset = bdp->textcol;
592 }
593 else /* append */
594 {
595 p_ts = bdp->end_char_vcols;
596 if (!bdp->is_short) /* spaces = padding after block */
597 {
598 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
599 if (spaces != 0)
600 count = p_ts - 1; /* we're cutting a TAB */
601 offset = bdp->textcol + bdp->textlen - (spaces != 0);
602 }
603 else /* spaces = padding to block edge */
604 {
605 /* if $ used, just append to EOL (ie spaces==0) */
606 if (!bdp->is_MAX)
607 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
608 count = spaces;
609 offset = bdp->textcol + bdp->textlen;
610 }
611 }
612
613 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
614 if (newp == NULL)
615 continue;
616
617 /* copy up to shifted part */
618 mch_memmove(newp, oldp, (size_t)(offset));
619 oldp += offset;
620
621 /* insert pre-padding */
622 copy_spaces(newp + offset, (size_t)spaces);
623
624 /* copy the new text */
625 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
626 offset += s_len;
627
628 if (spaces && !bdp->is_short)
629 {
630 /* insert post-padding */
631 copy_spaces(newp + offset + spaces, (size_t)(p_ts - spaces));
632 /* We're splitting a TAB, don't copy it. */
633 oldp++;
634 /* We allowed for that TAB, remember this now */
635 count++;
636 }
637
638 if (spaces > 0)
639 offset += count;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000640 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641
642 ml_replace(lnum, newp, FALSE);
643
644 if (lnum == oap->end.lnum)
645 {
646 /* Set "']" mark to the end of the block instead of the end of
647 * the insert in the first line. */
648 curbuf->b_op_end.lnum = oap->end.lnum;
649 curbuf->b_op_end.col = offset;
650 }
651 } /* for all lnum */
652
653 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
654
655 State = oldstate;
656}
657#endif
658
659#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
660/*
661 * op_reindent - handle reindenting a block of lines.
662 */
663 void
664op_reindent(oap, how)
665 oparg_T *oap;
666 int (*how) __ARGS((void));
667{
668 long i;
669 char_u *l;
670 int count;
671 linenr_T first_changed = 0;
672 linenr_T last_changed = 0;
673 linenr_T start_lnum = curwin->w_cursor.lnum;
674
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000675 /* Don't even try when 'modifiable' is off. */
676 if (!curbuf->b_p_ma)
677 {
678 EMSG(_(e_modifiable));
679 return;
680 }
681
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 for (i = oap->line_count; --i >= 0 && !got_int; )
683 {
684 /* it's a slow thing to do, so give feedback so there's no worry that
685 * the computer's just hung. */
686
687 if (i > 1
688 && (i % 50 == 0 || i == oap->line_count - 1)
689 && oap->line_count > p_report)
690 smsg((char_u *)_("%ld lines to indent... "), i);
691
692 /*
693 * Be vi-compatible: For lisp indenting the first line is not
694 * indented, unless there is only one line.
695 */
696#ifdef FEAT_LISP
697 if (i != oap->line_count - 1 || oap->line_count == 1
698 || how != get_lisp_indent)
699#endif
700 {
701 l = skipwhite(ml_get_curline());
702 if (*l == NUL) /* empty or blank line */
703 count = 0;
704 else
705 count = how(); /* get the indent for this line */
706
707 if (set_indent(count, SIN_UNDO))
708 {
709 /* did change the indent, call changed_lines() later */
710 if (first_changed == 0)
711 first_changed = curwin->w_cursor.lnum;
712 last_changed = curwin->w_cursor.lnum;
713 }
714 }
715 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +0000716 curwin->w_cursor.col = 0; /* make sure it's valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 }
718
719 /* put cursor on first non-blank of indented line */
720 curwin->w_cursor.lnum = start_lnum;
721 beginline(BL_SOL | BL_FIX);
722
723 /* Mark changed lines so that they will be redrawn. When Visual
724 * highlighting was present, need to continue until the last line. When
725 * there is no change still need to remove the Visual highlighting. */
726 if (last_changed != 0)
727 changed_lines(first_changed, 0,
728#ifdef FEAT_VISUAL
729 oap->is_VIsual ? start_lnum + oap->line_count :
730#endif
731 last_changed + 1, 0L);
732#ifdef FEAT_VISUAL
733 else if (oap->is_VIsual)
734 redraw_curbuf_later(INVERTED);
735#endif
736
737 if (oap->line_count > p_report)
738 {
739 i = oap->line_count - (i + 1);
740 if (i == 1)
741 MSG(_("1 line indented "));
742 else
743 smsg((char_u *)_("%ld lines indented "), i);
744 }
745 /* set '[ and '] marks */
746 curbuf->b_op_start = oap->start;
747 curbuf->b_op_end = oap->end;
748}
749#endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
750
751#if defined(FEAT_EVAL) || defined(PROTO)
752/*
753 * Keep the last expression line here, for repeating.
754 */
755static char_u *expr_line = NULL;
756
757/*
758 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
759 * Returns '=' when OK, NUL otherwise.
760 */
761 int
762get_expr_register()
763{
764 char_u *new_line;
765
766 new_line = getcmdline('=', 0L, 0);
767 if (new_line == NULL)
768 return NUL;
769 if (*new_line == NUL) /* use previous line */
770 vim_free(new_line);
771 else
772 set_expr_line(new_line);
773 return '=';
774}
775
776/*
777 * Set the expression for the '=' register.
778 * Argument must be an allocated string.
779 */
780 void
781set_expr_line(new_line)
782 char_u *new_line;
783{
784 vim_free(expr_line);
785 expr_line = new_line;
786}
787
788/*
789 * Get the result of the '=' register expression.
790 * Returns a pointer to allocated memory, or NULL for failure.
791 */
792 char_u *
793get_expr_line()
794{
795 char_u *expr_copy;
796 char_u *rv;
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000797 static int nested = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798
799 if (expr_line == NULL)
800 return NULL;
801
802 /* Make a copy of the expression, because evaluating it may cause it to be
803 * changed. */
804 expr_copy = vim_strsave(expr_line);
805 if (expr_copy == NULL)
806 return NULL;
807
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000808 /* When we are invoked recursively limit the evaluation to 10 levels.
809 * Then return the string as-is. */
810 if (nested >= 10)
811 return expr_copy;
812
813 ++nested;
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000814 rv = eval_to_string(expr_copy, NULL, TRUE);
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000815 --nested;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 vim_free(expr_copy);
817 return rv;
818}
Bram Moolenaarde934d72005-05-22 22:09:40 +0000819
820/*
821 * Get the '=' register expression itself, without evaluating it.
822 */
823 char_u *
824get_expr_line_src()
825{
826 if (expr_line == NULL)
827 return NULL;
828 return vim_strsave(expr_line);
829}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830#endif /* FEAT_EVAL */
831
832/*
833 * Check if 'regname' is a valid name of a yank register.
834 * Note: There is no check for 0 (default register), caller should do this
835 */
836 int
837valid_yank_reg(regname, writing)
838 int regname;
839 int writing; /* if TRUE check for writable registers */
840{
841 if ( (regname > 0 && ASCII_ISALNUM(regname))
842 || (!writing && vim_strchr((char_u *)
843#ifdef FEAT_EVAL
844 "/.%#:="
845#else
846 "/.%#:"
847#endif
848 , regname) != NULL)
849 || regname == '"'
850 || regname == '-'
851 || regname == '_'
852#ifdef FEAT_CLIPBOARD
853 || regname == '*'
854 || regname == '+'
855#endif
856#ifdef FEAT_DND
857 || (!writing && regname == '~')
858#endif
859 )
860 return TRUE;
861 return FALSE;
862}
863
864/*
865 * Set y_current and y_append, according to the value of "regname".
866 * Cannot handle the '_' register.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000867 * Must only be called with a valid register name!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 *
869 * If regname is 0 and writing, use register 0
870 * If regname is 0 and reading, use previous register
871 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000872 void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873get_yank_register(regname, writing)
874 int regname;
875 int writing;
876{
877 int i;
878
879 y_append = FALSE;
880 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
881 {
882 y_current = y_previous;
883 return;
884 }
885 i = regname;
886 if (VIM_ISDIGIT(i))
887 i -= '0';
888 else if (ASCII_ISLOWER(i))
889 i = CharOrdLow(i) + 10;
890 else if (ASCII_ISUPPER(i))
891 {
892 i = CharOrdUp(i) + 10;
893 y_append = TRUE;
894 }
895 else if (regname == '-')
896 i = DELETION_REGISTER;
897#ifdef FEAT_CLIPBOARD
898 /* When selection is not available, use register 0 instead of '*' */
899 else if (clip_star.available && regname == '*')
900 i = STAR_REGISTER;
901 /* When clipboard is not available, use register 0 instead of '+' */
902 else if (clip_plus.available && regname == '+')
903 i = PLUS_REGISTER;
904#endif
905#ifdef FEAT_DND
906 else if (!writing && regname == '~')
907 i = TILDE_REGISTER;
908#endif
909 else /* not 0-9, a-z, A-Z or '-': use register 0 */
910 i = 0;
911 y_current = &(y_regs[i]);
912 if (writing) /* remember the register we write into for do_put() */
913 y_previous = y_current;
914}
915
Bram Moolenaar8299df92004-07-10 09:47:34 +0000916#if defined(FEAT_CLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917/*
918 * When "regname" is a clipboard register, obtain the selection. If it's not
919 * available return zero, otherwise return "regname".
920 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000921 int
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922may_get_selection(regname)
923 int regname;
924{
925 if (regname == '*')
926 {
927 if (!clip_star.available)
928 regname = 0;
929 else
930 clip_get_selection(&clip_star);
931 }
932 else if (regname == '+')
933 {
934 if (!clip_plus.available)
935 regname = 0;
936 else
937 clip_get_selection(&clip_plus);
938 }
939 return regname;
940}
941#endif
942
943#if defined(FEAT_VISUAL) || defined(PROTO)
944/*
945 * Obtain the contents of a "normal" register. The register is made empty.
946 * The returned pointer has allocated memory, use put_register() later.
947 */
948 void *
949get_register(name, copy)
950 int name;
951 int copy; /* make a copy, if FALSE make register empty. */
952{
Bram Moolenaar0a307462007-12-01 20:13:05 +0000953 struct yankreg *reg;
954 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955
956#ifdef FEAT_CLIPBOARD
957 /* When Visual area changed, may have to update selection. Obtain the
958 * selection too. */
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000959 if (name == '*' && clip_star.available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 {
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000961 if (clip_isautosel())
962 clip_update_selection();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 may_get_selection(name);
964 }
965#endif
966
967 get_yank_register(name, 0);
968 reg = (struct yankreg *)alloc((unsigned)sizeof(struct yankreg));
969 if (reg != NULL)
970 {
971 *reg = *y_current;
972 if (copy)
973 {
974 /* If we run out of memory some or all of the lines are empty. */
975 if (reg->y_size == 0)
976 reg->y_array = NULL;
977 else
978 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
979 * reg->y_size));
980 if (reg->y_array != NULL)
981 {
982 for (i = 0; i < reg->y_size; ++i)
983 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
984 }
985 }
986 else
987 y_current->y_array = NULL;
988 }
989 return (void *)reg;
990}
991
992/*
Bram Moolenaar0a307462007-12-01 20:13:05 +0000993 * Put "reg" into register "name". Free any previous contents and "reg".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994 */
995 void
996put_register(name, reg)
997 int name;
998 void *reg;
999{
1000 get_yank_register(name, 0);
1001 free_yank_all();
1002 *y_current = *(struct yankreg *)reg;
Bram Moolenaar0a307462007-12-01 20:13:05 +00001003 vim_free(reg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004
1005# ifdef FEAT_CLIPBOARD
1006 /* Send text written to clipboard register to the clipboard. */
1007 may_set_selection();
1008# endif
1009}
1010#endif
1011
1012#if defined(FEAT_MOUSE) || defined(PROTO)
1013/*
1014 * return TRUE if the current yank register has type MLINE
1015 */
1016 int
1017yank_register_mline(regname)
1018 int regname;
1019{
1020 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1021 return FALSE;
1022 if (regname == '_') /* black hole is always empty */
1023 return FALSE;
1024 get_yank_register(regname, FALSE);
1025 return (y_current->y_type == MLINE);
1026}
1027#endif
1028
1029/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001030 * Start or stop recording into a yank register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 *
Bram Moolenaard55de222007-05-06 13:38:48 +00001032 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033 */
1034 int
1035do_record(c)
1036 int c;
1037{
Bram Moolenaard55de222007-05-06 13:38:48 +00001038 char_u *p;
1039 static int regname;
1040 struct yankreg *old_y_previous, *old_y_current;
1041 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042
1043 if (Recording == FALSE) /* start recording */
1044 {
1045 /* registers 0-9, a-z and " are allowed */
1046 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1047 retval = FAIL;
1048 else
1049 {
1050 Recording = TRUE;
1051 showmode();
1052 regname = c;
1053 retval = OK;
1054 }
1055 }
1056 else /* stop recording */
1057 {
1058 /*
Bram Moolenaard55de222007-05-06 13:38:48 +00001059 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1060 * needs to be removed again to put it in a register. exec_reg then
1061 * adds the escaping back later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062 */
1063 Recording = FALSE;
1064 MSG("");
1065 p = get_recorded();
1066 if (p == NULL)
1067 retval = FAIL;
1068 else
1069 {
Bram Moolenaar81b85872007-03-04 20:22:01 +00001070 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1071 vim_unescape_csi(p);
1072
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 /*
1074 * We don't want to change the default register here, so save and
1075 * restore the current register name.
1076 */
1077 old_y_previous = y_previous;
1078 old_y_current = y_current;
1079
1080 retval = stuff_yank(regname, p);
1081
1082 y_previous = old_y_previous;
1083 y_current = old_y_current;
1084 }
1085 }
1086 return retval;
1087}
1088
1089/*
1090 * Stuff string "p" into yank register "regname" as a single line (append if
1091 * uppercase). "p" must have been alloced.
1092 *
1093 * return FAIL for failure, OK otherwise
1094 */
1095 static int
1096stuff_yank(regname, p)
1097 int regname;
1098 char_u *p;
1099{
1100 char_u *lp;
1101 char_u **pp;
1102
1103 /* check for read-only register */
1104 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1105 {
1106 vim_free(p);
1107 return FAIL;
1108 }
1109 if (regname == '_') /* black hole: don't do anything */
1110 {
1111 vim_free(p);
1112 return OK;
1113 }
1114 get_yank_register(regname, TRUE);
1115 if (y_append && y_current->y_array != NULL)
1116 {
1117 pp = &(y_current->y_array[y_current->y_size - 1]);
1118 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1119 if (lp == NULL)
1120 {
1121 vim_free(p);
1122 return FAIL;
1123 }
1124 STRCPY(lp, *pp);
1125 STRCAT(lp, p);
1126 vim_free(p);
1127 vim_free(*pp);
1128 *pp = lp;
1129 }
1130 else
1131 {
1132 free_yank_all();
1133 if ((y_current->y_array =
1134 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1135 {
1136 vim_free(p);
1137 return FAIL;
1138 }
1139 y_current->y_array[0] = p;
1140 y_current->y_size = 1;
1141 y_current->y_type = MCHAR; /* used to be MLINE, why? */
1142 }
1143 return OK;
1144}
1145
Bram Moolenaar42b94362009-05-26 16:12:37 +00001146static int execreg_lastc = NUL;
1147
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148/*
1149 * execute a yank register: copy it into the stuff buffer
1150 *
1151 * return FAIL for failure, OK otherwise
1152 */
1153 int
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001154do_execreg(regname, colon, addcr, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 int regname;
1156 int colon; /* insert ':' before each line */
1157 int addcr; /* always add '\n' to end of line */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001158 int silent; /* set "silent" flag in typeahead buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 long i;
1161 char_u *p;
1162 int retval = OK;
1163 int remap;
1164
1165 if (regname == '@') /* repeat previous one */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001166 {
Bram Moolenaar42b94362009-05-26 16:12:37 +00001167 if (execreg_lastc == NUL)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001168 {
1169 EMSG(_("E748: No previously used register"));
1170 return FAIL;
1171 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001172 regname = execreg_lastc;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001173 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 /* check for valid regname */
1175 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001176 {
1177 emsg_invreg(regname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 return FAIL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001179 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001180 execreg_lastc = regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181
1182#ifdef FEAT_CLIPBOARD
1183 regname = may_get_selection(regname);
1184#endif
1185
1186 if (regname == '_') /* black hole: don't stuff anything */
1187 return OK;
1188
1189#ifdef FEAT_CMDHIST
1190 if (regname == ':') /* use last command line */
1191 {
1192 if (last_cmdline == NULL)
1193 {
1194 EMSG(_(e_nolastcmd));
1195 return FAIL;
1196 }
1197 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
1198 new_last_cmdline = NULL;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001199 /* Escape all control characters with a CTRL-V */
1200 p = vim_strsave_escaped_ext(last_cmdline,
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001201 (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);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001202 if (p != NULL)
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001203 {
1204 /* When in Visual mode "'<,'>" will be prepended to the command.
1205 * Remove it when it's already there. */
1206 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001207 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001208 else
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001209 retval = put_in_typebuf(p, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001210 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001211 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 }
1213#endif
1214#ifdef FEAT_EVAL
1215 else if (regname == '=')
1216 {
1217 p = get_expr_line();
1218 if (p == NULL)
1219 return FAIL;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001220 retval = put_in_typebuf(p, TRUE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 vim_free(p);
1222 }
1223#endif
1224 else if (regname == '.') /* use last inserted text */
1225 {
1226 p = get_last_insert_save();
1227 if (p == NULL)
1228 {
1229 EMSG(_(e_noinstext));
1230 return FAIL;
1231 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001232 retval = put_in_typebuf(p, FALSE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 vim_free(p);
1234 }
1235 else
1236 {
1237 get_yank_register(regname, FALSE);
1238 if (y_current->y_array == NULL)
1239 return FAIL;
1240
1241 /* Disallow remaping for ":@r". */
1242 remap = colon ? REMAP_NONE : REMAP_YES;
1243
1244 /*
1245 * Insert lines into typeahead buffer, from last one to first one.
1246 */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001247 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 for (i = y_current->y_size; --i >= 0; )
1249 {
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001250 char_u *escaped;
1251
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 /* insert NL between lines and after last line if type is MLINE */
1253 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1254 || addcr)
1255 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001256 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 return FAIL;
1258 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001259 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1260 if (escaped == NULL)
1261 return FAIL;
1262 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1263 vim_free(escaped);
1264 if (retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 return FAIL;
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001266 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 == FAIL)
1268 return FAIL;
1269 }
1270 Exec_reg = TRUE; /* disable the 'q' command */
1271 }
1272 return retval;
1273}
1274
1275/*
1276 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1277 * used only after other typeahead has been processed.
1278 */
1279 static void
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001280put_reedit_in_typebuf(silent)
1281 int silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282{
1283 char_u buf[3];
1284
1285 if (restart_edit != NUL)
1286 {
1287 if (restart_edit == 'V')
1288 {
1289 buf[0] = 'g';
1290 buf[1] = 'R';
1291 buf[2] = NUL;
1292 }
1293 else
1294 {
1295 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1296 buf[1] = NUL;
1297 }
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001298 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 restart_edit = NUL;
1300 }
1301}
1302
1303 static int
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001304put_in_typebuf(s, esc, colon, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 char_u *s;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001306 int esc; /* Escape CSI characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 int colon; /* add ':' before the line */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001308 int silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309{
1310 int retval = OK;
1311
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001312 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 if (colon)
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001314 retval = ins_typebuf((char_u *)"\n", REMAP_YES, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 if (retval == OK)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001316 {
1317 char_u *p;
1318
1319 if (esc)
1320 p = vim_strsave_escape_csi(s);
1321 else
1322 p = s;
1323 if (p == NULL)
1324 retval = FAIL;
1325 else
1326 retval = ins_typebuf(p, REMAP_YES, 0, TRUE, silent);
1327 if (esc)
1328 vim_free(p);
1329 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 if (colon && retval == OK)
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001331 retval = ins_typebuf((char_u *)":", REMAP_YES, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 return retval;
1333}
1334
1335/*
1336 * Insert a yank register: copy it into the Read buffer.
1337 * Used by CTRL-R command and middle mouse button in insert mode.
1338 *
1339 * return FAIL for failure, OK otherwise
1340 */
1341 int
1342insert_reg(regname, literally)
1343 int regname;
1344 int literally; /* insert literally, not as if typed */
1345{
1346 long i;
1347 int retval = OK;
1348 char_u *arg;
1349 int allocated;
1350
1351 /*
1352 * It is possible to get into an endless loop by having CTRL-R a in
1353 * register a and then, in insert mode, doing CTRL-R a.
1354 * If you hit CTRL-C, the loop will be broken here.
1355 */
1356 ui_breakcheck();
1357 if (got_int)
1358 return FAIL;
1359
1360 /* check for valid regname */
1361 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1362 return FAIL;
1363
1364#ifdef FEAT_CLIPBOARD
1365 regname = may_get_selection(regname);
1366#endif
1367
1368 if (regname == '.') /* insert last inserted text */
1369 retval = stuff_inserted(NUL, 1L, TRUE);
1370 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1371 {
1372 if (arg == NULL)
1373 return FAIL;
1374 stuffescaped(arg, literally);
1375 if (allocated)
1376 vim_free(arg);
1377 }
1378 else /* name or number register */
1379 {
1380 get_yank_register(regname, FALSE);
1381 if (y_current->y_array == NULL)
1382 retval = FAIL;
1383 else
1384 {
1385 for (i = 0; i < y_current->y_size; ++i)
1386 {
1387 stuffescaped(y_current->y_array[i], literally);
1388 /*
1389 * Insert a newline between lines and after last line if
1390 * y_type is MLINE.
1391 */
1392 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1393 stuffcharReadbuff('\n');
1394 }
1395 }
1396 }
1397
1398 return retval;
1399}
1400
1401/*
1402 * Stuff a string into the typeahead buffer, such that edit() will insert it
1403 * literally ("literally" TRUE) or interpret is as typed characters.
1404 */
1405 static void
1406stuffescaped(arg, literally)
1407 char_u *arg;
1408 int literally;
1409{
1410 int c;
1411 char_u *start;
1412
1413 while (*arg != NUL)
1414 {
1415 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1416 * stuff K_SPECIAL to get the effect of a special key when "literally"
1417 * is TRUE. */
1418 start = arg;
1419 while ((*arg >= ' '
1420#ifndef EBCDIC
1421 && *arg < DEL /* EBCDIC: chars above space are normal */
1422#endif
1423 )
1424 || (*arg == K_SPECIAL && !literally))
1425 ++arg;
1426 if (arg > start)
1427 stuffReadbuffLen(start, (long)(arg - start));
1428
1429 /* stuff a single special character */
1430 if (*arg != NUL)
1431 {
1432#ifdef FEAT_MBYTE
1433 if (has_mbyte)
1434 c = mb_ptr2char_adv(&arg);
1435 else
1436#endif
1437 c = *arg++;
1438 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1439 stuffcharReadbuff(Ctrl_V);
1440 stuffcharReadbuff(c);
1441 }
1442 }
1443}
1444
1445/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001446 * If "regname" is a special register, return TRUE and store a pointer to its
1447 * value in "argp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 */
Bram Moolenaar8299df92004-07-10 09:47:34 +00001449 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450get_spec_reg(regname, argp, allocated, errmsg)
1451 int regname;
1452 char_u **argp;
Bram Moolenaard55de222007-05-06 13:38:48 +00001453 int *allocated; /* return: TRUE when value was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 int errmsg; /* give error message when failing */
1455{
1456 int cnt;
1457
1458 *argp = NULL;
1459 *allocated = FALSE;
1460 switch (regname)
1461 {
1462 case '%': /* file name */
1463 if (errmsg)
1464 check_fname(); /* will give emsg if not set */
1465 *argp = curbuf->b_fname;
1466 return TRUE;
1467
1468 case '#': /* alternate file name */
1469 *argp = getaltfname(errmsg); /* may give emsg if not set */
1470 return TRUE;
1471
1472#ifdef FEAT_EVAL
1473 case '=': /* result of expression */
1474 *argp = get_expr_line();
1475 *allocated = TRUE;
1476 return TRUE;
1477#endif
1478
1479 case ':': /* last command line */
1480 if (last_cmdline == NULL && errmsg)
1481 EMSG(_(e_nolastcmd));
1482 *argp = last_cmdline;
1483 return TRUE;
1484
1485 case '/': /* last search-pattern */
1486 if (last_search_pat() == NULL && errmsg)
1487 EMSG(_(e_noprevre));
1488 *argp = last_search_pat();
1489 return TRUE;
1490
1491 case '.': /* last inserted text */
1492 *argp = get_last_insert_save();
1493 *allocated = TRUE;
1494 if (*argp == NULL && errmsg)
1495 EMSG(_(e_noinstext));
1496 return TRUE;
1497
1498#ifdef FEAT_SEARCHPATH
1499 case Ctrl_F: /* Filename under cursor */
1500 case Ctrl_P: /* Path under cursor, expand via "path" */
1501 if (!errmsg)
1502 return FALSE;
1503 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001504 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 *allocated = TRUE;
1506 return TRUE;
1507#endif
1508
1509 case Ctrl_W: /* word under cursor */
1510 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1511 if (!errmsg)
1512 return FALSE;
1513 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1514 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1515 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1516 *allocated = TRUE;
1517 return TRUE;
1518
1519 case '_': /* black hole: always empty */
1520 *argp = (char_u *)"";
1521 return TRUE;
1522 }
1523
1524 return FALSE;
1525}
1526
1527/*
Bram Moolenaar8299df92004-07-10 09:47:34 +00001528 * Paste a yank register into the command line.
1529 * Only for non-special registers.
1530 * Used by CTRL-R command in command-line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 * insert_reg() can't be used here, because special characters from the
1532 * register contents will be interpreted as commands.
1533 *
1534 * return FAIL for failure, OK otherwise
1535 */
1536 int
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001537cmdline_paste_reg(regname, literally, remcr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 int regname;
1539 int literally; /* Insert text literally instead of "as typed" */
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001540 int remcr; /* don't add trailing CR */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541{
1542 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543
1544 get_yank_register(regname, FALSE);
1545 if (y_current->y_array == NULL)
1546 return FAIL;
1547
1548 for (i = 0; i < y_current->y_size; ++i)
1549 {
1550 cmdline_paste_str(y_current->y_array[i], literally);
1551
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001552 /* Insert ^M between lines and after last line if type is MLINE.
1553 * Don't do this when "remcr" is TRUE and the next line is empty. */
1554 if (y_current->y_type == MLINE
1555 || (i < y_current->y_size - 1
1556 && !(remcr
1557 && i == y_current->y_size - 2
1558 && *y_current->y_array[i + 1] == NUL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 cmdline_paste_str((char_u *)"\r", literally);
1560
1561 /* Check for CTRL-C, in case someone tries to paste a few thousand
1562 * lines and gets bored. */
1563 ui_breakcheck();
1564 if (got_int)
1565 return FAIL;
1566 }
1567 return OK;
1568}
1569
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570#if defined(FEAT_CLIPBOARD) || defined(PROTO)
1571/*
1572 * Adjust the register name pointed to with "rp" for the clipboard being
1573 * used always and the clipboard being available.
1574 */
1575 void
1576adjust_clip_reg(rp)
1577 int *rp;
1578{
1579 /* If no reg. specified, and "unnamed" is in 'clipboard', use '*' reg. */
1580 if (*rp == 0 && clip_unnamed)
1581 *rp = '*';
1582 if (!clip_star.available && *rp == '*')
1583 *rp = 0;
1584 if (!clip_plus.available && *rp == '+')
1585 *rp = 0;
1586}
1587#endif
1588
1589/*
1590 * op_delete - handle a delete operation
1591 *
1592 * return FAIL if undo failed, OK otherwise.
1593 */
1594 int
1595op_delete(oap)
1596 oparg_T *oap;
1597{
1598 int n;
1599 linenr_T lnum;
1600 char_u *ptr;
1601#ifdef FEAT_VISUAL
1602 char_u *newp, *oldp;
1603 struct block_def bd;
1604#endif
1605 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1606 int did_yank = FALSE;
1607
1608 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1609 return OK;
1610
1611 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1612 if (oap->empty)
1613 return u_save_cursor();
1614
1615 if (!curbuf->b_p_ma)
1616 {
1617 EMSG(_(e_modifiable));
1618 return FAIL;
1619 }
1620
1621#ifdef FEAT_CLIPBOARD
1622 adjust_clip_reg(&oap->regname);
1623#endif
1624
1625#ifdef FEAT_MBYTE
1626 if (has_mbyte)
1627 mb_adjust_opend(oap);
1628#endif
1629
1630/*
1631 * Imitate the strange Vi behaviour: If the delete spans more than one line
1632 * and motion_type == MCHAR and the result is a blank line, make the delete
1633 * linewise. Don't do this for the change command or Visual mode.
1634 */
1635 if ( oap->motion_type == MCHAR
1636#ifdef FEAT_VISUAL
1637 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001638 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639#endif
1640 && oap->line_count > 1
1641 && oap->op_type == OP_DELETE)
1642 {
1643 ptr = ml_get(oap->end.lnum) + oap->end.col + oap->inclusive;
1644 ptr = skipwhite(ptr);
1645 if (*ptr == NUL && inindent(0))
1646 oap->motion_type = MLINE;
1647 }
1648
1649/*
1650 * Check for trying to delete (e.g. "D") in an empty line.
1651 * Note: For the change operator it is ok.
1652 */
1653 if ( oap->motion_type == MCHAR
1654 && oap->line_count == 1
1655 && oap->op_type == OP_DELETE
1656 && *ml_get(oap->start.lnum) == NUL)
1657 {
1658 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001659 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 * 'cpoptions' (Vi compatible).
1661 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001662#ifdef FEAT_VIRTUALEDIT
1663 if (virtual_op)
1664 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1665 * marks as if it happened. */
1666 goto setmarks;
1667#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1669 beep_flush();
1670 return OK;
1671 }
1672
1673/*
1674 * Do a yank of whatever we're about to delete.
1675 * If a yank register was specified, put the deleted text into that register.
1676 * For the black hole register '_' don't yank anything.
1677 */
1678 if (oap->regname != '_')
1679 {
1680 if (oap->regname != 0)
1681 {
1682 /* check for read-only register */
1683 if (!valid_yank_reg(oap->regname, TRUE))
1684 {
1685 beep_flush();
1686 return OK;
1687 }
1688 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1689 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1690 did_yank = TRUE;
1691 }
1692
1693 /*
1694 * Put deleted text into register 1 and shift number registers if the
1695 * delete contains a line break, or when a regname has been specified.
1696 */
1697 if (oap->regname != 0 || oap->motion_type == MLINE
1698 || oap->line_count > 1 || oap->use_reg_one)
1699 {
1700 y_current = &y_regs[9];
1701 free_yank_all(); /* free register nine */
1702 for (n = 9; n > 1; --n)
1703 y_regs[n] = y_regs[n - 1];
1704 y_previous = y_current = &y_regs[1];
1705 y_regs[1].y_array = NULL; /* set register one to empty */
1706 if (op_yank(oap, TRUE, FALSE) == OK)
1707 did_yank = TRUE;
1708 }
1709
1710 /* Yank into small delete register when no register specified and the
1711 * delete is within one line. */
1712 if (oap->regname == 0 && oap->motion_type != MLINE
1713 && oap->line_count == 1)
1714 {
1715 oap->regname = '-';
1716 get_yank_register(oap->regname, TRUE);
1717 if (op_yank(oap, TRUE, FALSE) == OK)
1718 did_yank = TRUE;
1719 oap->regname = 0;
1720 }
1721
1722 /*
1723 * If there's too much stuff to fit in the yank register, then get a
1724 * confirmation before doing the delete. This is crude, but simple.
1725 * And it avoids doing a delete of something we can't put back if we
1726 * want.
1727 */
1728 if (!did_yank)
1729 {
1730 int msg_silent_save = msg_silent;
1731
1732 msg_silent = 0; /* must display the prompt */
1733 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1734 msg_silent = msg_silent_save;
1735 if (n != 'y')
1736 {
1737 EMSG(_(e_abort));
1738 return FAIL;
1739 }
1740 }
1741 }
1742
1743#ifdef FEAT_VISUAL
1744/*
1745 * block mode delete
1746 */
1747 if (oap->block_mode)
1748 {
1749 if (u_save((linenr_T)(oap->start.lnum - 1),
1750 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1751 return FAIL;
1752
1753 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1754 {
1755 block_prep(oap, &bd, lnum, TRUE);
1756 if (bd.textlen == 0) /* nothing to delete */
1757 continue;
1758
1759 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1760 if (lnum == curwin->w_cursor.lnum)
1761 {
1762 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1763# ifdef FEAT_VIRTUALEDIT
1764 curwin->w_cursor.coladd = 0;
1765# endif
1766 }
1767
1768 /* n == number of chars deleted
1769 * If we delete a TAB, it may be replaced by several characters.
1770 * Thus the number of characters may increase!
1771 */
1772 n = bd.textlen - bd.startspaces - bd.endspaces;
1773 oldp = ml_get(lnum);
1774 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1775 if (newp == NULL)
1776 continue;
1777 /* copy up to deleted part */
1778 mch_memmove(newp, oldp, (size_t)bd.textcol);
1779 /* insert spaces */
1780 copy_spaces(newp + bd.textcol,
1781 (size_t)(bd.startspaces + bd.endspaces));
1782 /* copy the part after the deleted part */
1783 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001784 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 /* replace the line */
1786 ml_replace(lnum, newp, FALSE);
1787 }
1788
1789 check_cursor_col();
1790 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1791 oap->end.lnum + 1, 0L);
1792 oap->line_count = 0; /* no lines deleted */
1793 }
1794 else
1795#endif
1796 if (oap->motion_type == MLINE)
1797 {
1798 if (oap->op_type == OP_CHANGE)
1799 {
1800 /* Delete the lines except the first one. Temporarily move the
1801 * cursor to the next line. Save the current line number, if the
1802 * last line is deleted it may be changed.
1803 */
1804 if (oap->line_count > 1)
1805 {
1806 lnum = curwin->w_cursor.lnum;
1807 ++curwin->w_cursor.lnum;
1808 del_lines((long)(oap->line_count - 1), TRUE);
1809 curwin->w_cursor.lnum = lnum;
1810 }
1811 if (u_save_cursor() == FAIL)
1812 return FAIL;
1813 if (curbuf->b_p_ai) /* don't delete indent */
1814 {
1815 beginline(BL_WHITE); /* cursor on first non-white */
1816 did_ai = TRUE; /* delete the indent when ESC hit */
1817 ai_col = curwin->w_cursor.col;
1818 }
1819 else
1820 beginline(0); /* cursor in column 0 */
1821 truncate_line(FALSE); /* delete the rest of the line */
1822 /* leave cursor past last char in line */
1823 if (oap->line_count > 1)
1824 u_clearline(); /* "U" command not possible after "2cc" */
1825 }
1826 else
1827 {
1828 del_lines(oap->line_count, TRUE);
1829 beginline(BL_WHITE | BL_FIX);
1830 u_clearline(); /* "U" command not possible after "dd" */
1831 }
1832 }
1833 else
1834 {
1835#ifdef FEAT_VIRTUALEDIT
1836 if (virtual_op)
1837 {
1838 int endcol = 0;
1839
1840 /* For virtualedit: break the tabs that are partly included. */
1841 if (gchar_pos(&oap->start) == '\t')
1842 {
1843 if (u_save_cursor() == FAIL) /* save first line for undo */
1844 return FAIL;
1845 if (oap->line_count == 1)
1846 endcol = getviscol2(oap->end.col, oap->end.coladd);
1847 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1848 oap->start = curwin->w_cursor;
1849 if (oap->line_count == 1)
1850 {
1851 coladvance(endcol);
1852 oap->end.col = curwin->w_cursor.col;
1853 oap->end.coladd = curwin->w_cursor.coladd;
1854 curwin->w_cursor = oap->start;
1855 }
1856 }
1857
1858 /* Break a tab only when it's included in the area. */
1859 if (gchar_pos(&oap->end) == '\t'
1860 && (int)oap->end.coladd < oap->inclusive)
1861 {
1862 /* save last line for undo */
1863 if (u_save((linenr_T)(oap->end.lnum - 1),
1864 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1865 return FAIL;
1866 curwin->w_cursor = oap->end;
1867 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1868 oap->end = curwin->w_cursor;
1869 curwin->w_cursor = oap->start;
1870 }
1871 }
1872#endif
1873
1874 if (oap->line_count == 1) /* delete characters within one line */
1875 {
1876 if (u_save_cursor() == FAIL) /* save line for undo */
1877 return FAIL;
1878
1879 /* if 'cpoptions' contains '$', display '$' at end of change */
1880 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
1881 && oap->op_type == OP_CHANGE
1882 && oap->end.lnum == curwin->w_cursor.lnum
1883#ifdef FEAT_VISUAL
1884 && !oap->is_VIsual
1885#endif
1886 )
1887 display_dollar(oap->end.col - !oap->inclusive);
1888
1889 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1890
1891#ifdef FEAT_VIRTUALEDIT
1892 if (virtual_op)
1893 {
1894 /* fix up things for virtualedit-delete:
1895 * break the tabs which are going to get in our way
1896 */
1897 char_u *curline = ml_get_curline();
1898 int len = (int)STRLEN(curline);
1899
1900 if (oap->end.coladd != 0
1901 && (int)oap->end.col >= len - 1
1902 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1903 n++;
1904 /* Delete at least one char (e.g, when on a control char). */
1905 if (n == 0 && oap->start.coladd != oap->end.coladd)
1906 n = 1;
1907
1908 /* When deleted a char in the line, reset coladd. */
1909 if (gchar_cursor() != NUL)
1910 curwin->w_cursor.coladd = 0;
1911 }
1912#endif
Bram Moolenaarca003e12006-03-17 23:19:38 +00001913 (void)del_bytes((long)n, !virtual_op, oap->op_type == OP_DELETE
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001914#ifdef FEAT_VISUAL
1915 && !oap->is_VIsual
1916#endif
1917 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 }
1919 else /* delete characters between lines */
1920 {
1921 pos_T curpos;
1922
1923 /* save deleted and changed lines for undo */
1924 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1925 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1926 return FAIL;
1927
1928 truncate_line(TRUE); /* delete from cursor to end of line */
1929
1930 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1931 ++curwin->w_cursor.lnum;
1932 del_lines((long)(oap->line_count - 2), FALSE);
1933
1934 /* delete from start of line until op_end */
1935 curwin->w_cursor.col = 0;
1936 (void)del_bytes((long)(oap->end.col + 1 - !oap->inclusive),
Bram Moolenaarca003e12006-03-17 23:19:38 +00001937 !virtual_op, oap->op_type == OP_DELETE
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001938#ifdef FEAT_VISUAL
1939 && !oap->is_VIsual
1940#endif
1941 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
1943
1944 (void)do_join(FALSE);
1945 }
1946 }
1947
1948 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
1949
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001950#ifdef FEAT_VIRTUALEDIT
1951setmarks:
1952#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953#ifdef FEAT_VISUAL
1954 if (oap->block_mode)
1955 {
1956 curbuf->b_op_end.lnum = oap->end.lnum;
1957 curbuf->b_op_end.col = oap->start.col;
1958 }
1959 else
1960#endif
1961 curbuf->b_op_end = oap->start;
1962 curbuf->b_op_start = oap->start;
1963
1964 return OK;
1965}
1966
1967#ifdef FEAT_MBYTE
1968/*
1969 * Adjust end of operating area for ending on a multi-byte character.
1970 * Used for deletion.
1971 */
1972 static void
1973mb_adjust_opend(oap)
1974 oparg_T *oap;
1975{
1976 char_u *p;
1977
1978 if (oap->inclusive)
1979 {
1980 p = ml_get(oap->end.lnum);
1981 oap->end.col += mb_tail_off(p, p + oap->end.col);
1982 }
1983}
1984#endif
1985
1986#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1987/*
1988 * Replace a whole area with one character.
1989 */
1990 int
1991op_replace(oap, c)
1992 oparg_T *oap;
1993 int c;
1994{
1995 int n, numc;
1996#ifdef FEAT_MBYTE
1997 int num_chars;
1998#endif
1999 char_u *newp, *oldp;
2000 size_t oldlen;
2001 struct block_def bd;
2002
2003 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2004 return OK; /* nothing to do */
2005
2006#ifdef FEAT_MBYTE
2007 if (has_mbyte)
2008 mb_adjust_opend(oap);
2009#endif
2010
2011 if (u_save((linenr_T)(oap->start.lnum - 1),
2012 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2013 return FAIL;
2014
2015 /*
2016 * block mode replace
2017 */
2018 if (oap->block_mode)
2019 {
2020 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2021 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2022 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002023 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2025 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2026 continue; /* nothing to replace */
2027
2028 /* n == number of extra chars required
2029 * If we split a TAB, it may be replaced by several characters.
2030 * Thus the number of characters may increase!
2031 */
2032#ifdef FEAT_VIRTUALEDIT
2033 /* If the range starts in virtual space, count the initial
2034 * coladd offset as part of "startspaces" */
2035 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2036 {
2037 pos_T vpos;
2038
Bram Moolenaara1381de2009-11-03 15:44:21 +00002039 vpos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 getvpos(&vpos, oap->start_vcol);
2041 bd.startspaces += vpos.coladd;
2042 n = bd.startspaces;
2043 }
2044 else
2045#endif
2046 /* allow for pre spaces */
2047 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2048
2049 /* allow for post spp */
2050 n += (bd.endspaces
2051#ifdef FEAT_VIRTUALEDIT
2052 && !bd.is_oneChar
2053#endif
2054 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2055 /* Figure out how many characters to replace. */
2056 numc = oap->end_vcol - oap->start_vcol + 1;
2057 if (bd.is_short && (!virtual_op || bd.is_MAX))
2058 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2059
2060#ifdef FEAT_MBYTE
2061 /* A double-wide character can be replaced only up to half the
2062 * times. */
2063 if ((*mb_char2cells)(c) > 1)
2064 {
2065 if ((numc & 1) && !bd.is_short)
2066 {
2067 ++bd.endspaces;
2068 ++n;
2069 }
2070 numc = numc / 2;
2071 }
2072
2073 /* Compute bytes needed, move character count to num_chars. */
2074 num_chars = numc;
2075 numc *= (*mb_char2len)(c);
2076#endif
2077 /* oldlen includes textlen, so don't double count */
2078 n += numc - bd.textlen;
2079
2080 oldp = ml_get_curline();
2081 oldlen = STRLEN(oldp);
2082 newp = alloc_check((unsigned)oldlen + 1 + n);
2083 if (newp == NULL)
2084 continue;
2085 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2086 /* copy up to deleted part */
2087 mch_memmove(newp, oldp, (size_t)bd.textcol);
2088 oldp += bd.textcol + bd.textlen;
2089 /* insert pre-spaces */
2090 copy_spaces(newp + bd.textcol, (size_t)bd.startspaces);
2091 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
2092#ifdef FEAT_MBYTE
2093 if (has_mbyte)
2094 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002095 n = (int)STRLEN(newp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 while (--num_chars >= 0)
2097 n += (*mb_char2bytes)(c, newp + n);
2098 }
2099 else
2100#endif
2101 copy_chars(newp + STRLEN(newp), (size_t)numc, c);
2102 if (!bd.is_short)
2103 {
2104 /* insert post-spaces */
2105 copy_spaces(newp + STRLEN(newp), (size_t)bd.endspaces);
2106 /* copy the part after the changed part */
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002107 STRMOVE(newp + STRLEN(newp), oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 }
2109 /* replace the line */
2110 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
2111 }
2112 }
2113 else
2114 {
2115 /*
2116 * MCHAR and MLINE motion replace.
2117 */
2118 if (oap->motion_type == MLINE)
2119 {
2120 oap->start.col = 0;
2121 curwin->w_cursor.col = 0;
2122 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2123 if (oap->end.col)
2124 --oap->end.col;
2125 }
2126 else if (!oap->inclusive)
2127 dec(&(oap->end));
2128
2129 while (ltoreq(curwin->w_cursor, oap->end))
2130 {
2131 n = gchar_cursor();
2132 if (n != NUL)
2133 {
2134#ifdef FEAT_MBYTE
2135 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2136 {
2137 /* This is slow, but it handles replacing a single-byte
2138 * with a multi-byte and the other way around. */
2139 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
2140 n = State;
2141 State = REPLACE;
2142 ins_char(c);
2143 State = n;
2144 /* Backup to the replaced character. */
2145 dec_cursor();
2146 }
2147 else
2148#endif
2149 {
2150#ifdef FEAT_VIRTUALEDIT
2151 if (n == TAB)
2152 {
2153 int end_vcol = 0;
2154
2155 if (curwin->w_cursor.lnum == oap->end.lnum)
2156 {
2157 /* oap->end has to be recalculated when
2158 * the tab breaks */
2159 end_vcol = getviscol2(oap->end.col,
2160 oap->end.coladd);
2161 }
2162 coladvance_force(getviscol());
2163 if (curwin->w_cursor.lnum == oap->end.lnum)
2164 getvpos(&oap->end, end_vcol);
2165 }
2166#endif
2167 pchar(curwin->w_cursor, c);
2168 }
2169 }
2170#ifdef FEAT_VIRTUALEDIT
2171 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2172 {
2173 int virtcols = oap->end.coladd;
2174
2175 if (curwin->w_cursor.lnum == oap->start.lnum
2176 && oap->start.col == oap->end.col && oap->start.coladd)
2177 virtcols -= oap->start.coladd;
2178
2179 /* oap->end has been trimmed so it's effectively inclusive;
2180 * as a result an extra +1 must be counted so we don't
2181 * trample the NUL byte. */
2182 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2183 curwin->w_cursor.col -= (virtcols + 1);
2184 for (; virtcols >= 0; virtcols--)
2185 {
2186 pchar(curwin->w_cursor, c);
2187 if (inc(&curwin->w_cursor) == -1)
2188 break;
2189 }
2190 }
2191#endif
2192
2193 /* Advance to next character, stop at the end of the file. */
2194 if (inc_cursor() == -1)
2195 break;
2196 }
2197 }
2198
2199 curwin->w_cursor = oap->start;
2200 check_cursor();
2201 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2202
2203 /* Set "'[" and "']" marks. */
2204 curbuf->b_op_start = oap->start;
2205 curbuf->b_op_end = oap->end;
2206
2207 return OK;
2208}
2209#endif
2210
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002211static int swapchars __ARGS((int op_type, pos_T *pos, int length));
2212
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213/*
2214 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2215 */
2216 void
2217op_tilde(oap)
2218 oparg_T *oap;
2219{
2220 pos_T pos;
2221#ifdef FEAT_VISUAL
2222 struct block_def bd;
Bram Moolenaar60a795a2005-09-16 21:55:43 +00002223#endif
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002224 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225
2226 if (u_save((linenr_T)(oap->start.lnum - 1),
2227 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2228 return;
2229
2230 pos = oap->start;
2231#ifdef FEAT_VISUAL
2232 if (oap->block_mode) /* Visual block mode */
2233 {
2234 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2235 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002236 int one_change;
2237
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 block_prep(oap, &bd, pos.lnum, FALSE);
2239 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002240 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2241 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002242
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243# ifdef FEAT_NETBEANS_INTG
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002244 if (usingNetbeans && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245 {
2246 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2247
Bram Moolenaar009b2592004-10-24 19:18:58 +00002248 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2249 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaar009b2592004-10-24 19:18:58 +00002251 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 }
2253# endif
2254 }
2255 if (did_change)
2256 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2257 }
2258 else /* not block mode */
2259#endif
2260 {
2261 if (oap->motion_type == MLINE)
2262 {
2263 oap->start.col = 0;
2264 pos.col = 0;
2265 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2266 if (oap->end.col)
2267 --oap->end.col;
2268 }
2269 else if (!oap->inclusive)
2270 dec(&(oap->end));
2271
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002272 if (pos.lnum == oap->end.lnum)
2273 did_change = swapchars(oap->op_type, &pos,
2274 oap->end.col - pos.col + 1);
2275 else
2276 for (;;)
2277 {
2278 did_change |= swapchars(oap->op_type, &pos,
2279 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2280 (int)STRLEN(ml_get_pos(&pos)));
2281 if (ltoreq(oap->end, pos) || inc(&pos) == -1)
2282 break;
2283 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 if (did_change)
2285 {
2286 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2287 0L);
2288#ifdef FEAT_NETBEANS_INTG
2289 if (usingNetbeans && did_change)
2290 {
2291 char_u *ptr;
2292 int count;
2293
2294 pos = oap->start;
2295 while (pos.lnum < oap->end.lnum)
2296 {
2297 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002298 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002299 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00002301 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 pos.col = 0;
2303 pos.lnum++;
2304 }
2305 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2306 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002307 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00002309 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 }
2311#endif
2312 }
2313 }
2314
2315#ifdef FEAT_VISUAL
2316 if (!did_change && oap->is_VIsual)
2317 /* No change: need to remove the Visual selection */
2318 redraw_curbuf_later(INVERTED);
2319#endif
2320
2321 /*
2322 * Set '[ and '] marks.
2323 */
2324 curbuf->b_op_start = oap->start;
2325 curbuf->b_op_end = oap->end;
2326
2327 if (oap->line_count > p_report)
2328 {
2329 if (oap->line_count == 1)
2330 MSG(_("1 line changed"));
2331 else
2332 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2333 }
2334}
2335
2336/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002337 * Invoke swapchar() on "length" bytes at position "pos".
2338 * "pos" is advanced to just after the changed characters.
2339 * "length" is rounded up to include the whole last multi-byte character.
2340 * Also works correctly when the number of bytes changes.
2341 * Returns TRUE if some character was changed.
2342 */
2343 static int
2344swapchars(op_type, pos, length)
2345 int op_type;
2346 pos_T *pos;
2347 int length;
2348{
2349 int todo;
2350 int did_change = 0;
2351
2352 for (todo = length; todo > 0; --todo)
2353 {
2354# ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002355 if (has_mbyte)
2356 /* we're counting bytes, not characters */
2357 todo -= (*mb_ptr2len)(ml_get_pos(pos)) - 1;
2358# endif
2359 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002360 if (inc(pos) == -1) /* at end of file */
2361 break;
2362 }
2363 return did_change;
2364}
2365
2366/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 * If op_type == OP_UPPER: make uppercase,
2368 * if op_type == OP_LOWER: make lowercase,
2369 * if op_type == OP_ROT13: do rot13 encoding,
2370 * else swap case of character at 'pos'
2371 * returns TRUE when something actually changed.
2372 */
2373 int
2374swapchar(op_type, pos)
2375 int op_type;
2376 pos_T *pos;
2377{
2378 int c;
2379 int nc;
2380
2381 c = gchar_pos(pos);
2382
2383 /* Only do rot13 encoding for ASCII characters. */
2384 if (c >= 0x80 && op_type == OP_ROT13)
2385 return FALSE;
2386
2387#ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002388 if (op_type == OP_UPPER && c == 0xdf
2389 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002390 {
2391 pos_T sp = curwin->w_cursor;
2392
2393 /* Special handling of German sharp s: change to "SS". */
2394 curwin->w_cursor = *pos;
2395 del_char(FALSE);
2396 ins_char('S');
2397 ins_char('S');
2398 curwin->w_cursor = sp;
2399 inc(pos);
2400 }
2401
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2403 return FALSE;
2404#endif
2405 nc = c;
2406 if (MB_ISLOWER(c))
2407 {
2408 if (op_type == OP_ROT13)
2409 nc = ROT13(c, 'a');
2410 else if (op_type != OP_LOWER)
2411 nc = MB_TOUPPER(c);
2412 }
2413 else if (MB_ISUPPER(c))
2414 {
2415 if (op_type == OP_ROT13)
2416 nc = ROT13(c, 'A');
2417 else if (op_type != OP_UPPER)
2418 nc = MB_TOLOWER(c);
2419 }
2420 if (nc != c)
2421 {
2422#ifdef FEAT_MBYTE
2423 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2424 {
2425 pos_T sp = curwin->w_cursor;
2426
2427 curwin->w_cursor = *pos;
2428 del_char(FALSE);
2429 ins_char(nc);
2430 curwin->w_cursor = sp;
2431 }
2432 else
2433#endif
2434 pchar(*pos, nc);
2435 return TRUE;
2436 }
2437 return FALSE;
2438}
2439
2440#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2441/*
2442 * op_insert - Insert and append operators for Visual mode.
2443 */
2444 void
2445op_insert(oap, count1)
2446 oparg_T *oap;
2447 long count1;
2448{
2449 long ins_len, pre_textlen = 0;
2450 char_u *firstline, *ins_text;
2451 struct block_def bd;
2452 int i;
2453
2454 /* edit() changes this - record it for OP_APPEND */
2455 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2456
2457 /* vis block is still marked. Get rid of it now. */
2458 curwin->w_cursor.lnum = oap->start.lnum;
2459 update_screen(INVERTED);
2460
2461 if (oap->block_mode)
2462 {
2463#ifdef FEAT_VIRTUALEDIT
2464 /* When 'virtualedit' is used, need to insert the extra spaces before
2465 * doing block_prep(). When only "block" is used, virtual edit is
2466 * already disabled, but still need it when calling
2467 * coladvance_force(). */
2468 if (curwin->w_cursor.coladd > 0)
2469 {
2470 int old_ve_flags = ve_flags;
2471
2472 ve_flags = VE_ALL;
2473 if (u_save_cursor() == FAIL)
2474 return;
2475 coladvance_force(oap->op_type == OP_APPEND
2476 ? oap->end_vcol + 1 : getviscol());
2477 if (oap->op_type == OP_APPEND)
2478 --curwin->w_cursor.col;
2479 ve_flags = old_ve_flags;
2480 }
2481#endif
2482 /* Get the info about the block before entering the text */
2483 block_prep(oap, &bd, oap->start.lnum, TRUE);
2484 firstline = ml_get(oap->start.lnum) + bd.textcol;
2485 if (oap->op_type == OP_APPEND)
2486 firstline += bd.textlen;
2487 pre_textlen = (long)STRLEN(firstline);
2488 }
2489
2490 if (oap->op_type == OP_APPEND)
2491 {
2492 if (oap->block_mode
2493#ifdef FEAT_VIRTUALEDIT
2494 && curwin->w_cursor.coladd == 0
2495#endif
2496 )
2497 {
2498 /* Move the cursor to the character right of the block. */
2499 curwin->w_set_curswant = TRUE;
2500 while (*ml_get_cursor() != NUL
2501 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2502 ++curwin->w_cursor.col;
2503 if (bd.is_short && !bd.is_MAX)
2504 {
2505 /* First line was too short, make it longer and adjust the
2506 * values in "bd". */
2507 if (u_save_cursor() == FAIL)
2508 return;
2509 for (i = 0; i < bd.endspaces; ++i)
2510 ins_char(' ');
2511 bd.textlen += bd.endspaces;
2512 }
2513 }
2514 else
2515 {
2516 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002517 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518
2519 /* Works just like an 'i'nsert on the next character. */
2520 if (!lineempty(curwin->w_cursor.lnum)
2521 && oap->start_vcol != oap->end_vcol)
2522 inc_cursor();
2523 }
2524 }
2525
2526 edit(NUL, FALSE, (linenr_T)count1);
2527
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002528 /* If user has moved off this line, we don't know what to do, so do
2529 * nothing.
2530 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2531 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 return;
2533
2534 if (oap->block_mode)
2535 {
2536 struct block_def bd2;
2537
2538 /*
2539 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002540 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 * Don't do this when "$" used, end-of-line will have changed.
2542 */
2543 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2544 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2545 {
2546 if (oap->op_type == OP_APPEND)
2547 {
2548 pre_textlen += bd2.textlen - bd.textlen;
2549 if (bd2.endspaces)
2550 --bd2.textlen;
2551 }
2552 bd.textcol = bd2.textcol;
2553 bd.textlen = bd2.textlen;
2554 }
2555
2556 /*
2557 * Subsequent calls to ml_get() flush the firstline data - take a
2558 * copy of the required string.
2559 */
2560 firstline = ml_get(oap->start.lnum) + bd.textcol;
2561 if (oap->op_type == OP_APPEND)
2562 firstline += bd.textlen;
2563 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
2564 {
2565 ins_text = vim_strnsave(firstline, (int)ins_len);
2566 if (ins_text != NULL)
2567 {
2568 /* block handled here */
2569 if (u_save(oap->start.lnum,
2570 (linenr_T)(oap->end.lnum + 1)) == OK)
2571 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2572 &bd);
2573
2574 curwin->w_cursor.col = oap->start.col;
2575 check_cursor();
2576 vim_free(ins_text);
2577 }
2578 }
2579 }
2580}
2581#endif
2582
2583/*
2584 * op_change - handle a change operation
2585 *
2586 * return TRUE if edit() returns because of a CTRL-O command
2587 */
2588 int
2589op_change(oap)
2590 oparg_T *oap;
2591{
2592 colnr_T l;
2593 int retval;
2594#ifdef FEAT_VISUALEXTRA
2595 long offset;
2596 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002597 long ins_len;
2598 long pre_textlen = 0;
2599 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 char_u *firstline;
2601 char_u *ins_text, *newp, *oldp;
2602 struct block_def bd;
2603#endif
2604
2605 l = oap->start.col;
2606 if (oap->motion_type == MLINE)
2607 {
2608 l = 0;
2609#ifdef FEAT_SMARTINDENT
2610 if (!p_paste && curbuf->b_p_si
2611# ifdef FEAT_CINDENT
2612 && !curbuf->b_p_cin
2613# endif
2614 )
2615 can_si = TRUE; /* It's like opening a new line, do si */
2616#endif
2617 }
2618
2619 /* First delete the text in the region. In an empty buffer only need to
2620 * save for undo */
2621 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2622 {
2623 if (u_save_cursor() == FAIL)
2624 return FALSE;
2625 }
2626 else if (op_delete(oap) == FAIL)
2627 return FALSE;
2628
2629 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
2630 && !virtual_op)
2631 inc_cursor();
2632
2633#ifdef FEAT_VISUALEXTRA
2634 /* check for still on same line (<CR> in inserted text meaningless) */
2635 /* skip blank lines too */
2636 if (oap->block_mode)
2637 {
2638# ifdef FEAT_VIRTUALEDIT
2639 /* Add spaces before getting the current line length. */
2640 if (virtual_op && (curwin->w_cursor.coladd > 0
2641 || gchar_cursor() == NUL))
2642 coladvance_force(getviscol());
2643# endif
Bram Moolenaar53241da2007-09-13 20:41:32 +00002644 firstline = ml_get(oap->start.lnum);
2645 pre_textlen = (long)STRLEN(firstline);
2646 pre_indent = (long)(skipwhite(firstline) - firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 bd.textcol = curwin->w_cursor.col;
2648 }
2649#endif
2650
2651#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2652 if (oap->motion_type == MLINE)
2653 fix_indent();
2654#endif
2655
2656 retval = edit(NUL, FALSE, (linenr_T)1);
2657
2658#ifdef FEAT_VISUALEXTRA
2659 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002660 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002662 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002664 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002666 /* Auto-indenting may have changed the indent. If the cursor was past
2667 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002669 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002671 long new_indent = (long)(skipwhite(firstline) - firstline);
2672
2673 pre_textlen += new_indent - pre_indent;
2674 bd.textcol += new_indent - pre_indent;
2675 }
2676
2677 ins_len = (long)STRLEN(firstline) - pre_textlen;
2678 if (ins_len > 0)
2679 {
2680 /* Subsequent calls to ml_get() flush the firstline data - take a
2681 * copy of the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2683 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002684 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2686 linenr++)
2687 {
2688 block_prep(oap, &bd, linenr, TRUE);
2689 if (!bd.is_short || virtual_op)
2690 {
2691# ifdef FEAT_VIRTUALEDIT
2692 pos_T vpos;
2693
2694 /* If the block starts in virtual space, count the
2695 * initial coladd offset as part of "startspaces" */
2696 if (bd.is_short)
2697 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002698 vpos.lnum = linenr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 (void)getvpos(&vpos, oap->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 }
2701 else
2702 vpos.coladd = 0;
2703# endif
2704 oldp = ml_get(linenr);
2705 newp = alloc_check((unsigned)(STRLEN(oldp)
2706# ifdef FEAT_VIRTUALEDIT
2707 + vpos.coladd
2708# endif
2709 + ins_len + 1));
2710 if (newp == NULL)
2711 continue;
2712 /* copy up to block start */
2713 mch_memmove(newp, oldp, (size_t)bd.textcol);
2714 offset = bd.textcol;
2715# ifdef FEAT_VIRTUALEDIT
2716 copy_spaces(newp + offset, (size_t)vpos.coladd);
2717 offset += vpos.coladd;
2718# endif
2719 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2720 offset += ins_len;
2721 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002722 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 ml_replace(linenr, newp, FALSE);
2724 }
2725 }
2726 check_cursor();
2727
2728 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2729 }
2730 vim_free(ins_text);
2731 }
2732 }
2733#endif
2734
2735 return retval;
2736}
2737
2738/*
2739 * set all the yank registers to empty (called from main())
2740 */
2741 void
2742init_yank()
2743{
2744 int i;
2745
2746 for (i = 0; i < NUM_REGISTERS; ++i)
2747 y_regs[i].y_array = NULL;
2748}
2749
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002750#if defined(EXITFREE) || defined(PROTO)
2751 void
2752clear_registers()
2753{
2754 int i;
2755
2756 for (i = 0; i < NUM_REGISTERS; ++i)
2757 {
2758 y_current = &y_regs[i];
2759 if (y_current->y_array != NULL)
2760 free_yank_all();
2761 }
2762}
2763#endif
2764
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765/*
2766 * Free "n" lines from the current yank register.
2767 * Called for normal freeing and in case of error.
2768 */
2769 static void
2770free_yank(n)
2771 long n;
2772{
2773 if (y_current->y_array != NULL)
2774 {
2775 long i;
2776
2777 for (i = n; --i >= 0; )
2778 {
2779#ifdef AMIGA /* only for very slow machines */
2780 if ((i & 1023) == 1023) /* this may take a while */
2781 {
2782 /*
2783 * This message should never cause a hit-return message.
2784 * Overwrite this message with any next message.
2785 */
2786 ++no_wait_return;
2787 smsg((char_u *)_("freeing %ld lines"), i + 1);
2788 --no_wait_return;
2789 msg_didout = FALSE;
2790 msg_col = 0;
2791 }
2792#endif
2793 vim_free(y_current->y_array[i]);
2794 }
2795 vim_free(y_current->y_array);
2796 y_current->y_array = NULL;
2797#ifdef AMIGA
2798 if (n >= 1000)
2799 MSG("");
2800#endif
2801 }
2802}
2803
2804 static void
2805free_yank_all()
2806{
2807 free_yank(y_current->y_size);
2808}
2809
2810/*
2811 * Yank the text between "oap->start" and "oap->end" into a yank register.
2812 * If we are to append (uppercase register), we first yank into a new yank
2813 * register and then concatenate the old and the new one (so we keep the old
2814 * one in case of out-of-memory).
2815 *
2816 * return FAIL for failure, OK otherwise
2817 */
2818 int
2819op_yank(oap, deleting, mess)
2820 oparg_T *oap;
2821 int deleting;
2822 int mess;
2823{
2824 long y_idx; /* index in y_array[] */
2825 struct yankreg *curr; /* copy of y_current */
2826 struct yankreg newreg; /* new yank register when appending */
2827 char_u **new_ptr;
2828 linenr_T lnum; /* current line number */
2829 long j;
2830 int yanktype = oap->motion_type;
2831 long yanklines = oap->line_count;
2832 linenr_T yankendlnum = oap->end.lnum;
2833 char_u *p;
2834 char_u *pnew;
2835 struct block_def bd;
2836
2837 /* check for read-only register */
2838 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2839 {
2840 beep_flush();
2841 return FAIL;
2842 }
2843 if (oap->regname == '_') /* black hole: nothing to do */
2844 return OK;
2845
2846#ifdef FEAT_CLIPBOARD
2847 if (!clip_star.available && oap->regname == '*')
2848 oap->regname = 0;
2849 else if (!clip_plus.available && oap->regname == '+')
2850 oap->regname = 0;
2851#endif
2852
2853 if (!deleting) /* op_delete() already set y_current */
2854 get_yank_register(oap->regname, TRUE);
2855
2856 curr = y_current;
2857 /* append to existing contents */
2858 if (y_append && y_current->y_array != NULL)
2859 y_current = &newreg;
2860 else
2861 free_yank_all(); /* free previously yanked lines */
2862
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002863 /*
2864 * If the cursor was in column 1 before and after the movement, and the
2865 * operator is not inclusive, the yank is always linewise.
2866 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 if ( oap->motion_type == MCHAR
2868 && oap->start.col == 0
2869 && !oap->inclusive
2870#ifdef FEAT_VISUAL
2871 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00002872 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873#endif
2874 && oap->end.col == 0
2875 && yanklines > 1)
2876 {
2877 yanktype = MLINE;
2878 --yankendlnum;
2879 --yanklines;
2880 }
2881
2882 y_current->y_size = yanklines;
2883 y_current->y_type = yanktype; /* set the yank register type */
2884#ifdef FEAT_VISUAL
2885 y_current->y_width = 0;
2886#endif
2887 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
2888 yanklines), TRUE);
2889
2890 if (y_current->y_array == NULL)
2891 {
2892 y_current = curr;
2893 return FAIL;
2894 }
2895
2896 y_idx = 0;
2897 lnum = oap->start.lnum;
2898
2899#ifdef FEAT_VISUAL
2900 if (oap->block_mode)
2901 {
2902 /* Visual block mode */
2903 y_current->y_type = MBLOCK; /* set the yank register type */
2904 y_current->y_width = oap->end_vcol - oap->start_vcol;
2905
2906 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
2907 y_current->y_width--;
2908 }
2909#endif
2910
2911 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
2912 {
2913 switch (y_current->y_type)
2914 {
2915#ifdef FEAT_VISUAL
2916 case MBLOCK:
2917 block_prep(oap, &bd, lnum, FALSE);
2918 if (yank_copy_line(&bd, y_idx) == FAIL)
2919 goto fail;
2920 break;
2921#endif
2922
2923 case MLINE:
2924 if ((y_current->y_array[y_idx] =
2925 vim_strsave(ml_get(lnum))) == NULL)
2926 goto fail;
2927 break;
2928
2929 case MCHAR:
2930 {
2931 colnr_T startcol = 0, endcol = MAXCOL;
2932#ifdef FEAT_VIRTUALEDIT
2933 int is_oneChar = FALSE;
2934 colnr_T cs, ce;
2935#endif
2936 p = ml_get(lnum);
2937 bd.startspaces = 0;
2938 bd.endspaces = 0;
2939
2940 if (lnum == oap->start.lnum)
2941 {
2942 startcol = oap->start.col;
2943#ifdef FEAT_VIRTUALEDIT
2944 if (virtual_op)
2945 {
2946 getvcol(curwin, &oap->start, &cs, NULL, &ce);
2947 if (ce != cs && oap->start.coladd > 0)
2948 {
2949 /* Part of a tab selected -- but don't
2950 * double-count it. */
2951 bd.startspaces = (ce - cs + 1)
2952 - oap->start.coladd;
2953 startcol++;
2954 }
2955 }
2956#endif
2957 }
2958
2959 if (lnum == oap->end.lnum)
2960 {
2961 endcol = oap->end.col;
2962#ifdef FEAT_VIRTUALEDIT
2963 if (virtual_op)
2964 {
2965 getvcol(curwin, &oap->end, &cs, NULL, &ce);
2966 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
2967# ifdef FEAT_MBYTE
2968 /* Don't add space for double-wide
2969 * char; endcol will be on last byte
2970 * of multi-byte char. */
2971 && (*mb_head_off)(p, p + endcol) == 0
2972# endif
2973 ))
2974 {
2975 if (oap->start.lnum == oap->end.lnum
2976 && oap->start.col == oap->end.col)
2977 {
2978 /* Special case: inside a single char */
2979 is_oneChar = TRUE;
2980 bd.startspaces = oap->end.coladd
2981 - oap->start.coladd + oap->inclusive;
2982 endcol = startcol;
2983 }
2984 else
2985 {
2986 bd.endspaces = oap->end.coladd
2987 + oap->inclusive;
2988 endcol -= oap->inclusive;
2989 }
2990 }
2991 }
2992#endif
2993 }
2994 if (startcol > endcol
2995#ifdef FEAT_VIRTUALEDIT
2996 || is_oneChar
2997#endif
2998 )
2999 bd.textlen = 0;
3000 else
3001 {
3002 if (endcol == MAXCOL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003003 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004 bd.textlen = endcol - startcol + oap->inclusive;
3005 }
3006 bd.textstart = p + startcol;
3007 if (yank_copy_line(&bd, y_idx) == FAIL)
3008 goto fail;
3009 break;
3010 }
3011 /* NOTREACHED */
3012 }
3013 }
3014
3015 if (curr != y_current) /* append the new block to the old block */
3016 {
3017 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3018 (curr->y_size + y_current->y_size)), TRUE);
3019 if (new_ptr == NULL)
3020 goto fail;
3021 for (j = 0; j < curr->y_size; ++j)
3022 new_ptr[j] = curr->y_array[j];
3023 vim_free(curr->y_array);
3024 curr->y_array = new_ptr;
3025
3026 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3027 curr->y_type = MLINE;
3028
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003029 /* Concatenate the last line of the old block with the first line of
3030 * the new block, unless being Vi compatible. */
3031 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032 {
3033 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3034 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3035 if (pnew == NULL)
3036 {
3037 y_idx = y_current->y_size - 1;
3038 goto fail;
3039 }
3040 STRCPY(pnew, curr->y_array[--j]);
3041 STRCAT(pnew, y_current->y_array[0]);
3042 vim_free(curr->y_array[j]);
3043 vim_free(y_current->y_array[0]);
3044 curr->y_array[j++] = pnew;
3045 y_idx = 1;
3046 }
3047 else
3048 y_idx = 0;
3049 while (y_idx < y_current->y_size)
3050 curr->y_array[j++] = y_current->y_array[y_idx++];
3051 curr->y_size = j;
3052 vim_free(y_current->y_array);
3053 y_current = curr;
3054 }
3055 if (mess) /* Display message about yank? */
3056 {
3057 if (yanktype == MCHAR
3058#ifdef FEAT_VISUAL
3059 && !oap->block_mode
3060#endif
3061 && yanklines == 1)
3062 yanklines = 0;
3063 /* Some versions of Vi use ">=" here, some don't... */
3064 if (yanklines > p_report)
3065 {
3066 /* redisplay now, so message is not deleted */
3067 update_topline_redraw();
3068 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003069 {
3070#ifdef FEAT_VISUAL
3071 if (oap->block_mode)
3072 MSG(_("block of 1 line yanked"));
3073 else
3074#endif
3075 MSG(_("1 line yanked"));
3076 }
3077#ifdef FEAT_VISUAL
3078 else if (oap->block_mode)
3079 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
3080#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 else
3082 smsg((char_u *)_("%ld lines yanked"), yanklines);
3083 }
3084 }
3085
3086 /*
3087 * Set "'[" and "']" marks.
3088 */
3089 curbuf->b_op_start = oap->start;
3090 curbuf->b_op_end = oap->end;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003091 if (yanktype == MLINE
3092#ifdef FEAT_VISUAL
3093 && !oap->block_mode
3094#endif
3095 )
3096 {
3097 curbuf->b_op_start.col = 0;
3098 curbuf->b_op_end.col = MAXCOL;
3099 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100
3101#ifdef FEAT_CLIPBOARD
3102 /*
3103 * If we were yanking to the '*' register, send result to clipboard.
3104 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3105 * to the '*' register.
3106 */
3107 if (clip_star.available
3108 && (curr == &(y_regs[STAR_REGISTER])
3109 || (!deleting && oap->regname == 0 && clip_unnamed)))
3110 {
3111 if (curr != &(y_regs[STAR_REGISTER]))
3112 /* Copy the text from register 0 to the clipboard register. */
3113 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3114
3115 clip_own_selection(&clip_star);
3116 clip_gen_set_selection(&clip_star);
3117 }
3118
3119# ifdef FEAT_X11
3120 /*
3121 * If we were yanking to the '+' register, send result to selection.
3122 * Also copy to the '*' register, in case auto-select is off.
3123 */
3124 else if (clip_plus.available && curr == &(y_regs[PLUS_REGISTER]))
3125 {
3126 /* No need to copy to * register upon 'unnamed' now - see below */
3127 clip_own_selection(&clip_plus);
3128 clip_gen_set_selection(&clip_plus);
3129 if (!clip_isautosel())
3130 {
3131 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3132 clip_own_selection(&clip_star);
3133 clip_gen_set_selection(&clip_star);
3134 }
3135 }
3136# endif
3137#endif
3138
3139 return OK;
3140
3141fail: /* free the allocated lines */
3142 free_yank(y_idx + 1);
3143 y_current = curr;
3144 return FAIL;
3145}
3146
3147 static int
3148yank_copy_line(bd, y_idx)
3149 struct block_def *bd;
3150 long y_idx;
3151{
3152 char_u *pnew;
3153
3154 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3155 == NULL)
3156 return FAIL;
3157 y_current->y_array[y_idx] = pnew;
3158 copy_spaces(pnew, (size_t)bd->startspaces);
3159 pnew += bd->startspaces;
3160 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3161 pnew += bd->textlen;
3162 copy_spaces(pnew, (size_t)bd->endspaces);
3163 pnew += bd->endspaces;
3164 *pnew = NUL;
3165 return OK;
3166}
3167
3168#ifdef FEAT_CLIPBOARD
3169/*
3170 * Make a copy of the y_current register to register "reg".
3171 */
3172 static void
3173copy_yank_reg(reg)
3174 struct yankreg *reg;
3175{
3176 struct yankreg *curr = y_current;
3177 long j;
3178
3179 y_current = reg;
3180 free_yank_all();
3181 *y_current = *curr;
3182 y_current->y_array = (char_u **)lalloc_clear(
3183 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3184 if (y_current->y_array == NULL)
3185 y_current->y_size = 0;
3186 else
3187 for (j = 0; j < y_current->y_size; ++j)
3188 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3189 {
3190 free_yank(j);
3191 y_current->y_size = 0;
3192 break;
3193 }
3194 y_current = curr;
3195}
3196#endif
3197
3198/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003199 * Put contents of register "regname" into the text.
3200 * Caller must check "regname" to be valid!
3201 * "flags": PUT_FIXINDENT make indent look nice
3202 * PUT_CURSEND leave cursor after end of new text
3203 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 */
3205 void
3206do_put(regname, dir, count, flags)
3207 int regname;
3208 int dir; /* BACKWARD for 'P', FORWARD for 'p' */
3209 long count;
3210 int flags;
3211{
3212 char_u *ptr;
3213 char_u *newp, *oldp;
3214 int yanklen;
3215 int totlen = 0; /* init for gcc */
3216 linenr_T lnum;
3217 colnr_T col;
3218 long i; /* index in y_array[] */
3219 int y_type;
3220 long y_size;
3221#ifdef FEAT_VISUAL
3222 int oldlen;
3223 long y_width = 0;
3224 colnr_T vcol;
3225 int delcount;
3226 int incr = 0;
3227 long j;
3228 struct block_def bd;
3229#endif
3230 char_u **y_array = NULL;
3231 long nr_lines = 0;
3232 pos_T new_cursor;
3233 int indent;
3234 int orig_indent = 0; /* init for gcc */
3235 int indent_diff = 0; /* init for gcc */
3236 int first_indent = TRUE;
3237 int lendiff = 0;
3238 pos_T old_pos;
3239 char_u *insert_string = NULL;
3240 int allocated = FALSE;
3241 long cnt;
3242
3243#ifdef FEAT_CLIPBOARD
3244 /* Adjust register name for "unnamed" in 'clipboard'. */
3245 adjust_clip_reg(&regname);
3246 (void)may_get_selection(regname);
3247#endif
3248
3249 if (flags & PUT_FIXINDENT)
3250 orig_indent = get_indent();
3251
3252 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3253 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3254
3255 /*
3256 * Using inserted text works differently, because the register includes
3257 * special characters (newlines, etc.).
3258 */
3259 if (regname == '.')
3260 {
3261 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3262 (count == -1 ? 'O' : 'i')), count, FALSE);
3263 /* Putting the text is done later, so can't really move the cursor to
3264 * the next character. Use "l" to simulate it. */
3265 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3266 stuffcharReadbuff('l');
3267 return;
3268 }
3269
3270 /*
3271 * For special registers '%' (file name), '#' (alternate file name) and
3272 * ':' (last command line), etc. we have to create a fake yank register.
3273 */
3274 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3275 {
3276 if (insert_string == NULL)
3277 return;
3278 }
3279
3280 if (insert_string != NULL)
3281 {
3282 y_type = MCHAR;
3283#ifdef FEAT_EVAL
3284 if (regname == '=')
3285 {
3286 /* For the = register we need to split the string at NL
3287 * characters. */
3288 /* Loop twice: count the number of lines and save them. */
3289 for (;;)
3290 {
3291 y_size = 0;
3292 ptr = insert_string;
3293 while (ptr != NULL)
3294 {
3295 if (y_array != NULL)
3296 y_array[y_size] = ptr;
3297 ++y_size;
3298 ptr = vim_strchr(ptr, '\n');
3299 if (ptr != NULL)
3300 {
3301 if (y_array != NULL)
3302 *ptr = NUL;
3303 ++ptr;
3304 /* A trailing '\n' makes the string linewise */
3305 if (*ptr == NUL)
3306 {
3307 y_type = MLINE;
3308 break;
3309 }
3310 }
3311 }
3312 if (y_array != NULL)
3313 break;
3314 y_array = (char_u **)alloc((unsigned)
3315 (y_size * sizeof(char_u *)));
3316 if (y_array == NULL)
3317 goto end;
3318 }
3319 }
3320 else
3321#endif
3322 {
3323 y_size = 1; /* use fake one-line yank register */
3324 y_array = &insert_string;
3325 }
3326 }
3327 else
3328 {
3329 get_yank_register(regname, FALSE);
3330
3331 y_type = y_current->y_type;
3332#ifdef FEAT_VISUAL
3333 y_width = y_current->y_width;
3334#endif
3335 y_size = y_current->y_size;
3336 y_array = y_current->y_array;
3337 }
3338
3339#ifdef FEAT_VISUAL
3340 if (y_type == MLINE)
3341 {
3342 if (flags & PUT_LINE_SPLIT)
3343 {
3344 /* "p" or "P" in Visual mode: split the lines to put the text in
3345 * between. */
3346 if (u_save_cursor() == FAIL)
3347 goto end;
3348 ptr = vim_strsave(ml_get_cursor());
3349 if (ptr == NULL)
3350 goto end;
3351 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3352 vim_free(ptr);
3353
3354 ptr = vim_strnsave(ml_get_curline(), curwin->w_cursor.col);
3355 if (ptr == NULL)
3356 goto end;
3357 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3358 ++nr_lines;
3359 dir = FORWARD;
3360 }
3361 if (flags & PUT_LINE_FORWARD)
3362 {
3363 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003364 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 dir = FORWARD;
3366 }
3367 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3368 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3369 }
3370#endif
3371
3372 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3373 y_type = MLINE;
3374
3375 if (y_size == 0 || y_array == NULL)
3376 {
3377 EMSG2(_("E353: Nothing in register %s"),
3378 regname == 0 ? (char_u *)"\"" : transchar(regname));
3379 goto end;
3380 }
3381
3382#ifdef FEAT_VISUAL
3383 if (y_type == MBLOCK)
3384 {
3385 lnum = curwin->w_cursor.lnum + y_size + 1;
3386 if (lnum > curbuf->b_ml.ml_line_count)
3387 lnum = curbuf->b_ml.ml_line_count + 1;
3388 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3389 goto end;
3390 }
3391 else
3392#endif
3393 if (y_type == MLINE)
3394 {
3395 lnum = curwin->w_cursor.lnum;
3396#ifdef FEAT_FOLDING
3397 /* Correct line number for closed fold. Don't move the cursor yet,
3398 * u_save() uses it. */
3399 if (dir == BACKWARD)
3400 (void)hasFolding(lnum, &lnum, NULL);
3401 else
3402 (void)hasFolding(lnum, NULL, &lnum);
3403#endif
3404 if (dir == FORWARD)
3405 ++lnum;
3406 if (u_save(lnum - 1, lnum) == FAIL)
3407 goto end;
3408#ifdef FEAT_FOLDING
3409 if (dir == FORWARD)
3410 curwin->w_cursor.lnum = lnum - 1;
3411 else
3412 curwin->w_cursor.lnum = lnum;
3413 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3414#endif
3415 }
3416 else if (u_save_cursor() == FAIL)
3417 goto end;
3418
3419 yanklen = (int)STRLEN(y_array[0]);
3420
3421#ifdef FEAT_VIRTUALEDIT
3422 if (ve_flags == VE_ALL && y_type == MCHAR)
3423 {
3424 if (gchar_cursor() == TAB)
3425 {
3426 /* Don't need to insert spaces when "p" on the last position of a
3427 * tab or "P" on the first position. */
3428 if (dir == FORWARD
3429 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3430 : curwin->w_cursor.coladd > 0)
3431 coladvance_force(getviscol());
3432 else
3433 curwin->w_cursor.coladd = 0;
3434 }
3435 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3436 coladvance_force(getviscol() + (dir == FORWARD));
3437 }
3438#endif
3439
3440 lnum = curwin->w_cursor.lnum;
3441 col = curwin->w_cursor.col;
3442
3443#ifdef FEAT_VISUAL
3444 /*
3445 * Block mode
3446 */
3447 if (y_type == MBLOCK)
3448 {
3449 char c = gchar_cursor();
3450 colnr_T endcol2 = 0;
3451
3452 if (dir == FORWARD && c != NUL)
3453 {
3454#ifdef FEAT_VIRTUALEDIT
3455 if (ve_flags == VE_ALL)
3456 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3457 else
3458#endif
3459 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3460
3461#ifdef FEAT_MBYTE
3462 if (has_mbyte)
3463 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003464 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 else
3466#endif
3467#ifdef FEAT_VIRTUALEDIT
3468 if (c != TAB || ve_flags != VE_ALL)
3469#endif
3470 ++curwin->w_cursor.col;
3471 ++col;
3472 }
3473 else
3474 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3475
3476#ifdef FEAT_VIRTUALEDIT
3477 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003478 if (ve_flags == VE_ALL
3479 && (curwin->w_cursor.coladd > 0
3480 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 {
3482 if (dir == FORWARD && c == NUL)
3483 ++col;
3484 if (dir != FORWARD && c != NUL)
3485 ++curwin->w_cursor.col;
3486 if (c == TAB)
3487 {
3488 if (dir == BACKWARD && curwin->w_cursor.col)
3489 curwin->w_cursor.col--;
3490 if (dir == FORWARD && col - 1 == endcol2)
3491 curwin->w_cursor.col++;
3492 }
3493 }
3494 curwin->w_cursor.coladd = 0;
3495#endif
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003496 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 for (i = 0; i < y_size; ++i)
3498 {
3499 int spaces;
3500 char shortline;
3501
3502 bd.startspaces = 0;
3503 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 vcol = 0;
3505 delcount = 0;
3506
3507 /* add a new line */
3508 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3509 {
3510 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3511 (colnr_T)1, FALSE) == FAIL)
3512 break;
3513 ++nr_lines;
3514 }
3515 /* get the old line and advance to the position to insert at */
3516 oldp = ml_get_curline();
3517 oldlen = (int)STRLEN(oldp);
3518 for (ptr = oldp; vcol < col && *ptr; )
3519 {
3520 /* Count a tab for what it's worth (if list mode not on) */
3521 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
3522 vcol += incr;
3523 }
3524 bd.textcol = (colnr_T)(ptr - oldp);
3525
3526 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3527
3528 if (vcol < col) /* line too short, padd with spaces */
3529 bd.startspaces = col - vcol;
3530 else if (vcol > col)
3531 {
3532 bd.endspaces = vcol - col;
3533 bd.startspaces = incr - bd.endspaces;
3534 --bd.textcol;
3535 delcount = 1;
3536#ifdef FEAT_MBYTE
3537 if (has_mbyte)
3538 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3539#endif
3540 if (oldp[bd.textcol] != TAB)
3541 {
3542 /* Only a Tab can be split into spaces. Other
3543 * characters will have to be moved to after the
3544 * block, causing misalignment. */
3545 delcount = 0;
3546 bd.endspaces = 0;
3547 }
3548 }
3549
3550 yanklen = (int)STRLEN(y_array[i]);
3551
3552 /* calculate number of spaces required to fill right side of block*/
3553 spaces = y_width + 1;
3554 for (j = 0; j < yanklen; j++)
3555 spaces -= lbr_chartabsize(&y_array[i][j], 0);
3556 if (spaces < 0)
3557 spaces = 0;
3558
3559 /* insert the new text */
3560 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3561 newp = alloc_check((unsigned)totlen + oldlen + 1);
3562 if (newp == NULL)
3563 break;
3564 /* copy part up to cursor to new line */
3565 ptr = newp;
3566 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3567 ptr += bd.textcol;
3568 /* may insert some spaces before the new text */
3569 copy_spaces(ptr, (size_t)bd.startspaces);
3570 ptr += bd.startspaces;
3571 /* insert the new text */
3572 for (j = 0; j < count; ++j)
3573 {
3574 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3575 ptr += yanklen;
3576
3577 /* insert block's trailing spaces only if there's text behind */
3578 if ((j < count - 1 || !shortline) && spaces)
3579 {
3580 copy_spaces(ptr, (size_t)spaces);
3581 ptr += spaces;
3582 }
3583 }
3584 /* may insert some spaces after the new text */
3585 copy_spaces(ptr, (size_t)bd.endspaces);
3586 ptr += bd.endspaces;
3587 /* move the text after the cursor to the end of the line. */
3588 mch_memmove(ptr, oldp + bd.textcol + delcount,
3589 (size_t)(oldlen - bd.textcol - delcount + 1));
3590 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3591
3592 ++curwin->w_cursor.lnum;
3593 if (i == 0)
3594 curwin->w_cursor.col += bd.startspaces;
3595 }
3596
3597 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3598
3599 /* Set '[ mark. */
3600 curbuf->b_op_start = curwin->w_cursor;
3601 curbuf->b_op_start.lnum = lnum;
3602
3603 /* adjust '] mark */
3604 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3605 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003606# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003608# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 if (flags & PUT_CURSEND)
3610 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003611 colnr_T len;
3612
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 curwin->w_cursor = curbuf->b_op_end;
3614 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003615
3616 /* in Insert mode we might be after the NUL, correct for that */
3617 len = (colnr_T)STRLEN(ml_get_curline());
3618 if (curwin->w_cursor.col > len)
3619 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 }
3621 else
3622 curwin->w_cursor.lnum = lnum;
3623 }
3624 else
3625#endif
3626 {
3627 /*
3628 * Character or Line mode
3629 */
3630 if (y_type == MCHAR)
3631 {
3632 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3633 * char */
3634 if (dir == FORWARD && gchar_cursor() != NUL)
3635 {
3636#ifdef FEAT_MBYTE
3637 if (has_mbyte)
3638 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003639 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640
3641 /* put it on the next of the multi-byte character. */
3642 col += bytelen;
3643 if (yanklen)
3644 {
3645 curwin->w_cursor.col += bytelen;
3646 curbuf->b_op_end.col += bytelen;
3647 }
3648 }
3649 else
3650#endif
3651 {
3652 ++col;
3653 if (yanklen)
3654 {
3655 ++curwin->w_cursor.col;
3656 ++curbuf->b_op_end.col;
3657 }
3658 }
3659 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 curbuf->b_op_start = curwin->w_cursor;
3661 }
3662 /*
3663 * Line mode: BACKWARD is the same as FORWARD on the previous line
3664 */
3665 else if (dir == BACKWARD)
3666 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003667 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668
3669 /*
3670 * simple case: insert into current line
3671 */
3672 if (y_type == MCHAR && y_size == 1)
3673 {
3674 totlen = count * yanklen;
3675 if (totlen)
3676 {
3677 oldp = ml_get(lnum);
3678 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3679 if (newp == NULL)
3680 goto end; /* alloc() will give error message */
3681 mch_memmove(newp, oldp, (size_t)col);
3682 ptr = newp + col;
3683 for (i = 0; i < count; ++i)
3684 {
3685 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3686 ptr += yanklen;
3687 }
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00003688 STRMOVE(ptr, oldp + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 ml_replace(lnum, newp, FALSE);
3690 /* Put cursor on last putted char. */
3691 curwin->w_cursor.col += (colnr_T)(totlen - 1);
3692 }
3693 curbuf->b_op_end = curwin->w_cursor;
3694 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3695 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3696 ++curwin->w_cursor.col;
3697 changed_bytes(lnum, col);
3698 }
3699 else
3700 {
3701 /*
3702 * Insert at least one line. When y_type is MCHAR, break the first
3703 * line in two.
3704 */
3705 for (cnt = 1; cnt <= count; ++cnt)
3706 {
3707 i = 0;
3708 if (y_type == MCHAR)
3709 {
3710 /*
3711 * Split the current line in two at the insert position.
3712 * First insert y_array[size - 1] in front of second line.
3713 * Then append y_array[0] to first line.
3714 */
3715 lnum = new_cursor.lnum;
3716 ptr = ml_get(lnum) + col;
3717 totlen = (int)STRLEN(y_array[y_size - 1]);
3718 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3719 if (newp == NULL)
3720 goto error;
3721 STRCPY(newp, y_array[y_size - 1]);
3722 STRCAT(newp, ptr);
3723 /* insert second line */
3724 ml_append(lnum, newp, (colnr_T)0, FALSE);
3725 vim_free(newp);
3726
3727 oldp = ml_get(lnum);
3728 newp = alloc_check((unsigned)(col + yanklen + 1));
3729 if (newp == NULL)
3730 goto error;
3731 /* copy first part of line */
3732 mch_memmove(newp, oldp, (size_t)col);
3733 /* append to first line */
3734 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3735 ml_replace(lnum, newp, FALSE);
3736
3737 curwin->w_cursor.lnum = lnum;
3738 i = 1;
3739 }
3740
3741 for (; i < y_size; ++i)
3742 {
3743 if ((y_type != MCHAR || i < y_size - 1)
3744 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3745 == FAIL)
3746 goto error;
3747 lnum++;
3748 ++nr_lines;
3749 if (flags & PUT_FIXINDENT)
3750 {
3751 old_pos = curwin->w_cursor;
3752 curwin->w_cursor.lnum = lnum;
3753 ptr = ml_get(lnum);
3754 if (cnt == count && i == y_size - 1)
3755 lendiff = (int)STRLEN(ptr);
3756#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3757 if (*ptr == '#' && preprocs_left())
3758 indent = 0; /* Leave # lines at start */
3759 else
3760#endif
3761 if (*ptr == NUL)
3762 indent = 0; /* Ignore empty lines */
3763 else if (first_indent)
3764 {
3765 indent_diff = orig_indent - get_indent();
3766 indent = orig_indent;
3767 first_indent = FALSE;
3768 }
3769 else if ((indent = get_indent() + indent_diff) < 0)
3770 indent = 0;
3771 (void)set_indent(indent, 0);
3772 curwin->w_cursor = old_pos;
3773 /* remember how many chars were removed */
3774 if (cnt == count && i == y_size - 1)
3775 lendiff -= (int)STRLEN(ml_get(lnum));
3776 }
3777 }
3778 }
3779
3780error:
3781 /* Adjust marks. */
3782 if (y_type == MLINE)
3783 {
3784 curbuf->b_op_start.col = 0;
3785 if (dir == FORWARD)
3786 curbuf->b_op_start.lnum++;
3787 }
3788 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
3789 (linenr_T)MAXLNUM, nr_lines, 0L);
3790
3791 /* note changed text for displaying and folding */
3792 if (y_type == MCHAR)
3793 changed_lines(curwin->w_cursor.lnum, col,
3794 curwin->w_cursor.lnum + 1, nr_lines);
3795 else
3796 changed_lines(curbuf->b_op_start.lnum, 0,
3797 curbuf->b_op_start.lnum, nr_lines);
3798
3799 /* put '] mark at last inserted character */
3800 curbuf->b_op_end.lnum = lnum;
3801 /* correct length for change in indent */
3802 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3803 if (col > 1)
3804 curbuf->b_op_end.col = col - 1;
3805 else
3806 curbuf->b_op_end.col = 0;
3807
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003808 if (flags & PUT_CURSLINE)
3809 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003810 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003811 curwin->w_cursor.lnum = lnum;
3812 beginline(BL_WHITE | BL_FIX);
3813 }
3814 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 {
3816 /* put cursor after inserted text */
3817 if (y_type == MLINE)
3818 {
3819 if (lnum >= curbuf->b_ml.ml_line_count)
3820 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3821 else
3822 curwin->w_cursor.lnum = lnum + 1;
3823 curwin->w_cursor.col = 0;
3824 }
3825 else
3826 {
3827 curwin->w_cursor.lnum = lnum;
3828 curwin->w_cursor.col = col;
3829 }
3830 }
3831 else if (y_type == MLINE)
3832 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003833 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 curwin->w_cursor.col = 0;
3835 if (dir == FORWARD)
3836 ++curwin->w_cursor.lnum;
3837 beginline(BL_WHITE | BL_FIX);
3838 }
3839 else /* put cursor on first inserted character */
3840 curwin->w_cursor = new_cursor;
3841 }
3842 }
3843
3844 msgmore(nr_lines);
3845 curwin->w_set_curswant = TRUE;
3846
3847end:
3848 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003850 if (regname == '=')
3851 vim_free(y_array);
3852
Bram Moolenaar677ee682005-01-27 14:41:15 +00003853 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003854 adjust_cursor_eol();
3855}
3856
3857/*
3858 * When the cursor is on the NUL past the end of the line and it should not be
3859 * there move it left.
3860 */
3861 void
3862adjust_cursor_eol()
3863{
3864 if (curwin->w_cursor.col > 0
3865 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00003866#ifdef FEAT_VIRTUALEDIT
3867 && (ve_flags & VE_ONEMORE) == 0
3868#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 && !(restart_edit || (State & INSERT)))
3870 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00003871 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00003872 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003873
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874#ifdef FEAT_VIRTUALEDIT
3875 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00003876 {
3877 colnr_T scol, ecol;
3878
3879 /* Coladd is set to the width of the last character. */
3880 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
3881 curwin->w_cursor.coladd = ecol - scol + 1;
3882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883#endif
3884 }
3885}
3886
3887#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
3888/*
3889 * Return TRUE if lines starting with '#' should be left aligned.
3890 */
3891 int
3892preprocs_left()
3893{
3894 return
3895# ifdef FEAT_SMARTINDENT
3896# ifdef FEAT_CINDENT
3897 (curbuf->b_p_si && !curbuf->b_p_cin) ||
3898# else
3899 curbuf->b_p_si
3900# endif
3901# endif
3902# ifdef FEAT_CINDENT
3903 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE))
3904# endif
3905 ;
3906}
3907#endif
3908
3909/* Return the character name of the register with the given number */
3910 int
3911get_register_name(num)
3912 int num;
3913{
3914 if (num == -1)
3915 return '"';
3916 else if (num < 10)
3917 return num + '0';
3918 else if (num == DELETION_REGISTER)
3919 return '-';
3920#ifdef FEAT_CLIPBOARD
3921 else if (num == STAR_REGISTER)
3922 return '*';
3923 else if (num == PLUS_REGISTER)
3924 return '+';
3925#endif
3926 else
3927 {
3928#ifdef EBCDIC
3929 int i;
3930
3931 /* EBCDIC is really braindead ... */
3932 i = 'a' + (num - 10);
3933 if (i > 'i')
3934 i += 7;
3935 if (i > 'r')
3936 i += 8;
3937 return i;
3938#else
3939 return num + 'a' - 10;
3940#endif
3941 }
3942}
3943
3944/*
3945 * ":dis" and ":registers": Display the contents of the yank registers.
3946 */
3947 void
3948ex_display(eap)
3949 exarg_T *eap;
3950{
3951 int i, n;
3952 long j;
3953 char_u *p;
3954 struct yankreg *yb;
3955 int name;
3956 int attr;
3957 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003958#ifdef FEAT_MBYTE
3959 int clen;
3960#else
3961# define clen 1
3962#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963
3964 if (arg != NULL && *arg == NUL)
3965 arg = NULL;
3966 attr = hl_attr(HLF_8);
3967
3968 /* Highlight title */
3969 MSG_PUTS_TITLE(_("\n--- Registers ---"));
3970 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
3971 {
3972 name = get_register_name(i);
3973 if (arg != NULL && vim_strchr(arg, name) == NULL)
3974 continue; /* did not ask for this register */
3975
3976#ifdef FEAT_CLIPBOARD
3977 /* Adjust register name for "unnamed" in 'clipboard'.
3978 * When it's a clipboard register, fill it with the current contents
3979 * of the clipboard. */
3980 adjust_clip_reg(&name);
3981 (void)may_get_selection(name);
3982#endif
3983
3984 if (i == -1)
3985 {
3986 if (y_previous != NULL)
3987 yb = y_previous;
3988 else
3989 yb = &(y_regs[0]);
3990 }
3991 else
3992 yb = &(y_regs[i]);
3993 if (yb->y_array != NULL)
3994 {
3995 msg_putchar('\n');
3996 msg_putchar('"');
3997 msg_putchar(name);
3998 MSG_PUTS(" ");
3999
4000 n = (int)Columns - 6;
4001 for (j = 0; j < yb->y_size && n > 1; ++j)
4002 {
4003 if (j)
4004 {
4005 MSG_PUTS_ATTR("^J", attr);
4006 n -= 2;
4007 }
4008 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4009 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004011 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004012#endif
4013 msg_outtrans_len(p, clen);
4014#ifdef FEAT_MBYTE
4015 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016#endif
4017 }
4018 }
4019 if (n > 1 && yb->y_type == MLINE)
4020 MSG_PUTS_ATTR("^J", attr);
4021 out_flush(); /* show one line at a time */
4022 }
4023 ui_breakcheck();
4024 }
4025
4026 /*
4027 * display last inserted text
4028 */
4029 if ((p = get_last_insert()) != NULL
4030 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4031 {
4032 MSG_PUTS("\n\". ");
4033 dis_msg(p, TRUE);
4034 }
4035
4036 /*
4037 * display last command line
4038 */
4039 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4040 && !got_int)
4041 {
4042 MSG_PUTS("\n\": ");
4043 dis_msg(last_cmdline, FALSE);
4044 }
4045
4046 /*
4047 * display current file name
4048 */
4049 if (curbuf->b_fname != NULL
4050 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4051 {
4052 MSG_PUTS("\n\"% ");
4053 dis_msg(curbuf->b_fname, FALSE);
4054 }
4055
4056 /*
4057 * display alternate file name
4058 */
4059 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4060 {
4061 char_u *fname;
4062 linenr_T dummy;
4063
4064 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4065 {
4066 MSG_PUTS("\n\"# ");
4067 dis_msg(fname, FALSE);
4068 }
4069 }
4070
4071 /*
4072 * display last search pattern
4073 */
4074 if (last_search_pat() != NULL
4075 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4076 {
4077 MSG_PUTS("\n\"/ ");
4078 dis_msg(last_search_pat(), FALSE);
4079 }
4080
4081#ifdef FEAT_EVAL
4082 /*
4083 * display last used expression
4084 */
4085 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4086 && !got_int)
4087 {
4088 MSG_PUTS("\n\"= ");
4089 dis_msg(expr_line, FALSE);
4090 }
4091#endif
4092}
4093
4094/*
4095 * display a string for do_dis()
4096 * truncate at end of screen line
4097 */
4098 static void
4099dis_msg(p, skip_esc)
4100 char_u *p;
4101 int skip_esc; /* if TRUE, ignore trailing ESC */
4102{
4103 int n;
4104#ifdef FEAT_MBYTE
4105 int l;
4106#endif
4107
4108 n = (int)Columns - 6;
4109 while (*p != NUL
4110 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4111 && (n -= ptr2cells(p)) >= 0)
4112 {
4113#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004114 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 {
4116 msg_outtrans_len(p, l);
4117 p += l;
4118 }
4119 else
4120#endif
4121 msg_outtrans_len(p++, 1);
4122 }
4123 ui_breakcheck();
4124}
4125
4126/*
4127 * join 'count' lines (minimal 2), including u_save()
4128 */
4129 void
4130do_do_join(count, insert_space)
4131 long count;
4132 int insert_space;
4133{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004134 colnr_T col = MAXCOL;
4135
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4137 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4138 return;
4139
4140 while (--count > 0)
4141 {
4142 line_breakcheck();
4143 if (got_int || do_join(insert_space) == FAIL)
4144 {
4145 beep_flush();
4146 break;
4147 }
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004148 if (col == MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4149 col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 }
4151
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004152 /* Vi compatible: use the column of the first join */
4153 if (col != MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4154 curwin->w_cursor.col = col;
4155
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156#if 0
4157 /*
4158 * Need to update the screen if the line where the cursor is became too
4159 * long to fit on the screen.
4160 */
4161 update_topline_redraw();
4162#endif
4163}
4164
4165/*
4166 * Join two lines at the cursor position.
4167 * "redraw" is TRUE when the screen should be updated.
4168 * Caller must have setup for undo.
4169 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004170 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171 */
4172 int
4173do_join(insert_space)
4174 int insert_space;
4175{
4176 char_u *curr;
4177 char_u *next, *next_start;
4178 char_u *newp;
4179 int endcurr1, endcurr2;
4180 int currsize; /* size of the current line */
4181 int nextsize; /* size of the next line */
4182 int spaces; /* number of spaces to insert */
4183 linenr_T t;
4184
4185 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4186 return FAIL; /* can't join on last line */
4187
4188 curr = ml_get_curline();
4189 currsize = (int)STRLEN(curr);
4190 endcurr1 = endcurr2 = NUL;
4191 if (insert_space && currsize > 0)
4192 {
4193#ifdef FEAT_MBYTE
4194 if (has_mbyte)
4195 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004196 next = curr + currsize;
4197 mb_ptr_back(curr, next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 endcurr1 = (*mb_ptr2char)(next);
4199 if (next > curr)
4200 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004201 mb_ptr_back(curr, next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 endcurr2 = (*mb_ptr2char)(next);
4203 }
4204 }
4205 else
4206#endif
4207 {
4208 endcurr1 = *(curr + currsize - 1);
4209 if (currsize > 1)
4210 endcurr2 = *(curr + currsize - 2);
4211 }
4212 }
4213
4214 next = next_start = ml_get((linenr_T)(curwin->w_cursor.lnum + 1));
4215 spaces = 0;
4216 if (insert_space)
4217 {
4218 next = skipwhite(next);
4219 if (*next != ')' && currsize != 0 && endcurr1 != TAB
4220#ifdef FEAT_MBYTE
4221 && (!has_format_option(FO_MBYTE_JOIN)
4222 || (mb_ptr2char(next) < 0x100 && endcurr1 < 0x100))
4223 && (!has_format_option(FO_MBYTE_JOIN2)
4224 || mb_ptr2char(next) < 0x100 || endcurr1 < 0x100)
4225#endif
4226 )
4227 {
4228 /* don't add a space if the line is ending in a space */
4229 if (endcurr1 == ' ')
4230 endcurr1 = endcurr2;
4231 else
4232 ++spaces;
4233 /* extra space when 'joinspaces' set and line ends in '.' */
4234 if ( p_js
4235 && (endcurr1 == '.'
4236 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4237 && (endcurr1 == '?' || endcurr1 == '!'))))
4238 ++spaces;
4239 }
4240 }
4241 nextsize = (int)STRLEN(next);
4242
4243 newp = alloc_check((unsigned)(currsize + nextsize + spaces + 1));
4244 if (newp == NULL)
4245 return FAIL;
4246
4247 /*
4248 * Insert the next line first, because we already have that pointer.
4249 * Curr has to be obtained again, because getting next will have
4250 * invalidated it.
4251 */
4252 mch_memmove(newp + currsize + spaces, next, (size_t)(nextsize + 1));
4253
4254 curr = ml_get_curline();
4255 mch_memmove(newp, curr, (size_t)currsize);
4256
4257 copy_spaces(newp + currsize, (size_t)spaces);
4258
4259 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4260
4261 /* Only report the change in the first line here, del_lines() will report
4262 * the deleted line. */
4263 changed_lines(curwin->w_cursor.lnum, currsize,
4264 curwin->w_cursor.lnum + 1, 0L);
4265
4266 /*
4267 * Delete the following line. To do this we move the cursor there
4268 * briefly, and then move it back. After del_lines() the cursor may
4269 * have moved up (last line deleted), so the current lnum is kept in t.
4270 *
4271 * Move marks from the deleted line to the joined line, adjusting the
4272 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4273 * should not really be a problem.
4274 */
4275 t = curwin->w_cursor.lnum;
4276 mark_col_adjust(t + 1, (colnr_T)0, (linenr_T)-1,
4277 (long)(currsize + spaces - (next - next_start)));
4278 ++curwin->w_cursor.lnum;
4279 del_lines(1L, FALSE);
4280 curwin->w_cursor.lnum = t;
4281
4282 /*
4283 * go to first character of the joined line
4284 */
4285 curwin->w_cursor.col = currsize;
4286 check_cursor_col();
4287#ifdef FEAT_VIRTUALEDIT
4288 curwin->w_cursor.coladd = 0;
4289#endif
4290 curwin->w_set_curswant = TRUE;
4291
4292 return OK;
4293}
4294
4295#ifdef FEAT_COMMENTS
4296/*
4297 * Return TRUE if the two comment leaders given are the same. "lnum" is
4298 * the first line. White-space is ignored. Note that the whole of
4299 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4300 */
4301 static int
4302same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
4303 linenr_T lnum;
4304 int leader1_len;
4305 char_u *leader1_flags;
4306 int leader2_len;
4307 char_u *leader2_flags;
4308{
4309 int idx1 = 0, idx2 = 0;
4310 char_u *p;
4311 char_u *line1;
4312 char_u *line2;
4313
4314 if (leader1_len == 0)
4315 return (leader2_len == 0);
4316
4317 /*
4318 * If first leader has 'f' flag, the lines can be joined only if the
4319 * second line does not have a leader.
4320 * If first leader has 'e' flag, the lines can never be joined.
4321 * If fist leader has 's' flag, the lines can only be joined if there is
4322 * some text after it and the second line has the 'm' flag.
4323 */
4324 if (leader1_flags != NULL)
4325 {
4326 for (p = leader1_flags; *p && *p != ':'; ++p)
4327 {
4328 if (*p == COM_FIRST)
4329 return (leader2_len == 0);
4330 if (*p == COM_END)
4331 return FALSE;
4332 if (*p == COM_START)
4333 {
4334 if (*(ml_get(lnum) + leader1_len) == NUL)
4335 return FALSE;
4336 if (leader2_flags == NULL || leader2_len == 0)
4337 return FALSE;
4338 for (p = leader2_flags; *p && *p != ':'; ++p)
4339 if (*p == COM_MIDDLE)
4340 return TRUE;
4341 return FALSE;
4342 }
4343 }
4344 }
4345
4346 /*
4347 * Get current line and next line, compare the leaders.
4348 * The first line has to be saved, only one line can be locked at a time.
4349 */
4350 line1 = vim_strsave(ml_get(lnum));
4351 if (line1 != NULL)
4352 {
4353 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4354 ;
4355 line2 = ml_get(lnum + 1);
4356 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4357 {
4358 if (!vim_iswhite(line2[idx2]))
4359 {
4360 if (line1[idx1++] != line2[idx2])
4361 break;
4362 }
4363 else
4364 while (vim_iswhite(line1[idx1]))
4365 ++idx1;
4366 }
4367 vim_free(line1);
4368 }
4369 return (idx2 == leader2_len && idx1 == leader1_len);
4370}
4371#endif
4372
4373/*
4374 * implementation of the format operator 'gq'
4375 */
4376 void
4377op_format(oap, keep_cursor)
4378 oparg_T *oap;
4379 int keep_cursor; /* keep cursor on same text char */
4380{
4381 long old_line_count = curbuf->b_ml.ml_line_count;
4382
4383 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4384 * can put it back there. */
4385 curwin->w_cursor = oap->cursor_start;
4386
4387 if (u_save((linenr_T)(oap->start.lnum - 1),
4388 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4389 return;
4390 curwin->w_cursor = oap->start;
4391
4392#ifdef FEAT_VISUAL
4393 if (oap->is_VIsual)
4394 /* When there is no change: need to remove the Visual selection */
4395 redraw_curbuf_later(INVERTED);
4396#endif
4397
4398 /* Set '[ mark at the start of the formatted area */
4399 curbuf->b_op_start = oap->start;
4400
4401 /* For "gw" remember the cursor position and put it back below (adjusted
4402 * for joined and split lines). */
4403 if (keep_cursor)
4404 saved_cursor = oap->cursor_start;
4405
Bram Moolenaar81a82092008-03-12 16:27:00 +00004406 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407
4408 /*
4409 * Leave the cursor at the first non-blank of the last formatted line.
4410 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4411 * line, so "." will do the next lines.
4412 */
4413 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4414 ++curwin->w_cursor.lnum;
4415 beginline(BL_WHITE | BL_FIX);
4416 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4417 msgmore(old_line_count);
4418
4419 /* put '] mark on the end of the formatted area */
4420 curbuf->b_op_end = curwin->w_cursor;
4421
4422 if (keep_cursor)
4423 {
4424 curwin->w_cursor = saved_cursor;
4425 saved_cursor.lnum = 0;
4426 }
4427
4428#ifdef FEAT_VISUAL
4429 if (oap->is_VIsual)
4430 {
4431 win_T *wp;
4432
4433 FOR_ALL_WINDOWS(wp)
4434 {
4435 if (wp->w_old_cursor_lnum != 0)
4436 {
4437 /* When lines have been inserted or deleted, adjust the end of
4438 * the Visual area to be redrawn. */
4439 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4440 wp->w_old_cursor_lnum += old_line_count;
4441 else
4442 wp->w_old_visual_lnum += old_line_count;
4443 }
4444 }
4445 }
4446#endif
4447}
4448
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004449#if defined(FEAT_EVAL) || defined(PROTO)
4450/*
4451 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4452 */
4453 void
4454op_formatexpr(oap)
4455 oparg_T *oap;
4456{
4457# ifdef FEAT_VISUAL
4458 if (oap->is_VIsual)
4459 /* When there is no change: need to remove the Visual selection */
4460 redraw_curbuf_later(INVERTED);
4461# endif
4462
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004463 (void)fex_format(oap->start.lnum, oap->line_count, NUL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004464}
4465
4466 int
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004467fex_format(lnum, count, c)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004468 linenr_T lnum;
4469 long count;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004470 int c; /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004471{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004472 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4473 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004474 int r;
4475
4476 /*
4477 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004478 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004479 */
4480 set_vim_var_nr(VV_LNUM, lnum);
4481 set_vim_var_nr(VV_COUNT, count);
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004482 set_vim_var_char(c);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004483
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004484 /*
4485 * Evaluate the function.
4486 */
4487 if (use_sandbox)
4488 ++sandbox;
4489 r = eval_to_number(curbuf->b_p_fex);
4490 if (use_sandbox)
4491 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004492
4493 set_vim_var_string(VV_CHAR, NULL, -1);
4494
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004495 return r;
4496}
4497#endif
4498
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499/*
4500 * Format "line_count" lines, starting at the cursor position.
4501 * When "line_count" is negative, format until the end of the paragraph.
4502 * Lines after the cursor line are saved for undo, caller must have saved the
4503 * first line.
4504 */
4505 void
Bram Moolenaar81a82092008-03-12 16:27:00 +00004506format_lines(line_count, avoid_fex)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507 linenr_T line_count;
Bram Moolenaar81a82092008-03-12 16:27:00 +00004508 int avoid_fex; /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509{
4510 int max_len;
4511 int is_not_par; /* current line not part of parag. */
4512 int next_is_not_par; /* next line not part of paragraph */
4513 int is_end_par; /* at end of paragraph */
4514 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4515 int next_is_start_par = FALSE;
4516#ifdef FEAT_COMMENTS
4517 int leader_len = 0; /* leader len of current line */
4518 int next_leader_len; /* leader len of next line */
4519 char_u *leader_flags = NULL; /* flags for leader of current line */
4520 char_u *next_leader_flags; /* flags for leader of next line */
4521 int do_comments; /* format comments */
4522#endif
4523 int advance = TRUE;
4524 int second_indent = -1;
4525 int do_second_indent;
4526 int do_number_indent;
4527 int do_trail_white;
4528 int first_par_line = TRUE;
4529 int smd_save;
4530 long count;
4531 int need_set_indent = TRUE; /* set indent of next paragraph */
4532 int force_format = FALSE;
4533 int old_State = State;
4534
4535 /* length of a line to force formatting: 3 * 'tw' */
4536 max_len = comp_textwidth(TRUE) * 3;
4537
4538 /* check for 'q', '2' and '1' in 'formatoptions' */
4539#ifdef FEAT_COMMENTS
4540 do_comments = has_format_option(FO_Q_COMS);
4541#endif
4542 do_second_indent = has_format_option(FO_Q_SECOND);
4543 do_number_indent = has_format_option(FO_Q_NUMBER);
4544 do_trail_white = has_format_option(FO_WHITE_PAR);
4545
4546 /*
4547 * Get info about the previous and current line.
4548 */
4549 if (curwin->w_cursor.lnum > 1)
4550 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4551#ifdef FEAT_COMMENTS
4552 , &leader_len, &leader_flags, do_comments
4553#endif
4554 );
4555 else
4556 is_not_par = TRUE;
4557 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4558#ifdef FEAT_COMMENTS
4559 , &next_leader_len, &next_leader_flags, do_comments
4560#endif
4561 );
4562 is_end_par = (is_not_par || next_is_not_par);
4563 if (!is_end_par && do_trail_white)
4564 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4565
4566 curwin->w_cursor.lnum--;
4567 for (count = line_count; count != 0 && !got_int; --count)
4568 {
4569 /*
4570 * Advance to next paragraph.
4571 */
4572 if (advance)
4573 {
4574 curwin->w_cursor.lnum++;
4575 prev_is_end_par = is_end_par;
4576 is_not_par = next_is_not_par;
4577#ifdef FEAT_COMMENTS
4578 leader_len = next_leader_len;
4579 leader_flags = next_leader_flags;
4580#endif
4581 }
4582
4583 /*
4584 * The last line to be formatted.
4585 */
4586 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4587 {
4588 next_is_not_par = TRUE;
4589#ifdef FEAT_COMMENTS
4590 next_leader_len = 0;
4591 next_leader_flags = NULL;
4592#endif
4593 }
4594 else
4595 {
4596 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4597#ifdef FEAT_COMMENTS
4598 , &next_leader_len, &next_leader_flags, do_comments
4599#endif
4600 );
4601 if (do_number_indent)
4602 next_is_start_par =
4603 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4604 }
4605 advance = TRUE;
4606 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4607 if (!is_end_par && do_trail_white)
4608 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4609
4610 /*
4611 * Skip lines that are not in a paragraph.
4612 */
4613 if (is_not_par)
4614 {
4615 if (line_count < 0)
4616 break;
4617 }
4618 else
4619 {
4620 /*
4621 * For the first line of a paragraph, check indent of second line.
4622 * Don't do this for comments and empty lines.
4623 */
4624 if (first_par_line
4625 && (do_second_indent || do_number_indent)
4626 && prev_is_end_par
4627 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4628#ifdef FEAT_COMMENTS
4629 && leader_len == 0
4630 && next_leader_len == 0
4631#endif
4632 )
4633 {
4634 if (do_second_indent
4635 && !lineempty(curwin->w_cursor.lnum + 1))
4636 second_indent = get_indent_lnum(curwin->w_cursor.lnum + 1);
4637 else if (do_number_indent)
4638 second_indent = get_number_indent(curwin->w_cursor.lnum);
4639 }
4640
4641 /*
4642 * When the comment leader changes, it's the end of the paragraph.
4643 */
4644 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4645#ifdef FEAT_COMMENTS
4646 || !same_leader(curwin->w_cursor.lnum,
4647 leader_len, leader_flags,
4648 next_leader_len, next_leader_flags)
4649#endif
4650 )
4651 is_end_par = TRUE;
4652
4653 /*
4654 * If we have got to the end of a paragraph, or the line is
4655 * getting long, format it.
4656 */
4657 if (is_end_par || force_format)
4658 {
4659 if (need_set_indent)
4660 /* replace indent in first line with minimal number of
4661 * tabs and spaces, according to current options */
4662 (void)set_indent(get_indent(), SIN_CHANGED);
4663
4664 /* put cursor on last non-space */
4665 State = NORMAL; /* don't go past end-of-line */
4666 coladvance((colnr_T)MAXCOL);
4667 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
4668 dec_cursor();
4669
4670 /* do the formatting, without 'showmode' */
4671 State = INSERT; /* for open_line() */
4672 smd_save = p_smd;
4673 p_smd = FALSE;
4674 insertchar(NUL, INSCHAR_FORMAT
4675#ifdef FEAT_COMMENTS
4676 + (do_comments ? INSCHAR_DO_COM : 0)
4677#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00004678 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 State = old_State;
4680 p_smd = smd_save;
4681 second_indent = -1;
4682 /* at end of par.: need to set indent of next par. */
4683 need_set_indent = is_end_par;
4684 if (is_end_par)
4685 {
4686 /* When called with a negative line count, break at the
4687 * end of the paragraph. */
4688 if (line_count < 0)
4689 break;
4690 first_par_line = TRUE;
4691 }
4692 force_format = FALSE;
4693 }
4694
4695 /*
4696 * When still in same paragraph, join the lines together. But
4697 * first delete the comment leader from the second line.
4698 */
4699 if (!is_end_par)
4700 {
4701 advance = FALSE;
4702 curwin->w_cursor.lnum++;
4703 curwin->w_cursor.col = 0;
4704 if (line_count < 0 && u_save_cursor() == FAIL)
4705 break;
4706#ifdef FEAT_COMMENTS
Bram Moolenaare3226be2005-12-18 22:10:00 +00004707 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 if (next_leader_len > 0)
4709 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
4710 (long)-next_leader_len);
4711#endif
4712 curwin->w_cursor.lnum--;
4713 if (do_join(TRUE) == FAIL)
4714 {
4715 beep_flush();
4716 break;
4717 }
4718 first_par_line = FALSE;
4719 /* If the line is getting long, format it next time */
4720 if (STRLEN(ml_get_curline()) > (size_t)max_len)
4721 force_format = TRUE;
4722 else
4723 force_format = FALSE;
4724 }
4725 }
4726 line_breakcheck();
4727 }
4728}
4729
4730/*
4731 * Return TRUE if line "lnum" ends in a white character.
4732 */
4733 static int
4734ends_in_white(lnum)
4735 linenr_T lnum;
4736{
4737 char_u *s = ml_get(lnum);
4738 size_t l;
4739
4740 if (*s == NUL)
4741 return FALSE;
4742 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
4743 * invocation may call function multiple times". */
4744 l = STRLEN(s) - 1;
4745 return vim_iswhite(s[l]);
4746}
4747
4748/*
4749 * Blank lines, and lines containing only the comment leader, are left
4750 * untouched by the formatting. The function returns TRUE in this
4751 * case. It also returns TRUE when a line starts with the end of a comment
4752 * ('e' in comment flags), so that this line is skipped, and not joined to the
4753 * previous line. A new paragraph starts after a blank line, or when the
4754 * comment leader changes -- webb.
4755 */
4756#ifdef FEAT_COMMENTS
4757 static int
4758fmt_check_par(lnum, leader_len, leader_flags, do_comments)
4759 linenr_T lnum;
4760 int *leader_len;
4761 char_u **leader_flags;
4762 int do_comments;
4763{
4764 char_u *flags = NULL; /* init for GCC */
4765 char_u *ptr;
4766
4767 ptr = ml_get(lnum);
4768 if (do_comments)
4769 *leader_len = get_leader_len(ptr, leader_flags, FALSE);
4770 else
4771 *leader_len = 0;
4772
4773 if (*leader_len > 0)
4774 {
4775 /*
4776 * Search for 'e' flag in comment leader flags.
4777 */
4778 flags = *leader_flags;
4779 while (*flags && *flags != ':' && *flags != COM_END)
4780 ++flags;
4781 }
4782
4783 return (*skipwhite(ptr + *leader_len) == NUL
4784 || (*leader_len > 0 && *flags == COM_END)
4785 || startPS(lnum, NUL, FALSE));
4786}
4787#else
4788 static int
4789fmt_check_par(lnum)
4790 linenr_T lnum;
4791{
4792 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
4793}
4794#endif
4795
4796/*
4797 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
4798 * previous line is in the same paragraph. Used for auto-formatting.
4799 */
4800 int
4801paragraph_start(lnum)
4802 linenr_T lnum;
4803{
4804 char_u *p;
4805#ifdef FEAT_COMMENTS
4806 int leader_len = 0; /* leader len of current line */
4807 char_u *leader_flags = NULL; /* flags for leader of current line */
4808 int next_leader_len; /* leader len of next line */
4809 char_u *next_leader_flags; /* flags for leader of next line */
4810 int do_comments; /* format comments */
4811#endif
4812
4813 if (lnum <= 1)
4814 return TRUE; /* start of the file */
4815
4816 p = ml_get(lnum - 1);
4817 if (*p == NUL)
4818 return TRUE; /* after empty line */
4819
4820#ifdef FEAT_COMMENTS
4821 do_comments = has_format_option(FO_Q_COMS);
4822#endif
4823 if (fmt_check_par(lnum - 1
4824#ifdef FEAT_COMMENTS
4825 , &leader_len, &leader_flags, do_comments
4826#endif
4827 ))
4828 return TRUE; /* after non-paragraph line */
4829
4830 if (fmt_check_par(lnum
4831#ifdef FEAT_COMMENTS
4832 , &next_leader_len, &next_leader_flags, do_comments
4833#endif
4834 ))
4835 return TRUE; /* "lnum" is not a paragraph line */
4836
4837 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
4838 return TRUE; /* missing trailing space in previous line. */
4839
4840 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
4841 return TRUE; /* numbered item starts in "lnum". */
4842
4843#ifdef FEAT_COMMENTS
4844 if (!same_leader(lnum - 1, leader_len, leader_flags,
4845 next_leader_len, next_leader_flags))
4846 return TRUE; /* change of comment leader. */
4847#endif
4848
4849 return FALSE;
4850}
4851
4852#ifdef FEAT_VISUAL
4853/*
4854 * prepare a few things for block mode yank/delete/tilde
4855 *
4856 * for delete:
4857 * - textlen includes the first/last char to be (partly) deleted
4858 * - start/endspaces is the number of columns that are taken by the
4859 * first/last deleted char minus the number of columns that have to be
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +00004860 * deleted.
4861 * for yank and tilde:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 * - textlen includes the first/last char to be wholly yanked
4863 * - start/endspaces is the number of columns of the first/last yanked char
4864 * that are to be yanked.
4865 */
4866 static void
4867block_prep(oap, bdp, lnum, is_del)
4868 oparg_T *oap;
4869 struct block_def *bdp;
4870 linenr_T lnum;
4871 int is_del;
4872{
4873 int incr = 0;
4874 char_u *pend;
4875 char_u *pstart;
4876 char_u *line;
4877 char_u *prev_pstart;
4878 char_u *prev_pend;
4879
4880 bdp->startspaces = 0;
4881 bdp->endspaces = 0;
4882 bdp->textlen = 0;
4883 bdp->start_vcol = 0;
4884 bdp->end_vcol = 0;
4885#ifdef FEAT_VISUALEXTRA
4886 bdp->is_short = FALSE;
4887 bdp->is_oneChar = FALSE;
4888 bdp->pre_whitesp = 0;
4889 bdp->pre_whitesp_c = 0;
4890 bdp->end_char_vcols = 0;
4891#endif
4892 bdp->start_char_vcols = 0;
4893
4894 line = ml_get(lnum);
4895 pstart = line;
4896 prev_pstart = line;
4897 while (bdp->start_vcol < oap->start_vcol && *pstart)
4898 {
4899 /* Count a tab for what it's worth (if list mode not on) */
4900 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
4901 bdp->start_vcol += incr;
4902#ifdef FEAT_VISUALEXTRA
4903 if (vim_iswhite(*pstart))
4904 {
4905 bdp->pre_whitesp += incr;
4906 bdp->pre_whitesp_c++;
4907 }
4908 else
4909 {
4910 bdp->pre_whitesp = 0;
4911 bdp->pre_whitesp_c = 0;
4912 }
4913#endif
4914 prev_pstart = pstart;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004915 mb_ptr_adv(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 }
4917 bdp->start_char_vcols = incr;
4918 if (bdp->start_vcol < oap->start_vcol) /* line too short */
4919 {
4920 bdp->end_vcol = bdp->start_vcol;
4921#ifdef FEAT_VISUALEXTRA
4922 bdp->is_short = TRUE;
4923#endif
4924 if (!is_del || oap->op_type == OP_APPEND)
4925 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
4926 }
4927 else
4928 {
4929 /* notice: this converts partly selected Multibyte characters to
4930 * spaces, too. */
4931 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
4932 if (is_del && bdp->startspaces)
4933 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
4934 pend = pstart;
4935 bdp->end_vcol = bdp->start_vcol;
4936 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
4937 {
4938#ifdef FEAT_VISUALEXTRA
4939 bdp->is_oneChar = TRUE;
4940#endif
4941 if (oap->op_type == OP_INSERT)
4942 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4943 else if (oap->op_type == OP_APPEND)
4944 {
4945 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
4946 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4947 }
4948 else
4949 {
4950 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
4951 if (is_del && oap->op_type != OP_LSHIFT)
4952 {
4953 /* just putting the sum of those two into
4954 * bdp->startspaces doesn't work for Visual replace,
4955 * so we have to split the tab in two */
4956 bdp->startspaces = bdp->start_char_vcols
4957 - (bdp->start_vcol - oap->start_vcol);
4958 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4959 }
4960 }
4961 }
4962 else
4963 {
4964 prev_pend = pend;
4965 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
4966 {
4967 /* Count a tab for what it's worth (if list mode not on) */
4968 prev_pend = pend;
4969 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
4970 bdp->end_vcol += incr;
4971 }
4972 if (bdp->end_vcol <= oap->end_vcol
4973 && (!is_del
4974 || oap->op_type == OP_APPEND
4975 || oap->op_type == OP_REPLACE)) /* line too short */
4976 {
4977#ifdef FEAT_VISUALEXTRA
4978 bdp->is_short = TRUE;
4979#endif
4980 /* Alternative: include spaces to fill up the block.
4981 * Disadvantage: can lead to trailing spaces when the line is
4982 * short where the text is put */
4983 /* if (!is_del || oap->op_type == OP_APPEND) */
4984 if (oap->op_type == OP_APPEND || virtual_op)
4985 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00004986 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 else
4988 bdp->endspaces = 0; /* replace doesn't add characters */
4989 }
4990 else if (bdp->end_vcol > oap->end_vcol)
4991 {
4992 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4993 if (!is_del && bdp->endspaces)
4994 {
4995 bdp->endspaces = incr - bdp->endspaces;
4996 if (pend != pstart)
4997 pend = prev_pend;
4998 }
4999 }
5000 }
5001#ifdef FEAT_VISUALEXTRA
5002 bdp->end_char_vcols = incr;
5003#endif
5004 if (is_del && bdp->startspaces)
5005 pstart = prev_pstart;
5006 bdp->textlen = (int)(pend - pstart);
5007 }
5008 bdp->textcol = (colnr_T) (pstart - line);
5009 bdp->textstart = pstart;
5010}
5011#endif /* FEAT_VISUAL */
5012
5013#ifdef FEAT_RIGHTLEFT
5014static void reverse_line __ARGS((char_u *s));
5015
5016 static void
5017reverse_line(s)
5018 char_u *s;
5019{
5020 int i, j;
5021 char_u c;
5022
5023 if ((i = (int)STRLEN(s) - 1) <= 0)
5024 return;
5025
5026 curwin->w_cursor.col = i - curwin->w_cursor.col;
5027 for (j = 0; j < i; j++, i--)
5028 {
5029 c = s[i]; s[i] = s[j]; s[j] = c;
5030 }
5031}
5032
5033# define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
5034#else
5035# define RLADDSUBFIX(ptr)
5036#endif
5037
5038/*
5039 * add or subtract 'Prenum1' from a number in a line
5040 * 'command' is CTRL-A for add, CTRL-X for subtract
5041 *
5042 * return FAIL for failure, OK otherwise
5043 */
5044 int
5045do_addsub(command, Prenum1)
5046 int command;
5047 linenr_T Prenum1;
5048{
5049 int col;
5050 char_u *buf1;
5051 char_u buf2[NUMBUFLEN];
5052 int hex; /* 'X' or 'x': hex; '0': octal */
5053 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005054 unsigned long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 long_u oldn;
5056 char_u *ptr;
5057 int c;
5058 int length = 0; /* character length of the number */
5059 int todel;
5060 int dohex;
5061 int dooct;
5062 int doalp;
5063 int firstdigit;
5064 int negative;
5065 int subtract;
5066
5067 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5068 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
5069 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5070
5071 ptr = ml_get_curline();
5072 RLADDSUBFIX(ptr);
5073
5074 /*
5075 * First check if we are on a hexadecimal number, after the "0x".
5076 */
5077 col = curwin->w_cursor.col;
5078 if (dohex)
5079 while (col > 0 && vim_isxdigit(ptr[col]))
5080 --col;
5081 if ( dohex
5082 && col > 0
5083 && (ptr[col] == 'X'
5084 || ptr[col] == 'x')
5085 && ptr[col - 1] == '0'
5086 && vim_isxdigit(ptr[col + 1]))
5087 {
5088 /*
5089 * Found hexadecimal number, move to its start.
5090 */
5091 --col;
5092 }
5093 else
5094 {
5095 /*
5096 * Search forward and then backward to find the start of number.
5097 */
5098 col = curwin->w_cursor.col;
5099
5100 while (ptr[col] != NUL
5101 && !vim_isdigit(ptr[col])
5102 && !(doalp && ASCII_ISALPHA(ptr[col])))
5103 ++col;
5104
5105 while (col > 0
5106 && vim_isdigit(ptr[col - 1])
5107 && !(doalp && ASCII_ISALPHA(ptr[col])))
5108 --col;
5109 }
5110
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 /*
5112 * If a number was found, and saving for undo works, replace the number.
5113 */
5114 firstdigit = ptr[col];
5115 RLADDSUBFIX(ptr);
5116 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5117 || u_save_cursor() != OK)
5118 {
5119 beep_flush();
5120 return FAIL;
5121 }
5122
5123 /* get ptr again, because u_save() may have changed it */
5124 ptr = ml_get_curline();
5125 RLADDSUBFIX(ptr);
5126
5127 if (doalp && ASCII_ISALPHA(firstdigit))
5128 {
5129 /* decrement or increment alphabetic character */
5130 if (command == Ctrl_X)
5131 {
5132 if (CharOrd(firstdigit) < Prenum1)
5133 {
5134 if (isupper(firstdigit))
5135 firstdigit = 'A';
5136 else
5137 firstdigit = 'a';
5138 }
5139 else
5140#ifdef EBCDIC
5141 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5142#else
5143 firstdigit -= Prenum1;
5144#endif
5145 }
5146 else
5147 {
5148 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5149 {
5150 if (isupper(firstdigit))
5151 firstdigit = 'Z';
5152 else
5153 firstdigit = 'z';
5154 }
5155 else
5156#ifdef EBCDIC
5157 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5158#else
5159 firstdigit += Prenum1;
5160#endif
5161 }
5162 curwin->w_cursor.col = col;
5163 (void)del_char(FALSE);
5164 ins_char(firstdigit);
5165 }
5166 else
5167 {
5168 negative = FALSE;
5169 if (col > 0 && ptr[col - 1] == '-') /* negative number */
5170 {
5171 --col;
5172 negative = TRUE;
5173 }
5174
5175 /* get the number value (unsigned) */
5176 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
5177
5178 /* ignore leading '-' for hex and octal numbers */
5179 if (hex && negative)
5180 {
5181 ++col;
5182 --length;
5183 negative = FALSE;
5184 }
5185
5186 /* add or subtract */
5187 subtract = FALSE;
5188 if (command == Ctrl_X)
5189 subtract ^= TRUE;
5190 if (negative)
5191 subtract ^= TRUE;
5192
5193 oldn = n;
5194 if (subtract)
5195 n -= (unsigned long)Prenum1;
5196 else
5197 n += (unsigned long)Prenum1;
5198
5199 /* handle wraparound for decimal numbers */
5200 if (!hex)
5201 {
5202 if (subtract)
5203 {
5204 if (n > oldn)
5205 {
5206 n = 1 + (n ^ (unsigned long)-1);
5207 negative ^= TRUE;
5208 }
5209 }
5210 else /* add */
5211 {
5212 if (n < oldn)
5213 {
5214 n = (n ^ (unsigned long)-1);
5215 negative ^= TRUE;
5216 }
5217 }
5218 if (n == 0)
5219 negative = FALSE;
5220 }
5221
5222 /*
5223 * Delete the old number.
5224 */
5225 curwin->w_cursor.col = col;
5226 todel = length;
5227 c = gchar_cursor();
5228 /*
5229 * Don't include the '-' in the length, only the length of the part
5230 * after it is kept the same.
5231 */
5232 if (c == '-')
5233 --length;
5234 while (todel-- > 0)
5235 {
5236 if (c < 0x100 && isalpha(c))
5237 {
5238 if (isupper(c))
5239 hexupper = TRUE;
5240 else
5241 hexupper = FALSE;
5242 }
5243 /* del_char() will mark line needing displaying */
5244 (void)del_char(FALSE);
5245 c = gchar_cursor();
5246 }
5247
5248 /*
5249 * Prepare the leading characters in buf1[].
5250 * When there are many leading zeros it could be very long. Allocate
5251 * a bit too much.
5252 */
5253 buf1 = alloc((unsigned)length + NUMBUFLEN);
5254 if (buf1 == NULL)
5255 return FAIL;
5256 ptr = buf1;
5257 if (negative)
5258 {
5259 *ptr++ = '-';
5260 }
5261 if (hex)
5262 {
5263 *ptr++ = '0';
5264 --length;
5265 }
5266 if (hex == 'x' || hex == 'X')
5267 {
5268 *ptr++ = hex;
5269 --length;
5270 }
5271
5272 /*
5273 * Put the number characters in buf2[].
5274 */
5275 if (hex == 0)
5276 sprintf((char *)buf2, "%lu", n);
5277 else if (hex == '0')
5278 sprintf((char *)buf2, "%lo", n);
5279 else if (hex && hexupper)
5280 sprintf((char *)buf2, "%lX", n);
5281 else
5282 sprintf((char *)buf2, "%lx", n);
5283 length -= (int)STRLEN(buf2);
5284
5285 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005286 * Adjust number of zeros to the new number of digits, so the
5287 * total length of the number remains the same.
5288 * Don't do this when
5289 * the result may look like an octal number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005291 if (firstdigit == '0' && !(dooct && hex == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292 while (length-- > 0)
5293 *ptr++ = '0';
5294 *ptr = NUL;
5295 STRCAT(buf1, buf2);
5296 ins_str(buf1); /* insert the new number */
5297 vim_free(buf1);
5298 }
5299 --curwin->w_cursor.col;
5300 curwin->w_set_curswant = TRUE;
5301#ifdef FEAT_RIGHTLEFT
5302 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
5303 RLADDSUBFIX(ptr);
5304#endif
5305 return OK;
5306}
5307
5308#ifdef FEAT_VIMINFO
5309 int
5310read_viminfo_register(virp, force)
5311 vir_T *virp;
5312 int force;
5313{
5314 int eof;
5315 int do_it = TRUE;
5316 int size;
5317 int limit;
5318 int i;
5319 int set_prev = FALSE;
5320 char_u *str;
5321 char_u **array = NULL;
5322
5323 /* We only get here (hopefully) if line[0] == '"' */
5324 str = virp->vir_line + 1;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005325
5326 /* If the line starts with "" this is the y_previous register. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 if (*str == '"')
5328 {
5329 set_prev = TRUE;
5330 str++;
5331 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00005332
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333 if (!ASCII_ISALNUM(*str) && *str != '-')
5334 {
5335 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5336 return TRUE; /* too many errors, pretend end-of-file */
5337 do_it = FALSE;
5338 }
5339 get_yank_register(*str++, FALSE);
5340 if (!force && y_current->y_array != NULL)
5341 do_it = FALSE;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005342
5343 if (*str == '@')
5344 {
5345 /* "x@: register x used for @@ */
5346 if (force || execreg_lastc == NUL)
5347 execreg_lastc = str[-1];
5348 }
5349
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 size = 0;
5351 limit = 100; /* Optimized for registers containing <= 100 lines */
5352 if (do_it)
5353 {
5354 if (set_prev)
5355 y_previous = y_current;
5356 vim_free(y_current->y_array);
5357 array = y_current->y_array =
5358 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
Bram Moolenaar42b94362009-05-26 16:12:37 +00005359 str = skipwhite(skiptowhite(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 if (STRNCMP(str, "CHAR", 4) == 0)
5361 y_current->y_type = MCHAR;
5362#ifdef FEAT_VISUAL
5363 else if (STRNCMP(str, "BLOCK", 5) == 0)
5364 y_current->y_type = MBLOCK;
5365#endif
5366 else
5367 y_current->y_type = MLINE;
5368 /* get the block width; if it's missing we get a zero, which is OK */
5369 str = skipwhite(skiptowhite(str));
5370#ifdef FEAT_VISUAL
5371 y_current->y_width = getdigits(&str);
5372#else
5373 (void)getdigits(&str);
5374#endif
5375 }
5376
5377 while (!(eof = viminfo_readline(virp))
5378 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5379 {
5380 if (do_it)
5381 {
5382 if (size >= limit)
5383 {
5384 y_current->y_array = (char_u **)
5385 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
5386 for (i = 0; i < limit; i++)
5387 y_current->y_array[i] = array[i];
5388 vim_free(array);
5389 limit *= 2;
5390 array = y_current->y_array;
5391 }
5392 str = viminfo_readstring(virp, 1, TRUE);
5393 if (str != NULL)
5394 array[size++] = str;
5395 else
5396 do_it = FALSE;
5397 }
5398 }
5399 if (do_it)
5400 {
5401 if (size == 0)
5402 {
5403 vim_free(array);
5404 y_current->y_array = NULL;
5405 }
5406 else if (size < limit)
5407 {
5408 y_current->y_array =
5409 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
5410 for (i = 0; i < size; i++)
5411 y_current->y_array[i] = array[i];
5412 vim_free(array);
5413 }
5414 y_current->y_size = size;
5415 }
5416 return eof;
5417}
5418
5419 void
5420write_viminfo_registers(fp)
5421 FILE *fp;
5422{
5423 int i, j;
5424 char_u *type;
5425 char_u c;
5426 int num_lines;
5427 int max_num_lines;
5428 int max_kbyte;
5429 long len;
5430
5431 fprintf(fp, _("\n# Registers:\n"));
5432
5433 /* Get '<' value, use old '"' value if '<' is not found. */
5434 max_num_lines = get_viminfo_parameter('<');
5435 if (max_num_lines < 0)
5436 max_num_lines = get_viminfo_parameter('"');
5437 if (max_num_lines == 0)
5438 return;
5439 max_kbyte = get_viminfo_parameter('s');
5440 if (max_kbyte == 0)
5441 return;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005442
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443 for (i = 0; i < NUM_REGISTERS; i++)
5444 {
5445 if (y_regs[i].y_array == NULL)
5446 continue;
5447#ifdef FEAT_CLIPBOARD
5448 /* Skip '*'/'+' register, we don't want them back next time */
5449 if (i == STAR_REGISTER || i == PLUS_REGISTER)
5450 continue;
5451#endif
5452#ifdef FEAT_DND
5453 /* Neither do we want the '~' register */
5454 if (i == TILDE_REGISTER)
5455 continue;
5456#endif
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005457 /* Skip empty registers. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 num_lines = y_regs[i].y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005459 if (num_lines == 0
5460 || (num_lines == 1 && y_regs[i].y_type == MCHAR
5461 && STRLEN(y_regs[i].y_array[0]) == 0))
5462 continue;
5463
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 if (max_kbyte > 0)
5465 {
5466 /* Skip register if there is more text than the maximum size. */
5467 len = 0;
5468 for (j = 0; j < num_lines; j++)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005469 len += (long)STRLEN(y_regs[i].y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470 if (len > (long)max_kbyte * 1024L)
5471 continue;
5472 }
5473
5474 switch (y_regs[i].y_type)
5475 {
5476 case MLINE:
5477 type = (char_u *)"LINE";
5478 break;
5479 case MCHAR:
5480 type = (char_u *)"CHAR";
5481 break;
5482#ifdef FEAT_VISUAL
5483 case MBLOCK:
5484 type = (char_u *)"BLOCK";
5485 break;
5486#endif
5487 default:
5488 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005489 y_regs[i].y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 emsg(IObuff);
5491 type = (char_u *)"LINE";
5492 break;
5493 }
5494 if (y_previous == &y_regs[i])
5495 fprintf(fp, "\"");
5496 c = get_register_name(i);
Bram Moolenaar42b94362009-05-26 16:12:37 +00005497 fprintf(fp, "\"%c", c);
5498 if (c == execreg_lastc)
5499 fprintf(fp, "@");
5500 fprintf(fp, "\t%s\t%d\n", type,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501#ifdef FEAT_VISUAL
5502 (int)y_regs[i].y_width
5503#else
5504 0
5505#endif
5506 );
5507
5508 /* If max_num_lines < 0, then we save ALL the lines in the register */
5509 if (max_num_lines > 0 && num_lines > max_num_lines)
5510 num_lines = max_num_lines;
5511 for (j = 0; j < num_lines; j++)
5512 {
5513 putc('\t', fp);
5514 viminfo_writestring(fp, y_regs[i].y_array[j]);
5515 }
5516 }
5517}
5518#endif /* FEAT_VIMINFO */
5519
5520#if defined(FEAT_CLIPBOARD) || defined(PROTO)
5521/*
5522 * SELECTION / PRIMARY ('*')
5523 *
5524 * Text selection stuff that uses the GUI selection register '*'. When using a
5525 * GUI this may be text from another window, otherwise it is the last text we
5526 * had highlighted with VIsual mode. With mouse support, clicking the middle
5527 * button performs the paste, otherwise you will need to do <"*p>. "
5528 * If not under X, it is synonymous with the clipboard register '+'.
5529 *
5530 * X CLIPBOARD ('+')
5531 *
5532 * Text selection stuff that uses the GUI clipboard register '+'.
5533 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5534 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5535 * otherwise you will need to do <"+p>. "
5536 * If not under X, it is synonymous with the selection register '*'.
5537 */
5538
5539/*
5540 * Routine to export any final X selection we had to the environment
5541 * so that the text is still available after vim has exited. X selections
5542 * only exist while the owning application exists, so we write to the
5543 * permanent (while X runs) store CUT_BUFFER0.
5544 * Dump the CLIPBOARD selection if we own it (it's logically the more
5545 * 'permanent' of the two), otherwise the PRIMARY one.
5546 * For now, use a hard-coded sanity limit of 1Mb of data.
5547 */
5548#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5549 void
5550x11_export_final_selection()
5551{
5552 Display *dpy;
5553 char_u *str = NULL;
5554 long_u len = 0;
5555 int motion_type = -1;
5556
5557# ifdef FEAT_GUI
5558 if (gui.in_use)
5559 dpy = X_DISPLAY;
5560 else
5561# endif
5562# ifdef FEAT_XCLIPBOARD
5563 dpy = xterm_dpy;
5564# else
5565 return;
5566# endif
5567
5568 /* Get selection to export */
5569 if (clip_plus.owned)
5570 motion_type = clip_convert_selection(&str, &len, &clip_plus);
5571 else if (clip_star.owned)
5572 motion_type = clip_convert_selection(&str, &len, &clip_star);
5573
5574 /* Check it's OK */
5575 if (dpy != NULL && str != NULL && motion_type >= 0
5576 && len < 1024*1024 && len > 0)
5577 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005578#ifdef FEAT_MBYTE
5579 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
5580 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
5581 * encoding conversion usually doesn't work, so keep the text as-is.
5582 */
5583 if (has_mbyte)
5584 {
5585 char_u *conv_str = str;
5586 vimconv_T vc;
5587
5588 vc.vc_type = CONV_NONE;
5589 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
5590 {
5591 conv_str = string_convert(&vc, str, (int*)&len);
5592 if (conv_str != NULL)
5593 {
5594 vim_free(str);
5595 str = conv_str;
5596 }
5597 convert_setup(&vc, NULL, NULL);
5598 }
5599 }
5600#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601 XStoreBuffer(dpy, (char *)str, (int)len, 0);
5602 XFlush(dpy);
5603 }
5604
5605 vim_free(str);
5606}
5607#endif
5608
5609 void
5610clip_free_selection(cbd)
5611 VimClipboard *cbd;
5612{
5613 struct yankreg *y_ptr = y_current;
5614
5615 if (cbd == &clip_plus)
5616 y_current = &y_regs[PLUS_REGISTER];
5617 else
5618 y_current = &y_regs[STAR_REGISTER];
5619 free_yank_all();
5620 y_current->y_size = 0;
5621 y_current = y_ptr;
5622}
5623
5624/*
5625 * Get the selected text and put it in the gui selection register '*' or '+'.
5626 */
5627 void
5628clip_get_selection(cbd)
5629 VimClipboard *cbd;
5630{
5631 struct yankreg *old_y_previous, *old_y_current;
5632 pos_T old_cursor;
5633#ifdef FEAT_VISUAL
5634 pos_T old_visual;
5635 int old_visual_mode;
5636#endif
5637 colnr_T old_curswant;
5638 int old_set_curswant;
5639 pos_T old_op_start, old_op_end;
5640 oparg_T oa;
5641 cmdarg_T ca;
5642
5643 if (cbd->owned)
5644 {
5645 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
5646 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
5647 return;
5648
5649 /* Get the text between clip_star.start & clip_star.end */
5650 old_y_previous = y_previous;
5651 old_y_current = y_current;
5652 old_cursor = curwin->w_cursor;
5653 old_curswant = curwin->w_curswant;
5654 old_set_curswant = curwin->w_set_curswant;
5655 old_op_start = curbuf->b_op_start;
5656 old_op_end = curbuf->b_op_end;
5657#ifdef FEAT_VISUAL
5658 old_visual = VIsual;
5659 old_visual_mode = VIsual_mode;
5660#endif
5661 clear_oparg(&oa);
5662 oa.regname = (cbd == &clip_plus ? '+' : '*');
5663 oa.op_type = OP_YANK;
5664 vim_memset(&ca, 0, sizeof(ca));
5665 ca.oap = &oa;
5666 ca.cmdchar = 'y';
5667 ca.count1 = 1;
5668 ca.retval = CA_NO_ADJ_OP_END;
5669 do_pending_operator(&ca, 0, TRUE);
5670 y_previous = old_y_previous;
5671 y_current = old_y_current;
5672 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005673 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674 curwin->w_curswant = old_curswant;
5675 curwin->w_set_curswant = old_set_curswant;
5676 curbuf->b_op_start = old_op_start;
5677 curbuf->b_op_end = old_op_end;
5678#ifdef FEAT_VISUAL
5679 VIsual = old_visual;
5680 VIsual_mode = old_visual_mode;
5681#endif
5682 }
5683 else
5684 {
5685 clip_free_selection(cbd);
5686
5687 /* Try to get selected text from another window */
5688 clip_gen_request_selection(cbd);
5689 }
5690}
5691
5692/* Convert from the GUI selection string into the '*'/'+' register */
5693 void
5694clip_yank_selection(type, str, len, cbd)
5695 int type;
5696 char_u *str;
5697 long len;
5698 VimClipboard *cbd;
5699{
5700 struct yankreg *y_ptr;
5701
5702 if (cbd == &clip_plus)
5703 y_ptr = &y_regs[PLUS_REGISTER];
5704 else
5705 y_ptr = &y_regs[STAR_REGISTER];
5706
5707 clip_free_selection(cbd);
5708
5709 str_to_reg(y_ptr, type, str, len, 0L);
5710}
5711
5712/*
5713 * Convert the '*'/'+' register into a GUI selection string returned in *str
5714 * with length *len.
5715 * Returns the motion type, or -1 for failure.
5716 */
5717 int
5718clip_convert_selection(str, len, cbd)
5719 char_u **str;
5720 long_u *len;
5721 VimClipboard *cbd;
5722{
5723 char_u *p;
5724 int lnum;
5725 int i, j;
5726 int_u eolsize;
5727 struct yankreg *y_ptr;
5728
5729 if (cbd == &clip_plus)
5730 y_ptr = &y_regs[PLUS_REGISTER];
5731 else
5732 y_ptr = &y_regs[STAR_REGISTER];
5733
5734#ifdef USE_CRNL
5735 eolsize = 2;
5736#else
5737 eolsize = 1;
5738#endif
5739
5740 *str = NULL;
5741 *len = 0;
5742 if (y_ptr->y_array == NULL)
5743 return -1;
5744
5745 for (i = 0; i < y_ptr->y_size; i++)
5746 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
5747
5748 /*
5749 * Don't want newline character at end of last line if we're in MCHAR mode.
5750 */
5751 if (y_ptr->y_type == MCHAR && *len >= eolsize)
5752 *len -= eolsize;
5753
5754 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
5755 if (p == NULL)
5756 return -1;
5757 lnum = 0;
5758 for (i = 0, j = 0; i < (int)*len; i++, j++)
5759 {
5760 if (y_ptr->y_array[lnum][j] == '\n')
5761 p[i] = NUL;
5762 else if (y_ptr->y_array[lnum][j] == NUL)
5763 {
5764#ifdef USE_CRNL
5765 p[i++] = '\r';
5766#endif
5767#ifdef USE_CR
5768 p[i] = '\r';
5769#else
5770 p[i] = '\n';
5771#endif
5772 lnum++;
5773 j = -1;
5774 }
5775 else
5776 p[i] = y_ptr->y_array[lnum][j];
5777 }
5778 return y_ptr->y_type;
5779}
5780
5781
5782# if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
5783/*
5784 * If we have written to a clipboard register, send the text to the clipboard.
5785 */
5786 static void
5787may_set_selection()
5788{
5789 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
5790 {
5791 clip_own_selection(&clip_star);
5792 clip_gen_set_selection(&clip_star);
5793 }
5794 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
5795 {
5796 clip_own_selection(&clip_plus);
5797 clip_gen_set_selection(&clip_plus);
5798 }
5799}
5800# endif
5801
5802#endif /* FEAT_CLIPBOARD || PROTO */
5803
5804
5805#if defined(FEAT_DND) || defined(PROTO)
5806/*
5807 * Replace the contents of the '~' register with str.
5808 */
5809 void
5810dnd_yank_drag_data(str, len)
5811 char_u *str;
5812 long len;
5813{
5814 struct yankreg *curr;
5815
5816 curr = y_current;
5817 y_current = &y_regs[TILDE_REGISTER];
5818 free_yank_all();
5819 str_to_reg(y_current, MCHAR, str, len, 0L);
5820 y_current = curr;
5821}
5822#endif
5823
5824
5825#if defined(FEAT_EVAL) || defined(PROTO)
5826/*
5827 * Return the type of a register.
5828 * Used for getregtype()
5829 * Returns MAUTO for error.
5830 */
5831 char_u
5832get_reg_type(regname, reglen)
5833 int regname;
5834 long *reglen;
5835{
5836 switch (regname)
5837 {
5838 case '%': /* file name */
5839 case '#': /* alternate file name */
5840 case '=': /* expression */
5841 case ':': /* last command line */
5842 case '/': /* last search-pattern */
5843 case '.': /* last inserted text */
5844#ifdef FEAT_SEARCHPATH
5845 case Ctrl_F: /* Filename under cursor */
5846 case Ctrl_P: /* Path under cursor, expand via "path" */
5847#endif
5848 case Ctrl_W: /* word under cursor */
5849 case Ctrl_A: /* WORD (mnemonic All) under cursor */
5850 case '_': /* black hole: always empty */
5851 return MCHAR;
5852 }
5853
5854#ifdef FEAT_CLIPBOARD
5855 regname = may_get_selection(regname);
5856#endif
5857
5858 /* Should we check for a valid name? */
5859 get_yank_register(regname, FALSE);
5860
5861 if (y_current->y_array != NULL)
5862 {
5863#ifdef FEAT_VISUAL
5864 if (reglen != NULL && y_current->y_type == MBLOCK)
5865 *reglen = y_current->y_width;
5866#endif
5867 return y_current->y_type;
5868 }
5869 return MAUTO;
5870}
5871
5872/*
5873 * Return the contents of a register as a single allocated string.
5874 * Used for "@r" in expressions and for getreg().
5875 * Returns NULL for error.
5876 */
5877 char_u *
Bram Moolenaarde934d72005-05-22 22:09:40 +00005878get_reg_contents(regname, allowexpr, expr_src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879 int regname;
Bram Moolenaarde934d72005-05-22 22:09:40 +00005880 int allowexpr; /* allow "=" register */
5881 int expr_src; /* get expression for "=" register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005882{
5883 long i;
5884 char_u *retval;
5885 int allocated;
5886 long len;
5887
5888 /* Don't allow using an expression register inside an expression */
5889 if (regname == '=')
5890 {
5891 if (allowexpr)
Bram Moolenaarde934d72005-05-22 22:09:40 +00005892 {
5893 if (expr_src)
5894 return get_expr_line_src();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895 return get_expr_line();
Bram Moolenaarde934d72005-05-22 22:09:40 +00005896 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005897 return NULL;
5898 }
5899
5900 if (regname == '@') /* "@@" is used for unnamed register */
5901 regname = '"';
5902
5903 /* check for valid regname */
5904 if (regname != NUL && !valid_yank_reg(regname, FALSE))
5905 return NULL;
5906
5907#ifdef FEAT_CLIPBOARD
5908 regname = may_get_selection(regname);
5909#endif
5910
5911 if (get_spec_reg(regname, &retval, &allocated, FALSE))
5912 {
5913 if (retval == NULL)
5914 return NULL;
5915 if (!allocated)
5916 retval = vim_strsave(retval);
5917 return retval;
5918 }
5919
5920 get_yank_register(regname, FALSE);
5921 if (y_current->y_array == NULL)
5922 return NULL;
5923
5924 /*
5925 * Compute length of resulting string.
5926 */
5927 len = 0;
5928 for (i = 0; i < y_current->y_size; ++i)
5929 {
5930 len += (long)STRLEN(y_current->y_array[i]);
5931 /*
5932 * Insert a newline between lines and after last line if
5933 * y_type is MLINE.
5934 */
5935 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5936 ++len;
5937 }
5938
5939 retval = lalloc(len + 1, TRUE);
5940
5941 /*
5942 * Copy the lines of the yank register into the string.
5943 */
5944 if (retval != NULL)
5945 {
5946 len = 0;
5947 for (i = 0; i < y_current->y_size; ++i)
5948 {
5949 STRCPY(retval + len, y_current->y_array[i]);
5950 len += (long)STRLEN(retval + len);
5951
5952 /*
5953 * Insert a NL between lines and after the last line if y_type is
5954 * MLINE.
5955 */
5956 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5957 retval[len++] = '\n';
5958 }
5959 retval[len] = NUL;
5960 }
5961
5962 return retval;
5963}
5964
5965/*
5966 * Store string "str" in register "name".
5967 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
5968 * If "must_append" is TRUE, always append to the register. Otherwise append
5969 * if "name" is an uppercase letter.
5970 * Note: "maxlen" and "must_append" don't work for the "/" register.
5971 * Careful: 'str' is modified, you may have to use a copy!
5972 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
5973 */
5974 void
5975write_reg_contents(name, str, maxlen, must_append)
5976 int name;
5977 char_u *str;
5978 int maxlen;
5979 int must_append;
5980{
5981 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
5982}
5983
5984 void
5985write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
5986 int name;
5987 char_u *str;
5988 int maxlen;
5989 int must_append;
5990 int yank_type;
5991 long block_len;
5992{
5993 struct yankreg *old_y_previous, *old_y_current;
5994 long len;
5995
Bram Moolenaare7566042005-06-17 22:00:15 +00005996 if (maxlen >= 0)
5997 len = maxlen;
5998 else
5999 len = (long)STRLEN(str);
6000
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001 /* Special case: '/' search pattern */
6002 if (name == '/')
6003 {
6004 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
6005 return;
6006 }
6007
Bram Moolenaare7566042005-06-17 22:00:15 +00006008#ifdef FEAT_EVAL
6009 if (name == '=')
6010 {
6011 char_u *p, *s;
6012
6013 p = vim_strnsave(str, (int)len);
6014 if (p == NULL)
6015 return;
6016 if (must_append)
6017 {
6018 s = concat_str(get_expr_line_src(), p);
6019 vim_free(p);
6020 p = s;
6021
6022 }
6023 set_expr_line(p);
6024 return;
6025 }
6026#endif
6027
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6029 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006030 emsg_invreg(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006031 return;
6032 }
6033
6034 if (name == '_') /* black hole: nothing to do */
6035 return;
6036
6037 /* Don't want to change the current (unnamed) register */
6038 old_y_previous = y_previous;
6039 old_y_current = y_current;
6040
6041 get_yank_register(name, TRUE);
6042 if (!y_append && !must_append)
6043 free_yank_all();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006044#ifndef FEAT_VISUAL
6045 /* Just in case - make sure we don't use MBLOCK */
6046 if (yank_type == MBLOCK)
6047 yank_type = MAUTO;
6048#endif
6049 if (yank_type == MAUTO)
6050 yank_type = ((len > 0 && (str[len - 1] == '\n' || str[len - 1] == '\r'))
6051 ? MLINE : MCHAR);
6052 str_to_reg(y_current, yank_type, str, len, block_len);
6053
6054# ifdef FEAT_CLIPBOARD
6055 /* Send text of clipboard register to the clipboard. */
6056 may_set_selection();
6057# endif
6058
6059 /* ':let @" = "val"' should change the meaning of the "" register */
6060 if (name != '"')
6061 y_previous = old_y_previous;
6062 y_current = old_y_current;
6063}
6064#endif /* FEAT_EVAL */
6065
6066#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6067/*
6068 * Put a string into a register. When the register is not empty, the string
6069 * is appended.
6070 */
6071 static void
6072str_to_reg(y_ptr, type, str, len, blocklen)
6073 struct yankreg *y_ptr; /* pointer to yank register */
6074 int type; /* MCHAR, MLINE or MBLOCK */
6075 char_u *str; /* string to put in register */
6076 long len; /* length of string */
6077 long blocklen; /* width of Visual block */
6078{
6079 int lnum;
6080 long start;
6081 long i;
6082 int extra;
6083 int newlines; /* number of lines added */
6084 int extraline = 0; /* extra line at the end */
6085 int append = FALSE; /* append to last line in register */
6086 char_u *s;
6087 char_u **pp;
6088#ifdef FEAT_VISUAL
6089 long maxlen;
6090#endif
6091
6092 if (y_ptr->y_array == NULL) /* NULL means emtpy register */
6093 y_ptr->y_size = 0;
6094
6095 /*
6096 * Count the number of lines within the string
6097 */
6098 newlines = 0;
6099 for (i = 0; i < len; i++)
6100 if (str[i] == '\n')
6101 ++newlines;
6102 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
6103 {
6104 extraline = 1;
6105 ++newlines; /* count extra newline at the end */
6106 }
6107 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
6108 {
6109 append = TRUE;
6110 --newlines; /* uncount newline when appending first line */
6111 }
6112
6113 /*
6114 * Allocate an array to hold the pointers to the new register lines.
6115 * If the register was not empty, move the existing lines to the new array.
6116 */
6117 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
6118 * sizeof(char_u *), TRUE);
6119 if (pp == NULL) /* out of memory */
6120 return;
6121 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
6122 pp[lnum] = y_ptr->y_array[lnum];
6123 vim_free(y_ptr->y_array);
6124 y_ptr->y_array = pp;
6125#ifdef FEAT_VISUAL
6126 maxlen = 0;
6127#endif
6128
6129 /*
6130 * Find the end of each line and save it into the array.
6131 */
6132 for (start = 0; start < len + extraline; start += i + 1)
6133 {
6134 for (i = start; i < len; ++i) /* find the end of the line */
6135 if (str[i] == '\n')
6136 break;
6137 i -= start; /* i is now length of line */
6138#ifdef FEAT_VISUAL
6139 if (i > maxlen)
6140 maxlen = i;
6141#endif
6142 if (append)
6143 {
6144 --lnum;
6145 extra = (int)STRLEN(y_ptr->y_array[lnum]);
6146 }
6147 else
6148 extra = 0;
6149 s = alloc((unsigned)(i + extra + 1));
6150 if (s == NULL)
6151 break;
6152 if (extra)
6153 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
6154 if (append)
6155 vim_free(y_ptr->y_array[lnum]);
6156 if (i)
6157 mch_memmove(s + extra, str + start, (size_t)i);
6158 extra += i;
6159 s[extra] = NUL;
6160 y_ptr->y_array[lnum++] = s;
6161 while (--extra >= 0)
6162 {
6163 if (*s == NUL)
6164 *s = '\n'; /* replace NUL with newline */
6165 ++s;
6166 }
6167 append = FALSE; /* only first line is appended */
6168 }
6169 y_ptr->y_type = type;
6170 y_ptr->y_size = lnum;
6171# ifdef FEAT_VISUAL
6172 if (type == MBLOCK)
6173 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
6174 else
6175 y_ptr->y_width = 0;
6176# endif
6177}
6178#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
6179
6180 void
6181clear_oparg(oap)
6182 oparg_T *oap;
6183{
6184 vim_memset(oap, 0, sizeof(oparg_T));
6185}
6186
Bram Moolenaar7c626922005-02-07 22:01:03 +00006187static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188
6189/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00006190 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191 *
6192 * "Words" are counted by looking for boundaries between non-space and
6193 * space characters. (it seems to produce results that match 'wc'.)
6194 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00006195 * Return value is byte count; word count for the line is added to "*wc".
6196 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197 *
6198 * The function will only examine the first "limit" characters in the
6199 * line, stopping if it encounters an end-of-line (NUL byte). In that
6200 * case, eol_size will be added to the character count to account for
6201 * the size of the EOL character.
6202 */
6203 static long
Bram Moolenaar7c626922005-02-07 22:01:03 +00006204line_count_info(line, wc, cc, limit, eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205 char_u *line;
6206 long *wc;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006207 long *cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208 long limit;
6209 int eol_size;
6210{
Bram Moolenaar7c626922005-02-07 22:01:03 +00006211 long i;
6212 long words = 0;
6213 long chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214 int is_word = 0;
6215
Bram Moolenaar7c626922005-02-07 22:01:03 +00006216 for (i = 0; line[i] && i < limit; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217 {
6218 if (is_word)
6219 {
6220 if (vim_isspace(line[i]))
6221 {
6222 words++;
6223 is_word = 0;
6224 }
6225 }
6226 else if (!vim_isspace(line[i]))
6227 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006228 ++chars;
6229#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006230 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00006231#else
6232 ++i;
6233#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006234 }
6235
6236 if (is_word)
6237 words++;
6238 *wc += words;
6239
6240 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006241 if (line[i] == NUL && i < limit)
6242 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006244 chars += eol_size;
6245 }
6246 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247 return i;
6248}
6249
6250/*
6251 * Give some info about the position of the cursor (for "g CTRL-G").
6252 * In Visual mode, give some info about the selected region. (In this case,
6253 * the *_count_cursor variables store running totals for the selection.)
6254 */
6255 void
6256cursor_pos_info()
6257{
6258 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006259 char_u buf1[50];
6260 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006261 linenr_T lnum;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006262 long byte_count = 0;
6263 long byte_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006264 long char_count = 0;
6265 long char_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006266 long word_count = 0;
6267 long word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006268 int eol_size;
6269 long last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006270#ifdef FEAT_VISUAL
6271 long line_count_selected = 0;
6272 pos_T min_pos, max_pos;
6273 oparg_T oparg;
6274 struct block_def bd;
6275#endif
6276
6277 /*
6278 * Compute the length of the file in characters.
6279 */
6280 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6281 {
6282 MSG(_(no_lines_msg));
6283 }
6284 else
6285 {
6286 if (get_fileformat(curbuf) == EOL_DOS)
6287 eol_size = 2;
6288 else
6289 eol_size = 1;
6290
6291#ifdef FEAT_VISUAL
6292 if (VIsual_active)
6293 {
6294 if (lt(VIsual, curwin->w_cursor))
6295 {
6296 min_pos = VIsual;
6297 max_pos = curwin->w_cursor;
6298 }
6299 else
6300 {
6301 min_pos = curwin->w_cursor;
6302 max_pos = VIsual;
6303 }
6304 if (*p_sel == 'e' && max_pos.col > 0)
6305 --max_pos.col;
6306
6307 if (VIsual_mode == Ctrl_V)
6308 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00006309#ifdef FEAT_LINEBREAK
6310 char_u * saved_sbr = p_sbr;
6311
6312 /* Make 'sbr' empty for a moment to get the correct size. */
6313 p_sbr = empty_option;
6314#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 oparg.is_VIsual = 1;
6316 oparg.block_mode = TRUE;
6317 oparg.op_type = OP_NOP;
6318 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006319 &oparg.start_vcol, &oparg.end_vcol);
Bram Moolenaar81d00072009-04-29 15:41:40 +00006320#ifdef FEAT_LINEBREAK
6321 p_sbr = saved_sbr;
6322#endif
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006323 if (curwin->w_curswant == MAXCOL)
6324 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006325 /* Swap the start, end vcol if needed */
6326 if (oparg.end_vcol < oparg.start_vcol)
6327 {
6328 oparg.end_vcol += oparg.start_vcol;
6329 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
6330 oparg.end_vcol -= oparg.start_vcol;
6331 }
6332 }
6333 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
6334 }
6335#endif
6336
6337 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6338 {
6339 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006340 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341 {
6342 ui_breakcheck();
6343 if (got_int)
6344 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006345 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006346 }
6347
6348#ifdef FEAT_VISUAL
6349 /* Do extra processing for VIsual mode. */
6350 if (VIsual_active
6351 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
6352 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00006353 char_u *s = NULL;
6354 long len = 0L;
6355
Bram Moolenaar071d4272004-06-13 20:20:40 +00006356 switch (VIsual_mode)
6357 {
6358 case Ctrl_V:
6359# ifdef FEAT_VIRTUALEDIT
6360 virtual_op = virtual_active();
6361# endif
6362 block_prep(&oparg, &bd, lnum, 0);
6363# ifdef FEAT_VIRTUALEDIT
6364 virtual_op = MAYBE;
6365# endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00006366 s = bd.textstart;
6367 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368 break;
6369 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00006370 s = ml_get(lnum);
6371 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372 break;
6373 case 'v':
6374 {
6375 colnr_T start_col = (lnum == min_pos.lnum)
6376 ? min_pos.col : 0;
6377 colnr_T end_col = (lnum == max_pos.lnum)
6378 ? max_pos.col - start_col + 1 : MAXCOL;
6379
Bram Moolenaardef9e822004-12-31 20:58:58 +00006380 s = ml_get(lnum) + start_col;
6381 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382 }
6383 break;
6384 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00006385 if (s != NULL)
6386 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00006387 byte_count_cursor += line_count_info(s, &word_count_cursor,
6388 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00006389 if (lnum == curbuf->b_ml.ml_line_count
6390 && !curbuf->b_p_eol
6391 && curbuf->b_p_bin
Bram Moolenaarec2dad62005-01-02 11:36:03 +00006392 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006393 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00006394 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006395 }
6396 else
6397#endif
6398 {
6399 /* In non-visual mode, check for the line the cursor is on */
6400 if (lnum == curwin->w_cursor.lnum)
6401 {
6402 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006403 char_count_cursor += char_count;
6404 byte_count_cursor = byte_count +
6405 line_count_info(ml_get(lnum),
6406 &word_count_cursor, &char_count_cursor,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407 (long)(curwin->w_cursor.col + 1), eol_size);
6408 }
6409 }
6410 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006411 byte_count += line_count_info(ml_get(lnum), &word_count,
6412 &char_count, (long)MAXCOL, eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413 }
6414
6415 /* Correction for when last line doesn't have an EOL. */
6416 if (!curbuf->b_p_eol && curbuf->b_p_bin)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006417 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418
6419#ifdef FEAT_VISUAL
6420 if (VIsual_active)
6421 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006422 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423 {
6424 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006425 &max_pos.col);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006426 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006427 (long)(oparg.end_vcol - oparg.start_vcol + 1));
6428 }
6429 else
6430 buf1[0] = NUL;
6431
Bram Moolenaar7c626922005-02-07 22:01:03 +00006432 if (char_count_cursor == byte_count_cursor
Bram Moolenaar555b2802005-05-19 21:08:39 +00006433 && char_count == byte_count)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006434 vim_snprintf((char *)IObuff, IOSIZE,
6435 _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006436 buf1, line_count_selected,
6437 (long)curbuf->b_ml.ml_line_count,
6438 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006439 byte_count_cursor, byte_count);
6440 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006441 vim_snprintf((char *)IObuff, IOSIZE,
6442 _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"),
Bram Moolenaar7c626922005-02-07 22:01:03 +00006443 buf1, line_count_selected,
6444 (long)curbuf->b_ml.ml_line_count,
6445 word_count_cursor, word_count,
6446 char_count_cursor, char_count,
6447 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448 }
6449 else
6450#endif
6451 {
6452 p = ml_get_curline();
6453 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006454 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455 (int)curwin->w_virtcol + 1);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006456 col_print(buf2, sizeof(buf2), (int)STRLEN(p), linetabsize(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006457
Bram Moolenaar7c626922005-02-07 22:01:03 +00006458 if (char_count_cursor == byte_count_cursor
6459 && char_count == byte_count)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006460 vim_snprintf((char *)IObuff, IOSIZE,
6461 _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006462 (char *)buf1, (char *)buf2,
6463 (long)curwin->w_cursor.lnum,
6464 (long)curbuf->b_ml.ml_line_count,
6465 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006466 byte_count_cursor, byte_count);
6467 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006468 vim_snprintf((char *)IObuff, IOSIZE,
6469 _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"),
Bram Moolenaar7c626922005-02-07 22:01:03 +00006470 (char *)buf1, (char *)buf2,
6471 (long)curwin->w_cursor.lnum,
6472 (long)curbuf->b_ml.ml_line_count,
6473 word_count_cursor, word_count,
6474 char_count_cursor, char_count,
6475 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006476 }
6477
6478#ifdef FEAT_MBYTE
Bram Moolenaar7c626922005-02-07 22:01:03 +00006479 byte_count = bomb_size();
6480 if (byte_count > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
Bram Moolenaar7c626922005-02-07 22:01:03 +00006482 byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006483#endif
6484 /* Don't shorten this message, the user asked for it. */
6485 p = p_shm;
6486 p_shm = (char_u *)"";
6487 msg(IObuff);
6488 p_shm = p;
6489 }
6490}