blob: f3a26da44a175a6ee471de2a62394401cec560e3 [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));
Bram Moolenaar81340392012-06-06 16:12:59 +0200115#if defined(FEAT_COMMENTS) || defined(PROTO)
116static char_u *skip_comment __ARGS((char_u *line, int process, int include_space, int *is_comment));
117#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118#ifdef FEAT_VISUAL
119static void block_prep __ARGS((oparg_T *oap, struct block_def *, linenr_T, int));
120#endif
121#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
122static void str_to_reg __ARGS((struct yankreg *y_ptr, int type, char_u *str, long len, long blocklen));
123#endif
124static int ends_in_white __ARGS((linenr_T lnum));
125#ifdef FEAT_COMMENTS
126static int same_leader __ARGS((linenr_T lnum, int, char_u *, int, char_u *));
127static int fmt_check_par __ARGS((linenr_T, int *, char_u **, int do_comments));
128#else
129static int fmt_check_par __ARGS((linenr_T));
130#endif
131
132/*
133 * The names of operators.
134 * IMPORTANT: Index must correspond with defines in vim.h!!!
135 * The third field indicates whether the operator always works on lines.
136 */
137static char opchars[][3] =
138{
139 {NUL, NUL, FALSE}, /* OP_NOP */
140 {'d', NUL, FALSE}, /* OP_DELETE */
141 {'y', NUL, FALSE}, /* OP_YANK */
142 {'c', NUL, FALSE}, /* OP_CHANGE */
143 {'<', NUL, TRUE}, /* OP_LSHIFT */
144 {'>', NUL, TRUE}, /* OP_RSHIFT */
145 {'!', NUL, TRUE}, /* OP_FILTER */
146 {'g', '~', FALSE}, /* OP_TILDE */
147 {'=', NUL, TRUE}, /* OP_INDENT */
148 {'g', 'q', TRUE}, /* OP_FORMAT */
149 {':', NUL, TRUE}, /* OP_COLON */
150 {'g', 'U', FALSE}, /* OP_UPPER */
151 {'g', 'u', FALSE}, /* OP_LOWER */
152 {'J', NUL, TRUE}, /* DO_JOIN */
153 {'g', 'J', TRUE}, /* DO_JOIN_NS */
154 {'g', '?', FALSE}, /* OP_ROT13 */
155 {'r', NUL, FALSE}, /* OP_REPLACE */
156 {'I', NUL, FALSE}, /* OP_INSERT */
157 {'A', NUL, FALSE}, /* OP_APPEND */
158 {'z', 'f', TRUE}, /* OP_FOLD */
159 {'z', 'o', TRUE}, /* OP_FOLDOPEN */
160 {'z', 'O', TRUE}, /* OP_FOLDOPENREC */
161 {'z', 'c', TRUE}, /* OP_FOLDCLOSE */
162 {'z', 'C', TRUE}, /* OP_FOLDCLOSEREC */
163 {'z', 'd', TRUE}, /* OP_FOLDDEL */
164 {'z', 'D', TRUE}, /* OP_FOLDDELREC */
165 {'g', 'w', TRUE}, /* OP_FORMAT2 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000166 {'g', '@', FALSE}, /* OP_FUNCTION */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167};
168
169/*
170 * Translate a command name into an operator type.
171 * Must only be called with a valid operator name!
172 */
173 int
174get_op_type(char1, char2)
175 int char1;
176 int char2;
177{
178 int i;
179
180 if (char1 == 'r') /* ignore second character */
181 return OP_REPLACE;
182 if (char1 == '~') /* when tilde is an operator */
183 return OP_TILDE;
184 for (i = 0; ; ++i)
185 if (opchars[i][0] == char1 && opchars[i][1] == char2)
186 break;
187 return i;
188}
189
190#if defined(FEAT_VISUAL) || defined(PROTO)
191/*
192 * Return TRUE if operator "op" always works on whole lines.
193 */
194 int
195op_on_lines(op)
196 int op;
197{
198 return opchars[op][2];
199}
200#endif
201
202/*
203 * Get first operator command character.
204 * Returns 'g' or 'z' if there is another command character.
205 */
206 int
207get_op_char(optype)
208 int optype;
209{
210 return opchars[optype][0];
211}
212
213/*
214 * Get second operator command character.
215 */
216 int
217get_extra_op_char(optype)
218 int optype;
219{
220 return opchars[optype][1];
221}
222
223/*
224 * op_shift - handle a shift operation
225 */
226 void
227op_shift(oap, curs_top, amount)
228 oparg_T *oap;
229 int curs_top;
230 int amount;
231{
232 long i;
233 int first_char;
234 char_u *s;
235#ifdef FEAT_VISUAL
236 int block_col = 0;
237#endif
238
239 if (u_save((linenr_T)(oap->start.lnum - 1),
240 (linenr_T)(oap->end.lnum + 1)) == FAIL)
241 return;
242
243#ifdef FEAT_VISUAL
244 if (oap->block_mode)
245 block_col = curwin->w_cursor.col;
246#endif
247
248 for (i = oap->line_count; --i >= 0; )
249 {
250 first_char = *ml_get_curline();
251 if (first_char == NUL) /* empty line */
252 curwin->w_cursor.col = 0;
253#ifdef FEAT_VISUALEXTRA
254 else if (oap->block_mode)
255 shift_block(oap, amount);
256#endif
257 else
258 /* Move the line right if it doesn't start with '#', 'smartindent'
259 * isn't set or 'cindent' isn't set or '#' isn't in 'cino'. */
260#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
261 if (first_char != '#' || !preprocs_left())
262#endif
263 {
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000264 shift_line(oap->op_type == OP_LSHIFT, p_sr, amount, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265 }
266 ++curwin->w_cursor.lnum;
267 }
268
269 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
270
271#ifdef FEAT_VISUAL
272 if (oap->block_mode)
273 {
274 curwin->w_cursor.lnum = oap->start.lnum;
275 curwin->w_cursor.col = block_col;
276 }
277 else
278#endif
279 if (curs_top) /* put cursor on first line, for ">>" */
280 {
281 curwin->w_cursor.lnum = oap->start.lnum;
282 beginline(BL_SOL | BL_FIX); /* shift_line() may have set cursor.col */
283 }
284 else
285 --curwin->w_cursor.lnum; /* put cursor on last line, for ":>" */
286
287 if (oap->line_count > p_report)
288 {
289 if (oap->op_type == OP_RSHIFT)
290 s = (char_u *)">";
291 else
292 s = (char_u *)"<";
293 if (oap->line_count == 1)
294 {
295 if (amount == 1)
296 sprintf((char *)IObuff, _("1 line %sed 1 time"), s);
297 else
298 sprintf((char *)IObuff, _("1 line %sed %d times"), s, amount);
299 }
300 else
301 {
302 if (amount == 1)
303 sprintf((char *)IObuff, _("%ld lines %sed 1 time"),
304 oap->line_count, s);
305 else
306 sprintf((char *)IObuff, _("%ld lines %sed %d times"),
307 oap->line_count, s, amount);
308 }
309 msg(IObuff);
310 }
311
312 /*
313 * Set "'[" and "']" marks.
314 */
315 curbuf->b_op_start = oap->start;
316 curbuf->b_op_end.lnum = oap->end.lnum;
317 curbuf->b_op_end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
318 if (curbuf->b_op_end.col > 0)
319 --curbuf->b_op_end.col;
320}
321
322/*
323 * shift the current line one shiftwidth left (if left != 0) or right
324 * leaves cursor on first blank in the line
325 */
326 void
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000327shift_line(left, round, amount, call_changed_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328 int left;
329 int round;
330 int amount;
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000331 int call_changed_bytes; /* call changed_bytes() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332{
333 int count;
334 int i, j;
Bram Moolenaar14f24742012-08-08 18:01:05 +0200335 int p_sw = (int)get_sw_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336
337 count = get_indent(); /* get current indent */
338
339 if (round) /* round off indent */
340 {
341 i = count / p_sw; /* number of p_sw rounded down */
342 j = count % p_sw; /* extra spaces */
343 if (j && left) /* first remove extra spaces */
344 --amount;
345 if (left)
346 {
347 i -= amount;
348 if (i < 0)
349 i = 0;
350 }
351 else
352 i += amount;
353 count = i * p_sw;
354 }
355 else /* original vi indent */
356 {
357 if (left)
358 {
359 count -= p_sw * amount;
360 if (count < 0)
361 count = 0;
362 }
363 else
364 count += p_sw * amount;
365 }
366
367 /* Set new indent */
368#ifdef FEAT_VREPLACE
369 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000370 change_indent(INDENT_SET, count, FALSE, NUL, call_changed_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 else
372#endif
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000373 (void)set_indent(count, call_changed_bytes ? SIN_CHANGED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374}
375
376#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
377/*
378 * Shift one line of the current block one shiftwidth right or left.
379 * Leaves cursor on first character in block.
380 */
381 static void
382shift_block(oap, amount)
383 oparg_T *oap;
384 int amount;
385{
386 int left = (oap->op_type == OP_LSHIFT);
387 int oldstate = State;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000388 int total;
389 char_u *newp, *oldp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390 int oldcol = curwin->w_cursor.col;
Bram Moolenaar14f24742012-08-08 18:01:05 +0200391 int p_sw = (int)get_sw_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392 int p_ts = (int)curbuf->b_p_ts;
393 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 int incr;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000395 colnr_T ws_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 int i = 0, j = 0;
397 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398#ifdef FEAT_RIGHTLEFT
399 int old_p_ri = p_ri;
400
401 p_ri = 0; /* don't want revins in ident */
402#endif
403
404 State = INSERT; /* don't want REPLACE for State */
405 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
406 if (bd.is_short)
407 return;
408
409 /* total is number of screen columns to be inserted/removed */
410 total = amount * p_sw;
411 oldp = ml_get_curline();
412
413 if (!left)
414 {
415 /*
416 * 1. Get start vcol
417 * 2. Total ws vcols
418 * 3. Divvy into TABs & spp
419 * 4. Construct new string
420 */
421 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
422 ws_vcol = bd.start_vcol - bd.pre_whitesp;
423 if (bd.startspaces)
424 {
425#ifdef FEAT_MBYTE
426 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000427 bd.textstart += (*mb_ptr2len)(bd.textstart);
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000428 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429#endif
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000430 ++bd.textstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 }
432 for ( ; vim_iswhite(*bd.textstart); )
433 {
434 incr = lbr_chartabsize_adv(&bd.textstart, (colnr_T)(bd.start_vcol));
435 total += incr;
436 bd.start_vcol += incr;
437 }
438 /* OK, now total=all the VWS reqd, and textstart points at the 1st
439 * non-ws char in the block. */
440 if (!curbuf->b_p_et)
441 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
442 if (i)
443 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
444 else
445 j = total;
446 /* if we're splitting a TAB, allow for it */
447 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
448 len = (int)STRLEN(bd.textstart) + 1;
449 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
450 if (newp == NULL)
451 return;
452 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
453 mch_memmove(newp, oldp, (size_t)bd.textcol);
454 copy_chars(newp + bd.textcol, (size_t)i, TAB);
455 copy_spaces(newp + bd.textcol + i, (size_t)j);
456 /* the end */
457 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
458 }
459 else /* left */
460 {
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000461 colnr_T destination_col; /* column to which text in block will
462 be shifted */
463 char_u *verbatim_copy_end; /* end of the part of the line which is
464 copied verbatim */
465 colnr_T verbatim_copy_width;/* the (displayed) width of this part
466 of line */
467 unsigned fill; /* nr of spaces that replace a TAB */
468 unsigned new_line_len; /* the length of the line after the
469 block shift */
470 size_t block_space_width;
471 size_t shift_amount;
472 char_u *non_white = bd.textstart;
473 colnr_T non_white_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000475 /*
476 * Firstly, let's find the first non-whitespace character that is
477 * displayed after the block's start column and the character's column
478 * number. Also, let's calculate the width of all the whitespace
479 * characters that are displayed in the block and precede the searched
480 * non-whitespace character.
481 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000483 /* If "bd.startspaces" is set, "bd.textstart" points to the character,
484 * the part of which is displayed at the block's beginning. Let's start
485 * searching from the next character. */
486 if (bd.startspaces)
487 mb_ptr_adv(non_white);
488
489 /* The character's column is in "bd.start_vcol". */
490 non_white_col = bd.start_vcol;
491
492 while (vim_iswhite(*non_white))
493 {
494 incr = lbr_chartabsize_adv(&non_white, non_white_col);
495 non_white_col += incr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496 }
497
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000498 block_space_width = non_white_col - oap->start_vcol;
499 /* We will shift by "total" or "block_space_width", whichever is less.
500 */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000501 shift_amount = (block_space_width < (size_t)total
502 ? block_space_width : (size_t)total);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000503
504 /* The column to which we will shift the text. */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000505 destination_col = (colnr_T)(non_white_col - shift_amount);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000506
507 /* Now let's find out how much of the beginning of the line we can
508 * reuse without modification. */
509 verbatim_copy_end = bd.textstart;
510 verbatim_copy_width = bd.start_vcol;
511
512 /* If "bd.startspaces" is set, "bd.textstart" points to the character
513 * preceding the block. We have to subtract its width to obtain its
514 * column number. */
515 if (bd.startspaces)
516 verbatim_copy_width -= bd.start_char_vcols;
517 while (verbatim_copy_width < destination_col)
518 {
519 incr = lbr_chartabsize(verbatim_copy_end, verbatim_copy_width);
520 if (verbatim_copy_width + incr > destination_col)
521 break;
522 verbatim_copy_width += incr;
523 mb_ptr_adv(verbatim_copy_end);
524 }
525
526 /* If "destination_col" is different from the width of the initial
527 * part of the line that will be copied, it means we encountered a tab
528 * character, which we will have to partly replace with spaces. */
529 fill = destination_col - verbatim_copy_width;
530
531 /* The replacement line will consist of:
532 * - the beginning of the original line up to "verbatim_copy_end",
533 * - "fill" number of spaces,
534 * - the rest of the line, pointed to by non_white. */
535 new_line_len = (unsigned)(verbatim_copy_end - oldp)
536 + fill
537 + (unsigned)STRLEN(non_white) + 1;
538
539 newp = alloc_check(new_line_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 if (newp == NULL)
541 return;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000542 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp));
543 copy_spaces(newp + (verbatim_copy_end - oldp), (size_t)fill);
544 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 }
546 /* replace the line */
547 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
548 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
549 State = oldstate;
550 curwin->w_cursor.col = oldcol;
551#ifdef FEAT_RIGHTLEFT
552 p_ri = old_p_ri;
553#endif
554}
555#endif
556
557#ifdef FEAT_VISUALEXTRA
558/*
559 * Insert string "s" (b_insert ? before : after) block :AKelly
560 * Caller must prepare for undo.
561 */
562 static void
563block_insert(oap, s, b_insert, bdp)
564 oparg_T *oap;
565 char_u *s;
566 int b_insert;
567 struct block_def *bdp;
568{
569 int p_ts;
570 int count = 0; /* extra spaces to replace a cut TAB */
571 int spaces = 0; /* non-zero if cutting a TAB */
572 colnr_T offset; /* pointer along new line */
573 unsigned s_len; /* STRLEN(s) */
574 char_u *newp, *oldp; /* new, old lines */
575 linenr_T lnum; /* loop var */
576 int oldstate = State;
577
578 State = INSERT; /* don't want REPLACE for State */
579 s_len = (unsigned)STRLEN(s);
580
581 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
582 {
583 block_prep(oap, bdp, lnum, TRUE);
584 if (bdp->is_short && b_insert)
585 continue; /* OP_INSERT, line ends before block start */
586
587 oldp = ml_get(lnum);
588
589 if (b_insert)
590 {
591 p_ts = bdp->start_char_vcols;
592 spaces = bdp->startspaces;
593 if (spaces != 0)
594 count = p_ts - 1; /* we're cutting a TAB */
595 offset = bdp->textcol;
596 }
597 else /* append */
598 {
599 p_ts = bdp->end_char_vcols;
600 if (!bdp->is_short) /* spaces = padding after block */
601 {
602 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
603 if (spaces != 0)
604 count = p_ts - 1; /* we're cutting a TAB */
605 offset = bdp->textcol + bdp->textlen - (spaces != 0);
606 }
607 else /* spaces = padding to block edge */
608 {
609 /* if $ used, just append to EOL (ie spaces==0) */
610 if (!bdp->is_MAX)
611 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
612 count = spaces;
613 offset = bdp->textcol + bdp->textlen;
614 }
615 }
616
617 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
618 if (newp == NULL)
619 continue;
620
621 /* copy up to shifted part */
622 mch_memmove(newp, oldp, (size_t)(offset));
623 oldp += offset;
624
625 /* insert pre-padding */
626 copy_spaces(newp + offset, (size_t)spaces);
627
628 /* copy the new text */
629 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
630 offset += s_len;
631
632 if (spaces && !bdp->is_short)
633 {
634 /* insert post-padding */
635 copy_spaces(newp + offset + spaces, (size_t)(p_ts - spaces));
636 /* We're splitting a TAB, don't copy it. */
637 oldp++;
638 /* We allowed for that TAB, remember this now */
639 count++;
640 }
641
642 if (spaces > 0)
643 offset += count;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000644 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645
646 ml_replace(lnum, newp, FALSE);
647
648 if (lnum == oap->end.lnum)
649 {
650 /* Set "']" mark to the end of the block instead of the end of
651 * the insert in the first line. */
652 curbuf->b_op_end.lnum = oap->end.lnum;
653 curbuf->b_op_end.col = offset;
654 }
655 } /* for all lnum */
656
657 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
658
659 State = oldstate;
660}
661#endif
662
663#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
664/*
665 * op_reindent - handle reindenting a block of lines.
666 */
667 void
668op_reindent(oap, how)
669 oparg_T *oap;
670 int (*how) __ARGS((void));
671{
672 long i;
673 char_u *l;
674 int count;
675 linenr_T first_changed = 0;
676 linenr_T last_changed = 0;
677 linenr_T start_lnum = curwin->w_cursor.lnum;
678
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000679 /* Don't even try when 'modifiable' is off. */
680 if (!curbuf->b_p_ma)
681 {
682 EMSG(_(e_modifiable));
683 return;
684 }
685
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686 for (i = oap->line_count; --i >= 0 && !got_int; )
687 {
688 /* it's a slow thing to do, so give feedback so there's no worry that
689 * the computer's just hung. */
690
691 if (i > 1
692 && (i % 50 == 0 || i == oap->line_count - 1)
693 && oap->line_count > p_report)
694 smsg((char_u *)_("%ld lines to indent... "), i);
695
696 /*
697 * Be vi-compatible: For lisp indenting the first line is not
698 * indented, unless there is only one line.
699 */
700#ifdef FEAT_LISP
701 if (i != oap->line_count - 1 || oap->line_count == 1
702 || how != get_lisp_indent)
703#endif
704 {
705 l = skipwhite(ml_get_curline());
706 if (*l == NUL) /* empty or blank line */
707 count = 0;
708 else
709 count = how(); /* get the indent for this line */
710
711 if (set_indent(count, SIN_UNDO))
712 {
713 /* did change the indent, call changed_lines() later */
714 if (first_changed == 0)
715 first_changed = curwin->w_cursor.lnum;
716 last_changed = curwin->w_cursor.lnum;
717 }
718 }
719 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +0000720 curwin->w_cursor.col = 0; /* make sure it's valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 }
722
723 /* put cursor on first non-blank of indented line */
724 curwin->w_cursor.lnum = start_lnum;
725 beginline(BL_SOL | BL_FIX);
726
727 /* Mark changed lines so that they will be redrawn. When Visual
728 * highlighting was present, need to continue until the last line. When
729 * there is no change still need to remove the Visual highlighting. */
730 if (last_changed != 0)
731 changed_lines(first_changed, 0,
732#ifdef FEAT_VISUAL
733 oap->is_VIsual ? start_lnum + oap->line_count :
734#endif
735 last_changed + 1, 0L);
736#ifdef FEAT_VISUAL
737 else if (oap->is_VIsual)
738 redraw_curbuf_later(INVERTED);
739#endif
740
741 if (oap->line_count > p_report)
742 {
743 i = oap->line_count - (i + 1);
744 if (i == 1)
745 MSG(_("1 line indented "));
746 else
747 smsg((char_u *)_("%ld lines indented "), i);
748 }
749 /* set '[ and '] marks */
750 curbuf->b_op_start = oap->start;
751 curbuf->b_op_end = oap->end;
752}
753#endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
754
755#if defined(FEAT_EVAL) || defined(PROTO)
756/*
757 * Keep the last expression line here, for repeating.
758 */
759static char_u *expr_line = NULL;
760
761/*
762 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
763 * Returns '=' when OK, NUL otherwise.
764 */
765 int
766get_expr_register()
767{
768 char_u *new_line;
769
770 new_line = getcmdline('=', 0L, 0);
771 if (new_line == NULL)
772 return NUL;
773 if (*new_line == NUL) /* use previous line */
774 vim_free(new_line);
775 else
776 set_expr_line(new_line);
777 return '=';
778}
779
780/*
781 * Set the expression for the '=' register.
782 * Argument must be an allocated string.
783 */
784 void
785set_expr_line(new_line)
786 char_u *new_line;
787{
788 vim_free(expr_line);
789 expr_line = new_line;
790}
791
792/*
793 * Get the result of the '=' register expression.
794 * Returns a pointer to allocated memory, or NULL for failure.
795 */
796 char_u *
797get_expr_line()
798{
799 char_u *expr_copy;
800 char_u *rv;
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000801 static int nested = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802
803 if (expr_line == NULL)
804 return NULL;
805
806 /* Make a copy of the expression, because evaluating it may cause it to be
807 * changed. */
808 expr_copy = vim_strsave(expr_line);
809 if (expr_copy == NULL)
810 return NULL;
811
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000812 /* When we are invoked recursively limit the evaluation to 10 levels.
813 * Then return the string as-is. */
814 if (nested >= 10)
815 return expr_copy;
816
817 ++nested;
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000818 rv = eval_to_string(expr_copy, NULL, TRUE);
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000819 --nested;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 vim_free(expr_copy);
821 return rv;
822}
Bram Moolenaarde934d72005-05-22 22:09:40 +0000823
824/*
825 * Get the '=' register expression itself, without evaluating it.
826 */
827 char_u *
828get_expr_line_src()
829{
830 if (expr_line == NULL)
831 return NULL;
832 return vim_strsave(expr_line);
833}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834#endif /* FEAT_EVAL */
835
836/*
837 * Check if 'regname' is a valid name of a yank register.
838 * Note: There is no check for 0 (default register), caller should do this
839 */
840 int
841valid_yank_reg(regname, writing)
842 int regname;
843 int writing; /* if TRUE check for writable registers */
844{
845 if ( (regname > 0 && ASCII_ISALNUM(regname))
846 || (!writing && vim_strchr((char_u *)
847#ifdef FEAT_EVAL
848 "/.%#:="
849#else
850 "/.%#:"
851#endif
852 , regname) != NULL)
853 || regname == '"'
854 || regname == '-'
855 || regname == '_'
856#ifdef FEAT_CLIPBOARD
857 || regname == '*'
858 || regname == '+'
859#endif
860#ifdef FEAT_DND
861 || (!writing && regname == '~')
862#endif
863 )
864 return TRUE;
865 return FALSE;
866}
867
868/*
869 * Set y_current and y_append, according to the value of "regname".
870 * Cannot handle the '_' register.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000871 * Must only be called with a valid register name!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 *
873 * If regname is 0 and writing, use register 0
874 * If regname is 0 and reading, use previous register
875 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000876 void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877get_yank_register(regname, writing)
878 int regname;
879 int writing;
880{
881 int i;
882
883 y_append = FALSE;
884 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
885 {
886 y_current = y_previous;
887 return;
888 }
889 i = regname;
890 if (VIM_ISDIGIT(i))
891 i -= '0';
892 else if (ASCII_ISLOWER(i))
893 i = CharOrdLow(i) + 10;
894 else if (ASCII_ISUPPER(i))
895 {
896 i = CharOrdUp(i) + 10;
897 y_append = TRUE;
898 }
899 else if (regname == '-')
900 i = DELETION_REGISTER;
901#ifdef FEAT_CLIPBOARD
902 /* When selection is not available, use register 0 instead of '*' */
903 else if (clip_star.available && regname == '*')
904 i = STAR_REGISTER;
905 /* When clipboard is not available, use register 0 instead of '+' */
906 else if (clip_plus.available && regname == '+')
907 i = PLUS_REGISTER;
908#endif
909#ifdef FEAT_DND
910 else if (!writing && regname == '~')
911 i = TILDE_REGISTER;
912#endif
913 else /* not 0-9, a-z, A-Z or '-': use register 0 */
914 i = 0;
915 y_current = &(y_regs[i]);
916 if (writing) /* remember the register we write into for do_put() */
917 y_previous = y_current;
918}
919
Bram Moolenaar8299df92004-07-10 09:47:34 +0000920#if defined(FEAT_CLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921/*
922 * When "regname" is a clipboard register, obtain the selection. If it's not
923 * available return zero, otherwise return "regname".
924 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000925 int
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926may_get_selection(regname)
927 int regname;
928{
929 if (regname == '*')
930 {
931 if (!clip_star.available)
932 regname = 0;
933 else
934 clip_get_selection(&clip_star);
935 }
936 else if (regname == '+')
937 {
938 if (!clip_plus.available)
939 regname = 0;
940 else
941 clip_get_selection(&clip_plus);
942 }
943 return regname;
944}
945#endif
946
947#if defined(FEAT_VISUAL) || defined(PROTO)
948/*
949 * Obtain the contents of a "normal" register. The register is made empty.
950 * The returned pointer has allocated memory, use put_register() later.
951 */
952 void *
953get_register(name, copy)
954 int name;
955 int copy; /* make a copy, if FALSE make register empty. */
956{
Bram Moolenaar0a307462007-12-01 20:13:05 +0000957 struct yankreg *reg;
958 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959
960#ifdef FEAT_CLIPBOARD
961 /* When Visual area changed, may have to update selection. Obtain the
962 * selection too. */
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000963 if (name == '*' && clip_star.available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200965 if (clip_isautosel_star())
966 clip_update_selection(&clip_star);
967 may_get_selection(name);
968 }
969 if (name == '+' && clip_plus.available)
970 {
971 if (clip_isautosel_plus())
972 clip_update_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 may_get_selection(name);
974 }
975#endif
976
977 get_yank_register(name, 0);
978 reg = (struct yankreg *)alloc((unsigned)sizeof(struct yankreg));
979 if (reg != NULL)
980 {
981 *reg = *y_current;
982 if (copy)
983 {
984 /* If we run out of memory some or all of the lines are empty. */
985 if (reg->y_size == 0)
986 reg->y_array = NULL;
987 else
988 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
989 * reg->y_size));
990 if (reg->y_array != NULL)
991 {
992 for (i = 0; i < reg->y_size; ++i)
993 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
994 }
995 }
996 else
997 y_current->y_array = NULL;
998 }
999 return (void *)reg;
1000}
1001
1002/*
Bram Moolenaar0a307462007-12-01 20:13:05 +00001003 * Put "reg" into register "name". Free any previous contents and "reg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 */
1005 void
1006put_register(name, reg)
1007 int name;
1008 void *reg;
1009{
1010 get_yank_register(name, 0);
1011 free_yank_all();
1012 *y_current = *(struct yankreg *)reg;
Bram Moolenaar0a307462007-12-01 20:13:05 +00001013 vim_free(reg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014
1015# ifdef FEAT_CLIPBOARD
1016 /* Send text written to clipboard register to the clipboard. */
1017 may_set_selection();
1018# endif
1019}
1020#endif
1021
1022#if defined(FEAT_MOUSE) || defined(PROTO)
1023/*
1024 * return TRUE if the current yank register has type MLINE
1025 */
1026 int
1027yank_register_mline(regname)
1028 int regname;
1029{
1030 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1031 return FALSE;
1032 if (regname == '_') /* black hole is always empty */
1033 return FALSE;
1034 get_yank_register(regname, FALSE);
1035 return (y_current->y_type == MLINE);
1036}
1037#endif
1038
1039/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001040 * Start or stop recording into a yank register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041 *
Bram Moolenaard55de222007-05-06 13:38:48 +00001042 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 */
1044 int
1045do_record(c)
1046 int c;
1047{
Bram Moolenaard55de222007-05-06 13:38:48 +00001048 char_u *p;
1049 static int regname;
1050 struct yankreg *old_y_previous, *old_y_current;
1051 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052
1053 if (Recording == FALSE) /* start recording */
1054 {
1055 /* registers 0-9, a-z and " are allowed */
1056 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1057 retval = FAIL;
1058 else
1059 {
1060 Recording = TRUE;
1061 showmode();
1062 regname = c;
1063 retval = OK;
1064 }
1065 }
1066 else /* stop recording */
1067 {
1068 /*
Bram Moolenaard55de222007-05-06 13:38:48 +00001069 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1070 * needs to be removed again to put it in a register. exec_reg then
1071 * adds the escaping back later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 */
1073 Recording = FALSE;
1074 MSG("");
1075 p = get_recorded();
1076 if (p == NULL)
1077 retval = FAIL;
1078 else
1079 {
Bram Moolenaar81b85872007-03-04 20:22:01 +00001080 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1081 vim_unescape_csi(p);
1082
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 /*
1084 * We don't want to change the default register here, so save and
1085 * restore the current register name.
1086 */
1087 old_y_previous = y_previous;
1088 old_y_current = y_current;
1089
1090 retval = stuff_yank(regname, p);
1091
1092 y_previous = old_y_previous;
1093 y_current = old_y_current;
1094 }
1095 }
1096 return retval;
1097}
1098
1099/*
1100 * Stuff string "p" into yank register "regname" as a single line (append if
1101 * uppercase). "p" must have been alloced.
1102 *
1103 * return FAIL for failure, OK otherwise
1104 */
1105 static int
1106stuff_yank(regname, p)
1107 int regname;
1108 char_u *p;
1109{
1110 char_u *lp;
1111 char_u **pp;
1112
1113 /* check for read-only register */
1114 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1115 {
1116 vim_free(p);
1117 return FAIL;
1118 }
1119 if (regname == '_') /* black hole: don't do anything */
1120 {
1121 vim_free(p);
1122 return OK;
1123 }
1124 get_yank_register(regname, TRUE);
1125 if (y_append && y_current->y_array != NULL)
1126 {
1127 pp = &(y_current->y_array[y_current->y_size - 1]);
1128 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1129 if (lp == NULL)
1130 {
1131 vim_free(p);
1132 return FAIL;
1133 }
1134 STRCPY(lp, *pp);
1135 STRCAT(lp, p);
1136 vim_free(p);
1137 vim_free(*pp);
1138 *pp = lp;
1139 }
1140 else
1141 {
1142 free_yank_all();
1143 if ((y_current->y_array =
1144 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1145 {
1146 vim_free(p);
1147 return FAIL;
1148 }
1149 y_current->y_array[0] = p;
1150 y_current->y_size = 1;
1151 y_current->y_type = MCHAR; /* used to be MLINE, why? */
1152 }
1153 return OK;
1154}
1155
Bram Moolenaar42b94362009-05-26 16:12:37 +00001156static int execreg_lastc = NUL;
1157
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158/*
1159 * execute a yank register: copy it into the stuff buffer
1160 *
1161 * return FAIL for failure, OK otherwise
1162 */
1163 int
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001164do_execreg(regname, colon, addcr, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 int regname;
1166 int colon; /* insert ':' before each line */
1167 int addcr; /* always add '\n' to end of line */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001168 int silent; /* set "silent" flag in typeahead buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 long i;
1171 char_u *p;
1172 int retval = OK;
1173 int remap;
1174
1175 if (regname == '@') /* repeat previous one */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001176 {
Bram Moolenaar42b94362009-05-26 16:12:37 +00001177 if (execreg_lastc == NUL)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001178 {
1179 EMSG(_("E748: No previously used register"));
1180 return FAIL;
1181 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001182 regname = execreg_lastc;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001183 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 /* check for valid regname */
1185 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001186 {
1187 emsg_invreg(regname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 return FAIL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001189 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001190 execreg_lastc = regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191
1192#ifdef FEAT_CLIPBOARD
1193 regname = may_get_selection(regname);
1194#endif
1195
1196 if (regname == '_') /* black hole: don't stuff anything */
1197 return OK;
1198
1199#ifdef FEAT_CMDHIST
1200 if (regname == ':') /* use last command line */
1201 {
1202 if (last_cmdline == NULL)
1203 {
1204 EMSG(_(e_nolastcmd));
1205 return FAIL;
1206 }
1207 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
1208 new_last_cmdline = NULL;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001209 /* Escape all control characters with a CTRL-V */
1210 p = vim_strsave_escaped_ext(last_cmdline,
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001211 (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 +00001212 if (p != NULL)
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001213 {
1214 /* When in Visual mode "'<,'>" will be prepended to the command.
1215 * Remove it when it's already there. */
1216 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001217 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001218 else
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001219 retval = put_in_typebuf(p, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001220 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001221 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 }
1223#endif
1224#ifdef FEAT_EVAL
1225 else if (regname == '=')
1226 {
1227 p = get_expr_line();
1228 if (p == NULL)
1229 return FAIL;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001230 retval = put_in_typebuf(p, TRUE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 vim_free(p);
1232 }
1233#endif
1234 else if (regname == '.') /* use last inserted text */
1235 {
1236 p = get_last_insert_save();
1237 if (p == NULL)
1238 {
1239 EMSG(_(e_noinstext));
1240 return FAIL;
1241 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001242 retval = put_in_typebuf(p, FALSE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 vim_free(p);
1244 }
1245 else
1246 {
1247 get_yank_register(regname, FALSE);
1248 if (y_current->y_array == NULL)
1249 return FAIL;
1250
1251 /* Disallow remaping for ":@r". */
1252 remap = colon ? REMAP_NONE : REMAP_YES;
1253
1254 /*
1255 * Insert lines into typeahead buffer, from last one to first one.
1256 */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001257 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 for (i = y_current->y_size; --i >= 0; )
1259 {
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001260 char_u *escaped;
1261
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 /* insert NL between lines and after last line if type is MLINE */
1263 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1264 || addcr)
1265 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001266 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 return FAIL;
1268 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001269 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1270 if (escaped == NULL)
1271 return FAIL;
1272 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1273 vim_free(escaped);
1274 if (retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 return FAIL;
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001276 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 == FAIL)
1278 return FAIL;
1279 }
1280 Exec_reg = TRUE; /* disable the 'q' command */
1281 }
1282 return retval;
1283}
1284
1285/*
1286 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1287 * used only after other typeahead has been processed.
1288 */
1289 static void
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001290put_reedit_in_typebuf(silent)
1291 int silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292{
1293 char_u buf[3];
1294
1295 if (restart_edit != NUL)
1296 {
1297 if (restart_edit == 'V')
1298 {
1299 buf[0] = 'g';
1300 buf[1] = 'R';
1301 buf[2] = NUL;
1302 }
1303 else
1304 {
1305 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1306 buf[1] = NUL;
1307 }
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001308 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 restart_edit = NUL;
1310 }
1311}
1312
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001313/*
1314 * Insert register contents "s" into the typeahead buffer, so that it will be
1315 * executed again.
1316 * When "esc" is TRUE it is to be taken literally: Escape CSI characters and
1317 * no remapping.
1318 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 static int
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001320put_in_typebuf(s, esc, colon, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 char_u *s;
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001322 int esc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 int colon; /* add ':' before the line */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001324 int silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325{
1326 int retval = OK;
1327
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001328 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 if (colon)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001330 retval = ins_typebuf((char_u *)"\n", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 if (retval == OK)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001332 {
1333 char_u *p;
1334
1335 if (esc)
1336 p = vim_strsave_escape_csi(s);
1337 else
1338 p = s;
1339 if (p == NULL)
1340 retval = FAIL;
1341 else
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001342 retval = ins_typebuf(p, esc ? REMAP_NONE : REMAP_YES,
1343 0, TRUE, silent);
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001344 if (esc)
1345 vim_free(p);
1346 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 if (colon && retval == OK)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001348 retval = ins_typebuf((char_u *)":", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 return retval;
1350}
1351
1352/*
1353 * Insert a yank register: copy it into the Read buffer.
1354 * Used by CTRL-R command and middle mouse button in insert mode.
1355 *
1356 * return FAIL for failure, OK otherwise
1357 */
1358 int
1359insert_reg(regname, literally)
1360 int regname;
1361 int literally; /* insert literally, not as if typed */
1362{
1363 long i;
1364 int retval = OK;
1365 char_u *arg;
1366 int allocated;
1367
1368 /*
1369 * It is possible to get into an endless loop by having CTRL-R a in
1370 * register a and then, in insert mode, doing CTRL-R a.
1371 * If you hit CTRL-C, the loop will be broken here.
1372 */
1373 ui_breakcheck();
1374 if (got_int)
1375 return FAIL;
1376
1377 /* check for valid regname */
1378 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1379 return FAIL;
1380
1381#ifdef FEAT_CLIPBOARD
1382 regname = may_get_selection(regname);
1383#endif
1384
1385 if (regname == '.') /* insert last inserted text */
1386 retval = stuff_inserted(NUL, 1L, TRUE);
1387 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1388 {
1389 if (arg == NULL)
1390 return FAIL;
1391 stuffescaped(arg, literally);
1392 if (allocated)
1393 vim_free(arg);
1394 }
1395 else /* name or number register */
1396 {
1397 get_yank_register(regname, FALSE);
1398 if (y_current->y_array == NULL)
1399 retval = FAIL;
1400 else
1401 {
1402 for (i = 0; i < y_current->y_size; ++i)
1403 {
1404 stuffescaped(y_current->y_array[i], literally);
1405 /*
1406 * Insert a newline between lines and after last line if
1407 * y_type is MLINE.
1408 */
1409 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1410 stuffcharReadbuff('\n');
1411 }
1412 }
1413 }
1414
1415 return retval;
1416}
1417
1418/*
1419 * Stuff a string into the typeahead buffer, such that edit() will insert it
1420 * literally ("literally" TRUE) or interpret is as typed characters.
1421 */
1422 static void
1423stuffescaped(arg, literally)
1424 char_u *arg;
1425 int literally;
1426{
1427 int c;
1428 char_u *start;
1429
1430 while (*arg != NUL)
1431 {
1432 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1433 * stuff K_SPECIAL to get the effect of a special key when "literally"
1434 * is TRUE. */
1435 start = arg;
1436 while ((*arg >= ' '
1437#ifndef EBCDIC
1438 && *arg < DEL /* EBCDIC: chars above space are normal */
1439#endif
1440 )
1441 || (*arg == K_SPECIAL && !literally))
1442 ++arg;
1443 if (arg > start)
1444 stuffReadbuffLen(start, (long)(arg - start));
1445
1446 /* stuff a single special character */
1447 if (*arg != NUL)
1448 {
1449#ifdef FEAT_MBYTE
1450 if (has_mbyte)
Bram Moolenaar3b1c4852010-07-31 17:59:29 +02001451 c = mb_cptr2char_adv(&arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452 else
1453#endif
1454 c = *arg++;
1455 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1456 stuffcharReadbuff(Ctrl_V);
1457 stuffcharReadbuff(c);
1458 }
1459 }
1460}
1461
1462/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001463 * If "regname" is a special register, return TRUE and store a pointer to its
1464 * value in "argp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465 */
Bram Moolenaar8299df92004-07-10 09:47:34 +00001466 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467get_spec_reg(regname, argp, allocated, errmsg)
1468 int regname;
1469 char_u **argp;
Bram Moolenaard55de222007-05-06 13:38:48 +00001470 int *allocated; /* return: TRUE when value was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471 int errmsg; /* give error message when failing */
1472{
1473 int cnt;
1474
1475 *argp = NULL;
1476 *allocated = FALSE;
1477 switch (regname)
1478 {
1479 case '%': /* file name */
1480 if (errmsg)
1481 check_fname(); /* will give emsg if not set */
1482 *argp = curbuf->b_fname;
1483 return TRUE;
1484
1485 case '#': /* alternate file name */
1486 *argp = getaltfname(errmsg); /* may give emsg if not set */
1487 return TRUE;
1488
1489#ifdef FEAT_EVAL
1490 case '=': /* result of expression */
1491 *argp = get_expr_line();
1492 *allocated = TRUE;
1493 return TRUE;
1494#endif
1495
1496 case ':': /* last command line */
1497 if (last_cmdline == NULL && errmsg)
1498 EMSG(_(e_nolastcmd));
1499 *argp = last_cmdline;
1500 return TRUE;
1501
1502 case '/': /* last search-pattern */
1503 if (last_search_pat() == NULL && errmsg)
1504 EMSG(_(e_noprevre));
1505 *argp = last_search_pat();
1506 return TRUE;
1507
1508 case '.': /* last inserted text */
1509 *argp = get_last_insert_save();
1510 *allocated = TRUE;
1511 if (*argp == NULL && errmsg)
1512 EMSG(_(e_noinstext));
1513 return TRUE;
1514
1515#ifdef FEAT_SEARCHPATH
1516 case Ctrl_F: /* Filename under cursor */
1517 case Ctrl_P: /* Path under cursor, expand via "path" */
1518 if (!errmsg)
1519 return FALSE;
1520 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001521 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 *allocated = TRUE;
1523 return TRUE;
1524#endif
1525
1526 case Ctrl_W: /* word under cursor */
1527 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1528 if (!errmsg)
1529 return FALSE;
1530 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1531 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1532 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1533 *allocated = TRUE;
1534 return TRUE;
1535
1536 case '_': /* black hole: always empty */
1537 *argp = (char_u *)"";
1538 return TRUE;
1539 }
1540
1541 return FALSE;
1542}
1543
1544/*
Bram Moolenaar8299df92004-07-10 09:47:34 +00001545 * Paste a yank register into the command line.
1546 * Only for non-special registers.
1547 * Used by CTRL-R command in command-line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 * insert_reg() can't be used here, because special characters from the
1549 * register contents will be interpreted as commands.
1550 *
1551 * return FAIL for failure, OK otherwise
1552 */
1553 int
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001554cmdline_paste_reg(regname, literally, remcr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 int regname;
1556 int literally; /* Insert text literally instead of "as typed" */
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001557 int remcr; /* don't add trailing CR */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558{
1559 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560
1561 get_yank_register(regname, FALSE);
1562 if (y_current->y_array == NULL)
1563 return FAIL;
1564
1565 for (i = 0; i < y_current->y_size; ++i)
1566 {
1567 cmdline_paste_str(y_current->y_array[i], literally);
1568
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001569 /* Insert ^M between lines and after last line if type is MLINE.
1570 * Don't do this when "remcr" is TRUE and the next line is empty. */
1571 if (y_current->y_type == MLINE
1572 || (i < y_current->y_size - 1
1573 && !(remcr
1574 && i == y_current->y_size - 2
1575 && *y_current->y_array[i + 1] == NUL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 cmdline_paste_str((char_u *)"\r", literally);
1577
1578 /* Check for CTRL-C, in case someone tries to paste a few thousand
1579 * lines and gets bored. */
1580 ui_breakcheck();
1581 if (got_int)
1582 return FAIL;
1583 }
1584 return OK;
1585}
1586
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587#if defined(FEAT_CLIPBOARD) || defined(PROTO)
1588/*
1589 * Adjust the register name pointed to with "rp" for the clipboard being
1590 * used always and the clipboard being available.
1591 */
1592 void
1593adjust_clip_reg(rp)
1594 int *rp;
1595{
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001596 /* If no reg. specified, and "unnamed" or "unnamedplus" is in 'clipboard',
1597 * use '*' or '+' reg, respectively. "unnamedplus" prevails. */
1598 if (*rp == 0 && clip_unnamed != 0)
1599 *rp = ((clip_unnamed & CLIP_UNNAMED_PLUS) && clip_plus.available)
1600 ? '+' : '*';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 if (!clip_star.available && *rp == '*')
1602 *rp = 0;
1603 if (!clip_plus.available && *rp == '+')
1604 *rp = 0;
1605}
1606#endif
1607
1608/*
Bram Moolenaard04b7502010-07-08 22:27:55 +02001609 * Handle a delete operation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 *
Bram Moolenaard04b7502010-07-08 22:27:55 +02001611 * Return FAIL if undo failed, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 */
1613 int
1614op_delete(oap)
1615 oparg_T *oap;
1616{
1617 int n;
1618 linenr_T lnum;
1619 char_u *ptr;
1620#ifdef FEAT_VISUAL
1621 char_u *newp, *oldp;
1622 struct block_def bd;
1623#endif
1624 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1625 int did_yank = FALSE;
Bram Moolenaar7c821302012-09-05 14:18:45 +02001626 int orig_regname = oap->regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627
1628 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1629 return OK;
1630
1631 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1632 if (oap->empty)
1633 return u_save_cursor();
1634
1635 if (!curbuf->b_p_ma)
1636 {
1637 EMSG(_(e_modifiable));
1638 return FAIL;
1639 }
1640
1641#ifdef FEAT_CLIPBOARD
1642 adjust_clip_reg(&oap->regname);
1643#endif
1644
1645#ifdef FEAT_MBYTE
1646 if (has_mbyte)
1647 mb_adjust_opend(oap);
1648#endif
1649
Bram Moolenaard04b7502010-07-08 22:27:55 +02001650 /*
1651 * Imitate the strange Vi behaviour: If the delete spans more than one
1652 * line and motion_type == MCHAR and the result is a blank line, make the
1653 * delete linewise. Don't do this for the change command or Visual mode.
1654 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 if ( oap->motion_type == MCHAR
1656#ifdef FEAT_VISUAL
1657 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001658 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659#endif
1660 && oap->line_count > 1
Bram Moolenaar64a72302012-01-10 13:46:22 +01001661 && oap->motion_force == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 && oap->op_type == OP_DELETE)
1663 {
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001664 ptr = ml_get(oap->end.lnum) + oap->end.col;
1665 if (*ptr != NUL)
1666 ptr += oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 ptr = skipwhite(ptr);
1668 if (*ptr == NUL && inindent(0))
1669 oap->motion_type = MLINE;
1670 }
1671
Bram Moolenaard04b7502010-07-08 22:27:55 +02001672 /*
1673 * Check for trying to delete (e.g. "D") in an empty line.
1674 * Note: For the change operator it is ok.
1675 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 if ( oap->motion_type == MCHAR
1677 && oap->line_count == 1
1678 && oap->op_type == OP_DELETE
1679 && *ml_get(oap->start.lnum) == NUL)
1680 {
1681 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001682 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 * 'cpoptions' (Vi compatible).
1684 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001685#ifdef FEAT_VIRTUALEDIT
1686 if (virtual_op)
1687 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1688 * marks as if it happened. */
1689 goto setmarks;
1690#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1692 beep_flush();
1693 return OK;
1694 }
1695
Bram Moolenaard04b7502010-07-08 22:27:55 +02001696 /*
1697 * Do a yank of whatever we're about to delete.
1698 * If a yank register was specified, put the deleted text into that
1699 * register. For the black hole register '_' don't yank anything.
1700 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701 if (oap->regname != '_')
1702 {
1703 if (oap->regname != 0)
1704 {
1705 /* check for read-only register */
1706 if (!valid_yank_reg(oap->regname, TRUE))
1707 {
1708 beep_flush();
1709 return OK;
1710 }
1711 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1712 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1713 did_yank = TRUE;
1714 }
1715
1716 /*
1717 * Put deleted text into register 1 and shift number registers if the
1718 * delete contains a line break, or when a regname has been specified.
Bram Moolenaar7c821302012-09-05 14:18:45 +02001719 * Use the register name from before adjust_clip_reg() may have
1720 * changed it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 */
Bram Moolenaar7c821302012-09-05 14:18:45 +02001722 if (orig_regname != 0 || oap->motion_type == MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 || oap->line_count > 1 || oap->use_reg_one)
1724 {
1725 y_current = &y_regs[9];
1726 free_yank_all(); /* free register nine */
1727 for (n = 9; n > 1; --n)
1728 y_regs[n] = y_regs[n - 1];
1729 y_previous = y_current = &y_regs[1];
1730 y_regs[1].y_array = NULL; /* set register one to empty */
1731 if (op_yank(oap, TRUE, FALSE) == OK)
1732 did_yank = TRUE;
1733 }
1734
Bram Moolenaar84298db2012-04-20 13:46:08 +02001735 /* Yank into small delete register when no named register specified
1736 * and the delete is within one line. */
1737 if ((
1738#ifdef FEAT_CLIPBOARD
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001739 ((clip_unnamed & CLIP_UNNAMED) && oap->regname == '*') ||
1740 ((clip_unnamed & CLIP_UNNAMED_PLUS) && oap->regname == '+') ||
Bram Moolenaar84298db2012-04-20 13:46:08 +02001741#endif
1742 oap->regname == 0) && oap->motion_type != MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 && oap->line_count == 1)
1744 {
1745 oap->regname = '-';
1746 get_yank_register(oap->regname, TRUE);
1747 if (op_yank(oap, TRUE, FALSE) == OK)
1748 did_yank = TRUE;
1749 oap->regname = 0;
1750 }
1751
1752 /*
1753 * If there's too much stuff to fit in the yank register, then get a
1754 * confirmation before doing the delete. This is crude, but simple.
1755 * And it avoids doing a delete of something we can't put back if we
1756 * want.
1757 */
1758 if (!did_yank)
1759 {
1760 int msg_silent_save = msg_silent;
1761
1762 msg_silent = 0; /* must display the prompt */
1763 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1764 msg_silent = msg_silent_save;
1765 if (n != 'y')
1766 {
1767 EMSG(_(e_abort));
1768 return FAIL;
1769 }
1770 }
1771 }
1772
1773#ifdef FEAT_VISUAL
Bram Moolenaard04b7502010-07-08 22:27:55 +02001774 /*
1775 * block mode delete
1776 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 if (oap->block_mode)
1778 {
1779 if (u_save((linenr_T)(oap->start.lnum - 1),
1780 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1781 return FAIL;
1782
1783 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1784 {
1785 block_prep(oap, &bd, lnum, TRUE);
1786 if (bd.textlen == 0) /* nothing to delete */
1787 continue;
1788
1789 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1790 if (lnum == curwin->w_cursor.lnum)
1791 {
1792 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1793# ifdef FEAT_VIRTUALEDIT
1794 curwin->w_cursor.coladd = 0;
1795# endif
1796 }
1797
1798 /* n == number of chars deleted
1799 * If we delete a TAB, it may be replaced by several characters.
1800 * Thus the number of characters may increase!
1801 */
1802 n = bd.textlen - bd.startspaces - bd.endspaces;
1803 oldp = ml_get(lnum);
1804 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1805 if (newp == NULL)
1806 continue;
1807 /* copy up to deleted part */
1808 mch_memmove(newp, oldp, (size_t)bd.textcol);
1809 /* insert spaces */
1810 copy_spaces(newp + bd.textcol,
1811 (size_t)(bd.startspaces + bd.endspaces));
1812 /* copy the part after the deleted part */
1813 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001814 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 /* replace the line */
1816 ml_replace(lnum, newp, FALSE);
1817 }
1818
1819 check_cursor_col();
1820 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1821 oap->end.lnum + 1, 0L);
1822 oap->line_count = 0; /* no lines deleted */
1823 }
1824 else
1825#endif
1826 if (oap->motion_type == MLINE)
1827 {
1828 if (oap->op_type == OP_CHANGE)
1829 {
1830 /* Delete the lines except the first one. Temporarily move the
1831 * cursor to the next line. Save the current line number, if the
1832 * last line is deleted it may be changed.
1833 */
1834 if (oap->line_count > 1)
1835 {
1836 lnum = curwin->w_cursor.lnum;
1837 ++curwin->w_cursor.lnum;
1838 del_lines((long)(oap->line_count - 1), TRUE);
1839 curwin->w_cursor.lnum = lnum;
1840 }
1841 if (u_save_cursor() == FAIL)
1842 return FAIL;
1843 if (curbuf->b_p_ai) /* don't delete indent */
1844 {
1845 beginline(BL_WHITE); /* cursor on first non-white */
1846 did_ai = TRUE; /* delete the indent when ESC hit */
1847 ai_col = curwin->w_cursor.col;
1848 }
1849 else
1850 beginline(0); /* cursor in column 0 */
1851 truncate_line(FALSE); /* delete the rest of the line */
1852 /* leave cursor past last char in line */
1853 if (oap->line_count > 1)
1854 u_clearline(); /* "U" command not possible after "2cc" */
1855 }
1856 else
1857 {
1858 del_lines(oap->line_count, TRUE);
1859 beginline(BL_WHITE | BL_FIX);
1860 u_clearline(); /* "U" command not possible after "dd" */
1861 }
1862 }
1863 else
1864 {
1865#ifdef FEAT_VIRTUALEDIT
1866 if (virtual_op)
1867 {
1868 int endcol = 0;
1869
1870 /* For virtualedit: break the tabs that are partly included. */
1871 if (gchar_pos(&oap->start) == '\t')
1872 {
1873 if (u_save_cursor() == FAIL) /* save first line for undo */
1874 return FAIL;
1875 if (oap->line_count == 1)
1876 endcol = getviscol2(oap->end.col, oap->end.coladd);
1877 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1878 oap->start = curwin->w_cursor;
1879 if (oap->line_count == 1)
1880 {
1881 coladvance(endcol);
1882 oap->end.col = curwin->w_cursor.col;
1883 oap->end.coladd = curwin->w_cursor.coladd;
1884 curwin->w_cursor = oap->start;
1885 }
1886 }
1887
1888 /* Break a tab only when it's included in the area. */
1889 if (gchar_pos(&oap->end) == '\t'
1890 && (int)oap->end.coladd < oap->inclusive)
1891 {
1892 /* save last line for undo */
1893 if (u_save((linenr_T)(oap->end.lnum - 1),
1894 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1895 return FAIL;
1896 curwin->w_cursor = oap->end;
1897 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1898 oap->end = curwin->w_cursor;
1899 curwin->w_cursor = oap->start;
1900 }
1901 }
1902#endif
1903
1904 if (oap->line_count == 1) /* delete characters within one line */
1905 {
1906 if (u_save_cursor() == FAIL) /* save line for undo */
1907 return FAIL;
1908
1909 /* if 'cpoptions' contains '$', display '$' at end of change */
1910 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
1911 && oap->op_type == OP_CHANGE
1912 && oap->end.lnum == curwin->w_cursor.lnum
1913#ifdef FEAT_VISUAL
1914 && !oap->is_VIsual
1915#endif
1916 )
1917 display_dollar(oap->end.col - !oap->inclusive);
1918
1919 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1920
1921#ifdef FEAT_VIRTUALEDIT
1922 if (virtual_op)
1923 {
1924 /* fix up things for virtualedit-delete:
1925 * break the tabs which are going to get in our way
1926 */
1927 char_u *curline = ml_get_curline();
1928 int len = (int)STRLEN(curline);
1929
1930 if (oap->end.coladd != 0
1931 && (int)oap->end.col >= len - 1
1932 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1933 n++;
1934 /* Delete at least one char (e.g, when on a control char). */
1935 if (n == 0 && oap->start.coladd != oap->end.coladd)
1936 n = 1;
1937
1938 /* When deleted a char in the line, reset coladd. */
1939 if (gchar_cursor() != NUL)
1940 curwin->w_cursor.coladd = 0;
1941 }
1942#endif
Bram Moolenaara554a192011-09-21 17:33:53 +02001943 if (oap->op_type == OP_DELETE
1944 && oap->inclusive
1945 && oap->end.lnum == curbuf->b_ml.ml_line_count
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001946 && n > (int)STRLEN(ml_get(oap->end.lnum)))
1947 {
1948 /* Special case: gH<Del> deletes the last line. */
1949 del_lines(1L, FALSE);
1950 }
1951 else
1952 {
1953 (void)del_bytes((long)n, !virtual_op, oap->op_type == OP_DELETE
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001954#ifdef FEAT_VISUAL
1955 && !oap->is_VIsual
1956#endif
1957 );
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001958 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 }
1960 else /* delete characters between lines */
1961 {
1962 pos_T curpos;
Bram Moolenaar5f1e3e42012-02-22 17:38:00 +01001963 int delete_last_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964
1965 /* save deleted and changed lines for undo */
1966 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1967 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1968 return FAIL;
1969
Bram Moolenaar5f1e3e42012-02-22 17:38:00 +01001970 delete_last_line = (oap->end.lnum == curbuf->b_ml.ml_line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 truncate_line(TRUE); /* delete from cursor to end of line */
1972
1973 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1974 ++curwin->w_cursor.lnum;
1975 del_lines((long)(oap->line_count - 2), FALSE);
1976
Bram Moolenaar9e98edf2012-03-07 19:30:36 +01001977 if (delete_last_line)
1978 oap->end.lnum = curbuf->b_ml.ml_line_count;
1979
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001980 n = (oap->end.col + 1 - !oap->inclusive);
Bram Moolenaar5f1e3e42012-02-22 17:38:00 +01001981 if (oap->inclusive && delete_last_line
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001982 && n > (int)STRLEN(ml_get(oap->end.lnum)))
1983 {
1984 /* Special case: gH<Del> deletes the last line. */
1985 del_lines(1L, FALSE);
1986 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
Bram Moolenaar66accae2012-01-10 13:44:27 +01001987 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
1988 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001989 }
1990 else
1991 {
1992 /* delete from start of line until op_end */
1993 curwin->w_cursor.col = 0;
1994 (void)del_bytes((long)n, !virtual_op, oap->op_type == OP_DELETE
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001995#ifdef FEAT_VISUAL
1996 && !oap->is_VIsual
1997#endif
1998 );
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001999 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
2000 }
2001 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar81340392012-06-06 16:12:59 +02002002 (void)do_join(2, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 }
2004 }
2005
2006 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
2007
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002008#ifdef FEAT_VIRTUALEDIT
2009setmarks:
2010#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011#ifdef FEAT_VISUAL
2012 if (oap->block_mode)
2013 {
2014 curbuf->b_op_end.lnum = oap->end.lnum;
2015 curbuf->b_op_end.col = oap->start.col;
2016 }
2017 else
2018#endif
2019 curbuf->b_op_end = oap->start;
2020 curbuf->b_op_start = oap->start;
2021
2022 return OK;
2023}
2024
2025#ifdef FEAT_MBYTE
2026/*
2027 * Adjust end of operating area for ending on a multi-byte character.
2028 * Used for deletion.
2029 */
2030 static void
2031mb_adjust_opend(oap)
2032 oparg_T *oap;
2033{
2034 char_u *p;
2035
2036 if (oap->inclusive)
2037 {
2038 p = ml_get(oap->end.lnum);
2039 oap->end.col += mb_tail_off(p, p + oap->end.col);
2040 }
2041}
2042#endif
2043
2044#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2045/*
2046 * Replace a whole area with one character.
2047 */
2048 int
2049op_replace(oap, c)
2050 oparg_T *oap;
2051 int c;
2052{
2053 int n, numc;
2054#ifdef FEAT_MBYTE
2055 int num_chars;
2056#endif
2057 char_u *newp, *oldp;
2058 size_t oldlen;
2059 struct block_def bd;
2060
2061 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2062 return OK; /* nothing to do */
2063
2064#ifdef FEAT_MBYTE
2065 if (has_mbyte)
2066 mb_adjust_opend(oap);
2067#endif
2068
2069 if (u_save((linenr_T)(oap->start.lnum - 1),
2070 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2071 return FAIL;
2072
2073 /*
2074 * block mode replace
2075 */
2076 if (oap->block_mode)
2077 {
2078 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2079 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2080 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002081 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2083 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2084 continue; /* nothing to replace */
2085
2086 /* n == number of extra chars required
2087 * If we split a TAB, it may be replaced by several characters.
2088 * Thus the number of characters may increase!
2089 */
2090#ifdef FEAT_VIRTUALEDIT
2091 /* If the range starts in virtual space, count the initial
2092 * coladd offset as part of "startspaces" */
2093 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2094 {
2095 pos_T vpos;
2096
Bram Moolenaara1381de2009-11-03 15:44:21 +00002097 vpos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 getvpos(&vpos, oap->start_vcol);
2099 bd.startspaces += vpos.coladd;
2100 n = bd.startspaces;
2101 }
2102 else
2103#endif
2104 /* allow for pre spaces */
2105 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2106
2107 /* allow for post spp */
2108 n += (bd.endspaces
2109#ifdef FEAT_VIRTUALEDIT
2110 && !bd.is_oneChar
2111#endif
2112 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2113 /* Figure out how many characters to replace. */
2114 numc = oap->end_vcol - oap->start_vcol + 1;
2115 if (bd.is_short && (!virtual_op || bd.is_MAX))
2116 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2117
2118#ifdef FEAT_MBYTE
2119 /* A double-wide character can be replaced only up to half the
2120 * times. */
2121 if ((*mb_char2cells)(c) > 1)
2122 {
2123 if ((numc & 1) && !bd.is_short)
2124 {
2125 ++bd.endspaces;
2126 ++n;
2127 }
2128 numc = numc / 2;
2129 }
2130
2131 /* Compute bytes needed, move character count to num_chars. */
2132 num_chars = numc;
2133 numc *= (*mb_char2len)(c);
2134#endif
2135 /* oldlen includes textlen, so don't double count */
2136 n += numc - bd.textlen;
2137
2138 oldp = ml_get_curline();
2139 oldlen = STRLEN(oldp);
2140 newp = alloc_check((unsigned)oldlen + 1 + n);
2141 if (newp == NULL)
2142 continue;
2143 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2144 /* copy up to deleted part */
2145 mch_memmove(newp, oldp, (size_t)bd.textcol);
2146 oldp += bd.textcol + bd.textlen;
2147 /* insert pre-spaces */
2148 copy_spaces(newp + bd.textcol, (size_t)bd.startspaces);
2149 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
2150#ifdef FEAT_MBYTE
2151 if (has_mbyte)
2152 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002153 n = (int)STRLEN(newp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 while (--num_chars >= 0)
2155 n += (*mb_char2bytes)(c, newp + n);
2156 }
2157 else
2158#endif
2159 copy_chars(newp + STRLEN(newp), (size_t)numc, c);
2160 if (!bd.is_short)
2161 {
2162 /* insert post-spaces */
2163 copy_spaces(newp + STRLEN(newp), (size_t)bd.endspaces);
2164 /* copy the part after the changed part */
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002165 STRMOVE(newp + STRLEN(newp), oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 }
2167 /* replace the line */
2168 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
2169 }
2170 }
2171 else
2172 {
2173 /*
2174 * MCHAR and MLINE motion replace.
2175 */
2176 if (oap->motion_type == MLINE)
2177 {
2178 oap->start.col = 0;
2179 curwin->w_cursor.col = 0;
2180 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2181 if (oap->end.col)
2182 --oap->end.col;
2183 }
2184 else if (!oap->inclusive)
2185 dec(&(oap->end));
2186
2187 while (ltoreq(curwin->w_cursor, oap->end))
2188 {
2189 n = gchar_cursor();
2190 if (n != NUL)
2191 {
2192#ifdef FEAT_MBYTE
2193 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2194 {
2195 /* This is slow, but it handles replacing a single-byte
2196 * with a multi-byte and the other way around. */
Bram Moolenaardb813952013-03-07 18:50:57 +01002197 if (curwin->w_cursor.lnum == oap->end.lnum)
2198 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 n = State;
2200 State = REPLACE;
2201 ins_char(c);
2202 State = n;
2203 /* Backup to the replaced character. */
2204 dec_cursor();
2205 }
2206 else
2207#endif
2208 {
2209#ifdef FEAT_VIRTUALEDIT
2210 if (n == TAB)
2211 {
2212 int end_vcol = 0;
2213
2214 if (curwin->w_cursor.lnum == oap->end.lnum)
2215 {
2216 /* oap->end has to be recalculated when
2217 * the tab breaks */
2218 end_vcol = getviscol2(oap->end.col,
2219 oap->end.coladd);
2220 }
2221 coladvance_force(getviscol());
2222 if (curwin->w_cursor.lnum == oap->end.lnum)
2223 getvpos(&oap->end, end_vcol);
2224 }
2225#endif
2226 pchar(curwin->w_cursor, c);
2227 }
2228 }
2229#ifdef FEAT_VIRTUALEDIT
2230 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2231 {
2232 int virtcols = oap->end.coladd;
2233
2234 if (curwin->w_cursor.lnum == oap->start.lnum
2235 && oap->start.col == oap->end.col && oap->start.coladd)
2236 virtcols -= oap->start.coladd;
2237
2238 /* oap->end has been trimmed so it's effectively inclusive;
2239 * as a result an extra +1 must be counted so we don't
2240 * trample the NUL byte. */
2241 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2242 curwin->w_cursor.col -= (virtcols + 1);
2243 for (; virtcols >= 0; virtcols--)
2244 {
2245 pchar(curwin->w_cursor, c);
2246 if (inc(&curwin->w_cursor) == -1)
2247 break;
2248 }
2249 }
2250#endif
2251
2252 /* Advance to next character, stop at the end of the file. */
2253 if (inc_cursor() == -1)
2254 break;
2255 }
2256 }
2257
2258 curwin->w_cursor = oap->start;
2259 check_cursor();
2260 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2261
2262 /* Set "'[" and "']" marks. */
2263 curbuf->b_op_start = oap->start;
2264 curbuf->b_op_end = oap->end;
2265
2266 return OK;
2267}
2268#endif
2269
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002270static int swapchars __ARGS((int op_type, pos_T *pos, int length));
2271
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272/*
2273 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2274 */
2275 void
2276op_tilde(oap)
2277 oparg_T *oap;
2278{
2279 pos_T pos;
2280#ifdef FEAT_VISUAL
2281 struct block_def bd;
Bram Moolenaar60a795a2005-09-16 21:55:43 +00002282#endif
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002283 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284
2285 if (u_save((linenr_T)(oap->start.lnum - 1),
2286 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2287 return;
2288
2289 pos = oap->start;
2290#ifdef FEAT_VISUAL
2291 if (oap->block_mode) /* Visual block mode */
2292 {
2293 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2294 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002295 int one_change;
2296
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297 block_prep(oap, &bd, pos.lnum, FALSE);
2298 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002299 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2300 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002301
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002303 if (netbeans_active() && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 {
2305 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2306
Bram Moolenaar009b2592004-10-24 19:18:58 +00002307 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2308 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002310 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 }
2312# endif
2313 }
2314 if (did_change)
2315 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2316 }
2317 else /* not block mode */
2318#endif
2319 {
2320 if (oap->motion_type == MLINE)
2321 {
2322 oap->start.col = 0;
2323 pos.col = 0;
2324 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2325 if (oap->end.col)
2326 --oap->end.col;
2327 }
2328 else if (!oap->inclusive)
2329 dec(&(oap->end));
2330
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002331 if (pos.lnum == oap->end.lnum)
2332 did_change = swapchars(oap->op_type, &pos,
2333 oap->end.col - pos.col + 1);
2334 else
2335 for (;;)
2336 {
2337 did_change |= swapchars(oap->op_type, &pos,
2338 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2339 (int)STRLEN(ml_get_pos(&pos)));
2340 if (ltoreq(oap->end, pos) || inc(&pos) == -1)
2341 break;
2342 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343 if (did_change)
2344 {
2345 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2346 0L);
2347#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002348 if (netbeans_active() && did_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 {
2350 char_u *ptr;
2351 int count;
2352
2353 pos = oap->start;
2354 while (pos.lnum < oap->end.lnum)
2355 {
2356 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002357 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002358 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002360 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 pos.col = 0;
2362 pos.lnum++;
2363 }
2364 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2365 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002366 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002368 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369 }
2370#endif
2371 }
2372 }
2373
2374#ifdef FEAT_VISUAL
2375 if (!did_change && oap->is_VIsual)
2376 /* No change: need to remove the Visual selection */
2377 redraw_curbuf_later(INVERTED);
2378#endif
2379
2380 /*
2381 * Set '[ and '] marks.
2382 */
2383 curbuf->b_op_start = oap->start;
2384 curbuf->b_op_end = oap->end;
2385
2386 if (oap->line_count > p_report)
2387 {
2388 if (oap->line_count == 1)
2389 MSG(_("1 line changed"));
2390 else
2391 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2392 }
2393}
2394
2395/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002396 * Invoke swapchar() on "length" bytes at position "pos".
2397 * "pos" is advanced to just after the changed characters.
2398 * "length" is rounded up to include the whole last multi-byte character.
2399 * Also works correctly when the number of bytes changes.
2400 * Returns TRUE if some character was changed.
2401 */
2402 static int
2403swapchars(op_type, pos, length)
2404 int op_type;
2405 pos_T *pos;
2406 int length;
2407{
2408 int todo;
2409 int did_change = 0;
2410
2411 for (todo = length; todo > 0; --todo)
2412 {
2413# ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002414 if (has_mbyte)
2415 /* we're counting bytes, not characters */
2416 todo -= (*mb_ptr2len)(ml_get_pos(pos)) - 1;
2417# endif
2418 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002419 if (inc(pos) == -1) /* at end of file */
2420 break;
2421 }
2422 return did_change;
2423}
2424
2425/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 * If op_type == OP_UPPER: make uppercase,
2427 * if op_type == OP_LOWER: make lowercase,
2428 * if op_type == OP_ROT13: do rot13 encoding,
2429 * else swap case of character at 'pos'
2430 * returns TRUE when something actually changed.
2431 */
2432 int
2433swapchar(op_type, pos)
2434 int op_type;
2435 pos_T *pos;
2436{
2437 int c;
2438 int nc;
2439
2440 c = gchar_pos(pos);
2441
2442 /* Only do rot13 encoding for ASCII characters. */
2443 if (c >= 0x80 && op_type == OP_ROT13)
2444 return FALSE;
2445
2446#ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002447 if (op_type == OP_UPPER && c == 0xdf
2448 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002449 {
2450 pos_T sp = curwin->w_cursor;
2451
2452 /* Special handling of German sharp s: change to "SS". */
2453 curwin->w_cursor = *pos;
2454 del_char(FALSE);
2455 ins_char('S');
2456 ins_char('S');
2457 curwin->w_cursor = sp;
2458 inc(pos);
2459 }
2460
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2462 return FALSE;
2463#endif
2464 nc = c;
2465 if (MB_ISLOWER(c))
2466 {
2467 if (op_type == OP_ROT13)
2468 nc = ROT13(c, 'a');
2469 else if (op_type != OP_LOWER)
2470 nc = MB_TOUPPER(c);
2471 }
2472 else if (MB_ISUPPER(c))
2473 {
2474 if (op_type == OP_ROT13)
2475 nc = ROT13(c, 'A');
2476 else if (op_type != OP_UPPER)
2477 nc = MB_TOLOWER(c);
2478 }
2479 if (nc != c)
2480 {
2481#ifdef FEAT_MBYTE
2482 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2483 {
2484 pos_T sp = curwin->w_cursor;
2485
2486 curwin->w_cursor = *pos;
Bram Moolenaard1cb65e2010-08-01 14:22:48 +02002487 /* don't use del_char(), it also removes composing chars */
2488 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 ins_char(nc);
2490 curwin->w_cursor = sp;
2491 }
2492 else
2493#endif
2494 pchar(*pos, nc);
2495 return TRUE;
2496 }
2497 return FALSE;
2498}
2499
2500#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2501/*
2502 * op_insert - Insert and append operators for Visual mode.
2503 */
2504 void
2505op_insert(oap, count1)
2506 oparg_T *oap;
2507 long count1;
2508{
2509 long ins_len, pre_textlen = 0;
2510 char_u *firstline, *ins_text;
2511 struct block_def bd;
2512 int i;
2513
2514 /* edit() changes this - record it for OP_APPEND */
2515 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2516
2517 /* vis block is still marked. Get rid of it now. */
2518 curwin->w_cursor.lnum = oap->start.lnum;
2519 update_screen(INVERTED);
2520
2521 if (oap->block_mode)
2522 {
2523#ifdef FEAT_VIRTUALEDIT
2524 /* When 'virtualedit' is used, need to insert the extra spaces before
2525 * doing block_prep(). When only "block" is used, virtual edit is
2526 * already disabled, but still need it when calling
2527 * coladvance_force(). */
2528 if (curwin->w_cursor.coladd > 0)
2529 {
2530 int old_ve_flags = ve_flags;
2531
2532 ve_flags = VE_ALL;
2533 if (u_save_cursor() == FAIL)
2534 return;
2535 coladvance_force(oap->op_type == OP_APPEND
2536 ? oap->end_vcol + 1 : getviscol());
2537 if (oap->op_type == OP_APPEND)
2538 --curwin->w_cursor.col;
2539 ve_flags = old_ve_flags;
2540 }
2541#endif
2542 /* Get the info about the block before entering the text */
2543 block_prep(oap, &bd, oap->start.lnum, TRUE);
2544 firstline = ml_get(oap->start.lnum) + bd.textcol;
2545 if (oap->op_type == OP_APPEND)
2546 firstline += bd.textlen;
2547 pre_textlen = (long)STRLEN(firstline);
2548 }
2549
2550 if (oap->op_type == OP_APPEND)
2551 {
2552 if (oap->block_mode
2553#ifdef FEAT_VIRTUALEDIT
2554 && curwin->w_cursor.coladd == 0
2555#endif
2556 )
2557 {
2558 /* Move the cursor to the character right of the block. */
2559 curwin->w_set_curswant = TRUE;
2560 while (*ml_get_cursor() != NUL
2561 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2562 ++curwin->w_cursor.col;
2563 if (bd.is_short && !bd.is_MAX)
2564 {
2565 /* First line was too short, make it longer and adjust the
2566 * values in "bd". */
2567 if (u_save_cursor() == FAIL)
2568 return;
2569 for (i = 0; i < bd.endspaces; ++i)
2570 ins_char(' ');
2571 bd.textlen += bd.endspaces;
2572 }
2573 }
2574 else
2575 {
2576 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002577 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578
2579 /* Works just like an 'i'nsert on the next character. */
2580 if (!lineempty(curwin->w_cursor.lnum)
2581 && oap->start_vcol != oap->end_vcol)
2582 inc_cursor();
2583 }
2584 }
2585
2586 edit(NUL, FALSE, (linenr_T)count1);
2587
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002588 /* If user has moved off this line, we don't know what to do, so do
2589 * nothing.
2590 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2591 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 return;
2593
2594 if (oap->block_mode)
2595 {
2596 struct block_def bd2;
2597
2598 /*
2599 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002600 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 * Don't do this when "$" used, end-of-line will have changed.
2602 */
2603 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2604 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2605 {
2606 if (oap->op_type == OP_APPEND)
2607 {
2608 pre_textlen += bd2.textlen - bd.textlen;
2609 if (bd2.endspaces)
2610 --bd2.textlen;
2611 }
2612 bd.textcol = bd2.textcol;
2613 bd.textlen = bd2.textlen;
2614 }
2615
2616 /*
2617 * Subsequent calls to ml_get() flush the firstline data - take a
2618 * copy of the required string.
2619 */
2620 firstline = ml_get(oap->start.lnum) + bd.textcol;
2621 if (oap->op_type == OP_APPEND)
2622 firstline += bd.textlen;
Bram Moolenaar5e4b9e92012-03-23 14:16:23 +01002623 if (pre_textlen >= 0
2624 && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625 {
2626 ins_text = vim_strnsave(firstline, (int)ins_len);
2627 if (ins_text != NULL)
2628 {
2629 /* block handled here */
2630 if (u_save(oap->start.lnum,
2631 (linenr_T)(oap->end.lnum + 1)) == OK)
2632 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2633 &bd);
2634
2635 curwin->w_cursor.col = oap->start.col;
2636 check_cursor();
2637 vim_free(ins_text);
2638 }
2639 }
2640 }
2641}
2642#endif
2643
2644/*
2645 * op_change - handle a change operation
2646 *
2647 * return TRUE if edit() returns because of a CTRL-O command
2648 */
2649 int
2650op_change(oap)
2651 oparg_T *oap;
2652{
2653 colnr_T l;
2654 int retval;
2655#ifdef FEAT_VISUALEXTRA
2656 long offset;
2657 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002658 long ins_len;
2659 long pre_textlen = 0;
2660 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 char_u *firstline;
2662 char_u *ins_text, *newp, *oldp;
2663 struct block_def bd;
2664#endif
2665
2666 l = oap->start.col;
2667 if (oap->motion_type == MLINE)
2668 {
2669 l = 0;
2670#ifdef FEAT_SMARTINDENT
2671 if (!p_paste && curbuf->b_p_si
2672# ifdef FEAT_CINDENT
2673 && !curbuf->b_p_cin
2674# endif
2675 )
2676 can_si = TRUE; /* It's like opening a new line, do si */
2677#endif
2678 }
2679
2680 /* First delete the text in the region. In an empty buffer only need to
2681 * save for undo */
2682 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2683 {
2684 if (u_save_cursor() == FAIL)
2685 return FALSE;
2686 }
2687 else if (op_delete(oap) == FAIL)
2688 return FALSE;
2689
2690 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
2691 && !virtual_op)
2692 inc_cursor();
2693
2694#ifdef FEAT_VISUALEXTRA
2695 /* check for still on same line (<CR> in inserted text meaningless) */
2696 /* skip blank lines too */
2697 if (oap->block_mode)
2698 {
2699# ifdef FEAT_VIRTUALEDIT
2700 /* Add spaces before getting the current line length. */
2701 if (virtual_op && (curwin->w_cursor.coladd > 0
2702 || gchar_cursor() == NUL))
2703 coladvance_force(getviscol());
2704# endif
Bram Moolenaar53241da2007-09-13 20:41:32 +00002705 firstline = ml_get(oap->start.lnum);
2706 pre_textlen = (long)STRLEN(firstline);
2707 pre_indent = (long)(skipwhite(firstline) - firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 bd.textcol = curwin->w_cursor.col;
2709 }
2710#endif
2711
2712#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2713 if (oap->motion_type == MLINE)
2714 fix_indent();
2715#endif
2716
2717 retval = edit(NUL, FALSE, (linenr_T)1);
2718
2719#ifdef FEAT_VISUALEXTRA
2720 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002721 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002723 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002725 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002727 /* Auto-indenting may have changed the indent. If the cursor was past
2728 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002730 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002732 long new_indent = (long)(skipwhite(firstline) - firstline);
2733
2734 pre_textlen += new_indent - pre_indent;
2735 bd.textcol += new_indent - pre_indent;
2736 }
2737
2738 ins_len = (long)STRLEN(firstline) - pre_textlen;
2739 if (ins_len > 0)
2740 {
2741 /* Subsequent calls to ml_get() flush the firstline data - take a
2742 * copy of the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2744 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002745 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2747 linenr++)
2748 {
2749 block_prep(oap, &bd, linenr, TRUE);
2750 if (!bd.is_short || virtual_op)
2751 {
2752# ifdef FEAT_VIRTUALEDIT
2753 pos_T vpos;
2754
2755 /* If the block starts in virtual space, count the
2756 * initial coladd offset as part of "startspaces" */
2757 if (bd.is_short)
2758 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002759 vpos.lnum = linenr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 (void)getvpos(&vpos, oap->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 }
2762 else
2763 vpos.coladd = 0;
2764# endif
2765 oldp = ml_get(linenr);
2766 newp = alloc_check((unsigned)(STRLEN(oldp)
2767# ifdef FEAT_VIRTUALEDIT
2768 + vpos.coladd
2769# endif
2770 + ins_len + 1));
2771 if (newp == NULL)
2772 continue;
2773 /* copy up to block start */
2774 mch_memmove(newp, oldp, (size_t)bd.textcol);
2775 offset = bd.textcol;
2776# ifdef FEAT_VIRTUALEDIT
2777 copy_spaces(newp + offset, (size_t)vpos.coladd);
2778 offset += vpos.coladd;
2779# endif
2780 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2781 offset += ins_len;
2782 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002783 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 ml_replace(linenr, newp, FALSE);
2785 }
2786 }
2787 check_cursor();
2788
2789 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2790 }
2791 vim_free(ins_text);
2792 }
2793 }
2794#endif
2795
2796 return retval;
2797}
2798
2799/*
2800 * set all the yank registers to empty (called from main())
2801 */
2802 void
2803init_yank()
2804{
2805 int i;
2806
2807 for (i = 0; i < NUM_REGISTERS; ++i)
2808 y_regs[i].y_array = NULL;
2809}
2810
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002811#if defined(EXITFREE) || defined(PROTO)
2812 void
2813clear_registers()
2814{
2815 int i;
2816
2817 for (i = 0; i < NUM_REGISTERS; ++i)
2818 {
2819 y_current = &y_regs[i];
2820 if (y_current->y_array != NULL)
2821 free_yank_all();
2822 }
2823}
2824#endif
2825
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826/*
2827 * Free "n" lines from the current yank register.
2828 * Called for normal freeing and in case of error.
2829 */
2830 static void
2831free_yank(n)
2832 long n;
2833{
2834 if (y_current->y_array != NULL)
2835 {
2836 long i;
2837
2838 for (i = n; --i >= 0; )
2839 {
2840#ifdef AMIGA /* only for very slow machines */
2841 if ((i & 1023) == 1023) /* this may take a while */
2842 {
2843 /*
2844 * This message should never cause a hit-return message.
2845 * Overwrite this message with any next message.
2846 */
2847 ++no_wait_return;
2848 smsg((char_u *)_("freeing %ld lines"), i + 1);
2849 --no_wait_return;
2850 msg_didout = FALSE;
2851 msg_col = 0;
2852 }
2853#endif
2854 vim_free(y_current->y_array[i]);
2855 }
2856 vim_free(y_current->y_array);
2857 y_current->y_array = NULL;
2858#ifdef AMIGA
2859 if (n >= 1000)
2860 MSG("");
2861#endif
2862 }
2863}
2864
2865 static void
2866free_yank_all()
2867{
2868 free_yank(y_current->y_size);
2869}
2870
2871/*
2872 * Yank the text between "oap->start" and "oap->end" into a yank register.
2873 * If we are to append (uppercase register), we first yank into a new yank
2874 * register and then concatenate the old and the new one (so we keep the old
2875 * one in case of out-of-memory).
2876 *
2877 * return FAIL for failure, OK otherwise
2878 */
2879 int
2880op_yank(oap, deleting, mess)
2881 oparg_T *oap;
2882 int deleting;
2883 int mess;
2884{
2885 long y_idx; /* index in y_array[] */
2886 struct yankreg *curr; /* copy of y_current */
2887 struct yankreg newreg; /* new yank register when appending */
2888 char_u **new_ptr;
2889 linenr_T lnum; /* current line number */
2890 long j;
2891 int yanktype = oap->motion_type;
2892 long yanklines = oap->line_count;
2893 linenr_T yankendlnum = oap->end.lnum;
2894 char_u *p;
2895 char_u *pnew;
2896 struct block_def bd;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01002897#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01002898 int did_star = FALSE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01002899#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900
2901 /* check for read-only register */
2902 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2903 {
2904 beep_flush();
2905 return FAIL;
2906 }
2907 if (oap->regname == '_') /* black hole: nothing to do */
2908 return OK;
2909
2910#ifdef FEAT_CLIPBOARD
2911 if (!clip_star.available && oap->regname == '*')
2912 oap->regname = 0;
2913 else if (!clip_plus.available && oap->regname == '+')
2914 oap->regname = 0;
2915#endif
2916
2917 if (!deleting) /* op_delete() already set y_current */
2918 get_yank_register(oap->regname, TRUE);
2919
2920 curr = y_current;
2921 /* append to existing contents */
2922 if (y_append && y_current->y_array != NULL)
2923 y_current = &newreg;
2924 else
2925 free_yank_all(); /* free previously yanked lines */
2926
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002927 /*
2928 * If the cursor was in column 1 before and after the movement, and the
2929 * operator is not inclusive, the yank is always linewise.
2930 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931 if ( oap->motion_type == MCHAR
2932 && oap->start.col == 0
2933 && !oap->inclusive
2934#ifdef FEAT_VISUAL
2935 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00002936 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937#endif
2938 && oap->end.col == 0
2939 && yanklines > 1)
2940 {
2941 yanktype = MLINE;
2942 --yankendlnum;
2943 --yanklines;
2944 }
2945
2946 y_current->y_size = yanklines;
2947 y_current->y_type = yanktype; /* set the yank register type */
2948#ifdef FEAT_VISUAL
2949 y_current->y_width = 0;
2950#endif
2951 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
2952 yanklines), TRUE);
2953
2954 if (y_current->y_array == NULL)
2955 {
2956 y_current = curr;
2957 return FAIL;
2958 }
2959
2960 y_idx = 0;
2961 lnum = oap->start.lnum;
2962
2963#ifdef FEAT_VISUAL
2964 if (oap->block_mode)
2965 {
2966 /* Visual block mode */
2967 y_current->y_type = MBLOCK; /* set the yank register type */
2968 y_current->y_width = oap->end_vcol - oap->start_vcol;
2969
2970 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
2971 y_current->y_width--;
2972 }
2973#endif
2974
2975 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
2976 {
2977 switch (y_current->y_type)
2978 {
2979#ifdef FEAT_VISUAL
2980 case MBLOCK:
2981 block_prep(oap, &bd, lnum, FALSE);
2982 if (yank_copy_line(&bd, y_idx) == FAIL)
2983 goto fail;
2984 break;
2985#endif
2986
2987 case MLINE:
2988 if ((y_current->y_array[y_idx] =
2989 vim_strsave(ml_get(lnum))) == NULL)
2990 goto fail;
2991 break;
2992
2993 case MCHAR:
2994 {
2995 colnr_T startcol = 0, endcol = MAXCOL;
2996#ifdef FEAT_VIRTUALEDIT
2997 int is_oneChar = FALSE;
2998 colnr_T cs, ce;
2999#endif
3000 p = ml_get(lnum);
3001 bd.startspaces = 0;
3002 bd.endspaces = 0;
3003
3004 if (lnum == oap->start.lnum)
3005 {
3006 startcol = oap->start.col;
3007#ifdef FEAT_VIRTUALEDIT
3008 if (virtual_op)
3009 {
3010 getvcol(curwin, &oap->start, &cs, NULL, &ce);
3011 if (ce != cs && oap->start.coladd > 0)
3012 {
3013 /* Part of a tab selected -- but don't
3014 * double-count it. */
3015 bd.startspaces = (ce - cs + 1)
3016 - oap->start.coladd;
3017 startcol++;
3018 }
3019 }
3020#endif
3021 }
3022
3023 if (lnum == oap->end.lnum)
3024 {
3025 endcol = oap->end.col;
3026#ifdef FEAT_VIRTUALEDIT
3027 if (virtual_op)
3028 {
3029 getvcol(curwin, &oap->end, &cs, NULL, &ce);
3030 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
3031# ifdef FEAT_MBYTE
3032 /* Don't add space for double-wide
3033 * char; endcol will be on last byte
3034 * of multi-byte char. */
3035 && (*mb_head_off)(p, p + endcol) == 0
3036# endif
3037 ))
3038 {
3039 if (oap->start.lnum == oap->end.lnum
3040 && oap->start.col == oap->end.col)
3041 {
3042 /* Special case: inside a single char */
3043 is_oneChar = TRUE;
3044 bd.startspaces = oap->end.coladd
3045 - oap->start.coladd + oap->inclusive;
3046 endcol = startcol;
3047 }
3048 else
3049 {
3050 bd.endspaces = oap->end.coladd
3051 + oap->inclusive;
3052 endcol -= oap->inclusive;
3053 }
3054 }
3055 }
3056#endif
3057 }
Bram Moolenaar18e00d22012-05-18 12:49:40 +02003058 if (endcol == MAXCOL)
3059 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 if (startcol > endcol
3061#ifdef FEAT_VIRTUALEDIT
3062 || is_oneChar
3063#endif
3064 )
3065 bd.textlen = 0;
3066 else
3067 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 bd.textlen = endcol - startcol + oap->inclusive;
3069 }
3070 bd.textstart = p + startcol;
3071 if (yank_copy_line(&bd, y_idx) == FAIL)
3072 goto fail;
3073 break;
3074 }
3075 /* NOTREACHED */
3076 }
3077 }
3078
3079 if (curr != y_current) /* append the new block to the old block */
3080 {
3081 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3082 (curr->y_size + y_current->y_size)), TRUE);
3083 if (new_ptr == NULL)
3084 goto fail;
3085 for (j = 0; j < curr->y_size; ++j)
3086 new_ptr[j] = curr->y_array[j];
3087 vim_free(curr->y_array);
3088 curr->y_array = new_ptr;
3089
3090 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3091 curr->y_type = MLINE;
3092
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003093 /* Concatenate the last line of the old block with the first line of
3094 * the new block, unless being Vi compatible. */
3095 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096 {
3097 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3098 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3099 if (pnew == NULL)
3100 {
3101 y_idx = y_current->y_size - 1;
3102 goto fail;
3103 }
3104 STRCPY(pnew, curr->y_array[--j]);
3105 STRCAT(pnew, y_current->y_array[0]);
3106 vim_free(curr->y_array[j]);
3107 vim_free(y_current->y_array[0]);
3108 curr->y_array[j++] = pnew;
3109 y_idx = 1;
3110 }
3111 else
3112 y_idx = 0;
3113 while (y_idx < y_current->y_size)
3114 curr->y_array[j++] = y_current->y_array[y_idx++];
3115 curr->y_size = j;
3116 vim_free(y_current->y_array);
3117 y_current = curr;
3118 }
3119 if (mess) /* Display message about yank? */
3120 {
3121 if (yanktype == MCHAR
3122#ifdef FEAT_VISUAL
3123 && !oap->block_mode
3124#endif
3125 && yanklines == 1)
3126 yanklines = 0;
3127 /* Some versions of Vi use ">=" here, some don't... */
3128 if (yanklines > p_report)
3129 {
3130 /* redisplay now, so message is not deleted */
3131 update_topline_redraw();
3132 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003133 {
3134#ifdef FEAT_VISUAL
3135 if (oap->block_mode)
3136 MSG(_("block of 1 line yanked"));
3137 else
3138#endif
3139 MSG(_("1 line yanked"));
3140 }
3141#ifdef FEAT_VISUAL
3142 else if (oap->block_mode)
3143 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
3144#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 else
3146 smsg((char_u *)_("%ld lines yanked"), yanklines);
3147 }
3148 }
3149
3150 /*
3151 * Set "'[" and "']" marks.
3152 */
3153 curbuf->b_op_start = oap->start;
3154 curbuf->b_op_end = oap->end;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003155 if (yanktype == MLINE
3156#ifdef FEAT_VISUAL
3157 && !oap->block_mode
3158#endif
3159 )
3160 {
3161 curbuf->b_op_start.col = 0;
3162 curbuf->b_op_end.col = MAXCOL;
3163 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164
3165#ifdef FEAT_CLIPBOARD
3166 /*
3167 * If we were yanking to the '*' register, send result to clipboard.
3168 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3169 * to the '*' register.
3170 */
3171 if (clip_star.available
3172 && (curr == &(y_regs[STAR_REGISTER])
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003173 || (!deleting && oap->regname == 0
3174 && (clip_unnamed & CLIP_UNNAMED))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 {
3176 if (curr != &(y_regs[STAR_REGISTER]))
3177 /* Copy the text from register 0 to the clipboard register. */
3178 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3179
3180 clip_own_selection(&clip_star);
3181 clip_gen_set_selection(&clip_star);
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003182# ifdef FEAT_X11
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003183 did_star = TRUE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003184# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185 }
3186
3187# ifdef FEAT_X11
3188 /*
3189 * If we were yanking to the '+' register, send result to selection.
3190 * Also copy to the '*' register, in case auto-select is off.
3191 */
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003192 if (clip_plus.available
3193 && (curr == &(y_regs[PLUS_REGISTER])
3194 || (!deleting && oap->regname == 0
3195 && (clip_unnamed & CLIP_UNNAMED_PLUS))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 {
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003197 if (curr != &(y_regs[PLUS_REGISTER]))
3198 /* Copy the text from register 0 to the clipboard register. */
3199 copy_yank_reg(&(y_regs[PLUS_REGISTER]));
3200
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 clip_own_selection(&clip_plus);
3202 clip_gen_set_selection(&clip_plus);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003203 if (!clip_isautosel_star() && !did_star
3204 && curr == &(y_regs[PLUS_REGISTER]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 {
3206 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3207 clip_own_selection(&clip_star);
3208 clip_gen_set_selection(&clip_star);
3209 }
3210 }
3211# endif
3212#endif
3213
3214 return OK;
3215
3216fail: /* free the allocated lines */
3217 free_yank(y_idx + 1);
3218 y_current = curr;
3219 return FAIL;
3220}
3221
3222 static int
3223yank_copy_line(bd, y_idx)
3224 struct block_def *bd;
3225 long y_idx;
3226{
3227 char_u *pnew;
3228
3229 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3230 == NULL)
3231 return FAIL;
3232 y_current->y_array[y_idx] = pnew;
3233 copy_spaces(pnew, (size_t)bd->startspaces);
3234 pnew += bd->startspaces;
3235 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3236 pnew += bd->textlen;
3237 copy_spaces(pnew, (size_t)bd->endspaces);
3238 pnew += bd->endspaces;
3239 *pnew = NUL;
3240 return OK;
3241}
3242
3243#ifdef FEAT_CLIPBOARD
3244/*
3245 * Make a copy of the y_current register to register "reg".
3246 */
3247 static void
3248copy_yank_reg(reg)
3249 struct yankreg *reg;
3250{
3251 struct yankreg *curr = y_current;
3252 long j;
3253
3254 y_current = reg;
3255 free_yank_all();
3256 *y_current = *curr;
3257 y_current->y_array = (char_u **)lalloc_clear(
3258 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3259 if (y_current->y_array == NULL)
3260 y_current->y_size = 0;
3261 else
3262 for (j = 0; j < y_current->y_size; ++j)
3263 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3264 {
3265 free_yank(j);
3266 y_current->y_size = 0;
3267 break;
3268 }
3269 y_current = curr;
3270}
3271#endif
3272
3273/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003274 * Put contents of register "regname" into the text.
3275 * Caller must check "regname" to be valid!
3276 * "flags": PUT_FIXINDENT make indent look nice
3277 * PUT_CURSEND leave cursor after end of new text
3278 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003279 */
3280 void
3281do_put(regname, dir, count, flags)
3282 int regname;
3283 int dir; /* BACKWARD for 'P', FORWARD for 'p' */
3284 long count;
3285 int flags;
3286{
3287 char_u *ptr;
3288 char_u *newp, *oldp;
3289 int yanklen;
3290 int totlen = 0; /* init for gcc */
3291 linenr_T lnum;
3292 colnr_T col;
3293 long i; /* index in y_array[] */
3294 int y_type;
3295 long y_size;
3296#ifdef FEAT_VISUAL
3297 int oldlen;
3298 long y_width = 0;
3299 colnr_T vcol;
3300 int delcount;
3301 int incr = 0;
3302 long j;
3303 struct block_def bd;
3304#endif
3305 char_u **y_array = NULL;
3306 long nr_lines = 0;
3307 pos_T new_cursor;
3308 int indent;
3309 int orig_indent = 0; /* init for gcc */
3310 int indent_diff = 0; /* init for gcc */
3311 int first_indent = TRUE;
3312 int lendiff = 0;
3313 pos_T old_pos;
3314 char_u *insert_string = NULL;
3315 int allocated = FALSE;
3316 long cnt;
3317
3318#ifdef FEAT_CLIPBOARD
3319 /* Adjust register name for "unnamed" in 'clipboard'. */
3320 adjust_clip_reg(&regname);
3321 (void)may_get_selection(regname);
3322#endif
3323
3324 if (flags & PUT_FIXINDENT)
3325 orig_indent = get_indent();
3326
3327 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3328 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3329
3330 /*
3331 * Using inserted text works differently, because the register includes
3332 * special characters (newlines, etc.).
3333 */
3334 if (regname == '.')
3335 {
3336 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3337 (count == -1 ? 'O' : 'i')), count, FALSE);
3338 /* Putting the text is done later, so can't really move the cursor to
3339 * the next character. Use "l" to simulate it. */
3340 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3341 stuffcharReadbuff('l');
3342 return;
3343 }
3344
3345 /*
3346 * For special registers '%' (file name), '#' (alternate file name) and
3347 * ':' (last command line), etc. we have to create a fake yank register.
3348 */
3349 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3350 {
3351 if (insert_string == NULL)
3352 return;
3353 }
3354
Bram Moolenaar27356ad2012-12-12 16:11:36 +01003355#ifdef FEAT_AUTOCMD
3356 /* Autocommands may be executed when saving lines for undo, which may make
3357 * y_array invalid. Start undo now to avoid that. */
3358 u_save(curwin->w_cursor.lnum, curwin->w_cursor.lnum + 1);
3359#endif
3360
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 if (insert_string != NULL)
3362 {
3363 y_type = MCHAR;
3364#ifdef FEAT_EVAL
3365 if (regname == '=')
3366 {
3367 /* For the = register we need to split the string at NL
Bram Moolenaara554a192011-09-21 17:33:53 +02003368 * characters.
3369 * Loop twice: count the number of lines and save them. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003370 for (;;)
3371 {
3372 y_size = 0;
3373 ptr = insert_string;
3374 while (ptr != NULL)
3375 {
3376 if (y_array != NULL)
3377 y_array[y_size] = ptr;
3378 ++y_size;
3379 ptr = vim_strchr(ptr, '\n');
3380 if (ptr != NULL)
3381 {
3382 if (y_array != NULL)
3383 *ptr = NUL;
3384 ++ptr;
Bram Moolenaara554a192011-09-21 17:33:53 +02003385 /* A trailing '\n' makes the register linewise. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386 if (*ptr == NUL)
3387 {
3388 y_type = MLINE;
3389 break;
3390 }
3391 }
3392 }
3393 if (y_array != NULL)
3394 break;
3395 y_array = (char_u **)alloc((unsigned)
3396 (y_size * sizeof(char_u *)));
3397 if (y_array == NULL)
3398 goto end;
3399 }
3400 }
3401 else
3402#endif
3403 {
3404 y_size = 1; /* use fake one-line yank register */
3405 y_array = &insert_string;
3406 }
3407 }
3408 else
3409 {
3410 get_yank_register(regname, FALSE);
3411
3412 y_type = y_current->y_type;
3413#ifdef FEAT_VISUAL
3414 y_width = y_current->y_width;
3415#endif
3416 y_size = y_current->y_size;
3417 y_array = y_current->y_array;
3418 }
3419
3420#ifdef FEAT_VISUAL
3421 if (y_type == MLINE)
3422 {
3423 if (flags & PUT_LINE_SPLIT)
3424 {
3425 /* "p" or "P" in Visual mode: split the lines to put the text in
3426 * between. */
3427 if (u_save_cursor() == FAIL)
3428 goto end;
3429 ptr = vim_strsave(ml_get_cursor());
3430 if (ptr == NULL)
3431 goto end;
3432 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3433 vim_free(ptr);
3434
3435 ptr = vim_strnsave(ml_get_curline(), curwin->w_cursor.col);
3436 if (ptr == NULL)
3437 goto end;
3438 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3439 ++nr_lines;
3440 dir = FORWARD;
3441 }
3442 if (flags & PUT_LINE_FORWARD)
3443 {
3444 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003445 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 dir = FORWARD;
3447 }
3448 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3449 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3450 }
3451#endif
3452
3453 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3454 y_type = MLINE;
3455
3456 if (y_size == 0 || y_array == NULL)
3457 {
3458 EMSG2(_("E353: Nothing in register %s"),
3459 regname == 0 ? (char_u *)"\"" : transchar(regname));
3460 goto end;
3461 }
3462
3463#ifdef FEAT_VISUAL
3464 if (y_type == MBLOCK)
3465 {
3466 lnum = curwin->w_cursor.lnum + y_size + 1;
3467 if (lnum > curbuf->b_ml.ml_line_count)
3468 lnum = curbuf->b_ml.ml_line_count + 1;
3469 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3470 goto end;
3471 }
3472 else
3473#endif
3474 if (y_type == MLINE)
3475 {
3476 lnum = curwin->w_cursor.lnum;
3477#ifdef FEAT_FOLDING
3478 /* Correct line number for closed fold. Don't move the cursor yet,
3479 * u_save() uses it. */
3480 if (dir == BACKWARD)
3481 (void)hasFolding(lnum, &lnum, NULL);
3482 else
3483 (void)hasFolding(lnum, NULL, &lnum);
3484#endif
3485 if (dir == FORWARD)
3486 ++lnum;
3487 if (u_save(lnum - 1, lnum) == FAIL)
3488 goto end;
3489#ifdef FEAT_FOLDING
3490 if (dir == FORWARD)
3491 curwin->w_cursor.lnum = lnum - 1;
3492 else
3493 curwin->w_cursor.lnum = lnum;
3494 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3495#endif
3496 }
3497 else if (u_save_cursor() == FAIL)
3498 goto end;
3499
3500 yanklen = (int)STRLEN(y_array[0]);
3501
3502#ifdef FEAT_VIRTUALEDIT
3503 if (ve_flags == VE_ALL && y_type == MCHAR)
3504 {
3505 if (gchar_cursor() == TAB)
3506 {
3507 /* Don't need to insert spaces when "p" on the last position of a
3508 * tab or "P" on the first position. */
3509 if (dir == FORWARD
3510 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3511 : curwin->w_cursor.coladd > 0)
3512 coladvance_force(getviscol());
3513 else
3514 curwin->w_cursor.coladd = 0;
3515 }
3516 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3517 coladvance_force(getviscol() + (dir == FORWARD));
3518 }
3519#endif
3520
3521 lnum = curwin->w_cursor.lnum;
3522 col = curwin->w_cursor.col;
3523
3524#ifdef FEAT_VISUAL
3525 /*
3526 * Block mode
3527 */
3528 if (y_type == MBLOCK)
3529 {
3530 char c = gchar_cursor();
3531 colnr_T endcol2 = 0;
3532
3533 if (dir == FORWARD && c != NUL)
3534 {
3535#ifdef FEAT_VIRTUALEDIT
3536 if (ve_flags == VE_ALL)
3537 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3538 else
3539#endif
3540 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3541
3542#ifdef FEAT_MBYTE
3543 if (has_mbyte)
3544 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003545 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546 else
3547#endif
3548#ifdef FEAT_VIRTUALEDIT
3549 if (c != TAB || ve_flags != VE_ALL)
3550#endif
3551 ++curwin->w_cursor.col;
3552 ++col;
3553 }
3554 else
3555 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3556
3557#ifdef FEAT_VIRTUALEDIT
3558 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003559 if (ve_flags == VE_ALL
3560 && (curwin->w_cursor.coladd > 0
3561 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 {
3563 if (dir == FORWARD && c == NUL)
3564 ++col;
3565 if (dir != FORWARD && c != NUL)
3566 ++curwin->w_cursor.col;
3567 if (c == TAB)
3568 {
3569 if (dir == BACKWARD && curwin->w_cursor.col)
3570 curwin->w_cursor.col--;
3571 if (dir == FORWARD && col - 1 == endcol2)
3572 curwin->w_cursor.col++;
3573 }
3574 }
3575 curwin->w_cursor.coladd = 0;
3576#endif
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003577 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 for (i = 0; i < y_size; ++i)
3579 {
3580 int spaces;
3581 char shortline;
3582
3583 bd.startspaces = 0;
3584 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585 vcol = 0;
3586 delcount = 0;
3587
3588 /* add a new line */
3589 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3590 {
3591 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3592 (colnr_T)1, FALSE) == FAIL)
3593 break;
3594 ++nr_lines;
3595 }
3596 /* get the old line and advance to the position to insert at */
3597 oldp = ml_get_curline();
3598 oldlen = (int)STRLEN(oldp);
3599 for (ptr = oldp; vcol < col && *ptr; )
3600 {
3601 /* Count a tab for what it's worth (if list mode not on) */
3602 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
3603 vcol += incr;
3604 }
3605 bd.textcol = (colnr_T)(ptr - oldp);
3606
3607 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3608
3609 if (vcol < col) /* line too short, padd with spaces */
3610 bd.startspaces = col - vcol;
3611 else if (vcol > col)
3612 {
3613 bd.endspaces = vcol - col;
3614 bd.startspaces = incr - bd.endspaces;
3615 --bd.textcol;
3616 delcount = 1;
3617#ifdef FEAT_MBYTE
3618 if (has_mbyte)
3619 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3620#endif
3621 if (oldp[bd.textcol] != TAB)
3622 {
3623 /* Only a Tab can be split into spaces. Other
3624 * characters will have to be moved to after the
3625 * block, causing misalignment. */
3626 delcount = 0;
3627 bd.endspaces = 0;
3628 }
3629 }
3630
3631 yanklen = (int)STRLEN(y_array[i]);
3632
3633 /* calculate number of spaces required to fill right side of block*/
3634 spaces = y_width + 1;
3635 for (j = 0; j < yanklen; j++)
3636 spaces -= lbr_chartabsize(&y_array[i][j], 0);
3637 if (spaces < 0)
3638 spaces = 0;
3639
3640 /* insert the new text */
3641 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3642 newp = alloc_check((unsigned)totlen + oldlen + 1);
3643 if (newp == NULL)
3644 break;
3645 /* copy part up to cursor to new line */
3646 ptr = newp;
3647 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3648 ptr += bd.textcol;
3649 /* may insert some spaces before the new text */
3650 copy_spaces(ptr, (size_t)bd.startspaces);
3651 ptr += bd.startspaces;
3652 /* insert the new text */
3653 for (j = 0; j < count; ++j)
3654 {
3655 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3656 ptr += yanklen;
3657
3658 /* insert block's trailing spaces only if there's text behind */
3659 if ((j < count - 1 || !shortline) && spaces)
3660 {
3661 copy_spaces(ptr, (size_t)spaces);
3662 ptr += spaces;
3663 }
3664 }
3665 /* may insert some spaces after the new text */
3666 copy_spaces(ptr, (size_t)bd.endspaces);
3667 ptr += bd.endspaces;
3668 /* move the text after the cursor to the end of the line. */
3669 mch_memmove(ptr, oldp + bd.textcol + delcount,
3670 (size_t)(oldlen - bd.textcol - delcount + 1));
3671 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3672
3673 ++curwin->w_cursor.lnum;
3674 if (i == 0)
3675 curwin->w_cursor.col += bd.startspaces;
3676 }
3677
3678 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3679
3680 /* Set '[ mark. */
3681 curbuf->b_op_start = curwin->w_cursor;
3682 curbuf->b_op_start.lnum = lnum;
3683
3684 /* adjust '] mark */
3685 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3686 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003687# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003689# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 if (flags & PUT_CURSEND)
3691 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003692 colnr_T len;
3693
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 curwin->w_cursor = curbuf->b_op_end;
3695 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003696
3697 /* in Insert mode we might be after the NUL, correct for that */
3698 len = (colnr_T)STRLEN(ml_get_curline());
3699 if (curwin->w_cursor.col > len)
3700 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 }
3702 else
3703 curwin->w_cursor.lnum = lnum;
3704 }
3705 else
3706#endif
3707 {
3708 /*
3709 * Character or Line mode
3710 */
3711 if (y_type == MCHAR)
3712 {
3713 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3714 * char */
3715 if (dir == FORWARD && gchar_cursor() != NUL)
3716 {
3717#ifdef FEAT_MBYTE
3718 if (has_mbyte)
3719 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003720 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721
3722 /* put it on the next of the multi-byte character. */
3723 col += bytelen;
3724 if (yanklen)
3725 {
3726 curwin->w_cursor.col += bytelen;
3727 curbuf->b_op_end.col += bytelen;
3728 }
3729 }
3730 else
3731#endif
3732 {
3733 ++col;
3734 if (yanklen)
3735 {
3736 ++curwin->w_cursor.col;
3737 ++curbuf->b_op_end.col;
3738 }
3739 }
3740 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 curbuf->b_op_start = curwin->w_cursor;
3742 }
3743 /*
3744 * Line mode: BACKWARD is the same as FORWARD on the previous line
3745 */
3746 else if (dir == BACKWARD)
3747 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003748 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749
3750 /*
3751 * simple case: insert into current line
3752 */
3753 if (y_type == MCHAR && y_size == 1)
3754 {
3755 totlen = count * yanklen;
3756 if (totlen)
3757 {
3758 oldp = ml_get(lnum);
3759 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3760 if (newp == NULL)
3761 goto end; /* alloc() will give error message */
3762 mch_memmove(newp, oldp, (size_t)col);
3763 ptr = newp + col;
3764 for (i = 0; i < count; ++i)
3765 {
3766 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3767 ptr += yanklen;
3768 }
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00003769 STRMOVE(ptr, oldp + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 ml_replace(lnum, newp, FALSE);
3771 /* Put cursor on last putted char. */
3772 curwin->w_cursor.col += (colnr_T)(totlen - 1);
3773 }
3774 curbuf->b_op_end = curwin->w_cursor;
3775 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3776 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3777 ++curwin->w_cursor.col;
3778 changed_bytes(lnum, col);
3779 }
3780 else
3781 {
3782 /*
3783 * Insert at least one line. When y_type is MCHAR, break the first
3784 * line in two.
3785 */
3786 for (cnt = 1; cnt <= count; ++cnt)
3787 {
3788 i = 0;
3789 if (y_type == MCHAR)
3790 {
3791 /*
3792 * Split the current line in two at the insert position.
3793 * First insert y_array[size - 1] in front of second line.
3794 * Then append y_array[0] to first line.
3795 */
3796 lnum = new_cursor.lnum;
3797 ptr = ml_get(lnum) + col;
3798 totlen = (int)STRLEN(y_array[y_size - 1]);
3799 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3800 if (newp == NULL)
3801 goto error;
3802 STRCPY(newp, y_array[y_size - 1]);
3803 STRCAT(newp, ptr);
3804 /* insert second line */
3805 ml_append(lnum, newp, (colnr_T)0, FALSE);
3806 vim_free(newp);
3807
3808 oldp = ml_get(lnum);
3809 newp = alloc_check((unsigned)(col + yanklen + 1));
3810 if (newp == NULL)
3811 goto error;
3812 /* copy first part of line */
3813 mch_memmove(newp, oldp, (size_t)col);
3814 /* append to first line */
3815 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3816 ml_replace(lnum, newp, FALSE);
3817
3818 curwin->w_cursor.lnum = lnum;
3819 i = 1;
3820 }
3821
3822 for (; i < y_size; ++i)
3823 {
3824 if ((y_type != MCHAR || i < y_size - 1)
3825 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3826 == FAIL)
3827 goto error;
3828 lnum++;
3829 ++nr_lines;
3830 if (flags & PUT_FIXINDENT)
3831 {
3832 old_pos = curwin->w_cursor;
3833 curwin->w_cursor.lnum = lnum;
3834 ptr = ml_get(lnum);
3835 if (cnt == count && i == y_size - 1)
3836 lendiff = (int)STRLEN(ptr);
3837#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3838 if (*ptr == '#' && preprocs_left())
3839 indent = 0; /* Leave # lines at start */
3840 else
3841#endif
3842 if (*ptr == NUL)
3843 indent = 0; /* Ignore empty lines */
3844 else if (first_indent)
3845 {
3846 indent_diff = orig_indent - get_indent();
3847 indent = orig_indent;
3848 first_indent = FALSE;
3849 }
3850 else if ((indent = get_indent() + indent_diff) < 0)
3851 indent = 0;
3852 (void)set_indent(indent, 0);
3853 curwin->w_cursor = old_pos;
3854 /* remember how many chars were removed */
3855 if (cnt == count && i == y_size - 1)
3856 lendiff -= (int)STRLEN(ml_get(lnum));
3857 }
3858 }
3859 }
3860
3861error:
3862 /* Adjust marks. */
3863 if (y_type == MLINE)
3864 {
3865 curbuf->b_op_start.col = 0;
3866 if (dir == FORWARD)
3867 curbuf->b_op_start.lnum++;
3868 }
3869 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
3870 (linenr_T)MAXLNUM, nr_lines, 0L);
3871
3872 /* note changed text for displaying and folding */
3873 if (y_type == MCHAR)
3874 changed_lines(curwin->w_cursor.lnum, col,
3875 curwin->w_cursor.lnum + 1, nr_lines);
3876 else
3877 changed_lines(curbuf->b_op_start.lnum, 0,
3878 curbuf->b_op_start.lnum, nr_lines);
3879
3880 /* put '] mark at last inserted character */
3881 curbuf->b_op_end.lnum = lnum;
3882 /* correct length for change in indent */
3883 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3884 if (col > 1)
3885 curbuf->b_op_end.col = col - 1;
3886 else
3887 curbuf->b_op_end.col = 0;
3888
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003889 if (flags & PUT_CURSLINE)
3890 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003891 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003892 curwin->w_cursor.lnum = lnum;
3893 beginline(BL_WHITE | BL_FIX);
3894 }
3895 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 {
3897 /* put cursor after inserted text */
3898 if (y_type == MLINE)
3899 {
3900 if (lnum >= curbuf->b_ml.ml_line_count)
3901 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3902 else
3903 curwin->w_cursor.lnum = lnum + 1;
3904 curwin->w_cursor.col = 0;
3905 }
3906 else
3907 {
3908 curwin->w_cursor.lnum = lnum;
3909 curwin->w_cursor.col = col;
3910 }
3911 }
3912 else if (y_type == MLINE)
3913 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003914 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 curwin->w_cursor.col = 0;
3916 if (dir == FORWARD)
3917 ++curwin->w_cursor.lnum;
3918 beginline(BL_WHITE | BL_FIX);
3919 }
3920 else /* put cursor on first inserted character */
3921 curwin->w_cursor = new_cursor;
3922 }
3923 }
3924
3925 msgmore(nr_lines);
3926 curwin->w_set_curswant = TRUE;
3927
3928end:
3929 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003931 if (regname == '=')
3932 vim_free(y_array);
3933
Bram Moolenaar677ee682005-01-27 14:41:15 +00003934 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003935 adjust_cursor_eol();
3936}
3937
3938/*
3939 * When the cursor is on the NUL past the end of the line and it should not be
3940 * there move it left.
3941 */
3942 void
3943adjust_cursor_eol()
3944{
3945 if (curwin->w_cursor.col > 0
3946 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00003947#ifdef FEAT_VIRTUALEDIT
3948 && (ve_flags & VE_ONEMORE) == 0
3949#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 && !(restart_edit || (State & INSERT)))
3951 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00003952 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00003953 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003954
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955#ifdef FEAT_VIRTUALEDIT
3956 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00003957 {
3958 colnr_T scol, ecol;
3959
3960 /* Coladd is set to the width of the last character. */
3961 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
3962 curwin->w_cursor.coladd = ecol - scol + 1;
3963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964#endif
3965 }
3966}
3967
3968#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
3969/*
3970 * Return TRUE if lines starting with '#' should be left aligned.
3971 */
3972 int
3973preprocs_left()
3974{
3975 return
3976# ifdef FEAT_SMARTINDENT
3977# ifdef FEAT_CINDENT
3978 (curbuf->b_p_si && !curbuf->b_p_cin) ||
3979# else
3980 curbuf->b_p_si
3981# endif
3982# endif
3983# ifdef FEAT_CINDENT
3984 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE))
3985# endif
3986 ;
3987}
3988#endif
3989
3990/* Return the character name of the register with the given number */
3991 int
3992get_register_name(num)
3993 int num;
3994{
3995 if (num == -1)
3996 return '"';
3997 else if (num < 10)
3998 return num + '0';
3999 else if (num == DELETION_REGISTER)
4000 return '-';
4001#ifdef FEAT_CLIPBOARD
4002 else if (num == STAR_REGISTER)
4003 return '*';
4004 else if (num == PLUS_REGISTER)
4005 return '+';
4006#endif
4007 else
4008 {
4009#ifdef EBCDIC
4010 int i;
4011
4012 /* EBCDIC is really braindead ... */
4013 i = 'a' + (num - 10);
4014 if (i > 'i')
4015 i += 7;
4016 if (i > 'r')
4017 i += 8;
4018 return i;
4019#else
4020 return num + 'a' - 10;
4021#endif
4022 }
4023}
4024
4025/*
4026 * ":dis" and ":registers": Display the contents of the yank registers.
4027 */
4028 void
4029ex_display(eap)
4030 exarg_T *eap;
4031{
4032 int i, n;
4033 long j;
4034 char_u *p;
4035 struct yankreg *yb;
4036 int name;
4037 int attr;
4038 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004039#ifdef FEAT_MBYTE
4040 int clen;
4041#else
4042# define clen 1
4043#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044
4045 if (arg != NULL && *arg == NUL)
4046 arg = NULL;
4047 attr = hl_attr(HLF_8);
4048
4049 /* Highlight title */
4050 MSG_PUTS_TITLE(_("\n--- Registers ---"));
4051 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
4052 {
4053 name = get_register_name(i);
Bram Moolenaar0818b872010-11-24 14:28:58 +01004054 if (arg != NULL && vim_strchr(arg, name) == NULL
4055#ifdef ONE_CLIPBOARD
4056 /* Star register and plus register contain the same thing. */
4057 && (name != '*' || vim_strchr(arg, '+') == NULL)
4058#endif
4059 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 continue; /* did not ask for this register */
4061
4062#ifdef FEAT_CLIPBOARD
4063 /* Adjust register name for "unnamed" in 'clipboard'.
4064 * When it's a clipboard register, fill it with the current contents
4065 * of the clipboard. */
4066 adjust_clip_reg(&name);
4067 (void)may_get_selection(name);
4068#endif
4069
4070 if (i == -1)
4071 {
4072 if (y_previous != NULL)
4073 yb = y_previous;
4074 else
4075 yb = &(y_regs[0]);
4076 }
4077 else
4078 yb = &(y_regs[i]);
Bram Moolenaarcde547a2009-11-17 11:43:06 +00004079
4080#ifdef FEAT_EVAL
4081 if (name == MB_TOLOWER(redir_reg)
4082 || (redir_reg == '"' && yb == y_previous))
4083 continue; /* do not list register being written to, the
4084 * pointer can be freed */
4085#endif
4086
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 if (yb->y_array != NULL)
4088 {
4089 msg_putchar('\n');
4090 msg_putchar('"');
4091 msg_putchar(name);
4092 MSG_PUTS(" ");
4093
4094 n = (int)Columns - 6;
4095 for (j = 0; j < yb->y_size && n > 1; ++j)
4096 {
4097 if (j)
4098 {
4099 MSG_PUTS_ATTR("^J", attr);
4100 n -= 2;
4101 }
4102 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4103 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004105 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004106#endif
4107 msg_outtrans_len(p, clen);
4108#ifdef FEAT_MBYTE
4109 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110#endif
4111 }
4112 }
4113 if (n > 1 && yb->y_type == MLINE)
4114 MSG_PUTS_ATTR("^J", attr);
4115 out_flush(); /* show one line at a time */
4116 }
4117 ui_breakcheck();
4118 }
4119
4120 /*
4121 * display last inserted text
4122 */
4123 if ((p = get_last_insert()) != NULL
4124 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4125 {
4126 MSG_PUTS("\n\". ");
4127 dis_msg(p, TRUE);
4128 }
4129
4130 /*
4131 * display last command line
4132 */
4133 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4134 && !got_int)
4135 {
4136 MSG_PUTS("\n\": ");
4137 dis_msg(last_cmdline, FALSE);
4138 }
4139
4140 /*
4141 * display current file name
4142 */
4143 if (curbuf->b_fname != NULL
4144 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4145 {
4146 MSG_PUTS("\n\"% ");
4147 dis_msg(curbuf->b_fname, FALSE);
4148 }
4149
4150 /*
4151 * display alternate file name
4152 */
4153 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4154 {
4155 char_u *fname;
4156 linenr_T dummy;
4157
4158 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4159 {
4160 MSG_PUTS("\n\"# ");
4161 dis_msg(fname, FALSE);
4162 }
4163 }
4164
4165 /*
4166 * display last search pattern
4167 */
4168 if (last_search_pat() != NULL
4169 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4170 {
4171 MSG_PUTS("\n\"/ ");
4172 dis_msg(last_search_pat(), FALSE);
4173 }
4174
4175#ifdef FEAT_EVAL
4176 /*
4177 * display last used expression
4178 */
4179 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4180 && !got_int)
4181 {
4182 MSG_PUTS("\n\"= ");
4183 dis_msg(expr_line, FALSE);
4184 }
4185#endif
4186}
4187
4188/*
4189 * display a string for do_dis()
4190 * truncate at end of screen line
4191 */
4192 static void
4193dis_msg(p, skip_esc)
4194 char_u *p;
4195 int skip_esc; /* if TRUE, ignore trailing ESC */
4196{
4197 int n;
4198#ifdef FEAT_MBYTE
4199 int l;
4200#endif
4201
4202 n = (int)Columns - 6;
4203 while (*p != NUL
4204 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4205 && (n -= ptr2cells(p)) >= 0)
4206 {
4207#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004208 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209 {
4210 msg_outtrans_len(p, l);
4211 p += l;
4212 }
4213 else
4214#endif
4215 msg_outtrans_len(p++, 1);
4216 }
4217 ui_breakcheck();
4218}
4219
Bram Moolenaar81340392012-06-06 16:12:59 +02004220#if defined(FEAT_COMMENTS) || defined(PROTO)
4221/*
4222 * If "process" is TRUE and the line begins with a comment leader (possibly
4223 * after some white space), return a pointer to the text after it. Put a boolean
4224 * value indicating whether the line ends with an unclosed comment in
4225 * "is_comment".
4226 * line - line to be processed,
4227 * process - if FALSE, will only check whether the line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004228 * comment,
Bram Moolenaar81340392012-06-06 16:12:59 +02004229 * include_space - whether to also skip space following the comment leader,
4230 * is_comment - will indicate whether the current line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004231 * comment.
Bram Moolenaar81340392012-06-06 16:12:59 +02004232 */
4233 static char_u *
4234skip_comment(line, process, include_space, is_comment)
4235 char_u *line;
4236 int process;
4237 int include_space;
4238 int *is_comment;
4239{
4240 char_u *comment_flags = NULL;
4241 int lead_len;
4242 int leader_offset = get_last_leader_offset(line, &comment_flags);
4243
4244 *is_comment = FALSE;
4245 if (leader_offset != -1)
4246 {
4247 /* Let's check whether the line ends with an unclosed comment.
4248 * If the last comment leader has COM_END in flags, there's no comment.
4249 */
4250 while (*comment_flags)
4251 {
4252 if (*comment_flags == COM_END
4253 || *comment_flags == ':')
4254 break;
4255 ++comment_flags;
4256 }
4257 if (*comment_flags != COM_END)
4258 *is_comment = TRUE;
4259 }
4260
4261 if (process == FALSE)
4262 return line;
4263
4264 lead_len = get_leader_len(line, &comment_flags, FALSE, include_space);
4265
4266 if (lead_len == 0)
4267 return line;
4268
4269 /* Find:
Bram Moolenaar81340392012-06-06 16:12:59 +02004270 * - COM_END,
4271 * - colon,
4272 * whichever comes first.
4273 */
4274 while (*comment_flags)
4275 {
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004276 if (*comment_flags == COM_END
Bram Moolenaar81340392012-06-06 16:12:59 +02004277 || *comment_flags == ':')
4278 {
4279 break;
4280 }
4281 ++comment_flags;
4282 }
4283
4284 /* If we found a colon, it means that we are not processing a line
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004285 * starting with a closing part of a three-part comment. That's good,
4286 * because we don't want to remove those as this would be annoying.
Bram Moolenaar81340392012-06-06 16:12:59 +02004287 */
4288 if (*comment_flags == ':' || *comment_flags == NUL)
4289 line += lead_len;
4290
4291 return line;
4292}
4293#endif
4294
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295/*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004296 * Join 'count' lines (minimal 2) at cursor position.
4297 * When "save_undo" is TRUE save lines for undo first.
Bram Moolenaar81340392012-06-06 16:12:59 +02004298 * Set "use_formatoptions" to FALSE when e.g. processing
4299 * backspace and comment leaders should not be removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004301 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 */
4303 int
Bram Moolenaar81340392012-06-06 16:12:59 +02004304do_join(count, insert_space, save_undo, use_formatoptions)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004305 long count;
4306 int insert_space;
4307 int save_undo;
Bram Moolenaar81340392012-06-06 16:12:59 +02004308 int use_formatoptions UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309{
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004310 char_u *curr = NULL;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004311 char_u *curr_start = NULL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004312 char_u *cend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313 char_u *newp;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004314 char_u *spaces; /* number of spaces inserted before a line */
Bram Moolenaard43848c2010-07-14 14:28:26 +02004315 int endcurr1 = NUL;
4316 int endcurr2 = NUL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004317 int currsize = 0; /* size of the current line */
4318 int sumsize = 0; /* size of the long new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 linenr_T t;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004320 colnr_T col = 0;
4321 int ret = OK;
Bram Moolenaar81340392012-06-06 16:12:59 +02004322#if defined(FEAT_COMMENTS) || defined(PROTO)
Bram Moolenaar802053f2012-06-06 23:08:38 +02004323 int *comments = NULL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004324 int remove_comments = (use_formatoptions == TRUE)
4325 && has_format_option(FO_REMOVE_COMS);
4326 int prev_was_comment;
4327#endif
4328
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004330 if (save_undo && u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4331 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4332 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004334 /* Allocate an array to store the number of spaces inserted before each
4335 * line. We will use it to pre-compute the length of the new line and the
4336 * proper placement of each original line in the new one. */
4337 spaces = lalloc_clear((long_u)count, TRUE);
4338 if (spaces == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 return FAIL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004340#if defined(FEAT_COMMENTS) || defined(PROTO)
4341 if (remove_comments)
4342 {
4343 comments = (int *)lalloc_clear((long_u)count * sizeof(int), TRUE);
4344 if (comments == NULL)
4345 {
4346 vim_free(spaces);
4347 return FAIL;
4348 }
4349 }
4350#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351
4352 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004353 * Don't move anything, just compute the final line length
4354 * and setup the array of space strings lengths
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004356 for (t = 0; t < count; ++t)
4357 {
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004358 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t));
Bram Moolenaar81340392012-06-06 16:12:59 +02004359#if defined(FEAT_COMMENTS) || defined(PROTO)
4360 if (remove_comments)
4361 {
4362 /* We don't want to remove the comment leader if the
4363 * previous line is not a comment. */
4364 if (t > 0 && prev_was_comment)
4365 {
4366
4367 char_u *new_curr = skip_comment(curr, TRUE, insert_space,
4368 &prev_was_comment);
Bram Moolenaar27ba0882012-06-07 21:09:39 +02004369 comments[t] = (int)(new_curr - curr);
Bram Moolenaar81340392012-06-06 16:12:59 +02004370 curr = new_curr;
4371 }
4372 else
4373 curr = skip_comment(curr, FALSE, insert_space,
4374 &prev_was_comment);
4375 }
4376#endif
4377
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004378 if (insert_space && t > 0)
4379 {
4380 curr = skipwhite(curr);
4381 if (*curr != ')' && currsize != 0 && endcurr1 != TAB
4382#ifdef FEAT_MBYTE
4383 && (!has_format_option(FO_MBYTE_JOIN)
4384 || (mb_ptr2char(curr) < 0x100 && endcurr1 < 0x100))
4385 && (!has_format_option(FO_MBYTE_JOIN2)
4386 || mb_ptr2char(curr) < 0x100 || endcurr1 < 0x100)
4387#endif
4388 )
4389 {
4390 /* don't add a space if the line is ending in a space */
4391 if (endcurr1 == ' ')
4392 endcurr1 = endcurr2;
4393 else
4394 ++spaces[t];
4395 /* extra space when 'joinspaces' set and line ends in '.' */
4396 if ( p_js
4397 && (endcurr1 == '.'
4398 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4399 && (endcurr1 == '?' || endcurr1 == '!'))))
4400 ++spaces[t];
4401 }
4402 }
4403 currsize = (int)STRLEN(curr);
4404 sumsize += currsize + spaces[t];
4405 endcurr1 = endcurr2 = NUL;
4406 if (insert_space && currsize > 0)
4407 {
4408#ifdef FEAT_MBYTE
4409 if (has_mbyte)
4410 {
4411 cend = curr + currsize;
4412 mb_ptr_back(curr, cend);
4413 endcurr1 = (*mb_ptr2char)(cend);
4414 if (cend > curr)
4415 {
4416 mb_ptr_back(curr, cend);
4417 endcurr2 = (*mb_ptr2char)(cend);
4418 }
4419 }
4420 else
4421#endif
4422 {
4423 endcurr1 = *(curr + currsize - 1);
4424 if (currsize > 1)
4425 endcurr2 = *(curr + currsize - 2);
4426 }
4427 }
4428 line_breakcheck();
4429 if (got_int)
4430 {
4431 ret = FAIL;
4432 goto theend;
4433 }
4434 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004436 /* store the column position before last line */
4437 col = sumsize - currsize - spaces[count - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004439 /* allocate the space for the new line */
4440 newp = alloc_check((unsigned)(sumsize + 1));
4441 cend = newp + sumsize;
4442 *cend = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004444 /*
4445 * Move affected lines to the new long one.
4446 *
4447 * Move marks from each deleted line to the joined line, adjusting the
4448 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4449 * should not really be a problem.
4450 */
4451 for (t = count - 1; ; --t)
4452 {
4453 cend -= currsize;
4454 mch_memmove(cend, curr, (size_t)currsize);
4455 if (spaces[t] > 0)
4456 {
4457 cend -= spaces[t];
4458 copy_spaces(cend, (size_t)(spaces[t]));
4459 }
4460 mark_col_adjust(curwin->w_cursor.lnum + t, (colnr_T)0, (linenr_T)-t,
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004461 (long)(cend - newp + spaces[t] - (curr - curr_start)));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004462 if (t == 0)
4463 break;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004464 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1));
Bram Moolenaar81340392012-06-06 16:12:59 +02004465#if defined(FEAT_COMMENTS) || defined(PROTO)
4466 if (remove_comments)
4467 curr += comments[t - 1];
4468#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004469 if (insert_space && t > 1)
4470 curr = skipwhite(curr);
4471 currsize = (int)STRLEN(curr);
4472 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4474
4475 /* Only report the change in the first line here, del_lines() will report
4476 * the deleted line. */
4477 changed_lines(curwin->w_cursor.lnum, currsize,
4478 curwin->w_cursor.lnum + 1, 0L);
4479
4480 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004481 * Delete following lines. To do this we move the cursor there
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 * briefly, and then move it back. After del_lines() the cursor may
4483 * have moved up (last line deleted), so the current lnum is kept in t.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 */
4485 t = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 ++curwin->w_cursor.lnum;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004487 del_lines(count - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 curwin->w_cursor.lnum = t;
4489
4490 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004491 * Set the cursor column:
4492 * Vi compatible: use the column of the first join
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004493 * vim: use the column of the last join
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004495 curwin->w_cursor.col =
4496 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 check_cursor_col();
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004498
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499#ifdef FEAT_VIRTUALEDIT
4500 curwin->w_cursor.coladd = 0;
4501#endif
4502 curwin->w_set_curswant = TRUE;
4503
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004504theend:
4505 vim_free(spaces);
Bram Moolenaar81340392012-06-06 16:12:59 +02004506#if defined(FEAT_COMMENTS) || defined(PROTO)
4507 if (remove_comments)
4508 vim_free(comments);
4509#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004510 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511}
4512
4513#ifdef FEAT_COMMENTS
4514/*
4515 * Return TRUE if the two comment leaders given are the same. "lnum" is
4516 * the first line. White-space is ignored. Note that the whole of
4517 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4518 */
4519 static int
4520same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
4521 linenr_T lnum;
4522 int leader1_len;
4523 char_u *leader1_flags;
4524 int leader2_len;
4525 char_u *leader2_flags;
4526{
4527 int idx1 = 0, idx2 = 0;
4528 char_u *p;
4529 char_u *line1;
4530 char_u *line2;
4531
4532 if (leader1_len == 0)
4533 return (leader2_len == 0);
4534
4535 /*
4536 * If first leader has 'f' flag, the lines can be joined only if the
4537 * second line does not have a leader.
4538 * If first leader has 'e' flag, the lines can never be joined.
4539 * If fist leader has 's' flag, the lines can only be joined if there is
4540 * some text after it and the second line has the 'm' flag.
4541 */
4542 if (leader1_flags != NULL)
4543 {
4544 for (p = leader1_flags; *p && *p != ':'; ++p)
4545 {
4546 if (*p == COM_FIRST)
4547 return (leader2_len == 0);
4548 if (*p == COM_END)
4549 return FALSE;
4550 if (*p == COM_START)
4551 {
4552 if (*(ml_get(lnum) + leader1_len) == NUL)
4553 return FALSE;
4554 if (leader2_flags == NULL || leader2_len == 0)
4555 return FALSE;
4556 for (p = leader2_flags; *p && *p != ':'; ++p)
4557 if (*p == COM_MIDDLE)
4558 return TRUE;
4559 return FALSE;
4560 }
4561 }
4562 }
4563
4564 /*
4565 * Get current line and next line, compare the leaders.
4566 * The first line has to be saved, only one line can be locked at a time.
4567 */
4568 line1 = vim_strsave(ml_get(lnum));
4569 if (line1 != NULL)
4570 {
4571 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4572 ;
4573 line2 = ml_get(lnum + 1);
4574 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4575 {
4576 if (!vim_iswhite(line2[idx2]))
4577 {
4578 if (line1[idx1++] != line2[idx2])
4579 break;
4580 }
4581 else
4582 while (vim_iswhite(line1[idx1]))
4583 ++idx1;
4584 }
4585 vim_free(line1);
4586 }
4587 return (idx2 == leader2_len && idx1 == leader1_len);
4588}
4589#endif
4590
4591/*
Bram Moolenaar66accae2012-01-10 13:44:27 +01004592 * Implementation of the format operator 'gq'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 */
4594 void
4595op_format(oap, keep_cursor)
4596 oparg_T *oap;
4597 int keep_cursor; /* keep cursor on same text char */
4598{
4599 long old_line_count = curbuf->b_ml.ml_line_count;
4600
4601 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4602 * can put it back there. */
4603 curwin->w_cursor = oap->cursor_start;
4604
4605 if (u_save((linenr_T)(oap->start.lnum - 1),
4606 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4607 return;
4608 curwin->w_cursor = oap->start;
4609
4610#ifdef FEAT_VISUAL
4611 if (oap->is_VIsual)
4612 /* When there is no change: need to remove the Visual selection */
4613 redraw_curbuf_later(INVERTED);
4614#endif
4615
4616 /* Set '[ mark at the start of the formatted area */
4617 curbuf->b_op_start = oap->start;
4618
4619 /* For "gw" remember the cursor position and put it back below (adjusted
4620 * for joined and split lines). */
4621 if (keep_cursor)
4622 saved_cursor = oap->cursor_start;
4623
Bram Moolenaar81a82092008-03-12 16:27:00 +00004624 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625
4626 /*
4627 * Leave the cursor at the first non-blank of the last formatted line.
4628 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4629 * line, so "." will do the next lines.
4630 */
4631 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4632 ++curwin->w_cursor.lnum;
4633 beginline(BL_WHITE | BL_FIX);
4634 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4635 msgmore(old_line_count);
4636
4637 /* put '] mark on the end of the formatted area */
4638 curbuf->b_op_end = curwin->w_cursor;
4639
4640 if (keep_cursor)
4641 {
4642 curwin->w_cursor = saved_cursor;
4643 saved_cursor.lnum = 0;
4644 }
4645
4646#ifdef FEAT_VISUAL
4647 if (oap->is_VIsual)
4648 {
4649 win_T *wp;
4650
4651 FOR_ALL_WINDOWS(wp)
4652 {
4653 if (wp->w_old_cursor_lnum != 0)
4654 {
4655 /* When lines have been inserted or deleted, adjust the end of
4656 * the Visual area to be redrawn. */
4657 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4658 wp->w_old_cursor_lnum += old_line_count;
4659 else
4660 wp->w_old_visual_lnum += old_line_count;
4661 }
4662 }
4663 }
4664#endif
4665}
4666
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004667#if defined(FEAT_EVAL) || defined(PROTO)
4668/*
4669 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4670 */
4671 void
4672op_formatexpr(oap)
4673 oparg_T *oap;
4674{
4675# ifdef FEAT_VISUAL
4676 if (oap->is_VIsual)
4677 /* When there is no change: need to remove the Visual selection */
4678 redraw_curbuf_later(INVERTED);
4679# endif
4680
Bram Moolenaar700303e2010-07-11 17:35:50 +02004681 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0)
4682 /* As documented: when 'formatexpr' returns non-zero fall back to
4683 * internal formatting. */
4684 op_format(oap, FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004685}
4686
4687 int
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004688fex_format(lnum, count, c)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004689 linenr_T lnum;
4690 long count;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004691 int c; /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004692{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004693 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4694 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004695 int r;
4696
4697 /*
4698 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004699 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004700 */
4701 set_vim_var_nr(VV_LNUM, lnum);
4702 set_vim_var_nr(VV_COUNT, count);
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004703 set_vim_var_char(c);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004704
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004705 /*
4706 * Evaluate the function.
4707 */
4708 if (use_sandbox)
4709 ++sandbox;
4710 r = eval_to_number(curbuf->b_p_fex);
4711 if (use_sandbox)
4712 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004713
4714 set_vim_var_string(VV_CHAR, NULL, -1);
4715
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004716 return r;
4717}
4718#endif
4719
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720/*
4721 * Format "line_count" lines, starting at the cursor position.
4722 * When "line_count" is negative, format until the end of the paragraph.
4723 * Lines after the cursor line are saved for undo, caller must have saved the
4724 * first line.
4725 */
4726 void
Bram Moolenaar81a82092008-03-12 16:27:00 +00004727format_lines(line_count, avoid_fex)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728 linenr_T line_count;
Bram Moolenaar81a82092008-03-12 16:27:00 +00004729 int avoid_fex; /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730{
4731 int max_len;
4732 int is_not_par; /* current line not part of parag. */
4733 int next_is_not_par; /* next line not part of paragraph */
4734 int is_end_par; /* at end of paragraph */
4735 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4736 int next_is_start_par = FALSE;
4737#ifdef FEAT_COMMENTS
4738 int leader_len = 0; /* leader len of current line */
4739 int next_leader_len; /* leader len of next line */
4740 char_u *leader_flags = NULL; /* flags for leader of current line */
4741 char_u *next_leader_flags; /* flags for leader of next line */
4742 int do_comments; /* format comments */
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004743 int do_comments_list = 0; /* format comments with 'n' or '2' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744#endif
4745 int advance = TRUE;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004746 int second_indent = -1; /* indent for second line (comment
4747 * aware) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 int do_second_indent;
4749 int do_number_indent;
4750 int do_trail_white;
4751 int first_par_line = TRUE;
4752 int smd_save;
4753 long count;
4754 int need_set_indent = TRUE; /* set indent of next paragraph */
4755 int force_format = FALSE;
4756 int old_State = State;
4757
4758 /* length of a line to force formatting: 3 * 'tw' */
4759 max_len = comp_textwidth(TRUE) * 3;
4760
4761 /* check for 'q', '2' and '1' in 'formatoptions' */
4762#ifdef FEAT_COMMENTS
4763 do_comments = has_format_option(FO_Q_COMS);
4764#endif
4765 do_second_indent = has_format_option(FO_Q_SECOND);
4766 do_number_indent = has_format_option(FO_Q_NUMBER);
4767 do_trail_white = has_format_option(FO_WHITE_PAR);
4768
4769 /*
4770 * Get info about the previous and current line.
4771 */
4772 if (curwin->w_cursor.lnum > 1)
4773 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4774#ifdef FEAT_COMMENTS
4775 , &leader_len, &leader_flags, do_comments
4776#endif
4777 );
4778 else
4779 is_not_par = TRUE;
4780 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4781#ifdef FEAT_COMMENTS
4782 , &next_leader_len, &next_leader_flags, do_comments
4783#endif
4784 );
4785 is_end_par = (is_not_par || next_is_not_par);
4786 if (!is_end_par && do_trail_white)
4787 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4788
4789 curwin->w_cursor.lnum--;
4790 for (count = line_count; count != 0 && !got_int; --count)
4791 {
4792 /*
4793 * Advance to next paragraph.
4794 */
4795 if (advance)
4796 {
4797 curwin->w_cursor.lnum++;
4798 prev_is_end_par = is_end_par;
4799 is_not_par = next_is_not_par;
4800#ifdef FEAT_COMMENTS
4801 leader_len = next_leader_len;
4802 leader_flags = next_leader_flags;
4803#endif
4804 }
4805
4806 /*
4807 * The last line to be formatted.
4808 */
4809 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4810 {
4811 next_is_not_par = TRUE;
4812#ifdef FEAT_COMMENTS
4813 next_leader_len = 0;
4814 next_leader_flags = NULL;
4815#endif
4816 }
4817 else
4818 {
4819 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4820#ifdef FEAT_COMMENTS
4821 , &next_leader_len, &next_leader_flags, do_comments
4822#endif
4823 );
4824 if (do_number_indent)
4825 next_is_start_par =
4826 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4827 }
4828 advance = TRUE;
4829 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4830 if (!is_end_par && do_trail_white)
4831 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4832
4833 /*
4834 * Skip lines that are not in a paragraph.
4835 */
4836 if (is_not_par)
4837 {
4838 if (line_count < 0)
4839 break;
4840 }
4841 else
4842 {
4843 /*
4844 * For the first line of a paragraph, check indent of second line.
4845 * Don't do this for comments and empty lines.
4846 */
4847 if (first_par_line
4848 && (do_second_indent || do_number_indent)
4849 && prev_is_end_par
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004850 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 {
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004852 if (do_second_indent && !lineempty(curwin->w_cursor.lnum + 1))
4853 {
4854#ifdef FEAT_COMMENTS
4855 if (leader_len == 0 && next_leader_len == 0)
4856 {
4857 /* no comment found */
4858#endif
4859 second_indent =
4860 get_indent_lnum(curwin->w_cursor.lnum + 1);
4861#ifdef FEAT_COMMENTS
4862 }
4863 else
4864 {
4865 second_indent = next_leader_len;
4866 do_comments_list = 1;
4867 }
4868#endif
4869 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870 else if (do_number_indent)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004871 {
4872#ifdef FEAT_COMMENTS
4873 if (leader_len == 0 && next_leader_len == 0)
4874 {
4875 /* no comment found */
4876#endif
4877 second_indent =
4878 get_number_indent(curwin->w_cursor.lnum);
4879#ifdef FEAT_COMMENTS
4880 }
4881 else
4882 {
4883 /* get_number_indent() is now "comment aware"... */
4884 second_indent =
4885 get_number_indent(curwin->w_cursor.lnum);
4886 do_comments_list = 1;
4887 }
4888#endif
4889 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 }
4891
4892 /*
4893 * When the comment leader changes, it's the end of the paragraph.
4894 */
4895 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4896#ifdef FEAT_COMMENTS
4897 || !same_leader(curwin->w_cursor.lnum,
4898 leader_len, leader_flags,
4899 next_leader_len, next_leader_flags)
4900#endif
4901 )
4902 is_end_par = TRUE;
4903
4904 /*
4905 * If we have got to the end of a paragraph, or the line is
4906 * getting long, format it.
4907 */
4908 if (is_end_par || force_format)
4909 {
4910 if (need_set_indent)
4911 /* replace indent in first line with minimal number of
4912 * tabs and spaces, according to current options */
4913 (void)set_indent(get_indent(), SIN_CHANGED);
4914
4915 /* put cursor on last non-space */
4916 State = NORMAL; /* don't go past end-of-line */
4917 coladvance((colnr_T)MAXCOL);
4918 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
4919 dec_cursor();
4920
4921 /* do the formatting, without 'showmode' */
4922 State = INSERT; /* for open_line() */
4923 smd_save = p_smd;
4924 p_smd = FALSE;
4925 insertchar(NUL, INSCHAR_FORMAT
4926#ifdef FEAT_COMMENTS
4927 + (do_comments ? INSCHAR_DO_COM : 0)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004928 + (do_comments && do_comments_list
4929 ? INSCHAR_COM_LIST : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00004931 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 State = old_State;
4933 p_smd = smd_save;
4934 second_indent = -1;
4935 /* at end of par.: need to set indent of next par. */
4936 need_set_indent = is_end_par;
4937 if (is_end_par)
4938 {
4939 /* When called with a negative line count, break at the
4940 * end of the paragraph. */
4941 if (line_count < 0)
4942 break;
4943 first_par_line = TRUE;
4944 }
4945 force_format = FALSE;
4946 }
4947
4948 /*
4949 * When still in same paragraph, join the lines together. But
4950 * first delete the comment leader from the second line.
4951 */
4952 if (!is_end_par)
4953 {
4954 advance = FALSE;
4955 curwin->w_cursor.lnum++;
4956 curwin->w_cursor.col = 0;
4957 if (line_count < 0 && u_save_cursor() == FAIL)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004958 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959#ifdef FEAT_COMMENTS
Bram Moolenaare3226be2005-12-18 22:10:00 +00004960 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 if (next_leader_len > 0)
4962 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
4963 (long)-next_leader_len);
4964#endif
4965 curwin->w_cursor.lnum--;
Bram Moolenaar81340392012-06-06 16:12:59 +02004966 if (do_join(2, TRUE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 {
4968 beep_flush();
4969 break;
4970 }
4971 first_par_line = FALSE;
4972 /* If the line is getting long, format it next time */
4973 if (STRLEN(ml_get_curline()) > (size_t)max_len)
4974 force_format = TRUE;
4975 else
4976 force_format = FALSE;
4977 }
4978 }
4979 line_breakcheck();
4980 }
4981}
4982
4983/*
4984 * Return TRUE if line "lnum" ends in a white character.
4985 */
4986 static int
4987ends_in_white(lnum)
4988 linenr_T lnum;
4989{
4990 char_u *s = ml_get(lnum);
4991 size_t l;
4992
4993 if (*s == NUL)
4994 return FALSE;
4995 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
4996 * invocation may call function multiple times". */
4997 l = STRLEN(s) - 1;
4998 return vim_iswhite(s[l]);
4999}
5000
5001/*
5002 * Blank lines, and lines containing only the comment leader, are left
5003 * untouched by the formatting. The function returns TRUE in this
5004 * case. It also returns TRUE when a line starts with the end of a comment
5005 * ('e' in comment flags), so that this line is skipped, and not joined to the
5006 * previous line. A new paragraph starts after a blank line, or when the
5007 * comment leader changes -- webb.
5008 */
5009#ifdef FEAT_COMMENTS
5010 static int
5011fmt_check_par(lnum, leader_len, leader_flags, do_comments)
5012 linenr_T lnum;
5013 int *leader_len;
5014 char_u **leader_flags;
5015 int do_comments;
5016{
5017 char_u *flags = NULL; /* init for GCC */
5018 char_u *ptr;
5019
5020 ptr = ml_get(lnum);
5021 if (do_comments)
Bram Moolenaar81340392012-06-06 16:12:59 +02005022 *leader_len = get_leader_len(ptr, leader_flags, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 else
5024 *leader_len = 0;
5025
5026 if (*leader_len > 0)
5027 {
5028 /*
5029 * Search for 'e' flag in comment leader flags.
5030 */
5031 flags = *leader_flags;
5032 while (*flags && *flags != ':' && *flags != COM_END)
5033 ++flags;
5034 }
5035
5036 return (*skipwhite(ptr + *leader_len) == NUL
5037 || (*leader_len > 0 && *flags == COM_END)
5038 || startPS(lnum, NUL, FALSE));
5039}
5040#else
5041 static int
5042fmt_check_par(lnum)
5043 linenr_T lnum;
5044{
5045 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
5046}
5047#endif
5048
5049/*
5050 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
5051 * previous line is in the same paragraph. Used for auto-formatting.
5052 */
5053 int
5054paragraph_start(lnum)
5055 linenr_T lnum;
5056{
5057 char_u *p;
5058#ifdef FEAT_COMMENTS
5059 int leader_len = 0; /* leader len of current line */
5060 char_u *leader_flags = NULL; /* flags for leader of current line */
5061 int next_leader_len; /* leader len of next line */
5062 char_u *next_leader_flags; /* flags for leader of next line */
5063 int do_comments; /* format comments */
5064#endif
5065
5066 if (lnum <= 1)
5067 return TRUE; /* start of the file */
5068
5069 p = ml_get(lnum - 1);
5070 if (*p == NUL)
5071 return TRUE; /* after empty line */
5072
5073#ifdef FEAT_COMMENTS
5074 do_comments = has_format_option(FO_Q_COMS);
5075#endif
5076 if (fmt_check_par(lnum - 1
5077#ifdef FEAT_COMMENTS
5078 , &leader_len, &leader_flags, do_comments
5079#endif
5080 ))
5081 return TRUE; /* after non-paragraph line */
5082
5083 if (fmt_check_par(lnum
5084#ifdef FEAT_COMMENTS
5085 , &next_leader_len, &next_leader_flags, do_comments
5086#endif
5087 ))
5088 return TRUE; /* "lnum" is not a paragraph line */
5089
5090 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
5091 return TRUE; /* missing trailing space in previous line. */
5092
5093 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
5094 return TRUE; /* numbered item starts in "lnum". */
5095
5096#ifdef FEAT_COMMENTS
5097 if (!same_leader(lnum - 1, leader_len, leader_flags,
5098 next_leader_len, next_leader_flags))
5099 return TRUE; /* change of comment leader. */
5100#endif
5101
5102 return FALSE;
5103}
5104
5105#ifdef FEAT_VISUAL
5106/*
5107 * prepare a few things for block mode yank/delete/tilde
5108 *
5109 * for delete:
5110 * - textlen includes the first/last char to be (partly) deleted
5111 * - start/endspaces is the number of columns that are taken by the
5112 * first/last deleted char minus the number of columns that have to be
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +00005113 * deleted.
5114 * for yank and tilde:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 * - textlen includes the first/last char to be wholly yanked
5116 * - start/endspaces is the number of columns of the first/last yanked char
5117 * that are to be yanked.
5118 */
5119 static void
5120block_prep(oap, bdp, lnum, is_del)
5121 oparg_T *oap;
5122 struct block_def *bdp;
5123 linenr_T lnum;
5124 int is_del;
5125{
5126 int incr = 0;
5127 char_u *pend;
5128 char_u *pstart;
5129 char_u *line;
5130 char_u *prev_pstart;
5131 char_u *prev_pend;
5132
5133 bdp->startspaces = 0;
5134 bdp->endspaces = 0;
5135 bdp->textlen = 0;
5136 bdp->start_vcol = 0;
5137 bdp->end_vcol = 0;
5138#ifdef FEAT_VISUALEXTRA
5139 bdp->is_short = FALSE;
5140 bdp->is_oneChar = FALSE;
5141 bdp->pre_whitesp = 0;
5142 bdp->pre_whitesp_c = 0;
5143 bdp->end_char_vcols = 0;
5144#endif
5145 bdp->start_char_vcols = 0;
5146
5147 line = ml_get(lnum);
5148 pstart = line;
5149 prev_pstart = line;
5150 while (bdp->start_vcol < oap->start_vcol && *pstart)
5151 {
5152 /* Count a tab for what it's worth (if list mode not on) */
5153 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
5154 bdp->start_vcol += incr;
5155#ifdef FEAT_VISUALEXTRA
5156 if (vim_iswhite(*pstart))
5157 {
5158 bdp->pre_whitesp += incr;
5159 bdp->pre_whitesp_c++;
5160 }
5161 else
5162 {
5163 bdp->pre_whitesp = 0;
5164 bdp->pre_whitesp_c = 0;
5165 }
5166#endif
5167 prev_pstart = pstart;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005168 mb_ptr_adv(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 }
5170 bdp->start_char_vcols = incr;
5171 if (bdp->start_vcol < oap->start_vcol) /* line too short */
5172 {
5173 bdp->end_vcol = bdp->start_vcol;
5174#ifdef FEAT_VISUALEXTRA
5175 bdp->is_short = TRUE;
5176#endif
5177 if (!is_del || oap->op_type == OP_APPEND)
5178 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
5179 }
5180 else
5181 {
5182 /* notice: this converts partly selected Multibyte characters to
5183 * spaces, too. */
5184 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
5185 if (is_del && bdp->startspaces)
5186 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
5187 pend = pstart;
5188 bdp->end_vcol = bdp->start_vcol;
5189 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
5190 {
5191#ifdef FEAT_VISUALEXTRA
5192 bdp->is_oneChar = TRUE;
5193#endif
5194 if (oap->op_type == OP_INSERT)
5195 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5196 else if (oap->op_type == OP_APPEND)
5197 {
5198 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
5199 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5200 }
5201 else
5202 {
5203 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
5204 if (is_del && oap->op_type != OP_LSHIFT)
5205 {
5206 /* just putting the sum of those two into
5207 * bdp->startspaces doesn't work for Visual replace,
5208 * so we have to split the tab in two */
5209 bdp->startspaces = bdp->start_char_vcols
5210 - (bdp->start_vcol - oap->start_vcol);
5211 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5212 }
5213 }
5214 }
5215 else
5216 {
5217 prev_pend = pend;
5218 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
5219 {
5220 /* Count a tab for what it's worth (if list mode not on) */
5221 prev_pend = pend;
5222 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
5223 bdp->end_vcol += incr;
5224 }
5225 if (bdp->end_vcol <= oap->end_vcol
5226 && (!is_del
5227 || oap->op_type == OP_APPEND
5228 || oap->op_type == OP_REPLACE)) /* line too short */
5229 {
5230#ifdef FEAT_VISUALEXTRA
5231 bdp->is_short = TRUE;
5232#endif
5233 /* Alternative: include spaces to fill up the block.
5234 * Disadvantage: can lead to trailing spaces when the line is
5235 * short where the text is put */
5236 /* if (!is_del || oap->op_type == OP_APPEND) */
5237 if (oap->op_type == OP_APPEND || virtual_op)
5238 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00005239 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 else
5241 bdp->endspaces = 0; /* replace doesn't add characters */
5242 }
5243 else if (bdp->end_vcol > oap->end_vcol)
5244 {
5245 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5246 if (!is_del && bdp->endspaces)
5247 {
5248 bdp->endspaces = incr - bdp->endspaces;
5249 if (pend != pstart)
5250 pend = prev_pend;
5251 }
5252 }
5253 }
5254#ifdef FEAT_VISUALEXTRA
5255 bdp->end_char_vcols = incr;
5256#endif
5257 if (is_del && bdp->startspaces)
5258 pstart = prev_pstart;
5259 bdp->textlen = (int)(pend - pstart);
5260 }
5261 bdp->textcol = (colnr_T) (pstart - line);
5262 bdp->textstart = pstart;
5263}
5264#endif /* FEAT_VISUAL */
5265
5266#ifdef FEAT_RIGHTLEFT
5267static void reverse_line __ARGS((char_u *s));
5268
5269 static void
5270reverse_line(s)
5271 char_u *s;
5272{
5273 int i, j;
5274 char_u c;
5275
5276 if ((i = (int)STRLEN(s) - 1) <= 0)
5277 return;
5278
5279 curwin->w_cursor.col = i - curwin->w_cursor.col;
5280 for (j = 0; j < i; j++, i--)
5281 {
5282 c = s[i]; s[i] = s[j]; s[j] = c;
5283 }
5284}
5285
5286# define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
5287#else
5288# define RLADDSUBFIX(ptr)
5289#endif
5290
5291/*
5292 * add or subtract 'Prenum1' from a number in a line
5293 * 'command' is CTRL-A for add, CTRL-X for subtract
5294 *
5295 * return FAIL for failure, OK otherwise
5296 */
5297 int
5298do_addsub(command, Prenum1)
5299 int command;
5300 linenr_T Prenum1;
5301{
5302 int col;
5303 char_u *buf1;
5304 char_u buf2[NUMBUFLEN];
5305 int hex; /* 'X' or 'x': hex; '0': octal */
5306 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005307 unsigned long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308 long_u oldn;
5309 char_u *ptr;
5310 int c;
5311 int length = 0; /* character length of the number */
5312 int todel;
5313 int dohex;
5314 int dooct;
5315 int doalp;
5316 int firstdigit;
5317 int negative;
5318 int subtract;
5319
5320 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5321 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
5322 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5323
5324 ptr = ml_get_curline();
5325 RLADDSUBFIX(ptr);
5326
5327 /*
5328 * First check if we are on a hexadecimal number, after the "0x".
5329 */
5330 col = curwin->w_cursor.col;
5331 if (dohex)
5332 while (col > 0 && vim_isxdigit(ptr[col]))
5333 --col;
5334 if ( dohex
5335 && col > 0
5336 && (ptr[col] == 'X'
5337 || ptr[col] == 'x')
5338 && ptr[col - 1] == '0'
5339 && vim_isxdigit(ptr[col + 1]))
5340 {
5341 /*
5342 * Found hexadecimal number, move to its start.
5343 */
5344 --col;
5345 }
5346 else
5347 {
5348 /*
5349 * Search forward and then backward to find the start of number.
5350 */
5351 col = curwin->w_cursor.col;
5352
5353 while (ptr[col] != NUL
5354 && !vim_isdigit(ptr[col])
5355 && !(doalp && ASCII_ISALPHA(ptr[col])))
5356 ++col;
5357
5358 while (col > 0
5359 && vim_isdigit(ptr[col - 1])
5360 && !(doalp && ASCII_ISALPHA(ptr[col])))
5361 --col;
5362 }
5363
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 /*
5365 * If a number was found, and saving for undo works, replace the number.
5366 */
5367 firstdigit = ptr[col];
5368 RLADDSUBFIX(ptr);
5369 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5370 || u_save_cursor() != OK)
5371 {
5372 beep_flush();
5373 return FAIL;
5374 }
5375
5376 /* get ptr again, because u_save() may have changed it */
5377 ptr = ml_get_curline();
5378 RLADDSUBFIX(ptr);
5379
5380 if (doalp && ASCII_ISALPHA(firstdigit))
5381 {
5382 /* decrement or increment alphabetic character */
5383 if (command == Ctrl_X)
5384 {
5385 if (CharOrd(firstdigit) < Prenum1)
5386 {
5387 if (isupper(firstdigit))
5388 firstdigit = 'A';
5389 else
5390 firstdigit = 'a';
5391 }
5392 else
5393#ifdef EBCDIC
5394 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5395#else
5396 firstdigit -= Prenum1;
5397#endif
5398 }
5399 else
5400 {
5401 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5402 {
5403 if (isupper(firstdigit))
5404 firstdigit = 'Z';
5405 else
5406 firstdigit = 'z';
5407 }
5408 else
5409#ifdef EBCDIC
5410 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5411#else
5412 firstdigit += Prenum1;
5413#endif
5414 }
5415 curwin->w_cursor.col = col;
5416 (void)del_char(FALSE);
5417 ins_char(firstdigit);
5418 }
5419 else
5420 {
5421 negative = FALSE;
5422 if (col > 0 && ptr[col - 1] == '-') /* negative number */
5423 {
5424 --col;
5425 negative = TRUE;
5426 }
5427
5428 /* get the number value (unsigned) */
5429 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
5430
5431 /* ignore leading '-' for hex and octal numbers */
5432 if (hex && negative)
5433 {
5434 ++col;
5435 --length;
5436 negative = FALSE;
5437 }
5438
5439 /* add or subtract */
5440 subtract = FALSE;
5441 if (command == Ctrl_X)
5442 subtract ^= TRUE;
5443 if (negative)
5444 subtract ^= TRUE;
5445
5446 oldn = n;
5447 if (subtract)
5448 n -= (unsigned long)Prenum1;
5449 else
5450 n += (unsigned long)Prenum1;
5451
5452 /* handle wraparound for decimal numbers */
5453 if (!hex)
5454 {
5455 if (subtract)
5456 {
5457 if (n > oldn)
5458 {
5459 n = 1 + (n ^ (unsigned long)-1);
5460 negative ^= TRUE;
5461 }
5462 }
5463 else /* add */
5464 {
5465 if (n < oldn)
5466 {
5467 n = (n ^ (unsigned long)-1);
5468 negative ^= TRUE;
5469 }
5470 }
5471 if (n == 0)
5472 negative = FALSE;
5473 }
5474
5475 /*
5476 * Delete the old number.
5477 */
5478 curwin->w_cursor.col = col;
5479 todel = length;
5480 c = gchar_cursor();
5481 /*
5482 * Don't include the '-' in the length, only the length of the part
5483 * after it is kept the same.
5484 */
5485 if (c == '-')
5486 --length;
5487 while (todel-- > 0)
5488 {
5489 if (c < 0x100 && isalpha(c))
5490 {
5491 if (isupper(c))
5492 hexupper = TRUE;
5493 else
5494 hexupper = FALSE;
5495 }
5496 /* del_char() will mark line needing displaying */
5497 (void)del_char(FALSE);
5498 c = gchar_cursor();
5499 }
5500
5501 /*
5502 * Prepare the leading characters in buf1[].
5503 * When there are many leading zeros it could be very long. Allocate
5504 * a bit too much.
5505 */
5506 buf1 = alloc((unsigned)length + NUMBUFLEN);
5507 if (buf1 == NULL)
5508 return FAIL;
5509 ptr = buf1;
5510 if (negative)
5511 {
5512 *ptr++ = '-';
5513 }
5514 if (hex)
5515 {
5516 *ptr++ = '0';
5517 --length;
5518 }
5519 if (hex == 'x' || hex == 'X')
5520 {
5521 *ptr++ = hex;
5522 --length;
5523 }
5524
5525 /*
5526 * Put the number characters in buf2[].
5527 */
5528 if (hex == 0)
5529 sprintf((char *)buf2, "%lu", n);
5530 else if (hex == '0')
5531 sprintf((char *)buf2, "%lo", n);
5532 else if (hex && hexupper)
5533 sprintf((char *)buf2, "%lX", n);
5534 else
5535 sprintf((char *)buf2, "%lx", n);
5536 length -= (int)STRLEN(buf2);
5537
5538 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005539 * Adjust number of zeros to the new number of digits, so the
5540 * total length of the number remains the same.
5541 * Don't do this when
5542 * the result may look like an octal number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005544 if (firstdigit == '0' && !(dooct && hex == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 while (length-- > 0)
5546 *ptr++ = '0';
5547 *ptr = NUL;
5548 STRCAT(buf1, buf2);
5549 ins_str(buf1); /* insert the new number */
5550 vim_free(buf1);
5551 }
5552 --curwin->w_cursor.col;
5553 curwin->w_set_curswant = TRUE;
5554#ifdef FEAT_RIGHTLEFT
5555 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
5556 RLADDSUBFIX(ptr);
5557#endif
5558 return OK;
5559}
5560
5561#ifdef FEAT_VIMINFO
5562 int
5563read_viminfo_register(virp, force)
5564 vir_T *virp;
5565 int force;
5566{
5567 int eof;
5568 int do_it = TRUE;
5569 int size;
5570 int limit;
5571 int i;
5572 int set_prev = FALSE;
5573 char_u *str;
5574 char_u **array = NULL;
5575
5576 /* We only get here (hopefully) if line[0] == '"' */
5577 str = virp->vir_line + 1;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005578
5579 /* If the line starts with "" this is the y_previous register. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580 if (*str == '"')
5581 {
5582 set_prev = TRUE;
5583 str++;
5584 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00005585
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586 if (!ASCII_ISALNUM(*str) && *str != '-')
5587 {
5588 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5589 return TRUE; /* too many errors, pretend end-of-file */
5590 do_it = FALSE;
5591 }
5592 get_yank_register(*str++, FALSE);
5593 if (!force && y_current->y_array != NULL)
5594 do_it = FALSE;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005595
5596 if (*str == '@')
5597 {
5598 /* "x@: register x used for @@ */
5599 if (force || execreg_lastc == NUL)
5600 execreg_lastc = str[-1];
5601 }
5602
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603 size = 0;
5604 limit = 100; /* Optimized for registers containing <= 100 lines */
5605 if (do_it)
5606 {
5607 if (set_prev)
5608 y_previous = y_current;
5609 vim_free(y_current->y_array);
5610 array = y_current->y_array =
5611 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
Bram Moolenaar42b94362009-05-26 16:12:37 +00005612 str = skipwhite(skiptowhite(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613 if (STRNCMP(str, "CHAR", 4) == 0)
5614 y_current->y_type = MCHAR;
5615#ifdef FEAT_VISUAL
5616 else if (STRNCMP(str, "BLOCK", 5) == 0)
5617 y_current->y_type = MBLOCK;
5618#endif
5619 else
5620 y_current->y_type = MLINE;
5621 /* get the block width; if it's missing we get a zero, which is OK */
5622 str = skipwhite(skiptowhite(str));
5623#ifdef FEAT_VISUAL
5624 y_current->y_width = getdigits(&str);
5625#else
5626 (void)getdigits(&str);
5627#endif
5628 }
5629
5630 while (!(eof = viminfo_readline(virp))
5631 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5632 {
5633 if (do_it)
5634 {
5635 if (size >= limit)
5636 {
5637 y_current->y_array = (char_u **)
5638 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
5639 for (i = 0; i < limit; i++)
5640 y_current->y_array[i] = array[i];
5641 vim_free(array);
5642 limit *= 2;
5643 array = y_current->y_array;
5644 }
5645 str = viminfo_readstring(virp, 1, TRUE);
5646 if (str != NULL)
5647 array[size++] = str;
5648 else
5649 do_it = FALSE;
5650 }
5651 }
5652 if (do_it)
5653 {
5654 if (size == 0)
5655 {
5656 vim_free(array);
5657 y_current->y_array = NULL;
5658 }
5659 else if (size < limit)
5660 {
5661 y_current->y_array =
5662 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
5663 for (i = 0; i < size; i++)
5664 y_current->y_array[i] = array[i];
5665 vim_free(array);
5666 }
5667 y_current->y_size = size;
5668 }
5669 return eof;
5670}
5671
5672 void
5673write_viminfo_registers(fp)
5674 FILE *fp;
5675{
5676 int i, j;
5677 char_u *type;
5678 char_u c;
5679 int num_lines;
5680 int max_num_lines;
5681 int max_kbyte;
5682 long len;
5683
Bram Moolenaar64404472010-06-26 06:24:45 +02005684 fputs(_("\n# Registers:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685
5686 /* Get '<' value, use old '"' value if '<' is not found. */
5687 max_num_lines = get_viminfo_parameter('<');
5688 if (max_num_lines < 0)
5689 max_num_lines = get_viminfo_parameter('"');
5690 if (max_num_lines == 0)
5691 return;
5692 max_kbyte = get_viminfo_parameter('s');
5693 if (max_kbyte == 0)
5694 return;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005695
Bram Moolenaar071d4272004-06-13 20:20:40 +00005696 for (i = 0; i < NUM_REGISTERS; i++)
5697 {
5698 if (y_regs[i].y_array == NULL)
5699 continue;
5700#ifdef FEAT_CLIPBOARD
5701 /* Skip '*'/'+' register, we don't want them back next time */
5702 if (i == STAR_REGISTER || i == PLUS_REGISTER)
5703 continue;
5704#endif
5705#ifdef FEAT_DND
5706 /* Neither do we want the '~' register */
5707 if (i == TILDE_REGISTER)
5708 continue;
5709#endif
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005710 /* Skip empty registers. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005711 num_lines = y_regs[i].y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005712 if (num_lines == 0
5713 || (num_lines == 1 && y_regs[i].y_type == MCHAR
Bram Moolenaar64404472010-06-26 06:24:45 +02005714 && *y_regs[i].y_array[0] == NUL))
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005715 continue;
5716
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717 if (max_kbyte > 0)
5718 {
5719 /* Skip register if there is more text than the maximum size. */
5720 len = 0;
5721 for (j = 0; j < num_lines; j++)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005722 len += (long)STRLEN(y_regs[i].y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 if (len > (long)max_kbyte * 1024L)
5724 continue;
5725 }
5726
5727 switch (y_regs[i].y_type)
5728 {
5729 case MLINE:
5730 type = (char_u *)"LINE";
5731 break;
5732 case MCHAR:
5733 type = (char_u *)"CHAR";
5734 break;
5735#ifdef FEAT_VISUAL
5736 case MBLOCK:
5737 type = (char_u *)"BLOCK";
5738 break;
5739#endif
5740 default:
5741 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005742 y_regs[i].y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005743 emsg(IObuff);
5744 type = (char_u *)"LINE";
5745 break;
5746 }
5747 if (y_previous == &y_regs[i])
5748 fprintf(fp, "\"");
5749 c = get_register_name(i);
Bram Moolenaar42b94362009-05-26 16:12:37 +00005750 fprintf(fp, "\"%c", c);
5751 if (c == execreg_lastc)
5752 fprintf(fp, "@");
5753 fprintf(fp, "\t%s\t%d\n", type,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754#ifdef FEAT_VISUAL
5755 (int)y_regs[i].y_width
5756#else
5757 0
5758#endif
5759 );
5760
5761 /* If max_num_lines < 0, then we save ALL the lines in the register */
5762 if (max_num_lines > 0 && num_lines > max_num_lines)
5763 num_lines = max_num_lines;
5764 for (j = 0; j < num_lines; j++)
5765 {
5766 putc('\t', fp);
5767 viminfo_writestring(fp, y_regs[i].y_array[j]);
5768 }
5769 }
5770}
5771#endif /* FEAT_VIMINFO */
5772
5773#if defined(FEAT_CLIPBOARD) || defined(PROTO)
5774/*
5775 * SELECTION / PRIMARY ('*')
5776 *
5777 * Text selection stuff that uses the GUI selection register '*'. When using a
5778 * GUI this may be text from another window, otherwise it is the last text we
5779 * had highlighted with VIsual mode. With mouse support, clicking the middle
5780 * button performs the paste, otherwise you will need to do <"*p>. "
5781 * If not under X, it is synonymous with the clipboard register '+'.
5782 *
5783 * X CLIPBOARD ('+')
5784 *
5785 * Text selection stuff that uses the GUI clipboard register '+'.
5786 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5787 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5788 * otherwise you will need to do <"+p>. "
5789 * If not under X, it is synonymous with the selection register '*'.
5790 */
5791
5792/*
5793 * Routine to export any final X selection we had to the environment
5794 * so that the text is still available after vim has exited. X selections
5795 * only exist while the owning application exists, so we write to the
5796 * permanent (while X runs) store CUT_BUFFER0.
5797 * Dump the CLIPBOARD selection if we own it (it's logically the more
5798 * 'permanent' of the two), otherwise the PRIMARY one.
5799 * For now, use a hard-coded sanity limit of 1Mb of data.
5800 */
5801#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5802 void
5803x11_export_final_selection()
5804{
5805 Display *dpy;
5806 char_u *str = NULL;
5807 long_u len = 0;
5808 int motion_type = -1;
5809
5810# ifdef FEAT_GUI
5811 if (gui.in_use)
5812 dpy = X_DISPLAY;
5813 else
5814# endif
5815# ifdef FEAT_XCLIPBOARD
5816 dpy = xterm_dpy;
5817# else
5818 return;
5819# endif
5820
5821 /* Get selection to export */
5822 if (clip_plus.owned)
5823 motion_type = clip_convert_selection(&str, &len, &clip_plus);
5824 else if (clip_star.owned)
5825 motion_type = clip_convert_selection(&str, &len, &clip_star);
5826
5827 /* Check it's OK */
5828 if (dpy != NULL && str != NULL && motion_type >= 0
5829 && len < 1024*1024 && len > 0)
5830 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005831#ifdef FEAT_MBYTE
Bram Moolenaare2e663f2013-03-07 18:02:30 +01005832 int ok = TRUE;
5833
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005834 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
5835 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
5836 * encoding conversion usually doesn't work, so keep the text as-is.
5837 */
5838 if (has_mbyte)
5839 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005840 vimconv_T vc;
5841
5842 vc.vc_type = CONV_NONE;
5843 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
5844 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01005845 int intlen = len;
5846 char_u *conv_str;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00005847
Bram Moolenaare2e663f2013-03-07 18:02:30 +01005848 vc.vc_fail = TRUE;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00005849 conv_str = string_convert(&vc, str, &intlen);
5850 len = intlen;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005851 if (conv_str != NULL)
5852 {
5853 vim_free(str);
5854 str = conv_str;
5855 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01005856 else
5857 {
5858 ok = FALSE;
5859 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005860 convert_setup(&vc, NULL, NULL);
5861 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01005862 else
5863 {
5864 ok = FALSE;
5865 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005866 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01005867
5868 /* Do not store the string if conversion failed. Better to use any
5869 * other selection than garbled text. */
5870 if (ok)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005871#endif
Bram Moolenaare2e663f2013-03-07 18:02:30 +01005872 {
5873 XStoreBuffer(dpy, (char *)str, (int)len, 0);
5874 XFlush(dpy);
5875 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876 }
5877
5878 vim_free(str);
5879}
5880#endif
5881
5882 void
5883clip_free_selection(cbd)
5884 VimClipboard *cbd;
5885{
5886 struct yankreg *y_ptr = y_current;
5887
5888 if (cbd == &clip_plus)
5889 y_current = &y_regs[PLUS_REGISTER];
5890 else
5891 y_current = &y_regs[STAR_REGISTER];
5892 free_yank_all();
5893 y_current->y_size = 0;
5894 y_current = y_ptr;
5895}
5896
5897/*
5898 * Get the selected text and put it in the gui selection register '*' or '+'.
5899 */
5900 void
5901clip_get_selection(cbd)
5902 VimClipboard *cbd;
5903{
5904 struct yankreg *old_y_previous, *old_y_current;
5905 pos_T old_cursor;
5906#ifdef FEAT_VISUAL
5907 pos_T old_visual;
5908 int old_visual_mode;
5909#endif
5910 colnr_T old_curswant;
5911 int old_set_curswant;
5912 pos_T old_op_start, old_op_end;
5913 oparg_T oa;
5914 cmdarg_T ca;
5915
5916 if (cbd->owned)
5917 {
5918 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
5919 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
5920 return;
5921
5922 /* Get the text between clip_star.start & clip_star.end */
5923 old_y_previous = y_previous;
5924 old_y_current = y_current;
5925 old_cursor = curwin->w_cursor;
5926 old_curswant = curwin->w_curswant;
5927 old_set_curswant = curwin->w_set_curswant;
5928 old_op_start = curbuf->b_op_start;
5929 old_op_end = curbuf->b_op_end;
5930#ifdef FEAT_VISUAL
5931 old_visual = VIsual;
5932 old_visual_mode = VIsual_mode;
5933#endif
5934 clear_oparg(&oa);
5935 oa.regname = (cbd == &clip_plus ? '+' : '*');
5936 oa.op_type = OP_YANK;
5937 vim_memset(&ca, 0, sizeof(ca));
5938 ca.oap = &oa;
5939 ca.cmdchar = 'y';
5940 ca.count1 = 1;
5941 ca.retval = CA_NO_ADJ_OP_END;
5942 do_pending_operator(&ca, 0, TRUE);
5943 y_previous = old_y_previous;
5944 y_current = old_y_current;
5945 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005946 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947 curwin->w_curswant = old_curswant;
5948 curwin->w_set_curswant = old_set_curswant;
5949 curbuf->b_op_start = old_op_start;
5950 curbuf->b_op_end = old_op_end;
5951#ifdef FEAT_VISUAL
5952 VIsual = old_visual;
5953 VIsual_mode = old_visual_mode;
5954#endif
5955 }
5956 else
5957 {
5958 clip_free_selection(cbd);
5959
5960 /* Try to get selected text from another window */
5961 clip_gen_request_selection(cbd);
5962 }
5963}
5964
Bram Moolenaard44347f2011-06-19 01:14:29 +02005965/*
5966 * Convert from the GUI selection string into the '*'/'+' register.
5967 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968 void
5969clip_yank_selection(type, str, len, cbd)
5970 int type;
5971 char_u *str;
5972 long len;
5973 VimClipboard *cbd;
5974{
5975 struct yankreg *y_ptr;
5976
5977 if (cbd == &clip_plus)
5978 y_ptr = &y_regs[PLUS_REGISTER];
5979 else
5980 y_ptr = &y_regs[STAR_REGISTER];
5981
5982 clip_free_selection(cbd);
5983
5984 str_to_reg(y_ptr, type, str, len, 0L);
5985}
5986
5987/*
5988 * Convert the '*'/'+' register into a GUI selection string returned in *str
5989 * with length *len.
5990 * Returns the motion type, or -1 for failure.
5991 */
5992 int
5993clip_convert_selection(str, len, cbd)
5994 char_u **str;
5995 long_u *len;
5996 VimClipboard *cbd;
5997{
5998 char_u *p;
5999 int lnum;
6000 int i, j;
6001 int_u eolsize;
6002 struct yankreg *y_ptr;
6003
6004 if (cbd == &clip_plus)
6005 y_ptr = &y_regs[PLUS_REGISTER];
6006 else
6007 y_ptr = &y_regs[STAR_REGISTER];
6008
6009#ifdef USE_CRNL
6010 eolsize = 2;
6011#else
6012 eolsize = 1;
6013#endif
6014
6015 *str = NULL;
6016 *len = 0;
6017 if (y_ptr->y_array == NULL)
6018 return -1;
6019
6020 for (i = 0; i < y_ptr->y_size; i++)
6021 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
6022
6023 /*
6024 * Don't want newline character at end of last line if we're in MCHAR mode.
6025 */
6026 if (y_ptr->y_type == MCHAR && *len >= eolsize)
6027 *len -= eolsize;
6028
6029 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
6030 if (p == NULL)
6031 return -1;
6032 lnum = 0;
6033 for (i = 0, j = 0; i < (int)*len; i++, j++)
6034 {
6035 if (y_ptr->y_array[lnum][j] == '\n')
6036 p[i] = NUL;
6037 else if (y_ptr->y_array[lnum][j] == NUL)
6038 {
6039#ifdef USE_CRNL
6040 p[i++] = '\r';
6041#endif
6042#ifdef USE_CR
6043 p[i] = '\r';
6044#else
6045 p[i] = '\n';
6046#endif
6047 lnum++;
6048 j = -1;
6049 }
6050 else
6051 p[i] = y_ptr->y_array[lnum][j];
6052 }
6053 return y_ptr->y_type;
6054}
6055
6056
6057# if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
6058/*
6059 * If we have written to a clipboard register, send the text to the clipboard.
6060 */
6061 static void
6062may_set_selection()
6063{
6064 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
6065 {
6066 clip_own_selection(&clip_star);
6067 clip_gen_set_selection(&clip_star);
6068 }
6069 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
6070 {
6071 clip_own_selection(&clip_plus);
6072 clip_gen_set_selection(&clip_plus);
6073 }
6074}
6075# endif
6076
6077#endif /* FEAT_CLIPBOARD || PROTO */
6078
6079
6080#if defined(FEAT_DND) || defined(PROTO)
6081/*
6082 * Replace the contents of the '~' register with str.
6083 */
6084 void
6085dnd_yank_drag_data(str, len)
6086 char_u *str;
6087 long len;
6088{
6089 struct yankreg *curr;
6090
6091 curr = y_current;
6092 y_current = &y_regs[TILDE_REGISTER];
6093 free_yank_all();
6094 str_to_reg(y_current, MCHAR, str, len, 0L);
6095 y_current = curr;
6096}
6097#endif
6098
6099
6100#if defined(FEAT_EVAL) || defined(PROTO)
6101/*
6102 * Return the type of a register.
6103 * Used for getregtype()
6104 * Returns MAUTO for error.
6105 */
6106 char_u
6107get_reg_type(regname, reglen)
6108 int regname;
6109 long *reglen;
6110{
6111 switch (regname)
6112 {
6113 case '%': /* file name */
6114 case '#': /* alternate file name */
6115 case '=': /* expression */
6116 case ':': /* last command line */
6117 case '/': /* last search-pattern */
6118 case '.': /* last inserted text */
6119#ifdef FEAT_SEARCHPATH
6120 case Ctrl_F: /* Filename under cursor */
6121 case Ctrl_P: /* Path under cursor, expand via "path" */
6122#endif
6123 case Ctrl_W: /* word under cursor */
6124 case Ctrl_A: /* WORD (mnemonic All) under cursor */
6125 case '_': /* black hole: always empty */
6126 return MCHAR;
6127 }
6128
6129#ifdef FEAT_CLIPBOARD
6130 regname = may_get_selection(regname);
6131#endif
6132
6133 /* Should we check for a valid name? */
6134 get_yank_register(regname, FALSE);
6135
6136 if (y_current->y_array != NULL)
6137 {
6138#ifdef FEAT_VISUAL
6139 if (reglen != NULL && y_current->y_type == MBLOCK)
6140 *reglen = y_current->y_width;
6141#endif
6142 return y_current->y_type;
6143 }
6144 return MAUTO;
6145}
6146
6147/*
6148 * Return the contents of a register as a single allocated string.
6149 * Used for "@r" in expressions and for getreg().
6150 * Returns NULL for error.
6151 */
6152 char_u *
Bram Moolenaarde934d72005-05-22 22:09:40 +00006153get_reg_contents(regname, allowexpr, expr_src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154 int regname;
Bram Moolenaarde934d72005-05-22 22:09:40 +00006155 int allowexpr; /* allow "=" register */
6156 int expr_src; /* get expression for "=" register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157{
6158 long i;
6159 char_u *retval;
6160 int allocated;
6161 long len;
6162
6163 /* Don't allow using an expression register inside an expression */
6164 if (regname == '=')
6165 {
6166 if (allowexpr)
Bram Moolenaarde934d72005-05-22 22:09:40 +00006167 {
6168 if (expr_src)
6169 return get_expr_line_src();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170 return get_expr_line();
Bram Moolenaarde934d72005-05-22 22:09:40 +00006171 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006172 return NULL;
6173 }
6174
6175 if (regname == '@') /* "@@" is used for unnamed register */
6176 regname = '"';
6177
6178 /* check for valid regname */
6179 if (regname != NUL && !valid_yank_reg(regname, FALSE))
6180 return NULL;
6181
6182#ifdef FEAT_CLIPBOARD
6183 regname = may_get_selection(regname);
6184#endif
6185
6186 if (get_spec_reg(regname, &retval, &allocated, FALSE))
6187 {
6188 if (retval == NULL)
6189 return NULL;
6190 if (!allocated)
6191 retval = vim_strsave(retval);
6192 return retval;
6193 }
6194
6195 get_yank_register(regname, FALSE);
6196 if (y_current->y_array == NULL)
6197 return NULL;
6198
6199 /*
6200 * Compute length of resulting string.
6201 */
6202 len = 0;
6203 for (i = 0; i < y_current->y_size; ++i)
6204 {
6205 len += (long)STRLEN(y_current->y_array[i]);
6206 /*
6207 * Insert a newline between lines and after last line if
6208 * y_type is MLINE.
6209 */
6210 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6211 ++len;
6212 }
6213
6214 retval = lalloc(len + 1, TRUE);
6215
6216 /*
6217 * Copy the lines of the yank register into the string.
6218 */
6219 if (retval != NULL)
6220 {
6221 len = 0;
6222 for (i = 0; i < y_current->y_size; ++i)
6223 {
6224 STRCPY(retval + len, y_current->y_array[i]);
6225 len += (long)STRLEN(retval + len);
6226
6227 /*
6228 * Insert a NL between lines and after the last line if y_type is
6229 * MLINE.
6230 */
6231 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6232 retval[len++] = '\n';
6233 }
6234 retval[len] = NUL;
6235 }
6236
6237 return retval;
6238}
6239
6240/*
6241 * Store string "str" in register "name".
6242 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
6243 * If "must_append" is TRUE, always append to the register. Otherwise append
6244 * if "name" is an uppercase letter.
6245 * Note: "maxlen" and "must_append" don't work for the "/" register.
6246 * Careful: 'str' is modified, you may have to use a copy!
6247 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
6248 */
6249 void
6250write_reg_contents(name, str, maxlen, must_append)
6251 int name;
6252 char_u *str;
6253 int maxlen;
6254 int must_append;
6255{
6256 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
6257}
6258
6259 void
6260write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
6261 int name;
6262 char_u *str;
6263 int maxlen;
6264 int must_append;
6265 int yank_type;
6266 long block_len;
6267{
6268 struct yankreg *old_y_previous, *old_y_current;
6269 long len;
6270
Bram Moolenaare7566042005-06-17 22:00:15 +00006271 if (maxlen >= 0)
6272 len = maxlen;
6273 else
6274 len = (long)STRLEN(str);
6275
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276 /* Special case: '/' search pattern */
6277 if (name == '/')
6278 {
6279 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
6280 return;
6281 }
6282
Bram Moolenaare7566042005-06-17 22:00:15 +00006283#ifdef FEAT_EVAL
6284 if (name == '=')
6285 {
6286 char_u *p, *s;
6287
6288 p = vim_strnsave(str, (int)len);
6289 if (p == NULL)
6290 return;
6291 if (must_append)
6292 {
6293 s = concat_str(get_expr_line_src(), p);
6294 vim_free(p);
6295 p = s;
6296
6297 }
6298 set_expr_line(p);
6299 return;
6300 }
6301#endif
6302
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6304 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006305 emsg_invreg(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306 return;
6307 }
6308
6309 if (name == '_') /* black hole: nothing to do */
6310 return;
6311
6312 /* Don't want to change the current (unnamed) register */
6313 old_y_previous = y_previous;
6314 old_y_current = y_current;
6315
6316 get_yank_register(name, TRUE);
6317 if (!y_append && !must_append)
6318 free_yank_all();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006319#ifndef FEAT_VISUAL
6320 /* Just in case - make sure we don't use MBLOCK */
6321 if (yank_type == MBLOCK)
6322 yank_type = MAUTO;
6323#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324 str_to_reg(y_current, yank_type, str, len, block_len);
6325
6326# ifdef FEAT_CLIPBOARD
6327 /* Send text of clipboard register to the clipboard. */
6328 may_set_selection();
6329# endif
6330
6331 /* ':let @" = "val"' should change the meaning of the "" register */
6332 if (name != '"')
6333 y_previous = old_y_previous;
6334 y_current = old_y_current;
6335}
6336#endif /* FEAT_EVAL */
6337
6338#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6339/*
6340 * Put a string into a register. When the register is not empty, the string
6341 * is appended.
6342 */
6343 static void
Bram Moolenaard44347f2011-06-19 01:14:29 +02006344str_to_reg(y_ptr, yank_type, str, len, blocklen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006345 struct yankreg *y_ptr; /* pointer to yank register */
Bram Moolenaard44347f2011-06-19 01:14:29 +02006346 int yank_type; /* MCHAR, MLINE, MBLOCK, MAUTO */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347 char_u *str; /* string to put in register */
6348 long len; /* length of string */
6349 long blocklen; /* width of Visual block */
6350{
Bram Moolenaard44347f2011-06-19 01:14:29 +02006351 int type; /* MCHAR, MLINE or MBLOCK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006352 int lnum;
6353 long start;
6354 long i;
6355 int extra;
6356 int newlines; /* number of lines added */
6357 int extraline = 0; /* extra line at the end */
6358 int append = FALSE; /* append to last line in register */
6359 char_u *s;
6360 char_u **pp;
6361#ifdef FEAT_VISUAL
6362 long maxlen;
6363#endif
6364
Bram Moolenaarcde547a2009-11-17 11:43:06 +00006365 if (y_ptr->y_array == NULL) /* NULL means empty register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366 y_ptr->y_size = 0;
6367
Bram Moolenaard44347f2011-06-19 01:14:29 +02006368 if (yank_type == MAUTO)
6369 type = ((len > 0 && (str[len - 1] == NL || str[len - 1] == CAR))
6370 ? MLINE : MCHAR);
6371 else
6372 type = yank_type;
6373
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374 /*
6375 * Count the number of lines within the string
6376 */
6377 newlines = 0;
6378 for (i = 0; i < len; i++)
6379 if (str[i] == '\n')
6380 ++newlines;
6381 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
6382 {
6383 extraline = 1;
6384 ++newlines; /* count extra newline at the end */
6385 }
6386 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
6387 {
6388 append = TRUE;
6389 --newlines; /* uncount newline when appending first line */
6390 }
6391
6392 /*
6393 * Allocate an array to hold the pointers to the new register lines.
6394 * If the register was not empty, move the existing lines to the new array.
6395 */
6396 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
6397 * sizeof(char_u *), TRUE);
6398 if (pp == NULL) /* out of memory */
6399 return;
6400 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
6401 pp[lnum] = y_ptr->y_array[lnum];
6402 vim_free(y_ptr->y_array);
6403 y_ptr->y_array = pp;
6404#ifdef FEAT_VISUAL
6405 maxlen = 0;
6406#endif
6407
6408 /*
6409 * Find the end of each line and save it into the array.
6410 */
6411 for (start = 0; start < len + extraline; start += i + 1)
6412 {
6413 for (i = start; i < len; ++i) /* find the end of the line */
6414 if (str[i] == '\n')
6415 break;
6416 i -= start; /* i is now length of line */
6417#ifdef FEAT_VISUAL
6418 if (i > maxlen)
6419 maxlen = i;
6420#endif
6421 if (append)
6422 {
6423 --lnum;
6424 extra = (int)STRLEN(y_ptr->y_array[lnum]);
6425 }
6426 else
6427 extra = 0;
6428 s = alloc((unsigned)(i + extra + 1));
6429 if (s == NULL)
6430 break;
6431 if (extra)
6432 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
6433 if (append)
6434 vim_free(y_ptr->y_array[lnum]);
6435 if (i)
6436 mch_memmove(s + extra, str + start, (size_t)i);
6437 extra += i;
6438 s[extra] = NUL;
6439 y_ptr->y_array[lnum++] = s;
6440 while (--extra >= 0)
6441 {
6442 if (*s == NUL)
6443 *s = '\n'; /* replace NUL with newline */
6444 ++s;
6445 }
6446 append = FALSE; /* only first line is appended */
6447 }
6448 y_ptr->y_type = type;
6449 y_ptr->y_size = lnum;
6450# ifdef FEAT_VISUAL
6451 if (type == MBLOCK)
6452 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
6453 else
6454 y_ptr->y_width = 0;
6455# endif
6456}
6457#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
6458
6459 void
6460clear_oparg(oap)
6461 oparg_T *oap;
6462{
6463 vim_memset(oap, 0, sizeof(oparg_T));
6464}
6465
Bram Moolenaar7c626922005-02-07 22:01:03 +00006466static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006467
6468/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00006469 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006470 *
6471 * "Words" are counted by looking for boundaries between non-space and
6472 * space characters. (it seems to produce results that match 'wc'.)
6473 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00006474 * Return value is byte count; word count for the line is added to "*wc".
6475 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006476 *
6477 * The function will only examine the first "limit" characters in the
6478 * line, stopping if it encounters an end-of-line (NUL byte). In that
6479 * case, eol_size will be added to the character count to account for
6480 * the size of the EOL character.
6481 */
6482 static long
Bram Moolenaar7c626922005-02-07 22:01:03 +00006483line_count_info(line, wc, cc, limit, eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 char_u *line;
6485 long *wc;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006486 long *cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487 long limit;
6488 int eol_size;
6489{
Bram Moolenaar7c626922005-02-07 22:01:03 +00006490 long i;
6491 long words = 0;
6492 long chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493 int is_word = 0;
6494
Bram Moolenaar88b1ba12012-06-29 13:34:19 +02006495 for (i = 0; i < limit && line[i] != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006496 {
6497 if (is_word)
6498 {
6499 if (vim_isspace(line[i]))
6500 {
6501 words++;
6502 is_word = 0;
6503 }
6504 }
6505 else if (!vim_isspace(line[i]))
6506 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006507 ++chars;
6508#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006509 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00006510#else
6511 ++i;
6512#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006513 }
6514
6515 if (is_word)
6516 words++;
6517 *wc += words;
6518
6519 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar1cb7e092011-08-10 12:11:01 +02006520 if (i < limit && line[i] == NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006521 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006523 chars += eol_size;
6524 }
6525 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006526 return i;
6527}
6528
6529/*
6530 * Give some info about the position of the cursor (for "g CTRL-G").
6531 * In Visual mode, give some info about the selected region. (In this case,
6532 * the *_count_cursor variables store running totals for the selection.)
6533 */
6534 void
6535cursor_pos_info()
6536{
6537 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006538 char_u buf1[50];
6539 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006540 linenr_T lnum;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006541 long byte_count = 0;
6542 long byte_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006543 long char_count = 0;
6544 long char_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006545 long word_count = 0;
6546 long word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006547 int eol_size;
6548 long last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006549#ifdef FEAT_VISUAL
6550 long line_count_selected = 0;
6551 pos_T min_pos, max_pos;
6552 oparg_T oparg;
6553 struct block_def bd;
6554#endif
6555
6556 /*
6557 * Compute the length of the file in characters.
6558 */
6559 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6560 {
6561 MSG(_(no_lines_msg));
6562 }
6563 else
6564 {
6565 if (get_fileformat(curbuf) == EOL_DOS)
6566 eol_size = 2;
6567 else
6568 eol_size = 1;
6569
6570#ifdef FEAT_VISUAL
6571 if (VIsual_active)
6572 {
6573 if (lt(VIsual, curwin->w_cursor))
6574 {
6575 min_pos = VIsual;
6576 max_pos = curwin->w_cursor;
6577 }
6578 else
6579 {
6580 min_pos = curwin->w_cursor;
6581 max_pos = VIsual;
6582 }
6583 if (*p_sel == 'e' && max_pos.col > 0)
6584 --max_pos.col;
6585
6586 if (VIsual_mode == Ctrl_V)
6587 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00006588#ifdef FEAT_LINEBREAK
6589 char_u * saved_sbr = p_sbr;
6590
6591 /* Make 'sbr' empty for a moment to get the correct size. */
6592 p_sbr = empty_option;
6593#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006594 oparg.is_VIsual = 1;
6595 oparg.block_mode = TRUE;
6596 oparg.op_type = OP_NOP;
6597 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006598 &oparg.start_vcol, &oparg.end_vcol);
Bram Moolenaar81d00072009-04-29 15:41:40 +00006599#ifdef FEAT_LINEBREAK
6600 p_sbr = saved_sbr;
6601#endif
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006602 if (curwin->w_curswant == MAXCOL)
6603 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006604 /* Swap the start, end vcol if needed */
6605 if (oparg.end_vcol < oparg.start_vcol)
6606 {
6607 oparg.end_vcol += oparg.start_vcol;
6608 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
6609 oparg.end_vcol -= oparg.start_vcol;
6610 }
6611 }
6612 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
6613 }
6614#endif
6615
6616 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6617 {
6618 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006619 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006620 {
6621 ui_breakcheck();
6622 if (got_int)
6623 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006624 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006625 }
6626
6627#ifdef FEAT_VISUAL
6628 /* Do extra processing for VIsual mode. */
6629 if (VIsual_active
6630 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
6631 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00006632 char_u *s = NULL;
6633 long len = 0L;
6634
Bram Moolenaar071d4272004-06-13 20:20:40 +00006635 switch (VIsual_mode)
6636 {
6637 case Ctrl_V:
6638# ifdef FEAT_VIRTUALEDIT
6639 virtual_op = virtual_active();
6640# endif
6641 block_prep(&oparg, &bd, lnum, 0);
6642# ifdef FEAT_VIRTUALEDIT
6643 virtual_op = MAYBE;
6644# endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00006645 s = bd.textstart;
6646 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006647 break;
6648 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00006649 s = ml_get(lnum);
6650 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651 break;
6652 case 'v':
6653 {
6654 colnr_T start_col = (lnum == min_pos.lnum)
6655 ? min_pos.col : 0;
6656 colnr_T end_col = (lnum == max_pos.lnum)
6657 ? max_pos.col - start_col + 1 : MAXCOL;
6658
Bram Moolenaardef9e822004-12-31 20:58:58 +00006659 s = ml_get(lnum) + start_col;
6660 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661 }
6662 break;
6663 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00006664 if (s != NULL)
6665 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00006666 byte_count_cursor += line_count_info(s, &word_count_cursor,
6667 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00006668 if (lnum == curbuf->b_ml.ml_line_count
6669 && !curbuf->b_p_eol
6670 && curbuf->b_p_bin
Bram Moolenaarec2dad62005-01-02 11:36:03 +00006671 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006672 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00006673 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006674 }
6675 else
6676#endif
6677 {
6678 /* In non-visual mode, check for the line the cursor is on */
6679 if (lnum == curwin->w_cursor.lnum)
6680 {
6681 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006682 char_count_cursor += char_count;
6683 byte_count_cursor = byte_count +
6684 line_count_info(ml_get(lnum),
6685 &word_count_cursor, &char_count_cursor,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006686 (long)(curwin->w_cursor.col + 1), eol_size);
6687 }
6688 }
6689 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006690 byte_count += line_count_info(ml_get(lnum), &word_count,
6691 &char_count, (long)MAXCOL, eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006692 }
6693
6694 /* Correction for when last line doesn't have an EOL. */
6695 if (!curbuf->b_p_eol && curbuf->b_p_bin)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006696 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006697
6698#ifdef FEAT_VISUAL
6699 if (VIsual_active)
6700 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006701 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006702 {
6703 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006704 &max_pos.col);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006705 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006706 (long)(oparg.end_vcol - oparg.start_vcol + 1));
6707 }
6708 else
6709 buf1[0] = NUL;
6710
Bram Moolenaar7c626922005-02-07 22:01:03 +00006711 if (char_count_cursor == byte_count_cursor
Bram Moolenaar555b2802005-05-19 21:08:39 +00006712 && char_count == byte_count)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006713 vim_snprintf((char *)IObuff, IOSIZE,
6714 _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006715 buf1, line_count_selected,
6716 (long)curbuf->b_ml.ml_line_count,
6717 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006718 byte_count_cursor, byte_count);
6719 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006720 vim_snprintf((char *)IObuff, IOSIZE,
6721 _("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 +00006722 buf1, line_count_selected,
6723 (long)curbuf->b_ml.ml_line_count,
6724 word_count_cursor, word_count,
6725 char_count_cursor, char_count,
6726 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006727 }
6728 else
6729#endif
6730 {
6731 p = ml_get_curline();
6732 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006733 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734 (int)curwin->w_virtcol + 1);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006735 col_print(buf2, sizeof(buf2), (int)STRLEN(p), linetabsize(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006736
Bram Moolenaar7c626922005-02-07 22:01:03 +00006737 if (char_count_cursor == byte_count_cursor
6738 && char_count == byte_count)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006739 vim_snprintf((char *)IObuff, IOSIZE,
6740 _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741 (char *)buf1, (char *)buf2,
6742 (long)curwin->w_cursor.lnum,
6743 (long)curbuf->b_ml.ml_line_count,
6744 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006745 byte_count_cursor, byte_count);
6746 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006747 vim_snprintf((char *)IObuff, IOSIZE,
6748 _("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 +00006749 (char *)buf1, (char *)buf2,
6750 (long)curwin->w_cursor.lnum,
6751 (long)curbuf->b_ml.ml_line_count,
6752 word_count_cursor, word_count,
6753 char_count_cursor, char_count,
6754 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006755 }
6756
6757#ifdef FEAT_MBYTE
Bram Moolenaar7c626922005-02-07 22:01:03 +00006758 byte_count = bomb_size();
6759 if (byte_count > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006760 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
Bram Moolenaar7c626922005-02-07 22:01:03 +00006761 byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762#endif
6763 /* Don't shorten this message, the user asked for it. */
6764 p = p_shm;
6765 p_shm = (char_u *)"";
6766 msg(IObuff);
6767 p_shm = p;
6768 }
6769}