blob: bf651918999856f86f0e676d5ee5615dc1d89c7b [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);
Bram Moolenaar2b79bfd2013-07-13 16:34:32 +0200270#ifdef FEAT_FOLDING
271 /* The cursor line is not in a closed fold */
272 foldOpenCursor();
273#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274
275#ifdef FEAT_VISUAL
276 if (oap->block_mode)
277 {
278 curwin->w_cursor.lnum = oap->start.lnum;
279 curwin->w_cursor.col = block_col;
280 }
281 else
282#endif
283 if (curs_top) /* put cursor on first line, for ">>" */
284 {
285 curwin->w_cursor.lnum = oap->start.lnum;
286 beginline(BL_SOL | BL_FIX); /* shift_line() may have set cursor.col */
287 }
288 else
289 --curwin->w_cursor.lnum; /* put cursor on last line, for ":>" */
290
291 if (oap->line_count > p_report)
292 {
293 if (oap->op_type == OP_RSHIFT)
294 s = (char_u *)">";
295 else
296 s = (char_u *)"<";
297 if (oap->line_count == 1)
298 {
299 if (amount == 1)
300 sprintf((char *)IObuff, _("1 line %sed 1 time"), s);
301 else
302 sprintf((char *)IObuff, _("1 line %sed %d times"), s, amount);
303 }
304 else
305 {
306 if (amount == 1)
307 sprintf((char *)IObuff, _("%ld lines %sed 1 time"),
308 oap->line_count, s);
309 else
310 sprintf((char *)IObuff, _("%ld lines %sed %d times"),
311 oap->line_count, s, amount);
312 }
313 msg(IObuff);
314 }
315
316 /*
317 * Set "'[" and "']" marks.
318 */
319 curbuf->b_op_start = oap->start;
320 curbuf->b_op_end.lnum = oap->end.lnum;
321 curbuf->b_op_end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
322 if (curbuf->b_op_end.col > 0)
323 --curbuf->b_op_end.col;
324}
325
326/*
327 * shift the current line one shiftwidth left (if left != 0) or right
328 * leaves cursor on first blank in the line
329 */
330 void
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000331shift_line(left, round, amount, call_changed_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332 int left;
333 int round;
334 int amount;
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000335 int call_changed_bytes; /* call changed_bytes() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336{
337 int count;
338 int i, j;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100339 int p_sw = (int)get_sw_value(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340
341 count = get_indent(); /* get current indent */
342
343 if (round) /* round off indent */
344 {
345 i = count / p_sw; /* number of p_sw rounded down */
346 j = count % p_sw; /* extra spaces */
347 if (j && left) /* first remove extra spaces */
348 --amount;
349 if (left)
350 {
351 i -= amount;
352 if (i < 0)
353 i = 0;
354 }
355 else
356 i += amount;
357 count = i * p_sw;
358 }
359 else /* original vi indent */
360 {
361 if (left)
362 {
363 count -= p_sw * amount;
364 if (count < 0)
365 count = 0;
366 }
367 else
368 count += p_sw * amount;
369 }
370
371 /* Set new indent */
372#ifdef FEAT_VREPLACE
373 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000374 change_indent(INDENT_SET, count, FALSE, NUL, call_changed_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 else
376#endif
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000377 (void)set_indent(count, call_changed_bytes ? SIN_CHANGED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378}
379
380#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
381/*
382 * Shift one line of the current block one shiftwidth right or left.
383 * Leaves cursor on first character in block.
384 */
385 static void
386shift_block(oap, amount)
387 oparg_T *oap;
388 int amount;
389{
390 int left = (oap->op_type == OP_LSHIFT);
391 int oldstate = State;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000392 int total;
393 char_u *newp, *oldp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 int oldcol = curwin->w_cursor.col;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100395 int p_sw = (int)get_sw_value(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 int p_ts = (int)curbuf->b_p_ts;
397 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 int incr;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000399 colnr_T ws_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 int i = 0, j = 0;
401 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402#ifdef FEAT_RIGHTLEFT
403 int old_p_ri = p_ri;
404
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200405 p_ri = 0; /* don't want revins in indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406#endif
407
408 State = INSERT; /* don't want REPLACE for State */
409 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
410 if (bd.is_short)
411 return;
412
413 /* total is number of screen columns to be inserted/removed */
414 total = amount * p_sw;
415 oldp = ml_get_curline();
416
417 if (!left)
418 {
419 /*
420 * 1. Get start vcol
421 * 2. Total ws vcols
422 * 3. Divvy into TABs & spp
423 * 4. Construct new string
424 */
425 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
426 ws_vcol = bd.start_vcol - bd.pre_whitesp;
427 if (bd.startspaces)
428 {
429#ifdef FEAT_MBYTE
430 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000431 bd.textstart += (*mb_ptr2len)(bd.textstart);
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000432 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433#endif
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000434 ++bd.textstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435 }
436 for ( ; vim_iswhite(*bd.textstart); )
437 {
438 incr = lbr_chartabsize_adv(&bd.textstart, (colnr_T)(bd.start_vcol));
439 total += incr;
440 bd.start_vcol += incr;
441 }
442 /* OK, now total=all the VWS reqd, and textstart points at the 1st
443 * non-ws char in the block. */
444 if (!curbuf->b_p_et)
445 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
446 if (i)
447 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
448 else
449 j = total;
450 /* if we're splitting a TAB, allow for it */
451 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
452 len = (int)STRLEN(bd.textstart) + 1;
453 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
454 if (newp == NULL)
455 return;
456 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
457 mch_memmove(newp, oldp, (size_t)bd.textcol);
458 copy_chars(newp + bd.textcol, (size_t)i, TAB);
459 copy_spaces(newp + bd.textcol + i, (size_t)j);
460 /* the end */
461 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
462 }
463 else /* left */
464 {
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000465 colnr_T destination_col; /* column to which text in block will
466 be shifted */
467 char_u *verbatim_copy_end; /* end of the part of the line which is
468 copied verbatim */
469 colnr_T verbatim_copy_width;/* the (displayed) width of this part
470 of line */
471 unsigned fill; /* nr of spaces that replace a TAB */
472 unsigned new_line_len; /* the length of the line after the
473 block shift */
474 size_t block_space_width;
475 size_t shift_amount;
476 char_u *non_white = bd.textstart;
477 colnr_T non_white_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000479 /*
480 * Firstly, let's find the first non-whitespace character that is
481 * displayed after the block's start column and the character's column
482 * number. Also, let's calculate the width of all the whitespace
483 * characters that are displayed in the block and precede the searched
484 * non-whitespace character.
485 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000487 /* If "bd.startspaces" is set, "bd.textstart" points to the character,
488 * the part of which is displayed at the block's beginning. Let's start
489 * searching from the next character. */
490 if (bd.startspaces)
491 mb_ptr_adv(non_white);
492
493 /* The character's column is in "bd.start_vcol". */
494 non_white_col = bd.start_vcol;
495
496 while (vim_iswhite(*non_white))
497 {
498 incr = lbr_chartabsize_adv(&non_white, non_white_col);
499 non_white_col += incr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 }
501
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000502 block_space_width = non_white_col - oap->start_vcol;
503 /* We will shift by "total" or "block_space_width", whichever is less.
504 */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000505 shift_amount = (block_space_width < (size_t)total
506 ? block_space_width : (size_t)total);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000507
508 /* The column to which we will shift the text. */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000509 destination_col = (colnr_T)(non_white_col - shift_amount);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000510
511 /* Now let's find out how much of the beginning of the line we can
512 * reuse without modification. */
513 verbatim_copy_end = bd.textstart;
514 verbatim_copy_width = bd.start_vcol;
515
516 /* If "bd.startspaces" is set, "bd.textstart" points to the character
517 * preceding the block. We have to subtract its width to obtain its
518 * column number. */
519 if (bd.startspaces)
520 verbatim_copy_width -= bd.start_char_vcols;
521 while (verbatim_copy_width < destination_col)
522 {
523 incr = lbr_chartabsize(verbatim_copy_end, verbatim_copy_width);
524 if (verbatim_copy_width + incr > destination_col)
525 break;
526 verbatim_copy_width += incr;
527 mb_ptr_adv(verbatim_copy_end);
528 }
529
530 /* If "destination_col" is different from the width of the initial
531 * part of the line that will be copied, it means we encountered a tab
532 * character, which we will have to partly replace with spaces. */
533 fill = destination_col - verbatim_copy_width;
534
535 /* The replacement line will consist of:
536 * - the beginning of the original line up to "verbatim_copy_end",
537 * - "fill" number of spaces,
538 * - the rest of the line, pointed to by non_white. */
539 new_line_len = (unsigned)(verbatim_copy_end - oldp)
540 + fill
541 + (unsigned)STRLEN(non_white) + 1;
542
543 newp = alloc_check(new_line_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544 if (newp == NULL)
545 return;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000546 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp));
547 copy_spaces(newp + (verbatim_copy_end - oldp), (size_t)fill);
548 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 }
550 /* replace the line */
551 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
552 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
553 State = oldstate;
554 curwin->w_cursor.col = oldcol;
555#ifdef FEAT_RIGHTLEFT
556 p_ri = old_p_ri;
557#endif
558}
559#endif
560
561#ifdef FEAT_VISUALEXTRA
562/*
563 * Insert string "s" (b_insert ? before : after) block :AKelly
564 * Caller must prepare for undo.
565 */
566 static void
567block_insert(oap, s, b_insert, bdp)
568 oparg_T *oap;
569 char_u *s;
570 int b_insert;
571 struct block_def *bdp;
572{
573 int p_ts;
574 int count = 0; /* extra spaces to replace a cut TAB */
575 int spaces = 0; /* non-zero if cutting a TAB */
576 colnr_T offset; /* pointer along new line */
577 unsigned s_len; /* STRLEN(s) */
578 char_u *newp, *oldp; /* new, old lines */
579 linenr_T lnum; /* loop var */
580 int oldstate = State;
581
582 State = INSERT; /* don't want REPLACE for State */
583 s_len = (unsigned)STRLEN(s);
584
585 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
586 {
587 block_prep(oap, bdp, lnum, TRUE);
588 if (bdp->is_short && b_insert)
589 continue; /* OP_INSERT, line ends before block start */
590
591 oldp = ml_get(lnum);
592
593 if (b_insert)
594 {
595 p_ts = bdp->start_char_vcols;
596 spaces = bdp->startspaces;
597 if (spaces != 0)
598 count = p_ts - 1; /* we're cutting a TAB */
599 offset = bdp->textcol;
600 }
601 else /* append */
602 {
603 p_ts = bdp->end_char_vcols;
604 if (!bdp->is_short) /* spaces = padding after block */
605 {
606 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
607 if (spaces != 0)
608 count = p_ts - 1; /* we're cutting a TAB */
609 offset = bdp->textcol + bdp->textlen - (spaces != 0);
610 }
611 else /* spaces = padding to block edge */
612 {
613 /* if $ used, just append to EOL (ie spaces==0) */
614 if (!bdp->is_MAX)
615 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
616 count = spaces;
617 offset = bdp->textcol + bdp->textlen;
618 }
619 }
620
621 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
622 if (newp == NULL)
623 continue;
624
625 /* copy up to shifted part */
626 mch_memmove(newp, oldp, (size_t)(offset));
627 oldp += offset;
628
629 /* insert pre-padding */
630 copy_spaces(newp + offset, (size_t)spaces);
631
632 /* copy the new text */
633 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
634 offset += s_len;
635
636 if (spaces && !bdp->is_short)
637 {
638 /* insert post-padding */
639 copy_spaces(newp + offset + spaces, (size_t)(p_ts - spaces));
640 /* We're splitting a TAB, don't copy it. */
641 oldp++;
642 /* We allowed for that TAB, remember this now */
643 count++;
644 }
645
646 if (spaces > 0)
647 offset += count;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000648 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649
650 ml_replace(lnum, newp, FALSE);
651
652 if (lnum == oap->end.lnum)
653 {
654 /* Set "']" mark to the end of the block instead of the end of
655 * the insert in the first line. */
656 curbuf->b_op_end.lnum = oap->end.lnum;
657 curbuf->b_op_end.col = offset;
658 }
659 } /* for all lnum */
660
661 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
662
663 State = oldstate;
664}
665#endif
666
667#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
668/*
669 * op_reindent - handle reindenting a block of lines.
670 */
671 void
672op_reindent(oap, how)
673 oparg_T *oap;
674 int (*how) __ARGS((void));
675{
676 long i;
677 char_u *l;
678 int count;
679 linenr_T first_changed = 0;
680 linenr_T last_changed = 0;
681 linenr_T start_lnum = curwin->w_cursor.lnum;
682
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000683 /* Don't even try when 'modifiable' is off. */
684 if (!curbuf->b_p_ma)
685 {
686 EMSG(_(e_modifiable));
687 return;
688 }
689
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 for (i = oap->line_count; --i >= 0 && !got_int; )
691 {
692 /* it's a slow thing to do, so give feedback so there's no worry that
693 * the computer's just hung. */
694
695 if (i > 1
696 && (i % 50 == 0 || i == oap->line_count - 1)
697 && oap->line_count > p_report)
698 smsg((char_u *)_("%ld lines to indent... "), i);
699
700 /*
701 * Be vi-compatible: For lisp indenting the first line is not
702 * indented, unless there is only one line.
703 */
704#ifdef FEAT_LISP
705 if (i != oap->line_count - 1 || oap->line_count == 1
706 || how != get_lisp_indent)
707#endif
708 {
709 l = skipwhite(ml_get_curline());
710 if (*l == NUL) /* empty or blank line */
711 count = 0;
712 else
713 count = how(); /* get the indent for this line */
714
715 if (set_indent(count, SIN_UNDO))
716 {
717 /* did change the indent, call changed_lines() later */
718 if (first_changed == 0)
719 first_changed = curwin->w_cursor.lnum;
720 last_changed = curwin->w_cursor.lnum;
721 }
722 }
723 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +0000724 curwin->w_cursor.col = 0; /* make sure it's valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 }
726
727 /* put cursor on first non-blank of indented line */
728 curwin->w_cursor.lnum = start_lnum;
729 beginline(BL_SOL | BL_FIX);
730
731 /* Mark changed lines so that they will be redrawn. When Visual
732 * highlighting was present, need to continue until the last line. When
733 * there is no change still need to remove the Visual highlighting. */
734 if (last_changed != 0)
735 changed_lines(first_changed, 0,
736#ifdef FEAT_VISUAL
737 oap->is_VIsual ? start_lnum + oap->line_count :
738#endif
739 last_changed + 1, 0L);
740#ifdef FEAT_VISUAL
741 else if (oap->is_VIsual)
742 redraw_curbuf_later(INVERTED);
743#endif
744
745 if (oap->line_count > p_report)
746 {
747 i = oap->line_count - (i + 1);
748 if (i == 1)
749 MSG(_("1 line indented "));
750 else
751 smsg((char_u *)_("%ld lines indented "), i);
752 }
753 /* set '[ and '] marks */
754 curbuf->b_op_start = oap->start;
755 curbuf->b_op_end = oap->end;
756}
757#endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
758
759#if defined(FEAT_EVAL) || defined(PROTO)
760/*
761 * Keep the last expression line here, for repeating.
762 */
763static char_u *expr_line = NULL;
764
765/*
766 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
767 * Returns '=' when OK, NUL otherwise.
768 */
769 int
770get_expr_register()
771{
772 char_u *new_line;
773
774 new_line = getcmdline('=', 0L, 0);
775 if (new_line == NULL)
776 return NUL;
777 if (*new_line == NUL) /* use previous line */
778 vim_free(new_line);
779 else
780 set_expr_line(new_line);
781 return '=';
782}
783
784/*
785 * Set the expression for the '=' register.
786 * Argument must be an allocated string.
787 */
788 void
789set_expr_line(new_line)
790 char_u *new_line;
791{
792 vim_free(expr_line);
793 expr_line = new_line;
794}
795
796/*
797 * Get the result of the '=' register expression.
798 * Returns a pointer to allocated memory, or NULL for failure.
799 */
800 char_u *
801get_expr_line()
802{
803 char_u *expr_copy;
804 char_u *rv;
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000805 static int nested = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806
807 if (expr_line == NULL)
808 return NULL;
809
810 /* Make a copy of the expression, because evaluating it may cause it to be
811 * changed. */
812 expr_copy = vim_strsave(expr_line);
813 if (expr_copy == NULL)
814 return NULL;
815
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000816 /* When we are invoked recursively limit the evaluation to 10 levels.
817 * Then return the string as-is. */
818 if (nested >= 10)
819 return expr_copy;
820
821 ++nested;
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000822 rv = eval_to_string(expr_copy, NULL, TRUE);
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000823 --nested;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 vim_free(expr_copy);
825 return rv;
826}
Bram Moolenaarde934d72005-05-22 22:09:40 +0000827
828/*
829 * Get the '=' register expression itself, without evaluating it.
830 */
831 char_u *
832get_expr_line_src()
833{
834 if (expr_line == NULL)
835 return NULL;
836 return vim_strsave(expr_line);
837}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838#endif /* FEAT_EVAL */
839
840/*
841 * Check if 'regname' is a valid name of a yank register.
842 * Note: There is no check for 0 (default register), caller should do this
843 */
844 int
845valid_yank_reg(regname, writing)
846 int regname;
847 int writing; /* if TRUE check for writable registers */
848{
849 if ( (regname > 0 && ASCII_ISALNUM(regname))
850 || (!writing && vim_strchr((char_u *)
851#ifdef FEAT_EVAL
852 "/.%#:="
853#else
854 "/.%#:"
855#endif
856 , regname) != NULL)
857 || regname == '"'
858 || regname == '-'
859 || regname == '_'
860#ifdef FEAT_CLIPBOARD
861 || regname == '*'
862 || regname == '+'
863#endif
864#ifdef FEAT_DND
865 || (!writing && regname == '~')
866#endif
867 )
868 return TRUE;
869 return FALSE;
870}
871
872/*
873 * Set y_current and y_append, according to the value of "regname".
874 * Cannot handle the '_' register.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000875 * Must only be called with a valid register name!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 *
877 * If regname is 0 and writing, use register 0
878 * If regname is 0 and reading, use previous register
879 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000880 void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881get_yank_register(regname, writing)
882 int regname;
883 int writing;
884{
885 int i;
886
887 y_append = FALSE;
888 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
889 {
890 y_current = y_previous;
891 return;
892 }
893 i = regname;
894 if (VIM_ISDIGIT(i))
895 i -= '0';
896 else if (ASCII_ISLOWER(i))
897 i = CharOrdLow(i) + 10;
898 else if (ASCII_ISUPPER(i))
899 {
900 i = CharOrdUp(i) + 10;
901 y_append = TRUE;
902 }
903 else if (regname == '-')
904 i = DELETION_REGISTER;
905#ifdef FEAT_CLIPBOARD
906 /* When selection is not available, use register 0 instead of '*' */
907 else if (clip_star.available && regname == '*')
908 i = STAR_REGISTER;
909 /* When clipboard is not available, use register 0 instead of '+' */
910 else if (clip_plus.available && regname == '+')
911 i = PLUS_REGISTER;
912#endif
913#ifdef FEAT_DND
914 else if (!writing && regname == '~')
915 i = TILDE_REGISTER;
916#endif
917 else /* not 0-9, a-z, A-Z or '-': use register 0 */
918 i = 0;
919 y_current = &(y_regs[i]);
920 if (writing) /* remember the register we write into for do_put() */
921 y_previous = y_current;
922}
923
Bram Moolenaar8299df92004-07-10 09:47:34 +0000924#if defined(FEAT_CLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925/*
926 * When "regname" is a clipboard register, obtain the selection. If it's not
927 * available return zero, otherwise return "regname".
928 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000929 int
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930may_get_selection(regname)
931 int regname;
932{
933 if (regname == '*')
934 {
935 if (!clip_star.available)
936 regname = 0;
937 else
938 clip_get_selection(&clip_star);
939 }
940 else if (regname == '+')
941 {
942 if (!clip_plus.available)
943 regname = 0;
944 else
945 clip_get_selection(&clip_plus);
946 }
947 return regname;
948}
949#endif
950
951#if defined(FEAT_VISUAL) || defined(PROTO)
952/*
953 * Obtain the contents of a "normal" register. The register is made empty.
954 * The returned pointer has allocated memory, use put_register() later.
955 */
956 void *
957get_register(name, copy)
958 int name;
959 int copy; /* make a copy, if FALSE make register empty. */
960{
Bram Moolenaar0a307462007-12-01 20:13:05 +0000961 struct yankreg *reg;
962 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963
964#ifdef FEAT_CLIPBOARD
965 /* When Visual area changed, may have to update selection. Obtain the
966 * selection too. */
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000967 if (name == '*' && clip_star.available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200969 if (clip_isautosel_star())
970 clip_update_selection(&clip_star);
971 may_get_selection(name);
972 }
973 if (name == '+' && clip_plus.available)
974 {
975 if (clip_isautosel_plus())
976 clip_update_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 may_get_selection(name);
978 }
979#endif
980
981 get_yank_register(name, 0);
982 reg = (struct yankreg *)alloc((unsigned)sizeof(struct yankreg));
983 if (reg != NULL)
984 {
985 *reg = *y_current;
986 if (copy)
987 {
988 /* If we run out of memory some or all of the lines are empty. */
989 if (reg->y_size == 0)
990 reg->y_array = NULL;
991 else
992 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
993 * reg->y_size));
994 if (reg->y_array != NULL)
995 {
996 for (i = 0; i < reg->y_size; ++i)
997 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
998 }
999 }
1000 else
1001 y_current->y_array = NULL;
1002 }
1003 return (void *)reg;
1004}
1005
1006/*
Bram Moolenaar0a307462007-12-01 20:13:05 +00001007 * Put "reg" into register "name". Free any previous contents and "reg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 */
1009 void
1010put_register(name, reg)
1011 int name;
1012 void *reg;
1013{
1014 get_yank_register(name, 0);
1015 free_yank_all();
1016 *y_current = *(struct yankreg *)reg;
Bram Moolenaar0a307462007-12-01 20:13:05 +00001017 vim_free(reg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018
1019# ifdef FEAT_CLIPBOARD
1020 /* Send text written to clipboard register to the clipboard. */
1021 may_set_selection();
1022# endif
1023}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001024
1025 void
1026free_register(reg)
1027 void *reg;
1028{
1029 struct yankreg tmp;
1030
1031 tmp = *y_current;
1032 *y_current = *(struct yankreg *)reg;
1033 free_yank_all();
1034 vim_free(reg);
1035 *y_current = tmp;
1036}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037#endif
1038
1039#if defined(FEAT_MOUSE) || defined(PROTO)
1040/*
1041 * return TRUE if the current yank register has type MLINE
1042 */
1043 int
1044yank_register_mline(regname)
1045 int regname;
1046{
1047 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1048 return FALSE;
1049 if (regname == '_') /* black hole is always empty */
1050 return FALSE;
1051 get_yank_register(regname, FALSE);
1052 return (y_current->y_type == MLINE);
1053}
1054#endif
1055
1056/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001057 * Start or stop recording into a yank register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 *
Bram Moolenaard55de222007-05-06 13:38:48 +00001059 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 */
1061 int
1062do_record(c)
1063 int c;
1064{
Bram Moolenaard55de222007-05-06 13:38:48 +00001065 char_u *p;
1066 static int regname;
1067 struct yankreg *old_y_previous, *old_y_current;
1068 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069
1070 if (Recording == FALSE) /* start recording */
1071 {
1072 /* registers 0-9, a-z and " are allowed */
1073 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1074 retval = FAIL;
1075 else
1076 {
1077 Recording = TRUE;
1078 showmode();
1079 regname = c;
1080 retval = OK;
1081 }
1082 }
1083 else /* stop recording */
1084 {
1085 /*
Bram Moolenaard55de222007-05-06 13:38:48 +00001086 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1087 * needs to be removed again to put it in a register. exec_reg then
1088 * adds the escaping back later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 */
1090 Recording = FALSE;
1091 MSG("");
1092 p = get_recorded();
1093 if (p == NULL)
1094 retval = FAIL;
1095 else
1096 {
Bram Moolenaar81b85872007-03-04 20:22:01 +00001097 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1098 vim_unescape_csi(p);
1099
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100 /*
1101 * We don't want to change the default register here, so save and
1102 * restore the current register name.
1103 */
1104 old_y_previous = y_previous;
1105 old_y_current = y_current;
1106
1107 retval = stuff_yank(regname, p);
1108
1109 y_previous = old_y_previous;
1110 y_current = old_y_current;
1111 }
1112 }
1113 return retval;
1114}
1115
1116/*
1117 * Stuff string "p" into yank register "regname" as a single line (append if
1118 * uppercase). "p" must have been alloced.
1119 *
1120 * return FAIL for failure, OK otherwise
1121 */
1122 static int
1123stuff_yank(regname, p)
1124 int regname;
1125 char_u *p;
1126{
1127 char_u *lp;
1128 char_u **pp;
1129
1130 /* check for read-only register */
1131 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1132 {
1133 vim_free(p);
1134 return FAIL;
1135 }
1136 if (regname == '_') /* black hole: don't do anything */
1137 {
1138 vim_free(p);
1139 return OK;
1140 }
1141 get_yank_register(regname, TRUE);
1142 if (y_append && y_current->y_array != NULL)
1143 {
1144 pp = &(y_current->y_array[y_current->y_size - 1]);
1145 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1146 if (lp == NULL)
1147 {
1148 vim_free(p);
1149 return FAIL;
1150 }
1151 STRCPY(lp, *pp);
1152 STRCAT(lp, p);
1153 vim_free(p);
1154 vim_free(*pp);
1155 *pp = lp;
1156 }
1157 else
1158 {
1159 free_yank_all();
1160 if ((y_current->y_array =
1161 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1162 {
1163 vim_free(p);
1164 return FAIL;
1165 }
1166 y_current->y_array[0] = p;
1167 y_current->y_size = 1;
1168 y_current->y_type = MCHAR; /* used to be MLINE, why? */
1169 }
1170 return OK;
1171}
1172
Bram Moolenaar42b94362009-05-26 16:12:37 +00001173static int execreg_lastc = NUL;
1174
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175/*
1176 * execute a yank register: copy it into the stuff buffer
1177 *
1178 * return FAIL for failure, OK otherwise
1179 */
1180 int
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001181do_execreg(regname, colon, addcr, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 int regname;
1183 int colon; /* insert ':' before each line */
1184 int addcr; /* always add '\n' to end of line */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001185 int silent; /* set "silent" flag in typeahead buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 long i;
1188 char_u *p;
1189 int retval = OK;
1190 int remap;
1191
1192 if (regname == '@') /* repeat previous one */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001193 {
Bram Moolenaar42b94362009-05-26 16:12:37 +00001194 if (execreg_lastc == NUL)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001195 {
1196 EMSG(_("E748: No previously used register"));
1197 return FAIL;
1198 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001199 regname = execreg_lastc;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001200 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 /* check for valid regname */
1202 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001203 {
1204 emsg_invreg(regname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 return FAIL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001206 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001207 execreg_lastc = regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208
1209#ifdef FEAT_CLIPBOARD
1210 regname = may_get_selection(regname);
1211#endif
1212
1213 if (regname == '_') /* black hole: don't stuff anything */
1214 return OK;
1215
1216#ifdef FEAT_CMDHIST
1217 if (regname == ':') /* use last command line */
1218 {
1219 if (last_cmdline == NULL)
1220 {
1221 EMSG(_(e_nolastcmd));
1222 return FAIL;
1223 }
1224 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
1225 new_last_cmdline = NULL;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001226 /* Escape all control characters with a CTRL-V */
1227 p = vim_strsave_escaped_ext(last_cmdline,
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001228 (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 +00001229 if (p != NULL)
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001230 {
1231 /* When in Visual mode "'<,'>" will be prepended to the command.
1232 * Remove it when it's already there. */
1233 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001234 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001235 else
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001236 retval = put_in_typebuf(p, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001237 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001238 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 }
1240#endif
1241#ifdef FEAT_EVAL
1242 else if (regname == '=')
1243 {
1244 p = get_expr_line();
1245 if (p == NULL)
1246 return FAIL;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001247 retval = put_in_typebuf(p, TRUE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 vim_free(p);
1249 }
1250#endif
1251 else if (regname == '.') /* use last inserted text */
1252 {
1253 p = get_last_insert_save();
1254 if (p == NULL)
1255 {
1256 EMSG(_(e_noinstext));
1257 return FAIL;
1258 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001259 retval = put_in_typebuf(p, FALSE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 vim_free(p);
1261 }
1262 else
1263 {
1264 get_yank_register(regname, FALSE);
1265 if (y_current->y_array == NULL)
1266 return FAIL;
1267
1268 /* Disallow remaping for ":@r". */
1269 remap = colon ? REMAP_NONE : REMAP_YES;
1270
1271 /*
1272 * Insert lines into typeahead buffer, from last one to first one.
1273 */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001274 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 for (i = y_current->y_size; --i >= 0; )
1276 {
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001277 char_u *escaped;
1278
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 /* insert NL between lines and after last line if type is MLINE */
1280 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1281 || addcr)
1282 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001283 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 return FAIL;
1285 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001286 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1287 if (escaped == NULL)
1288 return FAIL;
1289 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1290 vim_free(escaped);
1291 if (retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292 return FAIL;
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001293 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 == FAIL)
1295 return FAIL;
1296 }
1297 Exec_reg = TRUE; /* disable the 'q' command */
1298 }
1299 return retval;
1300}
1301
1302/*
1303 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1304 * used only after other typeahead has been processed.
1305 */
1306 static void
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001307put_reedit_in_typebuf(silent)
1308 int silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309{
1310 char_u buf[3];
1311
1312 if (restart_edit != NUL)
1313 {
1314 if (restart_edit == 'V')
1315 {
1316 buf[0] = 'g';
1317 buf[1] = 'R';
1318 buf[2] = NUL;
1319 }
1320 else
1321 {
1322 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1323 buf[1] = NUL;
1324 }
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001325 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 restart_edit = NUL;
1327 }
1328}
1329
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001330/*
1331 * Insert register contents "s" into the typeahead buffer, so that it will be
1332 * executed again.
1333 * When "esc" is TRUE it is to be taken literally: Escape CSI characters and
1334 * no remapping.
1335 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 static int
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001337put_in_typebuf(s, esc, colon, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 char_u *s;
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001339 int esc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 int colon; /* add ':' before the line */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001341 int silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342{
1343 int retval = OK;
1344
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001345 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 if (colon)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001347 retval = ins_typebuf((char_u *)"\n", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 if (retval == OK)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001349 {
1350 char_u *p;
1351
1352 if (esc)
1353 p = vim_strsave_escape_csi(s);
1354 else
1355 p = s;
1356 if (p == NULL)
1357 retval = FAIL;
1358 else
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001359 retval = ins_typebuf(p, esc ? REMAP_NONE : REMAP_YES,
1360 0, TRUE, silent);
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001361 if (esc)
1362 vim_free(p);
1363 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 if (colon && retval == OK)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001365 retval = ins_typebuf((char_u *)":", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 return retval;
1367}
1368
1369/*
1370 * Insert a yank register: copy it into the Read buffer.
1371 * Used by CTRL-R command and middle mouse button in insert mode.
1372 *
1373 * return FAIL for failure, OK otherwise
1374 */
1375 int
1376insert_reg(regname, literally)
1377 int regname;
1378 int literally; /* insert literally, not as if typed */
1379{
1380 long i;
1381 int retval = OK;
1382 char_u *arg;
1383 int allocated;
1384
1385 /*
1386 * It is possible to get into an endless loop by having CTRL-R a in
1387 * register a and then, in insert mode, doing CTRL-R a.
1388 * If you hit CTRL-C, the loop will be broken here.
1389 */
1390 ui_breakcheck();
1391 if (got_int)
1392 return FAIL;
1393
1394 /* check for valid regname */
1395 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1396 return FAIL;
1397
1398#ifdef FEAT_CLIPBOARD
1399 regname = may_get_selection(regname);
1400#endif
1401
1402 if (regname == '.') /* insert last inserted text */
1403 retval = stuff_inserted(NUL, 1L, TRUE);
1404 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1405 {
1406 if (arg == NULL)
1407 return FAIL;
1408 stuffescaped(arg, literally);
1409 if (allocated)
1410 vim_free(arg);
1411 }
1412 else /* name or number register */
1413 {
1414 get_yank_register(regname, FALSE);
1415 if (y_current->y_array == NULL)
1416 retval = FAIL;
1417 else
1418 {
1419 for (i = 0; i < y_current->y_size; ++i)
1420 {
1421 stuffescaped(y_current->y_array[i], literally);
1422 /*
1423 * Insert a newline between lines and after last line if
1424 * y_type is MLINE.
1425 */
1426 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1427 stuffcharReadbuff('\n');
1428 }
1429 }
1430 }
1431
1432 return retval;
1433}
1434
1435/*
1436 * Stuff a string into the typeahead buffer, such that edit() will insert it
1437 * literally ("literally" TRUE) or interpret is as typed characters.
1438 */
1439 static void
1440stuffescaped(arg, literally)
1441 char_u *arg;
1442 int literally;
1443{
1444 int c;
1445 char_u *start;
1446
1447 while (*arg != NUL)
1448 {
1449 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1450 * stuff K_SPECIAL to get the effect of a special key when "literally"
1451 * is TRUE. */
1452 start = arg;
1453 while ((*arg >= ' '
1454#ifndef EBCDIC
1455 && *arg < DEL /* EBCDIC: chars above space are normal */
1456#endif
1457 )
1458 || (*arg == K_SPECIAL && !literally))
1459 ++arg;
1460 if (arg > start)
1461 stuffReadbuffLen(start, (long)(arg - start));
1462
1463 /* stuff a single special character */
1464 if (*arg != NUL)
1465 {
1466#ifdef FEAT_MBYTE
1467 if (has_mbyte)
Bram Moolenaar3b1c4852010-07-31 17:59:29 +02001468 c = mb_cptr2char_adv(&arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 else
1470#endif
1471 c = *arg++;
1472 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1473 stuffcharReadbuff(Ctrl_V);
1474 stuffcharReadbuff(c);
1475 }
1476 }
1477}
1478
1479/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001480 * If "regname" is a special register, return TRUE and store a pointer to its
1481 * value in "argp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482 */
Bram Moolenaar8299df92004-07-10 09:47:34 +00001483 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484get_spec_reg(regname, argp, allocated, errmsg)
1485 int regname;
1486 char_u **argp;
Bram Moolenaard55de222007-05-06 13:38:48 +00001487 int *allocated; /* return: TRUE when value was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 int errmsg; /* give error message when failing */
1489{
1490 int cnt;
1491
1492 *argp = NULL;
1493 *allocated = FALSE;
1494 switch (regname)
1495 {
1496 case '%': /* file name */
1497 if (errmsg)
1498 check_fname(); /* will give emsg if not set */
1499 *argp = curbuf->b_fname;
1500 return TRUE;
1501
1502 case '#': /* alternate file name */
1503 *argp = getaltfname(errmsg); /* may give emsg if not set */
1504 return TRUE;
1505
1506#ifdef FEAT_EVAL
1507 case '=': /* result of expression */
1508 *argp = get_expr_line();
1509 *allocated = TRUE;
1510 return TRUE;
1511#endif
1512
1513 case ':': /* last command line */
1514 if (last_cmdline == NULL && errmsg)
1515 EMSG(_(e_nolastcmd));
1516 *argp = last_cmdline;
1517 return TRUE;
1518
1519 case '/': /* last search-pattern */
1520 if (last_search_pat() == NULL && errmsg)
1521 EMSG(_(e_noprevre));
1522 *argp = last_search_pat();
1523 return TRUE;
1524
1525 case '.': /* last inserted text */
1526 *argp = get_last_insert_save();
1527 *allocated = TRUE;
1528 if (*argp == NULL && errmsg)
1529 EMSG(_(e_noinstext));
1530 return TRUE;
1531
1532#ifdef FEAT_SEARCHPATH
1533 case Ctrl_F: /* Filename under cursor */
1534 case Ctrl_P: /* Path under cursor, expand via "path" */
1535 if (!errmsg)
1536 return FALSE;
1537 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001538 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 *allocated = TRUE;
1540 return TRUE;
1541#endif
1542
1543 case Ctrl_W: /* word under cursor */
1544 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1545 if (!errmsg)
1546 return FALSE;
1547 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1548 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1549 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1550 *allocated = TRUE;
1551 return TRUE;
1552
1553 case '_': /* black hole: always empty */
1554 *argp = (char_u *)"";
1555 return TRUE;
1556 }
1557
1558 return FALSE;
1559}
1560
1561/*
Bram Moolenaar8299df92004-07-10 09:47:34 +00001562 * Paste a yank register into the command line.
1563 * Only for non-special registers.
1564 * Used by CTRL-R command in command-line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 * insert_reg() can't be used here, because special characters from the
1566 * register contents will be interpreted as commands.
1567 *
1568 * return FAIL for failure, OK otherwise
1569 */
1570 int
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001571cmdline_paste_reg(regname, literally, remcr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 int regname;
1573 int literally; /* Insert text literally instead of "as typed" */
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001574 int remcr; /* don't add trailing CR */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575{
1576 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577
1578 get_yank_register(regname, FALSE);
1579 if (y_current->y_array == NULL)
1580 return FAIL;
1581
1582 for (i = 0; i < y_current->y_size; ++i)
1583 {
1584 cmdline_paste_str(y_current->y_array[i], literally);
1585
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001586 /* Insert ^M between lines and after last line if type is MLINE.
1587 * Don't do this when "remcr" is TRUE and the next line is empty. */
1588 if (y_current->y_type == MLINE
1589 || (i < y_current->y_size - 1
1590 && !(remcr
1591 && i == y_current->y_size - 2
1592 && *y_current->y_array[i + 1] == NUL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 cmdline_paste_str((char_u *)"\r", literally);
1594
1595 /* Check for CTRL-C, in case someone tries to paste a few thousand
1596 * lines and gets bored. */
1597 ui_breakcheck();
1598 if (got_int)
1599 return FAIL;
1600 }
1601 return OK;
1602}
1603
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604#if defined(FEAT_CLIPBOARD) || defined(PROTO)
1605/*
1606 * Adjust the register name pointed to with "rp" for the clipboard being
1607 * used always and the clipboard being available.
1608 */
1609 void
1610adjust_clip_reg(rp)
1611 int *rp;
1612{
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001613 /* If no reg. specified, and "unnamed" or "unnamedplus" is in 'clipboard',
1614 * use '*' or '+' reg, respectively. "unnamedplus" prevails. */
1615 if (*rp == 0 && clip_unnamed != 0)
1616 *rp = ((clip_unnamed & CLIP_UNNAMED_PLUS) && clip_plus.available)
1617 ? '+' : '*';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 if (!clip_star.available && *rp == '*')
1619 *rp = 0;
1620 if (!clip_plus.available && *rp == '+')
1621 *rp = 0;
1622}
1623#endif
1624
1625/*
Bram Moolenaard04b7502010-07-08 22:27:55 +02001626 * Handle a delete operation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 *
Bram Moolenaard04b7502010-07-08 22:27:55 +02001628 * Return FAIL if undo failed, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 */
1630 int
1631op_delete(oap)
1632 oparg_T *oap;
1633{
1634 int n;
1635 linenr_T lnum;
1636 char_u *ptr;
1637#ifdef FEAT_VISUAL
1638 char_u *newp, *oldp;
1639 struct block_def bd;
1640#endif
1641 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1642 int did_yank = FALSE;
Bram Moolenaar7c821302012-09-05 14:18:45 +02001643 int orig_regname = oap->regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644
1645 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1646 return OK;
1647
1648 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1649 if (oap->empty)
1650 return u_save_cursor();
1651
1652 if (!curbuf->b_p_ma)
1653 {
1654 EMSG(_(e_modifiable));
1655 return FAIL;
1656 }
1657
1658#ifdef FEAT_CLIPBOARD
1659 adjust_clip_reg(&oap->regname);
1660#endif
1661
1662#ifdef FEAT_MBYTE
1663 if (has_mbyte)
1664 mb_adjust_opend(oap);
1665#endif
1666
Bram Moolenaard04b7502010-07-08 22:27:55 +02001667 /*
1668 * Imitate the strange Vi behaviour: If the delete spans more than one
1669 * line and motion_type == MCHAR and the result is a blank line, make the
1670 * delete linewise. Don't do this for the change command or Visual mode.
1671 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 if ( oap->motion_type == MCHAR
1673#ifdef FEAT_VISUAL
1674 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001675 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676#endif
1677 && oap->line_count > 1
Bram Moolenaar64a72302012-01-10 13:46:22 +01001678 && oap->motion_force == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 && oap->op_type == OP_DELETE)
1680 {
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001681 ptr = ml_get(oap->end.lnum) + oap->end.col;
1682 if (*ptr != NUL)
1683 ptr += oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 ptr = skipwhite(ptr);
1685 if (*ptr == NUL && inindent(0))
1686 oap->motion_type = MLINE;
1687 }
1688
Bram Moolenaard04b7502010-07-08 22:27:55 +02001689 /*
1690 * Check for trying to delete (e.g. "D") in an empty line.
1691 * Note: For the change operator it is ok.
1692 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 if ( oap->motion_type == MCHAR
1694 && oap->line_count == 1
1695 && oap->op_type == OP_DELETE
1696 && *ml_get(oap->start.lnum) == NUL)
1697 {
1698 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001699 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 * 'cpoptions' (Vi compatible).
1701 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001702#ifdef FEAT_VIRTUALEDIT
1703 if (virtual_op)
1704 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1705 * marks as if it happened. */
1706 goto setmarks;
1707#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1709 beep_flush();
1710 return OK;
1711 }
1712
Bram Moolenaard04b7502010-07-08 22:27:55 +02001713 /*
1714 * Do a yank of whatever we're about to delete.
1715 * If a yank register was specified, put the deleted text into that
1716 * register. For the black hole register '_' don't yank anything.
1717 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 if (oap->regname != '_')
1719 {
1720 if (oap->regname != 0)
1721 {
1722 /* check for read-only register */
1723 if (!valid_yank_reg(oap->regname, TRUE))
1724 {
1725 beep_flush();
1726 return OK;
1727 }
1728 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1729 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1730 did_yank = TRUE;
1731 }
1732
1733 /*
1734 * Put deleted text into register 1 and shift number registers if the
1735 * delete contains a line break, or when a regname has been specified.
Bram Moolenaar7c821302012-09-05 14:18:45 +02001736 * Use the register name from before adjust_clip_reg() may have
1737 * changed it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 */
Bram Moolenaar7c821302012-09-05 14:18:45 +02001739 if (orig_regname != 0 || oap->motion_type == MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 || oap->line_count > 1 || oap->use_reg_one)
1741 {
1742 y_current = &y_regs[9];
1743 free_yank_all(); /* free register nine */
1744 for (n = 9; n > 1; --n)
1745 y_regs[n] = y_regs[n - 1];
1746 y_previous = y_current = &y_regs[1];
1747 y_regs[1].y_array = NULL; /* set register one to empty */
1748 if (op_yank(oap, TRUE, FALSE) == OK)
1749 did_yank = TRUE;
1750 }
1751
Bram Moolenaar84298db2012-04-20 13:46:08 +02001752 /* Yank into small delete register when no named register specified
1753 * and the delete is within one line. */
1754 if ((
1755#ifdef FEAT_CLIPBOARD
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001756 ((clip_unnamed & CLIP_UNNAMED) && oap->regname == '*') ||
1757 ((clip_unnamed & CLIP_UNNAMED_PLUS) && oap->regname == '+') ||
Bram Moolenaar84298db2012-04-20 13:46:08 +02001758#endif
1759 oap->regname == 0) && oap->motion_type != MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 && oap->line_count == 1)
1761 {
1762 oap->regname = '-';
1763 get_yank_register(oap->regname, TRUE);
1764 if (op_yank(oap, TRUE, FALSE) == OK)
1765 did_yank = TRUE;
1766 oap->regname = 0;
1767 }
1768
1769 /*
1770 * If there's too much stuff to fit in the yank register, then get a
1771 * confirmation before doing the delete. This is crude, but simple.
1772 * And it avoids doing a delete of something we can't put back if we
1773 * want.
1774 */
1775 if (!did_yank)
1776 {
1777 int msg_silent_save = msg_silent;
1778
1779 msg_silent = 0; /* must display the prompt */
1780 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1781 msg_silent = msg_silent_save;
1782 if (n != 'y')
1783 {
1784 EMSG(_(e_abort));
1785 return FAIL;
1786 }
1787 }
1788 }
1789
1790#ifdef FEAT_VISUAL
Bram Moolenaard04b7502010-07-08 22:27:55 +02001791 /*
1792 * block mode delete
1793 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 if (oap->block_mode)
1795 {
1796 if (u_save((linenr_T)(oap->start.lnum - 1),
1797 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1798 return FAIL;
1799
1800 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1801 {
1802 block_prep(oap, &bd, lnum, TRUE);
1803 if (bd.textlen == 0) /* nothing to delete */
1804 continue;
1805
1806 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1807 if (lnum == curwin->w_cursor.lnum)
1808 {
1809 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1810# ifdef FEAT_VIRTUALEDIT
1811 curwin->w_cursor.coladd = 0;
1812# endif
1813 }
1814
1815 /* n == number of chars deleted
1816 * If we delete a TAB, it may be replaced by several characters.
1817 * Thus the number of characters may increase!
1818 */
1819 n = bd.textlen - bd.startspaces - bd.endspaces;
1820 oldp = ml_get(lnum);
1821 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1822 if (newp == NULL)
1823 continue;
1824 /* copy up to deleted part */
1825 mch_memmove(newp, oldp, (size_t)bd.textcol);
1826 /* insert spaces */
1827 copy_spaces(newp + bd.textcol,
1828 (size_t)(bd.startspaces + bd.endspaces));
1829 /* copy the part after the deleted part */
1830 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001831 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 /* replace the line */
1833 ml_replace(lnum, newp, FALSE);
1834 }
1835
1836 check_cursor_col();
1837 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1838 oap->end.lnum + 1, 0L);
1839 oap->line_count = 0; /* no lines deleted */
1840 }
1841 else
1842#endif
1843 if (oap->motion_type == MLINE)
1844 {
1845 if (oap->op_type == OP_CHANGE)
1846 {
1847 /* Delete the lines except the first one. Temporarily move the
1848 * cursor to the next line. Save the current line number, if the
1849 * last line is deleted it may be changed.
1850 */
1851 if (oap->line_count > 1)
1852 {
1853 lnum = curwin->w_cursor.lnum;
1854 ++curwin->w_cursor.lnum;
1855 del_lines((long)(oap->line_count - 1), TRUE);
1856 curwin->w_cursor.lnum = lnum;
1857 }
1858 if (u_save_cursor() == FAIL)
1859 return FAIL;
1860 if (curbuf->b_p_ai) /* don't delete indent */
1861 {
1862 beginline(BL_WHITE); /* cursor on first non-white */
1863 did_ai = TRUE; /* delete the indent when ESC hit */
1864 ai_col = curwin->w_cursor.col;
1865 }
1866 else
1867 beginline(0); /* cursor in column 0 */
1868 truncate_line(FALSE); /* delete the rest of the line */
1869 /* leave cursor past last char in line */
1870 if (oap->line_count > 1)
1871 u_clearline(); /* "U" command not possible after "2cc" */
1872 }
1873 else
1874 {
1875 del_lines(oap->line_count, TRUE);
1876 beginline(BL_WHITE | BL_FIX);
1877 u_clearline(); /* "U" command not possible after "dd" */
1878 }
1879 }
1880 else
1881 {
1882#ifdef FEAT_VIRTUALEDIT
1883 if (virtual_op)
1884 {
1885 int endcol = 0;
1886
1887 /* For virtualedit: break the tabs that are partly included. */
1888 if (gchar_pos(&oap->start) == '\t')
1889 {
1890 if (u_save_cursor() == FAIL) /* save first line for undo */
1891 return FAIL;
1892 if (oap->line_count == 1)
1893 endcol = getviscol2(oap->end.col, oap->end.coladd);
1894 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1895 oap->start = curwin->w_cursor;
1896 if (oap->line_count == 1)
1897 {
1898 coladvance(endcol);
1899 oap->end.col = curwin->w_cursor.col;
1900 oap->end.coladd = curwin->w_cursor.coladd;
1901 curwin->w_cursor = oap->start;
1902 }
1903 }
1904
1905 /* Break a tab only when it's included in the area. */
1906 if (gchar_pos(&oap->end) == '\t'
1907 && (int)oap->end.coladd < oap->inclusive)
1908 {
1909 /* save last line for undo */
1910 if (u_save((linenr_T)(oap->end.lnum - 1),
1911 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1912 return FAIL;
1913 curwin->w_cursor = oap->end;
1914 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1915 oap->end = curwin->w_cursor;
1916 curwin->w_cursor = oap->start;
1917 }
1918 }
1919#endif
1920
1921 if (oap->line_count == 1) /* delete characters within one line */
1922 {
1923 if (u_save_cursor() == FAIL) /* save line for undo */
1924 return FAIL;
1925
1926 /* if 'cpoptions' contains '$', display '$' at end of change */
1927 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
1928 && oap->op_type == OP_CHANGE
1929 && oap->end.lnum == curwin->w_cursor.lnum
1930#ifdef FEAT_VISUAL
1931 && !oap->is_VIsual
1932#endif
1933 )
1934 display_dollar(oap->end.col - !oap->inclusive);
1935
1936 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1937
1938#ifdef FEAT_VIRTUALEDIT
1939 if (virtual_op)
1940 {
1941 /* fix up things for virtualedit-delete:
1942 * break the tabs which are going to get in our way
1943 */
1944 char_u *curline = ml_get_curline();
1945 int len = (int)STRLEN(curline);
1946
1947 if (oap->end.coladd != 0
1948 && (int)oap->end.col >= len - 1
1949 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1950 n++;
1951 /* Delete at least one char (e.g, when on a control char). */
1952 if (n == 0 && oap->start.coladd != oap->end.coladd)
1953 n = 1;
1954
1955 /* When deleted a char in the line, reset coladd. */
1956 if (gchar_cursor() != NUL)
1957 curwin->w_cursor.coladd = 0;
1958 }
1959#endif
Bram Moolenaara554a192011-09-21 17:33:53 +02001960 if (oap->op_type == OP_DELETE
1961 && oap->inclusive
1962 && oap->end.lnum == curbuf->b_ml.ml_line_count
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001963 && n > (int)STRLEN(ml_get(oap->end.lnum)))
1964 {
1965 /* Special case: gH<Del> deletes the last line. */
1966 del_lines(1L, FALSE);
1967 }
1968 else
1969 {
1970 (void)del_bytes((long)n, !virtual_op, oap->op_type == OP_DELETE
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001971#ifdef FEAT_VISUAL
1972 && !oap->is_VIsual
1973#endif
1974 );
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 }
1977 else /* delete characters between lines */
1978 {
1979 pos_T curpos;
Bram Moolenaar5f1e3e42012-02-22 17:38:00 +01001980 int delete_last_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981
1982 /* save deleted and changed lines for undo */
1983 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1984 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1985 return FAIL;
1986
Bram Moolenaar5f1e3e42012-02-22 17:38:00 +01001987 delete_last_line = (oap->end.lnum == curbuf->b_ml.ml_line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 truncate_line(TRUE); /* delete from cursor to end of line */
1989
1990 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1991 ++curwin->w_cursor.lnum;
1992 del_lines((long)(oap->line_count - 2), FALSE);
1993
Bram Moolenaar9e98edf2012-03-07 19:30:36 +01001994 if (delete_last_line)
1995 oap->end.lnum = curbuf->b_ml.ml_line_count;
1996
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001997 n = (oap->end.col + 1 - !oap->inclusive);
Bram Moolenaar5f1e3e42012-02-22 17:38:00 +01001998 if (oap->inclusive && delete_last_line
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001999 && n > (int)STRLEN(ml_get(oap->end.lnum)))
2000 {
2001 /* Special case: gH<Del> deletes the last line. */
2002 del_lines(1L, FALSE);
2003 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
Bram Moolenaar66accae2012-01-10 13:44:27 +01002004 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
2005 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
Bram Moolenaar44286ca2011-07-15 17:51:34 +02002006 }
2007 else
2008 {
2009 /* delete from start of line until op_end */
2010 curwin->w_cursor.col = 0;
2011 (void)del_bytes((long)n, !virtual_op, oap->op_type == OP_DELETE
Bram Moolenaara9b1e742005-12-19 22:14:58 +00002012#ifdef FEAT_VISUAL
2013 && !oap->is_VIsual
2014#endif
2015 );
Bram Moolenaar44286ca2011-07-15 17:51:34 +02002016 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
2017 }
2018 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar81340392012-06-06 16:12:59 +02002019 (void)do_join(2, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 }
2021 }
2022
2023 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
2024
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002025#ifdef FEAT_VIRTUALEDIT
2026setmarks:
2027#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028#ifdef FEAT_VISUAL
2029 if (oap->block_mode)
2030 {
2031 curbuf->b_op_end.lnum = oap->end.lnum;
2032 curbuf->b_op_end.col = oap->start.col;
2033 }
2034 else
2035#endif
2036 curbuf->b_op_end = oap->start;
2037 curbuf->b_op_start = oap->start;
2038
2039 return OK;
2040}
2041
2042#ifdef FEAT_MBYTE
2043/*
2044 * Adjust end of operating area for ending on a multi-byte character.
2045 * Used for deletion.
2046 */
2047 static void
2048mb_adjust_opend(oap)
2049 oparg_T *oap;
2050{
2051 char_u *p;
2052
2053 if (oap->inclusive)
2054 {
2055 p = ml_get(oap->end.lnum);
2056 oap->end.col += mb_tail_off(p, p + oap->end.col);
2057 }
2058}
2059#endif
2060
2061#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2062/*
2063 * Replace a whole area with one character.
2064 */
2065 int
2066op_replace(oap, c)
2067 oparg_T *oap;
2068 int c;
2069{
2070 int n, numc;
2071#ifdef FEAT_MBYTE
2072 int num_chars;
2073#endif
2074 char_u *newp, *oldp;
2075 size_t oldlen;
2076 struct block_def bd;
Bram Moolenaard9820532013-11-04 01:41:17 +01002077 char_u *after_p = NULL;
2078 int had_ctrl_v_cr = (c == -1 || c == -2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079
2080 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2081 return OK; /* nothing to do */
2082
Bram Moolenaard9820532013-11-04 01:41:17 +01002083 if (had_ctrl_v_cr)
2084 c = (c == -1 ? '\r' : '\n');
2085
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086#ifdef FEAT_MBYTE
2087 if (has_mbyte)
2088 mb_adjust_opend(oap);
2089#endif
2090
2091 if (u_save((linenr_T)(oap->start.lnum - 1),
2092 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2093 return FAIL;
2094
2095 /*
2096 * block mode replace
2097 */
2098 if (oap->block_mode)
2099 {
2100 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2101 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2102 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002103 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2105 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2106 continue; /* nothing to replace */
2107
2108 /* n == number of extra chars required
2109 * If we split a TAB, it may be replaced by several characters.
2110 * Thus the number of characters may increase!
2111 */
2112#ifdef FEAT_VIRTUALEDIT
2113 /* If the range starts in virtual space, count the initial
2114 * coladd offset as part of "startspaces" */
2115 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2116 {
2117 pos_T vpos;
2118
Bram Moolenaara1381de2009-11-03 15:44:21 +00002119 vpos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 getvpos(&vpos, oap->start_vcol);
2121 bd.startspaces += vpos.coladd;
2122 n = bd.startspaces;
2123 }
2124 else
2125#endif
2126 /* allow for pre spaces */
2127 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2128
2129 /* allow for post spp */
2130 n += (bd.endspaces
2131#ifdef FEAT_VIRTUALEDIT
2132 && !bd.is_oneChar
2133#endif
2134 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2135 /* Figure out how many characters to replace. */
2136 numc = oap->end_vcol - oap->start_vcol + 1;
2137 if (bd.is_short && (!virtual_op || bd.is_MAX))
2138 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2139
2140#ifdef FEAT_MBYTE
2141 /* A double-wide character can be replaced only up to half the
2142 * times. */
2143 if ((*mb_char2cells)(c) > 1)
2144 {
2145 if ((numc & 1) && !bd.is_short)
2146 {
2147 ++bd.endspaces;
2148 ++n;
2149 }
2150 numc = numc / 2;
2151 }
2152
2153 /* Compute bytes needed, move character count to num_chars. */
2154 num_chars = numc;
2155 numc *= (*mb_char2len)(c);
2156#endif
2157 /* oldlen includes textlen, so don't double count */
2158 n += numc - bd.textlen;
2159
2160 oldp = ml_get_curline();
2161 oldlen = STRLEN(oldp);
2162 newp = alloc_check((unsigned)oldlen + 1 + n);
2163 if (newp == NULL)
2164 continue;
2165 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2166 /* copy up to deleted part */
2167 mch_memmove(newp, oldp, (size_t)bd.textcol);
2168 oldp += bd.textcol + bd.textlen;
2169 /* insert pre-spaces */
2170 copy_spaces(newp + bd.textcol, (size_t)bd.startspaces);
2171 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
Bram Moolenaard9820532013-11-04 01:41:17 +01002172 /* -1/-2 is used for entering CR literally. */
2173 if (had_ctrl_v_cr || (c != '\r' && c != '\n'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002175#ifdef FEAT_MBYTE
2176 if (has_mbyte)
2177 {
2178 n = (int)STRLEN(newp);
2179 while (--num_chars >= 0)
2180 n += (*mb_char2bytes)(c, newp + n);
2181 }
2182 else
2183#endif
2184 copy_chars(newp + STRLEN(newp), (size_t)numc, c);
2185 if (!bd.is_short)
2186 {
2187 /* insert post-spaces */
2188 copy_spaces(newp + STRLEN(newp), (size_t)bd.endspaces);
2189 /* copy the part after the changed part */
2190 STRMOVE(newp + STRLEN(newp), oldp);
2191 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 }
2193 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002195 /* Replacing with \r or \n means splitting the line. */
Bram Moolenaarefe06f42013-11-11 23:17:39 +01002196 after_p = alloc_check(
2197 (unsigned)(oldlen + 1 + n - STRLEN(newp)));
Bram Moolenaard9820532013-11-04 01:41:17 +01002198 if (after_p != NULL)
2199 STRMOVE(after_p, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 }
2201 /* replace the line */
2202 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
Bram Moolenaard9820532013-11-04 01:41:17 +01002203 if (after_p != NULL)
2204 {
2205 ml_append(curwin->w_cursor.lnum++, after_p, 0, FALSE);
2206 appended_lines_mark(curwin->w_cursor.lnum, 1L);
2207 oap->end.lnum++;
2208 vim_free(after_p);
2209 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 }
2211 }
2212 else
2213 {
2214 /*
2215 * MCHAR and MLINE motion replace.
2216 */
2217 if (oap->motion_type == MLINE)
2218 {
2219 oap->start.col = 0;
2220 curwin->w_cursor.col = 0;
2221 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2222 if (oap->end.col)
2223 --oap->end.col;
2224 }
2225 else if (!oap->inclusive)
2226 dec(&(oap->end));
2227
2228 while (ltoreq(curwin->w_cursor, oap->end))
2229 {
2230 n = gchar_cursor();
2231 if (n != NUL)
2232 {
2233#ifdef FEAT_MBYTE
2234 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2235 {
2236 /* This is slow, but it handles replacing a single-byte
2237 * with a multi-byte and the other way around. */
Bram Moolenaardb813952013-03-07 18:50:57 +01002238 if (curwin->w_cursor.lnum == oap->end.lnum)
2239 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 n = State;
2241 State = REPLACE;
2242 ins_char(c);
2243 State = n;
2244 /* Backup to the replaced character. */
2245 dec_cursor();
2246 }
2247 else
2248#endif
2249 {
2250#ifdef FEAT_VIRTUALEDIT
2251 if (n == TAB)
2252 {
2253 int end_vcol = 0;
2254
2255 if (curwin->w_cursor.lnum == oap->end.lnum)
2256 {
2257 /* oap->end has to be recalculated when
2258 * the tab breaks */
2259 end_vcol = getviscol2(oap->end.col,
2260 oap->end.coladd);
2261 }
2262 coladvance_force(getviscol());
2263 if (curwin->w_cursor.lnum == oap->end.lnum)
2264 getvpos(&oap->end, end_vcol);
2265 }
2266#endif
2267 pchar(curwin->w_cursor, c);
2268 }
2269 }
2270#ifdef FEAT_VIRTUALEDIT
2271 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2272 {
2273 int virtcols = oap->end.coladd;
2274
2275 if (curwin->w_cursor.lnum == oap->start.lnum
2276 && oap->start.col == oap->end.col && oap->start.coladd)
2277 virtcols -= oap->start.coladd;
2278
2279 /* oap->end has been trimmed so it's effectively inclusive;
2280 * as a result an extra +1 must be counted so we don't
2281 * trample the NUL byte. */
2282 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2283 curwin->w_cursor.col -= (virtcols + 1);
2284 for (; virtcols >= 0; virtcols--)
2285 {
2286 pchar(curwin->w_cursor, c);
2287 if (inc(&curwin->w_cursor) == -1)
2288 break;
2289 }
2290 }
2291#endif
2292
2293 /* Advance to next character, stop at the end of the file. */
2294 if (inc_cursor() == -1)
2295 break;
2296 }
2297 }
2298
2299 curwin->w_cursor = oap->start;
2300 check_cursor();
2301 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2302
2303 /* Set "'[" and "']" marks. */
2304 curbuf->b_op_start = oap->start;
2305 curbuf->b_op_end = oap->end;
2306
2307 return OK;
2308}
2309#endif
2310
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002311static int swapchars __ARGS((int op_type, pos_T *pos, int length));
2312
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313/*
2314 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2315 */
2316 void
2317op_tilde(oap)
2318 oparg_T *oap;
2319{
2320 pos_T pos;
2321#ifdef FEAT_VISUAL
2322 struct block_def bd;
Bram Moolenaar60a795a2005-09-16 21:55:43 +00002323#endif
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002324 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325
2326 if (u_save((linenr_T)(oap->start.lnum - 1),
2327 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2328 return;
2329
2330 pos = oap->start;
2331#ifdef FEAT_VISUAL
2332 if (oap->block_mode) /* Visual block mode */
2333 {
2334 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2335 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002336 int one_change;
2337
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 block_prep(oap, &bd, pos.lnum, FALSE);
2339 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002340 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2341 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002342
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002344 if (netbeans_active() && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345 {
2346 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2347
Bram Moolenaar009b2592004-10-24 19:18:58 +00002348 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2349 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002351 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 }
2353# endif
2354 }
2355 if (did_change)
2356 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2357 }
2358 else /* not block mode */
2359#endif
2360 {
2361 if (oap->motion_type == MLINE)
2362 {
2363 oap->start.col = 0;
2364 pos.col = 0;
2365 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2366 if (oap->end.col)
2367 --oap->end.col;
2368 }
2369 else if (!oap->inclusive)
2370 dec(&(oap->end));
2371
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002372 if (pos.lnum == oap->end.lnum)
2373 did_change = swapchars(oap->op_type, &pos,
2374 oap->end.col - pos.col + 1);
2375 else
2376 for (;;)
2377 {
2378 did_change |= swapchars(oap->op_type, &pos,
2379 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2380 (int)STRLEN(ml_get_pos(&pos)));
2381 if (ltoreq(oap->end, pos) || inc(&pos) == -1)
2382 break;
2383 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 if (did_change)
2385 {
2386 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2387 0L);
2388#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002389 if (netbeans_active() && did_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 {
2391 char_u *ptr;
2392 int count;
2393
2394 pos = oap->start;
2395 while (pos.lnum < oap->end.lnum)
2396 {
2397 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002398 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002399 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002401 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 pos.col = 0;
2403 pos.lnum++;
2404 }
2405 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2406 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002407 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002409 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 }
2411#endif
2412 }
2413 }
2414
2415#ifdef FEAT_VISUAL
2416 if (!did_change && oap->is_VIsual)
2417 /* No change: need to remove the Visual selection */
2418 redraw_curbuf_later(INVERTED);
2419#endif
2420
2421 /*
2422 * Set '[ and '] marks.
2423 */
2424 curbuf->b_op_start = oap->start;
2425 curbuf->b_op_end = oap->end;
2426
2427 if (oap->line_count > p_report)
2428 {
2429 if (oap->line_count == 1)
2430 MSG(_("1 line changed"));
2431 else
2432 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2433 }
2434}
2435
2436/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002437 * Invoke swapchar() on "length" bytes at position "pos".
2438 * "pos" is advanced to just after the changed characters.
2439 * "length" is rounded up to include the whole last multi-byte character.
2440 * Also works correctly when the number of bytes changes.
2441 * Returns TRUE if some character was changed.
2442 */
2443 static int
2444swapchars(op_type, pos, length)
2445 int op_type;
2446 pos_T *pos;
2447 int length;
2448{
2449 int todo;
2450 int did_change = 0;
2451
2452 for (todo = length; todo > 0; --todo)
2453 {
2454# ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002455 if (has_mbyte)
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002456 {
2457 int len = (*mb_ptr2len)(ml_get_pos(pos));
2458
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002459 /* we're counting bytes, not characters */
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002460 if (len > 0)
2461 todo -= len - 1;
2462 }
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002463# endif
2464 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002465 if (inc(pos) == -1) /* at end of file */
2466 break;
2467 }
2468 return did_change;
2469}
2470
2471/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 * If op_type == OP_UPPER: make uppercase,
2473 * if op_type == OP_LOWER: make lowercase,
2474 * if op_type == OP_ROT13: do rot13 encoding,
2475 * else swap case of character at 'pos'
2476 * returns TRUE when something actually changed.
2477 */
2478 int
2479swapchar(op_type, pos)
2480 int op_type;
2481 pos_T *pos;
2482{
2483 int c;
2484 int nc;
2485
2486 c = gchar_pos(pos);
2487
2488 /* Only do rot13 encoding for ASCII characters. */
2489 if (c >= 0x80 && op_type == OP_ROT13)
2490 return FALSE;
2491
2492#ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002493 if (op_type == OP_UPPER && c == 0xdf
2494 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002495 {
2496 pos_T sp = curwin->w_cursor;
2497
2498 /* Special handling of German sharp s: change to "SS". */
2499 curwin->w_cursor = *pos;
2500 del_char(FALSE);
2501 ins_char('S');
2502 ins_char('S');
2503 curwin->w_cursor = sp;
2504 inc(pos);
2505 }
2506
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2508 return FALSE;
2509#endif
2510 nc = c;
2511 if (MB_ISLOWER(c))
2512 {
2513 if (op_type == OP_ROT13)
2514 nc = ROT13(c, 'a');
2515 else if (op_type != OP_LOWER)
2516 nc = MB_TOUPPER(c);
2517 }
2518 else if (MB_ISUPPER(c))
2519 {
2520 if (op_type == OP_ROT13)
2521 nc = ROT13(c, 'A');
2522 else if (op_type != OP_UPPER)
2523 nc = MB_TOLOWER(c);
2524 }
2525 if (nc != c)
2526 {
2527#ifdef FEAT_MBYTE
2528 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2529 {
2530 pos_T sp = curwin->w_cursor;
2531
2532 curwin->w_cursor = *pos;
Bram Moolenaard1cb65e2010-08-01 14:22:48 +02002533 /* don't use del_char(), it also removes composing chars */
2534 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 ins_char(nc);
2536 curwin->w_cursor = sp;
2537 }
2538 else
2539#endif
2540 pchar(*pos, nc);
2541 return TRUE;
2542 }
2543 return FALSE;
2544}
2545
2546#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2547/*
2548 * op_insert - Insert and append operators for Visual mode.
2549 */
2550 void
2551op_insert(oap, count1)
2552 oparg_T *oap;
2553 long count1;
2554{
2555 long ins_len, pre_textlen = 0;
2556 char_u *firstline, *ins_text;
2557 struct block_def bd;
2558 int i;
2559
2560 /* edit() changes this - record it for OP_APPEND */
2561 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2562
2563 /* vis block is still marked. Get rid of it now. */
2564 curwin->w_cursor.lnum = oap->start.lnum;
2565 update_screen(INVERTED);
2566
2567 if (oap->block_mode)
2568 {
2569#ifdef FEAT_VIRTUALEDIT
2570 /* When 'virtualedit' is used, need to insert the extra spaces before
2571 * doing block_prep(). When only "block" is used, virtual edit is
2572 * already disabled, but still need it when calling
2573 * coladvance_force(). */
2574 if (curwin->w_cursor.coladd > 0)
2575 {
2576 int old_ve_flags = ve_flags;
2577
2578 ve_flags = VE_ALL;
2579 if (u_save_cursor() == FAIL)
2580 return;
2581 coladvance_force(oap->op_type == OP_APPEND
2582 ? oap->end_vcol + 1 : getviscol());
2583 if (oap->op_type == OP_APPEND)
2584 --curwin->w_cursor.col;
2585 ve_flags = old_ve_flags;
2586 }
2587#endif
2588 /* Get the info about the block before entering the text */
2589 block_prep(oap, &bd, oap->start.lnum, TRUE);
2590 firstline = ml_get(oap->start.lnum) + bd.textcol;
2591 if (oap->op_type == OP_APPEND)
2592 firstline += bd.textlen;
2593 pre_textlen = (long)STRLEN(firstline);
2594 }
2595
2596 if (oap->op_type == OP_APPEND)
2597 {
2598 if (oap->block_mode
2599#ifdef FEAT_VIRTUALEDIT
2600 && curwin->w_cursor.coladd == 0
2601#endif
2602 )
2603 {
2604 /* Move the cursor to the character right of the block. */
2605 curwin->w_set_curswant = TRUE;
2606 while (*ml_get_cursor() != NUL
2607 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2608 ++curwin->w_cursor.col;
2609 if (bd.is_short && !bd.is_MAX)
2610 {
2611 /* First line was too short, make it longer and adjust the
2612 * values in "bd". */
2613 if (u_save_cursor() == FAIL)
2614 return;
2615 for (i = 0; i < bd.endspaces; ++i)
2616 ins_char(' ');
2617 bd.textlen += bd.endspaces;
2618 }
2619 }
2620 else
2621 {
2622 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002623 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624
2625 /* Works just like an 'i'nsert on the next character. */
2626 if (!lineempty(curwin->w_cursor.lnum)
2627 && oap->start_vcol != oap->end_vcol)
2628 inc_cursor();
2629 }
2630 }
2631
2632 edit(NUL, FALSE, (linenr_T)count1);
2633
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002634 /* If user has moved off this line, we don't know what to do, so do
2635 * nothing.
2636 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2637 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 return;
2639
2640 if (oap->block_mode)
2641 {
2642 struct block_def bd2;
2643
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002644 /* The user may have moved the cursor before inserting something, try
2645 * to adjust the block for that. */
2646 if (oap->start.lnum == curbuf->b_op_start.lnum)
2647 {
2648 if (oap->op_type == OP_INSERT
2649 && oap->start.col != curbuf->b_op_start.col)
2650 {
2651 oap->start.col = curbuf->b_op_start.col;
2652 pre_textlen -= getviscol2(oap->start.col, oap->start.coladd)
2653 - oap->start_vcol;
2654 oap->start_vcol = getviscol2(oap->start.col, oap->start.coladd);
2655 }
2656 else if (oap->op_type == OP_APPEND
2657 && oap->end.col >= curbuf->b_op_start.col)
2658 {
2659 oap->start.col = curbuf->b_op_start.col;
2660 /* reset pre_textlen to the value of OP_INSERT */
2661 pre_textlen += bd.textlen;
2662 pre_textlen -= getviscol2(oap->start.col, oap->start.coladd)
2663 - oap->start_vcol;
2664 oap->start_vcol = getviscol2(oap->start.col, oap->start.coladd);
2665 oap->op_type = OP_INSERT;
2666 }
2667 }
2668
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669 /*
2670 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002671 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 * Don't do this when "$" used, end-of-line will have changed.
2673 */
2674 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2675 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2676 {
2677 if (oap->op_type == OP_APPEND)
2678 {
2679 pre_textlen += bd2.textlen - bd.textlen;
2680 if (bd2.endspaces)
2681 --bd2.textlen;
2682 }
2683 bd.textcol = bd2.textcol;
2684 bd.textlen = bd2.textlen;
2685 }
2686
2687 /*
2688 * Subsequent calls to ml_get() flush the firstline data - take a
2689 * copy of the required string.
2690 */
2691 firstline = ml_get(oap->start.lnum) + bd.textcol;
2692 if (oap->op_type == OP_APPEND)
2693 firstline += bd.textlen;
Bram Moolenaar5e4b9e92012-03-23 14:16:23 +01002694 if (pre_textlen >= 0
2695 && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 {
2697 ins_text = vim_strnsave(firstline, (int)ins_len);
2698 if (ins_text != NULL)
2699 {
2700 /* block handled here */
2701 if (u_save(oap->start.lnum,
2702 (linenr_T)(oap->end.lnum + 1)) == OK)
2703 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2704 &bd);
2705
2706 curwin->w_cursor.col = oap->start.col;
2707 check_cursor();
2708 vim_free(ins_text);
2709 }
2710 }
2711 }
2712}
2713#endif
2714
2715/*
2716 * op_change - handle a change operation
2717 *
2718 * return TRUE if edit() returns because of a CTRL-O command
2719 */
2720 int
2721op_change(oap)
2722 oparg_T *oap;
2723{
2724 colnr_T l;
2725 int retval;
2726#ifdef FEAT_VISUALEXTRA
2727 long offset;
2728 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002729 long ins_len;
2730 long pre_textlen = 0;
2731 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732 char_u *firstline;
2733 char_u *ins_text, *newp, *oldp;
2734 struct block_def bd;
2735#endif
2736
2737 l = oap->start.col;
2738 if (oap->motion_type == MLINE)
2739 {
2740 l = 0;
2741#ifdef FEAT_SMARTINDENT
2742 if (!p_paste && curbuf->b_p_si
2743# ifdef FEAT_CINDENT
2744 && !curbuf->b_p_cin
2745# endif
2746 )
2747 can_si = TRUE; /* It's like opening a new line, do si */
2748#endif
2749 }
2750
2751 /* First delete the text in the region. In an empty buffer only need to
2752 * save for undo */
2753 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2754 {
2755 if (u_save_cursor() == FAIL)
2756 return FALSE;
2757 }
2758 else if (op_delete(oap) == FAIL)
2759 return FALSE;
2760
2761 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
2762 && !virtual_op)
2763 inc_cursor();
2764
2765#ifdef FEAT_VISUALEXTRA
2766 /* check for still on same line (<CR> in inserted text meaningless) */
2767 /* skip blank lines too */
2768 if (oap->block_mode)
2769 {
2770# ifdef FEAT_VIRTUALEDIT
2771 /* Add spaces before getting the current line length. */
2772 if (virtual_op && (curwin->w_cursor.coladd > 0
2773 || gchar_cursor() == NUL))
2774 coladvance_force(getviscol());
2775# endif
Bram Moolenaar53241da2007-09-13 20:41:32 +00002776 firstline = ml_get(oap->start.lnum);
2777 pre_textlen = (long)STRLEN(firstline);
2778 pre_indent = (long)(skipwhite(firstline) - firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 bd.textcol = curwin->w_cursor.col;
2780 }
2781#endif
2782
2783#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2784 if (oap->motion_type == MLINE)
2785 fix_indent();
2786#endif
2787
2788 retval = edit(NUL, FALSE, (linenr_T)1);
2789
2790#ifdef FEAT_VISUALEXTRA
2791 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002792 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002794 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002796 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002798 /* Auto-indenting may have changed the indent. If the cursor was past
2799 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002801 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002803 long new_indent = (long)(skipwhite(firstline) - firstline);
2804
2805 pre_textlen += new_indent - pre_indent;
2806 bd.textcol += new_indent - pre_indent;
2807 }
2808
2809 ins_len = (long)STRLEN(firstline) - pre_textlen;
2810 if (ins_len > 0)
2811 {
2812 /* Subsequent calls to ml_get() flush the firstline data - take a
2813 * copy of the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2815 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002816 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2818 linenr++)
2819 {
2820 block_prep(oap, &bd, linenr, TRUE);
2821 if (!bd.is_short || virtual_op)
2822 {
2823# ifdef FEAT_VIRTUALEDIT
2824 pos_T vpos;
2825
2826 /* If the block starts in virtual space, count the
2827 * initial coladd offset as part of "startspaces" */
2828 if (bd.is_short)
2829 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002830 vpos.lnum = linenr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831 (void)getvpos(&vpos, oap->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 }
2833 else
2834 vpos.coladd = 0;
2835# endif
2836 oldp = ml_get(linenr);
2837 newp = alloc_check((unsigned)(STRLEN(oldp)
2838# ifdef FEAT_VIRTUALEDIT
2839 + vpos.coladd
2840# endif
2841 + ins_len + 1));
2842 if (newp == NULL)
2843 continue;
2844 /* copy up to block start */
2845 mch_memmove(newp, oldp, (size_t)bd.textcol);
2846 offset = bd.textcol;
2847# ifdef FEAT_VIRTUALEDIT
2848 copy_spaces(newp + offset, (size_t)vpos.coladd);
2849 offset += vpos.coladd;
2850# endif
2851 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2852 offset += ins_len;
2853 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002854 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 ml_replace(linenr, newp, FALSE);
2856 }
2857 }
2858 check_cursor();
2859
2860 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2861 }
2862 vim_free(ins_text);
2863 }
2864 }
2865#endif
2866
2867 return retval;
2868}
2869
2870/*
2871 * set all the yank registers to empty (called from main())
2872 */
2873 void
2874init_yank()
2875{
2876 int i;
2877
2878 for (i = 0; i < NUM_REGISTERS; ++i)
2879 y_regs[i].y_array = NULL;
2880}
2881
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002882#if defined(EXITFREE) || defined(PROTO)
2883 void
2884clear_registers()
2885{
2886 int i;
2887
2888 for (i = 0; i < NUM_REGISTERS; ++i)
2889 {
2890 y_current = &y_regs[i];
2891 if (y_current->y_array != NULL)
2892 free_yank_all();
2893 }
2894}
2895#endif
2896
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897/*
2898 * Free "n" lines from the current yank register.
2899 * Called for normal freeing and in case of error.
2900 */
2901 static void
2902free_yank(n)
2903 long n;
2904{
2905 if (y_current->y_array != NULL)
2906 {
2907 long i;
2908
2909 for (i = n; --i >= 0; )
2910 {
2911#ifdef AMIGA /* only for very slow machines */
2912 if ((i & 1023) == 1023) /* this may take a while */
2913 {
2914 /*
2915 * This message should never cause a hit-return message.
2916 * Overwrite this message with any next message.
2917 */
2918 ++no_wait_return;
2919 smsg((char_u *)_("freeing %ld lines"), i + 1);
2920 --no_wait_return;
2921 msg_didout = FALSE;
2922 msg_col = 0;
2923 }
2924#endif
2925 vim_free(y_current->y_array[i]);
2926 }
2927 vim_free(y_current->y_array);
2928 y_current->y_array = NULL;
2929#ifdef AMIGA
2930 if (n >= 1000)
2931 MSG("");
2932#endif
2933 }
2934}
2935
2936 static void
2937free_yank_all()
2938{
2939 free_yank(y_current->y_size);
2940}
2941
2942/*
2943 * Yank the text between "oap->start" and "oap->end" into a yank register.
2944 * If we are to append (uppercase register), we first yank into a new yank
2945 * register and then concatenate the old and the new one (so we keep the old
2946 * one in case of out-of-memory).
2947 *
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02002948 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 */
2950 int
2951op_yank(oap, deleting, mess)
2952 oparg_T *oap;
2953 int deleting;
2954 int mess;
2955{
2956 long y_idx; /* index in y_array[] */
2957 struct yankreg *curr; /* copy of y_current */
2958 struct yankreg newreg; /* new yank register when appending */
2959 char_u **new_ptr;
2960 linenr_T lnum; /* current line number */
2961 long j;
2962 int yanktype = oap->motion_type;
2963 long yanklines = oap->line_count;
2964 linenr_T yankendlnum = oap->end.lnum;
2965 char_u *p;
2966 char_u *pnew;
2967 struct block_def bd;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01002968#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01002969 int did_star = FALSE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01002970#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971
2972 /* check for read-only register */
2973 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2974 {
2975 beep_flush();
2976 return FAIL;
2977 }
2978 if (oap->regname == '_') /* black hole: nothing to do */
2979 return OK;
2980
2981#ifdef FEAT_CLIPBOARD
2982 if (!clip_star.available && oap->regname == '*')
2983 oap->regname = 0;
2984 else if (!clip_plus.available && oap->regname == '+')
2985 oap->regname = 0;
2986#endif
2987
2988 if (!deleting) /* op_delete() already set y_current */
2989 get_yank_register(oap->regname, TRUE);
2990
2991 curr = y_current;
2992 /* append to existing contents */
2993 if (y_append && y_current->y_array != NULL)
2994 y_current = &newreg;
2995 else
2996 free_yank_all(); /* free previously yanked lines */
2997
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002998 /*
2999 * If the cursor was in column 1 before and after the movement, and the
3000 * operator is not inclusive, the yank is always linewise.
3001 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 if ( oap->motion_type == MCHAR
3003 && oap->start.col == 0
3004 && !oap->inclusive
3005#ifdef FEAT_VISUAL
3006 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00003007 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008#endif
3009 && oap->end.col == 0
3010 && yanklines > 1)
3011 {
3012 yanktype = MLINE;
3013 --yankendlnum;
3014 --yanklines;
3015 }
3016
3017 y_current->y_size = yanklines;
3018 y_current->y_type = yanktype; /* set the yank register type */
3019#ifdef FEAT_VISUAL
3020 y_current->y_width = 0;
3021#endif
3022 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
3023 yanklines), TRUE);
3024
3025 if (y_current->y_array == NULL)
3026 {
3027 y_current = curr;
3028 return FAIL;
3029 }
3030
3031 y_idx = 0;
3032 lnum = oap->start.lnum;
3033
3034#ifdef FEAT_VISUAL
3035 if (oap->block_mode)
3036 {
3037 /* Visual block mode */
3038 y_current->y_type = MBLOCK; /* set the yank register type */
3039 y_current->y_width = oap->end_vcol - oap->start_vcol;
3040
3041 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
3042 y_current->y_width--;
3043 }
3044#endif
3045
3046 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
3047 {
3048 switch (y_current->y_type)
3049 {
3050#ifdef FEAT_VISUAL
3051 case MBLOCK:
3052 block_prep(oap, &bd, lnum, FALSE);
3053 if (yank_copy_line(&bd, y_idx) == FAIL)
3054 goto fail;
3055 break;
3056#endif
3057
3058 case MLINE:
3059 if ((y_current->y_array[y_idx] =
3060 vim_strsave(ml_get(lnum))) == NULL)
3061 goto fail;
3062 break;
3063
3064 case MCHAR:
3065 {
3066 colnr_T startcol = 0, endcol = MAXCOL;
3067#ifdef FEAT_VIRTUALEDIT
3068 int is_oneChar = FALSE;
3069 colnr_T cs, ce;
3070#endif
3071 p = ml_get(lnum);
3072 bd.startspaces = 0;
3073 bd.endspaces = 0;
3074
3075 if (lnum == oap->start.lnum)
3076 {
3077 startcol = oap->start.col;
3078#ifdef FEAT_VIRTUALEDIT
3079 if (virtual_op)
3080 {
3081 getvcol(curwin, &oap->start, &cs, NULL, &ce);
3082 if (ce != cs && oap->start.coladd > 0)
3083 {
3084 /* Part of a tab selected -- but don't
3085 * double-count it. */
3086 bd.startspaces = (ce - cs + 1)
3087 - oap->start.coladd;
3088 startcol++;
3089 }
3090 }
3091#endif
3092 }
3093
3094 if (lnum == oap->end.lnum)
3095 {
3096 endcol = oap->end.col;
3097#ifdef FEAT_VIRTUALEDIT
3098 if (virtual_op)
3099 {
3100 getvcol(curwin, &oap->end, &cs, NULL, &ce);
3101 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
3102# ifdef FEAT_MBYTE
3103 /* Don't add space for double-wide
3104 * char; endcol will be on last byte
3105 * of multi-byte char. */
3106 && (*mb_head_off)(p, p + endcol) == 0
3107# endif
3108 ))
3109 {
3110 if (oap->start.lnum == oap->end.lnum
3111 && oap->start.col == oap->end.col)
3112 {
3113 /* Special case: inside a single char */
3114 is_oneChar = TRUE;
3115 bd.startspaces = oap->end.coladd
3116 - oap->start.coladd + oap->inclusive;
3117 endcol = startcol;
3118 }
3119 else
3120 {
3121 bd.endspaces = oap->end.coladd
3122 + oap->inclusive;
3123 endcol -= oap->inclusive;
3124 }
3125 }
3126 }
3127#endif
3128 }
Bram Moolenaar18e00d22012-05-18 12:49:40 +02003129 if (endcol == MAXCOL)
3130 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 if (startcol > endcol
3132#ifdef FEAT_VIRTUALEDIT
3133 || is_oneChar
3134#endif
3135 )
3136 bd.textlen = 0;
3137 else
3138 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 bd.textlen = endcol - startcol + oap->inclusive;
3140 }
3141 bd.textstart = p + startcol;
3142 if (yank_copy_line(&bd, y_idx) == FAIL)
3143 goto fail;
3144 break;
3145 }
3146 /* NOTREACHED */
3147 }
3148 }
3149
3150 if (curr != y_current) /* append the new block to the old block */
3151 {
3152 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3153 (curr->y_size + y_current->y_size)), TRUE);
3154 if (new_ptr == NULL)
3155 goto fail;
3156 for (j = 0; j < curr->y_size; ++j)
3157 new_ptr[j] = curr->y_array[j];
3158 vim_free(curr->y_array);
3159 curr->y_array = new_ptr;
3160
3161 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3162 curr->y_type = MLINE;
3163
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003164 /* Concatenate the last line of the old block with the first line of
3165 * the new block, unless being Vi compatible. */
3166 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 {
3168 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3169 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3170 if (pnew == NULL)
3171 {
3172 y_idx = y_current->y_size - 1;
3173 goto fail;
3174 }
3175 STRCPY(pnew, curr->y_array[--j]);
3176 STRCAT(pnew, y_current->y_array[0]);
3177 vim_free(curr->y_array[j]);
3178 vim_free(y_current->y_array[0]);
3179 curr->y_array[j++] = pnew;
3180 y_idx = 1;
3181 }
3182 else
3183 y_idx = 0;
3184 while (y_idx < y_current->y_size)
3185 curr->y_array[j++] = y_current->y_array[y_idx++];
3186 curr->y_size = j;
3187 vim_free(y_current->y_array);
3188 y_current = curr;
3189 }
3190 if (mess) /* Display message about yank? */
3191 {
3192 if (yanktype == MCHAR
3193#ifdef FEAT_VISUAL
3194 && !oap->block_mode
3195#endif
3196 && yanklines == 1)
3197 yanklines = 0;
3198 /* Some versions of Vi use ">=" here, some don't... */
3199 if (yanklines > p_report)
3200 {
3201 /* redisplay now, so message is not deleted */
3202 update_topline_redraw();
3203 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003204 {
3205#ifdef FEAT_VISUAL
3206 if (oap->block_mode)
3207 MSG(_("block of 1 line yanked"));
3208 else
3209#endif
3210 MSG(_("1 line yanked"));
3211 }
3212#ifdef FEAT_VISUAL
3213 else if (oap->block_mode)
3214 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
3215#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 else
3217 smsg((char_u *)_("%ld lines yanked"), yanklines);
3218 }
3219 }
3220
3221 /*
3222 * Set "'[" and "']" marks.
3223 */
3224 curbuf->b_op_start = oap->start;
3225 curbuf->b_op_end = oap->end;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003226 if (yanktype == MLINE
3227#ifdef FEAT_VISUAL
3228 && !oap->block_mode
3229#endif
3230 )
3231 {
3232 curbuf->b_op_start.col = 0;
3233 curbuf->b_op_end.col = MAXCOL;
3234 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235
3236#ifdef FEAT_CLIPBOARD
3237 /*
3238 * If we were yanking to the '*' register, send result to clipboard.
3239 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3240 * to the '*' register.
3241 */
3242 if (clip_star.available
3243 && (curr == &(y_regs[STAR_REGISTER])
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003244 || (!deleting && oap->regname == 0
3245 && (clip_unnamed & CLIP_UNNAMED))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246 {
3247 if (curr != &(y_regs[STAR_REGISTER]))
3248 /* Copy the text from register 0 to the clipboard register. */
3249 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3250
3251 clip_own_selection(&clip_star);
3252 clip_gen_set_selection(&clip_star);
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003253# ifdef FEAT_X11
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003254 did_star = TRUE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003255# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 }
3257
3258# ifdef FEAT_X11
3259 /*
3260 * If we were yanking to the '+' register, send result to selection.
3261 * Also copy to the '*' register, in case auto-select is off.
3262 */
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003263 if (clip_plus.available
3264 && (curr == &(y_regs[PLUS_REGISTER])
3265 || (!deleting && oap->regname == 0
3266 && (clip_unnamed & CLIP_UNNAMED_PLUS))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 {
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003268 if (curr != &(y_regs[PLUS_REGISTER]))
3269 /* Copy the text from register 0 to the clipboard register. */
3270 copy_yank_reg(&(y_regs[PLUS_REGISTER]));
3271
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 clip_own_selection(&clip_plus);
3273 clip_gen_set_selection(&clip_plus);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003274 if (!clip_isautosel_star() && !did_star
3275 && curr == &(y_regs[PLUS_REGISTER]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 {
3277 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3278 clip_own_selection(&clip_star);
3279 clip_gen_set_selection(&clip_star);
3280 }
3281 }
3282# endif
3283#endif
3284
3285 return OK;
3286
3287fail: /* free the allocated lines */
3288 free_yank(y_idx + 1);
3289 y_current = curr;
3290 return FAIL;
3291}
3292
3293 static int
3294yank_copy_line(bd, y_idx)
3295 struct block_def *bd;
3296 long y_idx;
3297{
3298 char_u *pnew;
3299
3300 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3301 == NULL)
3302 return FAIL;
3303 y_current->y_array[y_idx] = pnew;
3304 copy_spaces(pnew, (size_t)bd->startspaces);
3305 pnew += bd->startspaces;
3306 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3307 pnew += bd->textlen;
3308 copy_spaces(pnew, (size_t)bd->endspaces);
3309 pnew += bd->endspaces;
3310 *pnew = NUL;
3311 return OK;
3312}
3313
3314#ifdef FEAT_CLIPBOARD
3315/*
3316 * Make a copy of the y_current register to register "reg".
3317 */
3318 static void
3319copy_yank_reg(reg)
3320 struct yankreg *reg;
3321{
3322 struct yankreg *curr = y_current;
3323 long j;
3324
3325 y_current = reg;
3326 free_yank_all();
3327 *y_current = *curr;
3328 y_current->y_array = (char_u **)lalloc_clear(
3329 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3330 if (y_current->y_array == NULL)
3331 y_current->y_size = 0;
3332 else
3333 for (j = 0; j < y_current->y_size; ++j)
3334 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3335 {
3336 free_yank(j);
3337 y_current->y_size = 0;
3338 break;
3339 }
3340 y_current = curr;
3341}
3342#endif
3343
3344/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003345 * Put contents of register "regname" into the text.
3346 * Caller must check "regname" to be valid!
3347 * "flags": PUT_FIXINDENT make indent look nice
3348 * PUT_CURSEND leave cursor after end of new text
3349 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 */
3351 void
3352do_put(regname, dir, count, flags)
3353 int regname;
3354 int dir; /* BACKWARD for 'P', FORWARD for 'p' */
3355 long count;
3356 int flags;
3357{
3358 char_u *ptr;
3359 char_u *newp, *oldp;
3360 int yanklen;
3361 int totlen = 0; /* init for gcc */
3362 linenr_T lnum;
3363 colnr_T col;
3364 long i; /* index in y_array[] */
3365 int y_type;
3366 long y_size;
3367#ifdef FEAT_VISUAL
3368 int oldlen;
3369 long y_width = 0;
3370 colnr_T vcol;
3371 int delcount;
3372 int incr = 0;
3373 long j;
3374 struct block_def bd;
3375#endif
3376 char_u **y_array = NULL;
3377 long nr_lines = 0;
3378 pos_T new_cursor;
3379 int indent;
3380 int orig_indent = 0; /* init for gcc */
3381 int indent_diff = 0; /* init for gcc */
3382 int first_indent = TRUE;
3383 int lendiff = 0;
3384 pos_T old_pos;
3385 char_u *insert_string = NULL;
3386 int allocated = FALSE;
3387 long cnt;
3388
3389#ifdef FEAT_CLIPBOARD
3390 /* Adjust register name for "unnamed" in 'clipboard'. */
3391 adjust_clip_reg(&regname);
3392 (void)may_get_selection(regname);
3393#endif
3394
3395 if (flags & PUT_FIXINDENT)
3396 orig_indent = get_indent();
3397
3398 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3399 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3400
3401 /*
3402 * Using inserted text works differently, because the register includes
3403 * special characters (newlines, etc.).
3404 */
3405 if (regname == '.')
3406 {
3407 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3408 (count == -1 ? 'O' : 'i')), count, FALSE);
3409 /* Putting the text is done later, so can't really move the cursor to
3410 * the next character. Use "l" to simulate it. */
3411 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3412 stuffcharReadbuff('l');
3413 return;
3414 }
3415
3416 /*
3417 * For special registers '%' (file name), '#' (alternate file name) and
3418 * ':' (last command line), etc. we have to create a fake yank register.
3419 */
3420 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3421 {
3422 if (insert_string == NULL)
3423 return;
3424 }
3425
Bram Moolenaar27356ad2012-12-12 16:11:36 +01003426#ifdef FEAT_AUTOCMD
3427 /* Autocommands may be executed when saving lines for undo, which may make
3428 * y_array invalid. Start undo now to avoid that. */
3429 u_save(curwin->w_cursor.lnum, curwin->w_cursor.lnum + 1);
3430#endif
3431
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 if (insert_string != NULL)
3433 {
3434 y_type = MCHAR;
3435#ifdef FEAT_EVAL
3436 if (regname == '=')
3437 {
3438 /* For the = register we need to split the string at NL
Bram Moolenaara554a192011-09-21 17:33:53 +02003439 * characters.
3440 * Loop twice: count the number of lines and save them. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 for (;;)
3442 {
3443 y_size = 0;
3444 ptr = insert_string;
3445 while (ptr != NULL)
3446 {
3447 if (y_array != NULL)
3448 y_array[y_size] = ptr;
3449 ++y_size;
3450 ptr = vim_strchr(ptr, '\n');
3451 if (ptr != NULL)
3452 {
3453 if (y_array != NULL)
3454 *ptr = NUL;
3455 ++ptr;
Bram Moolenaara554a192011-09-21 17:33:53 +02003456 /* A trailing '\n' makes the register linewise. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 if (*ptr == NUL)
3458 {
3459 y_type = MLINE;
3460 break;
3461 }
3462 }
3463 }
3464 if (y_array != NULL)
3465 break;
3466 y_array = (char_u **)alloc((unsigned)
3467 (y_size * sizeof(char_u *)));
3468 if (y_array == NULL)
3469 goto end;
3470 }
3471 }
3472 else
3473#endif
3474 {
3475 y_size = 1; /* use fake one-line yank register */
3476 y_array = &insert_string;
3477 }
3478 }
3479 else
3480 {
3481 get_yank_register(regname, FALSE);
3482
3483 y_type = y_current->y_type;
3484#ifdef FEAT_VISUAL
3485 y_width = y_current->y_width;
3486#endif
3487 y_size = y_current->y_size;
3488 y_array = y_current->y_array;
3489 }
3490
3491#ifdef FEAT_VISUAL
3492 if (y_type == MLINE)
3493 {
3494 if (flags & PUT_LINE_SPLIT)
3495 {
3496 /* "p" or "P" in Visual mode: split the lines to put the text in
3497 * between. */
3498 if (u_save_cursor() == FAIL)
3499 goto end;
3500 ptr = vim_strsave(ml_get_cursor());
3501 if (ptr == NULL)
3502 goto end;
3503 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3504 vim_free(ptr);
3505
3506 ptr = vim_strnsave(ml_get_curline(), curwin->w_cursor.col);
3507 if (ptr == NULL)
3508 goto end;
3509 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3510 ++nr_lines;
3511 dir = FORWARD;
3512 }
3513 if (flags & PUT_LINE_FORWARD)
3514 {
3515 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003516 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 dir = FORWARD;
3518 }
3519 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3520 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3521 }
3522#endif
3523
3524 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3525 y_type = MLINE;
3526
3527 if (y_size == 0 || y_array == NULL)
3528 {
3529 EMSG2(_("E353: Nothing in register %s"),
3530 regname == 0 ? (char_u *)"\"" : transchar(regname));
3531 goto end;
3532 }
3533
3534#ifdef FEAT_VISUAL
3535 if (y_type == MBLOCK)
3536 {
3537 lnum = curwin->w_cursor.lnum + y_size + 1;
3538 if (lnum > curbuf->b_ml.ml_line_count)
3539 lnum = curbuf->b_ml.ml_line_count + 1;
3540 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3541 goto end;
3542 }
3543 else
3544#endif
3545 if (y_type == MLINE)
3546 {
3547 lnum = curwin->w_cursor.lnum;
3548#ifdef FEAT_FOLDING
3549 /* Correct line number for closed fold. Don't move the cursor yet,
3550 * u_save() uses it. */
3551 if (dir == BACKWARD)
3552 (void)hasFolding(lnum, &lnum, NULL);
3553 else
3554 (void)hasFolding(lnum, NULL, &lnum);
3555#endif
3556 if (dir == FORWARD)
3557 ++lnum;
Bram Moolenaar10315b12013-06-29 17:19:28 +02003558 /* In an empty buffer the empty line is going to be replaced, include
3559 * it in the saved lines. */
Bram Moolenaarcaf2dff2013-07-03 14:19:54 +02003560 if ((bufempty() ? u_save(0, 2) : u_save(lnum - 1, lnum)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 goto end;
3562#ifdef FEAT_FOLDING
3563 if (dir == FORWARD)
3564 curwin->w_cursor.lnum = lnum - 1;
3565 else
3566 curwin->w_cursor.lnum = lnum;
3567 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3568#endif
3569 }
3570 else if (u_save_cursor() == FAIL)
3571 goto end;
3572
3573 yanklen = (int)STRLEN(y_array[0]);
3574
3575#ifdef FEAT_VIRTUALEDIT
3576 if (ve_flags == VE_ALL && y_type == MCHAR)
3577 {
3578 if (gchar_cursor() == TAB)
3579 {
3580 /* Don't need to insert spaces when "p" on the last position of a
3581 * tab or "P" on the first position. */
3582 if (dir == FORWARD
3583 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3584 : curwin->w_cursor.coladd > 0)
3585 coladvance_force(getviscol());
3586 else
3587 curwin->w_cursor.coladd = 0;
3588 }
3589 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3590 coladvance_force(getviscol() + (dir == FORWARD));
3591 }
3592#endif
3593
3594 lnum = curwin->w_cursor.lnum;
3595 col = curwin->w_cursor.col;
3596
3597#ifdef FEAT_VISUAL
3598 /*
3599 * Block mode
3600 */
3601 if (y_type == MBLOCK)
3602 {
3603 char c = gchar_cursor();
3604 colnr_T endcol2 = 0;
3605
3606 if (dir == FORWARD && c != NUL)
3607 {
3608#ifdef FEAT_VIRTUALEDIT
3609 if (ve_flags == VE_ALL)
3610 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3611 else
3612#endif
3613 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3614
3615#ifdef FEAT_MBYTE
3616 if (has_mbyte)
3617 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003618 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619 else
3620#endif
3621#ifdef FEAT_VIRTUALEDIT
3622 if (c != TAB || ve_flags != VE_ALL)
3623#endif
3624 ++curwin->w_cursor.col;
3625 ++col;
3626 }
3627 else
3628 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3629
3630#ifdef FEAT_VIRTUALEDIT
3631 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003632 if (ve_flags == VE_ALL
3633 && (curwin->w_cursor.coladd > 0
3634 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 {
3636 if (dir == FORWARD && c == NUL)
3637 ++col;
3638 if (dir != FORWARD && c != NUL)
3639 ++curwin->w_cursor.col;
3640 if (c == TAB)
3641 {
3642 if (dir == BACKWARD && curwin->w_cursor.col)
3643 curwin->w_cursor.col--;
3644 if (dir == FORWARD && col - 1 == endcol2)
3645 curwin->w_cursor.col++;
3646 }
3647 }
3648 curwin->w_cursor.coladd = 0;
3649#endif
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003650 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 for (i = 0; i < y_size; ++i)
3652 {
3653 int spaces;
3654 char shortline;
3655
3656 bd.startspaces = 0;
3657 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 vcol = 0;
3659 delcount = 0;
3660
3661 /* add a new line */
3662 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3663 {
3664 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3665 (colnr_T)1, FALSE) == FAIL)
3666 break;
3667 ++nr_lines;
3668 }
3669 /* get the old line and advance to the position to insert at */
3670 oldp = ml_get_curline();
3671 oldlen = (int)STRLEN(oldp);
3672 for (ptr = oldp; vcol < col && *ptr; )
3673 {
3674 /* Count a tab for what it's worth (if list mode not on) */
3675 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
3676 vcol += incr;
3677 }
3678 bd.textcol = (colnr_T)(ptr - oldp);
3679
3680 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3681
3682 if (vcol < col) /* line too short, padd with spaces */
3683 bd.startspaces = col - vcol;
3684 else if (vcol > col)
3685 {
3686 bd.endspaces = vcol - col;
3687 bd.startspaces = incr - bd.endspaces;
3688 --bd.textcol;
3689 delcount = 1;
3690#ifdef FEAT_MBYTE
3691 if (has_mbyte)
3692 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3693#endif
3694 if (oldp[bd.textcol] != TAB)
3695 {
3696 /* Only a Tab can be split into spaces. Other
3697 * characters will have to be moved to after the
3698 * block, causing misalignment. */
3699 delcount = 0;
3700 bd.endspaces = 0;
3701 }
3702 }
3703
3704 yanklen = (int)STRLEN(y_array[i]);
3705
3706 /* calculate number of spaces required to fill right side of block*/
3707 spaces = y_width + 1;
3708 for (j = 0; j < yanklen; j++)
3709 spaces -= lbr_chartabsize(&y_array[i][j], 0);
3710 if (spaces < 0)
3711 spaces = 0;
3712
3713 /* insert the new text */
3714 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3715 newp = alloc_check((unsigned)totlen + oldlen + 1);
3716 if (newp == NULL)
3717 break;
3718 /* copy part up to cursor to new line */
3719 ptr = newp;
3720 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3721 ptr += bd.textcol;
3722 /* may insert some spaces before the new text */
3723 copy_spaces(ptr, (size_t)bd.startspaces);
3724 ptr += bd.startspaces;
3725 /* insert the new text */
3726 for (j = 0; j < count; ++j)
3727 {
3728 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3729 ptr += yanklen;
3730
3731 /* insert block's trailing spaces only if there's text behind */
3732 if ((j < count - 1 || !shortline) && spaces)
3733 {
3734 copy_spaces(ptr, (size_t)spaces);
3735 ptr += spaces;
3736 }
3737 }
3738 /* may insert some spaces after the new text */
3739 copy_spaces(ptr, (size_t)bd.endspaces);
3740 ptr += bd.endspaces;
3741 /* move the text after the cursor to the end of the line. */
3742 mch_memmove(ptr, oldp + bd.textcol + delcount,
3743 (size_t)(oldlen - bd.textcol - delcount + 1));
3744 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3745
3746 ++curwin->w_cursor.lnum;
3747 if (i == 0)
3748 curwin->w_cursor.col += bd.startspaces;
3749 }
3750
3751 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3752
3753 /* Set '[ mark. */
3754 curbuf->b_op_start = curwin->w_cursor;
3755 curbuf->b_op_start.lnum = lnum;
3756
3757 /* adjust '] mark */
3758 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3759 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003760# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003762# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 if (flags & PUT_CURSEND)
3764 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003765 colnr_T len;
3766
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 curwin->w_cursor = curbuf->b_op_end;
3768 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003769
3770 /* in Insert mode we might be after the NUL, correct for that */
3771 len = (colnr_T)STRLEN(ml_get_curline());
3772 if (curwin->w_cursor.col > len)
3773 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 }
3775 else
3776 curwin->w_cursor.lnum = lnum;
3777 }
3778 else
3779#endif
3780 {
3781 /*
3782 * Character or Line mode
3783 */
3784 if (y_type == MCHAR)
3785 {
3786 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3787 * char */
3788 if (dir == FORWARD && gchar_cursor() != NUL)
3789 {
3790#ifdef FEAT_MBYTE
3791 if (has_mbyte)
3792 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003793 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794
3795 /* put it on the next of the multi-byte character. */
3796 col += bytelen;
3797 if (yanklen)
3798 {
3799 curwin->w_cursor.col += bytelen;
3800 curbuf->b_op_end.col += bytelen;
3801 }
3802 }
3803 else
3804#endif
3805 {
3806 ++col;
3807 if (yanklen)
3808 {
3809 ++curwin->w_cursor.col;
3810 ++curbuf->b_op_end.col;
3811 }
3812 }
3813 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 curbuf->b_op_start = curwin->w_cursor;
3815 }
3816 /*
3817 * Line mode: BACKWARD is the same as FORWARD on the previous line
3818 */
3819 else if (dir == BACKWARD)
3820 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003821 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822
3823 /*
3824 * simple case: insert into current line
3825 */
3826 if (y_type == MCHAR && y_size == 1)
3827 {
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003828 do {
3829 totlen = count * yanklen;
3830 if (totlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 {
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003832 oldp = ml_get(lnum);
3833 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3834 if (newp == NULL)
3835 goto end; /* alloc() gave an error message */
3836 mch_memmove(newp, oldp, (size_t)col);
3837 ptr = newp + col;
3838 for (i = 0; i < count; ++i)
3839 {
3840 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3841 ptr += yanklen;
3842 }
3843 STRMOVE(ptr, oldp + col);
3844 ml_replace(lnum, newp, FALSE);
3845 /* Place cursor on last putted char. */
3846 if (lnum == curwin->w_cursor.lnum)
3847 curwin->w_cursor.col += (colnr_T)(totlen - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003849#ifdef FEAT_VISUAL
3850 if (VIsual_active)
3851 lnum++;
3852#endif
3853 } while (
3854#ifdef FEAT_VISUAL
3855 VIsual_active && lnum <= curbuf->b_visual.vi_end.lnum
3856#else
3857 FALSE /* stop after 1 paste */
3858#endif
3859 );
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003860
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 curbuf->b_op_end = curwin->w_cursor;
3862 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3863 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3864 ++curwin->w_cursor.col;
3865 changed_bytes(lnum, col);
3866 }
3867 else
3868 {
3869 /*
3870 * Insert at least one line. When y_type is MCHAR, break the first
3871 * line in two.
3872 */
3873 for (cnt = 1; cnt <= count; ++cnt)
3874 {
3875 i = 0;
3876 if (y_type == MCHAR)
3877 {
3878 /*
3879 * Split the current line in two at the insert position.
3880 * First insert y_array[size - 1] in front of second line.
3881 * Then append y_array[0] to first line.
3882 */
3883 lnum = new_cursor.lnum;
3884 ptr = ml_get(lnum) + col;
3885 totlen = (int)STRLEN(y_array[y_size - 1]);
3886 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3887 if (newp == NULL)
3888 goto error;
3889 STRCPY(newp, y_array[y_size - 1]);
3890 STRCAT(newp, ptr);
3891 /* insert second line */
3892 ml_append(lnum, newp, (colnr_T)0, FALSE);
3893 vim_free(newp);
3894
3895 oldp = ml_get(lnum);
3896 newp = alloc_check((unsigned)(col + yanklen + 1));
3897 if (newp == NULL)
3898 goto error;
3899 /* copy first part of line */
3900 mch_memmove(newp, oldp, (size_t)col);
3901 /* append to first line */
3902 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3903 ml_replace(lnum, newp, FALSE);
3904
3905 curwin->w_cursor.lnum = lnum;
3906 i = 1;
3907 }
3908
3909 for (; i < y_size; ++i)
3910 {
3911 if ((y_type != MCHAR || i < y_size - 1)
3912 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3913 == FAIL)
3914 goto error;
3915 lnum++;
3916 ++nr_lines;
3917 if (flags & PUT_FIXINDENT)
3918 {
3919 old_pos = curwin->w_cursor;
3920 curwin->w_cursor.lnum = lnum;
3921 ptr = ml_get(lnum);
3922 if (cnt == count && i == y_size - 1)
3923 lendiff = (int)STRLEN(ptr);
3924#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3925 if (*ptr == '#' && preprocs_left())
3926 indent = 0; /* Leave # lines at start */
3927 else
3928#endif
3929 if (*ptr == NUL)
3930 indent = 0; /* Ignore empty lines */
3931 else if (first_indent)
3932 {
3933 indent_diff = orig_indent - get_indent();
3934 indent = orig_indent;
3935 first_indent = FALSE;
3936 }
3937 else if ((indent = get_indent() + indent_diff) < 0)
3938 indent = 0;
3939 (void)set_indent(indent, 0);
3940 curwin->w_cursor = old_pos;
3941 /* remember how many chars were removed */
3942 if (cnt == count && i == y_size - 1)
3943 lendiff -= (int)STRLEN(ml_get(lnum));
3944 }
3945 }
3946 }
3947
3948error:
3949 /* Adjust marks. */
3950 if (y_type == MLINE)
3951 {
3952 curbuf->b_op_start.col = 0;
3953 if (dir == FORWARD)
3954 curbuf->b_op_start.lnum++;
3955 }
3956 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
3957 (linenr_T)MAXLNUM, nr_lines, 0L);
3958
3959 /* note changed text for displaying and folding */
3960 if (y_type == MCHAR)
3961 changed_lines(curwin->w_cursor.lnum, col,
3962 curwin->w_cursor.lnum + 1, nr_lines);
3963 else
3964 changed_lines(curbuf->b_op_start.lnum, 0,
3965 curbuf->b_op_start.lnum, nr_lines);
3966
3967 /* put '] mark at last inserted character */
3968 curbuf->b_op_end.lnum = lnum;
3969 /* correct length for change in indent */
3970 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3971 if (col > 1)
3972 curbuf->b_op_end.col = col - 1;
3973 else
3974 curbuf->b_op_end.col = 0;
3975
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003976 if (flags & PUT_CURSLINE)
3977 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003978 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003979 curwin->w_cursor.lnum = lnum;
3980 beginline(BL_WHITE | BL_FIX);
3981 }
3982 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 {
3984 /* put cursor after inserted text */
3985 if (y_type == MLINE)
3986 {
3987 if (lnum >= curbuf->b_ml.ml_line_count)
3988 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3989 else
3990 curwin->w_cursor.lnum = lnum + 1;
3991 curwin->w_cursor.col = 0;
3992 }
3993 else
3994 {
3995 curwin->w_cursor.lnum = lnum;
3996 curwin->w_cursor.col = col;
3997 }
3998 }
3999 else if (y_type == MLINE)
4000 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004001 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 curwin->w_cursor.col = 0;
4003 if (dir == FORWARD)
4004 ++curwin->w_cursor.lnum;
4005 beginline(BL_WHITE | BL_FIX);
4006 }
4007 else /* put cursor on first inserted character */
4008 curwin->w_cursor = new_cursor;
4009 }
4010 }
4011
4012 msgmore(nr_lines);
4013 curwin->w_set_curswant = TRUE;
4014
4015end:
4016 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004018 if (regname == '=')
4019 vim_free(y_array);
4020
Bram Moolenaar033d8882013-09-25 23:24:57 +02004021#ifdef FEAT_VISUAL
4022 VIsual_active = FALSE;
4023#endif
4024
Bram Moolenaar677ee682005-01-27 14:41:15 +00004025 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004026 adjust_cursor_eol();
4027}
4028
4029/*
4030 * When the cursor is on the NUL past the end of the line and it should not be
4031 * there move it left.
4032 */
4033 void
4034adjust_cursor_eol()
4035{
4036 if (curwin->w_cursor.col > 0
4037 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00004038#ifdef FEAT_VIRTUALEDIT
4039 && (ve_flags & VE_ONEMORE) == 0
4040#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 && !(restart_edit || (State & INSERT)))
4042 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00004043 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00004044 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004045
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046#ifdef FEAT_VIRTUALEDIT
4047 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00004048 {
4049 colnr_T scol, ecol;
4050
4051 /* Coladd is set to the width of the last character. */
4052 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4053 curwin->w_cursor.coladd = ecol - scol + 1;
4054 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055#endif
4056 }
4057}
4058
4059#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
4060/*
4061 * Return TRUE if lines starting with '#' should be left aligned.
4062 */
4063 int
4064preprocs_left()
4065{
4066 return
4067# ifdef FEAT_SMARTINDENT
4068# ifdef FEAT_CINDENT
4069 (curbuf->b_p_si && !curbuf->b_p_cin) ||
4070# else
4071 curbuf->b_p_si
4072# endif
4073# endif
4074# ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004075 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE)
4076 && curbuf->b_ind_hash_comment == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077# endif
4078 ;
4079}
4080#endif
4081
4082/* Return the character name of the register with the given number */
4083 int
4084get_register_name(num)
4085 int num;
4086{
4087 if (num == -1)
4088 return '"';
4089 else if (num < 10)
4090 return num + '0';
4091 else if (num == DELETION_REGISTER)
4092 return '-';
4093#ifdef FEAT_CLIPBOARD
4094 else if (num == STAR_REGISTER)
4095 return '*';
4096 else if (num == PLUS_REGISTER)
4097 return '+';
4098#endif
4099 else
4100 {
4101#ifdef EBCDIC
4102 int i;
4103
4104 /* EBCDIC is really braindead ... */
4105 i = 'a' + (num - 10);
4106 if (i > 'i')
4107 i += 7;
4108 if (i > 'r')
4109 i += 8;
4110 return i;
4111#else
4112 return num + 'a' - 10;
4113#endif
4114 }
4115}
4116
4117/*
4118 * ":dis" and ":registers": Display the contents of the yank registers.
4119 */
4120 void
4121ex_display(eap)
4122 exarg_T *eap;
4123{
4124 int i, n;
4125 long j;
4126 char_u *p;
4127 struct yankreg *yb;
4128 int name;
4129 int attr;
4130 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004131#ifdef FEAT_MBYTE
4132 int clen;
4133#else
4134# define clen 1
4135#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136
4137 if (arg != NULL && *arg == NUL)
4138 arg = NULL;
4139 attr = hl_attr(HLF_8);
4140
4141 /* Highlight title */
4142 MSG_PUTS_TITLE(_("\n--- Registers ---"));
4143 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
4144 {
4145 name = get_register_name(i);
Bram Moolenaar0818b872010-11-24 14:28:58 +01004146 if (arg != NULL && vim_strchr(arg, name) == NULL
4147#ifdef ONE_CLIPBOARD
4148 /* Star register and plus register contain the same thing. */
4149 && (name != '*' || vim_strchr(arg, '+') == NULL)
4150#endif
4151 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152 continue; /* did not ask for this register */
4153
4154#ifdef FEAT_CLIPBOARD
4155 /* Adjust register name for "unnamed" in 'clipboard'.
4156 * When it's a clipboard register, fill it with the current contents
4157 * of the clipboard. */
4158 adjust_clip_reg(&name);
4159 (void)may_get_selection(name);
4160#endif
4161
4162 if (i == -1)
4163 {
4164 if (y_previous != NULL)
4165 yb = y_previous;
4166 else
4167 yb = &(y_regs[0]);
4168 }
4169 else
4170 yb = &(y_regs[i]);
Bram Moolenaarcde547a2009-11-17 11:43:06 +00004171
4172#ifdef FEAT_EVAL
4173 if (name == MB_TOLOWER(redir_reg)
4174 || (redir_reg == '"' && yb == y_previous))
4175 continue; /* do not list register being written to, the
4176 * pointer can be freed */
4177#endif
4178
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 if (yb->y_array != NULL)
4180 {
4181 msg_putchar('\n');
4182 msg_putchar('"');
4183 msg_putchar(name);
4184 MSG_PUTS(" ");
4185
4186 n = (int)Columns - 6;
4187 for (j = 0; j < yb->y_size && n > 1; ++j)
4188 {
4189 if (j)
4190 {
4191 MSG_PUTS_ATTR("^J", attr);
4192 n -= 2;
4193 }
4194 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4195 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004197 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004198#endif
4199 msg_outtrans_len(p, clen);
4200#ifdef FEAT_MBYTE
4201 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202#endif
4203 }
4204 }
4205 if (n > 1 && yb->y_type == MLINE)
4206 MSG_PUTS_ATTR("^J", attr);
4207 out_flush(); /* show one line at a time */
4208 }
4209 ui_breakcheck();
4210 }
4211
4212 /*
4213 * display last inserted text
4214 */
4215 if ((p = get_last_insert()) != NULL
4216 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4217 {
4218 MSG_PUTS("\n\". ");
4219 dis_msg(p, TRUE);
4220 }
4221
4222 /*
4223 * display last command line
4224 */
4225 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4226 && !got_int)
4227 {
4228 MSG_PUTS("\n\": ");
4229 dis_msg(last_cmdline, FALSE);
4230 }
4231
4232 /*
4233 * display current file name
4234 */
4235 if (curbuf->b_fname != NULL
4236 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4237 {
4238 MSG_PUTS("\n\"% ");
4239 dis_msg(curbuf->b_fname, FALSE);
4240 }
4241
4242 /*
4243 * display alternate file name
4244 */
4245 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4246 {
4247 char_u *fname;
4248 linenr_T dummy;
4249
4250 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4251 {
4252 MSG_PUTS("\n\"# ");
4253 dis_msg(fname, FALSE);
4254 }
4255 }
4256
4257 /*
4258 * display last search pattern
4259 */
4260 if (last_search_pat() != NULL
4261 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4262 {
4263 MSG_PUTS("\n\"/ ");
4264 dis_msg(last_search_pat(), FALSE);
4265 }
4266
4267#ifdef FEAT_EVAL
4268 /*
4269 * display last used expression
4270 */
4271 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4272 && !got_int)
4273 {
4274 MSG_PUTS("\n\"= ");
4275 dis_msg(expr_line, FALSE);
4276 }
4277#endif
4278}
4279
4280/*
4281 * display a string for do_dis()
4282 * truncate at end of screen line
4283 */
4284 static void
4285dis_msg(p, skip_esc)
4286 char_u *p;
4287 int skip_esc; /* if TRUE, ignore trailing ESC */
4288{
4289 int n;
4290#ifdef FEAT_MBYTE
4291 int l;
4292#endif
4293
4294 n = (int)Columns - 6;
4295 while (*p != NUL
4296 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4297 && (n -= ptr2cells(p)) >= 0)
4298 {
4299#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004300 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 {
4302 msg_outtrans_len(p, l);
4303 p += l;
4304 }
4305 else
4306#endif
4307 msg_outtrans_len(p++, 1);
4308 }
4309 ui_breakcheck();
4310}
4311
Bram Moolenaar81340392012-06-06 16:12:59 +02004312#if defined(FEAT_COMMENTS) || defined(PROTO)
4313/*
4314 * If "process" is TRUE and the line begins with a comment leader (possibly
4315 * after some white space), return a pointer to the text after it. Put a boolean
4316 * value indicating whether the line ends with an unclosed comment in
4317 * "is_comment".
4318 * line - line to be processed,
4319 * process - if FALSE, will only check whether the line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004320 * comment,
Bram Moolenaar81340392012-06-06 16:12:59 +02004321 * include_space - whether to also skip space following the comment leader,
4322 * is_comment - will indicate whether the current line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004323 * comment.
Bram Moolenaar81340392012-06-06 16:12:59 +02004324 */
4325 static char_u *
4326skip_comment(line, process, include_space, is_comment)
4327 char_u *line;
4328 int process;
4329 int include_space;
4330 int *is_comment;
4331{
4332 char_u *comment_flags = NULL;
4333 int lead_len;
4334 int leader_offset = get_last_leader_offset(line, &comment_flags);
4335
4336 *is_comment = FALSE;
4337 if (leader_offset != -1)
4338 {
4339 /* Let's check whether the line ends with an unclosed comment.
4340 * If the last comment leader has COM_END in flags, there's no comment.
4341 */
4342 while (*comment_flags)
4343 {
4344 if (*comment_flags == COM_END
4345 || *comment_flags == ':')
4346 break;
4347 ++comment_flags;
4348 }
4349 if (*comment_flags != COM_END)
4350 *is_comment = TRUE;
4351 }
4352
4353 if (process == FALSE)
4354 return line;
4355
4356 lead_len = get_leader_len(line, &comment_flags, FALSE, include_space);
4357
4358 if (lead_len == 0)
4359 return line;
4360
4361 /* Find:
Bram Moolenaar81340392012-06-06 16:12:59 +02004362 * - COM_END,
4363 * - colon,
4364 * whichever comes first.
4365 */
4366 while (*comment_flags)
4367 {
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004368 if (*comment_flags == COM_END
Bram Moolenaar81340392012-06-06 16:12:59 +02004369 || *comment_flags == ':')
4370 {
4371 break;
4372 }
4373 ++comment_flags;
4374 }
4375
4376 /* If we found a colon, it means that we are not processing a line
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004377 * starting with a closing part of a three-part comment. That's good,
4378 * because we don't want to remove those as this would be annoying.
Bram Moolenaar81340392012-06-06 16:12:59 +02004379 */
4380 if (*comment_flags == ':' || *comment_flags == NUL)
4381 line += lead_len;
4382
4383 return line;
4384}
4385#endif
4386
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387/*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004388 * Join 'count' lines (minimal 2) at cursor position.
4389 * When "save_undo" is TRUE save lines for undo first.
Bram Moolenaar81340392012-06-06 16:12:59 +02004390 * Set "use_formatoptions" to FALSE when e.g. processing
4391 * backspace and comment leaders should not be removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004393 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394 */
4395 int
Bram Moolenaar81340392012-06-06 16:12:59 +02004396do_join(count, insert_space, save_undo, use_formatoptions)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004397 long count;
4398 int insert_space;
4399 int save_undo;
Bram Moolenaar81340392012-06-06 16:12:59 +02004400 int use_formatoptions UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401{
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004402 char_u *curr = NULL;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004403 char_u *curr_start = NULL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004404 char_u *cend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 char_u *newp;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004406 char_u *spaces; /* number of spaces inserted before a line */
Bram Moolenaard43848c2010-07-14 14:28:26 +02004407 int endcurr1 = NUL;
4408 int endcurr2 = NUL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004409 int currsize = 0; /* size of the current line */
4410 int sumsize = 0; /* size of the long new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 linenr_T t;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004412 colnr_T col = 0;
4413 int ret = OK;
Bram Moolenaar81340392012-06-06 16:12:59 +02004414#if defined(FEAT_COMMENTS) || defined(PROTO)
Bram Moolenaar802053f2012-06-06 23:08:38 +02004415 int *comments = NULL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004416 int remove_comments = (use_formatoptions == TRUE)
4417 && has_format_option(FO_REMOVE_COMS);
4418 int prev_was_comment;
4419#endif
4420
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004422 if (save_undo && u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4423 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4424 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004426 /* Allocate an array to store the number of spaces inserted before each
4427 * line. We will use it to pre-compute the length of the new line and the
4428 * proper placement of each original line in the new one. */
4429 spaces = lalloc_clear((long_u)count, TRUE);
4430 if (spaces == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 return FAIL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004432#if defined(FEAT_COMMENTS) || defined(PROTO)
4433 if (remove_comments)
4434 {
4435 comments = (int *)lalloc_clear((long_u)count * sizeof(int), TRUE);
4436 if (comments == NULL)
4437 {
4438 vim_free(spaces);
4439 return FAIL;
4440 }
4441 }
4442#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443
4444 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004445 * Don't move anything, just compute the final line length
4446 * and setup the array of space strings lengths
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004448 for (t = 0; t < count; ++t)
4449 {
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004450 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t));
Bram Moolenaar81340392012-06-06 16:12:59 +02004451#if defined(FEAT_COMMENTS) || defined(PROTO)
4452 if (remove_comments)
4453 {
4454 /* We don't want to remove the comment leader if the
4455 * previous line is not a comment. */
4456 if (t > 0 && prev_was_comment)
4457 {
4458
4459 char_u *new_curr = skip_comment(curr, TRUE, insert_space,
4460 &prev_was_comment);
Bram Moolenaar27ba0882012-06-07 21:09:39 +02004461 comments[t] = (int)(new_curr - curr);
Bram Moolenaar81340392012-06-06 16:12:59 +02004462 curr = new_curr;
4463 }
4464 else
4465 curr = skip_comment(curr, FALSE, insert_space,
4466 &prev_was_comment);
4467 }
4468#endif
4469
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004470 if (insert_space && t > 0)
4471 {
4472 curr = skipwhite(curr);
4473 if (*curr != ')' && currsize != 0 && endcurr1 != TAB
4474#ifdef FEAT_MBYTE
4475 && (!has_format_option(FO_MBYTE_JOIN)
4476 || (mb_ptr2char(curr) < 0x100 && endcurr1 < 0x100))
4477 && (!has_format_option(FO_MBYTE_JOIN2)
4478 || mb_ptr2char(curr) < 0x100 || endcurr1 < 0x100)
4479#endif
4480 )
4481 {
4482 /* don't add a space if the line is ending in a space */
4483 if (endcurr1 == ' ')
4484 endcurr1 = endcurr2;
4485 else
4486 ++spaces[t];
4487 /* extra space when 'joinspaces' set and line ends in '.' */
4488 if ( p_js
4489 && (endcurr1 == '.'
4490 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4491 && (endcurr1 == '?' || endcurr1 == '!'))))
4492 ++spaces[t];
4493 }
4494 }
4495 currsize = (int)STRLEN(curr);
4496 sumsize += currsize + spaces[t];
4497 endcurr1 = endcurr2 = NUL;
4498 if (insert_space && currsize > 0)
4499 {
4500#ifdef FEAT_MBYTE
4501 if (has_mbyte)
4502 {
4503 cend = curr + currsize;
4504 mb_ptr_back(curr, cend);
4505 endcurr1 = (*mb_ptr2char)(cend);
4506 if (cend > curr)
4507 {
4508 mb_ptr_back(curr, cend);
4509 endcurr2 = (*mb_ptr2char)(cend);
4510 }
4511 }
4512 else
4513#endif
4514 {
4515 endcurr1 = *(curr + currsize - 1);
4516 if (currsize > 1)
4517 endcurr2 = *(curr + currsize - 2);
4518 }
4519 }
4520 line_breakcheck();
4521 if (got_int)
4522 {
4523 ret = FAIL;
4524 goto theend;
4525 }
4526 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004528 /* store the column position before last line */
4529 col = sumsize - currsize - spaces[count - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004531 /* allocate the space for the new line */
4532 newp = alloc_check((unsigned)(sumsize + 1));
4533 cend = newp + sumsize;
4534 *cend = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004536 /*
4537 * Move affected lines to the new long one.
4538 *
4539 * Move marks from each deleted line to the joined line, adjusting the
4540 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4541 * should not really be a problem.
4542 */
4543 for (t = count - 1; ; --t)
4544 {
4545 cend -= currsize;
4546 mch_memmove(cend, curr, (size_t)currsize);
4547 if (spaces[t] > 0)
4548 {
4549 cend -= spaces[t];
4550 copy_spaces(cend, (size_t)(spaces[t]));
4551 }
4552 mark_col_adjust(curwin->w_cursor.lnum + t, (colnr_T)0, (linenr_T)-t,
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004553 (long)(cend - newp + spaces[t] - (curr - curr_start)));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004554 if (t == 0)
4555 break;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004556 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1));
Bram Moolenaar81340392012-06-06 16:12:59 +02004557#if defined(FEAT_COMMENTS) || defined(PROTO)
4558 if (remove_comments)
4559 curr += comments[t - 1];
4560#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004561 if (insert_space && t > 1)
4562 curr = skipwhite(curr);
4563 currsize = (int)STRLEN(curr);
4564 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4566
4567 /* Only report the change in the first line here, del_lines() will report
4568 * the deleted line. */
4569 changed_lines(curwin->w_cursor.lnum, currsize,
4570 curwin->w_cursor.lnum + 1, 0L);
4571
4572 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004573 * Delete following lines. To do this we move the cursor there
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 * briefly, and then move it back. After del_lines() the cursor may
4575 * have moved up (last line deleted), so the current lnum is kept in t.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 */
4577 t = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 ++curwin->w_cursor.lnum;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004579 del_lines(count - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 curwin->w_cursor.lnum = t;
4581
4582 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004583 * Set the cursor column:
4584 * Vi compatible: use the column of the first join
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004585 * vim: use the column of the last join
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004587 curwin->w_cursor.col =
4588 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589 check_cursor_col();
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004590
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591#ifdef FEAT_VIRTUALEDIT
4592 curwin->w_cursor.coladd = 0;
4593#endif
4594 curwin->w_set_curswant = TRUE;
4595
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004596theend:
4597 vim_free(spaces);
Bram Moolenaar81340392012-06-06 16:12:59 +02004598#if defined(FEAT_COMMENTS) || defined(PROTO)
4599 if (remove_comments)
4600 vim_free(comments);
4601#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004602 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603}
4604
4605#ifdef FEAT_COMMENTS
4606/*
4607 * Return TRUE if the two comment leaders given are the same. "lnum" is
4608 * the first line. White-space is ignored. Note that the whole of
4609 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4610 */
4611 static int
4612same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
4613 linenr_T lnum;
4614 int leader1_len;
4615 char_u *leader1_flags;
4616 int leader2_len;
4617 char_u *leader2_flags;
4618{
4619 int idx1 = 0, idx2 = 0;
4620 char_u *p;
4621 char_u *line1;
4622 char_u *line2;
4623
4624 if (leader1_len == 0)
4625 return (leader2_len == 0);
4626
4627 /*
4628 * If first leader has 'f' flag, the lines can be joined only if the
4629 * second line does not have a leader.
4630 * If first leader has 'e' flag, the lines can never be joined.
4631 * If fist leader has 's' flag, the lines can only be joined if there is
4632 * some text after it and the second line has the 'm' flag.
4633 */
4634 if (leader1_flags != NULL)
4635 {
4636 for (p = leader1_flags; *p && *p != ':'; ++p)
4637 {
4638 if (*p == COM_FIRST)
4639 return (leader2_len == 0);
4640 if (*p == COM_END)
4641 return FALSE;
4642 if (*p == COM_START)
4643 {
4644 if (*(ml_get(lnum) + leader1_len) == NUL)
4645 return FALSE;
4646 if (leader2_flags == NULL || leader2_len == 0)
4647 return FALSE;
4648 for (p = leader2_flags; *p && *p != ':'; ++p)
4649 if (*p == COM_MIDDLE)
4650 return TRUE;
4651 return FALSE;
4652 }
4653 }
4654 }
4655
4656 /*
4657 * Get current line and next line, compare the leaders.
4658 * The first line has to be saved, only one line can be locked at a time.
4659 */
4660 line1 = vim_strsave(ml_get(lnum));
4661 if (line1 != NULL)
4662 {
4663 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4664 ;
4665 line2 = ml_get(lnum + 1);
4666 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4667 {
4668 if (!vim_iswhite(line2[idx2]))
4669 {
4670 if (line1[idx1++] != line2[idx2])
4671 break;
4672 }
4673 else
4674 while (vim_iswhite(line1[idx1]))
4675 ++idx1;
4676 }
4677 vim_free(line1);
4678 }
4679 return (idx2 == leader2_len && idx1 == leader1_len);
4680}
4681#endif
4682
4683/*
Bram Moolenaar66accae2012-01-10 13:44:27 +01004684 * Implementation of the format operator 'gq'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685 */
4686 void
4687op_format(oap, keep_cursor)
4688 oparg_T *oap;
4689 int keep_cursor; /* keep cursor on same text char */
4690{
4691 long old_line_count = curbuf->b_ml.ml_line_count;
4692
4693 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4694 * can put it back there. */
4695 curwin->w_cursor = oap->cursor_start;
4696
4697 if (u_save((linenr_T)(oap->start.lnum - 1),
4698 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4699 return;
4700 curwin->w_cursor = oap->start;
4701
4702#ifdef FEAT_VISUAL
4703 if (oap->is_VIsual)
4704 /* When there is no change: need to remove the Visual selection */
4705 redraw_curbuf_later(INVERTED);
4706#endif
4707
4708 /* Set '[ mark at the start of the formatted area */
4709 curbuf->b_op_start = oap->start;
4710
4711 /* For "gw" remember the cursor position and put it back below (adjusted
4712 * for joined and split lines). */
4713 if (keep_cursor)
4714 saved_cursor = oap->cursor_start;
4715
Bram Moolenaar81a82092008-03-12 16:27:00 +00004716 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717
4718 /*
4719 * Leave the cursor at the first non-blank of the last formatted line.
4720 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4721 * line, so "." will do the next lines.
4722 */
4723 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4724 ++curwin->w_cursor.lnum;
4725 beginline(BL_WHITE | BL_FIX);
4726 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4727 msgmore(old_line_count);
4728
4729 /* put '] mark on the end of the formatted area */
4730 curbuf->b_op_end = curwin->w_cursor;
4731
4732 if (keep_cursor)
4733 {
4734 curwin->w_cursor = saved_cursor;
4735 saved_cursor.lnum = 0;
4736 }
4737
4738#ifdef FEAT_VISUAL
4739 if (oap->is_VIsual)
4740 {
4741 win_T *wp;
4742
4743 FOR_ALL_WINDOWS(wp)
4744 {
4745 if (wp->w_old_cursor_lnum != 0)
4746 {
4747 /* When lines have been inserted or deleted, adjust the end of
4748 * the Visual area to be redrawn. */
4749 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4750 wp->w_old_cursor_lnum += old_line_count;
4751 else
4752 wp->w_old_visual_lnum += old_line_count;
4753 }
4754 }
4755 }
4756#endif
4757}
4758
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004759#if defined(FEAT_EVAL) || defined(PROTO)
4760/*
4761 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4762 */
4763 void
4764op_formatexpr(oap)
4765 oparg_T *oap;
4766{
4767# ifdef FEAT_VISUAL
4768 if (oap->is_VIsual)
4769 /* When there is no change: need to remove the Visual selection */
4770 redraw_curbuf_later(INVERTED);
4771# endif
4772
Bram Moolenaar700303e2010-07-11 17:35:50 +02004773 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0)
4774 /* As documented: when 'formatexpr' returns non-zero fall back to
4775 * internal formatting. */
4776 op_format(oap, FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004777}
4778
4779 int
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004780fex_format(lnum, count, c)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004781 linenr_T lnum;
4782 long count;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004783 int c; /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004784{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004785 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4786 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004787 int r;
4788
4789 /*
4790 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004791 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004792 */
4793 set_vim_var_nr(VV_LNUM, lnum);
4794 set_vim_var_nr(VV_COUNT, count);
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004795 set_vim_var_char(c);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004796
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004797 /*
4798 * Evaluate the function.
4799 */
4800 if (use_sandbox)
4801 ++sandbox;
4802 r = eval_to_number(curbuf->b_p_fex);
4803 if (use_sandbox)
4804 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004805
4806 set_vim_var_string(VV_CHAR, NULL, -1);
4807
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004808 return r;
4809}
4810#endif
4811
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812/*
4813 * Format "line_count" lines, starting at the cursor position.
4814 * When "line_count" is negative, format until the end of the paragraph.
4815 * Lines after the cursor line are saved for undo, caller must have saved the
4816 * first line.
4817 */
4818 void
Bram Moolenaar81a82092008-03-12 16:27:00 +00004819format_lines(line_count, avoid_fex)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820 linenr_T line_count;
Bram Moolenaar81a82092008-03-12 16:27:00 +00004821 int avoid_fex; /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822{
4823 int max_len;
4824 int is_not_par; /* current line not part of parag. */
4825 int next_is_not_par; /* next line not part of paragraph */
4826 int is_end_par; /* at end of paragraph */
4827 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4828 int next_is_start_par = FALSE;
4829#ifdef FEAT_COMMENTS
4830 int leader_len = 0; /* leader len of current line */
4831 int next_leader_len; /* leader len of next line */
4832 char_u *leader_flags = NULL; /* flags for leader of current line */
4833 char_u *next_leader_flags; /* flags for leader of next line */
4834 int do_comments; /* format comments */
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004835 int do_comments_list = 0; /* format comments with 'n' or '2' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836#endif
4837 int advance = TRUE;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004838 int second_indent = -1; /* indent for second line (comment
4839 * aware) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 int do_second_indent;
4841 int do_number_indent;
4842 int do_trail_white;
4843 int first_par_line = TRUE;
4844 int smd_save;
4845 long count;
4846 int need_set_indent = TRUE; /* set indent of next paragraph */
4847 int force_format = FALSE;
4848 int old_State = State;
4849
4850 /* length of a line to force formatting: 3 * 'tw' */
4851 max_len = comp_textwidth(TRUE) * 3;
4852
4853 /* check for 'q', '2' and '1' in 'formatoptions' */
4854#ifdef FEAT_COMMENTS
4855 do_comments = has_format_option(FO_Q_COMS);
4856#endif
4857 do_second_indent = has_format_option(FO_Q_SECOND);
4858 do_number_indent = has_format_option(FO_Q_NUMBER);
4859 do_trail_white = has_format_option(FO_WHITE_PAR);
4860
4861 /*
4862 * Get info about the previous and current line.
4863 */
4864 if (curwin->w_cursor.lnum > 1)
4865 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4866#ifdef FEAT_COMMENTS
4867 , &leader_len, &leader_flags, do_comments
4868#endif
4869 );
4870 else
4871 is_not_par = TRUE;
4872 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4873#ifdef FEAT_COMMENTS
4874 , &next_leader_len, &next_leader_flags, do_comments
4875#endif
4876 );
4877 is_end_par = (is_not_par || next_is_not_par);
4878 if (!is_end_par && do_trail_white)
4879 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4880
4881 curwin->w_cursor.lnum--;
4882 for (count = line_count; count != 0 && !got_int; --count)
4883 {
4884 /*
4885 * Advance to next paragraph.
4886 */
4887 if (advance)
4888 {
4889 curwin->w_cursor.lnum++;
4890 prev_is_end_par = is_end_par;
4891 is_not_par = next_is_not_par;
4892#ifdef FEAT_COMMENTS
4893 leader_len = next_leader_len;
4894 leader_flags = next_leader_flags;
4895#endif
4896 }
4897
4898 /*
4899 * The last line to be formatted.
4900 */
4901 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4902 {
4903 next_is_not_par = TRUE;
4904#ifdef FEAT_COMMENTS
4905 next_leader_len = 0;
4906 next_leader_flags = NULL;
4907#endif
4908 }
4909 else
4910 {
4911 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4912#ifdef FEAT_COMMENTS
4913 , &next_leader_len, &next_leader_flags, do_comments
4914#endif
4915 );
4916 if (do_number_indent)
4917 next_is_start_par =
4918 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4919 }
4920 advance = TRUE;
4921 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4922 if (!is_end_par && do_trail_white)
4923 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4924
4925 /*
4926 * Skip lines that are not in a paragraph.
4927 */
4928 if (is_not_par)
4929 {
4930 if (line_count < 0)
4931 break;
4932 }
4933 else
4934 {
4935 /*
4936 * For the first line of a paragraph, check indent of second line.
4937 * Don't do this for comments and empty lines.
4938 */
4939 if (first_par_line
4940 && (do_second_indent || do_number_indent)
4941 && prev_is_end_par
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004942 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 {
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004944 if (do_second_indent && !lineempty(curwin->w_cursor.lnum + 1))
4945 {
4946#ifdef FEAT_COMMENTS
4947 if (leader_len == 0 && next_leader_len == 0)
4948 {
4949 /* no comment found */
4950#endif
4951 second_indent =
4952 get_indent_lnum(curwin->w_cursor.lnum + 1);
4953#ifdef FEAT_COMMENTS
4954 }
4955 else
4956 {
4957 second_indent = next_leader_len;
4958 do_comments_list = 1;
4959 }
4960#endif
4961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 else if (do_number_indent)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004963 {
4964#ifdef FEAT_COMMENTS
4965 if (leader_len == 0 && next_leader_len == 0)
4966 {
4967 /* no comment found */
4968#endif
4969 second_indent =
4970 get_number_indent(curwin->w_cursor.lnum);
4971#ifdef FEAT_COMMENTS
4972 }
4973 else
4974 {
4975 /* get_number_indent() is now "comment aware"... */
4976 second_indent =
4977 get_number_indent(curwin->w_cursor.lnum);
4978 do_comments_list = 1;
4979 }
4980#endif
4981 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 }
4983
4984 /*
4985 * When the comment leader changes, it's the end of the paragraph.
4986 */
4987 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4988#ifdef FEAT_COMMENTS
4989 || !same_leader(curwin->w_cursor.lnum,
4990 leader_len, leader_flags,
4991 next_leader_len, next_leader_flags)
4992#endif
4993 )
4994 is_end_par = TRUE;
4995
4996 /*
4997 * If we have got to the end of a paragraph, or the line is
4998 * getting long, format it.
4999 */
5000 if (is_end_par || force_format)
5001 {
5002 if (need_set_indent)
5003 /* replace indent in first line with minimal number of
5004 * tabs and spaces, according to current options */
5005 (void)set_indent(get_indent(), SIN_CHANGED);
5006
5007 /* put cursor on last non-space */
5008 State = NORMAL; /* don't go past end-of-line */
5009 coladvance((colnr_T)MAXCOL);
5010 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
5011 dec_cursor();
5012
5013 /* do the formatting, without 'showmode' */
5014 State = INSERT; /* for open_line() */
5015 smd_save = p_smd;
5016 p_smd = FALSE;
5017 insertchar(NUL, INSCHAR_FORMAT
5018#ifdef FEAT_COMMENTS
5019 + (do_comments ? INSCHAR_DO_COM : 0)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005020 + (do_comments && do_comments_list
5021 ? INSCHAR_COM_LIST : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00005023 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 State = old_State;
5025 p_smd = smd_save;
5026 second_indent = -1;
5027 /* at end of par.: need to set indent of next par. */
5028 need_set_indent = is_end_par;
5029 if (is_end_par)
5030 {
5031 /* When called with a negative line count, break at the
5032 * end of the paragraph. */
5033 if (line_count < 0)
5034 break;
5035 first_par_line = TRUE;
5036 }
5037 force_format = FALSE;
5038 }
5039
5040 /*
5041 * When still in same paragraph, join the lines together. But
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005042 * first delete the leader from the second line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 */
5044 if (!is_end_par)
5045 {
5046 advance = FALSE;
5047 curwin->w_cursor.lnum++;
5048 curwin->w_cursor.col = 0;
5049 if (line_count < 0 && u_save_cursor() == FAIL)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02005050 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051#ifdef FEAT_COMMENTS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 if (next_leader_len > 0)
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005053 {
5054 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
5056 (long)-next_leader_len);
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005057 } else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058#endif
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005059 if (second_indent > 0) /* the "leader" for FO_Q_SECOND */
5060 {
5061 char_u *p = ml_get_curline();
Bram Moolenaar92c2db82013-11-02 23:59:35 +01005062 int indent = (int)(skipwhite(p) - p);
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005063
5064 if (indent > 0)
5065 {
5066 (void)del_bytes(indent, FALSE, FALSE);
5067 mark_col_adjust(curwin->w_cursor.lnum,
5068 (colnr_T)0, 0L, (long)-indent);
Bram Moolenaar92c2db82013-11-02 23:59:35 +01005069 }
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 curwin->w_cursor.lnum--;
Bram Moolenaar81340392012-06-06 16:12:59 +02005072 if (do_join(2, TRUE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 {
5074 beep_flush();
5075 break;
5076 }
5077 first_par_line = FALSE;
5078 /* If the line is getting long, format it next time */
5079 if (STRLEN(ml_get_curline()) > (size_t)max_len)
5080 force_format = TRUE;
5081 else
5082 force_format = FALSE;
5083 }
5084 }
5085 line_breakcheck();
5086 }
5087}
5088
5089/*
5090 * Return TRUE if line "lnum" ends in a white character.
5091 */
5092 static int
5093ends_in_white(lnum)
5094 linenr_T lnum;
5095{
5096 char_u *s = ml_get(lnum);
5097 size_t l;
5098
5099 if (*s == NUL)
5100 return FALSE;
5101 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
5102 * invocation may call function multiple times". */
5103 l = STRLEN(s) - 1;
5104 return vim_iswhite(s[l]);
5105}
5106
5107/*
5108 * Blank lines, and lines containing only the comment leader, are left
5109 * untouched by the formatting. The function returns TRUE in this
5110 * case. It also returns TRUE when a line starts with the end of a comment
5111 * ('e' in comment flags), so that this line is skipped, and not joined to the
5112 * previous line. A new paragraph starts after a blank line, or when the
5113 * comment leader changes -- webb.
5114 */
5115#ifdef FEAT_COMMENTS
5116 static int
5117fmt_check_par(lnum, leader_len, leader_flags, do_comments)
5118 linenr_T lnum;
5119 int *leader_len;
5120 char_u **leader_flags;
5121 int do_comments;
5122{
5123 char_u *flags = NULL; /* init for GCC */
5124 char_u *ptr;
5125
5126 ptr = ml_get(lnum);
5127 if (do_comments)
Bram Moolenaar81340392012-06-06 16:12:59 +02005128 *leader_len = get_leader_len(ptr, leader_flags, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 else
5130 *leader_len = 0;
5131
5132 if (*leader_len > 0)
5133 {
5134 /*
5135 * Search for 'e' flag in comment leader flags.
5136 */
5137 flags = *leader_flags;
5138 while (*flags && *flags != ':' && *flags != COM_END)
5139 ++flags;
5140 }
5141
5142 return (*skipwhite(ptr + *leader_len) == NUL
5143 || (*leader_len > 0 && *flags == COM_END)
5144 || startPS(lnum, NUL, FALSE));
5145}
5146#else
5147 static int
5148fmt_check_par(lnum)
5149 linenr_T lnum;
5150{
5151 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
5152}
5153#endif
5154
5155/*
5156 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
5157 * previous line is in the same paragraph. Used for auto-formatting.
5158 */
5159 int
5160paragraph_start(lnum)
5161 linenr_T lnum;
5162{
5163 char_u *p;
5164#ifdef FEAT_COMMENTS
5165 int leader_len = 0; /* leader len of current line */
5166 char_u *leader_flags = NULL; /* flags for leader of current line */
5167 int next_leader_len; /* leader len of next line */
5168 char_u *next_leader_flags; /* flags for leader of next line */
5169 int do_comments; /* format comments */
5170#endif
5171
5172 if (lnum <= 1)
5173 return TRUE; /* start of the file */
5174
5175 p = ml_get(lnum - 1);
5176 if (*p == NUL)
5177 return TRUE; /* after empty line */
5178
5179#ifdef FEAT_COMMENTS
5180 do_comments = has_format_option(FO_Q_COMS);
5181#endif
5182 if (fmt_check_par(lnum - 1
5183#ifdef FEAT_COMMENTS
5184 , &leader_len, &leader_flags, do_comments
5185#endif
5186 ))
5187 return TRUE; /* after non-paragraph line */
5188
5189 if (fmt_check_par(lnum
5190#ifdef FEAT_COMMENTS
5191 , &next_leader_len, &next_leader_flags, do_comments
5192#endif
5193 ))
5194 return TRUE; /* "lnum" is not a paragraph line */
5195
5196 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
5197 return TRUE; /* missing trailing space in previous line. */
5198
5199 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
5200 return TRUE; /* numbered item starts in "lnum". */
5201
5202#ifdef FEAT_COMMENTS
5203 if (!same_leader(lnum - 1, leader_len, leader_flags,
5204 next_leader_len, next_leader_flags))
5205 return TRUE; /* change of comment leader. */
5206#endif
5207
5208 return FALSE;
5209}
5210
5211#ifdef FEAT_VISUAL
5212/*
5213 * prepare a few things for block mode yank/delete/tilde
5214 *
5215 * for delete:
5216 * - textlen includes the first/last char to be (partly) deleted
5217 * - start/endspaces is the number of columns that are taken by the
5218 * first/last deleted char minus the number of columns that have to be
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +00005219 * deleted.
5220 * for yank and tilde:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 * - textlen includes the first/last char to be wholly yanked
5222 * - start/endspaces is the number of columns of the first/last yanked char
5223 * that are to be yanked.
5224 */
5225 static void
5226block_prep(oap, bdp, lnum, is_del)
5227 oparg_T *oap;
5228 struct block_def *bdp;
5229 linenr_T lnum;
5230 int is_del;
5231{
5232 int incr = 0;
5233 char_u *pend;
5234 char_u *pstart;
5235 char_u *line;
5236 char_u *prev_pstart;
5237 char_u *prev_pend;
5238
5239 bdp->startspaces = 0;
5240 bdp->endspaces = 0;
5241 bdp->textlen = 0;
5242 bdp->start_vcol = 0;
5243 bdp->end_vcol = 0;
5244#ifdef FEAT_VISUALEXTRA
5245 bdp->is_short = FALSE;
5246 bdp->is_oneChar = FALSE;
5247 bdp->pre_whitesp = 0;
5248 bdp->pre_whitesp_c = 0;
5249 bdp->end_char_vcols = 0;
5250#endif
5251 bdp->start_char_vcols = 0;
5252
5253 line = ml_get(lnum);
5254 pstart = line;
5255 prev_pstart = line;
5256 while (bdp->start_vcol < oap->start_vcol && *pstart)
5257 {
5258 /* Count a tab for what it's worth (if list mode not on) */
5259 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
5260 bdp->start_vcol += incr;
5261#ifdef FEAT_VISUALEXTRA
5262 if (vim_iswhite(*pstart))
5263 {
5264 bdp->pre_whitesp += incr;
5265 bdp->pre_whitesp_c++;
5266 }
5267 else
5268 {
5269 bdp->pre_whitesp = 0;
5270 bdp->pre_whitesp_c = 0;
5271 }
5272#endif
5273 prev_pstart = pstart;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005274 mb_ptr_adv(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 }
5276 bdp->start_char_vcols = incr;
5277 if (bdp->start_vcol < oap->start_vcol) /* line too short */
5278 {
5279 bdp->end_vcol = bdp->start_vcol;
5280#ifdef FEAT_VISUALEXTRA
5281 bdp->is_short = TRUE;
5282#endif
5283 if (!is_del || oap->op_type == OP_APPEND)
5284 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
5285 }
5286 else
5287 {
5288 /* notice: this converts partly selected Multibyte characters to
5289 * spaces, too. */
5290 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
5291 if (is_del && bdp->startspaces)
5292 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
5293 pend = pstart;
5294 bdp->end_vcol = bdp->start_vcol;
5295 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
5296 {
5297#ifdef FEAT_VISUALEXTRA
5298 bdp->is_oneChar = TRUE;
5299#endif
5300 if (oap->op_type == OP_INSERT)
5301 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5302 else if (oap->op_type == OP_APPEND)
5303 {
5304 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
5305 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5306 }
5307 else
5308 {
5309 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
5310 if (is_del && oap->op_type != OP_LSHIFT)
5311 {
5312 /* just putting the sum of those two into
5313 * bdp->startspaces doesn't work for Visual replace,
5314 * so we have to split the tab in two */
5315 bdp->startspaces = bdp->start_char_vcols
5316 - (bdp->start_vcol - oap->start_vcol);
5317 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5318 }
5319 }
5320 }
5321 else
5322 {
5323 prev_pend = pend;
5324 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
5325 {
5326 /* Count a tab for what it's worth (if list mode not on) */
5327 prev_pend = pend;
5328 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
5329 bdp->end_vcol += incr;
5330 }
5331 if (bdp->end_vcol <= oap->end_vcol
5332 && (!is_del
5333 || oap->op_type == OP_APPEND
5334 || oap->op_type == OP_REPLACE)) /* line too short */
5335 {
5336#ifdef FEAT_VISUALEXTRA
5337 bdp->is_short = TRUE;
5338#endif
5339 /* Alternative: include spaces to fill up the block.
5340 * Disadvantage: can lead to trailing spaces when the line is
5341 * short where the text is put */
5342 /* if (!is_del || oap->op_type == OP_APPEND) */
5343 if (oap->op_type == OP_APPEND || virtual_op)
5344 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00005345 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346 else
5347 bdp->endspaces = 0; /* replace doesn't add characters */
5348 }
5349 else if (bdp->end_vcol > oap->end_vcol)
5350 {
5351 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5352 if (!is_del && bdp->endspaces)
5353 {
5354 bdp->endspaces = incr - bdp->endspaces;
5355 if (pend != pstart)
5356 pend = prev_pend;
5357 }
5358 }
5359 }
5360#ifdef FEAT_VISUALEXTRA
5361 bdp->end_char_vcols = incr;
5362#endif
5363 if (is_del && bdp->startspaces)
5364 pstart = prev_pstart;
5365 bdp->textlen = (int)(pend - pstart);
5366 }
5367 bdp->textcol = (colnr_T) (pstart - line);
5368 bdp->textstart = pstart;
5369}
5370#endif /* FEAT_VISUAL */
5371
5372#ifdef FEAT_RIGHTLEFT
5373static void reverse_line __ARGS((char_u *s));
5374
5375 static void
5376reverse_line(s)
5377 char_u *s;
5378{
5379 int i, j;
5380 char_u c;
5381
5382 if ((i = (int)STRLEN(s) - 1) <= 0)
5383 return;
5384
5385 curwin->w_cursor.col = i - curwin->w_cursor.col;
5386 for (j = 0; j < i; j++, i--)
5387 {
5388 c = s[i]; s[i] = s[j]; s[j] = c;
5389 }
5390}
5391
5392# define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
5393#else
5394# define RLADDSUBFIX(ptr)
5395#endif
5396
5397/*
5398 * add or subtract 'Prenum1' from a number in a line
5399 * 'command' is CTRL-A for add, CTRL-X for subtract
5400 *
5401 * return FAIL for failure, OK otherwise
5402 */
5403 int
5404do_addsub(command, Prenum1)
5405 int command;
5406 linenr_T Prenum1;
5407{
5408 int col;
5409 char_u *buf1;
5410 char_u buf2[NUMBUFLEN];
5411 int hex; /* 'X' or 'x': hex; '0': octal */
5412 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005413 unsigned long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 long_u oldn;
5415 char_u *ptr;
5416 int c;
5417 int length = 0; /* character length of the number */
5418 int todel;
5419 int dohex;
5420 int dooct;
5421 int doalp;
5422 int firstdigit;
5423 int negative;
5424 int subtract;
5425
5426 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5427 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
5428 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5429
5430 ptr = ml_get_curline();
5431 RLADDSUBFIX(ptr);
5432
5433 /*
5434 * First check if we are on a hexadecimal number, after the "0x".
5435 */
5436 col = curwin->w_cursor.col;
5437 if (dohex)
5438 while (col > 0 && vim_isxdigit(ptr[col]))
5439 --col;
5440 if ( dohex
5441 && col > 0
5442 && (ptr[col] == 'X'
5443 || ptr[col] == 'x')
5444 && ptr[col - 1] == '0'
5445 && vim_isxdigit(ptr[col + 1]))
5446 {
5447 /*
5448 * Found hexadecimal number, move to its start.
5449 */
5450 --col;
5451 }
5452 else
5453 {
5454 /*
5455 * Search forward and then backward to find the start of number.
5456 */
5457 col = curwin->w_cursor.col;
5458
5459 while (ptr[col] != NUL
5460 && !vim_isdigit(ptr[col])
5461 && !(doalp && ASCII_ISALPHA(ptr[col])))
5462 ++col;
5463
5464 while (col > 0
5465 && vim_isdigit(ptr[col - 1])
5466 && !(doalp && ASCII_ISALPHA(ptr[col])))
5467 --col;
5468 }
5469
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470 /*
5471 * If a number was found, and saving for undo works, replace the number.
5472 */
5473 firstdigit = ptr[col];
5474 RLADDSUBFIX(ptr);
5475 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5476 || u_save_cursor() != OK)
5477 {
5478 beep_flush();
5479 return FAIL;
5480 }
5481
5482 /* get ptr again, because u_save() may have changed it */
5483 ptr = ml_get_curline();
5484 RLADDSUBFIX(ptr);
5485
5486 if (doalp && ASCII_ISALPHA(firstdigit))
5487 {
5488 /* decrement or increment alphabetic character */
5489 if (command == Ctrl_X)
5490 {
5491 if (CharOrd(firstdigit) < Prenum1)
5492 {
5493 if (isupper(firstdigit))
5494 firstdigit = 'A';
5495 else
5496 firstdigit = 'a';
5497 }
5498 else
5499#ifdef EBCDIC
5500 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5501#else
5502 firstdigit -= Prenum1;
5503#endif
5504 }
5505 else
5506 {
5507 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5508 {
5509 if (isupper(firstdigit))
5510 firstdigit = 'Z';
5511 else
5512 firstdigit = 'z';
5513 }
5514 else
5515#ifdef EBCDIC
5516 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5517#else
5518 firstdigit += Prenum1;
5519#endif
5520 }
5521 curwin->w_cursor.col = col;
5522 (void)del_char(FALSE);
5523 ins_char(firstdigit);
5524 }
5525 else
5526 {
5527 negative = FALSE;
5528 if (col > 0 && ptr[col - 1] == '-') /* negative number */
5529 {
5530 --col;
5531 negative = TRUE;
5532 }
5533
5534 /* get the number value (unsigned) */
5535 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
5536
5537 /* ignore leading '-' for hex and octal numbers */
5538 if (hex && negative)
5539 {
5540 ++col;
5541 --length;
5542 negative = FALSE;
5543 }
5544
5545 /* add or subtract */
5546 subtract = FALSE;
5547 if (command == Ctrl_X)
5548 subtract ^= TRUE;
5549 if (negative)
5550 subtract ^= TRUE;
5551
5552 oldn = n;
5553 if (subtract)
5554 n -= (unsigned long)Prenum1;
5555 else
5556 n += (unsigned long)Prenum1;
5557
5558 /* handle wraparound for decimal numbers */
5559 if (!hex)
5560 {
5561 if (subtract)
5562 {
5563 if (n > oldn)
5564 {
5565 n = 1 + (n ^ (unsigned long)-1);
5566 negative ^= TRUE;
5567 }
5568 }
5569 else /* add */
5570 {
5571 if (n < oldn)
5572 {
5573 n = (n ^ (unsigned long)-1);
5574 negative ^= TRUE;
5575 }
5576 }
5577 if (n == 0)
5578 negative = FALSE;
5579 }
5580
5581 /*
5582 * Delete the old number.
5583 */
5584 curwin->w_cursor.col = col;
5585 todel = length;
5586 c = gchar_cursor();
5587 /*
5588 * Don't include the '-' in the length, only the length of the part
5589 * after it is kept the same.
5590 */
5591 if (c == '-')
5592 --length;
5593 while (todel-- > 0)
5594 {
5595 if (c < 0x100 && isalpha(c))
5596 {
5597 if (isupper(c))
5598 hexupper = TRUE;
5599 else
5600 hexupper = FALSE;
5601 }
5602 /* del_char() will mark line needing displaying */
5603 (void)del_char(FALSE);
5604 c = gchar_cursor();
5605 }
5606
5607 /*
5608 * Prepare the leading characters in buf1[].
5609 * When there are many leading zeros it could be very long. Allocate
5610 * a bit too much.
5611 */
5612 buf1 = alloc((unsigned)length + NUMBUFLEN);
5613 if (buf1 == NULL)
5614 return FAIL;
5615 ptr = buf1;
5616 if (negative)
5617 {
5618 *ptr++ = '-';
5619 }
5620 if (hex)
5621 {
5622 *ptr++ = '0';
5623 --length;
5624 }
5625 if (hex == 'x' || hex == 'X')
5626 {
5627 *ptr++ = hex;
5628 --length;
5629 }
5630
5631 /*
5632 * Put the number characters in buf2[].
5633 */
5634 if (hex == 0)
5635 sprintf((char *)buf2, "%lu", n);
5636 else if (hex == '0')
5637 sprintf((char *)buf2, "%lo", n);
5638 else if (hex && hexupper)
5639 sprintf((char *)buf2, "%lX", n);
5640 else
5641 sprintf((char *)buf2, "%lx", n);
5642 length -= (int)STRLEN(buf2);
5643
5644 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005645 * Adjust number of zeros to the new number of digits, so the
5646 * total length of the number remains the same.
5647 * Don't do this when
5648 * the result may look like an octal number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005650 if (firstdigit == '0' && !(dooct && hex == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651 while (length-- > 0)
5652 *ptr++ = '0';
5653 *ptr = NUL;
5654 STRCAT(buf1, buf2);
5655 ins_str(buf1); /* insert the new number */
5656 vim_free(buf1);
5657 }
5658 --curwin->w_cursor.col;
5659 curwin->w_set_curswant = TRUE;
5660#ifdef FEAT_RIGHTLEFT
5661 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
5662 RLADDSUBFIX(ptr);
5663#endif
5664 return OK;
5665}
5666
5667#ifdef FEAT_VIMINFO
5668 int
5669read_viminfo_register(virp, force)
5670 vir_T *virp;
5671 int force;
5672{
5673 int eof;
5674 int do_it = TRUE;
5675 int size;
5676 int limit;
5677 int i;
5678 int set_prev = FALSE;
5679 char_u *str;
5680 char_u **array = NULL;
5681
5682 /* We only get here (hopefully) if line[0] == '"' */
5683 str = virp->vir_line + 1;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005684
5685 /* If the line starts with "" this is the y_previous register. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686 if (*str == '"')
5687 {
5688 set_prev = TRUE;
5689 str++;
5690 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00005691
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692 if (!ASCII_ISALNUM(*str) && *str != '-')
5693 {
5694 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5695 return TRUE; /* too many errors, pretend end-of-file */
5696 do_it = FALSE;
5697 }
5698 get_yank_register(*str++, FALSE);
5699 if (!force && y_current->y_array != NULL)
5700 do_it = FALSE;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005701
5702 if (*str == '@')
5703 {
5704 /* "x@: register x used for @@ */
5705 if (force || execreg_lastc == NUL)
5706 execreg_lastc = str[-1];
5707 }
5708
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709 size = 0;
5710 limit = 100; /* Optimized for registers containing <= 100 lines */
5711 if (do_it)
5712 {
5713 if (set_prev)
5714 y_previous = y_current;
5715 vim_free(y_current->y_array);
5716 array = y_current->y_array =
5717 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
Bram Moolenaar42b94362009-05-26 16:12:37 +00005718 str = skipwhite(skiptowhite(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719 if (STRNCMP(str, "CHAR", 4) == 0)
5720 y_current->y_type = MCHAR;
5721#ifdef FEAT_VISUAL
5722 else if (STRNCMP(str, "BLOCK", 5) == 0)
5723 y_current->y_type = MBLOCK;
5724#endif
5725 else
5726 y_current->y_type = MLINE;
5727 /* get the block width; if it's missing we get a zero, which is OK */
5728 str = skipwhite(skiptowhite(str));
5729#ifdef FEAT_VISUAL
5730 y_current->y_width = getdigits(&str);
5731#else
5732 (void)getdigits(&str);
5733#endif
5734 }
5735
5736 while (!(eof = viminfo_readline(virp))
5737 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5738 {
5739 if (do_it)
5740 {
5741 if (size >= limit)
5742 {
5743 y_current->y_array = (char_u **)
5744 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
5745 for (i = 0; i < limit; i++)
5746 y_current->y_array[i] = array[i];
5747 vim_free(array);
5748 limit *= 2;
5749 array = y_current->y_array;
5750 }
5751 str = viminfo_readstring(virp, 1, TRUE);
5752 if (str != NULL)
5753 array[size++] = str;
5754 else
5755 do_it = FALSE;
5756 }
5757 }
5758 if (do_it)
5759 {
5760 if (size == 0)
5761 {
5762 vim_free(array);
5763 y_current->y_array = NULL;
5764 }
5765 else if (size < limit)
5766 {
5767 y_current->y_array =
5768 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
5769 for (i = 0; i < size; i++)
5770 y_current->y_array[i] = array[i];
5771 vim_free(array);
5772 }
5773 y_current->y_size = size;
5774 }
5775 return eof;
5776}
5777
5778 void
5779write_viminfo_registers(fp)
5780 FILE *fp;
5781{
5782 int i, j;
5783 char_u *type;
5784 char_u c;
5785 int num_lines;
5786 int max_num_lines;
5787 int max_kbyte;
5788 long len;
5789
Bram Moolenaar64404472010-06-26 06:24:45 +02005790 fputs(_("\n# Registers:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791
5792 /* Get '<' value, use old '"' value if '<' is not found. */
5793 max_num_lines = get_viminfo_parameter('<');
5794 if (max_num_lines < 0)
5795 max_num_lines = get_viminfo_parameter('"');
5796 if (max_num_lines == 0)
5797 return;
5798 max_kbyte = get_viminfo_parameter('s');
5799 if (max_kbyte == 0)
5800 return;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005801
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802 for (i = 0; i < NUM_REGISTERS; i++)
5803 {
5804 if (y_regs[i].y_array == NULL)
5805 continue;
5806#ifdef FEAT_CLIPBOARD
5807 /* Skip '*'/'+' register, we don't want them back next time */
5808 if (i == STAR_REGISTER || i == PLUS_REGISTER)
5809 continue;
5810#endif
5811#ifdef FEAT_DND
5812 /* Neither do we want the '~' register */
5813 if (i == TILDE_REGISTER)
5814 continue;
5815#endif
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005816 /* Skip empty registers. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817 num_lines = y_regs[i].y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005818 if (num_lines == 0
5819 || (num_lines == 1 && y_regs[i].y_type == MCHAR
Bram Moolenaar64404472010-06-26 06:24:45 +02005820 && *y_regs[i].y_array[0] == NUL))
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005821 continue;
5822
Bram Moolenaar071d4272004-06-13 20:20:40 +00005823 if (max_kbyte > 0)
5824 {
5825 /* Skip register if there is more text than the maximum size. */
5826 len = 0;
5827 for (j = 0; j < num_lines; j++)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005828 len += (long)STRLEN(y_regs[i].y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829 if (len > (long)max_kbyte * 1024L)
5830 continue;
5831 }
5832
5833 switch (y_regs[i].y_type)
5834 {
5835 case MLINE:
5836 type = (char_u *)"LINE";
5837 break;
5838 case MCHAR:
5839 type = (char_u *)"CHAR";
5840 break;
5841#ifdef FEAT_VISUAL
5842 case MBLOCK:
5843 type = (char_u *)"BLOCK";
5844 break;
5845#endif
5846 default:
5847 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005848 y_regs[i].y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005849 emsg(IObuff);
5850 type = (char_u *)"LINE";
5851 break;
5852 }
5853 if (y_previous == &y_regs[i])
5854 fprintf(fp, "\"");
5855 c = get_register_name(i);
Bram Moolenaar42b94362009-05-26 16:12:37 +00005856 fprintf(fp, "\"%c", c);
5857 if (c == execreg_lastc)
5858 fprintf(fp, "@");
5859 fprintf(fp, "\t%s\t%d\n", type,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860#ifdef FEAT_VISUAL
5861 (int)y_regs[i].y_width
5862#else
5863 0
5864#endif
5865 );
5866
5867 /* If max_num_lines < 0, then we save ALL the lines in the register */
5868 if (max_num_lines > 0 && num_lines > max_num_lines)
5869 num_lines = max_num_lines;
5870 for (j = 0; j < num_lines; j++)
5871 {
5872 putc('\t', fp);
5873 viminfo_writestring(fp, y_regs[i].y_array[j]);
5874 }
5875 }
5876}
5877#endif /* FEAT_VIMINFO */
5878
5879#if defined(FEAT_CLIPBOARD) || defined(PROTO)
5880/*
5881 * SELECTION / PRIMARY ('*')
5882 *
5883 * Text selection stuff that uses the GUI selection register '*'. When using a
5884 * GUI this may be text from another window, otherwise it is the last text we
5885 * had highlighted with VIsual mode. With mouse support, clicking the middle
5886 * button performs the paste, otherwise you will need to do <"*p>. "
5887 * If not under X, it is synonymous with the clipboard register '+'.
5888 *
5889 * X CLIPBOARD ('+')
5890 *
5891 * Text selection stuff that uses the GUI clipboard register '+'.
5892 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5893 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5894 * otherwise you will need to do <"+p>. "
5895 * If not under X, it is synonymous with the selection register '*'.
5896 */
5897
5898/*
5899 * Routine to export any final X selection we had to the environment
5900 * so that the text is still available after vim has exited. X selections
5901 * only exist while the owning application exists, so we write to the
5902 * permanent (while X runs) store CUT_BUFFER0.
5903 * Dump the CLIPBOARD selection if we own it (it's logically the more
5904 * 'permanent' of the two), otherwise the PRIMARY one.
5905 * For now, use a hard-coded sanity limit of 1Mb of data.
5906 */
5907#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5908 void
5909x11_export_final_selection()
5910{
5911 Display *dpy;
5912 char_u *str = NULL;
5913 long_u len = 0;
5914 int motion_type = -1;
5915
5916# ifdef FEAT_GUI
5917 if (gui.in_use)
5918 dpy = X_DISPLAY;
5919 else
5920# endif
5921# ifdef FEAT_XCLIPBOARD
5922 dpy = xterm_dpy;
5923# else
5924 return;
5925# endif
5926
5927 /* Get selection to export */
5928 if (clip_plus.owned)
5929 motion_type = clip_convert_selection(&str, &len, &clip_plus);
5930 else if (clip_star.owned)
5931 motion_type = clip_convert_selection(&str, &len, &clip_star);
5932
5933 /* Check it's OK */
5934 if (dpy != NULL && str != NULL && motion_type >= 0
5935 && len < 1024*1024 && len > 0)
5936 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005937#ifdef FEAT_MBYTE
Bram Moolenaare2e663f2013-03-07 18:02:30 +01005938 int ok = TRUE;
5939
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005940 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
5941 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
5942 * encoding conversion usually doesn't work, so keep the text as-is.
5943 */
5944 if (has_mbyte)
5945 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005946 vimconv_T vc;
5947
5948 vc.vc_type = CONV_NONE;
5949 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
5950 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01005951 int intlen = len;
5952 char_u *conv_str;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00005953
Bram Moolenaare2e663f2013-03-07 18:02:30 +01005954 vc.vc_fail = TRUE;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00005955 conv_str = string_convert(&vc, str, &intlen);
5956 len = intlen;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005957 if (conv_str != NULL)
5958 {
5959 vim_free(str);
5960 str = conv_str;
5961 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01005962 else
5963 {
5964 ok = FALSE;
5965 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005966 convert_setup(&vc, NULL, NULL);
5967 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01005968 else
5969 {
5970 ok = FALSE;
5971 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005972 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01005973
5974 /* Do not store the string if conversion failed. Better to use any
5975 * other selection than garbled text. */
5976 if (ok)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005977#endif
Bram Moolenaare2e663f2013-03-07 18:02:30 +01005978 {
5979 XStoreBuffer(dpy, (char *)str, (int)len, 0);
5980 XFlush(dpy);
5981 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005982 }
5983
5984 vim_free(str);
5985}
5986#endif
5987
5988 void
5989clip_free_selection(cbd)
5990 VimClipboard *cbd;
5991{
5992 struct yankreg *y_ptr = y_current;
5993
5994 if (cbd == &clip_plus)
5995 y_current = &y_regs[PLUS_REGISTER];
5996 else
5997 y_current = &y_regs[STAR_REGISTER];
5998 free_yank_all();
5999 y_current->y_size = 0;
6000 y_current = y_ptr;
6001}
6002
6003/*
6004 * Get the selected text and put it in the gui selection register '*' or '+'.
6005 */
6006 void
6007clip_get_selection(cbd)
6008 VimClipboard *cbd;
6009{
6010 struct yankreg *old_y_previous, *old_y_current;
6011 pos_T old_cursor;
6012#ifdef FEAT_VISUAL
6013 pos_T old_visual;
6014 int old_visual_mode;
6015#endif
6016 colnr_T old_curswant;
6017 int old_set_curswant;
6018 pos_T old_op_start, old_op_end;
6019 oparg_T oa;
6020 cmdarg_T ca;
6021
6022 if (cbd->owned)
6023 {
6024 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
6025 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
6026 return;
6027
6028 /* Get the text between clip_star.start & clip_star.end */
6029 old_y_previous = y_previous;
6030 old_y_current = y_current;
6031 old_cursor = curwin->w_cursor;
6032 old_curswant = curwin->w_curswant;
6033 old_set_curswant = curwin->w_set_curswant;
6034 old_op_start = curbuf->b_op_start;
6035 old_op_end = curbuf->b_op_end;
6036#ifdef FEAT_VISUAL
6037 old_visual = VIsual;
6038 old_visual_mode = VIsual_mode;
6039#endif
6040 clear_oparg(&oa);
6041 oa.regname = (cbd == &clip_plus ? '+' : '*');
6042 oa.op_type = OP_YANK;
6043 vim_memset(&ca, 0, sizeof(ca));
6044 ca.oap = &oa;
6045 ca.cmdchar = 'y';
6046 ca.count1 = 1;
6047 ca.retval = CA_NO_ADJ_OP_END;
6048 do_pending_operator(&ca, 0, TRUE);
6049 y_previous = old_y_previous;
6050 y_current = old_y_current;
6051 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006052 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006053 curwin->w_curswant = old_curswant;
6054 curwin->w_set_curswant = old_set_curswant;
6055 curbuf->b_op_start = old_op_start;
6056 curbuf->b_op_end = old_op_end;
6057#ifdef FEAT_VISUAL
6058 VIsual = old_visual;
6059 VIsual_mode = old_visual_mode;
6060#endif
6061 }
6062 else
6063 {
6064 clip_free_selection(cbd);
6065
6066 /* Try to get selected text from another window */
6067 clip_gen_request_selection(cbd);
6068 }
6069}
6070
Bram Moolenaard44347f2011-06-19 01:14:29 +02006071/*
6072 * Convert from the GUI selection string into the '*'/'+' register.
6073 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074 void
6075clip_yank_selection(type, str, len, cbd)
6076 int type;
6077 char_u *str;
6078 long len;
6079 VimClipboard *cbd;
6080{
6081 struct yankreg *y_ptr;
6082
6083 if (cbd == &clip_plus)
6084 y_ptr = &y_regs[PLUS_REGISTER];
6085 else
6086 y_ptr = &y_regs[STAR_REGISTER];
6087
6088 clip_free_selection(cbd);
6089
6090 str_to_reg(y_ptr, type, str, len, 0L);
6091}
6092
6093/*
6094 * Convert the '*'/'+' register into a GUI selection string returned in *str
6095 * with length *len.
6096 * Returns the motion type, or -1 for failure.
6097 */
6098 int
6099clip_convert_selection(str, len, cbd)
6100 char_u **str;
6101 long_u *len;
6102 VimClipboard *cbd;
6103{
6104 char_u *p;
6105 int lnum;
6106 int i, j;
6107 int_u eolsize;
6108 struct yankreg *y_ptr;
6109
6110 if (cbd == &clip_plus)
6111 y_ptr = &y_regs[PLUS_REGISTER];
6112 else
6113 y_ptr = &y_regs[STAR_REGISTER];
6114
6115#ifdef USE_CRNL
6116 eolsize = 2;
6117#else
6118 eolsize = 1;
6119#endif
6120
6121 *str = NULL;
6122 *len = 0;
6123 if (y_ptr->y_array == NULL)
6124 return -1;
6125
6126 for (i = 0; i < y_ptr->y_size; i++)
6127 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
6128
6129 /*
6130 * Don't want newline character at end of last line if we're in MCHAR mode.
6131 */
6132 if (y_ptr->y_type == MCHAR && *len >= eolsize)
6133 *len -= eolsize;
6134
6135 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
6136 if (p == NULL)
6137 return -1;
6138 lnum = 0;
6139 for (i = 0, j = 0; i < (int)*len; i++, j++)
6140 {
6141 if (y_ptr->y_array[lnum][j] == '\n')
6142 p[i] = NUL;
6143 else if (y_ptr->y_array[lnum][j] == NUL)
6144 {
6145#ifdef USE_CRNL
6146 p[i++] = '\r';
6147#endif
6148#ifdef USE_CR
6149 p[i] = '\r';
6150#else
6151 p[i] = '\n';
6152#endif
6153 lnum++;
6154 j = -1;
6155 }
6156 else
6157 p[i] = y_ptr->y_array[lnum][j];
6158 }
6159 return y_ptr->y_type;
6160}
6161
6162
6163# if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
6164/*
6165 * If we have written to a clipboard register, send the text to the clipboard.
6166 */
6167 static void
6168may_set_selection()
6169{
6170 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
6171 {
6172 clip_own_selection(&clip_star);
6173 clip_gen_set_selection(&clip_star);
6174 }
6175 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
6176 {
6177 clip_own_selection(&clip_plus);
6178 clip_gen_set_selection(&clip_plus);
6179 }
6180}
6181# endif
6182
6183#endif /* FEAT_CLIPBOARD || PROTO */
6184
6185
6186#if defined(FEAT_DND) || defined(PROTO)
6187/*
6188 * Replace the contents of the '~' register with str.
6189 */
6190 void
6191dnd_yank_drag_data(str, len)
6192 char_u *str;
6193 long len;
6194{
6195 struct yankreg *curr;
6196
6197 curr = y_current;
6198 y_current = &y_regs[TILDE_REGISTER];
6199 free_yank_all();
6200 str_to_reg(y_current, MCHAR, str, len, 0L);
6201 y_current = curr;
6202}
6203#endif
6204
6205
6206#if defined(FEAT_EVAL) || defined(PROTO)
6207/*
6208 * Return the type of a register.
6209 * Used for getregtype()
6210 * Returns MAUTO for error.
6211 */
6212 char_u
6213get_reg_type(regname, reglen)
6214 int regname;
6215 long *reglen;
6216{
6217 switch (regname)
6218 {
6219 case '%': /* file name */
6220 case '#': /* alternate file name */
6221 case '=': /* expression */
6222 case ':': /* last command line */
6223 case '/': /* last search-pattern */
6224 case '.': /* last inserted text */
6225#ifdef FEAT_SEARCHPATH
6226 case Ctrl_F: /* Filename under cursor */
6227 case Ctrl_P: /* Path under cursor, expand via "path" */
6228#endif
6229 case Ctrl_W: /* word under cursor */
6230 case Ctrl_A: /* WORD (mnemonic All) under cursor */
6231 case '_': /* black hole: always empty */
6232 return MCHAR;
6233 }
6234
6235#ifdef FEAT_CLIPBOARD
6236 regname = may_get_selection(regname);
6237#endif
6238
6239 /* Should we check for a valid name? */
6240 get_yank_register(regname, FALSE);
6241
6242 if (y_current->y_array != NULL)
6243 {
6244#ifdef FEAT_VISUAL
6245 if (reglen != NULL && y_current->y_type == MBLOCK)
6246 *reglen = y_current->y_width;
6247#endif
6248 return y_current->y_type;
6249 }
6250 return MAUTO;
6251}
6252
6253/*
6254 * Return the contents of a register as a single allocated string.
6255 * Used for "@r" in expressions and for getreg().
6256 * Returns NULL for error.
6257 */
6258 char_u *
Bram Moolenaarde934d72005-05-22 22:09:40 +00006259get_reg_contents(regname, allowexpr, expr_src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006260 int regname;
Bram Moolenaarde934d72005-05-22 22:09:40 +00006261 int allowexpr; /* allow "=" register */
6262 int expr_src; /* get expression for "=" register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263{
6264 long i;
6265 char_u *retval;
6266 int allocated;
6267 long len;
6268
6269 /* Don't allow using an expression register inside an expression */
6270 if (regname == '=')
6271 {
6272 if (allowexpr)
Bram Moolenaarde934d72005-05-22 22:09:40 +00006273 {
6274 if (expr_src)
6275 return get_expr_line_src();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276 return get_expr_line();
Bram Moolenaarde934d72005-05-22 22:09:40 +00006277 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278 return NULL;
6279 }
6280
6281 if (regname == '@') /* "@@" is used for unnamed register */
6282 regname = '"';
6283
6284 /* check for valid regname */
6285 if (regname != NUL && !valid_yank_reg(regname, FALSE))
6286 return NULL;
6287
6288#ifdef FEAT_CLIPBOARD
6289 regname = may_get_selection(regname);
6290#endif
6291
6292 if (get_spec_reg(regname, &retval, &allocated, FALSE))
6293 {
6294 if (retval == NULL)
6295 return NULL;
6296 if (!allocated)
6297 retval = vim_strsave(retval);
6298 return retval;
6299 }
6300
6301 get_yank_register(regname, FALSE);
6302 if (y_current->y_array == NULL)
6303 return NULL;
6304
6305 /*
6306 * Compute length of resulting string.
6307 */
6308 len = 0;
6309 for (i = 0; i < y_current->y_size; ++i)
6310 {
6311 len += (long)STRLEN(y_current->y_array[i]);
6312 /*
6313 * Insert a newline between lines and after last line if
6314 * y_type is MLINE.
6315 */
6316 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6317 ++len;
6318 }
6319
6320 retval = lalloc(len + 1, TRUE);
6321
6322 /*
6323 * Copy the lines of the yank register into the string.
6324 */
6325 if (retval != NULL)
6326 {
6327 len = 0;
6328 for (i = 0; i < y_current->y_size; ++i)
6329 {
6330 STRCPY(retval + len, y_current->y_array[i]);
6331 len += (long)STRLEN(retval + len);
6332
6333 /*
6334 * Insert a NL between lines and after the last line if y_type is
6335 * MLINE.
6336 */
6337 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6338 retval[len++] = '\n';
6339 }
6340 retval[len] = NUL;
6341 }
6342
6343 return retval;
6344}
6345
6346/*
6347 * Store string "str" in register "name".
6348 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
6349 * If "must_append" is TRUE, always append to the register. Otherwise append
6350 * if "name" is an uppercase letter.
6351 * Note: "maxlen" and "must_append" don't work for the "/" register.
6352 * Careful: 'str' is modified, you may have to use a copy!
6353 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
6354 */
6355 void
6356write_reg_contents(name, str, maxlen, must_append)
6357 int name;
6358 char_u *str;
6359 int maxlen;
6360 int must_append;
6361{
6362 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
6363}
6364
6365 void
6366write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
6367 int name;
6368 char_u *str;
6369 int maxlen;
6370 int must_append;
6371 int yank_type;
6372 long block_len;
6373{
6374 struct yankreg *old_y_previous, *old_y_current;
6375 long len;
6376
Bram Moolenaare7566042005-06-17 22:00:15 +00006377 if (maxlen >= 0)
6378 len = maxlen;
6379 else
6380 len = (long)STRLEN(str);
6381
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382 /* Special case: '/' search pattern */
6383 if (name == '/')
6384 {
6385 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
6386 return;
6387 }
6388
Bram Moolenaare7566042005-06-17 22:00:15 +00006389#ifdef FEAT_EVAL
6390 if (name == '=')
6391 {
6392 char_u *p, *s;
6393
6394 p = vim_strnsave(str, (int)len);
6395 if (p == NULL)
6396 return;
6397 if (must_append)
6398 {
6399 s = concat_str(get_expr_line_src(), p);
6400 vim_free(p);
6401 p = s;
6402
6403 }
6404 set_expr_line(p);
6405 return;
6406 }
6407#endif
6408
Bram Moolenaar071d4272004-06-13 20:20:40 +00006409 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6410 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006411 emsg_invreg(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006412 return;
6413 }
6414
6415 if (name == '_') /* black hole: nothing to do */
6416 return;
6417
6418 /* Don't want to change the current (unnamed) register */
6419 old_y_previous = y_previous;
6420 old_y_current = y_current;
6421
6422 get_yank_register(name, TRUE);
6423 if (!y_append && !must_append)
6424 free_yank_all();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006425#ifndef FEAT_VISUAL
6426 /* Just in case - make sure we don't use MBLOCK */
6427 if (yank_type == MBLOCK)
6428 yank_type = MAUTO;
6429#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430 str_to_reg(y_current, yank_type, str, len, block_len);
6431
6432# ifdef FEAT_CLIPBOARD
6433 /* Send text of clipboard register to the clipboard. */
6434 may_set_selection();
6435# endif
6436
6437 /* ':let @" = "val"' should change the meaning of the "" register */
6438 if (name != '"')
6439 y_previous = old_y_previous;
6440 y_current = old_y_current;
6441}
6442#endif /* FEAT_EVAL */
6443
6444#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6445/*
6446 * Put a string into a register. When the register is not empty, the string
6447 * is appended.
6448 */
6449 static void
Bram Moolenaard44347f2011-06-19 01:14:29 +02006450str_to_reg(y_ptr, yank_type, str, len, blocklen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451 struct yankreg *y_ptr; /* pointer to yank register */
Bram Moolenaard44347f2011-06-19 01:14:29 +02006452 int yank_type; /* MCHAR, MLINE, MBLOCK, MAUTO */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 char_u *str; /* string to put in register */
6454 long len; /* length of string */
6455 long blocklen; /* width of Visual block */
6456{
Bram Moolenaard44347f2011-06-19 01:14:29 +02006457 int type; /* MCHAR, MLINE or MBLOCK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006458 int lnum;
6459 long start;
6460 long i;
6461 int extra;
6462 int newlines; /* number of lines added */
6463 int extraline = 0; /* extra line at the end */
6464 int append = FALSE; /* append to last line in register */
6465 char_u *s;
6466 char_u **pp;
6467#ifdef FEAT_VISUAL
6468 long maxlen;
6469#endif
6470
Bram Moolenaarcde547a2009-11-17 11:43:06 +00006471 if (y_ptr->y_array == NULL) /* NULL means empty register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 y_ptr->y_size = 0;
6473
Bram Moolenaard44347f2011-06-19 01:14:29 +02006474 if (yank_type == MAUTO)
6475 type = ((len > 0 && (str[len - 1] == NL || str[len - 1] == CAR))
6476 ? MLINE : MCHAR);
6477 else
6478 type = yank_type;
6479
Bram Moolenaar071d4272004-06-13 20:20:40 +00006480 /*
6481 * Count the number of lines within the string
6482 */
6483 newlines = 0;
6484 for (i = 0; i < len; i++)
6485 if (str[i] == '\n')
6486 ++newlines;
6487 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
6488 {
6489 extraline = 1;
6490 ++newlines; /* count extra newline at the end */
6491 }
6492 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
6493 {
6494 append = TRUE;
6495 --newlines; /* uncount newline when appending first line */
6496 }
6497
6498 /*
6499 * Allocate an array to hold the pointers to the new register lines.
6500 * If the register was not empty, move the existing lines to the new array.
6501 */
6502 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
6503 * sizeof(char_u *), TRUE);
6504 if (pp == NULL) /* out of memory */
6505 return;
6506 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
6507 pp[lnum] = y_ptr->y_array[lnum];
6508 vim_free(y_ptr->y_array);
6509 y_ptr->y_array = pp;
6510#ifdef FEAT_VISUAL
6511 maxlen = 0;
6512#endif
6513
6514 /*
6515 * Find the end of each line and save it into the array.
6516 */
6517 for (start = 0; start < len + extraline; start += i + 1)
6518 {
6519 for (i = start; i < len; ++i) /* find the end of the line */
6520 if (str[i] == '\n')
6521 break;
6522 i -= start; /* i is now length of line */
6523#ifdef FEAT_VISUAL
6524 if (i > maxlen)
6525 maxlen = i;
6526#endif
6527 if (append)
6528 {
6529 --lnum;
6530 extra = (int)STRLEN(y_ptr->y_array[lnum]);
6531 }
6532 else
6533 extra = 0;
6534 s = alloc((unsigned)(i + extra + 1));
6535 if (s == NULL)
6536 break;
6537 if (extra)
6538 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
6539 if (append)
6540 vim_free(y_ptr->y_array[lnum]);
6541 if (i)
6542 mch_memmove(s + extra, str + start, (size_t)i);
6543 extra += i;
6544 s[extra] = NUL;
6545 y_ptr->y_array[lnum++] = s;
6546 while (--extra >= 0)
6547 {
6548 if (*s == NUL)
6549 *s = '\n'; /* replace NUL with newline */
6550 ++s;
6551 }
6552 append = FALSE; /* only first line is appended */
6553 }
6554 y_ptr->y_type = type;
6555 y_ptr->y_size = lnum;
6556# ifdef FEAT_VISUAL
6557 if (type == MBLOCK)
6558 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
6559 else
6560 y_ptr->y_width = 0;
6561# endif
6562}
6563#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
6564
6565 void
6566clear_oparg(oap)
6567 oparg_T *oap;
6568{
6569 vim_memset(oap, 0, sizeof(oparg_T));
6570}
6571
Bram Moolenaar7c626922005-02-07 22:01:03 +00006572static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006573
6574/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00006575 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006576 *
6577 * "Words" are counted by looking for boundaries between non-space and
6578 * space characters. (it seems to produce results that match 'wc'.)
6579 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00006580 * Return value is byte count; word count for the line is added to "*wc".
6581 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582 *
6583 * The function will only examine the first "limit" characters in the
6584 * line, stopping if it encounters an end-of-line (NUL byte). In that
6585 * case, eol_size will be added to the character count to account for
6586 * the size of the EOL character.
6587 */
6588 static long
Bram Moolenaar7c626922005-02-07 22:01:03 +00006589line_count_info(line, wc, cc, limit, eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006590 char_u *line;
6591 long *wc;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006592 long *cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006593 long limit;
6594 int eol_size;
6595{
Bram Moolenaar7c626922005-02-07 22:01:03 +00006596 long i;
6597 long words = 0;
6598 long chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599 int is_word = 0;
6600
Bram Moolenaar88b1ba12012-06-29 13:34:19 +02006601 for (i = 0; i < limit && line[i] != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006602 {
6603 if (is_word)
6604 {
6605 if (vim_isspace(line[i]))
6606 {
6607 words++;
6608 is_word = 0;
6609 }
6610 }
6611 else if (!vim_isspace(line[i]))
6612 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006613 ++chars;
6614#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006615 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00006616#else
6617 ++i;
6618#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619 }
6620
6621 if (is_word)
6622 words++;
6623 *wc += words;
6624
6625 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar1cb7e092011-08-10 12:11:01 +02006626 if (i < limit && line[i] == NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006627 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006628 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006629 chars += eol_size;
6630 }
6631 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632 return i;
6633}
6634
6635/*
6636 * Give some info about the position of the cursor (for "g CTRL-G").
6637 * In Visual mode, give some info about the selected region. (In this case,
6638 * the *_count_cursor variables store running totals for the selection.)
6639 */
6640 void
6641cursor_pos_info()
6642{
6643 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006644 char_u buf1[50];
6645 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006646 linenr_T lnum;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006647 long byte_count = 0;
6648 long byte_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006649 long char_count = 0;
6650 long char_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651 long word_count = 0;
6652 long word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006653 int eol_size;
6654 long last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006655#ifdef FEAT_VISUAL
6656 long line_count_selected = 0;
6657 pos_T min_pos, max_pos;
6658 oparg_T oparg;
6659 struct block_def bd;
6660#endif
6661
6662 /*
6663 * Compute the length of the file in characters.
6664 */
6665 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6666 {
6667 MSG(_(no_lines_msg));
6668 }
6669 else
6670 {
6671 if (get_fileformat(curbuf) == EOL_DOS)
6672 eol_size = 2;
6673 else
6674 eol_size = 1;
6675
6676#ifdef FEAT_VISUAL
6677 if (VIsual_active)
6678 {
6679 if (lt(VIsual, curwin->w_cursor))
6680 {
6681 min_pos = VIsual;
6682 max_pos = curwin->w_cursor;
6683 }
6684 else
6685 {
6686 min_pos = curwin->w_cursor;
6687 max_pos = VIsual;
6688 }
6689 if (*p_sel == 'e' && max_pos.col > 0)
6690 --max_pos.col;
6691
6692 if (VIsual_mode == Ctrl_V)
6693 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00006694#ifdef FEAT_LINEBREAK
6695 char_u * saved_sbr = p_sbr;
6696
6697 /* Make 'sbr' empty for a moment to get the correct size. */
6698 p_sbr = empty_option;
6699#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006700 oparg.is_VIsual = 1;
6701 oparg.block_mode = TRUE;
6702 oparg.op_type = OP_NOP;
6703 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006704 &oparg.start_vcol, &oparg.end_vcol);
Bram Moolenaar81d00072009-04-29 15:41:40 +00006705#ifdef FEAT_LINEBREAK
6706 p_sbr = saved_sbr;
6707#endif
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006708 if (curwin->w_curswant == MAXCOL)
6709 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006710 /* Swap the start, end vcol if needed */
6711 if (oparg.end_vcol < oparg.start_vcol)
6712 {
6713 oparg.end_vcol += oparg.start_vcol;
6714 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
6715 oparg.end_vcol -= oparg.start_vcol;
6716 }
6717 }
6718 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
6719 }
6720#endif
6721
6722 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6723 {
6724 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006725 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006726 {
6727 ui_breakcheck();
6728 if (got_int)
6729 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006730 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006731 }
6732
6733#ifdef FEAT_VISUAL
6734 /* Do extra processing for VIsual mode. */
6735 if (VIsual_active
6736 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
6737 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00006738 char_u *s = NULL;
6739 long len = 0L;
6740
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741 switch (VIsual_mode)
6742 {
6743 case Ctrl_V:
6744# ifdef FEAT_VIRTUALEDIT
6745 virtual_op = virtual_active();
6746# endif
6747 block_prep(&oparg, &bd, lnum, 0);
6748# ifdef FEAT_VIRTUALEDIT
6749 virtual_op = MAYBE;
6750# endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00006751 s = bd.textstart;
6752 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006753 break;
6754 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00006755 s = ml_get(lnum);
6756 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006757 break;
6758 case 'v':
6759 {
6760 colnr_T start_col = (lnum == min_pos.lnum)
6761 ? min_pos.col : 0;
6762 colnr_T end_col = (lnum == max_pos.lnum)
6763 ? max_pos.col - start_col + 1 : MAXCOL;
6764
Bram Moolenaardef9e822004-12-31 20:58:58 +00006765 s = ml_get(lnum) + start_col;
6766 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006767 }
6768 break;
6769 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00006770 if (s != NULL)
6771 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00006772 byte_count_cursor += line_count_info(s, &word_count_cursor,
6773 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00006774 if (lnum == curbuf->b_ml.ml_line_count
6775 && !curbuf->b_p_eol
6776 && curbuf->b_p_bin
Bram Moolenaarec2dad62005-01-02 11:36:03 +00006777 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006778 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00006779 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006780 }
6781 else
6782#endif
6783 {
6784 /* In non-visual mode, check for the line the cursor is on */
6785 if (lnum == curwin->w_cursor.lnum)
6786 {
6787 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006788 char_count_cursor += char_count;
6789 byte_count_cursor = byte_count +
6790 line_count_info(ml_get(lnum),
6791 &word_count_cursor, &char_count_cursor,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792 (long)(curwin->w_cursor.col + 1), eol_size);
6793 }
6794 }
6795 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006796 byte_count += line_count_info(ml_get(lnum), &word_count,
6797 &char_count, (long)MAXCOL, eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798 }
6799
6800 /* Correction for when last line doesn't have an EOL. */
6801 if (!curbuf->b_p_eol && curbuf->b_p_bin)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006802 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006803
6804#ifdef FEAT_VISUAL
6805 if (VIsual_active)
6806 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006807 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006808 {
6809 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006810 &max_pos.col);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006811 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006812 (long)(oparg.end_vcol - oparg.start_vcol + 1));
6813 }
6814 else
6815 buf1[0] = NUL;
6816
Bram Moolenaar7c626922005-02-07 22:01:03 +00006817 if (char_count_cursor == byte_count_cursor
Bram Moolenaar555b2802005-05-19 21:08:39 +00006818 && char_count == byte_count)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006819 vim_snprintf((char *)IObuff, IOSIZE,
6820 _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821 buf1, line_count_selected,
6822 (long)curbuf->b_ml.ml_line_count,
6823 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006824 byte_count_cursor, byte_count);
6825 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006826 vim_snprintf((char *)IObuff, IOSIZE,
6827 _("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 +00006828 buf1, line_count_selected,
6829 (long)curbuf->b_ml.ml_line_count,
6830 word_count_cursor, word_count,
6831 char_count_cursor, char_count,
6832 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006833 }
6834 else
6835#endif
6836 {
6837 p = ml_get_curline();
6838 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006839 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006840 (int)curwin->w_virtcol + 1);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006841 col_print(buf2, sizeof(buf2), (int)STRLEN(p), linetabsize(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006842
Bram Moolenaar7c626922005-02-07 22:01:03 +00006843 if (char_count_cursor == byte_count_cursor
6844 && char_count == byte_count)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006845 vim_snprintf((char *)IObuff, IOSIZE,
6846 _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006847 (char *)buf1, (char *)buf2,
6848 (long)curwin->w_cursor.lnum,
6849 (long)curbuf->b_ml.ml_line_count,
6850 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006851 byte_count_cursor, byte_count);
6852 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006853 vim_snprintf((char *)IObuff, IOSIZE,
6854 _("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 +00006855 (char *)buf1, (char *)buf2,
6856 (long)curwin->w_cursor.lnum,
6857 (long)curbuf->b_ml.ml_line_count,
6858 word_count_cursor, word_count,
6859 char_count_cursor, char_count,
6860 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006861 }
6862
6863#ifdef FEAT_MBYTE
Bram Moolenaar7c626922005-02-07 22:01:03 +00006864 byte_count = bomb_size();
6865 if (byte_count > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006866 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
Bram Moolenaar7c626922005-02-07 22:01:03 +00006867 byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868#endif
6869 /* Don't shorten this message, the user asked for it. */
6870 p = p_shm;
6871 p_shm = (char_u *)"";
6872 msg(IObuff);
6873 p_shm = p;
6874 }
6875}