blob: bc2860a0d3612e8b4c2a846c0abc545ef7681e02 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ops.c: implementation of various operators: op_shift, op_delete, op_tilde,
12 * op_change, op_yank, do_put, do_join
13 */
14
15#include "vim.h"
16
17/*
18 * Number of registers.
19 * 0 = unnamed register, for normal yanks and puts
20 * 1..9 = registers '1' to '9', for deletes
21 * 10..35 = registers 'a' to 'z'
22 * 36 = delete register '-'
23 * 37 = Selection register '*'. Only if FEAT_CLIPBOARD defined
24 * 38 = Clipboard register '+'. Only if FEAT_CLIPBOARD and FEAT_X11 defined
25 */
26/*
27 * Symbolic names for some registers.
28 */
29#define DELETION_REGISTER 36
30#ifdef FEAT_CLIPBOARD
31# define STAR_REGISTER 37
32# ifdef FEAT_X11
33# define PLUS_REGISTER 38
34# else
35# define PLUS_REGISTER STAR_REGISTER /* there is only one */
36# endif
37#endif
38#ifdef FEAT_DND
39# define TILDE_REGISTER (PLUS_REGISTER + 1)
40#endif
41
42#ifdef FEAT_CLIPBOARD
43# ifdef FEAT_DND
44# define NUM_REGISTERS (TILDE_REGISTER + 1)
45# else
46# define NUM_REGISTERS (PLUS_REGISTER + 1)
47# endif
48#else
49# define NUM_REGISTERS 37
50#endif
51
52/*
53 * Each yank register is an array of pointers to lines.
54 */
55static struct yankreg
56{
57 char_u **y_array; /* pointer to array of line pointers */
58 linenr_T y_size; /* number of lines in y_array */
59 char_u y_type; /* MLINE, MCHAR or MBLOCK */
60#ifdef FEAT_VISUAL
61 colnr_T y_width; /* only set if y_type == MBLOCK */
62#endif
63} y_regs[NUM_REGISTERS];
64
65static struct yankreg *y_current; /* ptr to current yankreg */
66static int y_append; /* TRUE when appending */
67static struct yankreg *y_previous = NULL; /* ptr to last written yankreg */
68
69/*
70 * structure used by block_prep, op_delete and op_yank for blockwise operators
71 * also op_change, op_shift, op_insert, op_replace - AKelly
72 */
73struct block_def
74{
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +000075 int startspaces; /* 'extra' cols before first char */
76 int endspaces; /* 'extra' cols after last char */
Bram Moolenaar071d4272004-06-13 20:20:40 +000077 int textlen; /* chars in block */
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +000078 char_u *textstart; /* pointer to 1st char (partially) in block */
79 colnr_T textcol; /* index of chars (partially) in block */
Bram Moolenaar071d4272004-06-13 20:20:40 +000080 colnr_T start_vcol; /* start col of 1st char wholly inside block */
81 colnr_T end_vcol; /* start col of 1st char wholly after block */
82#ifdef FEAT_VISUALEXTRA
83 int is_short; /* TRUE if line is too short to fit in block */
84 int is_MAX; /* TRUE if curswant==MAXCOL when starting */
85 int is_oneChar; /* TRUE if block within one character */
86 int pre_whitesp; /* screen cols of ws before block */
87 int pre_whitesp_c; /* chars of ws before block */
88 colnr_T end_char_vcols; /* number of vcols of post-block char */
89#endif
90 colnr_T start_char_vcols; /* number of vcols of pre-block char */
91};
92
93#ifdef FEAT_VISUALEXTRA
94static void shift_block __ARGS((oparg_T *oap, int amount));
95static void block_insert __ARGS((oparg_T *oap, char_u *s, int b_insert, struct block_def*bdp));
96#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000097static int stuff_yank __ARGS((int, char_u *));
Bram Moolenaard333d1e2006-11-07 17:43:47 +000098static void put_reedit_in_typebuf __ARGS((int silent));
Bram Moolenaar7f6ca072007-02-27 16:21:38 +000099static int put_in_typebuf __ARGS((char_u *s, int esc, int colon,
100 int silent));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101static void stuffescaped __ARGS((char_u *arg, int literally));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102#ifdef FEAT_MBYTE
103static void mb_adjust_opend __ARGS((oparg_T *oap));
104#endif
105static void free_yank __ARGS((long));
106static void free_yank_all __ARGS((void));
107static int yank_copy_line __ARGS((struct block_def *bd, long y_idx));
108#ifdef FEAT_CLIPBOARD
109static void copy_yank_reg __ARGS((struct yankreg *reg));
110# if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
111static void may_set_selection __ARGS((void));
112# endif
113#endif
114static void dis_msg __ARGS((char_u *p, int skip_esc));
115#ifdef FEAT_VISUAL
116static void block_prep __ARGS((oparg_T *oap, struct block_def *, linenr_T, int));
117#endif
118#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
119static void str_to_reg __ARGS((struct yankreg *y_ptr, int type, char_u *str, long len, long blocklen));
120#endif
121static int ends_in_white __ARGS((linenr_T lnum));
122#ifdef FEAT_COMMENTS
123static int same_leader __ARGS((linenr_T lnum, int, char_u *, int, char_u *));
124static int fmt_check_par __ARGS((linenr_T, int *, char_u **, int do_comments));
125#else
126static int fmt_check_par __ARGS((linenr_T));
127#endif
128
129/*
130 * The names of operators.
131 * IMPORTANT: Index must correspond with defines in vim.h!!!
132 * The third field indicates whether the operator always works on lines.
133 */
134static char opchars[][3] =
135{
136 {NUL, NUL, FALSE}, /* OP_NOP */
137 {'d', NUL, FALSE}, /* OP_DELETE */
138 {'y', NUL, FALSE}, /* OP_YANK */
139 {'c', NUL, FALSE}, /* OP_CHANGE */
140 {'<', NUL, TRUE}, /* OP_LSHIFT */
141 {'>', NUL, TRUE}, /* OP_RSHIFT */
142 {'!', NUL, TRUE}, /* OP_FILTER */
143 {'g', '~', FALSE}, /* OP_TILDE */
144 {'=', NUL, TRUE}, /* OP_INDENT */
145 {'g', 'q', TRUE}, /* OP_FORMAT */
146 {':', NUL, TRUE}, /* OP_COLON */
147 {'g', 'U', FALSE}, /* OP_UPPER */
148 {'g', 'u', FALSE}, /* OP_LOWER */
149 {'J', NUL, TRUE}, /* DO_JOIN */
150 {'g', 'J', TRUE}, /* DO_JOIN_NS */
151 {'g', '?', FALSE}, /* OP_ROT13 */
152 {'r', NUL, FALSE}, /* OP_REPLACE */
153 {'I', NUL, FALSE}, /* OP_INSERT */
154 {'A', NUL, FALSE}, /* OP_APPEND */
155 {'z', 'f', TRUE}, /* OP_FOLD */
156 {'z', 'o', TRUE}, /* OP_FOLDOPEN */
157 {'z', 'O', TRUE}, /* OP_FOLDOPENREC */
158 {'z', 'c', TRUE}, /* OP_FOLDCLOSE */
159 {'z', 'C', TRUE}, /* OP_FOLDCLOSEREC */
160 {'z', 'd', TRUE}, /* OP_FOLDDEL */
161 {'z', 'D', TRUE}, /* OP_FOLDDELREC */
162 {'g', 'w', TRUE}, /* OP_FORMAT2 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000163 {'g', '@', FALSE}, /* OP_FUNCTION */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164};
165
166/*
167 * Translate a command name into an operator type.
168 * Must only be called with a valid operator name!
169 */
170 int
171get_op_type(char1, char2)
172 int char1;
173 int char2;
174{
175 int i;
176
177 if (char1 == 'r') /* ignore second character */
178 return OP_REPLACE;
179 if (char1 == '~') /* when tilde is an operator */
180 return OP_TILDE;
181 for (i = 0; ; ++i)
182 if (opchars[i][0] == char1 && opchars[i][1] == char2)
183 break;
184 return i;
185}
186
187#if defined(FEAT_VISUAL) || defined(PROTO)
188/*
189 * Return TRUE if operator "op" always works on whole lines.
190 */
191 int
192op_on_lines(op)
193 int op;
194{
195 return opchars[op][2];
196}
197#endif
198
199/*
200 * Get first operator command character.
201 * Returns 'g' or 'z' if there is another command character.
202 */
203 int
204get_op_char(optype)
205 int optype;
206{
207 return opchars[optype][0];
208}
209
210/*
211 * Get second operator command character.
212 */
213 int
214get_extra_op_char(optype)
215 int optype;
216{
217 return opchars[optype][1];
218}
219
220/*
221 * op_shift - handle a shift operation
222 */
223 void
224op_shift(oap, curs_top, amount)
225 oparg_T *oap;
226 int curs_top;
227 int amount;
228{
229 long i;
230 int first_char;
231 char_u *s;
232#ifdef FEAT_VISUAL
233 int block_col = 0;
234#endif
235
236 if (u_save((linenr_T)(oap->start.lnum - 1),
237 (linenr_T)(oap->end.lnum + 1)) == FAIL)
238 return;
239
240#ifdef FEAT_VISUAL
241 if (oap->block_mode)
242 block_col = curwin->w_cursor.col;
243#endif
244
245 for (i = oap->line_count; --i >= 0; )
246 {
247 first_char = *ml_get_curline();
248 if (first_char == NUL) /* empty line */
249 curwin->w_cursor.col = 0;
250#ifdef FEAT_VISUALEXTRA
251 else if (oap->block_mode)
252 shift_block(oap, amount);
253#endif
254 else
255 /* Move the line right if it doesn't start with '#', 'smartindent'
256 * isn't set or 'cindent' isn't set or '#' isn't in 'cino'. */
257#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
258 if (first_char != '#' || !preprocs_left())
259#endif
260 {
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000261 shift_line(oap->op_type == OP_LSHIFT, p_sr, amount, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262 }
263 ++curwin->w_cursor.lnum;
264 }
265
266 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
267
268#ifdef FEAT_VISUAL
269 if (oap->block_mode)
270 {
271 curwin->w_cursor.lnum = oap->start.lnum;
272 curwin->w_cursor.col = block_col;
273 }
274 else
275#endif
276 if (curs_top) /* put cursor on first line, for ">>" */
277 {
278 curwin->w_cursor.lnum = oap->start.lnum;
279 beginline(BL_SOL | BL_FIX); /* shift_line() may have set cursor.col */
280 }
281 else
282 --curwin->w_cursor.lnum; /* put cursor on last line, for ":>" */
283
284 if (oap->line_count > p_report)
285 {
286 if (oap->op_type == OP_RSHIFT)
287 s = (char_u *)">";
288 else
289 s = (char_u *)"<";
290 if (oap->line_count == 1)
291 {
292 if (amount == 1)
293 sprintf((char *)IObuff, _("1 line %sed 1 time"), s);
294 else
295 sprintf((char *)IObuff, _("1 line %sed %d times"), s, amount);
296 }
297 else
298 {
299 if (amount == 1)
300 sprintf((char *)IObuff, _("%ld lines %sed 1 time"),
301 oap->line_count, s);
302 else
303 sprintf((char *)IObuff, _("%ld lines %sed %d times"),
304 oap->line_count, s, amount);
305 }
306 msg(IObuff);
307 }
308
309 /*
310 * Set "'[" and "']" marks.
311 */
312 curbuf->b_op_start = oap->start;
313 curbuf->b_op_end.lnum = oap->end.lnum;
314 curbuf->b_op_end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
315 if (curbuf->b_op_end.col > 0)
316 --curbuf->b_op_end.col;
317}
318
319/*
320 * shift the current line one shiftwidth left (if left != 0) or right
321 * leaves cursor on first blank in the line
322 */
323 void
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000324shift_line(left, round, amount, call_changed_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325 int left;
326 int round;
327 int amount;
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000328 int call_changed_bytes; /* call changed_bytes() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329{
330 int count;
331 int i, j;
332 int p_sw = (int)curbuf->b_p_sw;
333
334 count = get_indent(); /* get current indent */
335
336 if (round) /* round off indent */
337 {
338 i = count / p_sw; /* number of p_sw rounded down */
339 j = count % p_sw; /* extra spaces */
340 if (j && left) /* first remove extra spaces */
341 --amount;
342 if (left)
343 {
344 i -= amount;
345 if (i < 0)
346 i = 0;
347 }
348 else
349 i += amount;
350 count = i * p_sw;
351 }
352 else /* original vi indent */
353 {
354 if (left)
355 {
356 count -= p_sw * amount;
357 if (count < 0)
358 count = 0;
359 }
360 else
361 count += p_sw * amount;
362 }
363
364 /* Set new indent */
365#ifdef FEAT_VREPLACE
366 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000367 change_indent(INDENT_SET, count, FALSE, NUL, call_changed_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 else
369#endif
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000370 (void)set_indent(count, call_changed_bytes ? SIN_CHANGED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371}
372
373#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
374/*
375 * Shift one line of the current block one shiftwidth right or left.
376 * Leaves cursor on first character in block.
377 */
378 static void
379shift_block(oap, amount)
380 oparg_T *oap;
381 int amount;
382{
383 int left = (oap->op_type == OP_LSHIFT);
384 int oldstate = State;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000385 int total;
386 char_u *newp, *oldp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 int oldcol = curwin->w_cursor.col;
388 int p_sw = (int)curbuf->b_p_sw;
389 int p_ts = (int)curbuf->b_p_ts;
390 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 int incr;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000392 colnr_T ws_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393 int i = 0, j = 0;
394 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395#ifdef FEAT_RIGHTLEFT
396 int old_p_ri = p_ri;
397
398 p_ri = 0; /* don't want revins in ident */
399#endif
400
401 State = INSERT; /* don't want REPLACE for State */
402 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
403 if (bd.is_short)
404 return;
405
406 /* total is number of screen columns to be inserted/removed */
407 total = amount * p_sw;
408 oldp = ml_get_curline();
409
410 if (!left)
411 {
412 /*
413 * 1. Get start vcol
414 * 2. Total ws vcols
415 * 3. Divvy into TABs & spp
416 * 4. Construct new string
417 */
418 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
419 ws_vcol = bd.start_vcol - bd.pre_whitesp;
420 if (bd.startspaces)
421 {
422#ifdef FEAT_MBYTE
423 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000424 bd.textstart += (*mb_ptr2len)(bd.textstart);
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000425 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426#endif
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000427 ++bd.textstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 }
429 for ( ; vim_iswhite(*bd.textstart); )
430 {
431 incr = lbr_chartabsize_adv(&bd.textstart, (colnr_T)(bd.start_vcol));
432 total += incr;
433 bd.start_vcol += incr;
434 }
435 /* OK, now total=all the VWS reqd, and textstart points at the 1st
436 * non-ws char in the block. */
437 if (!curbuf->b_p_et)
438 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
439 if (i)
440 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
441 else
442 j = total;
443 /* if we're splitting a TAB, allow for it */
444 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
445 len = (int)STRLEN(bd.textstart) + 1;
446 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
447 if (newp == NULL)
448 return;
449 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
450 mch_memmove(newp, oldp, (size_t)bd.textcol);
451 copy_chars(newp + bd.textcol, (size_t)i, TAB);
452 copy_spaces(newp + bd.textcol + i, (size_t)j);
453 /* the end */
454 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
455 }
456 else /* left */
457 {
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000458 colnr_T destination_col; /* column to which text in block will
459 be shifted */
460 char_u *verbatim_copy_end; /* end of the part of the line which is
461 copied verbatim */
462 colnr_T verbatim_copy_width;/* the (displayed) width of this part
463 of line */
464 unsigned fill; /* nr of spaces that replace a TAB */
465 unsigned new_line_len; /* the length of the line after the
466 block shift */
467 size_t block_space_width;
468 size_t shift_amount;
469 char_u *non_white = bd.textstart;
470 colnr_T non_white_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000472 /*
473 * Firstly, let's find the first non-whitespace character that is
474 * displayed after the block's start column and the character's column
475 * number. Also, let's calculate the width of all the whitespace
476 * characters that are displayed in the block and precede the searched
477 * non-whitespace character.
478 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000480 /* If "bd.startspaces" is set, "bd.textstart" points to the character,
481 * the part of which is displayed at the block's beginning. Let's start
482 * searching from the next character. */
483 if (bd.startspaces)
484 mb_ptr_adv(non_white);
485
486 /* The character's column is in "bd.start_vcol". */
487 non_white_col = bd.start_vcol;
488
489 while (vim_iswhite(*non_white))
490 {
491 incr = lbr_chartabsize_adv(&non_white, non_white_col);
492 non_white_col += incr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493 }
494
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000495 block_space_width = non_white_col - oap->start_vcol;
496 /* We will shift by "total" or "block_space_width", whichever is less.
497 */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000498 shift_amount = (block_space_width < (size_t)total
499 ? block_space_width : (size_t)total);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000500
501 /* The column to which we will shift the text. */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000502 destination_col = (colnr_T)(non_white_col - shift_amount);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000503
504 /* Now let's find out how much of the beginning of the line we can
505 * reuse without modification. */
506 verbatim_copy_end = bd.textstart;
507 verbatim_copy_width = bd.start_vcol;
508
509 /* If "bd.startspaces" is set, "bd.textstart" points to the character
510 * preceding the block. We have to subtract its width to obtain its
511 * column number. */
512 if (bd.startspaces)
513 verbatim_copy_width -= bd.start_char_vcols;
514 while (verbatim_copy_width < destination_col)
515 {
516 incr = lbr_chartabsize(verbatim_copy_end, verbatim_copy_width);
517 if (verbatim_copy_width + incr > destination_col)
518 break;
519 verbatim_copy_width += incr;
520 mb_ptr_adv(verbatim_copy_end);
521 }
522
523 /* If "destination_col" is different from the width of the initial
524 * part of the line that will be copied, it means we encountered a tab
525 * character, which we will have to partly replace with spaces. */
526 fill = destination_col - verbatim_copy_width;
527
528 /* The replacement line will consist of:
529 * - the beginning of the original line up to "verbatim_copy_end",
530 * - "fill" number of spaces,
531 * - the rest of the line, pointed to by non_white. */
532 new_line_len = (unsigned)(verbatim_copy_end - oldp)
533 + fill
534 + (unsigned)STRLEN(non_white) + 1;
535
536 newp = alloc_check(new_line_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 if (newp == NULL)
538 return;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000539 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp));
540 copy_spaces(newp + (verbatim_copy_end - oldp), (size_t)fill);
541 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542 }
543 /* replace the line */
544 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
545 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
546 State = oldstate;
547 curwin->w_cursor.col = oldcol;
548#ifdef FEAT_RIGHTLEFT
549 p_ri = old_p_ri;
550#endif
551}
552#endif
553
554#ifdef FEAT_VISUALEXTRA
555/*
556 * Insert string "s" (b_insert ? before : after) block :AKelly
557 * Caller must prepare for undo.
558 */
559 static void
560block_insert(oap, s, b_insert, bdp)
561 oparg_T *oap;
562 char_u *s;
563 int b_insert;
564 struct block_def *bdp;
565{
566 int p_ts;
567 int count = 0; /* extra spaces to replace a cut TAB */
568 int spaces = 0; /* non-zero if cutting a TAB */
569 colnr_T offset; /* pointer along new line */
570 unsigned s_len; /* STRLEN(s) */
571 char_u *newp, *oldp; /* new, old lines */
572 linenr_T lnum; /* loop var */
573 int oldstate = State;
574
575 State = INSERT; /* don't want REPLACE for State */
576 s_len = (unsigned)STRLEN(s);
577
578 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
579 {
580 block_prep(oap, bdp, lnum, TRUE);
581 if (bdp->is_short && b_insert)
582 continue; /* OP_INSERT, line ends before block start */
583
584 oldp = ml_get(lnum);
585
586 if (b_insert)
587 {
588 p_ts = bdp->start_char_vcols;
589 spaces = bdp->startspaces;
590 if (spaces != 0)
591 count = p_ts - 1; /* we're cutting a TAB */
592 offset = bdp->textcol;
593 }
594 else /* append */
595 {
596 p_ts = bdp->end_char_vcols;
597 if (!bdp->is_short) /* spaces = padding after block */
598 {
599 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
600 if (spaces != 0)
601 count = p_ts - 1; /* we're cutting a TAB */
602 offset = bdp->textcol + bdp->textlen - (spaces != 0);
603 }
604 else /* spaces = padding to block edge */
605 {
606 /* if $ used, just append to EOL (ie spaces==0) */
607 if (!bdp->is_MAX)
608 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
609 count = spaces;
610 offset = bdp->textcol + bdp->textlen;
611 }
612 }
613
614 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
615 if (newp == NULL)
616 continue;
617
618 /* copy up to shifted part */
619 mch_memmove(newp, oldp, (size_t)(offset));
620 oldp += offset;
621
622 /* insert pre-padding */
623 copy_spaces(newp + offset, (size_t)spaces);
624
625 /* copy the new text */
626 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
627 offset += s_len;
628
629 if (spaces && !bdp->is_short)
630 {
631 /* insert post-padding */
632 copy_spaces(newp + offset + spaces, (size_t)(p_ts - spaces));
633 /* We're splitting a TAB, don't copy it. */
634 oldp++;
635 /* We allowed for that TAB, remember this now */
636 count++;
637 }
638
639 if (spaces > 0)
640 offset += count;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000641 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642
643 ml_replace(lnum, newp, FALSE);
644
645 if (lnum == oap->end.lnum)
646 {
647 /* Set "']" mark to the end of the block instead of the end of
648 * the insert in the first line. */
649 curbuf->b_op_end.lnum = oap->end.lnum;
650 curbuf->b_op_end.col = offset;
651 }
652 } /* for all lnum */
653
654 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
655
656 State = oldstate;
657}
658#endif
659
660#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
661/*
662 * op_reindent - handle reindenting a block of lines.
663 */
664 void
665op_reindent(oap, how)
666 oparg_T *oap;
667 int (*how) __ARGS((void));
668{
669 long i;
670 char_u *l;
671 int count;
672 linenr_T first_changed = 0;
673 linenr_T last_changed = 0;
674 linenr_T start_lnum = curwin->w_cursor.lnum;
675
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000676 /* Don't even try when 'modifiable' is off. */
677 if (!curbuf->b_p_ma)
678 {
679 EMSG(_(e_modifiable));
680 return;
681 }
682
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 for (i = oap->line_count; --i >= 0 && !got_int; )
684 {
685 /* it's a slow thing to do, so give feedback so there's no worry that
686 * the computer's just hung. */
687
688 if (i > 1
689 && (i % 50 == 0 || i == oap->line_count - 1)
690 && oap->line_count > p_report)
691 smsg((char_u *)_("%ld lines to indent... "), i);
692
693 /*
694 * Be vi-compatible: For lisp indenting the first line is not
695 * indented, unless there is only one line.
696 */
697#ifdef FEAT_LISP
698 if (i != oap->line_count - 1 || oap->line_count == 1
699 || how != get_lisp_indent)
700#endif
701 {
702 l = skipwhite(ml_get_curline());
703 if (*l == NUL) /* empty or blank line */
704 count = 0;
705 else
706 count = how(); /* get the indent for this line */
707
708 if (set_indent(count, SIN_UNDO))
709 {
710 /* did change the indent, call changed_lines() later */
711 if (first_changed == 0)
712 first_changed = curwin->w_cursor.lnum;
713 last_changed = curwin->w_cursor.lnum;
714 }
715 }
716 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +0000717 curwin->w_cursor.col = 0; /* make sure it's valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 }
719
720 /* put cursor on first non-blank of indented line */
721 curwin->w_cursor.lnum = start_lnum;
722 beginline(BL_SOL | BL_FIX);
723
724 /* Mark changed lines so that they will be redrawn. When Visual
725 * highlighting was present, need to continue until the last line. When
726 * there is no change still need to remove the Visual highlighting. */
727 if (last_changed != 0)
728 changed_lines(first_changed, 0,
729#ifdef FEAT_VISUAL
730 oap->is_VIsual ? start_lnum + oap->line_count :
731#endif
732 last_changed + 1, 0L);
733#ifdef FEAT_VISUAL
734 else if (oap->is_VIsual)
735 redraw_curbuf_later(INVERTED);
736#endif
737
738 if (oap->line_count > p_report)
739 {
740 i = oap->line_count - (i + 1);
741 if (i == 1)
742 MSG(_("1 line indented "));
743 else
744 smsg((char_u *)_("%ld lines indented "), i);
745 }
746 /* set '[ and '] marks */
747 curbuf->b_op_start = oap->start;
748 curbuf->b_op_end = oap->end;
749}
750#endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
751
752#if defined(FEAT_EVAL) || defined(PROTO)
753/*
754 * Keep the last expression line here, for repeating.
755 */
756static char_u *expr_line = NULL;
757
758/*
759 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
760 * Returns '=' when OK, NUL otherwise.
761 */
762 int
763get_expr_register()
764{
765 char_u *new_line;
766
767 new_line = getcmdline('=', 0L, 0);
768 if (new_line == NULL)
769 return NUL;
770 if (*new_line == NUL) /* use previous line */
771 vim_free(new_line);
772 else
773 set_expr_line(new_line);
774 return '=';
775}
776
777/*
778 * Set the expression for the '=' register.
779 * Argument must be an allocated string.
780 */
781 void
782set_expr_line(new_line)
783 char_u *new_line;
784{
785 vim_free(expr_line);
786 expr_line = new_line;
787}
788
789/*
790 * Get the result of the '=' register expression.
791 * Returns a pointer to allocated memory, or NULL for failure.
792 */
793 char_u *
794get_expr_line()
795{
796 char_u *expr_copy;
797 char_u *rv;
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000798 static int nested = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799
800 if (expr_line == NULL)
801 return NULL;
802
803 /* Make a copy of the expression, because evaluating it may cause it to be
804 * changed. */
805 expr_copy = vim_strsave(expr_line);
806 if (expr_copy == NULL)
807 return NULL;
808
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000809 /* When we are invoked recursively limit the evaluation to 10 levels.
810 * Then return the string as-is. */
811 if (nested >= 10)
812 return expr_copy;
813
814 ++nested;
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000815 rv = eval_to_string(expr_copy, NULL, TRUE);
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000816 --nested;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817 vim_free(expr_copy);
818 return rv;
819}
Bram Moolenaarde934d72005-05-22 22:09:40 +0000820
821/*
822 * Get the '=' register expression itself, without evaluating it.
823 */
824 char_u *
825get_expr_line_src()
826{
827 if (expr_line == NULL)
828 return NULL;
829 return vim_strsave(expr_line);
830}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831#endif /* FEAT_EVAL */
832
833/*
834 * Check if 'regname' is a valid name of a yank register.
835 * Note: There is no check for 0 (default register), caller should do this
836 */
837 int
838valid_yank_reg(regname, writing)
839 int regname;
840 int writing; /* if TRUE check for writable registers */
841{
842 if ( (regname > 0 && ASCII_ISALNUM(regname))
843 || (!writing && vim_strchr((char_u *)
844#ifdef FEAT_EVAL
845 "/.%#:="
846#else
847 "/.%#:"
848#endif
849 , regname) != NULL)
850 || regname == '"'
851 || regname == '-'
852 || regname == '_'
853#ifdef FEAT_CLIPBOARD
854 || regname == '*'
855 || regname == '+'
856#endif
857#ifdef FEAT_DND
858 || (!writing && regname == '~')
859#endif
860 )
861 return TRUE;
862 return FALSE;
863}
864
865/*
866 * Set y_current and y_append, according to the value of "regname".
867 * Cannot handle the '_' register.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000868 * Must only be called with a valid register name!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 *
870 * If regname is 0 and writing, use register 0
871 * If regname is 0 and reading, use previous register
872 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000873 void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874get_yank_register(regname, writing)
875 int regname;
876 int writing;
877{
878 int i;
879
880 y_append = FALSE;
881 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
882 {
883 y_current = y_previous;
884 return;
885 }
886 i = regname;
887 if (VIM_ISDIGIT(i))
888 i -= '0';
889 else if (ASCII_ISLOWER(i))
890 i = CharOrdLow(i) + 10;
891 else if (ASCII_ISUPPER(i))
892 {
893 i = CharOrdUp(i) + 10;
894 y_append = TRUE;
895 }
896 else if (regname == '-')
897 i = DELETION_REGISTER;
898#ifdef FEAT_CLIPBOARD
899 /* When selection is not available, use register 0 instead of '*' */
900 else if (clip_star.available && regname == '*')
901 i = STAR_REGISTER;
902 /* When clipboard is not available, use register 0 instead of '+' */
903 else if (clip_plus.available && regname == '+')
904 i = PLUS_REGISTER;
905#endif
906#ifdef FEAT_DND
907 else if (!writing && regname == '~')
908 i = TILDE_REGISTER;
909#endif
910 else /* not 0-9, a-z, A-Z or '-': use register 0 */
911 i = 0;
912 y_current = &(y_regs[i]);
913 if (writing) /* remember the register we write into for do_put() */
914 y_previous = y_current;
915}
916
Bram Moolenaar8299df92004-07-10 09:47:34 +0000917#if defined(FEAT_CLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918/*
919 * When "regname" is a clipboard register, obtain the selection. If it's not
920 * available return zero, otherwise return "regname".
921 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000922 int
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923may_get_selection(regname)
924 int regname;
925{
926 if (regname == '*')
927 {
928 if (!clip_star.available)
929 regname = 0;
930 else
931 clip_get_selection(&clip_star);
932 }
933 else if (regname == '+')
934 {
935 if (!clip_plus.available)
936 regname = 0;
937 else
938 clip_get_selection(&clip_plus);
939 }
940 return regname;
941}
942#endif
943
944#if defined(FEAT_VISUAL) || defined(PROTO)
945/*
946 * Obtain the contents of a "normal" register. The register is made empty.
947 * The returned pointer has allocated memory, use put_register() later.
948 */
949 void *
950get_register(name, copy)
951 int name;
952 int copy; /* make a copy, if FALSE make register empty. */
953{
Bram Moolenaar0a307462007-12-01 20:13:05 +0000954 struct yankreg *reg;
955 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956
957#ifdef FEAT_CLIPBOARD
958 /* When Visual area changed, may have to update selection. Obtain the
959 * selection too. */
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000960 if (name == '*' && clip_star.available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 {
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000962 if (clip_isautosel())
963 clip_update_selection();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 may_get_selection(name);
965 }
966#endif
967
968 get_yank_register(name, 0);
969 reg = (struct yankreg *)alloc((unsigned)sizeof(struct yankreg));
970 if (reg != NULL)
971 {
972 *reg = *y_current;
973 if (copy)
974 {
975 /* If we run out of memory some or all of the lines are empty. */
976 if (reg->y_size == 0)
977 reg->y_array = NULL;
978 else
979 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
980 * reg->y_size));
981 if (reg->y_array != NULL)
982 {
983 for (i = 0; i < reg->y_size; ++i)
984 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
985 }
986 }
987 else
988 y_current->y_array = NULL;
989 }
990 return (void *)reg;
991}
992
993/*
Bram Moolenaar0a307462007-12-01 20:13:05 +0000994 * Put "reg" into register "name". Free any previous contents and "reg".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 */
996 void
997put_register(name, reg)
998 int name;
999 void *reg;
1000{
1001 get_yank_register(name, 0);
1002 free_yank_all();
1003 *y_current = *(struct yankreg *)reg;
Bram Moolenaar0a307462007-12-01 20:13:05 +00001004 vim_free(reg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005
1006# ifdef FEAT_CLIPBOARD
1007 /* Send text written to clipboard register to the clipboard. */
1008 may_set_selection();
1009# endif
1010}
1011#endif
1012
1013#if defined(FEAT_MOUSE) || defined(PROTO)
1014/*
1015 * return TRUE if the current yank register has type MLINE
1016 */
1017 int
1018yank_register_mline(regname)
1019 int regname;
1020{
1021 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1022 return FALSE;
1023 if (regname == '_') /* black hole is always empty */
1024 return FALSE;
1025 get_yank_register(regname, FALSE);
1026 return (y_current->y_type == MLINE);
1027}
1028#endif
1029
1030/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001031 * Start or stop recording into a yank register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 *
Bram Moolenaard55de222007-05-06 13:38:48 +00001033 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 */
1035 int
1036do_record(c)
1037 int c;
1038{
Bram Moolenaard55de222007-05-06 13:38:48 +00001039 char_u *p;
1040 static int regname;
1041 struct yankreg *old_y_previous, *old_y_current;
1042 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043
1044 if (Recording == FALSE) /* start recording */
1045 {
1046 /* registers 0-9, a-z and " are allowed */
1047 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1048 retval = FAIL;
1049 else
1050 {
1051 Recording = TRUE;
1052 showmode();
1053 regname = c;
1054 retval = OK;
1055 }
1056 }
1057 else /* stop recording */
1058 {
1059 /*
Bram Moolenaard55de222007-05-06 13:38:48 +00001060 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1061 * needs to be removed again to put it in a register. exec_reg then
1062 * adds the escaping back later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 */
1064 Recording = FALSE;
1065 MSG("");
1066 p = get_recorded();
1067 if (p == NULL)
1068 retval = FAIL;
1069 else
1070 {
Bram Moolenaar81b85872007-03-04 20:22:01 +00001071 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1072 vim_unescape_csi(p);
1073
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 /*
1075 * We don't want to change the default register here, so save and
1076 * restore the current register name.
1077 */
1078 old_y_previous = y_previous;
1079 old_y_current = y_current;
1080
1081 retval = stuff_yank(regname, p);
1082
1083 y_previous = old_y_previous;
1084 y_current = old_y_current;
1085 }
1086 }
1087 return retval;
1088}
1089
1090/*
1091 * Stuff string "p" into yank register "regname" as a single line (append if
1092 * uppercase). "p" must have been alloced.
1093 *
1094 * return FAIL for failure, OK otherwise
1095 */
1096 static int
1097stuff_yank(regname, p)
1098 int regname;
1099 char_u *p;
1100{
1101 char_u *lp;
1102 char_u **pp;
1103
1104 /* check for read-only register */
1105 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1106 {
1107 vim_free(p);
1108 return FAIL;
1109 }
1110 if (regname == '_') /* black hole: don't do anything */
1111 {
1112 vim_free(p);
1113 return OK;
1114 }
1115 get_yank_register(regname, TRUE);
1116 if (y_append && y_current->y_array != NULL)
1117 {
1118 pp = &(y_current->y_array[y_current->y_size - 1]);
1119 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1120 if (lp == NULL)
1121 {
1122 vim_free(p);
1123 return FAIL;
1124 }
1125 STRCPY(lp, *pp);
1126 STRCAT(lp, p);
1127 vim_free(p);
1128 vim_free(*pp);
1129 *pp = lp;
1130 }
1131 else
1132 {
1133 free_yank_all();
1134 if ((y_current->y_array =
1135 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1136 {
1137 vim_free(p);
1138 return FAIL;
1139 }
1140 y_current->y_array[0] = p;
1141 y_current->y_size = 1;
1142 y_current->y_type = MCHAR; /* used to be MLINE, why? */
1143 }
1144 return OK;
1145}
1146
Bram Moolenaar42b94362009-05-26 16:12:37 +00001147static int execreg_lastc = NUL;
1148
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149/*
1150 * execute a yank register: copy it into the stuff buffer
1151 *
1152 * return FAIL for failure, OK otherwise
1153 */
1154 int
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001155do_execreg(regname, colon, addcr, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 int regname;
1157 int colon; /* insert ':' before each line */
1158 int addcr; /* always add '\n' to end of line */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001159 int silent; /* set "silent" flag in typeahead buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 long i;
1162 char_u *p;
1163 int retval = OK;
1164 int remap;
1165
1166 if (regname == '@') /* repeat previous one */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001167 {
Bram Moolenaar42b94362009-05-26 16:12:37 +00001168 if (execreg_lastc == NUL)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001169 {
1170 EMSG(_("E748: No previously used register"));
1171 return FAIL;
1172 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001173 regname = execreg_lastc;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001174 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 /* check for valid regname */
1176 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001177 {
1178 emsg_invreg(regname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 return FAIL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001180 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001181 execreg_lastc = regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182
1183#ifdef FEAT_CLIPBOARD
1184 regname = may_get_selection(regname);
1185#endif
1186
1187 if (regname == '_') /* black hole: don't stuff anything */
1188 return OK;
1189
1190#ifdef FEAT_CMDHIST
1191 if (regname == ':') /* use last command line */
1192 {
1193 if (last_cmdline == NULL)
1194 {
1195 EMSG(_(e_nolastcmd));
1196 return FAIL;
1197 }
1198 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
1199 new_last_cmdline = NULL;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001200 /* Escape all control characters with a CTRL-V */
1201 p = vim_strsave_escaped_ext(last_cmdline,
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001202 (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 +00001203 if (p != NULL)
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001204 {
1205 /* When in Visual mode "'<,'>" will be prepended to the command.
1206 * Remove it when it's already there. */
1207 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001208 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001209 else
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001210 retval = put_in_typebuf(p, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001211 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001212 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 }
1214#endif
1215#ifdef FEAT_EVAL
1216 else if (regname == '=')
1217 {
1218 p = get_expr_line();
1219 if (p == NULL)
1220 return FAIL;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001221 retval = put_in_typebuf(p, TRUE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 vim_free(p);
1223 }
1224#endif
1225 else if (regname == '.') /* use last inserted text */
1226 {
1227 p = get_last_insert_save();
1228 if (p == NULL)
1229 {
1230 EMSG(_(e_noinstext));
1231 return FAIL;
1232 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001233 retval = put_in_typebuf(p, FALSE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 vim_free(p);
1235 }
1236 else
1237 {
1238 get_yank_register(regname, FALSE);
1239 if (y_current->y_array == NULL)
1240 return FAIL;
1241
1242 /* Disallow remaping for ":@r". */
1243 remap = colon ? REMAP_NONE : REMAP_YES;
1244
1245 /*
1246 * Insert lines into typeahead buffer, from last one to first one.
1247 */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001248 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 for (i = y_current->y_size; --i >= 0; )
1250 {
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001251 char_u *escaped;
1252
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 /* insert NL between lines and after last line if type is MLINE */
1254 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1255 || addcr)
1256 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001257 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 return FAIL;
1259 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001260 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1261 if (escaped == NULL)
1262 return FAIL;
1263 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1264 vim_free(escaped);
1265 if (retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 return FAIL;
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001267 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 == FAIL)
1269 return FAIL;
1270 }
1271 Exec_reg = TRUE; /* disable the 'q' command */
1272 }
1273 return retval;
1274}
1275
1276/*
1277 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1278 * used only after other typeahead has been processed.
1279 */
1280 static void
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001281put_reedit_in_typebuf(silent)
1282 int silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283{
1284 char_u buf[3];
1285
1286 if (restart_edit != NUL)
1287 {
1288 if (restart_edit == 'V')
1289 {
1290 buf[0] = 'g';
1291 buf[1] = 'R';
1292 buf[2] = NUL;
1293 }
1294 else
1295 {
1296 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1297 buf[1] = NUL;
1298 }
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001299 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 restart_edit = NUL;
1301 }
1302}
1303
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001304/*
1305 * Insert register contents "s" into the typeahead buffer, so that it will be
1306 * executed again.
1307 * When "esc" is TRUE it is to be taken literally: Escape CSI characters and
1308 * no remapping.
1309 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 static int
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001311put_in_typebuf(s, esc, colon, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 char_u *s;
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001313 int esc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 int colon; /* add ':' before the line */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001315 int silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316{
1317 int retval = OK;
1318
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001319 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 if (colon)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001321 retval = ins_typebuf((char_u *)"\n", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 if (retval == OK)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001323 {
1324 char_u *p;
1325
1326 if (esc)
1327 p = vim_strsave_escape_csi(s);
1328 else
1329 p = s;
1330 if (p == NULL)
1331 retval = FAIL;
1332 else
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001333 retval = ins_typebuf(p, esc ? REMAP_NONE : REMAP_YES,
1334 0, TRUE, silent);
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001335 if (esc)
1336 vim_free(p);
1337 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 if (colon && retval == OK)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001339 retval = ins_typebuf((char_u *)":", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 return retval;
1341}
1342
1343/*
1344 * Insert a yank register: copy it into the Read buffer.
1345 * Used by CTRL-R command and middle mouse button in insert mode.
1346 *
1347 * return FAIL for failure, OK otherwise
1348 */
1349 int
1350insert_reg(regname, literally)
1351 int regname;
1352 int literally; /* insert literally, not as if typed */
1353{
1354 long i;
1355 int retval = OK;
1356 char_u *arg;
1357 int allocated;
1358
1359 /*
1360 * It is possible to get into an endless loop by having CTRL-R a in
1361 * register a and then, in insert mode, doing CTRL-R a.
1362 * If you hit CTRL-C, the loop will be broken here.
1363 */
1364 ui_breakcheck();
1365 if (got_int)
1366 return FAIL;
1367
1368 /* check for valid regname */
1369 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1370 return FAIL;
1371
1372#ifdef FEAT_CLIPBOARD
1373 regname = may_get_selection(regname);
1374#endif
1375
1376 if (regname == '.') /* insert last inserted text */
1377 retval = stuff_inserted(NUL, 1L, TRUE);
1378 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1379 {
1380 if (arg == NULL)
1381 return FAIL;
1382 stuffescaped(arg, literally);
1383 if (allocated)
1384 vim_free(arg);
1385 }
1386 else /* name or number register */
1387 {
1388 get_yank_register(regname, FALSE);
1389 if (y_current->y_array == NULL)
1390 retval = FAIL;
1391 else
1392 {
1393 for (i = 0; i < y_current->y_size; ++i)
1394 {
1395 stuffescaped(y_current->y_array[i], literally);
1396 /*
1397 * Insert a newline between lines and after last line if
1398 * y_type is MLINE.
1399 */
1400 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1401 stuffcharReadbuff('\n');
1402 }
1403 }
1404 }
1405
1406 return retval;
1407}
1408
1409/*
1410 * Stuff a string into the typeahead buffer, such that edit() will insert it
1411 * literally ("literally" TRUE) or interpret is as typed characters.
1412 */
1413 static void
1414stuffescaped(arg, literally)
1415 char_u *arg;
1416 int literally;
1417{
1418 int c;
1419 char_u *start;
1420
1421 while (*arg != NUL)
1422 {
1423 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1424 * stuff K_SPECIAL to get the effect of a special key when "literally"
1425 * is TRUE. */
1426 start = arg;
1427 while ((*arg >= ' '
1428#ifndef EBCDIC
1429 && *arg < DEL /* EBCDIC: chars above space are normal */
1430#endif
1431 )
1432 || (*arg == K_SPECIAL && !literally))
1433 ++arg;
1434 if (arg > start)
1435 stuffReadbuffLen(start, (long)(arg - start));
1436
1437 /* stuff a single special character */
1438 if (*arg != NUL)
1439 {
1440#ifdef FEAT_MBYTE
1441 if (has_mbyte)
Bram Moolenaar3b1c4852010-07-31 17:59:29 +02001442 c = mb_cptr2char_adv(&arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 else
1444#endif
1445 c = *arg++;
1446 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1447 stuffcharReadbuff(Ctrl_V);
1448 stuffcharReadbuff(c);
1449 }
1450 }
1451}
1452
1453/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001454 * If "regname" is a special register, return TRUE and store a pointer to its
1455 * value in "argp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456 */
Bram Moolenaar8299df92004-07-10 09:47:34 +00001457 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458get_spec_reg(regname, argp, allocated, errmsg)
1459 int regname;
1460 char_u **argp;
Bram Moolenaard55de222007-05-06 13:38:48 +00001461 int *allocated; /* return: TRUE when value was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 int errmsg; /* give error message when failing */
1463{
1464 int cnt;
1465
1466 *argp = NULL;
1467 *allocated = FALSE;
1468 switch (regname)
1469 {
1470 case '%': /* file name */
1471 if (errmsg)
1472 check_fname(); /* will give emsg if not set */
1473 *argp = curbuf->b_fname;
1474 return TRUE;
1475
1476 case '#': /* alternate file name */
1477 *argp = getaltfname(errmsg); /* may give emsg if not set */
1478 return TRUE;
1479
1480#ifdef FEAT_EVAL
1481 case '=': /* result of expression */
1482 *argp = get_expr_line();
1483 *allocated = TRUE;
1484 return TRUE;
1485#endif
1486
1487 case ':': /* last command line */
1488 if (last_cmdline == NULL && errmsg)
1489 EMSG(_(e_nolastcmd));
1490 *argp = last_cmdline;
1491 return TRUE;
1492
1493 case '/': /* last search-pattern */
1494 if (last_search_pat() == NULL && errmsg)
1495 EMSG(_(e_noprevre));
1496 *argp = last_search_pat();
1497 return TRUE;
1498
1499 case '.': /* last inserted text */
1500 *argp = get_last_insert_save();
1501 *allocated = TRUE;
1502 if (*argp == NULL && errmsg)
1503 EMSG(_(e_noinstext));
1504 return TRUE;
1505
1506#ifdef FEAT_SEARCHPATH
1507 case Ctrl_F: /* Filename under cursor */
1508 case Ctrl_P: /* Path under cursor, expand via "path" */
1509 if (!errmsg)
1510 return FALSE;
1511 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001512 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 *allocated = TRUE;
1514 return TRUE;
1515#endif
1516
1517 case Ctrl_W: /* word under cursor */
1518 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1519 if (!errmsg)
1520 return FALSE;
1521 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1522 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1523 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1524 *allocated = TRUE;
1525 return TRUE;
1526
1527 case '_': /* black hole: always empty */
1528 *argp = (char_u *)"";
1529 return TRUE;
1530 }
1531
1532 return FALSE;
1533}
1534
1535/*
Bram Moolenaar8299df92004-07-10 09:47:34 +00001536 * Paste a yank register into the command line.
1537 * Only for non-special registers.
1538 * Used by CTRL-R command in command-line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 * insert_reg() can't be used here, because special characters from the
1540 * register contents will be interpreted as commands.
1541 *
1542 * return FAIL for failure, OK otherwise
1543 */
1544 int
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001545cmdline_paste_reg(regname, literally, remcr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 int regname;
1547 int literally; /* Insert text literally instead of "as typed" */
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001548 int remcr; /* don't add trailing CR */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549{
1550 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551
1552 get_yank_register(regname, FALSE);
1553 if (y_current->y_array == NULL)
1554 return FAIL;
1555
1556 for (i = 0; i < y_current->y_size; ++i)
1557 {
1558 cmdline_paste_str(y_current->y_array[i], literally);
1559
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001560 /* Insert ^M between lines and after last line if type is MLINE.
1561 * Don't do this when "remcr" is TRUE and the next line is empty. */
1562 if (y_current->y_type == MLINE
1563 || (i < y_current->y_size - 1
1564 && !(remcr
1565 && i == y_current->y_size - 2
1566 && *y_current->y_array[i + 1] == NUL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 cmdline_paste_str((char_u *)"\r", literally);
1568
1569 /* Check for CTRL-C, in case someone tries to paste a few thousand
1570 * lines and gets bored. */
1571 ui_breakcheck();
1572 if (got_int)
1573 return FAIL;
1574 }
1575 return OK;
1576}
1577
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578#if defined(FEAT_CLIPBOARD) || defined(PROTO)
1579/*
1580 * Adjust the register name pointed to with "rp" for the clipboard being
1581 * used always and the clipboard being available.
1582 */
1583 void
1584adjust_clip_reg(rp)
1585 int *rp;
1586{
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001587 /* If no reg. specified, and "unnamed" or "unnamedplus" is in 'clipboard',
1588 * use '*' or '+' reg, respectively. "unnamedplus" prevails. */
1589 if (*rp == 0 && clip_unnamed != 0)
1590 *rp = ((clip_unnamed & CLIP_UNNAMED_PLUS) && clip_plus.available)
1591 ? '+' : '*';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 if (!clip_star.available && *rp == '*')
1593 *rp = 0;
1594 if (!clip_plus.available && *rp == '+')
1595 *rp = 0;
1596}
1597#endif
1598
1599/*
Bram Moolenaard04b7502010-07-08 22:27:55 +02001600 * Handle a delete operation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 *
Bram Moolenaard04b7502010-07-08 22:27:55 +02001602 * Return FAIL if undo failed, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 */
1604 int
1605op_delete(oap)
1606 oparg_T *oap;
1607{
1608 int n;
1609 linenr_T lnum;
1610 char_u *ptr;
1611#ifdef FEAT_VISUAL
1612 char_u *newp, *oldp;
1613 struct block_def bd;
1614#endif
1615 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1616 int did_yank = FALSE;
1617
1618 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1619 return OK;
1620
1621 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1622 if (oap->empty)
1623 return u_save_cursor();
1624
1625 if (!curbuf->b_p_ma)
1626 {
1627 EMSG(_(e_modifiable));
1628 return FAIL;
1629 }
1630
1631#ifdef FEAT_CLIPBOARD
1632 adjust_clip_reg(&oap->regname);
1633#endif
1634
1635#ifdef FEAT_MBYTE
1636 if (has_mbyte)
1637 mb_adjust_opend(oap);
1638#endif
1639
Bram Moolenaard04b7502010-07-08 22:27:55 +02001640 /*
1641 * Imitate the strange Vi behaviour: If the delete spans more than one
1642 * line and motion_type == MCHAR and the result is a blank line, make the
1643 * delete linewise. Don't do this for the change command or Visual mode.
1644 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 if ( oap->motion_type == MCHAR
1646#ifdef FEAT_VISUAL
1647 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001648 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649#endif
1650 && oap->line_count > 1
Bram Moolenaar64a72302012-01-10 13:46:22 +01001651 && oap->motion_force == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 && oap->op_type == OP_DELETE)
1653 {
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001654 ptr = ml_get(oap->end.lnum) + oap->end.col;
1655 if (*ptr != NUL)
1656 ptr += oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 ptr = skipwhite(ptr);
1658 if (*ptr == NUL && inindent(0))
1659 oap->motion_type = MLINE;
1660 }
1661
Bram Moolenaard04b7502010-07-08 22:27:55 +02001662 /*
1663 * Check for trying to delete (e.g. "D") in an empty line.
1664 * Note: For the change operator it is ok.
1665 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 if ( oap->motion_type == MCHAR
1667 && oap->line_count == 1
1668 && oap->op_type == OP_DELETE
1669 && *ml_get(oap->start.lnum) == NUL)
1670 {
1671 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001672 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 * 'cpoptions' (Vi compatible).
1674 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001675#ifdef FEAT_VIRTUALEDIT
1676 if (virtual_op)
1677 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1678 * marks as if it happened. */
1679 goto setmarks;
1680#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1682 beep_flush();
1683 return OK;
1684 }
1685
Bram Moolenaard04b7502010-07-08 22:27:55 +02001686 /*
1687 * Do a yank of whatever we're about to delete.
1688 * If a yank register was specified, put the deleted text into that
1689 * register. For the black hole register '_' don't yank anything.
1690 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 if (oap->regname != '_')
1692 {
1693 if (oap->regname != 0)
1694 {
1695 /* check for read-only register */
1696 if (!valid_yank_reg(oap->regname, TRUE))
1697 {
1698 beep_flush();
1699 return OK;
1700 }
1701 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1702 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1703 did_yank = TRUE;
1704 }
1705
1706 /*
1707 * Put deleted text into register 1 and shift number registers if the
1708 * delete contains a line break, or when a regname has been specified.
1709 */
1710 if (oap->regname != 0 || oap->motion_type == MLINE
1711 || oap->line_count > 1 || oap->use_reg_one)
1712 {
1713 y_current = &y_regs[9];
1714 free_yank_all(); /* free register nine */
1715 for (n = 9; n > 1; --n)
1716 y_regs[n] = y_regs[n - 1];
1717 y_previous = y_current = &y_regs[1];
1718 y_regs[1].y_array = NULL; /* set register one to empty */
1719 if (op_yank(oap, TRUE, FALSE) == OK)
1720 did_yank = TRUE;
1721 }
1722
Bram Moolenaar84298db2012-04-20 13:46:08 +02001723 /* Yank into small delete register when no named register specified
1724 * and the delete is within one line. */
1725 if ((
1726#ifdef FEAT_CLIPBOARD
1727 ((clip_unnamed & CLIP_UNNAMED) && oap->regname == '*') ||
1728 ((clip_unnamed & CLIP_UNNAMED_PLUS) && oap->regname == '+') ||
1729#endif
1730 oap->regname == 0) && oap->motion_type != MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 && oap->line_count == 1)
1732 {
1733 oap->regname = '-';
1734 get_yank_register(oap->regname, TRUE);
1735 if (op_yank(oap, TRUE, FALSE) == OK)
1736 did_yank = TRUE;
1737 oap->regname = 0;
1738 }
1739
1740 /*
1741 * If there's too much stuff to fit in the yank register, then get a
1742 * confirmation before doing the delete. This is crude, but simple.
1743 * And it avoids doing a delete of something we can't put back if we
1744 * want.
1745 */
1746 if (!did_yank)
1747 {
1748 int msg_silent_save = msg_silent;
1749
1750 msg_silent = 0; /* must display the prompt */
1751 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1752 msg_silent = msg_silent_save;
1753 if (n != 'y')
1754 {
1755 EMSG(_(e_abort));
1756 return FAIL;
1757 }
1758 }
1759 }
1760
1761#ifdef FEAT_VISUAL
Bram Moolenaard04b7502010-07-08 22:27:55 +02001762 /*
1763 * block mode delete
1764 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 if (oap->block_mode)
1766 {
1767 if (u_save((linenr_T)(oap->start.lnum - 1),
1768 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1769 return FAIL;
1770
1771 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1772 {
1773 block_prep(oap, &bd, lnum, TRUE);
1774 if (bd.textlen == 0) /* nothing to delete */
1775 continue;
1776
1777 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1778 if (lnum == curwin->w_cursor.lnum)
1779 {
1780 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1781# ifdef FEAT_VIRTUALEDIT
1782 curwin->w_cursor.coladd = 0;
1783# endif
1784 }
1785
1786 /* n == number of chars deleted
1787 * If we delete a TAB, it may be replaced by several characters.
1788 * Thus the number of characters may increase!
1789 */
1790 n = bd.textlen - bd.startspaces - bd.endspaces;
1791 oldp = ml_get(lnum);
1792 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1793 if (newp == NULL)
1794 continue;
1795 /* copy up to deleted part */
1796 mch_memmove(newp, oldp, (size_t)bd.textcol);
1797 /* insert spaces */
1798 copy_spaces(newp + bd.textcol,
1799 (size_t)(bd.startspaces + bd.endspaces));
1800 /* copy the part after the deleted part */
1801 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001802 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 /* replace the line */
1804 ml_replace(lnum, newp, FALSE);
1805 }
1806
1807 check_cursor_col();
1808 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1809 oap->end.lnum + 1, 0L);
1810 oap->line_count = 0; /* no lines deleted */
1811 }
1812 else
1813#endif
1814 if (oap->motion_type == MLINE)
1815 {
1816 if (oap->op_type == OP_CHANGE)
1817 {
1818 /* Delete the lines except the first one. Temporarily move the
1819 * cursor to the next line. Save the current line number, if the
1820 * last line is deleted it may be changed.
1821 */
1822 if (oap->line_count > 1)
1823 {
1824 lnum = curwin->w_cursor.lnum;
1825 ++curwin->w_cursor.lnum;
1826 del_lines((long)(oap->line_count - 1), TRUE);
1827 curwin->w_cursor.lnum = lnum;
1828 }
1829 if (u_save_cursor() == FAIL)
1830 return FAIL;
1831 if (curbuf->b_p_ai) /* don't delete indent */
1832 {
1833 beginline(BL_WHITE); /* cursor on first non-white */
1834 did_ai = TRUE; /* delete the indent when ESC hit */
1835 ai_col = curwin->w_cursor.col;
1836 }
1837 else
1838 beginline(0); /* cursor in column 0 */
1839 truncate_line(FALSE); /* delete the rest of the line */
1840 /* leave cursor past last char in line */
1841 if (oap->line_count > 1)
1842 u_clearline(); /* "U" command not possible after "2cc" */
1843 }
1844 else
1845 {
1846 del_lines(oap->line_count, TRUE);
1847 beginline(BL_WHITE | BL_FIX);
1848 u_clearline(); /* "U" command not possible after "dd" */
1849 }
1850 }
1851 else
1852 {
1853#ifdef FEAT_VIRTUALEDIT
1854 if (virtual_op)
1855 {
1856 int endcol = 0;
1857
1858 /* For virtualedit: break the tabs that are partly included. */
1859 if (gchar_pos(&oap->start) == '\t')
1860 {
1861 if (u_save_cursor() == FAIL) /* save first line for undo */
1862 return FAIL;
1863 if (oap->line_count == 1)
1864 endcol = getviscol2(oap->end.col, oap->end.coladd);
1865 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1866 oap->start = curwin->w_cursor;
1867 if (oap->line_count == 1)
1868 {
1869 coladvance(endcol);
1870 oap->end.col = curwin->w_cursor.col;
1871 oap->end.coladd = curwin->w_cursor.coladd;
1872 curwin->w_cursor = oap->start;
1873 }
1874 }
1875
1876 /* Break a tab only when it's included in the area. */
1877 if (gchar_pos(&oap->end) == '\t'
1878 && (int)oap->end.coladd < oap->inclusive)
1879 {
1880 /* save last line for undo */
1881 if (u_save((linenr_T)(oap->end.lnum - 1),
1882 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1883 return FAIL;
1884 curwin->w_cursor = oap->end;
1885 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1886 oap->end = curwin->w_cursor;
1887 curwin->w_cursor = oap->start;
1888 }
1889 }
1890#endif
1891
1892 if (oap->line_count == 1) /* delete characters within one line */
1893 {
1894 if (u_save_cursor() == FAIL) /* save line for undo */
1895 return FAIL;
1896
1897 /* if 'cpoptions' contains '$', display '$' at end of change */
1898 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
1899 && oap->op_type == OP_CHANGE
1900 && oap->end.lnum == curwin->w_cursor.lnum
1901#ifdef FEAT_VISUAL
1902 && !oap->is_VIsual
1903#endif
1904 )
1905 display_dollar(oap->end.col - !oap->inclusive);
1906
1907 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1908
1909#ifdef FEAT_VIRTUALEDIT
1910 if (virtual_op)
1911 {
1912 /* fix up things for virtualedit-delete:
1913 * break the tabs which are going to get in our way
1914 */
1915 char_u *curline = ml_get_curline();
1916 int len = (int)STRLEN(curline);
1917
1918 if (oap->end.coladd != 0
1919 && (int)oap->end.col >= len - 1
1920 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1921 n++;
1922 /* Delete at least one char (e.g, when on a control char). */
1923 if (n == 0 && oap->start.coladd != oap->end.coladd)
1924 n = 1;
1925
1926 /* When deleted a char in the line, reset coladd. */
1927 if (gchar_cursor() != NUL)
1928 curwin->w_cursor.coladd = 0;
1929 }
1930#endif
Bram Moolenaara554a192011-09-21 17:33:53 +02001931 if (oap->op_type == OP_DELETE
1932 && oap->inclusive
1933 && oap->end.lnum == curbuf->b_ml.ml_line_count
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001934 && n > (int)STRLEN(ml_get(oap->end.lnum)))
1935 {
1936 /* Special case: gH<Del> deletes the last line. */
1937 del_lines(1L, FALSE);
1938 }
1939 else
1940 {
1941 (void)del_bytes((long)n, !virtual_op, oap->op_type == OP_DELETE
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001942#ifdef FEAT_VISUAL
1943 && !oap->is_VIsual
1944#endif
1945 );
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001946 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 }
1948 else /* delete characters between lines */
1949 {
1950 pos_T curpos;
Bram Moolenaar5f1e3e42012-02-22 17:38:00 +01001951 int delete_last_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952
1953 /* save deleted and changed lines for undo */
1954 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1955 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1956 return FAIL;
1957
Bram Moolenaar5f1e3e42012-02-22 17:38:00 +01001958 delete_last_line = (oap->end.lnum == curbuf->b_ml.ml_line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 truncate_line(TRUE); /* delete from cursor to end of line */
1960
1961 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1962 ++curwin->w_cursor.lnum;
1963 del_lines((long)(oap->line_count - 2), FALSE);
1964
Bram Moolenaar9e98edf2012-03-07 19:30:36 +01001965 if (delete_last_line)
1966 oap->end.lnum = curbuf->b_ml.ml_line_count;
1967
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001968 n = (oap->end.col + 1 - !oap->inclusive);
Bram Moolenaar5f1e3e42012-02-22 17:38:00 +01001969 if (oap->inclusive && delete_last_line
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001970 && n > (int)STRLEN(ml_get(oap->end.lnum)))
1971 {
1972 /* Special case: gH<Del> deletes the last line. */
1973 del_lines(1L, FALSE);
1974 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
Bram Moolenaar66accae2012-01-10 13:44:27 +01001975 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
1976 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001977 }
1978 else
1979 {
1980 /* delete from start of line until op_end */
1981 curwin->w_cursor.col = 0;
1982 (void)del_bytes((long)n, !virtual_op, oap->op_type == OP_DELETE
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001983#ifdef FEAT_VISUAL
1984 && !oap->is_VIsual
1985#endif
1986 );
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001987 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
1988 }
1989 if (curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
1990 (void)do_join(2, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 }
1992 }
1993
1994 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
1995
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001996#ifdef FEAT_VIRTUALEDIT
1997setmarks:
1998#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999#ifdef FEAT_VISUAL
2000 if (oap->block_mode)
2001 {
2002 curbuf->b_op_end.lnum = oap->end.lnum;
2003 curbuf->b_op_end.col = oap->start.col;
2004 }
2005 else
2006#endif
2007 curbuf->b_op_end = oap->start;
2008 curbuf->b_op_start = oap->start;
2009
2010 return OK;
2011}
2012
2013#ifdef FEAT_MBYTE
2014/*
2015 * Adjust end of operating area for ending on a multi-byte character.
2016 * Used for deletion.
2017 */
2018 static void
2019mb_adjust_opend(oap)
2020 oparg_T *oap;
2021{
2022 char_u *p;
2023
2024 if (oap->inclusive)
2025 {
2026 p = ml_get(oap->end.lnum);
2027 oap->end.col += mb_tail_off(p, p + oap->end.col);
2028 }
2029}
2030#endif
2031
2032#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2033/*
2034 * Replace a whole area with one character.
2035 */
2036 int
2037op_replace(oap, c)
2038 oparg_T *oap;
2039 int c;
2040{
2041 int n, numc;
2042#ifdef FEAT_MBYTE
2043 int num_chars;
2044#endif
2045 char_u *newp, *oldp;
2046 size_t oldlen;
2047 struct block_def bd;
2048
2049 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2050 return OK; /* nothing to do */
2051
2052#ifdef FEAT_MBYTE
2053 if (has_mbyte)
2054 mb_adjust_opend(oap);
2055#endif
2056
2057 if (u_save((linenr_T)(oap->start.lnum - 1),
2058 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2059 return FAIL;
2060
2061 /*
2062 * block mode replace
2063 */
2064 if (oap->block_mode)
2065 {
2066 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2067 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2068 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002069 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2071 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2072 continue; /* nothing to replace */
2073
2074 /* n == number of extra chars required
2075 * If we split a TAB, it may be replaced by several characters.
2076 * Thus the number of characters may increase!
2077 */
2078#ifdef FEAT_VIRTUALEDIT
2079 /* If the range starts in virtual space, count the initial
2080 * coladd offset as part of "startspaces" */
2081 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2082 {
2083 pos_T vpos;
2084
Bram Moolenaara1381de2009-11-03 15:44:21 +00002085 vpos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 getvpos(&vpos, oap->start_vcol);
2087 bd.startspaces += vpos.coladd;
2088 n = bd.startspaces;
2089 }
2090 else
2091#endif
2092 /* allow for pre spaces */
2093 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2094
2095 /* allow for post spp */
2096 n += (bd.endspaces
2097#ifdef FEAT_VIRTUALEDIT
2098 && !bd.is_oneChar
2099#endif
2100 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2101 /* Figure out how many characters to replace. */
2102 numc = oap->end_vcol - oap->start_vcol + 1;
2103 if (bd.is_short && (!virtual_op || bd.is_MAX))
2104 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2105
2106#ifdef FEAT_MBYTE
2107 /* A double-wide character can be replaced only up to half the
2108 * times. */
2109 if ((*mb_char2cells)(c) > 1)
2110 {
2111 if ((numc & 1) && !bd.is_short)
2112 {
2113 ++bd.endspaces;
2114 ++n;
2115 }
2116 numc = numc / 2;
2117 }
2118
2119 /* Compute bytes needed, move character count to num_chars. */
2120 num_chars = numc;
2121 numc *= (*mb_char2len)(c);
2122#endif
2123 /* oldlen includes textlen, so don't double count */
2124 n += numc - bd.textlen;
2125
2126 oldp = ml_get_curline();
2127 oldlen = STRLEN(oldp);
2128 newp = alloc_check((unsigned)oldlen + 1 + n);
2129 if (newp == NULL)
2130 continue;
2131 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2132 /* copy up to deleted part */
2133 mch_memmove(newp, oldp, (size_t)bd.textcol);
2134 oldp += bd.textcol + bd.textlen;
2135 /* insert pre-spaces */
2136 copy_spaces(newp + bd.textcol, (size_t)bd.startspaces);
2137 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
2138#ifdef FEAT_MBYTE
2139 if (has_mbyte)
2140 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002141 n = (int)STRLEN(newp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 while (--num_chars >= 0)
2143 n += (*mb_char2bytes)(c, newp + n);
2144 }
2145 else
2146#endif
2147 copy_chars(newp + STRLEN(newp), (size_t)numc, c);
2148 if (!bd.is_short)
2149 {
2150 /* insert post-spaces */
2151 copy_spaces(newp + STRLEN(newp), (size_t)bd.endspaces);
2152 /* copy the part after the changed part */
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002153 STRMOVE(newp + STRLEN(newp), oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 }
2155 /* replace the line */
2156 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
2157 }
2158 }
2159 else
2160 {
2161 /*
2162 * MCHAR and MLINE motion replace.
2163 */
2164 if (oap->motion_type == MLINE)
2165 {
2166 oap->start.col = 0;
2167 curwin->w_cursor.col = 0;
2168 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2169 if (oap->end.col)
2170 --oap->end.col;
2171 }
2172 else if (!oap->inclusive)
2173 dec(&(oap->end));
2174
2175 while (ltoreq(curwin->w_cursor, oap->end))
2176 {
2177 n = gchar_cursor();
2178 if (n != NUL)
2179 {
2180#ifdef FEAT_MBYTE
2181 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2182 {
2183 /* This is slow, but it handles replacing a single-byte
2184 * with a multi-byte and the other way around. */
2185 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
2186 n = State;
2187 State = REPLACE;
2188 ins_char(c);
2189 State = n;
2190 /* Backup to the replaced character. */
2191 dec_cursor();
2192 }
2193 else
2194#endif
2195 {
2196#ifdef FEAT_VIRTUALEDIT
2197 if (n == TAB)
2198 {
2199 int end_vcol = 0;
2200
2201 if (curwin->w_cursor.lnum == oap->end.lnum)
2202 {
2203 /* oap->end has to be recalculated when
2204 * the tab breaks */
2205 end_vcol = getviscol2(oap->end.col,
2206 oap->end.coladd);
2207 }
2208 coladvance_force(getviscol());
2209 if (curwin->w_cursor.lnum == oap->end.lnum)
2210 getvpos(&oap->end, end_vcol);
2211 }
2212#endif
2213 pchar(curwin->w_cursor, c);
2214 }
2215 }
2216#ifdef FEAT_VIRTUALEDIT
2217 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2218 {
2219 int virtcols = oap->end.coladd;
2220
2221 if (curwin->w_cursor.lnum == oap->start.lnum
2222 && oap->start.col == oap->end.col && oap->start.coladd)
2223 virtcols -= oap->start.coladd;
2224
2225 /* oap->end has been trimmed so it's effectively inclusive;
2226 * as a result an extra +1 must be counted so we don't
2227 * trample the NUL byte. */
2228 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2229 curwin->w_cursor.col -= (virtcols + 1);
2230 for (; virtcols >= 0; virtcols--)
2231 {
2232 pchar(curwin->w_cursor, c);
2233 if (inc(&curwin->w_cursor) == -1)
2234 break;
2235 }
2236 }
2237#endif
2238
2239 /* Advance to next character, stop at the end of the file. */
2240 if (inc_cursor() == -1)
2241 break;
2242 }
2243 }
2244
2245 curwin->w_cursor = oap->start;
2246 check_cursor();
2247 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2248
2249 /* Set "'[" and "']" marks. */
2250 curbuf->b_op_start = oap->start;
2251 curbuf->b_op_end = oap->end;
2252
2253 return OK;
2254}
2255#endif
2256
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002257static int swapchars __ARGS((int op_type, pos_T *pos, int length));
2258
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259/*
2260 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2261 */
2262 void
2263op_tilde(oap)
2264 oparg_T *oap;
2265{
2266 pos_T pos;
2267#ifdef FEAT_VISUAL
2268 struct block_def bd;
Bram Moolenaar60a795a2005-09-16 21:55:43 +00002269#endif
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002270 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271
2272 if (u_save((linenr_T)(oap->start.lnum - 1),
2273 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2274 return;
2275
2276 pos = oap->start;
2277#ifdef FEAT_VISUAL
2278 if (oap->block_mode) /* Visual block mode */
2279 {
2280 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2281 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002282 int one_change;
2283
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 block_prep(oap, &bd, pos.lnum, FALSE);
2285 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002286 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2287 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002288
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002290 if (netbeans_active() && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291 {
2292 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2293
Bram Moolenaar009b2592004-10-24 19:18:58 +00002294 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2295 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002297 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 }
2299# endif
2300 }
2301 if (did_change)
2302 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2303 }
2304 else /* not block mode */
2305#endif
2306 {
2307 if (oap->motion_type == MLINE)
2308 {
2309 oap->start.col = 0;
2310 pos.col = 0;
2311 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2312 if (oap->end.col)
2313 --oap->end.col;
2314 }
2315 else if (!oap->inclusive)
2316 dec(&(oap->end));
2317
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002318 if (pos.lnum == oap->end.lnum)
2319 did_change = swapchars(oap->op_type, &pos,
2320 oap->end.col - pos.col + 1);
2321 else
2322 for (;;)
2323 {
2324 did_change |= swapchars(oap->op_type, &pos,
2325 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2326 (int)STRLEN(ml_get_pos(&pos)));
2327 if (ltoreq(oap->end, pos) || inc(&pos) == -1)
2328 break;
2329 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 if (did_change)
2331 {
2332 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2333 0L);
2334#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002335 if (netbeans_active() && did_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 {
2337 char_u *ptr;
2338 int count;
2339
2340 pos = oap->start;
2341 while (pos.lnum < oap->end.lnum)
2342 {
2343 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002344 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002345 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002347 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 pos.col = 0;
2349 pos.lnum++;
2350 }
2351 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2352 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002353 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002355 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 }
2357#endif
2358 }
2359 }
2360
2361#ifdef FEAT_VISUAL
2362 if (!did_change && oap->is_VIsual)
2363 /* No change: need to remove the Visual selection */
2364 redraw_curbuf_later(INVERTED);
2365#endif
2366
2367 /*
2368 * Set '[ and '] marks.
2369 */
2370 curbuf->b_op_start = oap->start;
2371 curbuf->b_op_end = oap->end;
2372
2373 if (oap->line_count > p_report)
2374 {
2375 if (oap->line_count == 1)
2376 MSG(_("1 line changed"));
2377 else
2378 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2379 }
2380}
2381
2382/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002383 * Invoke swapchar() on "length" bytes at position "pos".
2384 * "pos" is advanced to just after the changed characters.
2385 * "length" is rounded up to include the whole last multi-byte character.
2386 * Also works correctly when the number of bytes changes.
2387 * Returns TRUE if some character was changed.
2388 */
2389 static int
2390swapchars(op_type, pos, length)
2391 int op_type;
2392 pos_T *pos;
2393 int length;
2394{
2395 int todo;
2396 int did_change = 0;
2397
2398 for (todo = length; todo > 0; --todo)
2399 {
2400# ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002401 if (has_mbyte)
2402 /* we're counting bytes, not characters */
2403 todo -= (*mb_ptr2len)(ml_get_pos(pos)) - 1;
2404# endif
2405 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002406 if (inc(pos) == -1) /* at end of file */
2407 break;
2408 }
2409 return did_change;
2410}
2411
2412/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 * If op_type == OP_UPPER: make uppercase,
2414 * if op_type == OP_LOWER: make lowercase,
2415 * if op_type == OP_ROT13: do rot13 encoding,
2416 * else swap case of character at 'pos'
2417 * returns TRUE when something actually changed.
2418 */
2419 int
2420swapchar(op_type, pos)
2421 int op_type;
2422 pos_T *pos;
2423{
2424 int c;
2425 int nc;
2426
2427 c = gchar_pos(pos);
2428
2429 /* Only do rot13 encoding for ASCII characters. */
2430 if (c >= 0x80 && op_type == OP_ROT13)
2431 return FALSE;
2432
2433#ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002434 if (op_type == OP_UPPER && c == 0xdf
2435 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002436 {
2437 pos_T sp = curwin->w_cursor;
2438
2439 /* Special handling of German sharp s: change to "SS". */
2440 curwin->w_cursor = *pos;
2441 del_char(FALSE);
2442 ins_char('S');
2443 ins_char('S');
2444 curwin->w_cursor = sp;
2445 inc(pos);
2446 }
2447
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2449 return FALSE;
2450#endif
2451 nc = c;
2452 if (MB_ISLOWER(c))
2453 {
2454 if (op_type == OP_ROT13)
2455 nc = ROT13(c, 'a');
2456 else if (op_type != OP_LOWER)
2457 nc = MB_TOUPPER(c);
2458 }
2459 else if (MB_ISUPPER(c))
2460 {
2461 if (op_type == OP_ROT13)
2462 nc = ROT13(c, 'A');
2463 else if (op_type != OP_UPPER)
2464 nc = MB_TOLOWER(c);
2465 }
2466 if (nc != c)
2467 {
2468#ifdef FEAT_MBYTE
2469 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2470 {
2471 pos_T sp = curwin->w_cursor;
2472
2473 curwin->w_cursor = *pos;
Bram Moolenaard1cb65e2010-08-01 14:22:48 +02002474 /* don't use del_char(), it also removes composing chars */
2475 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 ins_char(nc);
2477 curwin->w_cursor = sp;
2478 }
2479 else
2480#endif
2481 pchar(*pos, nc);
2482 return TRUE;
2483 }
2484 return FALSE;
2485}
2486
2487#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2488/*
2489 * op_insert - Insert and append operators for Visual mode.
2490 */
2491 void
2492op_insert(oap, count1)
2493 oparg_T *oap;
2494 long count1;
2495{
2496 long ins_len, pre_textlen = 0;
2497 char_u *firstline, *ins_text;
2498 struct block_def bd;
2499 int i;
2500
2501 /* edit() changes this - record it for OP_APPEND */
2502 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2503
2504 /* vis block is still marked. Get rid of it now. */
2505 curwin->w_cursor.lnum = oap->start.lnum;
2506 update_screen(INVERTED);
2507
2508 if (oap->block_mode)
2509 {
2510#ifdef FEAT_VIRTUALEDIT
2511 /* When 'virtualedit' is used, need to insert the extra spaces before
2512 * doing block_prep(). When only "block" is used, virtual edit is
2513 * already disabled, but still need it when calling
2514 * coladvance_force(). */
2515 if (curwin->w_cursor.coladd > 0)
2516 {
2517 int old_ve_flags = ve_flags;
2518
2519 ve_flags = VE_ALL;
2520 if (u_save_cursor() == FAIL)
2521 return;
2522 coladvance_force(oap->op_type == OP_APPEND
2523 ? oap->end_vcol + 1 : getviscol());
2524 if (oap->op_type == OP_APPEND)
2525 --curwin->w_cursor.col;
2526 ve_flags = old_ve_flags;
2527 }
2528#endif
2529 /* Get the info about the block before entering the text */
2530 block_prep(oap, &bd, oap->start.lnum, TRUE);
2531 firstline = ml_get(oap->start.lnum) + bd.textcol;
2532 if (oap->op_type == OP_APPEND)
2533 firstline += bd.textlen;
2534 pre_textlen = (long)STRLEN(firstline);
2535 }
2536
2537 if (oap->op_type == OP_APPEND)
2538 {
2539 if (oap->block_mode
2540#ifdef FEAT_VIRTUALEDIT
2541 && curwin->w_cursor.coladd == 0
2542#endif
2543 )
2544 {
2545 /* Move the cursor to the character right of the block. */
2546 curwin->w_set_curswant = TRUE;
2547 while (*ml_get_cursor() != NUL
2548 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2549 ++curwin->w_cursor.col;
2550 if (bd.is_short && !bd.is_MAX)
2551 {
2552 /* First line was too short, make it longer and adjust the
2553 * values in "bd". */
2554 if (u_save_cursor() == FAIL)
2555 return;
2556 for (i = 0; i < bd.endspaces; ++i)
2557 ins_char(' ');
2558 bd.textlen += bd.endspaces;
2559 }
2560 }
2561 else
2562 {
2563 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002564 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565
2566 /* Works just like an 'i'nsert on the next character. */
2567 if (!lineempty(curwin->w_cursor.lnum)
2568 && oap->start_vcol != oap->end_vcol)
2569 inc_cursor();
2570 }
2571 }
2572
2573 edit(NUL, FALSE, (linenr_T)count1);
2574
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002575 /* If user has moved off this line, we don't know what to do, so do
2576 * nothing.
2577 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2578 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 return;
2580
2581 if (oap->block_mode)
2582 {
2583 struct block_def bd2;
2584
2585 /*
2586 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002587 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 * Don't do this when "$" used, end-of-line will have changed.
2589 */
2590 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2591 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2592 {
2593 if (oap->op_type == OP_APPEND)
2594 {
2595 pre_textlen += bd2.textlen - bd.textlen;
2596 if (bd2.endspaces)
2597 --bd2.textlen;
2598 }
2599 bd.textcol = bd2.textcol;
2600 bd.textlen = bd2.textlen;
2601 }
2602
2603 /*
2604 * Subsequent calls to ml_get() flush the firstline data - take a
2605 * copy of the required string.
2606 */
2607 firstline = ml_get(oap->start.lnum) + bd.textcol;
2608 if (oap->op_type == OP_APPEND)
2609 firstline += bd.textlen;
Bram Moolenaar5e4b9e92012-03-23 14:16:23 +01002610 if (pre_textlen >= 0
2611 && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 {
2613 ins_text = vim_strnsave(firstline, (int)ins_len);
2614 if (ins_text != NULL)
2615 {
2616 /* block handled here */
2617 if (u_save(oap->start.lnum,
2618 (linenr_T)(oap->end.lnum + 1)) == OK)
2619 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2620 &bd);
2621
2622 curwin->w_cursor.col = oap->start.col;
2623 check_cursor();
2624 vim_free(ins_text);
2625 }
2626 }
2627 }
2628}
2629#endif
2630
2631/*
2632 * op_change - handle a change operation
2633 *
2634 * return TRUE if edit() returns because of a CTRL-O command
2635 */
2636 int
2637op_change(oap)
2638 oparg_T *oap;
2639{
2640 colnr_T l;
2641 int retval;
2642#ifdef FEAT_VISUALEXTRA
2643 long offset;
2644 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002645 long ins_len;
2646 long pre_textlen = 0;
2647 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 char_u *firstline;
2649 char_u *ins_text, *newp, *oldp;
2650 struct block_def bd;
2651#endif
2652
2653 l = oap->start.col;
2654 if (oap->motion_type == MLINE)
2655 {
2656 l = 0;
2657#ifdef FEAT_SMARTINDENT
2658 if (!p_paste && curbuf->b_p_si
2659# ifdef FEAT_CINDENT
2660 && !curbuf->b_p_cin
2661# endif
2662 )
2663 can_si = TRUE; /* It's like opening a new line, do si */
2664#endif
2665 }
2666
2667 /* First delete the text in the region. In an empty buffer only need to
2668 * save for undo */
2669 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2670 {
2671 if (u_save_cursor() == FAIL)
2672 return FALSE;
2673 }
2674 else if (op_delete(oap) == FAIL)
2675 return FALSE;
2676
2677 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
2678 && !virtual_op)
2679 inc_cursor();
2680
2681#ifdef FEAT_VISUALEXTRA
2682 /* check for still on same line (<CR> in inserted text meaningless) */
2683 /* skip blank lines too */
2684 if (oap->block_mode)
2685 {
2686# ifdef FEAT_VIRTUALEDIT
2687 /* Add spaces before getting the current line length. */
2688 if (virtual_op && (curwin->w_cursor.coladd > 0
2689 || gchar_cursor() == NUL))
2690 coladvance_force(getviscol());
2691# endif
Bram Moolenaar53241da2007-09-13 20:41:32 +00002692 firstline = ml_get(oap->start.lnum);
2693 pre_textlen = (long)STRLEN(firstline);
2694 pre_indent = (long)(skipwhite(firstline) - firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695 bd.textcol = curwin->w_cursor.col;
2696 }
2697#endif
2698
2699#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2700 if (oap->motion_type == MLINE)
2701 fix_indent();
2702#endif
2703
2704 retval = edit(NUL, FALSE, (linenr_T)1);
2705
2706#ifdef FEAT_VISUALEXTRA
2707 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002708 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002710 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002712 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002714 /* Auto-indenting may have changed the indent. If the cursor was past
2715 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002717 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002719 long new_indent = (long)(skipwhite(firstline) - firstline);
2720
2721 pre_textlen += new_indent - pre_indent;
2722 bd.textcol += new_indent - pre_indent;
2723 }
2724
2725 ins_len = (long)STRLEN(firstline) - pre_textlen;
2726 if (ins_len > 0)
2727 {
2728 /* Subsequent calls to ml_get() flush the firstline data - take a
2729 * copy of the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2731 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002732 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2734 linenr++)
2735 {
2736 block_prep(oap, &bd, linenr, TRUE);
2737 if (!bd.is_short || virtual_op)
2738 {
2739# ifdef FEAT_VIRTUALEDIT
2740 pos_T vpos;
2741
2742 /* If the block starts in virtual space, count the
2743 * initial coladd offset as part of "startspaces" */
2744 if (bd.is_short)
2745 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002746 vpos.lnum = linenr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747 (void)getvpos(&vpos, oap->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 }
2749 else
2750 vpos.coladd = 0;
2751# endif
2752 oldp = ml_get(linenr);
2753 newp = alloc_check((unsigned)(STRLEN(oldp)
2754# ifdef FEAT_VIRTUALEDIT
2755 + vpos.coladd
2756# endif
2757 + ins_len + 1));
2758 if (newp == NULL)
2759 continue;
2760 /* copy up to block start */
2761 mch_memmove(newp, oldp, (size_t)bd.textcol);
2762 offset = bd.textcol;
2763# ifdef FEAT_VIRTUALEDIT
2764 copy_spaces(newp + offset, (size_t)vpos.coladd);
2765 offset += vpos.coladd;
2766# endif
2767 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2768 offset += ins_len;
2769 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002770 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 ml_replace(linenr, newp, FALSE);
2772 }
2773 }
2774 check_cursor();
2775
2776 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2777 }
2778 vim_free(ins_text);
2779 }
2780 }
2781#endif
2782
2783 return retval;
2784}
2785
2786/*
2787 * set all the yank registers to empty (called from main())
2788 */
2789 void
2790init_yank()
2791{
2792 int i;
2793
2794 for (i = 0; i < NUM_REGISTERS; ++i)
2795 y_regs[i].y_array = NULL;
2796}
2797
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002798#if defined(EXITFREE) || defined(PROTO)
2799 void
2800clear_registers()
2801{
2802 int i;
2803
2804 for (i = 0; i < NUM_REGISTERS; ++i)
2805 {
2806 y_current = &y_regs[i];
2807 if (y_current->y_array != NULL)
2808 free_yank_all();
2809 }
2810}
2811#endif
2812
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813/*
2814 * Free "n" lines from the current yank register.
2815 * Called for normal freeing and in case of error.
2816 */
2817 static void
2818free_yank(n)
2819 long n;
2820{
2821 if (y_current->y_array != NULL)
2822 {
2823 long i;
2824
2825 for (i = n; --i >= 0; )
2826 {
2827#ifdef AMIGA /* only for very slow machines */
2828 if ((i & 1023) == 1023) /* this may take a while */
2829 {
2830 /*
2831 * This message should never cause a hit-return message.
2832 * Overwrite this message with any next message.
2833 */
2834 ++no_wait_return;
2835 smsg((char_u *)_("freeing %ld lines"), i + 1);
2836 --no_wait_return;
2837 msg_didout = FALSE;
2838 msg_col = 0;
2839 }
2840#endif
2841 vim_free(y_current->y_array[i]);
2842 }
2843 vim_free(y_current->y_array);
2844 y_current->y_array = NULL;
2845#ifdef AMIGA
2846 if (n >= 1000)
2847 MSG("");
2848#endif
2849 }
2850}
2851
2852 static void
2853free_yank_all()
2854{
2855 free_yank(y_current->y_size);
2856}
2857
2858/*
2859 * Yank the text between "oap->start" and "oap->end" into a yank register.
2860 * If we are to append (uppercase register), we first yank into a new yank
2861 * register and then concatenate the old and the new one (so we keep the old
2862 * one in case of out-of-memory).
2863 *
2864 * return FAIL for failure, OK otherwise
2865 */
2866 int
2867op_yank(oap, deleting, mess)
2868 oparg_T *oap;
2869 int deleting;
2870 int mess;
2871{
2872 long y_idx; /* index in y_array[] */
2873 struct yankreg *curr; /* copy of y_current */
2874 struct yankreg newreg; /* new yank register when appending */
2875 char_u **new_ptr;
2876 linenr_T lnum; /* current line number */
2877 long j;
2878 int yanktype = oap->motion_type;
2879 long yanklines = oap->line_count;
2880 linenr_T yankendlnum = oap->end.lnum;
2881 char_u *p;
2882 char_u *pnew;
2883 struct block_def bd;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01002884#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01002885 int did_star = FALSE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01002886#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887
2888 /* check for read-only register */
2889 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2890 {
2891 beep_flush();
2892 return FAIL;
2893 }
2894 if (oap->regname == '_') /* black hole: nothing to do */
2895 return OK;
2896
2897#ifdef FEAT_CLIPBOARD
2898 if (!clip_star.available && oap->regname == '*')
2899 oap->regname = 0;
2900 else if (!clip_plus.available && oap->regname == '+')
2901 oap->regname = 0;
2902#endif
2903
2904 if (!deleting) /* op_delete() already set y_current */
2905 get_yank_register(oap->regname, TRUE);
2906
2907 curr = y_current;
2908 /* append to existing contents */
2909 if (y_append && y_current->y_array != NULL)
2910 y_current = &newreg;
2911 else
2912 free_yank_all(); /* free previously yanked lines */
2913
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002914 /*
2915 * If the cursor was in column 1 before and after the movement, and the
2916 * operator is not inclusive, the yank is always linewise.
2917 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 if ( oap->motion_type == MCHAR
2919 && oap->start.col == 0
2920 && !oap->inclusive
2921#ifdef FEAT_VISUAL
2922 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00002923 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924#endif
2925 && oap->end.col == 0
2926 && yanklines > 1)
2927 {
2928 yanktype = MLINE;
2929 --yankendlnum;
2930 --yanklines;
2931 }
2932
2933 y_current->y_size = yanklines;
2934 y_current->y_type = yanktype; /* set the yank register type */
2935#ifdef FEAT_VISUAL
2936 y_current->y_width = 0;
2937#endif
2938 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
2939 yanklines), TRUE);
2940
2941 if (y_current->y_array == NULL)
2942 {
2943 y_current = curr;
2944 return FAIL;
2945 }
2946
2947 y_idx = 0;
2948 lnum = oap->start.lnum;
2949
2950#ifdef FEAT_VISUAL
2951 if (oap->block_mode)
2952 {
2953 /* Visual block mode */
2954 y_current->y_type = MBLOCK; /* set the yank register type */
2955 y_current->y_width = oap->end_vcol - oap->start_vcol;
2956
2957 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
2958 y_current->y_width--;
2959 }
2960#endif
2961
2962 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
2963 {
2964 switch (y_current->y_type)
2965 {
2966#ifdef FEAT_VISUAL
2967 case MBLOCK:
2968 block_prep(oap, &bd, lnum, FALSE);
2969 if (yank_copy_line(&bd, y_idx) == FAIL)
2970 goto fail;
2971 break;
2972#endif
2973
2974 case MLINE:
2975 if ((y_current->y_array[y_idx] =
2976 vim_strsave(ml_get(lnum))) == NULL)
2977 goto fail;
2978 break;
2979
2980 case MCHAR:
2981 {
2982 colnr_T startcol = 0, endcol = MAXCOL;
2983#ifdef FEAT_VIRTUALEDIT
2984 int is_oneChar = FALSE;
2985 colnr_T cs, ce;
2986#endif
2987 p = ml_get(lnum);
2988 bd.startspaces = 0;
2989 bd.endspaces = 0;
2990
2991 if (lnum == oap->start.lnum)
2992 {
2993 startcol = oap->start.col;
2994#ifdef FEAT_VIRTUALEDIT
2995 if (virtual_op)
2996 {
2997 getvcol(curwin, &oap->start, &cs, NULL, &ce);
2998 if (ce != cs && oap->start.coladd > 0)
2999 {
3000 /* Part of a tab selected -- but don't
3001 * double-count it. */
3002 bd.startspaces = (ce - cs + 1)
3003 - oap->start.coladd;
3004 startcol++;
3005 }
3006 }
3007#endif
3008 }
3009
3010 if (lnum == oap->end.lnum)
3011 {
3012 endcol = oap->end.col;
3013#ifdef FEAT_VIRTUALEDIT
3014 if (virtual_op)
3015 {
3016 getvcol(curwin, &oap->end, &cs, NULL, &ce);
3017 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
3018# ifdef FEAT_MBYTE
3019 /* Don't add space for double-wide
3020 * char; endcol will be on last byte
3021 * of multi-byte char. */
3022 && (*mb_head_off)(p, p + endcol) == 0
3023# endif
3024 ))
3025 {
3026 if (oap->start.lnum == oap->end.lnum
3027 && oap->start.col == oap->end.col)
3028 {
3029 /* Special case: inside a single char */
3030 is_oneChar = TRUE;
3031 bd.startspaces = oap->end.coladd
3032 - oap->start.coladd + oap->inclusive;
3033 endcol = startcol;
3034 }
3035 else
3036 {
3037 bd.endspaces = oap->end.coladd
3038 + oap->inclusive;
3039 endcol -= oap->inclusive;
3040 }
3041 }
3042 }
3043#endif
3044 }
Bram Moolenaar18e00d22012-05-18 12:49:40 +02003045 if (endcol == MAXCOL)
3046 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 if (startcol > endcol
3048#ifdef FEAT_VIRTUALEDIT
3049 || is_oneChar
3050#endif
3051 )
3052 bd.textlen = 0;
3053 else
3054 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 bd.textlen = endcol - startcol + oap->inclusive;
3056 }
3057 bd.textstart = p + startcol;
3058 if (yank_copy_line(&bd, y_idx) == FAIL)
3059 goto fail;
3060 break;
3061 }
3062 /* NOTREACHED */
3063 }
3064 }
3065
3066 if (curr != y_current) /* append the new block to the old block */
3067 {
3068 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3069 (curr->y_size + y_current->y_size)), TRUE);
3070 if (new_ptr == NULL)
3071 goto fail;
3072 for (j = 0; j < curr->y_size; ++j)
3073 new_ptr[j] = curr->y_array[j];
3074 vim_free(curr->y_array);
3075 curr->y_array = new_ptr;
3076
3077 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3078 curr->y_type = MLINE;
3079
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003080 /* Concatenate the last line of the old block with the first line of
3081 * the new block, unless being Vi compatible. */
3082 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 {
3084 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3085 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3086 if (pnew == NULL)
3087 {
3088 y_idx = y_current->y_size - 1;
3089 goto fail;
3090 }
3091 STRCPY(pnew, curr->y_array[--j]);
3092 STRCAT(pnew, y_current->y_array[0]);
3093 vim_free(curr->y_array[j]);
3094 vim_free(y_current->y_array[0]);
3095 curr->y_array[j++] = pnew;
3096 y_idx = 1;
3097 }
3098 else
3099 y_idx = 0;
3100 while (y_idx < y_current->y_size)
3101 curr->y_array[j++] = y_current->y_array[y_idx++];
3102 curr->y_size = j;
3103 vim_free(y_current->y_array);
3104 y_current = curr;
3105 }
3106 if (mess) /* Display message about yank? */
3107 {
3108 if (yanktype == MCHAR
3109#ifdef FEAT_VISUAL
3110 && !oap->block_mode
3111#endif
3112 && yanklines == 1)
3113 yanklines = 0;
3114 /* Some versions of Vi use ">=" here, some don't... */
3115 if (yanklines > p_report)
3116 {
3117 /* redisplay now, so message is not deleted */
3118 update_topline_redraw();
3119 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003120 {
3121#ifdef FEAT_VISUAL
3122 if (oap->block_mode)
3123 MSG(_("block of 1 line yanked"));
3124 else
3125#endif
3126 MSG(_("1 line yanked"));
3127 }
3128#ifdef FEAT_VISUAL
3129 else if (oap->block_mode)
3130 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
3131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 else
3133 smsg((char_u *)_("%ld lines yanked"), yanklines);
3134 }
3135 }
3136
3137 /*
3138 * Set "'[" and "']" marks.
3139 */
3140 curbuf->b_op_start = oap->start;
3141 curbuf->b_op_end = oap->end;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003142 if (yanktype == MLINE
3143#ifdef FEAT_VISUAL
3144 && !oap->block_mode
3145#endif
3146 )
3147 {
3148 curbuf->b_op_start.col = 0;
3149 curbuf->b_op_end.col = MAXCOL;
3150 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151
3152#ifdef FEAT_CLIPBOARD
3153 /*
3154 * If we were yanking to the '*' register, send result to clipboard.
3155 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3156 * to the '*' register.
3157 */
3158 if (clip_star.available
3159 && (curr == &(y_regs[STAR_REGISTER])
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003160 || (!deleting && oap->regname == 0
3161 && (clip_unnamed & CLIP_UNNAMED))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 {
3163 if (curr != &(y_regs[STAR_REGISTER]))
3164 /* Copy the text from register 0 to the clipboard register. */
3165 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3166
3167 clip_own_selection(&clip_star);
3168 clip_gen_set_selection(&clip_star);
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003169# ifdef FEAT_X11
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003170 did_star = TRUE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003171# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 }
3173
3174# ifdef FEAT_X11
3175 /*
3176 * If we were yanking to the '+' register, send result to selection.
3177 * Also copy to the '*' register, in case auto-select is off.
3178 */
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003179 if (clip_plus.available
3180 && (curr == &(y_regs[PLUS_REGISTER])
3181 || (!deleting && oap->regname == 0
3182 && (clip_unnamed & CLIP_UNNAMED_PLUS))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 {
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003184 if (curr != &(y_regs[PLUS_REGISTER]))
3185 /* Copy the text from register 0 to the clipboard register. */
3186 copy_yank_reg(&(y_regs[PLUS_REGISTER]));
3187
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 clip_own_selection(&clip_plus);
3189 clip_gen_set_selection(&clip_plus);
Bram Moolenaar337ae062011-04-01 16:28:38 +02003190 if (!clip_isautosel() && !did_star && curr == &(y_regs[PLUS_REGISTER]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191 {
3192 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3193 clip_own_selection(&clip_star);
3194 clip_gen_set_selection(&clip_star);
3195 }
3196 }
3197# endif
3198#endif
3199
3200 return OK;
3201
3202fail: /* free the allocated lines */
3203 free_yank(y_idx + 1);
3204 y_current = curr;
3205 return FAIL;
3206}
3207
3208 static int
3209yank_copy_line(bd, y_idx)
3210 struct block_def *bd;
3211 long y_idx;
3212{
3213 char_u *pnew;
3214
3215 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3216 == NULL)
3217 return FAIL;
3218 y_current->y_array[y_idx] = pnew;
3219 copy_spaces(pnew, (size_t)bd->startspaces);
3220 pnew += bd->startspaces;
3221 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3222 pnew += bd->textlen;
3223 copy_spaces(pnew, (size_t)bd->endspaces);
3224 pnew += bd->endspaces;
3225 *pnew = NUL;
3226 return OK;
3227}
3228
3229#ifdef FEAT_CLIPBOARD
3230/*
3231 * Make a copy of the y_current register to register "reg".
3232 */
3233 static void
3234copy_yank_reg(reg)
3235 struct yankreg *reg;
3236{
3237 struct yankreg *curr = y_current;
3238 long j;
3239
3240 y_current = reg;
3241 free_yank_all();
3242 *y_current = *curr;
3243 y_current->y_array = (char_u **)lalloc_clear(
3244 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3245 if (y_current->y_array == NULL)
3246 y_current->y_size = 0;
3247 else
3248 for (j = 0; j < y_current->y_size; ++j)
3249 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3250 {
3251 free_yank(j);
3252 y_current->y_size = 0;
3253 break;
3254 }
3255 y_current = curr;
3256}
3257#endif
3258
3259/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003260 * Put contents of register "regname" into the text.
3261 * Caller must check "regname" to be valid!
3262 * "flags": PUT_FIXINDENT make indent look nice
3263 * PUT_CURSEND leave cursor after end of new text
3264 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 */
3266 void
3267do_put(regname, dir, count, flags)
3268 int regname;
3269 int dir; /* BACKWARD for 'P', FORWARD for 'p' */
3270 long count;
3271 int flags;
3272{
3273 char_u *ptr;
3274 char_u *newp, *oldp;
3275 int yanklen;
3276 int totlen = 0; /* init for gcc */
3277 linenr_T lnum;
3278 colnr_T col;
3279 long i; /* index in y_array[] */
3280 int y_type;
3281 long y_size;
3282#ifdef FEAT_VISUAL
3283 int oldlen;
3284 long y_width = 0;
3285 colnr_T vcol;
3286 int delcount;
3287 int incr = 0;
3288 long j;
3289 struct block_def bd;
3290#endif
3291 char_u **y_array = NULL;
3292 long nr_lines = 0;
3293 pos_T new_cursor;
3294 int indent;
3295 int orig_indent = 0; /* init for gcc */
3296 int indent_diff = 0; /* init for gcc */
3297 int first_indent = TRUE;
3298 int lendiff = 0;
3299 pos_T old_pos;
3300 char_u *insert_string = NULL;
3301 int allocated = FALSE;
3302 long cnt;
3303
3304#ifdef FEAT_CLIPBOARD
3305 /* Adjust register name for "unnamed" in 'clipboard'. */
3306 adjust_clip_reg(&regname);
3307 (void)may_get_selection(regname);
3308#endif
3309
3310 if (flags & PUT_FIXINDENT)
3311 orig_indent = get_indent();
3312
3313 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3314 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3315
3316 /*
3317 * Using inserted text works differently, because the register includes
3318 * special characters (newlines, etc.).
3319 */
3320 if (regname == '.')
3321 {
3322 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3323 (count == -1 ? 'O' : 'i')), count, FALSE);
3324 /* Putting the text is done later, so can't really move the cursor to
3325 * the next character. Use "l" to simulate it. */
3326 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3327 stuffcharReadbuff('l');
3328 return;
3329 }
3330
3331 /*
3332 * For special registers '%' (file name), '#' (alternate file name) and
3333 * ':' (last command line), etc. we have to create a fake yank register.
3334 */
3335 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3336 {
3337 if (insert_string == NULL)
3338 return;
3339 }
3340
3341 if (insert_string != NULL)
3342 {
3343 y_type = MCHAR;
3344#ifdef FEAT_EVAL
3345 if (regname == '=')
3346 {
3347 /* For the = register we need to split the string at NL
Bram Moolenaara554a192011-09-21 17:33:53 +02003348 * characters.
3349 * Loop twice: count the number of lines and save them. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 for (;;)
3351 {
3352 y_size = 0;
3353 ptr = insert_string;
3354 while (ptr != NULL)
3355 {
3356 if (y_array != NULL)
3357 y_array[y_size] = ptr;
3358 ++y_size;
3359 ptr = vim_strchr(ptr, '\n');
3360 if (ptr != NULL)
3361 {
3362 if (y_array != NULL)
3363 *ptr = NUL;
3364 ++ptr;
Bram Moolenaara554a192011-09-21 17:33:53 +02003365 /* A trailing '\n' makes the register linewise. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 if (*ptr == NUL)
3367 {
3368 y_type = MLINE;
3369 break;
3370 }
3371 }
3372 }
3373 if (y_array != NULL)
3374 break;
3375 y_array = (char_u **)alloc((unsigned)
3376 (y_size * sizeof(char_u *)));
3377 if (y_array == NULL)
3378 goto end;
3379 }
3380 }
3381 else
3382#endif
3383 {
3384 y_size = 1; /* use fake one-line yank register */
3385 y_array = &insert_string;
3386 }
3387 }
3388 else
3389 {
3390 get_yank_register(regname, FALSE);
3391
3392 y_type = y_current->y_type;
3393#ifdef FEAT_VISUAL
3394 y_width = y_current->y_width;
3395#endif
3396 y_size = y_current->y_size;
3397 y_array = y_current->y_array;
3398 }
3399
3400#ifdef FEAT_VISUAL
3401 if (y_type == MLINE)
3402 {
3403 if (flags & PUT_LINE_SPLIT)
3404 {
3405 /* "p" or "P" in Visual mode: split the lines to put the text in
3406 * between. */
3407 if (u_save_cursor() == FAIL)
3408 goto end;
3409 ptr = vim_strsave(ml_get_cursor());
3410 if (ptr == NULL)
3411 goto end;
3412 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3413 vim_free(ptr);
3414
3415 ptr = vim_strnsave(ml_get_curline(), curwin->w_cursor.col);
3416 if (ptr == NULL)
3417 goto end;
3418 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3419 ++nr_lines;
3420 dir = FORWARD;
3421 }
3422 if (flags & PUT_LINE_FORWARD)
3423 {
3424 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003425 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426 dir = FORWARD;
3427 }
3428 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3429 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3430 }
3431#endif
3432
3433 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3434 y_type = MLINE;
3435
3436 if (y_size == 0 || y_array == NULL)
3437 {
3438 EMSG2(_("E353: Nothing in register %s"),
3439 regname == 0 ? (char_u *)"\"" : transchar(regname));
3440 goto end;
3441 }
3442
3443#ifdef FEAT_VISUAL
3444 if (y_type == MBLOCK)
3445 {
3446 lnum = curwin->w_cursor.lnum + y_size + 1;
3447 if (lnum > curbuf->b_ml.ml_line_count)
3448 lnum = curbuf->b_ml.ml_line_count + 1;
3449 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3450 goto end;
3451 }
3452 else
3453#endif
3454 if (y_type == MLINE)
3455 {
3456 lnum = curwin->w_cursor.lnum;
3457#ifdef FEAT_FOLDING
3458 /* Correct line number for closed fold. Don't move the cursor yet,
3459 * u_save() uses it. */
3460 if (dir == BACKWARD)
3461 (void)hasFolding(lnum, &lnum, NULL);
3462 else
3463 (void)hasFolding(lnum, NULL, &lnum);
3464#endif
3465 if (dir == FORWARD)
3466 ++lnum;
3467 if (u_save(lnum - 1, lnum) == FAIL)
3468 goto end;
3469#ifdef FEAT_FOLDING
3470 if (dir == FORWARD)
3471 curwin->w_cursor.lnum = lnum - 1;
3472 else
3473 curwin->w_cursor.lnum = lnum;
3474 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3475#endif
3476 }
3477 else if (u_save_cursor() == FAIL)
3478 goto end;
3479
3480 yanklen = (int)STRLEN(y_array[0]);
3481
3482#ifdef FEAT_VIRTUALEDIT
3483 if (ve_flags == VE_ALL && y_type == MCHAR)
3484 {
3485 if (gchar_cursor() == TAB)
3486 {
3487 /* Don't need to insert spaces when "p" on the last position of a
3488 * tab or "P" on the first position. */
3489 if (dir == FORWARD
3490 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3491 : curwin->w_cursor.coladd > 0)
3492 coladvance_force(getviscol());
3493 else
3494 curwin->w_cursor.coladd = 0;
3495 }
3496 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3497 coladvance_force(getviscol() + (dir == FORWARD));
3498 }
3499#endif
3500
3501 lnum = curwin->w_cursor.lnum;
3502 col = curwin->w_cursor.col;
3503
3504#ifdef FEAT_VISUAL
3505 /*
3506 * Block mode
3507 */
3508 if (y_type == MBLOCK)
3509 {
3510 char c = gchar_cursor();
3511 colnr_T endcol2 = 0;
3512
3513 if (dir == FORWARD && c != NUL)
3514 {
3515#ifdef FEAT_VIRTUALEDIT
3516 if (ve_flags == VE_ALL)
3517 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3518 else
3519#endif
3520 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3521
3522#ifdef FEAT_MBYTE
3523 if (has_mbyte)
3524 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003525 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526 else
3527#endif
3528#ifdef FEAT_VIRTUALEDIT
3529 if (c != TAB || ve_flags != VE_ALL)
3530#endif
3531 ++curwin->w_cursor.col;
3532 ++col;
3533 }
3534 else
3535 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3536
3537#ifdef FEAT_VIRTUALEDIT
3538 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003539 if (ve_flags == VE_ALL
3540 && (curwin->w_cursor.coladd > 0
3541 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 {
3543 if (dir == FORWARD && c == NUL)
3544 ++col;
3545 if (dir != FORWARD && c != NUL)
3546 ++curwin->w_cursor.col;
3547 if (c == TAB)
3548 {
3549 if (dir == BACKWARD && curwin->w_cursor.col)
3550 curwin->w_cursor.col--;
3551 if (dir == FORWARD && col - 1 == endcol2)
3552 curwin->w_cursor.col++;
3553 }
3554 }
3555 curwin->w_cursor.coladd = 0;
3556#endif
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003557 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 for (i = 0; i < y_size; ++i)
3559 {
3560 int spaces;
3561 char shortline;
3562
3563 bd.startspaces = 0;
3564 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 vcol = 0;
3566 delcount = 0;
3567
3568 /* add a new line */
3569 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3570 {
3571 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3572 (colnr_T)1, FALSE) == FAIL)
3573 break;
3574 ++nr_lines;
3575 }
3576 /* get the old line and advance to the position to insert at */
3577 oldp = ml_get_curline();
3578 oldlen = (int)STRLEN(oldp);
3579 for (ptr = oldp; vcol < col && *ptr; )
3580 {
3581 /* Count a tab for what it's worth (if list mode not on) */
3582 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
3583 vcol += incr;
3584 }
3585 bd.textcol = (colnr_T)(ptr - oldp);
3586
3587 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3588
3589 if (vcol < col) /* line too short, padd with spaces */
3590 bd.startspaces = col - vcol;
3591 else if (vcol > col)
3592 {
3593 bd.endspaces = vcol - col;
3594 bd.startspaces = incr - bd.endspaces;
3595 --bd.textcol;
3596 delcount = 1;
3597#ifdef FEAT_MBYTE
3598 if (has_mbyte)
3599 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3600#endif
3601 if (oldp[bd.textcol] != TAB)
3602 {
3603 /* Only a Tab can be split into spaces. Other
3604 * characters will have to be moved to after the
3605 * block, causing misalignment. */
3606 delcount = 0;
3607 bd.endspaces = 0;
3608 }
3609 }
3610
3611 yanklen = (int)STRLEN(y_array[i]);
3612
3613 /* calculate number of spaces required to fill right side of block*/
3614 spaces = y_width + 1;
3615 for (j = 0; j < yanklen; j++)
3616 spaces -= lbr_chartabsize(&y_array[i][j], 0);
3617 if (spaces < 0)
3618 spaces = 0;
3619
3620 /* insert the new text */
3621 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3622 newp = alloc_check((unsigned)totlen + oldlen + 1);
3623 if (newp == NULL)
3624 break;
3625 /* copy part up to cursor to new line */
3626 ptr = newp;
3627 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3628 ptr += bd.textcol;
3629 /* may insert some spaces before the new text */
3630 copy_spaces(ptr, (size_t)bd.startspaces);
3631 ptr += bd.startspaces;
3632 /* insert the new text */
3633 for (j = 0; j < count; ++j)
3634 {
3635 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3636 ptr += yanklen;
3637
3638 /* insert block's trailing spaces only if there's text behind */
3639 if ((j < count - 1 || !shortline) && spaces)
3640 {
3641 copy_spaces(ptr, (size_t)spaces);
3642 ptr += spaces;
3643 }
3644 }
3645 /* may insert some spaces after the new text */
3646 copy_spaces(ptr, (size_t)bd.endspaces);
3647 ptr += bd.endspaces;
3648 /* move the text after the cursor to the end of the line. */
3649 mch_memmove(ptr, oldp + bd.textcol + delcount,
3650 (size_t)(oldlen - bd.textcol - delcount + 1));
3651 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3652
3653 ++curwin->w_cursor.lnum;
3654 if (i == 0)
3655 curwin->w_cursor.col += bd.startspaces;
3656 }
3657
3658 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3659
3660 /* Set '[ mark. */
3661 curbuf->b_op_start = curwin->w_cursor;
3662 curbuf->b_op_start.lnum = lnum;
3663
3664 /* adjust '] mark */
3665 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3666 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003667# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003669# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 if (flags & PUT_CURSEND)
3671 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003672 colnr_T len;
3673
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 curwin->w_cursor = curbuf->b_op_end;
3675 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003676
3677 /* in Insert mode we might be after the NUL, correct for that */
3678 len = (colnr_T)STRLEN(ml_get_curline());
3679 if (curwin->w_cursor.col > len)
3680 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 }
3682 else
3683 curwin->w_cursor.lnum = lnum;
3684 }
3685 else
3686#endif
3687 {
3688 /*
3689 * Character or Line mode
3690 */
3691 if (y_type == MCHAR)
3692 {
3693 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3694 * char */
3695 if (dir == FORWARD && gchar_cursor() != NUL)
3696 {
3697#ifdef FEAT_MBYTE
3698 if (has_mbyte)
3699 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003700 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701
3702 /* put it on the next of the multi-byte character. */
3703 col += bytelen;
3704 if (yanklen)
3705 {
3706 curwin->w_cursor.col += bytelen;
3707 curbuf->b_op_end.col += bytelen;
3708 }
3709 }
3710 else
3711#endif
3712 {
3713 ++col;
3714 if (yanklen)
3715 {
3716 ++curwin->w_cursor.col;
3717 ++curbuf->b_op_end.col;
3718 }
3719 }
3720 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 curbuf->b_op_start = curwin->w_cursor;
3722 }
3723 /*
3724 * Line mode: BACKWARD is the same as FORWARD on the previous line
3725 */
3726 else if (dir == BACKWARD)
3727 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003728 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729
3730 /*
3731 * simple case: insert into current line
3732 */
3733 if (y_type == MCHAR && y_size == 1)
3734 {
3735 totlen = count * yanklen;
3736 if (totlen)
3737 {
3738 oldp = ml_get(lnum);
3739 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3740 if (newp == NULL)
3741 goto end; /* alloc() will give error message */
3742 mch_memmove(newp, oldp, (size_t)col);
3743 ptr = newp + col;
3744 for (i = 0; i < count; ++i)
3745 {
3746 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3747 ptr += yanklen;
3748 }
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00003749 STRMOVE(ptr, oldp + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 ml_replace(lnum, newp, FALSE);
3751 /* Put cursor on last putted char. */
3752 curwin->w_cursor.col += (colnr_T)(totlen - 1);
3753 }
3754 curbuf->b_op_end = curwin->w_cursor;
3755 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3756 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3757 ++curwin->w_cursor.col;
3758 changed_bytes(lnum, col);
3759 }
3760 else
3761 {
3762 /*
3763 * Insert at least one line. When y_type is MCHAR, break the first
3764 * line in two.
3765 */
3766 for (cnt = 1; cnt <= count; ++cnt)
3767 {
3768 i = 0;
3769 if (y_type == MCHAR)
3770 {
3771 /*
3772 * Split the current line in two at the insert position.
3773 * First insert y_array[size - 1] in front of second line.
3774 * Then append y_array[0] to first line.
3775 */
3776 lnum = new_cursor.lnum;
3777 ptr = ml_get(lnum) + col;
3778 totlen = (int)STRLEN(y_array[y_size - 1]);
3779 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3780 if (newp == NULL)
3781 goto error;
3782 STRCPY(newp, y_array[y_size - 1]);
3783 STRCAT(newp, ptr);
3784 /* insert second line */
3785 ml_append(lnum, newp, (colnr_T)0, FALSE);
3786 vim_free(newp);
3787
3788 oldp = ml_get(lnum);
3789 newp = alloc_check((unsigned)(col + yanklen + 1));
3790 if (newp == NULL)
3791 goto error;
3792 /* copy first part of line */
3793 mch_memmove(newp, oldp, (size_t)col);
3794 /* append to first line */
3795 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3796 ml_replace(lnum, newp, FALSE);
3797
3798 curwin->w_cursor.lnum = lnum;
3799 i = 1;
3800 }
3801
3802 for (; i < y_size; ++i)
3803 {
3804 if ((y_type != MCHAR || i < y_size - 1)
3805 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3806 == FAIL)
3807 goto error;
3808 lnum++;
3809 ++nr_lines;
3810 if (flags & PUT_FIXINDENT)
3811 {
3812 old_pos = curwin->w_cursor;
3813 curwin->w_cursor.lnum = lnum;
3814 ptr = ml_get(lnum);
3815 if (cnt == count && i == y_size - 1)
3816 lendiff = (int)STRLEN(ptr);
3817#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3818 if (*ptr == '#' && preprocs_left())
3819 indent = 0; /* Leave # lines at start */
3820 else
3821#endif
3822 if (*ptr == NUL)
3823 indent = 0; /* Ignore empty lines */
3824 else if (first_indent)
3825 {
3826 indent_diff = orig_indent - get_indent();
3827 indent = orig_indent;
3828 first_indent = FALSE;
3829 }
3830 else if ((indent = get_indent() + indent_diff) < 0)
3831 indent = 0;
3832 (void)set_indent(indent, 0);
3833 curwin->w_cursor = old_pos;
3834 /* remember how many chars were removed */
3835 if (cnt == count && i == y_size - 1)
3836 lendiff -= (int)STRLEN(ml_get(lnum));
3837 }
3838 }
3839 }
3840
3841error:
3842 /* Adjust marks. */
3843 if (y_type == MLINE)
3844 {
3845 curbuf->b_op_start.col = 0;
3846 if (dir == FORWARD)
3847 curbuf->b_op_start.lnum++;
3848 }
3849 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
3850 (linenr_T)MAXLNUM, nr_lines, 0L);
3851
3852 /* note changed text for displaying and folding */
3853 if (y_type == MCHAR)
3854 changed_lines(curwin->w_cursor.lnum, col,
3855 curwin->w_cursor.lnum + 1, nr_lines);
3856 else
3857 changed_lines(curbuf->b_op_start.lnum, 0,
3858 curbuf->b_op_start.lnum, nr_lines);
3859
3860 /* put '] mark at last inserted character */
3861 curbuf->b_op_end.lnum = lnum;
3862 /* correct length for change in indent */
3863 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3864 if (col > 1)
3865 curbuf->b_op_end.col = col - 1;
3866 else
3867 curbuf->b_op_end.col = 0;
3868
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003869 if (flags & PUT_CURSLINE)
3870 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003871 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003872 curwin->w_cursor.lnum = lnum;
3873 beginline(BL_WHITE | BL_FIX);
3874 }
3875 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876 {
3877 /* put cursor after inserted text */
3878 if (y_type == MLINE)
3879 {
3880 if (lnum >= curbuf->b_ml.ml_line_count)
3881 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3882 else
3883 curwin->w_cursor.lnum = lnum + 1;
3884 curwin->w_cursor.col = 0;
3885 }
3886 else
3887 {
3888 curwin->w_cursor.lnum = lnum;
3889 curwin->w_cursor.col = col;
3890 }
3891 }
3892 else if (y_type == MLINE)
3893 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003894 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 curwin->w_cursor.col = 0;
3896 if (dir == FORWARD)
3897 ++curwin->w_cursor.lnum;
3898 beginline(BL_WHITE | BL_FIX);
3899 }
3900 else /* put cursor on first inserted character */
3901 curwin->w_cursor = new_cursor;
3902 }
3903 }
3904
3905 msgmore(nr_lines);
3906 curwin->w_set_curswant = TRUE;
3907
3908end:
3909 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003911 if (regname == '=')
3912 vim_free(y_array);
3913
Bram Moolenaar677ee682005-01-27 14:41:15 +00003914 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003915 adjust_cursor_eol();
3916}
3917
3918/*
3919 * When the cursor is on the NUL past the end of the line and it should not be
3920 * there move it left.
3921 */
3922 void
3923adjust_cursor_eol()
3924{
3925 if (curwin->w_cursor.col > 0
3926 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00003927#ifdef FEAT_VIRTUALEDIT
3928 && (ve_flags & VE_ONEMORE) == 0
3929#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 && !(restart_edit || (State & INSERT)))
3931 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00003932 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00003933 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003934
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935#ifdef FEAT_VIRTUALEDIT
3936 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00003937 {
3938 colnr_T scol, ecol;
3939
3940 /* Coladd is set to the width of the last character. */
3941 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
3942 curwin->w_cursor.coladd = ecol - scol + 1;
3943 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944#endif
3945 }
3946}
3947
3948#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
3949/*
3950 * Return TRUE if lines starting with '#' should be left aligned.
3951 */
3952 int
3953preprocs_left()
3954{
3955 return
3956# ifdef FEAT_SMARTINDENT
3957# ifdef FEAT_CINDENT
3958 (curbuf->b_p_si && !curbuf->b_p_cin) ||
3959# else
3960 curbuf->b_p_si
3961# endif
3962# endif
3963# ifdef FEAT_CINDENT
3964 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE))
3965# endif
3966 ;
3967}
3968#endif
3969
3970/* Return the character name of the register with the given number */
3971 int
3972get_register_name(num)
3973 int num;
3974{
3975 if (num == -1)
3976 return '"';
3977 else if (num < 10)
3978 return num + '0';
3979 else if (num == DELETION_REGISTER)
3980 return '-';
3981#ifdef FEAT_CLIPBOARD
3982 else if (num == STAR_REGISTER)
3983 return '*';
3984 else if (num == PLUS_REGISTER)
3985 return '+';
3986#endif
3987 else
3988 {
3989#ifdef EBCDIC
3990 int i;
3991
3992 /* EBCDIC is really braindead ... */
3993 i = 'a' + (num - 10);
3994 if (i > 'i')
3995 i += 7;
3996 if (i > 'r')
3997 i += 8;
3998 return i;
3999#else
4000 return num + 'a' - 10;
4001#endif
4002 }
4003}
4004
4005/*
4006 * ":dis" and ":registers": Display the contents of the yank registers.
4007 */
4008 void
4009ex_display(eap)
4010 exarg_T *eap;
4011{
4012 int i, n;
4013 long j;
4014 char_u *p;
4015 struct yankreg *yb;
4016 int name;
4017 int attr;
4018 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004019#ifdef FEAT_MBYTE
4020 int clen;
4021#else
4022# define clen 1
4023#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024
4025 if (arg != NULL && *arg == NUL)
4026 arg = NULL;
4027 attr = hl_attr(HLF_8);
4028
4029 /* Highlight title */
4030 MSG_PUTS_TITLE(_("\n--- Registers ---"));
4031 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
4032 {
4033 name = get_register_name(i);
Bram Moolenaar0818b872010-11-24 14:28:58 +01004034 if (arg != NULL && vim_strchr(arg, name) == NULL
4035#ifdef ONE_CLIPBOARD
4036 /* Star register and plus register contain the same thing. */
4037 && (name != '*' || vim_strchr(arg, '+') == NULL)
4038#endif
4039 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 continue; /* did not ask for this register */
4041
4042#ifdef FEAT_CLIPBOARD
4043 /* Adjust register name for "unnamed" in 'clipboard'.
4044 * When it's a clipboard register, fill it with the current contents
4045 * of the clipboard. */
4046 adjust_clip_reg(&name);
4047 (void)may_get_selection(name);
4048#endif
4049
4050 if (i == -1)
4051 {
4052 if (y_previous != NULL)
4053 yb = y_previous;
4054 else
4055 yb = &(y_regs[0]);
4056 }
4057 else
4058 yb = &(y_regs[i]);
Bram Moolenaarcde547a2009-11-17 11:43:06 +00004059
4060#ifdef FEAT_EVAL
4061 if (name == MB_TOLOWER(redir_reg)
4062 || (redir_reg == '"' && yb == y_previous))
4063 continue; /* do not list register being written to, the
4064 * pointer can be freed */
4065#endif
4066
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 if (yb->y_array != NULL)
4068 {
4069 msg_putchar('\n');
4070 msg_putchar('"');
4071 msg_putchar(name);
4072 MSG_PUTS(" ");
4073
4074 n = (int)Columns - 6;
4075 for (j = 0; j < yb->y_size && n > 1; ++j)
4076 {
4077 if (j)
4078 {
4079 MSG_PUTS_ATTR("^J", attr);
4080 n -= 2;
4081 }
4082 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4083 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004085 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004086#endif
4087 msg_outtrans_len(p, clen);
4088#ifdef FEAT_MBYTE
4089 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090#endif
4091 }
4092 }
4093 if (n > 1 && yb->y_type == MLINE)
4094 MSG_PUTS_ATTR("^J", attr);
4095 out_flush(); /* show one line at a time */
4096 }
4097 ui_breakcheck();
4098 }
4099
4100 /*
4101 * display last inserted text
4102 */
4103 if ((p = get_last_insert()) != NULL
4104 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4105 {
4106 MSG_PUTS("\n\". ");
4107 dis_msg(p, TRUE);
4108 }
4109
4110 /*
4111 * display last command line
4112 */
4113 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4114 && !got_int)
4115 {
4116 MSG_PUTS("\n\": ");
4117 dis_msg(last_cmdline, FALSE);
4118 }
4119
4120 /*
4121 * display current file name
4122 */
4123 if (curbuf->b_fname != NULL
4124 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4125 {
4126 MSG_PUTS("\n\"% ");
4127 dis_msg(curbuf->b_fname, FALSE);
4128 }
4129
4130 /*
4131 * display alternate file name
4132 */
4133 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4134 {
4135 char_u *fname;
4136 linenr_T dummy;
4137
4138 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4139 {
4140 MSG_PUTS("\n\"# ");
4141 dis_msg(fname, FALSE);
4142 }
4143 }
4144
4145 /*
4146 * display last search pattern
4147 */
4148 if (last_search_pat() != NULL
4149 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4150 {
4151 MSG_PUTS("\n\"/ ");
4152 dis_msg(last_search_pat(), FALSE);
4153 }
4154
4155#ifdef FEAT_EVAL
4156 /*
4157 * display last used expression
4158 */
4159 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4160 && !got_int)
4161 {
4162 MSG_PUTS("\n\"= ");
4163 dis_msg(expr_line, FALSE);
4164 }
4165#endif
4166}
4167
4168/*
4169 * display a string for do_dis()
4170 * truncate at end of screen line
4171 */
4172 static void
4173dis_msg(p, skip_esc)
4174 char_u *p;
4175 int skip_esc; /* if TRUE, ignore trailing ESC */
4176{
4177 int n;
4178#ifdef FEAT_MBYTE
4179 int l;
4180#endif
4181
4182 n = (int)Columns - 6;
4183 while (*p != NUL
4184 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4185 && (n -= ptr2cells(p)) >= 0)
4186 {
4187#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004188 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 {
4190 msg_outtrans_len(p, l);
4191 p += l;
4192 }
4193 else
4194#endif
4195 msg_outtrans_len(p++, 1);
4196 }
4197 ui_breakcheck();
4198}
4199
4200/*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004201 * Join 'count' lines (minimal 2) at cursor position.
4202 * When "save_undo" is TRUE save lines for undo first.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004204 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 */
4206 int
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004207do_join(count, insert_space, save_undo)
4208 long count;
4209 int insert_space;
4210 int save_undo;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211{
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004212 char_u *curr = NULL;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004213 char_u *curr_start = NULL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004214 char_u *cend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 char_u *newp;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004216 char_u *spaces; /* number of spaces inserted before a line */
Bram Moolenaard43848c2010-07-14 14:28:26 +02004217 int endcurr1 = NUL;
4218 int endcurr2 = NUL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004219 int currsize = 0; /* size of the current line */
4220 int sumsize = 0; /* size of the long new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 linenr_T t;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004222 colnr_T col = 0;
4223 int ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004225 if (save_undo && u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4226 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4227 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004229 /* Allocate an array to store the number of spaces inserted before each
4230 * line. We will use it to pre-compute the length of the new line and the
4231 * proper placement of each original line in the new one. */
4232 spaces = lalloc_clear((long_u)count, TRUE);
4233 if (spaces == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 return FAIL;
4235
4236 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004237 * Don't move anything, just compute the final line length
4238 * and setup the array of space strings lengths
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004240 for (t = 0; t < count; ++t)
4241 {
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004242 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004243 if (insert_space && t > 0)
4244 {
4245 curr = skipwhite(curr);
4246 if (*curr != ')' && currsize != 0 && endcurr1 != TAB
4247#ifdef FEAT_MBYTE
4248 && (!has_format_option(FO_MBYTE_JOIN)
4249 || (mb_ptr2char(curr) < 0x100 && endcurr1 < 0x100))
4250 && (!has_format_option(FO_MBYTE_JOIN2)
4251 || mb_ptr2char(curr) < 0x100 || endcurr1 < 0x100)
4252#endif
4253 )
4254 {
4255 /* don't add a space if the line is ending in a space */
4256 if (endcurr1 == ' ')
4257 endcurr1 = endcurr2;
4258 else
4259 ++spaces[t];
4260 /* extra space when 'joinspaces' set and line ends in '.' */
4261 if ( p_js
4262 && (endcurr1 == '.'
4263 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4264 && (endcurr1 == '?' || endcurr1 == '!'))))
4265 ++spaces[t];
4266 }
4267 }
4268 currsize = (int)STRLEN(curr);
4269 sumsize += currsize + spaces[t];
4270 endcurr1 = endcurr2 = NUL;
4271 if (insert_space && currsize > 0)
4272 {
4273#ifdef FEAT_MBYTE
4274 if (has_mbyte)
4275 {
4276 cend = curr + currsize;
4277 mb_ptr_back(curr, cend);
4278 endcurr1 = (*mb_ptr2char)(cend);
4279 if (cend > curr)
4280 {
4281 mb_ptr_back(curr, cend);
4282 endcurr2 = (*mb_ptr2char)(cend);
4283 }
4284 }
4285 else
4286#endif
4287 {
4288 endcurr1 = *(curr + currsize - 1);
4289 if (currsize > 1)
4290 endcurr2 = *(curr + currsize - 2);
4291 }
4292 }
4293 line_breakcheck();
4294 if (got_int)
4295 {
4296 ret = FAIL;
4297 goto theend;
4298 }
4299 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004301 /* store the column position before last line */
4302 col = sumsize - currsize - spaces[count - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004304 /* allocate the space for the new line */
4305 newp = alloc_check((unsigned)(sumsize + 1));
4306 cend = newp + sumsize;
4307 *cend = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004309 /*
4310 * Move affected lines to the new long one.
4311 *
4312 * Move marks from each deleted line to the joined line, adjusting the
4313 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4314 * should not really be a problem.
4315 */
4316 for (t = count - 1; ; --t)
4317 {
4318 cend -= currsize;
4319 mch_memmove(cend, curr, (size_t)currsize);
4320 if (spaces[t] > 0)
4321 {
4322 cend -= spaces[t];
4323 copy_spaces(cend, (size_t)(spaces[t]));
4324 }
4325 mark_col_adjust(curwin->w_cursor.lnum + t, (colnr_T)0, (linenr_T)-t,
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004326 (long)(cend - newp + spaces[t] - (curr - curr_start)));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004327 if (t == 0)
4328 break;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004329 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004330 if (insert_space && t > 1)
4331 curr = skipwhite(curr);
4332 currsize = (int)STRLEN(curr);
4333 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4335
4336 /* Only report the change in the first line here, del_lines() will report
4337 * the deleted line. */
4338 changed_lines(curwin->w_cursor.lnum, currsize,
4339 curwin->w_cursor.lnum + 1, 0L);
4340
4341 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004342 * Delete following lines. To do this we move the cursor there
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343 * briefly, and then move it back. After del_lines() the cursor may
4344 * have moved up (last line deleted), so the current lnum is kept in t.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 */
4346 t = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 ++curwin->w_cursor.lnum;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004348 del_lines(count - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 curwin->w_cursor.lnum = t;
4350
4351 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004352 * Set the cursor column:
4353 * Vi compatible: use the column of the first join
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004354 * vim: use the column of the last join
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004356 curwin->w_cursor.col =
4357 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 check_cursor_col();
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004359
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360#ifdef FEAT_VIRTUALEDIT
4361 curwin->w_cursor.coladd = 0;
4362#endif
4363 curwin->w_set_curswant = TRUE;
4364
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004365theend:
4366 vim_free(spaces);
4367 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368}
4369
4370#ifdef FEAT_COMMENTS
4371/*
4372 * Return TRUE if the two comment leaders given are the same. "lnum" is
4373 * the first line. White-space is ignored. Note that the whole of
4374 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4375 */
4376 static int
4377same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
4378 linenr_T lnum;
4379 int leader1_len;
4380 char_u *leader1_flags;
4381 int leader2_len;
4382 char_u *leader2_flags;
4383{
4384 int idx1 = 0, idx2 = 0;
4385 char_u *p;
4386 char_u *line1;
4387 char_u *line2;
4388
4389 if (leader1_len == 0)
4390 return (leader2_len == 0);
4391
4392 /*
4393 * If first leader has 'f' flag, the lines can be joined only if the
4394 * second line does not have a leader.
4395 * If first leader has 'e' flag, the lines can never be joined.
4396 * If fist leader has 's' flag, the lines can only be joined if there is
4397 * some text after it and the second line has the 'm' flag.
4398 */
4399 if (leader1_flags != NULL)
4400 {
4401 for (p = leader1_flags; *p && *p != ':'; ++p)
4402 {
4403 if (*p == COM_FIRST)
4404 return (leader2_len == 0);
4405 if (*p == COM_END)
4406 return FALSE;
4407 if (*p == COM_START)
4408 {
4409 if (*(ml_get(lnum) + leader1_len) == NUL)
4410 return FALSE;
4411 if (leader2_flags == NULL || leader2_len == 0)
4412 return FALSE;
4413 for (p = leader2_flags; *p && *p != ':'; ++p)
4414 if (*p == COM_MIDDLE)
4415 return TRUE;
4416 return FALSE;
4417 }
4418 }
4419 }
4420
4421 /*
4422 * Get current line and next line, compare the leaders.
4423 * The first line has to be saved, only one line can be locked at a time.
4424 */
4425 line1 = vim_strsave(ml_get(lnum));
4426 if (line1 != NULL)
4427 {
4428 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4429 ;
4430 line2 = ml_get(lnum + 1);
4431 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4432 {
4433 if (!vim_iswhite(line2[idx2]))
4434 {
4435 if (line1[idx1++] != line2[idx2])
4436 break;
4437 }
4438 else
4439 while (vim_iswhite(line1[idx1]))
4440 ++idx1;
4441 }
4442 vim_free(line1);
4443 }
4444 return (idx2 == leader2_len && idx1 == leader1_len);
4445}
4446#endif
4447
4448/*
Bram Moolenaar66accae2012-01-10 13:44:27 +01004449 * Implementation of the format operator 'gq'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 */
4451 void
4452op_format(oap, keep_cursor)
4453 oparg_T *oap;
4454 int keep_cursor; /* keep cursor on same text char */
4455{
4456 long old_line_count = curbuf->b_ml.ml_line_count;
4457
4458 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4459 * can put it back there. */
4460 curwin->w_cursor = oap->cursor_start;
4461
4462 if (u_save((linenr_T)(oap->start.lnum - 1),
4463 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4464 return;
4465 curwin->w_cursor = oap->start;
4466
4467#ifdef FEAT_VISUAL
4468 if (oap->is_VIsual)
4469 /* When there is no change: need to remove the Visual selection */
4470 redraw_curbuf_later(INVERTED);
4471#endif
4472
4473 /* Set '[ mark at the start of the formatted area */
4474 curbuf->b_op_start = oap->start;
4475
4476 /* For "gw" remember the cursor position and put it back below (adjusted
4477 * for joined and split lines). */
4478 if (keep_cursor)
4479 saved_cursor = oap->cursor_start;
4480
Bram Moolenaar81a82092008-03-12 16:27:00 +00004481 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482
4483 /*
4484 * Leave the cursor at the first non-blank of the last formatted line.
4485 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4486 * line, so "." will do the next lines.
4487 */
4488 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4489 ++curwin->w_cursor.lnum;
4490 beginline(BL_WHITE | BL_FIX);
4491 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4492 msgmore(old_line_count);
4493
4494 /* put '] mark on the end of the formatted area */
4495 curbuf->b_op_end = curwin->w_cursor;
4496
4497 if (keep_cursor)
4498 {
4499 curwin->w_cursor = saved_cursor;
4500 saved_cursor.lnum = 0;
4501 }
4502
4503#ifdef FEAT_VISUAL
4504 if (oap->is_VIsual)
4505 {
4506 win_T *wp;
4507
4508 FOR_ALL_WINDOWS(wp)
4509 {
4510 if (wp->w_old_cursor_lnum != 0)
4511 {
4512 /* When lines have been inserted or deleted, adjust the end of
4513 * the Visual area to be redrawn. */
4514 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4515 wp->w_old_cursor_lnum += old_line_count;
4516 else
4517 wp->w_old_visual_lnum += old_line_count;
4518 }
4519 }
4520 }
4521#endif
4522}
4523
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004524#if defined(FEAT_EVAL) || defined(PROTO)
4525/*
4526 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4527 */
4528 void
4529op_formatexpr(oap)
4530 oparg_T *oap;
4531{
4532# ifdef FEAT_VISUAL
4533 if (oap->is_VIsual)
4534 /* When there is no change: need to remove the Visual selection */
4535 redraw_curbuf_later(INVERTED);
4536# endif
4537
Bram Moolenaar700303e2010-07-11 17:35:50 +02004538 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0)
4539 /* As documented: when 'formatexpr' returns non-zero fall back to
4540 * internal formatting. */
4541 op_format(oap, FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004542}
4543
4544 int
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004545fex_format(lnum, count, c)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004546 linenr_T lnum;
4547 long count;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004548 int c; /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004549{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004550 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4551 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004552 int r;
4553
4554 /*
4555 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004556 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004557 */
4558 set_vim_var_nr(VV_LNUM, lnum);
4559 set_vim_var_nr(VV_COUNT, count);
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004560 set_vim_var_char(c);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004561
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004562 /*
4563 * Evaluate the function.
4564 */
4565 if (use_sandbox)
4566 ++sandbox;
4567 r = eval_to_number(curbuf->b_p_fex);
4568 if (use_sandbox)
4569 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004570
4571 set_vim_var_string(VV_CHAR, NULL, -1);
4572
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004573 return r;
4574}
4575#endif
4576
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577/*
4578 * Format "line_count" lines, starting at the cursor position.
4579 * When "line_count" is negative, format until the end of the paragraph.
4580 * Lines after the cursor line are saved for undo, caller must have saved the
4581 * first line.
4582 */
4583 void
Bram Moolenaar81a82092008-03-12 16:27:00 +00004584format_lines(line_count, avoid_fex)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585 linenr_T line_count;
Bram Moolenaar81a82092008-03-12 16:27:00 +00004586 int avoid_fex; /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587{
4588 int max_len;
4589 int is_not_par; /* current line not part of parag. */
4590 int next_is_not_par; /* next line not part of paragraph */
4591 int is_end_par; /* at end of paragraph */
4592 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4593 int next_is_start_par = FALSE;
4594#ifdef FEAT_COMMENTS
4595 int leader_len = 0; /* leader len of current line */
4596 int next_leader_len; /* leader len of next line */
4597 char_u *leader_flags = NULL; /* flags for leader of current line */
4598 char_u *next_leader_flags; /* flags for leader of next line */
4599 int do_comments; /* format comments */
4600#endif
4601 int advance = TRUE;
4602 int second_indent = -1;
4603 int do_second_indent;
4604 int do_number_indent;
4605 int do_trail_white;
4606 int first_par_line = TRUE;
4607 int smd_save;
4608 long count;
4609 int need_set_indent = TRUE; /* set indent of next paragraph */
4610 int force_format = FALSE;
4611 int old_State = State;
4612
4613 /* length of a line to force formatting: 3 * 'tw' */
4614 max_len = comp_textwidth(TRUE) * 3;
4615
4616 /* check for 'q', '2' and '1' in 'formatoptions' */
4617#ifdef FEAT_COMMENTS
4618 do_comments = has_format_option(FO_Q_COMS);
4619#endif
4620 do_second_indent = has_format_option(FO_Q_SECOND);
4621 do_number_indent = has_format_option(FO_Q_NUMBER);
4622 do_trail_white = has_format_option(FO_WHITE_PAR);
4623
4624 /*
4625 * Get info about the previous and current line.
4626 */
4627 if (curwin->w_cursor.lnum > 1)
4628 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4629#ifdef FEAT_COMMENTS
4630 , &leader_len, &leader_flags, do_comments
4631#endif
4632 );
4633 else
4634 is_not_par = TRUE;
4635 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4636#ifdef FEAT_COMMENTS
4637 , &next_leader_len, &next_leader_flags, do_comments
4638#endif
4639 );
4640 is_end_par = (is_not_par || next_is_not_par);
4641 if (!is_end_par && do_trail_white)
4642 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4643
4644 curwin->w_cursor.lnum--;
4645 for (count = line_count; count != 0 && !got_int; --count)
4646 {
4647 /*
4648 * Advance to next paragraph.
4649 */
4650 if (advance)
4651 {
4652 curwin->w_cursor.lnum++;
4653 prev_is_end_par = is_end_par;
4654 is_not_par = next_is_not_par;
4655#ifdef FEAT_COMMENTS
4656 leader_len = next_leader_len;
4657 leader_flags = next_leader_flags;
4658#endif
4659 }
4660
4661 /*
4662 * The last line to be formatted.
4663 */
4664 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4665 {
4666 next_is_not_par = TRUE;
4667#ifdef FEAT_COMMENTS
4668 next_leader_len = 0;
4669 next_leader_flags = NULL;
4670#endif
4671 }
4672 else
4673 {
4674 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4675#ifdef FEAT_COMMENTS
4676 , &next_leader_len, &next_leader_flags, do_comments
4677#endif
4678 );
4679 if (do_number_indent)
4680 next_is_start_par =
4681 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4682 }
4683 advance = TRUE;
4684 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4685 if (!is_end_par && do_trail_white)
4686 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4687
4688 /*
4689 * Skip lines that are not in a paragraph.
4690 */
4691 if (is_not_par)
4692 {
4693 if (line_count < 0)
4694 break;
4695 }
4696 else
4697 {
4698 /*
4699 * For the first line of a paragraph, check indent of second line.
4700 * Don't do this for comments and empty lines.
4701 */
4702 if (first_par_line
4703 && (do_second_indent || do_number_indent)
4704 && prev_is_end_par
4705 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4706#ifdef FEAT_COMMENTS
4707 && leader_len == 0
4708 && next_leader_len == 0
4709#endif
4710 )
4711 {
4712 if (do_second_indent
4713 && !lineempty(curwin->w_cursor.lnum + 1))
4714 second_indent = get_indent_lnum(curwin->w_cursor.lnum + 1);
4715 else if (do_number_indent)
4716 second_indent = get_number_indent(curwin->w_cursor.lnum);
4717 }
4718
4719 /*
4720 * When the comment leader changes, it's the end of the paragraph.
4721 */
4722 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4723#ifdef FEAT_COMMENTS
4724 || !same_leader(curwin->w_cursor.lnum,
4725 leader_len, leader_flags,
4726 next_leader_len, next_leader_flags)
4727#endif
4728 )
4729 is_end_par = TRUE;
4730
4731 /*
4732 * If we have got to the end of a paragraph, or the line is
4733 * getting long, format it.
4734 */
4735 if (is_end_par || force_format)
4736 {
4737 if (need_set_indent)
4738 /* replace indent in first line with minimal number of
4739 * tabs and spaces, according to current options */
4740 (void)set_indent(get_indent(), SIN_CHANGED);
4741
4742 /* put cursor on last non-space */
4743 State = NORMAL; /* don't go past end-of-line */
4744 coladvance((colnr_T)MAXCOL);
4745 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
4746 dec_cursor();
4747
4748 /* do the formatting, without 'showmode' */
4749 State = INSERT; /* for open_line() */
4750 smd_save = p_smd;
4751 p_smd = FALSE;
4752 insertchar(NUL, INSCHAR_FORMAT
4753#ifdef FEAT_COMMENTS
4754 + (do_comments ? INSCHAR_DO_COM : 0)
4755#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00004756 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 State = old_State;
4758 p_smd = smd_save;
4759 second_indent = -1;
4760 /* at end of par.: need to set indent of next par. */
4761 need_set_indent = is_end_par;
4762 if (is_end_par)
4763 {
4764 /* When called with a negative line count, break at the
4765 * end of the paragraph. */
4766 if (line_count < 0)
4767 break;
4768 first_par_line = TRUE;
4769 }
4770 force_format = FALSE;
4771 }
4772
4773 /*
4774 * When still in same paragraph, join the lines together. But
4775 * first delete the comment leader from the second line.
4776 */
4777 if (!is_end_par)
4778 {
4779 advance = FALSE;
4780 curwin->w_cursor.lnum++;
4781 curwin->w_cursor.col = 0;
4782 if (line_count < 0 && u_save_cursor() == FAIL)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004783 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784#ifdef FEAT_COMMENTS
Bram Moolenaare3226be2005-12-18 22:10:00 +00004785 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 if (next_leader_len > 0)
4787 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
4788 (long)-next_leader_len);
4789#endif
4790 curwin->w_cursor.lnum--;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004791 if (do_join(2, TRUE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 {
4793 beep_flush();
4794 break;
4795 }
4796 first_par_line = FALSE;
4797 /* If the line is getting long, format it next time */
4798 if (STRLEN(ml_get_curline()) > (size_t)max_len)
4799 force_format = TRUE;
4800 else
4801 force_format = FALSE;
4802 }
4803 }
4804 line_breakcheck();
4805 }
4806}
4807
4808/*
4809 * Return TRUE if line "lnum" ends in a white character.
4810 */
4811 static int
4812ends_in_white(lnum)
4813 linenr_T lnum;
4814{
4815 char_u *s = ml_get(lnum);
4816 size_t l;
4817
4818 if (*s == NUL)
4819 return FALSE;
4820 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
4821 * invocation may call function multiple times". */
4822 l = STRLEN(s) - 1;
4823 return vim_iswhite(s[l]);
4824}
4825
4826/*
4827 * Blank lines, and lines containing only the comment leader, are left
4828 * untouched by the formatting. The function returns TRUE in this
4829 * case. It also returns TRUE when a line starts with the end of a comment
4830 * ('e' in comment flags), so that this line is skipped, and not joined to the
4831 * previous line. A new paragraph starts after a blank line, or when the
4832 * comment leader changes -- webb.
4833 */
4834#ifdef FEAT_COMMENTS
4835 static int
4836fmt_check_par(lnum, leader_len, leader_flags, do_comments)
4837 linenr_T lnum;
4838 int *leader_len;
4839 char_u **leader_flags;
4840 int do_comments;
4841{
4842 char_u *flags = NULL; /* init for GCC */
4843 char_u *ptr;
4844
4845 ptr = ml_get(lnum);
4846 if (do_comments)
4847 *leader_len = get_leader_len(ptr, leader_flags, FALSE);
4848 else
4849 *leader_len = 0;
4850
4851 if (*leader_len > 0)
4852 {
4853 /*
4854 * Search for 'e' flag in comment leader flags.
4855 */
4856 flags = *leader_flags;
4857 while (*flags && *flags != ':' && *flags != COM_END)
4858 ++flags;
4859 }
4860
4861 return (*skipwhite(ptr + *leader_len) == NUL
4862 || (*leader_len > 0 && *flags == COM_END)
4863 || startPS(lnum, NUL, FALSE));
4864}
4865#else
4866 static int
4867fmt_check_par(lnum)
4868 linenr_T lnum;
4869{
4870 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
4871}
4872#endif
4873
4874/*
4875 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
4876 * previous line is in the same paragraph. Used for auto-formatting.
4877 */
4878 int
4879paragraph_start(lnum)
4880 linenr_T lnum;
4881{
4882 char_u *p;
4883#ifdef FEAT_COMMENTS
4884 int leader_len = 0; /* leader len of current line */
4885 char_u *leader_flags = NULL; /* flags for leader of current line */
4886 int next_leader_len; /* leader len of next line */
4887 char_u *next_leader_flags; /* flags for leader of next line */
4888 int do_comments; /* format comments */
4889#endif
4890
4891 if (lnum <= 1)
4892 return TRUE; /* start of the file */
4893
4894 p = ml_get(lnum - 1);
4895 if (*p == NUL)
4896 return TRUE; /* after empty line */
4897
4898#ifdef FEAT_COMMENTS
4899 do_comments = has_format_option(FO_Q_COMS);
4900#endif
4901 if (fmt_check_par(lnum - 1
4902#ifdef FEAT_COMMENTS
4903 , &leader_len, &leader_flags, do_comments
4904#endif
4905 ))
4906 return TRUE; /* after non-paragraph line */
4907
4908 if (fmt_check_par(lnum
4909#ifdef FEAT_COMMENTS
4910 , &next_leader_len, &next_leader_flags, do_comments
4911#endif
4912 ))
4913 return TRUE; /* "lnum" is not a paragraph line */
4914
4915 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
4916 return TRUE; /* missing trailing space in previous line. */
4917
4918 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
4919 return TRUE; /* numbered item starts in "lnum". */
4920
4921#ifdef FEAT_COMMENTS
4922 if (!same_leader(lnum - 1, leader_len, leader_flags,
4923 next_leader_len, next_leader_flags))
4924 return TRUE; /* change of comment leader. */
4925#endif
4926
4927 return FALSE;
4928}
4929
4930#ifdef FEAT_VISUAL
4931/*
4932 * prepare a few things for block mode yank/delete/tilde
4933 *
4934 * for delete:
4935 * - textlen includes the first/last char to be (partly) deleted
4936 * - start/endspaces is the number of columns that are taken by the
4937 * first/last deleted char minus the number of columns that have to be
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +00004938 * deleted.
4939 * for yank and tilde:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 * - textlen includes the first/last char to be wholly yanked
4941 * - start/endspaces is the number of columns of the first/last yanked char
4942 * that are to be yanked.
4943 */
4944 static void
4945block_prep(oap, bdp, lnum, is_del)
4946 oparg_T *oap;
4947 struct block_def *bdp;
4948 linenr_T lnum;
4949 int is_del;
4950{
4951 int incr = 0;
4952 char_u *pend;
4953 char_u *pstart;
4954 char_u *line;
4955 char_u *prev_pstart;
4956 char_u *prev_pend;
4957
4958 bdp->startspaces = 0;
4959 bdp->endspaces = 0;
4960 bdp->textlen = 0;
4961 bdp->start_vcol = 0;
4962 bdp->end_vcol = 0;
4963#ifdef FEAT_VISUALEXTRA
4964 bdp->is_short = FALSE;
4965 bdp->is_oneChar = FALSE;
4966 bdp->pre_whitesp = 0;
4967 bdp->pre_whitesp_c = 0;
4968 bdp->end_char_vcols = 0;
4969#endif
4970 bdp->start_char_vcols = 0;
4971
4972 line = ml_get(lnum);
4973 pstart = line;
4974 prev_pstart = line;
4975 while (bdp->start_vcol < oap->start_vcol && *pstart)
4976 {
4977 /* Count a tab for what it's worth (if list mode not on) */
4978 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
4979 bdp->start_vcol += incr;
4980#ifdef FEAT_VISUALEXTRA
4981 if (vim_iswhite(*pstart))
4982 {
4983 bdp->pre_whitesp += incr;
4984 bdp->pre_whitesp_c++;
4985 }
4986 else
4987 {
4988 bdp->pre_whitesp = 0;
4989 bdp->pre_whitesp_c = 0;
4990 }
4991#endif
4992 prev_pstart = pstart;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004993 mb_ptr_adv(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 }
4995 bdp->start_char_vcols = incr;
4996 if (bdp->start_vcol < oap->start_vcol) /* line too short */
4997 {
4998 bdp->end_vcol = bdp->start_vcol;
4999#ifdef FEAT_VISUALEXTRA
5000 bdp->is_short = TRUE;
5001#endif
5002 if (!is_del || oap->op_type == OP_APPEND)
5003 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
5004 }
5005 else
5006 {
5007 /* notice: this converts partly selected Multibyte characters to
5008 * spaces, too. */
5009 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
5010 if (is_del && bdp->startspaces)
5011 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
5012 pend = pstart;
5013 bdp->end_vcol = bdp->start_vcol;
5014 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
5015 {
5016#ifdef FEAT_VISUALEXTRA
5017 bdp->is_oneChar = TRUE;
5018#endif
5019 if (oap->op_type == OP_INSERT)
5020 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5021 else if (oap->op_type == OP_APPEND)
5022 {
5023 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
5024 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5025 }
5026 else
5027 {
5028 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
5029 if (is_del && oap->op_type != OP_LSHIFT)
5030 {
5031 /* just putting the sum of those two into
5032 * bdp->startspaces doesn't work for Visual replace,
5033 * so we have to split the tab in two */
5034 bdp->startspaces = bdp->start_char_vcols
5035 - (bdp->start_vcol - oap->start_vcol);
5036 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5037 }
5038 }
5039 }
5040 else
5041 {
5042 prev_pend = pend;
5043 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
5044 {
5045 /* Count a tab for what it's worth (if list mode not on) */
5046 prev_pend = pend;
5047 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
5048 bdp->end_vcol += incr;
5049 }
5050 if (bdp->end_vcol <= oap->end_vcol
5051 && (!is_del
5052 || oap->op_type == OP_APPEND
5053 || oap->op_type == OP_REPLACE)) /* line too short */
5054 {
5055#ifdef FEAT_VISUALEXTRA
5056 bdp->is_short = TRUE;
5057#endif
5058 /* Alternative: include spaces to fill up the block.
5059 * Disadvantage: can lead to trailing spaces when the line is
5060 * short where the text is put */
5061 /* if (!is_del || oap->op_type == OP_APPEND) */
5062 if (oap->op_type == OP_APPEND || virtual_op)
5063 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00005064 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 else
5066 bdp->endspaces = 0; /* replace doesn't add characters */
5067 }
5068 else if (bdp->end_vcol > oap->end_vcol)
5069 {
5070 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5071 if (!is_del && bdp->endspaces)
5072 {
5073 bdp->endspaces = incr - bdp->endspaces;
5074 if (pend != pstart)
5075 pend = prev_pend;
5076 }
5077 }
5078 }
5079#ifdef FEAT_VISUALEXTRA
5080 bdp->end_char_vcols = incr;
5081#endif
5082 if (is_del && bdp->startspaces)
5083 pstart = prev_pstart;
5084 bdp->textlen = (int)(pend - pstart);
5085 }
5086 bdp->textcol = (colnr_T) (pstart - line);
5087 bdp->textstart = pstart;
5088}
5089#endif /* FEAT_VISUAL */
5090
5091#ifdef FEAT_RIGHTLEFT
5092static void reverse_line __ARGS((char_u *s));
5093
5094 static void
5095reverse_line(s)
5096 char_u *s;
5097{
5098 int i, j;
5099 char_u c;
5100
5101 if ((i = (int)STRLEN(s) - 1) <= 0)
5102 return;
5103
5104 curwin->w_cursor.col = i - curwin->w_cursor.col;
5105 for (j = 0; j < i; j++, i--)
5106 {
5107 c = s[i]; s[i] = s[j]; s[j] = c;
5108 }
5109}
5110
5111# define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
5112#else
5113# define RLADDSUBFIX(ptr)
5114#endif
5115
5116/*
5117 * add or subtract 'Prenum1' from a number in a line
5118 * 'command' is CTRL-A for add, CTRL-X for subtract
5119 *
5120 * return FAIL for failure, OK otherwise
5121 */
5122 int
5123do_addsub(command, Prenum1)
5124 int command;
5125 linenr_T Prenum1;
5126{
5127 int col;
5128 char_u *buf1;
5129 char_u buf2[NUMBUFLEN];
5130 int hex; /* 'X' or 'x': hex; '0': octal */
5131 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005132 unsigned long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 long_u oldn;
5134 char_u *ptr;
5135 int c;
5136 int length = 0; /* character length of the number */
5137 int todel;
5138 int dohex;
5139 int dooct;
5140 int doalp;
5141 int firstdigit;
5142 int negative;
5143 int subtract;
5144
5145 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5146 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
5147 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5148
5149 ptr = ml_get_curline();
5150 RLADDSUBFIX(ptr);
5151
5152 /*
5153 * First check if we are on a hexadecimal number, after the "0x".
5154 */
5155 col = curwin->w_cursor.col;
5156 if (dohex)
5157 while (col > 0 && vim_isxdigit(ptr[col]))
5158 --col;
5159 if ( dohex
5160 && col > 0
5161 && (ptr[col] == 'X'
5162 || ptr[col] == 'x')
5163 && ptr[col - 1] == '0'
5164 && vim_isxdigit(ptr[col + 1]))
5165 {
5166 /*
5167 * Found hexadecimal number, move to its start.
5168 */
5169 --col;
5170 }
5171 else
5172 {
5173 /*
5174 * Search forward and then backward to find the start of number.
5175 */
5176 col = curwin->w_cursor.col;
5177
5178 while (ptr[col] != NUL
5179 && !vim_isdigit(ptr[col])
5180 && !(doalp && ASCII_ISALPHA(ptr[col])))
5181 ++col;
5182
5183 while (col > 0
5184 && vim_isdigit(ptr[col - 1])
5185 && !(doalp && ASCII_ISALPHA(ptr[col])))
5186 --col;
5187 }
5188
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189 /*
5190 * If a number was found, and saving for undo works, replace the number.
5191 */
5192 firstdigit = ptr[col];
5193 RLADDSUBFIX(ptr);
5194 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5195 || u_save_cursor() != OK)
5196 {
5197 beep_flush();
5198 return FAIL;
5199 }
5200
5201 /* get ptr again, because u_save() may have changed it */
5202 ptr = ml_get_curline();
5203 RLADDSUBFIX(ptr);
5204
5205 if (doalp && ASCII_ISALPHA(firstdigit))
5206 {
5207 /* decrement or increment alphabetic character */
5208 if (command == Ctrl_X)
5209 {
5210 if (CharOrd(firstdigit) < Prenum1)
5211 {
5212 if (isupper(firstdigit))
5213 firstdigit = 'A';
5214 else
5215 firstdigit = 'a';
5216 }
5217 else
5218#ifdef EBCDIC
5219 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5220#else
5221 firstdigit -= Prenum1;
5222#endif
5223 }
5224 else
5225 {
5226 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5227 {
5228 if (isupper(firstdigit))
5229 firstdigit = 'Z';
5230 else
5231 firstdigit = 'z';
5232 }
5233 else
5234#ifdef EBCDIC
5235 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5236#else
5237 firstdigit += Prenum1;
5238#endif
5239 }
5240 curwin->w_cursor.col = col;
5241 (void)del_char(FALSE);
5242 ins_char(firstdigit);
5243 }
5244 else
5245 {
5246 negative = FALSE;
5247 if (col > 0 && ptr[col - 1] == '-') /* negative number */
5248 {
5249 --col;
5250 negative = TRUE;
5251 }
5252
5253 /* get the number value (unsigned) */
5254 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
5255
5256 /* ignore leading '-' for hex and octal numbers */
5257 if (hex && negative)
5258 {
5259 ++col;
5260 --length;
5261 negative = FALSE;
5262 }
5263
5264 /* add or subtract */
5265 subtract = FALSE;
5266 if (command == Ctrl_X)
5267 subtract ^= TRUE;
5268 if (negative)
5269 subtract ^= TRUE;
5270
5271 oldn = n;
5272 if (subtract)
5273 n -= (unsigned long)Prenum1;
5274 else
5275 n += (unsigned long)Prenum1;
5276
5277 /* handle wraparound for decimal numbers */
5278 if (!hex)
5279 {
5280 if (subtract)
5281 {
5282 if (n > oldn)
5283 {
5284 n = 1 + (n ^ (unsigned long)-1);
5285 negative ^= TRUE;
5286 }
5287 }
5288 else /* add */
5289 {
5290 if (n < oldn)
5291 {
5292 n = (n ^ (unsigned long)-1);
5293 negative ^= TRUE;
5294 }
5295 }
5296 if (n == 0)
5297 negative = FALSE;
5298 }
5299
5300 /*
5301 * Delete the old number.
5302 */
5303 curwin->w_cursor.col = col;
5304 todel = length;
5305 c = gchar_cursor();
5306 /*
5307 * Don't include the '-' in the length, only the length of the part
5308 * after it is kept the same.
5309 */
5310 if (c == '-')
5311 --length;
5312 while (todel-- > 0)
5313 {
5314 if (c < 0x100 && isalpha(c))
5315 {
5316 if (isupper(c))
5317 hexupper = TRUE;
5318 else
5319 hexupper = FALSE;
5320 }
5321 /* del_char() will mark line needing displaying */
5322 (void)del_char(FALSE);
5323 c = gchar_cursor();
5324 }
5325
5326 /*
5327 * Prepare the leading characters in buf1[].
5328 * When there are many leading zeros it could be very long. Allocate
5329 * a bit too much.
5330 */
5331 buf1 = alloc((unsigned)length + NUMBUFLEN);
5332 if (buf1 == NULL)
5333 return FAIL;
5334 ptr = buf1;
5335 if (negative)
5336 {
5337 *ptr++ = '-';
5338 }
5339 if (hex)
5340 {
5341 *ptr++ = '0';
5342 --length;
5343 }
5344 if (hex == 'x' || hex == 'X')
5345 {
5346 *ptr++ = hex;
5347 --length;
5348 }
5349
5350 /*
5351 * Put the number characters in buf2[].
5352 */
5353 if (hex == 0)
5354 sprintf((char *)buf2, "%lu", n);
5355 else if (hex == '0')
5356 sprintf((char *)buf2, "%lo", n);
5357 else if (hex && hexupper)
5358 sprintf((char *)buf2, "%lX", n);
5359 else
5360 sprintf((char *)buf2, "%lx", n);
5361 length -= (int)STRLEN(buf2);
5362
5363 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005364 * Adjust number of zeros to the new number of digits, so the
5365 * total length of the number remains the same.
5366 * Don't do this when
5367 * the result may look like an octal number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005369 if (firstdigit == '0' && !(dooct && hex == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 while (length-- > 0)
5371 *ptr++ = '0';
5372 *ptr = NUL;
5373 STRCAT(buf1, buf2);
5374 ins_str(buf1); /* insert the new number */
5375 vim_free(buf1);
5376 }
5377 --curwin->w_cursor.col;
5378 curwin->w_set_curswant = TRUE;
5379#ifdef FEAT_RIGHTLEFT
5380 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
5381 RLADDSUBFIX(ptr);
5382#endif
5383 return OK;
5384}
5385
5386#ifdef FEAT_VIMINFO
5387 int
5388read_viminfo_register(virp, force)
5389 vir_T *virp;
5390 int force;
5391{
5392 int eof;
5393 int do_it = TRUE;
5394 int size;
5395 int limit;
5396 int i;
5397 int set_prev = FALSE;
5398 char_u *str;
5399 char_u **array = NULL;
5400
5401 /* We only get here (hopefully) if line[0] == '"' */
5402 str = virp->vir_line + 1;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005403
5404 /* If the line starts with "" this is the y_previous register. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405 if (*str == '"')
5406 {
5407 set_prev = TRUE;
5408 str++;
5409 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00005410
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411 if (!ASCII_ISALNUM(*str) && *str != '-')
5412 {
5413 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5414 return TRUE; /* too many errors, pretend end-of-file */
5415 do_it = FALSE;
5416 }
5417 get_yank_register(*str++, FALSE);
5418 if (!force && y_current->y_array != NULL)
5419 do_it = FALSE;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005420
5421 if (*str == '@')
5422 {
5423 /* "x@: register x used for @@ */
5424 if (force || execreg_lastc == NUL)
5425 execreg_lastc = str[-1];
5426 }
5427
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 size = 0;
5429 limit = 100; /* Optimized for registers containing <= 100 lines */
5430 if (do_it)
5431 {
5432 if (set_prev)
5433 y_previous = y_current;
5434 vim_free(y_current->y_array);
5435 array = y_current->y_array =
5436 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
Bram Moolenaar42b94362009-05-26 16:12:37 +00005437 str = skipwhite(skiptowhite(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 if (STRNCMP(str, "CHAR", 4) == 0)
5439 y_current->y_type = MCHAR;
5440#ifdef FEAT_VISUAL
5441 else if (STRNCMP(str, "BLOCK", 5) == 0)
5442 y_current->y_type = MBLOCK;
5443#endif
5444 else
5445 y_current->y_type = MLINE;
5446 /* get the block width; if it's missing we get a zero, which is OK */
5447 str = skipwhite(skiptowhite(str));
5448#ifdef FEAT_VISUAL
5449 y_current->y_width = getdigits(&str);
5450#else
5451 (void)getdigits(&str);
5452#endif
5453 }
5454
5455 while (!(eof = viminfo_readline(virp))
5456 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5457 {
5458 if (do_it)
5459 {
5460 if (size >= limit)
5461 {
5462 y_current->y_array = (char_u **)
5463 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
5464 for (i = 0; i < limit; i++)
5465 y_current->y_array[i] = array[i];
5466 vim_free(array);
5467 limit *= 2;
5468 array = y_current->y_array;
5469 }
5470 str = viminfo_readstring(virp, 1, TRUE);
5471 if (str != NULL)
5472 array[size++] = str;
5473 else
5474 do_it = FALSE;
5475 }
5476 }
5477 if (do_it)
5478 {
5479 if (size == 0)
5480 {
5481 vim_free(array);
5482 y_current->y_array = NULL;
5483 }
5484 else if (size < limit)
5485 {
5486 y_current->y_array =
5487 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
5488 for (i = 0; i < size; i++)
5489 y_current->y_array[i] = array[i];
5490 vim_free(array);
5491 }
5492 y_current->y_size = size;
5493 }
5494 return eof;
5495}
5496
5497 void
5498write_viminfo_registers(fp)
5499 FILE *fp;
5500{
5501 int i, j;
5502 char_u *type;
5503 char_u c;
5504 int num_lines;
5505 int max_num_lines;
5506 int max_kbyte;
5507 long len;
5508
Bram Moolenaar64404472010-06-26 06:24:45 +02005509 fputs(_("\n# Registers:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510
5511 /* Get '<' value, use old '"' value if '<' is not found. */
5512 max_num_lines = get_viminfo_parameter('<');
5513 if (max_num_lines < 0)
5514 max_num_lines = get_viminfo_parameter('"');
5515 if (max_num_lines == 0)
5516 return;
5517 max_kbyte = get_viminfo_parameter('s');
5518 if (max_kbyte == 0)
5519 return;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005520
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 for (i = 0; i < NUM_REGISTERS; i++)
5522 {
5523 if (y_regs[i].y_array == NULL)
5524 continue;
5525#ifdef FEAT_CLIPBOARD
5526 /* Skip '*'/'+' register, we don't want them back next time */
5527 if (i == STAR_REGISTER || i == PLUS_REGISTER)
5528 continue;
5529#endif
5530#ifdef FEAT_DND
5531 /* Neither do we want the '~' register */
5532 if (i == TILDE_REGISTER)
5533 continue;
5534#endif
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005535 /* Skip empty registers. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 num_lines = y_regs[i].y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005537 if (num_lines == 0
5538 || (num_lines == 1 && y_regs[i].y_type == MCHAR
Bram Moolenaar64404472010-06-26 06:24:45 +02005539 && *y_regs[i].y_array[0] == NUL))
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005540 continue;
5541
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 if (max_kbyte > 0)
5543 {
5544 /* Skip register if there is more text than the maximum size. */
5545 len = 0;
5546 for (j = 0; j < num_lines; j++)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005547 len += (long)STRLEN(y_regs[i].y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548 if (len > (long)max_kbyte * 1024L)
5549 continue;
5550 }
5551
5552 switch (y_regs[i].y_type)
5553 {
5554 case MLINE:
5555 type = (char_u *)"LINE";
5556 break;
5557 case MCHAR:
5558 type = (char_u *)"CHAR";
5559 break;
5560#ifdef FEAT_VISUAL
5561 case MBLOCK:
5562 type = (char_u *)"BLOCK";
5563 break;
5564#endif
5565 default:
5566 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005567 y_regs[i].y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 emsg(IObuff);
5569 type = (char_u *)"LINE";
5570 break;
5571 }
5572 if (y_previous == &y_regs[i])
5573 fprintf(fp, "\"");
5574 c = get_register_name(i);
Bram Moolenaar42b94362009-05-26 16:12:37 +00005575 fprintf(fp, "\"%c", c);
5576 if (c == execreg_lastc)
5577 fprintf(fp, "@");
5578 fprintf(fp, "\t%s\t%d\n", type,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579#ifdef FEAT_VISUAL
5580 (int)y_regs[i].y_width
5581#else
5582 0
5583#endif
5584 );
5585
5586 /* If max_num_lines < 0, then we save ALL the lines in the register */
5587 if (max_num_lines > 0 && num_lines > max_num_lines)
5588 num_lines = max_num_lines;
5589 for (j = 0; j < num_lines; j++)
5590 {
5591 putc('\t', fp);
5592 viminfo_writestring(fp, y_regs[i].y_array[j]);
5593 }
5594 }
5595}
5596#endif /* FEAT_VIMINFO */
5597
5598#if defined(FEAT_CLIPBOARD) || defined(PROTO)
5599/*
5600 * SELECTION / PRIMARY ('*')
5601 *
5602 * Text selection stuff that uses the GUI selection register '*'. When using a
5603 * GUI this may be text from another window, otherwise it is the last text we
5604 * had highlighted with VIsual mode. With mouse support, clicking the middle
5605 * button performs the paste, otherwise you will need to do <"*p>. "
5606 * If not under X, it is synonymous with the clipboard register '+'.
5607 *
5608 * X CLIPBOARD ('+')
5609 *
5610 * Text selection stuff that uses the GUI clipboard register '+'.
5611 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5612 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5613 * otherwise you will need to do <"+p>. "
5614 * If not under X, it is synonymous with the selection register '*'.
5615 */
5616
5617/*
5618 * Routine to export any final X selection we had to the environment
5619 * so that the text is still available after vim has exited. X selections
5620 * only exist while the owning application exists, so we write to the
5621 * permanent (while X runs) store CUT_BUFFER0.
5622 * Dump the CLIPBOARD selection if we own it (it's logically the more
5623 * 'permanent' of the two), otherwise the PRIMARY one.
5624 * For now, use a hard-coded sanity limit of 1Mb of data.
5625 */
5626#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5627 void
5628x11_export_final_selection()
5629{
5630 Display *dpy;
5631 char_u *str = NULL;
5632 long_u len = 0;
5633 int motion_type = -1;
5634
5635# ifdef FEAT_GUI
5636 if (gui.in_use)
5637 dpy = X_DISPLAY;
5638 else
5639# endif
5640# ifdef FEAT_XCLIPBOARD
5641 dpy = xterm_dpy;
5642# else
5643 return;
5644# endif
5645
5646 /* Get selection to export */
5647 if (clip_plus.owned)
5648 motion_type = clip_convert_selection(&str, &len, &clip_plus);
5649 else if (clip_star.owned)
5650 motion_type = clip_convert_selection(&str, &len, &clip_star);
5651
5652 /* Check it's OK */
5653 if (dpy != NULL && str != NULL && motion_type >= 0
5654 && len < 1024*1024 && len > 0)
5655 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005656#ifdef FEAT_MBYTE
5657 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
5658 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
5659 * encoding conversion usually doesn't work, so keep the text as-is.
5660 */
5661 if (has_mbyte)
5662 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005663 vimconv_T vc;
5664
5665 vc.vc_type = CONV_NONE;
5666 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
5667 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01005668 int intlen = len;
5669 char_u *conv_str;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00005670
5671 conv_str = string_convert(&vc, str, &intlen);
5672 len = intlen;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005673 if (conv_str != NULL)
5674 {
5675 vim_free(str);
5676 str = conv_str;
5677 }
5678 convert_setup(&vc, NULL, NULL);
5679 }
5680 }
5681#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682 XStoreBuffer(dpy, (char *)str, (int)len, 0);
5683 XFlush(dpy);
5684 }
5685
5686 vim_free(str);
5687}
5688#endif
5689
5690 void
5691clip_free_selection(cbd)
5692 VimClipboard *cbd;
5693{
5694 struct yankreg *y_ptr = y_current;
5695
5696 if (cbd == &clip_plus)
5697 y_current = &y_regs[PLUS_REGISTER];
5698 else
5699 y_current = &y_regs[STAR_REGISTER];
5700 free_yank_all();
5701 y_current->y_size = 0;
5702 y_current = y_ptr;
5703}
5704
5705/*
5706 * Get the selected text and put it in the gui selection register '*' or '+'.
5707 */
5708 void
5709clip_get_selection(cbd)
5710 VimClipboard *cbd;
5711{
5712 struct yankreg *old_y_previous, *old_y_current;
5713 pos_T old_cursor;
5714#ifdef FEAT_VISUAL
5715 pos_T old_visual;
5716 int old_visual_mode;
5717#endif
5718 colnr_T old_curswant;
5719 int old_set_curswant;
5720 pos_T old_op_start, old_op_end;
5721 oparg_T oa;
5722 cmdarg_T ca;
5723
5724 if (cbd->owned)
5725 {
5726 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
5727 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
5728 return;
5729
5730 /* Get the text between clip_star.start & clip_star.end */
5731 old_y_previous = y_previous;
5732 old_y_current = y_current;
5733 old_cursor = curwin->w_cursor;
5734 old_curswant = curwin->w_curswant;
5735 old_set_curswant = curwin->w_set_curswant;
5736 old_op_start = curbuf->b_op_start;
5737 old_op_end = curbuf->b_op_end;
5738#ifdef FEAT_VISUAL
5739 old_visual = VIsual;
5740 old_visual_mode = VIsual_mode;
5741#endif
5742 clear_oparg(&oa);
5743 oa.regname = (cbd == &clip_plus ? '+' : '*');
5744 oa.op_type = OP_YANK;
5745 vim_memset(&ca, 0, sizeof(ca));
5746 ca.oap = &oa;
5747 ca.cmdchar = 'y';
5748 ca.count1 = 1;
5749 ca.retval = CA_NO_ADJ_OP_END;
5750 do_pending_operator(&ca, 0, TRUE);
5751 y_previous = old_y_previous;
5752 y_current = old_y_current;
5753 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005754 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755 curwin->w_curswant = old_curswant;
5756 curwin->w_set_curswant = old_set_curswant;
5757 curbuf->b_op_start = old_op_start;
5758 curbuf->b_op_end = old_op_end;
5759#ifdef FEAT_VISUAL
5760 VIsual = old_visual;
5761 VIsual_mode = old_visual_mode;
5762#endif
5763 }
5764 else
5765 {
5766 clip_free_selection(cbd);
5767
5768 /* Try to get selected text from another window */
5769 clip_gen_request_selection(cbd);
5770 }
5771}
5772
Bram Moolenaard44347f2011-06-19 01:14:29 +02005773/*
5774 * Convert from the GUI selection string into the '*'/'+' register.
5775 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776 void
5777clip_yank_selection(type, str, len, cbd)
5778 int type;
5779 char_u *str;
5780 long len;
5781 VimClipboard *cbd;
5782{
5783 struct yankreg *y_ptr;
5784
5785 if (cbd == &clip_plus)
5786 y_ptr = &y_regs[PLUS_REGISTER];
5787 else
5788 y_ptr = &y_regs[STAR_REGISTER];
5789
5790 clip_free_selection(cbd);
5791
5792 str_to_reg(y_ptr, type, str, len, 0L);
5793}
5794
5795/*
5796 * Convert the '*'/'+' register into a GUI selection string returned in *str
5797 * with length *len.
5798 * Returns the motion type, or -1 for failure.
5799 */
5800 int
5801clip_convert_selection(str, len, cbd)
5802 char_u **str;
5803 long_u *len;
5804 VimClipboard *cbd;
5805{
5806 char_u *p;
5807 int lnum;
5808 int i, j;
5809 int_u eolsize;
5810 struct yankreg *y_ptr;
5811
5812 if (cbd == &clip_plus)
5813 y_ptr = &y_regs[PLUS_REGISTER];
5814 else
5815 y_ptr = &y_regs[STAR_REGISTER];
5816
5817#ifdef USE_CRNL
5818 eolsize = 2;
5819#else
5820 eolsize = 1;
5821#endif
5822
5823 *str = NULL;
5824 *len = 0;
5825 if (y_ptr->y_array == NULL)
5826 return -1;
5827
5828 for (i = 0; i < y_ptr->y_size; i++)
5829 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
5830
5831 /*
5832 * Don't want newline character at end of last line if we're in MCHAR mode.
5833 */
5834 if (y_ptr->y_type == MCHAR && *len >= eolsize)
5835 *len -= eolsize;
5836
5837 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
5838 if (p == NULL)
5839 return -1;
5840 lnum = 0;
5841 for (i = 0, j = 0; i < (int)*len; i++, j++)
5842 {
5843 if (y_ptr->y_array[lnum][j] == '\n')
5844 p[i] = NUL;
5845 else if (y_ptr->y_array[lnum][j] == NUL)
5846 {
5847#ifdef USE_CRNL
5848 p[i++] = '\r';
5849#endif
5850#ifdef USE_CR
5851 p[i] = '\r';
5852#else
5853 p[i] = '\n';
5854#endif
5855 lnum++;
5856 j = -1;
5857 }
5858 else
5859 p[i] = y_ptr->y_array[lnum][j];
5860 }
5861 return y_ptr->y_type;
5862}
5863
5864
5865# if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
5866/*
5867 * If we have written to a clipboard register, send the text to the clipboard.
5868 */
5869 static void
5870may_set_selection()
5871{
5872 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
5873 {
5874 clip_own_selection(&clip_star);
5875 clip_gen_set_selection(&clip_star);
5876 }
5877 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
5878 {
5879 clip_own_selection(&clip_plus);
5880 clip_gen_set_selection(&clip_plus);
5881 }
5882}
5883# endif
5884
5885#endif /* FEAT_CLIPBOARD || PROTO */
5886
5887
5888#if defined(FEAT_DND) || defined(PROTO)
5889/*
5890 * Replace the contents of the '~' register with str.
5891 */
5892 void
5893dnd_yank_drag_data(str, len)
5894 char_u *str;
5895 long len;
5896{
5897 struct yankreg *curr;
5898
5899 curr = y_current;
5900 y_current = &y_regs[TILDE_REGISTER];
5901 free_yank_all();
5902 str_to_reg(y_current, MCHAR, str, len, 0L);
5903 y_current = curr;
5904}
5905#endif
5906
5907
5908#if defined(FEAT_EVAL) || defined(PROTO)
5909/*
5910 * Return the type of a register.
5911 * Used for getregtype()
5912 * Returns MAUTO for error.
5913 */
5914 char_u
5915get_reg_type(regname, reglen)
5916 int regname;
5917 long *reglen;
5918{
5919 switch (regname)
5920 {
5921 case '%': /* file name */
5922 case '#': /* alternate file name */
5923 case '=': /* expression */
5924 case ':': /* last command line */
5925 case '/': /* last search-pattern */
5926 case '.': /* last inserted text */
5927#ifdef FEAT_SEARCHPATH
5928 case Ctrl_F: /* Filename under cursor */
5929 case Ctrl_P: /* Path under cursor, expand via "path" */
5930#endif
5931 case Ctrl_W: /* word under cursor */
5932 case Ctrl_A: /* WORD (mnemonic All) under cursor */
5933 case '_': /* black hole: always empty */
5934 return MCHAR;
5935 }
5936
5937#ifdef FEAT_CLIPBOARD
5938 regname = may_get_selection(regname);
5939#endif
5940
5941 /* Should we check for a valid name? */
5942 get_yank_register(regname, FALSE);
5943
5944 if (y_current->y_array != NULL)
5945 {
5946#ifdef FEAT_VISUAL
5947 if (reglen != NULL && y_current->y_type == MBLOCK)
5948 *reglen = y_current->y_width;
5949#endif
5950 return y_current->y_type;
5951 }
5952 return MAUTO;
5953}
5954
5955/*
5956 * Return the contents of a register as a single allocated string.
5957 * Used for "@r" in expressions and for getreg().
5958 * Returns NULL for error.
5959 */
5960 char_u *
Bram Moolenaarde934d72005-05-22 22:09:40 +00005961get_reg_contents(regname, allowexpr, expr_src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962 int regname;
Bram Moolenaarde934d72005-05-22 22:09:40 +00005963 int allowexpr; /* allow "=" register */
5964 int expr_src; /* get expression for "=" register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965{
5966 long i;
5967 char_u *retval;
5968 int allocated;
5969 long len;
5970
5971 /* Don't allow using an expression register inside an expression */
5972 if (regname == '=')
5973 {
5974 if (allowexpr)
Bram Moolenaarde934d72005-05-22 22:09:40 +00005975 {
5976 if (expr_src)
5977 return get_expr_line_src();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005978 return get_expr_line();
Bram Moolenaarde934d72005-05-22 22:09:40 +00005979 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005980 return NULL;
5981 }
5982
5983 if (regname == '@') /* "@@" is used for unnamed register */
5984 regname = '"';
5985
5986 /* check for valid regname */
5987 if (regname != NUL && !valid_yank_reg(regname, FALSE))
5988 return NULL;
5989
5990#ifdef FEAT_CLIPBOARD
5991 regname = may_get_selection(regname);
5992#endif
5993
5994 if (get_spec_reg(regname, &retval, &allocated, FALSE))
5995 {
5996 if (retval == NULL)
5997 return NULL;
5998 if (!allocated)
5999 retval = vim_strsave(retval);
6000 return retval;
6001 }
6002
6003 get_yank_register(regname, FALSE);
6004 if (y_current->y_array == NULL)
6005 return NULL;
6006
6007 /*
6008 * Compute length of resulting string.
6009 */
6010 len = 0;
6011 for (i = 0; i < y_current->y_size; ++i)
6012 {
6013 len += (long)STRLEN(y_current->y_array[i]);
6014 /*
6015 * Insert a newline between lines and after last line if
6016 * y_type is MLINE.
6017 */
6018 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6019 ++len;
6020 }
6021
6022 retval = lalloc(len + 1, TRUE);
6023
6024 /*
6025 * Copy the lines of the yank register into the string.
6026 */
6027 if (retval != NULL)
6028 {
6029 len = 0;
6030 for (i = 0; i < y_current->y_size; ++i)
6031 {
6032 STRCPY(retval + len, y_current->y_array[i]);
6033 len += (long)STRLEN(retval + len);
6034
6035 /*
6036 * Insert a NL between lines and after the last line if y_type is
6037 * MLINE.
6038 */
6039 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6040 retval[len++] = '\n';
6041 }
6042 retval[len] = NUL;
6043 }
6044
6045 return retval;
6046}
6047
6048/*
6049 * Store string "str" in register "name".
6050 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
6051 * If "must_append" is TRUE, always append to the register. Otherwise append
6052 * if "name" is an uppercase letter.
6053 * Note: "maxlen" and "must_append" don't work for the "/" register.
6054 * Careful: 'str' is modified, you may have to use a copy!
6055 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
6056 */
6057 void
6058write_reg_contents(name, str, maxlen, must_append)
6059 int name;
6060 char_u *str;
6061 int maxlen;
6062 int must_append;
6063{
6064 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
6065}
6066
6067 void
6068write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
6069 int name;
6070 char_u *str;
6071 int maxlen;
6072 int must_append;
6073 int yank_type;
6074 long block_len;
6075{
6076 struct yankreg *old_y_previous, *old_y_current;
6077 long len;
6078
Bram Moolenaare7566042005-06-17 22:00:15 +00006079 if (maxlen >= 0)
6080 len = maxlen;
6081 else
6082 len = (long)STRLEN(str);
6083
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084 /* Special case: '/' search pattern */
6085 if (name == '/')
6086 {
6087 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
6088 return;
6089 }
6090
Bram Moolenaare7566042005-06-17 22:00:15 +00006091#ifdef FEAT_EVAL
6092 if (name == '=')
6093 {
6094 char_u *p, *s;
6095
6096 p = vim_strnsave(str, (int)len);
6097 if (p == NULL)
6098 return;
6099 if (must_append)
6100 {
6101 s = concat_str(get_expr_line_src(), p);
6102 vim_free(p);
6103 p = s;
6104
6105 }
6106 set_expr_line(p);
6107 return;
6108 }
6109#endif
6110
Bram Moolenaar071d4272004-06-13 20:20:40 +00006111 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6112 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006113 emsg_invreg(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006114 return;
6115 }
6116
6117 if (name == '_') /* black hole: nothing to do */
6118 return;
6119
6120 /* Don't want to change the current (unnamed) register */
6121 old_y_previous = y_previous;
6122 old_y_current = y_current;
6123
6124 get_yank_register(name, TRUE);
6125 if (!y_append && !must_append)
6126 free_yank_all();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127#ifndef FEAT_VISUAL
6128 /* Just in case - make sure we don't use MBLOCK */
6129 if (yank_type == MBLOCK)
6130 yank_type = MAUTO;
6131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132 str_to_reg(y_current, yank_type, str, len, block_len);
6133
6134# ifdef FEAT_CLIPBOARD
6135 /* Send text of clipboard register to the clipboard. */
6136 may_set_selection();
6137# endif
6138
6139 /* ':let @" = "val"' should change the meaning of the "" register */
6140 if (name != '"')
6141 y_previous = old_y_previous;
6142 y_current = old_y_current;
6143}
6144#endif /* FEAT_EVAL */
6145
6146#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6147/*
6148 * Put a string into a register. When the register is not empty, the string
6149 * is appended.
6150 */
6151 static void
Bram Moolenaard44347f2011-06-19 01:14:29 +02006152str_to_reg(y_ptr, yank_type, str, len, blocklen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006153 struct yankreg *y_ptr; /* pointer to yank register */
Bram Moolenaard44347f2011-06-19 01:14:29 +02006154 int yank_type; /* MCHAR, MLINE, MBLOCK, MAUTO */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155 char_u *str; /* string to put in register */
6156 long len; /* length of string */
6157 long blocklen; /* width of Visual block */
6158{
Bram Moolenaard44347f2011-06-19 01:14:29 +02006159 int type; /* MCHAR, MLINE or MBLOCK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 int lnum;
6161 long start;
6162 long i;
6163 int extra;
6164 int newlines; /* number of lines added */
6165 int extraline = 0; /* extra line at the end */
6166 int append = FALSE; /* append to last line in register */
6167 char_u *s;
6168 char_u **pp;
6169#ifdef FEAT_VISUAL
6170 long maxlen;
6171#endif
6172
Bram Moolenaarcde547a2009-11-17 11:43:06 +00006173 if (y_ptr->y_array == NULL) /* NULL means empty register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174 y_ptr->y_size = 0;
6175
Bram Moolenaard44347f2011-06-19 01:14:29 +02006176 if (yank_type == MAUTO)
6177 type = ((len > 0 && (str[len - 1] == NL || str[len - 1] == CAR))
6178 ? MLINE : MCHAR);
6179 else
6180 type = yank_type;
6181
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182 /*
6183 * Count the number of lines within the string
6184 */
6185 newlines = 0;
6186 for (i = 0; i < len; i++)
6187 if (str[i] == '\n')
6188 ++newlines;
6189 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
6190 {
6191 extraline = 1;
6192 ++newlines; /* count extra newline at the end */
6193 }
6194 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
6195 {
6196 append = TRUE;
6197 --newlines; /* uncount newline when appending first line */
6198 }
6199
6200 /*
6201 * Allocate an array to hold the pointers to the new register lines.
6202 * If the register was not empty, move the existing lines to the new array.
6203 */
6204 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
6205 * sizeof(char_u *), TRUE);
6206 if (pp == NULL) /* out of memory */
6207 return;
6208 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
6209 pp[lnum] = y_ptr->y_array[lnum];
6210 vim_free(y_ptr->y_array);
6211 y_ptr->y_array = pp;
6212#ifdef FEAT_VISUAL
6213 maxlen = 0;
6214#endif
6215
6216 /*
6217 * Find the end of each line and save it into the array.
6218 */
6219 for (start = 0; start < len + extraline; start += i + 1)
6220 {
6221 for (i = start; i < len; ++i) /* find the end of the line */
6222 if (str[i] == '\n')
6223 break;
6224 i -= start; /* i is now length of line */
6225#ifdef FEAT_VISUAL
6226 if (i > maxlen)
6227 maxlen = i;
6228#endif
6229 if (append)
6230 {
6231 --lnum;
6232 extra = (int)STRLEN(y_ptr->y_array[lnum]);
6233 }
6234 else
6235 extra = 0;
6236 s = alloc((unsigned)(i + extra + 1));
6237 if (s == NULL)
6238 break;
6239 if (extra)
6240 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
6241 if (append)
6242 vim_free(y_ptr->y_array[lnum]);
6243 if (i)
6244 mch_memmove(s + extra, str + start, (size_t)i);
6245 extra += i;
6246 s[extra] = NUL;
6247 y_ptr->y_array[lnum++] = s;
6248 while (--extra >= 0)
6249 {
6250 if (*s == NUL)
6251 *s = '\n'; /* replace NUL with newline */
6252 ++s;
6253 }
6254 append = FALSE; /* only first line is appended */
6255 }
6256 y_ptr->y_type = type;
6257 y_ptr->y_size = lnum;
6258# ifdef FEAT_VISUAL
6259 if (type == MBLOCK)
6260 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
6261 else
6262 y_ptr->y_width = 0;
6263# endif
6264}
6265#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
6266
6267 void
6268clear_oparg(oap)
6269 oparg_T *oap;
6270{
6271 vim_memset(oap, 0, sizeof(oparg_T));
6272}
6273
Bram Moolenaar7c626922005-02-07 22:01:03 +00006274static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275
6276/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00006277 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278 *
6279 * "Words" are counted by looking for boundaries between non-space and
6280 * space characters. (it seems to produce results that match 'wc'.)
6281 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00006282 * Return value is byte count; word count for the line is added to "*wc".
6283 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284 *
6285 * The function will only examine the first "limit" characters in the
6286 * line, stopping if it encounters an end-of-line (NUL byte). In that
6287 * case, eol_size will be added to the character count to account for
6288 * the size of the EOL character.
6289 */
6290 static long
Bram Moolenaar7c626922005-02-07 22:01:03 +00006291line_count_info(line, wc, cc, limit, eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 char_u *line;
6293 long *wc;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006294 long *cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006295 long limit;
6296 int eol_size;
6297{
Bram Moolenaar7c626922005-02-07 22:01:03 +00006298 long i;
6299 long words = 0;
6300 long chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301 int is_word = 0;
6302
Bram Moolenaar7c626922005-02-07 22:01:03 +00006303 for (i = 0; line[i] && i < limit; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304 {
6305 if (is_word)
6306 {
6307 if (vim_isspace(line[i]))
6308 {
6309 words++;
6310 is_word = 0;
6311 }
6312 }
6313 else if (!vim_isspace(line[i]))
6314 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006315 ++chars;
6316#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006317 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00006318#else
6319 ++i;
6320#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321 }
6322
6323 if (is_word)
6324 words++;
6325 *wc += words;
6326
6327 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar1cb7e092011-08-10 12:11:01 +02006328 if (i < limit && line[i] == NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006329 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006331 chars += eol_size;
6332 }
6333 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006334 return i;
6335}
6336
6337/*
6338 * Give some info about the position of the cursor (for "g CTRL-G").
6339 * In Visual mode, give some info about the selected region. (In this case,
6340 * the *_count_cursor variables store running totals for the selection.)
6341 */
6342 void
6343cursor_pos_info()
6344{
6345 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006346 char_u buf1[50];
6347 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006348 linenr_T lnum;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006349 long byte_count = 0;
6350 long byte_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351 long char_count = 0;
6352 long char_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006353 long word_count = 0;
6354 long word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006355 int eol_size;
6356 long last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006357#ifdef FEAT_VISUAL
6358 long line_count_selected = 0;
6359 pos_T min_pos, max_pos;
6360 oparg_T oparg;
6361 struct block_def bd;
6362#endif
6363
6364 /*
6365 * Compute the length of the file in characters.
6366 */
6367 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6368 {
6369 MSG(_(no_lines_msg));
6370 }
6371 else
6372 {
6373 if (get_fileformat(curbuf) == EOL_DOS)
6374 eol_size = 2;
6375 else
6376 eol_size = 1;
6377
6378#ifdef FEAT_VISUAL
6379 if (VIsual_active)
6380 {
6381 if (lt(VIsual, curwin->w_cursor))
6382 {
6383 min_pos = VIsual;
6384 max_pos = curwin->w_cursor;
6385 }
6386 else
6387 {
6388 min_pos = curwin->w_cursor;
6389 max_pos = VIsual;
6390 }
6391 if (*p_sel == 'e' && max_pos.col > 0)
6392 --max_pos.col;
6393
6394 if (VIsual_mode == Ctrl_V)
6395 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00006396#ifdef FEAT_LINEBREAK
6397 char_u * saved_sbr = p_sbr;
6398
6399 /* Make 'sbr' empty for a moment to get the correct size. */
6400 p_sbr = empty_option;
6401#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006402 oparg.is_VIsual = 1;
6403 oparg.block_mode = TRUE;
6404 oparg.op_type = OP_NOP;
6405 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006406 &oparg.start_vcol, &oparg.end_vcol);
Bram Moolenaar81d00072009-04-29 15:41:40 +00006407#ifdef FEAT_LINEBREAK
6408 p_sbr = saved_sbr;
6409#endif
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006410 if (curwin->w_curswant == MAXCOL)
6411 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006412 /* Swap the start, end vcol if needed */
6413 if (oparg.end_vcol < oparg.start_vcol)
6414 {
6415 oparg.end_vcol += oparg.start_vcol;
6416 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
6417 oparg.end_vcol -= oparg.start_vcol;
6418 }
6419 }
6420 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
6421 }
6422#endif
6423
6424 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6425 {
6426 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006427 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428 {
6429 ui_breakcheck();
6430 if (got_int)
6431 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006432 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006433 }
6434
6435#ifdef FEAT_VISUAL
6436 /* Do extra processing for VIsual mode. */
6437 if (VIsual_active
6438 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
6439 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00006440 char_u *s = NULL;
6441 long len = 0L;
6442
Bram Moolenaar071d4272004-06-13 20:20:40 +00006443 switch (VIsual_mode)
6444 {
6445 case Ctrl_V:
6446# ifdef FEAT_VIRTUALEDIT
6447 virtual_op = virtual_active();
6448# endif
6449 block_prep(&oparg, &bd, lnum, 0);
6450# ifdef FEAT_VIRTUALEDIT
6451 virtual_op = MAYBE;
6452# endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00006453 s = bd.textstart;
6454 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455 break;
6456 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00006457 s = ml_get(lnum);
6458 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459 break;
6460 case 'v':
6461 {
6462 colnr_T start_col = (lnum == min_pos.lnum)
6463 ? min_pos.col : 0;
6464 colnr_T end_col = (lnum == max_pos.lnum)
6465 ? max_pos.col - start_col + 1 : MAXCOL;
6466
Bram Moolenaardef9e822004-12-31 20:58:58 +00006467 s = ml_get(lnum) + start_col;
6468 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469 }
6470 break;
6471 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00006472 if (s != NULL)
6473 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00006474 byte_count_cursor += line_count_info(s, &word_count_cursor,
6475 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00006476 if (lnum == curbuf->b_ml.ml_line_count
6477 && !curbuf->b_p_eol
6478 && curbuf->b_p_bin
Bram Moolenaarec2dad62005-01-02 11:36:03 +00006479 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006480 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00006481 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006482 }
6483 else
6484#endif
6485 {
6486 /* In non-visual mode, check for the line the cursor is on */
6487 if (lnum == curwin->w_cursor.lnum)
6488 {
6489 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006490 char_count_cursor += char_count;
6491 byte_count_cursor = byte_count +
6492 line_count_info(ml_get(lnum),
6493 &word_count_cursor, &char_count_cursor,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006494 (long)(curwin->w_cursor.col + 1), eol_size);
6495 }
6496 }
6497 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006498 byte_count += line_count_info(ml_get(lnum), &word_count,
6499 &char_count, (long)MAXCOL, eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006500 }
6501
6502 /* Correction for when last line doesn't have an EOL. */
6503 if (!curbuf->b_p_eol && curbuf->b_p_bin)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006504 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006505
6506#ifdef FEAT_VISUAL
6507 if (VIsual_active)
6508 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006509 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006510 {
6511 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006512 &max_pos.col);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006513 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006514 (long)(oparg.end_vcol - oparg.start_vcol + 1));
6515 }
6516 else
6517 buf1[0] = NUL;
6518
Bram Moolenaar7c626922005-02-07 22:01:03 +00006519 if (char_count_cursor == byte_count_cursor
Bram Moolenaar555b2802005-05-19 21:08:39 +00006520 && char_count == byte_count)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006521 vim_snprintf((char *)IObuff, IOSIZE,
6522 _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523 buf1, line_count_selected,
6524 (long)curbuf->b_ml.ml_line_count,
6525 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006526 byte_count_cursor, byte_count);
6527 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006528 vim_snprintf((char *)IObuff, IOSIZE,
6529 _("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 +00006530 buf1, line_count_selected,
6531 (long)curbuf->b_ml.ml_line_count,
6532 word_count_cursor, word_count,
6533 char_count_cursor, char_count,
6534 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535 }
6536 else
6537#endif
6538 {
6539 p = ml_get_curline();
6540 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006541 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006542 (int)curwin->w_virtcol + 1);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006543 col_print(buf2, sizeof(buf2), (int)STRLEN(p), linetabsize(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006544
Bram Moolenaar7c626922005-02-07 22:01:03 +00006545 if (char_count_cursor == byte_count_cursor
6546 && char_count == byte_count)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006547 vim_snprintf((char *)IObuff, IOSIZE,
6548 _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006549 (char *)buf1, (char *)buf2,
6550 (long)curwin->w_cursor.lnum,
6551 (long)curbuf->b_ml.ml_line_count,
6552 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006553 byte_count_cursor, byte_count);
6554 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006555 vim_snprintf((char *)IObuff, IOSIZE,
6556 _("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 +00006557 (char *)buf1, (char *)buf2,
6558 (long)curwin->w_cursor.lnum,
6559 (long)curbuf->b_ml.ml_line_count,
6560 word_count_cursor, word_count,
6561 char_count_cursor, char_count,
6562 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006563 }
6564
6565#ifdef FEAT_MBYTE
Bram Moolenaar7c626922005-02-07 22:01:03 +00006566 byte_count = bomb_size();
6567 if (byte_count > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006568 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
Bram Moolenaar7c626922005-02-07 22:01:03 +00006569 byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006570#endif
6571 /* Don't shorten this message, the user asked for it. */
6572 p = p_shm;
6573 p_shm = (char_u *)"";
6574 msg(IObuff);
6575 p_shm = p;
6576 }
6577}