blob: 557985c38ad1a7eaaf8849d5fd102727ecc916a0 [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{
75 int startspaces; /* 'extra' cols of first char */
76 int endspaces; /* 'extra' cols of first char */
77 int textlen; /* chars in block */
78 char_u *textstart; /* pointer to 1st char in block */
79 colnr_T textcol; /* cols of chars (at least part.) in block */
80 colnr_T start_vcol; /* start col of 1st char wholly inside block */
81 colnr_T end_vcol; /* start col of 1st char wholly after block */
82#ifdef FEAT_VISUALEXTRA
83 int is_short; /* TRUE if line is too short to fit in block */
84 int is_MAX; /* TRUE if curswant==MAXCOL when starting */
85 int is_oneChar; /* TRUE if block within one character */
86 int pre_whitesp; /* screen cols of ws before block */
87 int pre_whitesp_c; /* chars of ws before block */
88 colnr_T end_char_vcols; /* number of vcols of post-block char */
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;
385 int total, split;
386 char_u *newp, *oldp, *midp, *ptr;
387 int oldcol = curwin->w_cursor.col;
388 int p_sw = (int)curbuf->b_p_sw;
389 int p_ts = (int)curbuf->b_p_ts;
390 struct block_def bd;
391 int internal = 0;
392 int incr;
393 colnr_T vcol, col = 0, ws_vcol;
394 int i = 0, j = 0;
395 int len;
396
397#ifdef FEAT_RIGHTLEFT
398 int old_p_ri = p_ri;
399
400 p_ri = 0; /* don't want revins in ident */
401#endif
402
403 State = INSERT; /* don't want REPLACE for State */
404 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
405 if (bd.is_short)
406 return;
407
408 /* total is number of screen columns to be inserted/removed */
409 total = amount * p_sw;
410 oldp = ml_get_curline();
411
412 if (!left)
413 {
414 /*
415 * 1. Get start vcol
416 * 2. Total ws vcols
417 * 3. Divvy into TABs & spp
418 * 4. Construct new string
419 */
420 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
421 ws_vcol = bd.start_vcol - bd.pre_whitesp;
422 if (bd.startspaces)
423 {
424#ifdef FEAT_MBYTE
425 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000426 bd.textstart += (*mb_ptr2len)(bd.textstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427#endif
428 ++bd.textstart;
429 }
430 for ( ; vim_iswhite(*bd.textstart); )
431 {
432 incr = lbr_chartabsize_adv(&bd.textstart, (colnr_T)(bd.start_vcol));
433 total += incr;
434 bd.start_vcol += incr;
435 }
436 /* OK, now total=all the VWS reqd, and textstart points at the 1st
437 * non-ws char in the block. */
438 if (!curbuf->b_p_et)
439 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
440 if (i)
441 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
442 else
443 j = total;
444 /* if we're splitting a TAB, allow for it */
445 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
446 len = (int)STRLEN(bd.textstart) + 1;
447 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
448 if (newp == NULL)
449 return;
450 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
451 mch_memmove(newp, oldp, (size_t)bd.textcol);
452 copy_chars(newp + bd.textcol, (size_t)i, TAB);
453 copy_spaces(newp + bd.textcol + i, (size_t)j);
454 /* the end */
455 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
456 }
457 else /* left */
458 {
459 vcol = oap->start_vcol;
460 /* walk vcol past ws to be removed */
461 for (midp = oldp + bd.textcol;
462 vcol < (oap->start_vcol + total) && vim_iswhite(*midp); )
463 {
464 incr = lbr_chartabsize_adv(&midp, (colnr_T)vcol);
465 vcol += incr;
466 }
467 /* internal is the block-internal ws replacing a split TAB */
468 if (vcol > (oap->start_vcol + total))
469 {
470 /* we have to split the TAB *(midp-1) */
471 internal = vcol - (oap->start_vcol + total);
472 }
473 /* if 'expandtab' is not set, use TABs */
474
475 split = bd.startspaces + internal;
476 if (split > 0)
477 {
478 if (!curbuf->b_p_et)
479 {
480 for (ptr = oldp, col = 0; ptr < oldp+bd.textcol; )
481 col += lbr_chartabsize_adv(&ptr, (colnr_T)col);
482
483 /* col+1 now equals the start col of the first char of the
484 * block (may be < oap.start_vcol if we're splitting a TAB) */
485 i = ((col % p_ts) + split) / p_ts; /* number of tabs */
486 }
487 if (i)
488 j = ((col % p_ts) + split) % p_ts; /* number of spp */
489 else
490 j = split;
491 }
492
493 newp = alloc_check(bd.textcol + i + j + (unsigned)STRLEN(midp) + 1);
494 if (newp == NULL)
495 return;
496 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + STRLEN(midp) + 1));
497
498 /* copy first part we want to keep */
499 mch_memmove(newp, oldp, (size_t)bd.textcol);
500 /* Now copy any TABS and spp to ensure correct alignment! */
501 while (vim_iswhite(*midp))
502 {
503 if (*midp == TAB)
504 i++;
505 else /*space */
506 j++;
507 midp++;
508 }
509 /* We might have an extra TAB worth of spp now! */
510 if (j / p_ts && !curbuf->b_p_et)
511 {
512 i++;
513 j -= p_ts;
514 }
515 copy_chars(newp + bd.textcol, (size_t)i, TAB);
516 copy_spaces(newp + bd.textcol + i, (size_t)j);
517
518 /* the end */
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000519 STRMOVE(newp + STRLEN(newp), midp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520 }
521 /* replace the line */
522 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
523 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
524 State = oldstate;
525 curwin->w_cursor.col = oldcol;
526#ifdef FEAT_RIGHTLEFT
527 p_ri = old_p_ri;
528#endif
529}
530#endif
531
532#ifdef FEAT_VISUALEXTRA
533/*
534 * Insert string "s" (b_insert ? before : after) block :AKelly
535 * Caller must prepare for undo.
536 */
537 static void
538block_insert(oap, s, b_insert, bdp)
539 oparg_T *oap;
540 char_u *s;
541 int b_insert;
542 struct block_def *bdp;
543{
544 int p_ts;
545 int count = 0; /* extra spaces to replace a cut TAB */
546 int spaces = 0; /* non-zero if cutting a TAB */
547 colnr_T offset; /* pointer along new line */
548 unsigned s_len; /* STRLEN(s) */
549 char_u *newp, *oldp; /* new, old lines */
550 linenr_T lnum; /* loop var */
551 int oldstate = State;
552
553 State = INSERT; /* don't want REPLACE for State */
554 s_len = (unsigned)STRLEN(s);
555
556 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
557 {
558 block_prep(oap, bdp, lnum, TRUE);
559 if (bdp->is_short && b_insert)
560 continue; /* OP_INSERT, line ends before block start */
561
562 oldp = ml_get(lnum);
563
564 if (b_insert)
565 {
566 p_ts = bdp->start_char_vcols;
567 spaces = bdp->startspaces;
568 if (spaces != 0)
569 count = p_ts - 1; /* we're cutting a TAB */
570 offset = bdp->textcol;
571 }
572 else /* append */
573 {
574 p_ts = bdp->end_char_vcols;
575 if (!bdp->is_short) /* spaces = padding after block */
576 {
577 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
578 if (spaces != 0)
579 count = p_ts - 1; /* we're cutting a TAB */
580 offset = bdp->textcol + bdp->textlen - (spaces != 0);
581 }
582 else /* spaces = padding to block edge */
583 {
584 /* if $ used, just append to EOL (ie spaces==0) */
585 if (!bdp->is_MAX)
586 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
587 count = spaces;
588 offset = bdp->textcol + bdp->textlen;
589 }
590 }
591
592 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
593 if (newp == NULL)
594 continue;
595
596 /* copy up to shifted part */
597 mch_memmove(newp, oldp, (size_t)(offset));
598 oldp += offset;
599
600 /* insert pre-padding */
601 copy_spaces(newp + offset, (size_t)spaces);
602
603 /* copy the new text */
604 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
605 offset += s_len;
606
607 if (spaces && !bdp->is_short)
608 {
609 /* insert post-padding */
610 copy_spaces(newp + offset + spaces, (size_t)(p_ts - spaces));
611 /* We're splitting a TAB, don't copy it. */
612 oldp++;
613 /* We allowed for that TAB, remember this now */
614 count++;
615 }
616
617 if (spaces > 0)
618 offset += count;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000619 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620
621 ml_replace(lnum, newp, FALSE);
622
623 if (lnum == oap->end.lnum)
624 {
625 /* Set "']" mark to the end of the block instead of the end of
626 * the insert in the first line. */
627 curbuf->b_op_end.lnum = oap->end.lnum;
628 curbuf->b_op_end.col = offset;
629 }
630 } /* for all lnum */
631
632 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
633
634 State = oldstate;
635}
636#endif
637
638#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
639/*
640 * op_reindent - handle reindenting a block of lines.
641 */
642 void
643op_reindent(oap, how)
644 oparg_T *oap;
645 int (*how) __ARGS((void));
646{
647 long i;
648 char_u *l;
649 int count;
650 linenr_T first_changed = 0;
651 linenr_T last_changed = 0;
652 linenr_T start_lnum = curwin->w_cursor.lnum;
653
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000654 /* Don't even try when 'modifiable' is off. */
655 if (!curbuf->b_p_ma)
656 {
657 EMSG(_(e_modifiable));
658 return;
659 }
660
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 for (i = oap->line_count; --i >= 0 && !got_int; )
662 {
663 /* it's a slow thing to do, so give feedback so there's no worry that
664 * the computer's just hung. */
665
666 if (i > 1
667 && (i % 50 == 0 || i == oap->line_count - 1)
668 && oap->line_count > p_report)
669 smsg((char_u *)_("%ld lines to indent... "), i);
670
671 /*
672 * Be vi-compatible: For lisp indenting the first line is not
673 * indented, unless there is only one line.
674 */
675#ifdef FEAT_LISP
676 if (i != oap->line_count - 1 || oap->line_count == 1
677 || how != get_lisp_indent)
678#endif
679 {
680 l = skipwhite(ml_get_curline());
681 if (*l == NUL) /* empty or blank line */
682 count = 0;
683 else
684 count = how(); /* get the indent for this line */
685
686 if (set_indent(count, SIN_UNDO))
687 {
688 /* did change the indent, call changed_lines() later */
689 if (first_changed == 0)
690 first_changed = curwin->w_cursor.lnum;
691 last_changed = curwin->w_cursor.lnum;
692 }
693 }
694 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +0000695 curwin->w_cursor.col = 0; /* make sure it's valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 }
697
698 /* put cursor on first non-blank of indented line */
699 curwin->w_cursor.lnum = start_lnum;
700 beginline(BL_SOL | BL_FIX);
701
702 /* Mark changed lines so that they will be redrawn. When Visual
703 * highlighting was present, need to continue until the last line. When
704 * there is no change still need to remove the Visual highlighting. */
705 if (last_changed != 0)
706 changed_lines(first_changed, 0,
707#ifdef FEAT_VISUAL
708 oap->is_VIsual ? start_lnum + oap->line_count :
709#endif
710 last_changed + 1, 0L);
711#ifdef FEAT_VISUAL
712 else if (oap->is_VIsual)
713 redraw_curbuf_later(INVERTED);
714#endif
715
716 if (oap->line_count > p_report)
717 {
718 i = oap->line_count - (i + 1);
719 if (i == 1)
720 MSG(_("1 line indented "));
721 else
722 smsg((char_u *)_("%ld lines indented "), i);
723 }
724 /* set '[ and '] marks */
725 curbuf->b_op_start = oap->start;
726 curbuf->b_op_end = oap->end;
727}
728#endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
729
730#if defined(FEAT_EVAL) || defined(PROTO)
731/*
732 * Keep the last expression line here, for repeating.
733 */
734static char_u *expr_line = NULL;
735
736/*
737 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
738 * Returns '=' when OK, NUL otherwise.
739 */
740 int
741get_expr_register()
742{
743 char_u *new_line;
744
745 new_line = getcmdline('=', 0L, 0);
746 if (new_line == NULL)
747 return NUL;
748 if (*new_line == NUL) /* use previous line */
749 vim_free(new_line);
750 else
751 set_expr_line(new_line);
752 return '=';
753}
754
755/*
756 * Set the expression for the '=' register.
757 * Argument must be an allocated string.
758 */
759 void
760set_expr_line(new_line)
761 char_u *new_line;
762{
763 vim_free(expr_line);
764 expr_line = new_line;
765}
766
767/*
768 * Get the result of the '=' register expression.
769 * Returns a pointer to allocated memory, or NULL for failure.
770 */
771 char_u *
772get_expr_line()
773{
774 char_u *expr_copy;
775 char_u *rv;
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000776 static int nested = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777
778 if (expr_line == NULL)
779 return NULL;
780
781 /* Make a copy of the expression, because evaluating it may cause it to be
782 * changed. */
783 expr_copy = vim_strsave(expr_line);
784 if (expr_copy == NULL)
785 return NULL;
786
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000787 /* When we are invoked recursively limit the evaluation to 10 levels.
788 * Then return the string as-is. */
789 if (nested >= 10)
790 return expr_copy;
791
792 ++nested;
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000793 rv = eval_to_string(expr_copy, NULL, TRUE);
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000794 --nested;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 vim_free(expr_copy);
796 return rv;
797}
Bram Moolenaarde934d72005-05-22 22:09:40 +0000798
799/*
800 * Get the '=' register expression itself, without evaluating it.
801 */
802 char_u *
803get_expr_line_src()
804{
805 if (expr_line == NULL)
806 return NULL;
807 return vim_strsave(expr_line);
808}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809#endif /* FEAT_EVAL */
810
811/*
812 * Check if 'regname' is a valid name of a yank register.
813 * Note: There is no check for 0 (default register), caller should do this
814 */
815 int
816valid_yank_reg(regname, writing)
817 int regname;
818 int writing; /* if TRUE check for writable registers */
819{
820 if ( (regname > 0 && ASCII_ISALNUM(regname))
821 || (!writing && vim_strchr((char_u *)
822#ifdef FEAT_EVAL
823 "/.%#:="
824#else
825 "/.%#:"
826#endif
827 , regname) != NULL)
828 || regname == '"'
829 || regname == '-'
830 || regname == '_'
831#ifdef FEAT_CLIPBOARD
832 || regname == '*'
833 || regname == '+'
834#endif
835#ifdef FEAT_DND
836 || (!writing && regname == '~')
837#endif
838 )
839 return TRUE;
840 return FALSE;
841}
842
843/*
844 * Set y_current and y_append, according to the value of "regname".
845 * Cannot handle the '_' register.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000846 * Must only be called with a valid register name!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 *
848 * If regname is 0 and writing, use register 0
849 * If regname is 0 and reading, use previous register
850 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000851 void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852get_yank_register(regname, writing)
853 int regname;
854 int writing;
855{
856 int i;
857
858 y_append = FALSE;
859 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
860 {
861 y_current = y_previous;
862 return;
863 }
864 i = regname;
865 if (VIM_ISDIGIT(i))
866 i -= '0';
867 else if (ASCII_ISLOWER(i))
868 i = CharOrdLow(i) + 10;
869 else if (ASCII_ISUPPER(i))
870 {
871 i = CharOrdUp(i) + 10;
872 y_append = TRUE;
873 }
874 else if (regname == '-')
875 i = DELETION_REGISTER;
876#ifdef FEAT_CLIPBOARD
877 /* When selection is not available, use register 0 instead of '*' */
878 else if (clip_star.available && regname == '*')
879 i = STAR_REGISTER;
880 /* When clipboard is not available, use register 0 instead of '+' */
881 else if (clip_plus.available && regname == '+')
882 i = PLUS_REGISTER;
883#endif
884#ifdef FEAT_DND
885 else if (!writing && regname == '~')
886 i = TILDE_REGISTER;
887#endif
888 else /* not 0-9, a-z, A-Z or '-': use register 0 */
889 i = 0;
890 y_current = &(y_regs[i]);
891 if (writing) /* remember the register we write into for do_put() */
892 y_previous = y_current;
893}
894
Bram Moolenaar8299df92004-07-10 09:47:34 +0000895#if defined(FEAT_CLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896/*
897 * When "regname" is a clipboard register, obtain the selection. If it's not
898 * available return zero, otherwise return "regname".
899 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000900 int
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901may_get_selection(regname)
902 int regname;
903{
904 if (regname == '*')
905 {
906 if (!clip_star.available)
907 regname = 0;
908 else
909 clip_get_selection(&clip_star);
910 }
911 else if (regname == '+')
912 {
913 if (!clip_plus.available)
914 regname = 0;
915 else
916 clip_get_selection(&clip_plus);
917 }
918 return regname;
919}
920#endif
921
922#if defined(FEAT_VISUAL) || defined(PROTO)
923/*
924 * Obtain the contents of a "normal" register. The register is made empty.
925 * The returned pointer has allocated memory, use put_register() later.
926 */
927 void *
928get_register(name, copy)
929 int name;
930 int copy; /* make a copy, if FALSE make register empty. */
931{
Bram Moolenaar0a307462007-12-01 20:13:05 +0000932 struct yankreg *reg;
933 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934
935#ifdef FEAT_CLIPBOARD
936 /* When Visual area changed, may have to update selection. Obtain the
937 * selection too. */
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000938 if (name == '*' && clip_star.available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 {
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000940 if (clip_isautosel())
941 clip_update_selection();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 may_get_selection(name);
943 }
944#endif
945
946 get_yank_register(name, 0);
947 reg = (struct yankreg *)alloc((unsigned)sizeof(struct yankreg));
948 if (reg != NULL)
949 {
950 *reg = *y_current;
951 if (copy)
952 {
953 /* If we run out of memory some or all of the lines are empty. */
954 if (reg->y_size == 0)
955 reg->y_array = NULL;
956 else
957 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
958 * reg->y_size));
959 if (reg->y_array != NULL)
960 {
961 for (i = 0; i < reg->y_size; ++i)
962 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
963 }
964 }
965 else
966 y_current->y_array = NULL;
967 }
968 return (void *)reg;
969}
970
971/*
Bram Moolenaar0a307462007-12-01 20:13:05 +0000972 * Put "reg" into register "name". Free any previous contents and "reg".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 */
974 void
975put_register(name, reg)
976 int name;
977 void *reg;
978{
979 get_yank_register(name, 0);
980 free_yank_all();
981 *y_current = *(struct yankreg *)reg;
Bram Moolenaar0a307462007-12-01 20:13:05 +0000982 vim_free(reg);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983
984# ifdef FEAT_CLIPBOARD
985 /* Send text written to clipboard register to the clipboard. */
986 may_set_selection();
987# endif
988}
989#endif
990
991#if defined(FEAT_MOUSE) || defined(PROTO)
992/*
993 * return TRUE if the current yank register has type MLINE
994 */
995 int
996yank_register_mline(regname)
997 int regname;
998{
999 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1000 return FALSE;
1001 if (regname == '_') /* black hole is always empty */
1002 return FALSE;
1003 get_yank_register(regname, FALSE);
1004 return (y_current->y_type == MLINE);
1005}
1006#endif
1007
1008/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001009 * Start or stop recording into a yank register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 *
Bram Moolenaard55de222007-05-06 13:38:48 +00001011 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 */
1013 int
1014do_record(c)
1015 int c;
1016{
Bram Moolenaard55de222007-05-06 13:38:48 +00001017 char_u *p;
1018 static int regname;
1019 struct yankreg *old_y_previous, *old_y_current;
1020 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021
1022 if (Recording == FALSE) /* start recording */
1023 {
1024 /* registers 0-9, a-z and " are allowed */
1025 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1026 retval = FAIL;
1027 else
1028 {
1029 Recording = TRUE;
1030 showmode();
1031 regname = c;
1032 retval = OK;
1033 }
1034 }
1035 else /* stop recording */
1036 {
1037 /*
Bram Moolenaard55de222007-05-06 13:38:48 +00001038 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1039 * needs to be removed again to put it in a register. exec_reg then
1040 * adds the escaping back later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041 */
1042 Recording = FALSE;
1043 MSG("");
1044 p = get_recorded();
1045 if (p == NULL)
1046 retval = FAIL;
1047 else
1048 {
Bram Moolenaar81b85872007-03-04 20:22:01 +00001049 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1050 vim_unescape_csi(p);
1051
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 /*
1053 * We don't want to change the default register here, so save and
1054 * restore the current register name.
1055 */
1056 old_y_previous = y_previous;
1057 old_y_current = y_current;
1058
1059 retval = stuff_yank(regname, p);
1060
1061 y_previous = old_y_previous;
1062 y_current = old_y_current;
1063 }
1064 }
1065 return retval;
1066}
1067
1068/*
1069 * Stuff string "p" into yank register "regname" as a single line (append if
1070 * uppercase). "p" must have been alloced.
1071 *
1072 * return FAIL for failure, OK otherwise
1073 */
1074 static int
1075stuff_yank(regname, p)
1076 int regname;
1077 char_u *p;
1078{
1079 char_u *lp;
1080 char_u **pp;
1081
1082 /* check for read-only register */
1083 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1084 {
1085 vim_free(p);
1086 return FAIL;
1087 }
1088 if (regname == '_') /* black hole: don't do anything */
1089 {
1090 vim_free(p);
1091 return OK;
1092 }
1093 get_yank_register(regname, TRUE);
1094 if (y_append && y_current->y_array != NULL)
1095 {
1096 pp = &(y_current->y_array[y_current->y_size - 1]);
1097 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1098 if (lp == NULL)
1099 {
1100 vim_free(p);
1101 return FAIL;
1102 }
1103 STRCPY(lp, *pp);
1104 STRCAT(lp, p);
1105 vim_free(p);
1106 vim_free(*pp);
1107 *pp = lp;
1108 }
1109 else
1110 {
1111 free_yank_all();
1112 if ((y_current->y_array =
1113 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1114 {
1115 vim_free(p);
1116 return FAIL;
1117 }
1118 y_current->y_array[0] = p;
1119 y_current->y_size = 1;
1120 y_current->y_type = MCHAR; /* used to be MLINE, why? */
1121 }
1122 return OK;
1123}
1124
1125/*
1126 * execute a yank register: copy it into the stuff buffer
1127 *
1128 * return FAIL for failure, OK otherwise
1129 */
1130 int
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001131do_execreg(regname, colon, addcr, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 int regname;
1133 int colon; /* insert ':' before each line */
1134 int addcr; /* always add '\n' to end of line */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001135 int silent; /* set "silent" flag in typeahead buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136{
1137 static int lastc = NUL;
1138 long i;
1139 char_u *p;
1140 int retval = OK;
1141 int remap;
1142
1143 if (regname == '@') /* repeat previous one */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001144 {
1145 if (lastc == NUL)
1146 {
1147 EMSG(_("E748: No previously used register"));
1148 return FAIL;
1149 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 regname = lastc;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001151 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 /* check for valid regname */
1153 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001154 {
1155 emsg_invreg(regname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 return FAIL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001157 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 lastc = regname;
1159
1160#ifdef FEAT_CLIPBOARD
1161 regname = may_get_selection(regname);
1162#endif
1163
1164 if (regname == '_') /* black hole: don't stuff anything */
1165 return OK;
1166
1167#ifdef FEAT_CMDHIST
1168 if (regname == ':') /* use last command line */
1169 {
1170 if (last_cmdline == NULL)
1171 {
1172 EMSG(_(e_nolastcmd));
1173 return FAIL;
1174 }
1175 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
1176 new_last_cmdline = NULL;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001177 /* Escape all control characters with a CTRL-V */
1178 p = vim_strsave_escaped_ext(last_cmdline,
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001179 (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 +00001180 if (p != NULL)
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001181 {
1182 /* When in Visual mode "'<,'>" will be prepended to the command.
1183 * Remove it when it's already there. */
1184 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001185 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001186 else
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001187 retval = put_in_typebuf(p, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001188 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001189 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 }
1191#endif
1192#ifdef FEAT_EVAL
1193 else if (regname == '=')
1194 {
1195 p = get_expr_line();
1196 if (p == NULL)
1197 return FAIL;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001198 retval = put_in_typebuf(p, TRUE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 vim_free(p);
1200 }
1201#endif
1202 else if (regname == '.') /* use last inserted text */
1203 {
1204 p = get_last_insert_save();
1205 if (p == NULL)
1206 {
1207 EMSG(_(e_noinstext));
1208 return FAIL;
1209 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001210 retval = put_in_typebuf(p, FALSE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 vim_free(p);
1212 }
1213 else
1214 {
1215 get_yank_register(regname, FALSE);
1216 if (y_current->y_array == NULL)
1217 return FAIL;
1218
1219 /* Disallow remaping for ":@r". */
1220 remap = colon ? REMAP_NONE : REMAP_YES;
1221
1222 /*
1223 * Insert lines into typeahead buffer, from last one to first one.
1224 */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001225 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 for (i = y_current->y_size; --i >= 0; )
1227 {
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001228 char_u *escaped;
1229
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 /* insert NL between lines and after last line if type is MLINE */
1231 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1232 || addcr)
1233 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001234 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 return FAIL;
1236 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001237 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1238 if (escaped == NULL)
1239 return FAIL;
1240 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1241 vim_free(escaped);
1242 if (retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 return FAIL;
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001244 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 == FAIL)
1246 return FAIL;
1247 }
1248 Exec_reg = TRUE; /* disable the 'q' command */
1249 }
1250 return retval;
1251}
1252
1253/*
1254 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1255 * used only after other typeahead has been processed.
1256 */
1257 static void
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001258put_reedit_in_typebuf(silent)
1259 int silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260{
1261 char_u buf[3];
1262
1263 if (restart_edit != NUL)
1264 {
1265 if (restart_edit == 'V')
1266 {
1267 buf[0] = 'g';
1268 buf[1] = 'R';
1269 buf[2] = NUL;
1270 }
1271 else
1272 {
1273 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1274 buf[1] = NUL;
1275 }
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001276 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 restart_edit = NUL;
1278 }
1279}
1280
1281 static int
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001282put_in_typebuf(s, esc, colon, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 char_u *s;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001284 int esc; /* Escape CSI characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 int colon; /* add ':' before the line */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001286 int silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287{
1288 int retval = OK;
1289
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001290 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 if (colon)
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001292 retval = ins_typebuf((char_u *)"\n", REMAP_YES, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 if (retval == OK)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001294 {
1295 char_u *p;
1296
1297 if (esc)
1298 p = vim_strsave_escape_csi(s);
1299 else
1300 p = s;
1301 if (p == NULL)
1302 retval = FAIL;
1303 else
1304 retval = ins_typebuf(p, REMAP_YES, 0, TRUE, silent);
1305 if (esc)
1306 vim_free(p);
1307 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 if (colon && retval == OK)
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001309 retval = ins_typebuf((char_u *)":", REMAP_YES, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 return retval;
1311}
1312
1313/*
1314 * Insert a yank register: copy it into the Read buffer.
1315 * Used by CTRL-R command and middle mouse button in insert mode.
1316 *
1317 * return FAIL for failure, OK otherwise
1318 */
1319 int
1320insert_reg(regname, literally)
1321 int regname;
1322 int literally; /* insert literally, not as if typed */
1323{
1324 long i;
1325 int retval = OK;
1326 char_u *arg;
1327 int allocated;
1328
1329 /*
1330 * It is possible to get into an endless loop by having CTRL-R a in
1331 * register a and then, in insert mode, doing CTRL-R a.
1332 * If you hit CTRL-C, the loop will be broken here.
1333 */
1334 ui_breakcheck();
1335 if (got_int)
1336 return FAIL;
1337
1338 /* check for valid regname */
1339 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1340 return FAIL;
1341
1342#ifdef FEAT_CLIPBOARD
1343 regname = may_get_selection(regname);
1344#endif
1345
1346 if (regname == '.') /* insert last inserted text */
1347 retval = stuff_inserted(NUL, 1L, TRUE);
1348 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1349 {
1350 if (arg == NULL)
1351 return FAIL;
1352 stuffescaped(arg, literally);
1353 if (allocated)
1354 vim_free(arg);
1355 }
1356 else /* name or number register */
1357 {
1358 get_yank_register(regname, FALSE);
1359 if (y_current->y_array == NULL)
1360 retval = FAIL;
1361 else
1362 {
1363 for (i = 0; i < y_current->y_size; ++i)
1364 {
1365 stuffescaped(y_current->y_array[i], literally);
1366 /*
1367 * Insert a newline between lines and after last line if
1368 * y_type is MLINE.
1369 */
1370 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1371 stuffcharReadbuff('\n');
1372 }
1373 }
1374 }
1375
1376 return retval;
1377}
1378
1379/*
1380 * Stuff a string into the typeahead buffer, such that edit() will insert it
1381 * literally ("literally" TRUE) or interpret is as typed characters.
1382 */
1383 static void
1384stuffescaped(arg, literally)
1385 char_u *arg;
1386 int literally;
1387{
1388 int c;
1389 char_u *start;
1390
1391 while (*arg != NUL)
1392 {
1393 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1394 * stuff K_SPECIAL to get the effect of a special key when "literally"
1395 * is TRUE. */
1396 start = arg;
1397 while ((*arg >= ' '
1398#ifndef EBCDIC
1399 && *arg < DEL /* EBCDIC: chars above space are normal */
1400#endif
1401 )
1402 || (*arg == K_SPECIAL && !literally))
1403 ++arg;
1404 if (arg > start)
1405 stuffReadbuffLen(start, (long)(arg - start));
1406
1407 /* stuff a single special character */
1408 if (*arg != NUL)
1409 {
1410#ifdef FEAT_MBYTE
1411 if (has_mbyte)
1412 c = mb_ptr2char_adv(&arg);
1413 else
1414#endif
1415 c = *arg++;
1416 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1417 stuffcharReadbuff(Ctrl_V);
1418 stuffcharReadbuff(c);
1419 }
1420 }
1421}
1422
1423/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001424 * If "regname" is a special register, return TRUE and store a pointer to its
1425 * value in "argp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426 */
Bram Moolenaar8299df92004-07-10 09:47:34 +00001427 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428get_spec_reg(regname, argp, allocated, errmsg)
1429 int regname;
1430 char_u **argp;
Bram Moolenaard55de222007-05-06 13:38:48 +00001431 int *allocated; /* return: TRUE when value was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 int errmsg; /* give error message when failing */
1433{
1434 int cnt;
1435
1436 *argp = NULL;
1437 *allocated = FALSE;
1438 switch (regname)
1439 {
1440 case '%': /* file name */
1441 if (errmsg)
1442 check_fname(); /* will give emsg if not set */
1443 *argp = curbuf->b_fname;
1444 return TRUE;
1445
1446 case '#': /* alternate file name */
1447 *argp = getaltfname(errmsg); /* may give emsg if not set */
1448 return TRUE;
1449
1450#ifdef FEAT_EVAL
1451 case '=': /* result of expression */
1452 *argp = get_expr_line();
1453 *allocated = TRUE;
1454 return TRUE;
1455#endif
1456
1457 case ':': /* last command line */
1458 if (last_cmdline == NULL && errmsg)
1459 EMSG(_(e_nolastcmd));
1460 *argp = last_cmdline;
1461 return TRUE;
1462
1463 case '/': /* last search-pattern */
1464 if (last_search_pat() == NULL && errmsg)
1465 EMSG(_(e_noprevre));
1466 *argp = last_search_pat();
1467 return TRUE;
1468
1469 case '.': /* last inserted text */
1470 *argp = get_last_insert_save();
1471 *allocated = TRUE;
1472 if (*argp == NULL && errmsg)
1473 EMSG(_(e_noinstext));
1474 return TRUE;
1475
1476#ifdef FEAT_SEARCHPATH
1477 case Ctrl_F: /* Filename under cursor */
1478 case Ctrl_P: /* Path under cursor, expand via "path" */
1479 if (!errmsg)
1480 return FALSE;
1481 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001482 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 *allocated = TRUE;
1484 return TRUE;
1485#endif
1486
1487 case Ctrl_W: /* word under cursor */
1488 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1489 if (!errmsg)
1490 return FALSE;
1491 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1492 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1493 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1494 *allocated = TRUE;
1495 return TRUE;
1496
1497 case '_': /* black hole: always empty */
1498 *argp = (char_u *)"";
1499 return TRUE;
1500 }
1501
1502 return FALSE;
1503}
1504
1505/*
Bram Moolenaar8299df92004-07-10 09:47:34 +00001506 * Paste a yank register into the command line.
1507 * Only for non-special registers.
1508 * Used by CTRL-R command in command-line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 * insert_reg() can't be used here, because special characters from the
1510 * register contents will be interpreted as commands.
1511 *
1512 * return FAIL for failure, OK otherwise
1513 */
1514 int
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001515cmdline_paste_reg(regname, literally, remcr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 int regname;
1517 int literally; /* Insert text literally instead of "as typed" */
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001518 int remcr; /* don't add trailing CR */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519{
1520 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521
1522 get_yank_register(regname, FALSE);
1523 if (y_current->y_array == NULL)
1524 return FAIL;
1525
1526 for (i = 0; i < y_current->y_size; ++i)
1527 {
1528 cmdline_paste_str(y_current->y_array[i], literally);
1529
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001530 /* Insert ^M between lines and after last line if type is MLINE.
1531 * Don't do this when "remcr" is TRUE and the next line is empty. */
1532 if (y_current->y_type == MLINE
1533 || (i < y_current->y_size - 1
1534 && !(remcr
1535 && i == y_current->y_size - 2
1536 && *y_current->y_array[i + 1] == NUL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 cmdline_paste_str((char_u *)"\r", literally);
1538
1539 /* Check for CTRL-C, in case someone tries to paste a few thousand
1540 * lines and gets bored. */
1541 ui_breakcheck();
1542 if (got_int)
1543 return FAIL;
1544 }
1545 return OK;
1546}
1547
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548#if defined(FEAT_CLIPBOARD) || defined(PROTO)
1549/*
1550 * Adjust the register name pointed to with "rp" for the clipboard being
1551 * used always and the clipboard being available.
1552 */
1553 void
1554adjust_clip_reg(rp)
1555 int *rp;
1556{
1557 /* If no reg. specified, and "unnamed" is in 'clipboard', use '*' reg. */
1558 if (*rp == 0 && clip_unnamed)
1559 *rp = '*';
1560 if (!clip_star.available && *rp == '*')
1561 *rp = 0;
1562 if (!clip_plus.available && *rp == '+')
1563 *rp = 0;
1564}
1565#endif
1566
1567/*
1568 * op_delete - handle a delete operation
1569 *
1570 * return FAIL if undo failed, OK otherwise.
1571 */
1572 int
1573op_delete(oap)
1574 oparg_T *oap;
1575{
1576 int n;
1577 linenr_T lnum;
1578 char_u *ptr;
1579#ifdef FEAT_VISUAL
1580 char_u *newp, *oldp;
1581 struct block_def bd;
1582#endif
1583 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1584 int did_yank = FALSE;
1585
1586 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1587 return OK;
1588
1589 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1590 if (oap->empty)
1591 return u_save_cursor();
1592
1593 if (!curbuf->b_p_ma)
1594 {
1595 EMSG(_(e_modifiable));
1596 return FAIL;
1597 }
1598
1599#ifdef FEAT_CLIPBOARD
1600 adjust_clip_reg(&oap->regname);
1601#endif
1602
1603#ifdef FEAT_MBYTE
1604 if (has_mbyte)
1605 mb_adjust_opend(oap);
1606#endif
1607
1608/*
1609 * Imitate the strange Vi behaviour: If the delete spans more than one line
1610 * and motion_type == MCHAR and the result is a blank line, make the delete
1611 * linewise. Don't do this for the change command or Visual mode.
1612 */
1613 if ( oap->motion_type == MCHAR
1614#ifdef FEAT_VISUAL
1615 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001616 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617#endif
1618 && oap->line_count > 1
1619 && oap->op_type == OP_DELETE)
1620 {
1621 ptr = ml_get(oap->end.lnum) + oap->end.col + oap->inclusive;
1622 ptr = skipwhite(ptr);
1623 if (*ptr == NUL && inindent(0))
1624 oap->motion_type = MLINE;
1625 }
1626
1627/*
1628 * Check for trying to delete (e.g. "D") in an empty line.
1629 * Note: For the change operator it is ok.
1630 */
1631 if ( oap->motion_type == MCHAR
1632 && oap->line_count == 1
1633 && oap->op_type == OP_DELETE
1634 && *ml_get(oap->start.lnum) == NUL)
1635 {
1636 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001637 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 * 'cpoptions' (Vi compatible).
1639 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001640#ifdef FEAT_VIRTUALEDIT
1641 if (virtual_op)
1642 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1643 * marks as if it happened. */
1644 goto setmarks;
1645#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1647 beep_flush();
1648 return OK;
1649 }
1650
1651/*
1652 * Do a yank of whatever we're about to delete.
1653 * If a yank register was specified, put the deleted text into that register.
1654 * For the black hole register '_' don't yank anything.
1655 */
1656 if (oap->regname != '_')
1657 {
1658 if (oap->regname != 0)
1659 {
1660 /* check for read-only register */
1661 if (!valid_yank_reg(oap->regname, TRUE))
1662 {
1663 beep_flush();
1664 return OK;
1665 }
1666 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1667 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1668 did_yank = TRUE;
1669 }
1670
1671 /*
1672 * Put deleted text into register 1 and shift number registers if the
1673 * delete contains a line break, or when a regname has been specified.
1674 */
1675 if (oap->regname != 0 || oap->motion_type == MLINE
1676 || oap->line_count > 1 || oap->use_reg_one)
1677 {
1678 y_current = &y_regs[9];
1679 free_yank_all(); /* free register nine */
1680 for (n = 9; n > 1; --n)
1681 y_regs[n] = y_regs[n - 1];
1682 y_previous = y_current = &y_regs[1];
1683 y_regs[1].y_array = NULL; /* set register one to empty */
1684 if (op_yank(oap, TRUE, FALSE) == OK)
1685 did_yank = TRUE;
1686 }
1687
1688 /* Yank into small delete register when no register specified and the
1689 * delete is within one line. */
1690 if (oap->regname == 0 && oap->motion_type != MLINE
1691 && oap->line_count == 1)
1692 {
1693 oap->regname = '-';
1694 get_yank_register(oap->regname, TRUE);
1695 if (op_yank(oap, TRUE, FALSE) == OK)
1696 did_yank = TRUE;
1697 oap->regname = 0;
1698 }
1699
1700 /*
1701 * If there's too much stuff to fit in the yank register, then get a
1702 * confirmation before doing the delete. This is crude, but simple.
1703 * And it avoids doing a delete of something we can't put back if we
1704 * want.
1705 */
1706 if (!did_yank)
1707 {
1708 int msg_silent_save = msg_silent;
1709
1710 msg_silent = 0; /* must display the prompt */
1711 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1712 msg_silent = msg_silent_save;
1713 if (n != 'y')
1714 {
1715 EMSG(_(e_abort));
1716 return FAIL;
1717 }
1718 }
1719 }
1720
1721#ifdef FEAT_VISUAL
1722/*
1723 * block mode delete
1724 */
1725 if (oap->block_mode)
1726 {
1727 if (u_save((linenr_T)(oap->start.lnum - 1),
1728 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1729 return FAIL;
1730
1731 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1732 {
1733 block_prep(oap, &bd, lnum, TRUE);
1734 if (bd.textlen == 0) /* nothing to delete */
1735 continue;
1736
1737 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1738 if (lnum == curwin->w_cursor.lnum)
1739 {
1740 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1741# ifdef FEAT_VIRTUALEDIT
1742 curwin->w_cursor.coladd = 0;
1743# endif
1744 }
1745
1746 /* n == number of chars deleted
1747 * If we delete a TAB, it may be replaced by several characters.
1748 * Thus the number of characters may increase!
1749 */
1750 n = bd.textlen - bd.startspaces - bd.endspaces;
1751 oldp = ml_get(lnum);
1752 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1753 if (newp == NULL)
1754 continue;
1755 /* copy up to deleted part */
1756 mch_memmove(newp, oldp, (size_t)bd.textcol);
1757 /* insert spaces */
1758 copy_spaces(newp + bd.textcol,
1759 (size_t)(bd.startspaces + bd.endspaces));
1760 /* copy the part after the deleted part */
1761 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001762 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 /* replace the line */
1764 ml_replace(lnum, newp, FALSE);
1765 }
1766
1767 check_cursor_col();
1768 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1769 oap->end.lnum + 1, 0L);
1770 oap->line_count = 0; /* no lines deleted */
1771 }
1772 else
1773#endif
1774 if (oap->motion_type == MLINE)
1775 {
1776 if (oap->op_type == OP_CHANGE)
1777 {
1778 /* Delete the lines except the first one. Temporarily move the
1779 * cursor to the next line. Save the current line number, if the
1780 * last line is deleted it may be changed.
1781 */
1782 if (oap->line_count > 1)
1783 {
1784 lnum = curwin->w_cursor.lnum;
1785 ++curwin->w_cursor.lnum;
1786 del_lines((long)(oap->line_count - 1), TRUE);
1787 curwin->w_cursor.lnum = lnum;
1788 }
1789 if (u_save_cursor() == FAIL)
1790 return FAIL;
1791 if (curbuf->b_p_ai) /* don't delete indent */
1792 {
1793 beginline(BL_WHITE); /* cursor on first non-white */
1794 did_ai = TRUE; /* delete the indent when ESC hit */
1795 ai_col = curwin->w_cursor.col;
1796 }
1797 else
1798 beginline(0); /* cursor in column 0 */
1799 truncate_line(FALSE); /* delete the rest of the line */
1800 /* leave cursor past last char in line */
1801 if (oap->line_count > 1)
1802 u_clearline(); /* "U" command not possible after "2cc" */
1803 }
1804 else
1805 {
1806 del_lines(oap->line_count, TRUE);
1807 beginline(BL_WHITE | BL_FIX);
1808 u_clearline(); /* "U" command not possible after "dd" */
1809 }
1810 }
1811 else
1812 {
1813#ifdef FEAT_VIRTUALEDIT
1814 if (virtual_op)
1815 {
1816 int endcol = 0;
1817
1818 /* For virtualedit: break the tabs that are partly included. */
1819 if (gchar_pos(&oap->start) == '\t')
1820 {
1821 if (u_save_cursor() == FAIL) /* save first line for undo */
1822 return FAIL;
1823 if (oap->line_count == 1)
1824 endcol = getviscol2(oap->end.col, oap->end.coladd);
1825 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1826 oap->start = curwin->w_cursor;
1827 if (oap->line_count == 1)
1828 {
1829 coladvance(endcol);
1830 oap->end.col = curwin->w_cursor.col;
1831 oap->end.coladd = curwin->w_cursor.coladd;
1832 curwin->w_cursor = oap->start;
1833 }
1834 }
1835
1836 /* Break a tab only when it's included in the area. */
1837 if (gchar_pos(&oap->end) == '\t'
1838 && (int)oap->end.coladd < oap->inclusive)
1839 {
1840 /* save last line for undo */
1841 if (u_save((linenr_T)(oap->end.lnum - 1),
1842 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1843 return FAIL;
1844 curwin->w_cursor = oap->end;
1845 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1846 oap->end = curwin->w_cursor;
1847 curwin->w_cursor = oap->start;
1848 }
1849 }
1850#endif
1851
1852 if (oap->line_count == 1) /* delete characters within one line */
1853 {
1854 if (u_save_cursor() == FAIL) /* save line for undo */
1855 return FAIL;
1856
1857 /* if 'cpoptions' contains '$', display '$' at end of change */
1858 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
1859 && oap->op_type == OP_CHANGE
1860 && oap->end.lnum == curwin->w_cursor.lnum
1861#ifdef FEAT_VISUAL
1862 && !oap->is_VIsual
1863#endif
1864 )
1865 display_dollar(oap->end.col - !oap->inclusive);
1866
1867 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1868
1869#ifdef FEAT_VIRTUALEDIT
1870 if (virtual_op)
1871 {
1872 /* fix up things for virtualedit-delete:
1873 * break the tabs which are going to get in our way
1874 */
1875 char_u *curline = ml_get_curline();
1876 int len = (int)STRLEN(curline);
1877
1878 if (oap->end.coladd != 0
1879 && (int)oap->end.col >= len - 1
1880 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1881 n++;
1882 /* Delete at least one char (e.g, when on a control char). */
1883 if (n == 0 && oap->start.coladd != oap->end.coladd)
1884 n = 1;
1885
1886 /* When deleted a char in the line, reset coladd. */
1887 if (gchar_cursor() != NUL)
1888 curwin->w_cursor.coladd = 0;
1889 }
1890#endif
Bram Moolenaarca003e12006-03-17 23:19:38 +00001891 (void)del_bytes((long)n, !virtual_op, oap->op_type == OP_DELETE
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001892#ifdef FEAT_VISUAL
1893 && !oap->is_VIsual
1894#endif
1895 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 }
1897 else /* delete characters between lines */
1898 {
1899 pos_T curpos;
1900
1901 /* save deleted and changed lines for undo */
1902 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1903 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1904 return FAIL;
1905
1906 truncate_line(TRUE); /* delete from cursor to end of line */
1907
1908 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1909 ++curwin->w_cursor.lnum;
1910 del_lines((long)(oap->line_count - 2), FALSE);
1911
1912 /* delete from start of line until op_end */
1913 curwin->w_cursor.col = 0;
1914 (void)del_bytes((long)(oap->end.col + 1 - !oap->inclusive),
Bram Moolenaarca003e12006-03-17 23:19:38 +00001915 !virtual_op, oap->op_type == OP_DELETE
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001916#ifdef FEAT_VISUAL
1917 && !oap->is_VIsual
1918#endif
1919 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
1921
1922 (void)do_join(FALSE);
1923 }
1924 }
1925
1926 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
1927
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001928#ifdef FEAT_VIRTUALEDIT
1929setmarks:
1930#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931#ifdef FEAT_VISUAL
1932 if (oap->block_mode)
1933 {
1934 curbuf->b_op_end.lnum = oap->end.lnum;
1935 curbuf->b_op_end.col = oap->start.col;
1936 }
1937 else
1938#endif
1939 curbuf->b_op_end = oap->start;
1940 curbuf->b_op_start = oap->start;
1941
1942 return OK;
1943}
1944
1945#ifdef FEAT_MBYTE
1946/*
1947 * Adjust end of operating area for ending on a multi-byte character.
1948 * Used for deletion.
1949 */
1950 static void
1951mb_adjust_opend(oap)
1952 oparg_T *oap;
1953{
1954 char_u *p;
1955
1956 if (oap->inclusive)
1957 {
1958 p = ml_get(oap->end.lnum);
1959 oap->end.col += mb_tail_off(p, p + oap->end.col);
1960 }
1961}
1962#endif
1963
1964#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1965/*
1966 * Replace a whole area with one character.
1967 */
1968 int
1969op_replace(oap, c)
1970 oparg_T *oap;
1971 int c;
1972{
1973 int n, numc;
1974#ifdef FEAT_MBYTE
1975 int num_chars;
1976#endif
1977 char_u *newp, *oldp;
1978 size_t oldlen;
1979 struct block_def bd;
1980
1981 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
1982 return OK; /* nothing to do */
1983
1984#ifdef FEAT_MBYTE
1985 if (has_mbyte)
1986 mb_adjust_opend(oap);
1987#endif
1988
1989 if (u_save((linenr_T)(oap->start.lnum - 1),
1990 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1991 return FAIL;
1992
1993 /*
1994 * block mode replace
1995 */
1996 if (oap->block_mode)
1997 {
1998 bd.is_MAX = (curwin->w_curswant == MAXCOL);
1999 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2000 {
2001 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2002 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2003 continue; /* nothing to replace */
2004
2005 /* n == number of extra chars required
2006 * If we split a TAB, it may be replaced by several characters.
2007 * Thus the number of characters may increase!
2008 */
2009#ifdef FEAT_VIRTUALEDIT
2010 /* If the range starts in virtual space, count the initial
2011 * coladd offset as part of "startspaces" */
2012 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2013 {
2014 pos_T vpos;
2015
2016 getvpos(&vpos, oap->start_vcol);
2017 bd.startspaces += vpos.coladd;
2018 n = bd.startspaces;
2019 }
2020 else
2021#endif
2022 /* allow for pre spaces */
2023 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2024
2025 /* allow for post spp */
2026 n += (bd.endspaces
2027#ifdef FEAT_VIRTUALEDIT
2028 && !bd.is_oneChar
2029#endif
2030 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2031 /* Figure out how many characters to replace. */
2032 numc = oap->end_vcol - oap->start_vcol + 1;
2033 if (bd.is_short && (!virtual_op || bd.is_MAX))
2034 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2035
2036#ifdef FEAT_MBYTE
2037 /* A double-wide character can be replaced only up to half the
2038 * times. */
2039 if ((*mb_char2cells)(c) > 1)
2040 {
2041 if ((numc & 1) && !bd.is_short)
2042 {
2043 ++bd.endspaces;
2044 ++n;
2045 }
2046 numc = numc / 2;
2047 }
2048
2049 /* Compute bytes needed, move character count to num_chars. */
2050 num_chars = numc;
2051 numc *= (*mb_char2len)(c);
2052#endif
2053 /* oldlen includes textlen, so don't double count */
2054 n += numc - bd.textlen;
2055
2056 oldp = ml_get_curline();
2057 oldlen = STRLEN(oldp);
2058 newp = alloc_check((unsigned)oldlen + 1 + n);
2059 if (newp == NULL)
2060 continue;
2061 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2062 /* copy up to deleted part */
2063 mch_memmove(newp, oldp, (size_t)bd.textcol);
2064 oldp += bd.textcol + bd.textlen;
2065 /* insert pre-spaces */
2066 copy_spaces(newp + bd.textcol, (size_t)bd.startspaces);
2067 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
2068#ifdef FEAT_MBYTE
2069 if (has_mbyte)
2070 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002071 n = (int)STRLEN(newp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 while (--num_chars >= 0)
2073 n += (*mb_char2bytes)(c, newp + n);
2074 }
2075 else
2076#endif
2077 copy_chars(newp + STRLEN(newp), (size_t)numc, c);
2078 if (!bd.is_short)
2079 {
2080 /* insert post-spaces */
2081 copy_spaces(newp + STRLEN(newp), (size_t)bd.endspaces);
2082 /* copy the part after the changed part */
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002083 STRMOVE(newp + STRLEN(newp), oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084 }
2085 /* replace the line */
2086 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
2087 }
2088 }
2089 else
2090 {
2091 /*
2092 * MCHAR and MLINE motion replace.
2093 */
2094 if (oap->motion_type == MLINE)
2095 {
2096 oap->start.col = 0;
2097 curwin->w_cursor.col = 0;
2098 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2099 if (oap->end.col)
2100 --oap->end.col;
2101 }
2102 else if (!oap->inclusive)
2103 dec(&(oap->end));
2104
2105 while (ltoreq(curwin->w_cursor, oap->end))
2106 {
2107 n = gchar_cursor();
2108 if (n != NUL)
2109 {
2110#ifdef FEAT_MBYTE
2111 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2112 {
2113 /* This is slow, but it handles replacing a single-byte
2114 * with a multi-byte and the other way around. */
2115 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
2116 n = State;
2117 State = REPLACE;
2118 ins_char(c);
2119 State = n;
2120 /* Backup to the replaced character. */
2121 dec_cursor();
2122 }
2123 else
2124#endif
2125 {
2126#ifdef FEAT_VIRTUALEDIT
2127 if (n == TAB)
2128 {
2129 int end_vcol = 0;
2130
2131 if (curwin->w_cursor.lnum == oap->end.lnum)
2132 {
2133 /* oap->end has to be recalculated when
2134 * the tab breaks */
2135 end_vcol = getviscol2(oap->end.col,
2136 oap->end.coladd);
2137 }
2138 coladvance_force(getviscol());
2139 if (curwin->w_cursor.lnum == oap->end.lnum)
2140 getvpos(&oap->end, end_vcol);
2141 }
2142#endif
2143 pchar(curwin->w_cursor, c);
2144 }
2145 }
2146#ifdef FEAT_VIRTUALEDIT
2147 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2148 {
2149 int virtcols = oap->end.coladd;
2150
2151 if (curwin->w_cursor.lnum == oap->start.lnum
2152 && oap->start.col == oap->end.col && oap->start.coladd)
2153 virtcols -= oap->start.coladd;
2154
2155 /* oap->end has been trimmed so it's effectively inclusive;
2156 * as a result an extra +1 must be counted so we don't
2157 * trample the NUL byte. */
2158 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2159 curwin->w_cursor.col -= (virtcols + 1);
2160 for (; virtcols >= 0; virtcols--)
2161 {
2162 pchar(curwin->w_cursor, c);
2163 if (inc(&curwin->w_cursor) == -1)
2164 break;
2165 }
2166 }
2167#endif
2168
2169 /* Advance to next character, stop at the end of the file. */
2170 if (inc_cursor() == -1)
2171 break;
2172 }
2173 }
2174
2175 curwin->w_cursor = oap->start;
2176 check_cursor();
2177 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2178
2179 /* Set "'[" and "']" marks. */
2180 curbuf->b_op_start = oap->start;
2181 curbuf->b_op_end = oap->end;
2182
2183 return OK;
2184}
2185#endif
2186
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002187static int swapchars __ARGS((int op_type, pos_T *pos, int length));
2188
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189/*
2190 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2191 */
2192 void
2193op_tilde(oap)
2194 oparg_T *oap;
2195{
2196 pos_T pos;
2197#ifdef FEAT_VISUAL
2198 struct block_def bd;
Bram Moolenaar60a795a2005-09-16 21:55:43 +00002199#endif
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002200 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201
2202 if (u_save((linenr_T)(oap->start.lnum - 1),
2203 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2204 return;
2205
2206 pos = oap->start;
2207#ifdef FEAT_VISUAL
2208 if (oap->block_mode) /* Visual block mode */
2209 {
2210 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2211 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002212 int one_change;
2213
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 block_prep(oap, &bd, pos.lnum, FALSE);
2215 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002216 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2217 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002218
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219# ifdef FEAT_NETBEANS_INTG
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002220 if (usingNetbeans && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 {
2222 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2223
Bram Moolenaar009b2592004-10-24 19:18:58 +00002224 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2225 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaar009b2592004-10-24 19:18:58 +00002227 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 }
2229# endif
2230 }
2231 if (did_change)
2232 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2233 }
2234 else /* not block mode */
2235#endif
2236 {
2237 if (oap->motion_type == MLINE)
2238 {
2239 oap->start.col = 0;
2240 pos.col = 0;
2241 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2242 if (oap->end.col)
2243 --oap->end.col;
2244 }
2245 else if (!oap->inclusive)
2246 dec(&(oap->end));
2247
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002248 if (pos.lnum == oap->end.lnum)
2249 did_change = swapchars(oap->op_type, &pos,
2250 oap->end.col - pos.col + 1);
2251 else
2252 for (;;)
2253 {
2254 did_change |= swapchars(oap->op_type, &pos,
2255 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2256 (int)STRLEN(ml_get_pos(&pos)));
2257 if (ltoreq(oap->end, pos) || inc(&pos) == -1)
2258 break;
2259 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 if (did_change)
2261 {
2262 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2263 0L);
2264#ifdef FEAT_NETBEANS_INTG
2265 if (usingNetbeans && did_change)
2266 {
2267 char_u *ptr;
2268 int count;
2269
2270 pos = oap->start;
2271 while (pos.lnum < oap->end.lnum)
2272 {
2273 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002274 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002275 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00002277 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 pos.col = 0;
2279 pos.lnum++;
2280 }
2281 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2282 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002283 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00002285 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 }
2287#endif
2288 }
2289 }
2290
2291#ifdef FEAT_VISUAL
2292 if (!did_change && oap->is_VIsual)
2293 /* No change: need to remove the Visual selection */
2294 redraw_curbuf_later(INVERTED);
2295#endif
2296
2297 /*
2298 * Set '[ and '] marks.
2299 */
2300 curbuf->b_op_start = oap->start;
2301 curbuf->b_op_end = oap->end;
2302
2303 if (oap->line_count > p_report)
2304 {
2305 if (oap->line_count == 1)
2306 MSG(_("1 line changed"));
2307 else
2308 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2309 }
2310}
2311
2312/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002313 * Invoke swapchar() on "length" bytes at position "pos".
2314 * "pos" is advanced to just after the changed characters.
2315 * "length" is rounded up to include the whole last multi-byte character.
2316 * Also works correctly when the number of bytes changes.
2317 * Returns TRUE if some character was changed.
2318 */
2319 static int
2320swapchars(op_type, pos, length)
2321 int op_type;
2322 pos_T *pos;
2323 int length;
2324{
2325 int todo;
2326 int did_change = 0;
2327
2328 for (todo = length; todo > 0; --todo)
2329 {
2330# ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002331 if (has_mbyte)
2332 /* we're counting bytes, not characters */
2333 todo -= (*mb_ptr2len)(ml_get_pos(pos)) - 1;
2334# endif
2335 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002336 if (inc(pos) == -1) /* at end of file */
2337 break;
2338 }
2339 return did_change;
2340}
2341
2342/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343 * If op_type == OP_UPPER: make uppercase,
2344 * if op_type == OP_LOWER: make lowercase,
2345 * if op_type == OP_ROT13: do rot13 encoding,
2346 * else swap case of character at 'pos'
2347 * returns TRUE when something actually changed.
2348 */
2349 int
2350swapchar(op_type, pos)
2351 int op_type;
2352 pos_T *pos;
2353{
2354 int c;
2355 int nc;
2356
2357 c = gchar_pos(pos);
2358
2359 /* Only do rot13 encoding for ASCII characters. */
2360 if (c >= 0x80 && op_type == OP_ROT13)
2361 return FALSE;
2362
2363#ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002364 if (op_type == OP_UPPER && c == 0xdf
2365 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002366 {
2367 pos_T sp = curwin->w_cursor;
2368
2369 /* Special handling of German sharp s: change to "SS". */
2370 curwin->w_cursor = *pos;
2371 del_char(FALSE);
2372 ins_char('S');
2373 ins_char('S');
2374 curwin->w_cursor = sp;
2375 inc(pos);
2376 }
2377
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2379 return FALSE;
2380#endif
2381 nc = c;
2382 if (MB_ISLOWER(c))
2383 {
2384 if (op_type == OP_ROT13)
2385 nc = ROT13(c, 'a');
2386 else if (op_type != OP_LOWER)
2387 nc = MB_TOUPPER(c);
2388 }
2389 else if (MB_ISUPPER(c))
2390 {
2391 if (op_type == OP_ROT13)
2392 nc = ROT13(c, 'A');
2393 else if (op_type != OP_UPPER)
2394 nc = MB_TOLOWER(c);
2395 }
2396 if (nc != c)
2397 {
2398#ifdef FEAT_MBYTE
2399 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2400 {
2401 pos_T sp = curwin->w_cursor;
2402
2403 curwin->w_cursor = *pos;
2404 del_char(FALSE);
2405 ins_char(nc);
2406 curwin->w_cursor = sp;
2407 }
2408 else
2409#endif
2410 pchar(*pos, nc);
2411 return TRUE;
2412 }
2413 return FALSE;
2414}
2415
2416#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2417/*
2418 * op_insert - Insert and append operators for Visual mode.
2419 */
2420 void
2421op_insert(oap, count1)
2422 oparg_T *oap;
2423 long count1;
2424{
2425 long ins_len, pre_textlen = 0;
2426 char_u *firstline, *ins_text;
2427 struct block_def bd;
2428 int i;
2429
2430 /* edit() changes this - record it for OP_APPEND */
2431 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2432
2433 /* vis block is still marked. Get rid of it now. */
2434 curwin->w_cursor.lnum = oap->start.lnum;
2435 update_screen(INVERTED);
2436
2437 if (oap->block_mode)
2438 {
2439#ifdef FEAT_VIRTUALEDIT
2440 /* When 'virtualedit' is used, need to insert the extra spaces before
2441 * doing block_prep(). When only "block" is used, virtual edit is
2442 * already disabled, but still need it when calling
2443 * coladvance_force(). */
2444 if (curwin->w_cursor.coladd > 0)
2445 {
2446 int old_ve_flags = ve_flags;
2447
2448 ve_flags = VE_ALL;
2449 if (u_save_cursor() == FAIL)
2450 return;
2451 coladvance_force(oap->op_type == OP_APPEND
2452 ? oap->end_vcol + 1 : getviscol());
2453 if (oap->op_type == OP_APPEND)
2454 --curwin->w_cursor.col;
2455 ve_flags = old_ve_flags;
2456 }
2457#endif
2458 /* Get the info about the block before entering the text */
2459 block_prep(oap, &bd, oap->start.lnum, TRUE);
2460 firstline = ml_get(oap->start.lnum) + bd.textcol;
2461 if (oap->op_type == OP_APPEND)
2462 firstline += bd.textlen;
2463 pre_textlen = (long)STRLEN(firstline);
2464 }
2465
2466 if (oap->op_type == OP_APPEND)
2467 {
2468 if (oap->block_mode
2469#ifdef FEAT_VIRTUALEDIT
2470 && curwin->w_cursor.coladd == 0
2471#endif
2472 )
2473 {
2474 /* Move the cursor to the character right of the block. */
2475 curwin->w_set_curswant = TRUE;
2476 while (*ml_get_cursor() != NUL
2477 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2478 ++curwin->w_cursor.col;
2479 if (bd.is_short && !bd.is_MAX)
2480 {
2481 /* First line was too short, make it longer and adjust the
2482 * values in "bd". */
2483 if (u_save_cursor() == FAIL)
2484 return;
2485 for (i = 0; i < bd.endspaces; ++i)
2486 ins_char(' ');
2487 bd.textlen += bd.endspaces;
2488 }
2489 }
2490 else
2491 {
2492 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002493 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494
2495 /* Works just like an 'i'nsert on the next character. */
2496 if (!lineempty(curwin->w_cursor.lnum)
2497 && oap->start_vcol != oap->end_vcol)
2498 inc_cursor();
2499 }
2500 }
2501
2502 edit(NUL, FALSE, (linenr_T)count1);
2503
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002504 /* If user has moved off this line, we don't know what to do, so do
2505 * nothing.
2506 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2507 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 return;
2509
2510 if (oap->block_mode)
2511 {
2512 struct block_def bd2;
2513
2514 /*
2515 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002516 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 * Don't do this when "$" used, end-of-line will have changed.
2518 */
2519 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2520 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2521 {
2522 if (oap->op_type == OP_APPEND)
2523 {
2524 pre_textlen += bd2.textlen - bd.textlen;
2525 if (bd2.endspaces)
2526 --bd2.textlen;
2527 }
2528 bd.textcol = bd2.textcol;
2529 bd.textlen = bd2.textlen;
2530 }
2531
2532 /*
2533 * Subsequent calls to ml_get() flush the firstline data - take a
2534 * copy of the required string.
2535 */
2536 firstline = ml_get(oap->start.lnum) + bd.textcol;
2537 if (oap->op_type == OP_APPEND)
2538 firstline += bd.textlen;
2539 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
2540 {
2541 ins_text = vim_strnsave(firstline, (int)ins_len);
2542 if (ins_text != NULL)
2543 {
2544 /* block handled here */
2545 if (u_save(oap->start.lnum,
2546 (linenr_T)(oap->end.lnum + 1)) == OK)
2547 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2548 &bd);
2549
2550 curwin->w_cursor.col = oap->start.col;
2551 check_cursor();
2552 vim_free(ins_text);
2553 }
2554 }
2555 }
2556}
2557#endif
2558
2559/*
2560 * op_change - handle a change operation
2561 *
2562 * return TRUE if edit() returns because of a CTRL-O command
2563 */
2564 int
2565op_change(oap)
2566 oparg_T *oap;
2567{
2568 colnr_T l;
2569 int retval;
2570#ifdef FEAT_VISUALEXTRA
2571 long offset;
2572 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002573 long ins_len;
2574 long pre_textlen = 0;
2575 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 char_u *firstline;
2577 char_u *ins_text, *newp, *oldp;
2578 struct block_def bd;
2579#endif
2580
2581 l = oap->start.col;
2582 if (oap->motion_type == MLINE)
2583 {
2584 l = 0;
2585#ifdef FEAT_SMARTINDENT
2586 if (!p_paste && curbuf->b_p_si
2587# ifdef FEAT_CINDENT
2588 && !curbuf->b_p_cin
2589# endif
2590 )
2591 can_si = TRUE; /* It's like opening a new line, do si */
2592#endif
2593 }
2594
2595 /* First delete the text in the region. In an empty buffer only need to
2596 * save for undo */
2597 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2598 {
2599 if (u_save_cursor() == FAIL)
2600 return FALSE;
2601 }
2602 else if (op_delete(oap) == FAIL)
2603 return FALSE;
2604
2605 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
2606 && !virtual_op)
2607 inc_cursor();
2608
2609#ifdef FEAT_VISUALEXTRA
2610 /* check for still on same line (<CR> in inserted text meaningless) */
2611 /* skip blank lines too */
2612 if (oap->block_mode)
2613 {
2614# ifdef FEAT_VIRTUALEDIT
2615 /* Add spaces before getting the current line length. */
2616 if (virtual_op && (curwin->w_cursor.coladd > 0
2617 || gchar_cursor() == NUL))
2618 coladvance_force(getviscol());
2619# endif
Bram Moolenaar53241da2007-09-13 20:41:32 +00002620 firstline = ml_get(oap->start.lnum);
2621 pre_textlen = (long)STRLEN(firstline);
2622 pre_indent = (long)(skipwhite(firstline) - firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 bd.textcol = curwin->w_cursor.col;
2624 }
2625#endif
2626
2627#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2628 if (oap->motion_type == MLINE)
2629 fix_indent();
2630#endif
2631
2632 retval = edit(NUL, FALSE, (linenr_T)1);
2633
2634#ifdef FEAT_VISUALEXTRA
2635 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002636 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002638 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002640 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002642 /* Auto-indenting may have changed the indent. If the cursor was past
2643 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002645 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002647 long new_indent = (long)(skipwhite(firstline) - firstline);
2648
2649 pre_textlen += new_indent - pre_indent;
2650 bd.textcol += new_indent - pre_indent;
2651 }
2652
2653 ins_len = (long)STRLEN(firstline) - pre_textlen;
2654 if (ins_len > 0)
2655 {
2656 /* Subsequent calls to ml_get() flush the firstline data - take a
2657 * copy of the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2659 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002660 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2662 linenr++)
2663 {
2664 block_prep(oap, &bd, linenr, TRUE);
2665 if (!bd.is_short || virtual_op)
2666 {
2667# ifdef FEAT_VIRTUALEDIT
2668 pos_T vpos;
2669
2670 /* If the block starts in virtual space, count the
2671 * initial coladd offset as part of "startspaces" */
2672 if (bd.is_short)
2673 {
2674 linenr_T lnum = curwin->w_cursor.lnum;
2675
2676 curwin->w_cursor.lnum = linenr;
2677 (void)getvpos(&vpos, oap->start_vcol);
2678 curwin->w_cursor.lnum = lnum;
2679 }
2680 else
2681 vpos.coladd = 0;
2682# endif
2683 oldp = ml_get(linenr);
2684 newp = alloc_check((unsigned)(STRLEN(oldp)
2685# ifdef FEAT_VIRTUALEDIT
2686 + vpos.coladd
2687# endif
2688 + ins_len + 1));
2689 if (newp == NULL)
2690 continue;
2691 /* copy up to block start */
2692 mch_memmove(newp, oldp, (size_t)bd.textcol);
2693 offset = bd.textcol;
2694# ifdef FEAT_VIRTUALEDIT
2695 copy_spaces(newp + offset, (size_t)vpos.coladd);
2696 offset += vpos.coladd;
2697# endif
2698 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2699 offset += ins_len;
2700 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002701 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702 ml_replace(linenr, newp, FALSE);
2703 }
2704 }
2705 check_cursor();
2706
2707 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2708 }
2709 vim_free(ins_text);
2710 }
2711 }
2712#endif
2713
2714 return retval;
2715}
2716
2717/*
2718 * set all the yank registers to empty (called from main())
2719 */
2720 void
2721init_yank()
2722{
2723 int i;
2724
2725 for (i = 0; i < NUM_REGISTERS; ++i)
2726 y_regs[i].y_array = NULL;
2727}
2728
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002729#if defined(EXITFREE) || defined(PROTO)
2730 void
2731clear_registers()
2732{
2733 int i;
2734
2735 for (i = 0; i < NUM_REGISTERS; ++i)
2736 {
2737 y_current = &y_regs[i];
2738 if (y_current->y_array != NULL)
2739 free_yank_all();
2740 }
2741}
2742#endif
2743
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744/*
2745 * Free "n" lines from the current yank register.
2746 * Called for normal freeing and in case of error.
2747 */
2748 static void
2749free_yank(n)
2750 long n;
2751{
2752 if (y_current->y_array != NULL)
2753 {
2754 long i;
2755
2756 for (i = n; --i >= 0; )
2757 {
2758#ifdef AMIGA /* only for very slow machines */
2759 if ((i & 1023) == 1023) /* this may take a while */
2760 {
2761 /*
2762 * This message should never cause a hit-return message.
2763 * Overwrite this message with any next message.
2764 */
2765 ++no_wait_return;
2766 smsg((char_u *)_("freeing %ld lines"), i + 1);
2767 --no_wait_return;
2768 msg_didout = FALSE;
2769 msg_col = 0;
2770 }
2771#endif
2772 vim_free(y_current->y_array[i]);
2773 }
2774 vim_free(y_current->y_array);
2775 y_current->y_array = NULL;
2776#ifdef AMIGA
2777 if (n >= 1000)
2778 MSG("");
2779#endif
2780 }
2781}
2782
2783 static void
2784free_yank_all()
2785{
2786 free_yank(y_current->y_size);
2787}
2788
2789/*
2790 * Yank the text between "oap->start" and "oap->end" into a yank register.
2791 * If we are to append (uppercase register), we first yank into a new yank
2792 * register and then concatenate the old and the new one (so we keep the old
2793 * one in case of out-of-memory).
2794 *
2795 * return FAIL for failure, OK otherwise
2796 */
2797 int
2798op_yank(oap, deleting, mess)
2799 oparg_T *oap;
2800 int deleting;
2801 int mess;
2802{
2803 long y_idx; /* index in y_array[] */
2804 struct yankreg *curr; /* copy of y_current */
2805 struct yankreg newreg; /* new yank register when appending */
2806 char_u **new_ptr;
2807 linenr_T lnum; /* current line number */
2808 long j;
2809 int yanktype = oap->motion_type;
2810 long yanklines = oap->line_count;
2811 linenr_T yankendlnum = oap->end.lnum;
2812 char_u *p;
2813 char_u *pnew;
2814 struct block_def bd;
2815
2816 /* check for read-only register */
2817 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2818 {
2819 beep_flush();
2820 return FAIL;
2821 }
2822 if (oap->regname == '_') /* black hole: nothing to do */
2823 return OK;
2824
2825#ifdef FEAT_CLIPBOARD
2826 if (!clip_star.available && oap->regname == '*')
2827 oap->regname = 0;
2828 else if (!clip_plus.available && oap->regname == '+')
2829 oap->regname = 0;
2830#endif
2831
2832 if (!deleting) /* op_delete() already set y_current */
2833 get_yank_register(oap->regname, TRUE);
2834
2835 curr = y_current;
2836 /* append to existing contents */
2837 if (y_append && y_current->y_array != NULL)
2838 y_current = &newreg;
2839 else
2840 free_yank_all(); /* free previously yanked lines */
2841
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002842 /*
2843 * If the cursor was in column 1 before and after the movement, and the
2844 * operator is not inclusive, the yank is always linewise.
2845 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 if ( oap->motion_type == MCHAR
2847 && oap->start.col == 0
2848 && !oap->inclusive
2849#ifdef FEAT_VISUAL
2850 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00002851 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852#endif
2853 && oap->end.col == 0
2854 && yanklines > 1)
2855 {
2856 yanktype = MLINE;
2857 --yankendlnum;
2858 --yanklines;
2859 }
2860
2861 y_current->y_size = yanklines;
2862 y_current->y_type = yanktype; /* set the yank register type */
2863#ifdef FEAT_VISUAL
2864 y_current->y_width = 0;
2865#endif
2866 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
2867 yanklines), TRUE);
2868
2869 if (y_current->y_array == NULL)
2870 {
2871 y_current = curr;
2872 return FAIL;
2873 }
2874
2875 y_idx = 0;
2876 lnum = oap->start.lnum;
2877
2878#ifdef FEAT_VISUAL
2879 if (oap->block_mode)
2880 {
2881 /* Visual block mode */
2882 y_current->y_type = MBLOCK; /* set the yank register type */
2883 y_current->y_width = oap->end_vcol - oap->start_vcol;
2884
2885 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
2886 y_current->y_width--;
2887 }
2888#endif
2889
2890 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
2891 {
2892 switch (y_current->y_type)
2893 {
2894#ifdef FEAT_VISUAL
2895 case MBLOCK:
2896 block_prep(oap, &bd, lnum, FALSE);
2897 if (yank_copy_line(&bd, y_idx) == FAIL)
2898 goto fail;
2899 break;
2900#endif
2901
2902 case MLINE:
2903 if ((y_current->y_array[y_idx] =
2904 vim_strsave(ml_get(lnum))) == NULL)
2905 goto fail;
2906 break;
2907
2908 case MCHAR:
2909 {
2910 colnr_T startcol = 0, endcol = MAXCOL;
2911#ifdef FEAT_VIRTUALEDIT
2912 int is_oneChar = FALSE;
2913 colnr_T cs, ce;
2914#endif
2915 p = ml_get(lnum);
2916 bd.startspaces = 0;
2917 bd.endspaces = 0;
2918
2919 if (lnum == oap->start.lnum)
2920 {
2921 startcol = oap->start.col;
2922#ifdef FEAT_VIRTUALEDIT
2923 if (virtual_op)
2924 {
2925 getvcol(curwin, &oap->start, &cs, NULL, &ce);
2926 if (ce != cs && oap->start.coladd > 0)
2927 {
2928 /* Part of a tab selected -- but don't
2929 * double-count it. */
2930 bd.startspaces = (ce - cs + 1)
2931 - oap->start.coladd;
2932 startcol++;
2933 }
2934 }
2935#endif
2936 }
2937
2938 if (lnum == oap->end.lnum)
2939 {
2940 endcol = oap->end.col;
2941#ifdef FEAT_VIRTUALEDIT
2942 if (virtual_op)
2943 {
2944 getvcol(curwin, &oap->end, &cs, NULL, &ce);
2945 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
2946# ifdef FEAT_MBYTE
2947 /* Don't add space for double-wide
2948 * char; endcol will be on last byte
2949 * of multi-byte char. */
2950 && (*mb_head_off)(p, p + endcol) == 0
2951# endif
2952 ))
2953 {
2954 if (oap->start.lnum == oap->end.lnum
2955 && oap->start.col == oap->end.col)
2956 {
2957 /* Special case: inside a single char */
2958 is_oneChar = TRUE;
2959 bd.startspaces = oap->end.coladd
2960 - oap->start.coladd + oap->inclusive;
2961 endcol = startcol;
2962 }
2963 else
2964 {
2965 bd.endspaces = oap->end.coladd
2966 + oap->inclusive;
2967 endcol -= oap->inclusive;
2968 }
2969 }
2970 }
2971#endif
2972 }
2973 if (startcol > endcol
2974#ifdef FEAT_VIRTUALEDIT
2975 || is_oneChar
2976#endif
2977 )
2978 bd.textlen = 0;
2979 else
2980 {
2981 if (endcol == MAXCOL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002982 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983 bd.textlen = endcol - startcol + oap->inclusive;
2984 }
2985 bd.textstart = p + startcol;
2986 if (yank_copy_line(&bd, y_idx) == FAIL)
2987 goto fail;
2988 break;
2989 }
2990 /* NOTREACHED */
2991 }
2992 }
2993
2994 if (curr != y_current) /* append the new block to the old block */
2995 {
2996 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
2997 (curr->y_size + y_current->y_size)), TRUE);
2998 if (new_ptr == NULL)
2999 goto fail;
3000 for (j = 0; j < curr->y_size; ++j)
3001 new_ptr[j] = curr->y_array[j];
3002 vim_free(curr->y_array);
3003 curr->y_array = new_ptr;
3004
3005 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3006 curr->y_type = MLINE;
3007
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003008 /* Concatenate the last line of the old block with the first line of
3009 * the new block, unless being Vi compatible. */
3010 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 {
3012 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3013 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3014 if (pnew == NULL)
3015 {
3016 y_idx = y_current->y_size - 1;
3017 goto fail;
3018 }
3019 STRCPY(pnew, curr->y_array[--j]);
3020 STRCAT(pnew, y_current->y_array[0]);
3021 vim_free(curr->y_array[j]);
3022 vim_free(y_current->y_array[0]);
3023 curr->y_array[j++] = pnew;
3024 y_idx = 1;
3025 }
3026 else
3027 y_idx = 0;
3028 while (y_idx < y_current->y_size)
3029 curr->y_array[j++] = y_current->y_array[y_idx++];
3030 curr->y_size = j;
3031 vim_free(y_current->y_array);
3032 y_current = curr;
3033 }
3034 if (mess) /* Display message about yank? */
3035 {
3036 if (yanktype == MCHAR
3037#ifdef FEAT_VISUAL
3038 && !oap->block_mode
3039#endif
3040 && yanklines == 1)
3041 yanklines = 0;
3042 /* Some versions of Vi use ">=" here, some don't... */
3043 if (yanklines > p_report)
3044 {
3045 /* redisplay now, so message is not deleted */
3046 update_topline_redraw();
3047 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003048 {
3049#ifdef FEAT_VISUAL
3050 if (oap->block_mode)
3051 MSG(_("block of 1 line yanked"));
3052 else
3053#endif
3054 MSG(_("1 line yanked"));
3055 }
3056#ifdef FEAT_VISUAL
3057 else if (oap->block_mode)
3058 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
3059#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 else
3061 smsg((char_u *)_("%ld lines yanked"), yanklines);
3062 }
3063 }
3064
3065 /*
3066 * Set "'[" and "']" marks.
3067 */
3068 curbuf->b_op_start = oap->start;
3069 curbuf->b_op_end = oap->end;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003070 if (yanktype == MLINE
3071#ifdef FEAT_VISUAL
3072 && !oap->block_mode
3073#endif
3074 )
3075 {
3076 curbuf->b_op_start.col = 0;
3077 curbuf->b_op_end.col = MAXCOL;
3078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079
3080#ifdef FEAT_CLIPBOARD
3081 /*
3082 * If we were yanking to the '*' register, send result to clipboard.
3083 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3084 * to the '*' register.
3085 */
3086 if (clip_star.available
3087 && (curr == &(y_regs[STAR_REGISTER])
3088 || (!deleting && oap->regname == 0 && clip_unnamed)))
3089 {
3090 if (curr != &(y_regs[STAR_REGISTER]))
3091 /* Copy the text from register 0 to the clipboard register. */
3092 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3093
3094 clip_own_selection(&clip_star);
3095 clip_gen_set_selection(&clip_star);
3096 }
3097
3098# ifdef FEAT_X11
3099 /*
3100 * If we were yanking to the '+' register, send result to selection.
3101 * Also copy to the '*' register, in case auto-select is off.
3102 */
3103 else if (clip_plus.available && curr == &(y_regs[PLUS_REGISTER]))
3104 {
3105 /* No need to copy to * register upon 'unnamed' now - see below */
3106 clip_own_selection(&clip_plus);
3107 clip_gen_set_selection(&clip_plus);
3108 if (!clip_isautosel())
3109 {
3110 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3111 clip_own_selection(&clip_star);
3112 clip_gen_set_selection(&clip_star);
3113 }
3114 }
3115# endif
3116#endif
3117
3118 return OK;
3119
3120fail: /* free the allocated lines */
3121 free_yank(y_idx + 1);
3122 y_current = curr;
3123 return FAIL;
3124}
3125
3126 static int
3127yank_copy_line(bd, y_idx)
3128 struct block_def *bd;
3129 long y_idx;
3130{
3131 char_u *pnew;
3132
3133 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3134 == NULL)
3135 return FAIL;
3136 y_current->y_array[y_idx] = pnew;
3137 copy_spaces(pnew, (size_t)bd->startspaces);
3138 pnew += bd->startspaces;
3139 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3140 pnew += bd->textlen;
3141 copy_spaces(pnew, (size_t)bd->endspaces);
3142 pnew += bd->endspaces;
3143 *pnew = NUL;
3144 return OK;
3145}
3146
3147#ifdef FEAT_CLIPBOARD
3148/*
3149 * Make a copy of the y_current register to register "reg".
3150 */
3151 static void
3152copy_yank_reg(reg)
3153 struct yankreg *reg;
3154{
3155 struct yankreg *curr = y_current;
3156 long j;
3157
3158 y_current = reg;
3159 free_yank_all();
3160 *y_current = *curr;
3161 y_current->y_array = (char_u **)lalloc_clear(
3162 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3163 if (y_current->y_array == NULL)
3164 y_current->y_size = 0;
3165 else
3166 for (j = 0; j < y_current->y_size; ++j)
3167 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3168 {
3169 free_yank(j);
3170 y_current->y_size = 0;
3171 break;
3172 }
3173 y_current = curr;
3174}
3175#endif
3176
3177/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003178 * Put contents of register "regname" into the text.
3179 * Caller must check "regname" to be valid!
3180 * "flags": PUT_FIXINDENT make indent look nice
3181 * PUT_CURSEND leave cursor after end of new text
3182 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 */
3184 void
3185do_put(regname, dir, count, flags)
3186 int regname;
3187 int dir; /* BACKWARD for 'P', FORWARD for 'p' */
3188 long count;
3189 int flags;
3190{
3191 char_u *ptr;
3192 char_u *newp, *oldp;
3193 int yanklen;
3194 int totlen = 0; /* init for gcc */
3195 linenr_T lnum;
3196 colnr_T col;
3197 long i; /* index in y_array[] */
3198 int y_type;
3199 long y_size;
3200#ifdef FEAT_VISUAL
3201 int oldlen;
3202 long y_width = 0;
3203 colnr_T vcol;
3204 int delcount;
3205 int incr = 0;
3206 long j;
3207 struct block_def bd;
3208#endif
3209 char_u **y_array = NULL;
3210 long nr_lines = 0;
3211 pos_T new_cursor;
3212 int indent;
3213 int orig_indent = 0; /* init for gcc */
3214 int indent_diff = 0; /* init for gcc */
3215 int first_indent = TRUE;
3216 int lendiff = 0;
3217 pos_T old_pos;
3218 char_u *insert_string = NULL;
3219 int allocated = FALSE;
3220 long cnt;
3221
3222#ifdef FEAT_CLIPBOARD
3223 /* Adjust register name for "unnamed" in 'clipboard'. */
3224 adjust_clip_reg(&regname);
3225 (void)may_get_selection(regname);
3226#endif
3227
3228 if (flags & PUT_FIXINDENT)
3229 orig_indent = get_indent();
3230
3231 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3232 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3233
3234 /*
3235 * Using inserted text works differently, because the register includes
3236 * special characters (newlines, etc.).
3237 */
3238 if (regname == '.')
3239 {
3240 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3241 (count == -1 ? 'O' : 'i')), count, FALSE);
3242 /* Putting the text is done later, so can't really move the cursor to
3243 * the next character. Use "l" to simulate it. */
3244 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3245 stuffcharReadbuff('l');
3246 return;
3247 }
3248
3249 /*
3250 * For special registers '%' (file name), '#' (alternate file name) and
3251 * ':' (last command line), etc. we have to create a fake yank register.
3252 */
3253 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3254 {
3255 if (insert_string == NULL)
3256 return;
3257 }
3258
3259 if (insert_string != NULL)
3260 {
3261 y_type = MCHAR;
3262#ifdef FEAT_EVAL
3263 if (regname == '=')
3264 {
3265 /* For the = register we need to split the string at NL
3266 * characters. */
3267 /* Loop twice: count the number of lines and save them. */
3268 for (;;)
3269 {
3270 y_size = 0;
3271 ptr = insert_string;
3272 while (ptr != NULL)
3273 {
3274 if (y_array != NULL)
3275 y_array[y_size] = ptr;
3276 ++y_size;
3277 ptr = vim_strchr(ptr, '\n');
3278 if (ptr != NULL)
3279 {
3280 if (y_array != NULL)
3281 *ptr = NUL;
3282 ++ptr;
3283 /* A trailing '\n' makes the string linewise */
3284 if (*ptr == NUL)
3285 {
3286 y_type = MLINE;
3287 break;
3288 }
3289 }
3290 }
3291 if (y_array != NULL)
3292 break;
3293 y_array = (char_u **)alloc((unsigned)
3294 (y_size * sizeof(char_u *)));
3295 if (y_array == NULL)
3296 goto end;
3297 }
3298 }
3299 else
3300#endif
3301 {
3302 y_size = 1; /* use fake one-line yank register */
3303 y_array = &insert_string;
3304 }
3305 }
3306 else
3307 {
3308 get_yank_register(regname, FALSE);
3309
3310 y_type = y_current->y_type;
3311#ifdef FEAT_VISUAL
3312 y_width = y_current->y_width;
3313#endif
3314 y_size = y_current->y_size;
3315 y_array = y_current->y_array;
3316 }
3317
3318#ifdef FEAT_VISUAL
3319 if (y_type == MLINE)
3320 {
3321 if (flags & PUT_LINE_SPLIT)
3322 {
3323 /* "p" or "P" in Visual mode: split the lines to put the text in
3324 * between. */
3325 if (u_save_cursor() == FAIL)
3326 goto end;
3327 ptr = vim_strsave(ml_get_cursor());
3328 if (ptr == NULL)
3329 goto end;
3330 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3331 vim_free(ptr);
3332
3333 ptr = vim_strnsave(ml_get_curline(), curwin->w_cursor.col);
3334 if (ptr == NULL)
3335 goto end;
3336 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3337 ++nr_lines;
3338 dir = FORWARD;
3339 }
3340 if (flags & PUT_LINE_FORWARD)
3341 {
3342 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003343 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 dir = FORWARD;
3345 }
3346 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3347 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3348 }
3349#endif
3350
3351 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3352 y_type = MLINE;
3353
3354 if (y_size == 0 || y_array == NULL)
3355 {
3356 EMSG2(_("E353: Nothing in register %s"),
3357 regname == 0 ? (char_u *)"\"" : transchar(regname));
3358 goto end;
3359 }
3360
3361#ifdef FEAT_VISUAL
3362 if (y_type == MBLOCK)
3363 {
3364 lnum = curwin->w_cursor.lnum + y_size + 1;
3365 if (lnum > curbuf->b_ml.ml_line_count)
3366 lnum = curbuf->b_ml.ml_line_count + 1;
3367 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3368 goto end;
3369 }
3370 else
3371#endif
3372 if (y_type == MLINE)
3373 {
3374 lnum = curwin->w_cursor.lnum;
3375#ifdef FEAT_FOLDING
3376 /* Correct line number for closed fold. Don't move the cursor yet,
3377 * u_save() uses it. */
3378 if (dir == BACKWARD)
3379 (void)hasFolding(lnum, &lnum, NULL);
3380 else
3381 (void)hasFolding(lnum, NULL, &lnum);
3382#endif
3383 if (dir == FORWARD)
3384 ++lnum;
3385 if (u_save(lnum - 1, lnum) == FAIL)
3386 goto end;
3387#ifdef FEAT_FOLDING
3388 if (dir == FORWARD)
3389 curwin->w_cursor.lnum = lnum - 1;
3390 else
3391 curwin->w_cursor.lnum = lnum;
3392 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3393#endif
3394 }
3395 else if (u_save_cursor() == FAIL)
3396 goto end;
3397
3398 yanklen = (int)STRLEN(y_array[0]);
3399
3400#ifdef FEAT_VIRTUALEDIT
3401 if (ve_flags == VE_ALL && y_type == MCHAR)
3402 {
3403 if (gchar_cursor() == TAB)
3404 {
3405 /* Don't need to insert spaces when "p" on the last position of a
3406 * tab or "P" on the first position. */
3407 if (dir == FORWARD
3408 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3409 : curwin->w_cursor.coladd > 0)
3410 coladvance_force(getviscol());
3411 else
3412 curwin->w_cursor.coladd = 0;
3413 }
3414 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3415 coladvance_force(getviscol() + (dir == FORWARD));
3416 }
3417#endif
3418
3419 lnum = curwin->w_cursor.lnum;
3420 col = curwin->w_cursor.col;
3421
3422#ifdef FEAT_VISUAL
3423 /*
3424 * Block mode
3425 */
3426 if (y_type == MBLOCK)
3427 {
3428 char c = gchar_cursor();
3429 colnr_T endcol2 = 0;
3430
3431 if (dir == FORWARD && c != NUL)
3432 {
3433#ifdef FEAT_VIRTUALEDIT
3434 if (ve_flags == VE_ALL)
3435 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3436 else
3437#endif
3438 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3439
3440#ifdef FEAT_MBYTE
3441 if (has_mbyte)
3442 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003443 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 else
3445#endif
3446#ifdef FEAT_VIRTUALEDIT
3447 if (c != TAB || ve_flags != VE_ALL)
3448#endif
3449 ++curwin->w_cursor.col;
3450 ++col;
3451 }
3452 else
3453 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3454
3455#ifdef FEAT_VIRTUALEDIT
3456 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003457 if (ve_flags == VE_ALL
3458 && (curwin->w_cursor.coladd > 0
3459 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460 {
3461 if (dir == FORWARD && c == NUL)
3462 ++col;
3463 if (dir != FORWARD && c != NUL)
3464 ++curwin->w_cursor.col;
3465 if (c == TAB)
3466 {
3467 if (dir == BACKWARD && curwin->w_cursor.col)
3468 curwin->w_cursor.col--;
3469 if (dir == FORWARD && col - 1 == endcol2)
3470 curwin->w_cursor.col++;
3471 }
3472 }
3473 curwin->w_cursor.coladd = 0;
3474#endif
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003475 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476 for (i = 0; i < y_size; ++i)
3477 {
3478 int spaces;
3479 char shortline;
3480
3481 bd.startspaces = 0;
3482 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 vcol = 0;
3484 delcount = 0;
3485
3486 /* add a new line */
3487 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3488 {
3489 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3490 (colnr_T)1, FALSE) == FAIL)
3491 break;
3492 ++nr_lines;
3493 }
3494 /* get the old line and advance to the position to insert at */
3495 oldp = ml_get_curline();
3496 oldlen = (int)STRLEN(oldp);
3497 for (ptr = oldp; vcol < col && *ptr; )
3498 {
3499 /* Count a tab for what it's worth (if list mode not on) */
3500 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
3501 vcol += incr;
3502 }
3503 bd.textcol = (colnr_T)(ptr - oldp);
3504
3505 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3506
3507 if (vcol < col) /* line too short, padd with spaces */
3508 bd.startspaces = col - vcol;
3509 else if (vcol > col)
3510 {
3511 bd.endspaces = vcol - col;
3512 bd.startspaces = incr - bd.endspaces;
3513 --bd.textcol;
3514 delcount = 1;
3515#ifdef FEAT_MBYTE
3516 if (has_mbyte)
3517 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3518#endif
3519 if (oldp[bd.textcol] != TAB)
3520 {
3521 /* Only a Tab can be split into spaces. Other
3522 * characters will have to be moved to after the
3523 * block, causing misalignment. */
3524 delcount = 0;
3525 bd.endspaces = 0;
3526 }
3527 }
3528
3529 yanklen = (int)STRLEN(y_array[i]);
3530
3531 /* calculate number of spaces required to fill right side of block*/
3532 spaces = y_width + 1;
3533 for (j = 0; j < yanklen; j++)
3534 spaces -= lbr_chartabsize(&y_array[i][j], 0);
3535 if (spaces < 0)
3536 spaces = 0;
3537
3538 /* insert the new text */
3539 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3540 newp = alloc_check((unsigned)totlen + oldlen + 1);
3541 if (newp == NULL)
3542 break;
3543 /* copy part up to cursor to new line */
3544 ptr = newp;
3545 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3546 ptr += bd.textcol;
3547 /* may insert some spaces before the new text */
3548 copy_spaces(ptr, (size_t)bd.startspaces);
3549 ptr += bd.startspaces;
3550 /* insert the new text */
3551 for (j = 0; j < count; ++j)
3552 {
3553 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3554 ptr += yanklen;
3555
3556 /* insert block's trailing spaces only if there's text behind */
3557 if ((j < count - 1 || !shortline) && spaces)
3558 {
3559 copy_spaces(ptr, (size_t)spaces);
3560 ptr += spaces;
3561 }
3562 }
3563 /* may insert some spaces after the new text */
3564 copy_spaces(ptr, (size_t)bd.endspaces);
3565 ptr += bd.endspaces;
3566 /* move the text after the cursor to the end of the line. */
3567 mch_memmove(ptr, oldp + bd.textcol + delcount,
3568 (size_t)(oldlen - bd.textcol - delcount + 1));
3569 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3570
3571 ++curwin->w_cursor.lnum;
3572 if (i == 0)
3573 curwin->w_cursor.col += bd.startspaces;
3574 }
3575
3576 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3577
3578 /* Set '[ mark. */
3579 curbuf->b_op_start = curwin->w_cursor;
3580 curbuf->b_op_start.lnum = lnum;
3581
3582 /* adjust '] mark */
3583 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3584 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003585# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003587# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 if (flags & PUT_CURSEND)
3589 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003590 colnr_T len;
3591
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 curwin->w_cursor = curbuf->b_op_end;
3593 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003594
3595 /* in Insert mode we might be after the NUL, correct for that */
3596 len = (colnr_T)STRLEN(ml_get_curline());
3597 if (curwin->w_cursor.col > len)
3598 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 }
3600 else
3601 curwin->w_cursor.lnum = lnum;
3602 }
3603 else
3604#endif
3605 {
3606 /*
3607 * Character or Line mode
3608 */
3609 if (y_type == MCHAR)
3610 {
3611 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3612 * char */
3613 if (dir == FORWARD && gchar_cursor() != NUL)
3614 {
3615#ifdef FEAT_MBYTE
3616 if (has_mbyte)
3617 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003618 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619
3620 /* put it on the next of the multi-byte character. */
3621 col += bytelen;
3622 if (yanklen)
3623 {
3624 curwin->w_cursor.col += bytelen;
3625 curbuf->b_op_end.col += bytelen;
3626 }
3627 }
3628 else
3629#endif
3630 {
3631 ++col;
3632 if (yanklen)
3633 {
3634 ++curwin->w_cursor.col;
3635 ++curbuf->b_op_end.col;
3636 }
3637 }
3638 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639 curbuf->b_op_start = curwin->w_cursor;
3640 }
3641 /*
3642 * Line mode: BACKWARD is the same as FORWARD on the previous line
3643 */
3644 else if (dir == BACKWARD)
3645 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003646 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647
3648 /*
3649 * simple case: insert into current line
3650 */
3651 if (y_type == MCHAR && y_size == 1)
3652 {
3653 totlen = count * yanklen;
3654 if (totlen)
3655 {
3656 oldp = ml_get(lnum);
3657 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3658 if (newp == NULL)
3659 goto end; /* alloc() will give error message */
3660 mch_memmove(newp, oldp, (size_t)col);
3661 ptr = newp + col;
3662 for (i = 0; i < count; ++i)
3663 {
3664 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3665 ptr += yanklen;
3666 }
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00003667 STRMOVE(ptr, oldp + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 ml_replace(lnum, newp, FALSE);
3669 /* Put cursor on last putted char. */
3670 curwin->w_cursor.col += (colnr_T)(totlen - 1);
3671 }
3672 curbuf->b_op_end = curwin->w_cursor;
3673 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3674 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3675 ++curwin->w_cursor.col;
3676 changed_bytes(lnum, col);
3677 }
3678 else
3679 {
3680 /*
3681 * Insert at least one line. When y_type is MCHAR, break the first
3682 * line in two.
3683 */
3684 for (cnt = 1; cnt <= count; ++cnt)
3685 {
3686 i = 0;
3687 if (y_type == MCHAR)
3688 {
3689 /*
3690 * Split the current line in two at the insert position.
3691 * First insert y_array[size - 1] in front of second line.
3692 * Then append y_array[0] to first line.
3693 */
3694 lnum = new_cursor.lnum;
3695 ptr = ml_get(lnum) + col;
3696 totlen = (int)STRLEN(y_array[y_size - 1]);
3697 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3698 if (newp == NULL)
3699 goto error;
3700 STRCPY(newp, y_array[y_size - 1]);
3701 STRCAT(newp, ptr);
3702 /* insert second line */
3703 ml_append(lnum, newp, (colnr_T)0, FALSE);
3704 vim_free(newp);
3705
3706 oldp = ml_get(lnum);
3707 newp = alloc_check((unsigned)(col + yanklen + 1));
3708 if (newp == NULL)
3709 goto error;
3710 /* copy first part of line */
3711 mch_memmove(newp, oldp, (size_t)col);
3712 /* append to first line */
3713 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3714 ml_replace(lnum, newp, FALSE);
3715
3716 curwin->w_cursor.lnum = lnum;
3717 i = 1;
3718 }
3719
3720 for (; i < y_size; ++i)
3721 {
3722 if ((y_type != MCHAR || i < y_size - 1)
3723 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3724 == FAIL)
3725 goto error;
3726 lnum++;
3727 ++nr_lines;
3728 if (flags & PUT_FIXINDENT)
3729 {
3730 old_pos = curwin->w_cursor;
3731 curwin->w_cursor.lnum = lnum;
3732 ptr = ml_get(lnum);
3733 if (cnt == count && i == y_size - 1)
3734 lendiff = (int)STRLEN(ptr);
3735#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3736 if (*ptr == '#' && preprocs_left())
3737 indent = 0; /* Leave # lines at start */
3738 else
3739#endif
3740 if (*ptr == NUL)
3741 indent = 0; /* Ignore empty lines */
3742 else if (first_indent)
3743 {
3744 indent_diff = orig_indent - get_indent();
3745 indent = orig_indent;
3746 first_indent = FALSE;
3747 }
3748 else if ((indent = get_indent() + indent_diff) < 0)
3749 indent = 0;
3750 (void)set_indent(indent, 0);
3751 curwin->w_cursor = old_pos;
3752 /* remember how many chars were removed */
3753 if (cnt == count && i == y_size - 1)
3754 lendiff -= (int)STRLEN(ml_get(lnum));
3755 }
3756 }
3757 }
3758
3759error:
3760 /* Adjust marks. */
3761 if (y_type == MLINE)
3762 {
3763 curbuf->b_op_start.col = 0;
3764 if (dir == FORWARD)
3765 curbuf->b_op_start.lnum++;
3766 }
3767 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
3768 (linenr_T)MAXLNUM, nr_lines, 0L);
3769
3770 /* note changed text for displaying and folding */
3771 if (y_type == MCHAR)
3772 changed_lines(curwin->w_cursor.lnum, col,
3773 curwin->w_cursor.lnum + 1, nr_lines);
3774 else
3775 changed_lines(curbuf->b_op_start.lnum, 0,
3776 curbuf->b_op_start.lnum, nr_lines);
3777
3778 /* put '] mark at last inserted character */
3779 curbuf->b_op_end.lnum = lnum;
3780 /* correct length for change in indent */
3781 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3782 if (col > 1)
3783 curbuf->b_op_end.col = col - 1;
3784 else
3785 curbuf->b_op_end.col = 0;
3786
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003787 if (flags & PUT_CURSLINE)
3788 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003789 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003790 curwin->w_cursor.lnum = lnum;
3791 beginline(BL_WHITE | BL_FIX);
3792 }
3793 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 {
3795 /* put cursor after inserted text */
3796 if (y_type == MLINE)
3797 {
3798 if (lnum >= curbuf->b_ml.ml_line_count)
3799 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3800 else
3801 curwin->w_cursor.lnum = lnum + 1;
3802 curwin->w_cursor.col = 0;
3803 }
3804 else
3805 {
3806 curwin->w_cursor.lnum = lnum;
3807 curwin->w_cursor.col = col;
3808 }
3809 }
3810 else if (y_type == MLINE)
3811 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003812 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 curwin->w_cursor.col = 0;
3814 if (dir == FORWARD)
3815 ++curwin->w_cursor.lnum;
3816 beginline(BL_WHITE | BL_FIX);
3817 }
3818 else /* put cursor on first inserted character */
3819 curwin->w_cursor = new_cursor;
3820 }
3821 }
3822
3823 msgmore(nr_lines);
3824 curwin->w_set_curswant = TRUE;
3825
3826end:
3827 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003829 if (regname == '=')
3830 vim_free(y_array);
3831
Bram Moolenaar677ee682005-01-27 14:41:15 +00003832 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003833 adjust_cursor_eol();
3834}
3835
3836/*
3837 * When the cursor is on the NUL past the end of the line and it should not be
3838 * there move it left.
3839 */
3840 void
3841adjust_cursor_eol()
3842{
3843 if (curwin->w_cursor.col > 0
3844 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00003845#ifdef FEAT_VIRTUALEDIT
3846 && (ve_flags & VE_ONEMORE) == 0
3847#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848 && !(restart_edit || (State & INSERT)))
3849 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00003850 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00003851 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003852
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853#ifdef FEAT_VIRTUALEDIT
3854 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00003855 {
3856 colnr_T scol, ecol;
3857
3858 /* Coladd is set to the width of the last character. */
3859 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
3860 curwin->w_cursor.coladd = ecol - scol + 1;
3861 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862#endif
3863 }
3864}
3865
3866#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
3867/*
3868 * Return TRUE if lines starting with '#' should be left aligned.
3869 */
3870 int
3871preprocs_left()
3872{
3873 return
3874# ifdef FEAT_SMARTINDENT
3875# ifdef FEAT_CINDENT
3876 (curbuf->b_p_si && !curbuf->b_p_cin) ||
3877# else
3878 curbuf->b_p_si
3879# endif
3880# endif
3881# ifdef FEAT_CINDENT
3882 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE))
3883# endif
3884 ;
3885}
3886#endif
3887
3888/* Return the character name of the register with the given number */
3889 int
3890get_register_name(num)
3891 int num;
3892{
3893 if (num == -1)
3894 return '"';
3895 else if (num < 10)
3896 return num + '0';
3897 else if (num == DELETION_REGISTER)
3898 return '-';
3899#ifdef FEAT_CLIPBOARD
3900 else if (num == STAR_REGISTER)
3901 return '*';
3902 else if (num == PLUS_REGISTER)
3903 return '+';
3904#endif
3905 else
3906 {
3907#ifdef EBCDIC
3908 int i;
3909
3910 /* EBCDIC is really braindead ... */
3911 i = 'a' + (num - 10);
3912 if (i > 'i')
3913 i += 7;
3914 if (i > 'r')
3915 i += 8;
3916 return i;
3917#else
3918 return num + 'a' - 10;
3919#endif
3920 }
3921}
3922
3923/*
3924 * ":dis" and ":registers": Display the contents of the yank registers.
3925 */
3926 void
3927ex_display(eap)
3928 exarg_T *eap;
3929{
3930 int i, n;
3931 long j;
3932 char_u *p;
3933 struct yankreg *yb;
3934 int name;
3935 int attr;
3936 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003937#ifdef FEAT_MBYTE
3938 int clen;
3939#else
3940# define clen 1
3941#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942
3943 if (arg != NULL && *arg == NUL)
3944 arg = NULL;
3945 attr = hl_attr(HLF_8);
3946
3947 /* Highlight title */
3948 MSG_PUTS_TITLE(_("\n--- Registers ---"));
3949 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
3950 {
3951 name = get_register_name(i);
3952 if (arg != NULL && vim_strchr(arg, name) == NULL)
3953 continue; /* did not ask for this register */
3954
3955#ifdef FEAT_CLIPBOARD
3956 /* Adjust register name for "unnamed" in 'clipboard'.
3957 * When it's a clipboard register, fill it with the current contents
3958 * of the clipboard. */
3959 adjust_clip_reg(&name);
3960 (void)may_get_selection(name);
3961#endif
3962
3963 if (i == -1)
3964 {
3965 if (y_previous != NULL)
3966 yb = y_previous;
3967 else
3968 yb = &(y_regs[0]);
3969 }
3970 else
3971 yb = &(y_regs[i]);
3972 if (yb->y_array != NULL)
3973 {
3974 msg_putchar('\n');
3975 msg_putchar('"');
3976 msg_putchar(name);
3977 MSG_PUTS(" ");
3978
3979 n = (int)Columns - 6;
3980 for (j = 0; j < yb->y_size && n > 1; ++j)
3981 {
3982 if (j)
3983 {
3984 MSG_PUTS_ATTR("^J", attr);
3985 n -= 2;
3986 }
3987 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
3988 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003990 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003991#endif
3992 msg_outtrans_len(p, clen);
3993#ifdef FEAT_MBYTE
3994 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995#endif
3996 }
3997 }
3998 if (n > 1 && yb->y_type == MLINE)
3999 MSG_PUTS_ATTR("^J", attr);
4000 out_flush(); /* show one line at a time */
4001 }
4002 ui_breakcheck();
4003 }
4004
4005 /*
4006 * display last inserted text
4007 */
4008 if ((p = get_last_insert()) != NULL
4009 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4010 {
4011 MSG_PUTS("\n\". ");
4012 dis_msg(p, TRUE);
4013 }
4014
4015 /*
4016 * display last command line
4017 */
4018 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4019 && !got_int)
4020 {
4021 MSG_PUTS("\n\": ");
4022 dis_msg(last_cmdline, FALSE);
4023 }
4024
4025 /*
4026 * display current file name
4027 */
4028 if (curbuf->b_fname != NULL
4029 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4030 {
4031 MSG_PUTS("\n\"% ");
4032 dis_msg(curbuf->b_fname, FALSE);
4033 }
4034
4035 /*
4036 * display alternate file name
4037 */
4038 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4039 {
4040 char_u *fname;
4041 linenr_T dummy;
4042
4043 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4044 {
4045 MSG_PUTS("\n\"# ");
4046 dis_msg(fname, FALSE);
4047 }
4048 }
4049
4050 /*
4051 * display last search pattern
4052 */
4053 if (last_search_pat() != NULL
4054 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4055 {
4056 MSG_PUTS("\n\"/ ");
4057 dis_msg(last_search_pat(), FALSE);
4058 }
4059
4060#ifdef FEAT_EVAL
4061 /*
4062 * display last used expression
4063 */
4064 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4065 && !got_int)
4066 {
4067 MSG_PUTS("\n\"= ");
4068 dis_msg(expr_line, FALSE);
4069 }
4070#endif
4071}
4072
4073/*
4074 * display a string for do_dis()
4075 * truncate at end of screen line
4076 */
4077 static void
4078dis_msg(p, skip_esc)
4079 char_u *p;
4080 int skip_esc; /* if TRUE, ignore trailing ESC */
4081{
4082 int n;
4083#ifdef FEAT_MBYTE
4084 int l;
4085#endif
4086
4087 n = (int)Columns - 6;
4088 while (*p != NUL
4089 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4090 && (n -= ptr2cells(p)) >= 0)
4091 {
4092#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004093 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 {
4095 msg_outtrans_len(p, l);
4096 p += l;
4097 }
4098 else
4099#endif
4100 msg_outtrans_len(p++, 1);
4101 }
4102 ui_breakcheck();
4103}
4104
4105/*
4106 * join 'count' lines (minimal 2), including u_save()
4107 */
4108 void
4109do_do_join(count, insert_space)
4110 long count;
4111 int insert_space;
4112{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004113 colnr_T col = MAXCOL;
4114
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4116 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4117 return;
4118
4119 while (--count > 0)
4120 {
4121 line_breakcheck();
4122 if (got_int || do_join(insert_space) == FAIL)
4123 {
4124 beep_flush();
4125 break;
4126 }
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004127 if (col == MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4128 col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 }
4130
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004131 /* Vi compatible: use the column of the first join */
4132 if (col != MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4133 curwin->w_cursor.col = col;
4134
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135#if 0
4136 /*
4137 * Need to update the screen if the line where the cursor is became too
4138 * long to fit on the screen.
4139 */
4140 update_topline_redraw();
4141#endif
4142}
4143
4144/*
4145 * Join two lines at the cursor position.
4146 * "redraw" is TRUE when the screen should be updated.
4147 * Caller must have setup for undo.
4148 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004149 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 */
4151 int
4152do_join(insert_space)
4153 int insert_space;
4154{
4155 char_u *curr;
4156 char_u *next, *next_start;
4157 char_u *newp;
4158 int endcurr1, endcurr2;
4159 int currsize; /* size of the current line */
4160 int nextsize; /* size of the next line */
4161 int spaces; /* number of spaces to insert */
4162 linenr_T t;
4163
4164 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4165 return FAIL; /* can't join on last line */
4166
4167 curr = ml_get_curline();
4168 currsize = (int)STRLEN(curr);
4169 endcurr1 = endcurr2 = NUL;
4170 if (insert_space && currsize > 0)
4171 {
4172#ifdef FEAT_MBYTE
4173 if (has_mbyte)
4174 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004175 next = curr + currsize;
4176 mb_ptr_back(curr, next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 endcurr1 = (*mb_ptr2char)(next);
4178 if (next > curr)
4179 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004180 mb_ptr_back(curr, next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 endcurr2 = (*mb_ptr2char)(next);
4182 }
4183 }
4184 else
4185#endif
4186 {
4187 endcurr1 = *(curr + currsize - 1);
4188 if (currsize > 1)
4189 endcurr2 = *(curr + currsize - 2);
4190 }
4191 }
4192
4193 next = next_start = ml_get((linenr_T)(curwin->w_cursor.lnum + 1));
4194 spaces = 0;
4195 if (insert_space)
4196 {
4197 next = skipwhite(next);
4198 if (*next != ')' && currsize != 0 && endcurr1 != TAB
4199#ifdef FEAT_MBYTE
4200 && (!has_format_option(FO_MBYTE_JOIN)
4201 || (mb_ptr2char(next) < 0x100 && endcurr1 < 0x100))
4202 && (!has_format_option(FO_MBYTE_JOIN2)
4203 || mb_ptr2char(next) < 0x100 || endcurr1 < 0x100)
4204#endif
4205 )
4206 {
4207 /* don't add a space if the line is ending in a space */
4208 if (endcurr1 == ' ')
4209 endcurr1 = endcurr2;
4210 else
4211 ++spaces;
4212 /* extra space when 'joinspaces' set and line ends in '.' */
4213 if ( p_js
4214 && (endcurr1 == '.'
4215 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4216 && (endcurr1 == '?' || endcurr1 == '!'))))
4217 ++spaces;
4218 }
4219 }
4220 nextsize = (int)STRLEN(next);
4221
4222 newp = alloc_check((unsigned)(currsize + nextsize + spaces + 1));
4223 if (newp == NULL)
4224 return FAIL;
4225
4226 /*
4227 * Insert the next line first, because we already have that pointer.
4228 * Curr has to be obtained again, because getting next will have
4229 * invalidated it.
4230 */
4231 mch_memmove(newp + currsize + spaces, next, (size_t)(nextsize + 1));
4232
4233 curr = ml_get_curline();
4234 mch_memmove(newp, curr, (size_t)currsize);
4235
4236 copy_spaces(newp + currsize, (size_t)spaces);
4237
4238 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4239
4240 /* Only report the change in the first line here, del_lines() will report
4241 * the deleted line. */
4242 changed_lines(curwin->w_cursor.lnum, currsize,
4243 curwin->w_cursor.lnum + 1, 0L);
4244
4245 /*
4246 * Delete the following line. To do this we move the cursor there
4247 * briefly, and then move it back. After del_lines() the cursor may
4248 * have moved up (last line deleted), so the current lnum is kept in t.
4249 *
4250 * Move marks from the deleted line to the joined line, adjusting the
4251 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4252 * should not really be a problem.
4253 */
4254 t = curwin->w_cursor.lnum;
4255 mark_col_adjust(t + 1, (colnr_T)0, (linenr_T)-1,
4256 (long)(currsize + spaces - (next - next_start)));
4257 ++curwin->w_cursor.lnum;
4258 del_lines(1L, FALSE);
4259 curwin->w_cursor.lnum = t;
4260
4261 /*
4262 * go to first character of the joined line
4263 */
4264 curwin->w_cursor.col = currsize;
4265 check_cursor_col();
4266#ifdef FEAT_VIRTUALEDIT
4267 curwin->w_cursor.coladd = 0;
4268#endif
4269 curwin->w_set_curswant = TRUE;
4270
4271 return OK;
4272}
4273
4274#ifdef FEAT_COMMENTS
4275/*
4276 * Return TRUE if the two comment leaders given are the same. "lnum" is
4277 * the first line. White-space is ignored. Note that the whole of
4278 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4279 */
4280 static int
4281same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
4282 linenr_T lnum;
4283 int leader1_len;
4284 char_u *leader1_flags;
4285 int leader2_len;
4286 char_u *leader2_flags;
4287{
4288 int idx1 = 0, idx2 = 0;
4289 char_u *p;
4290 char_u *line1;
4291 char_u *line2;
4292
4293 if (leader1_len == 0)
4294 return (leader2_len == 0);
4295
4296 /*
4297 * If first leader has 'f' flag, the lines can be joined only if the
4298 * second line does not have a leader.
4299 * If first leader has 'e' flag, the lines can never be joined.
4300 * If fist leader has 's' flag, the lines can only be joined if there is
4301 * some text after it and the second line has the 'm' flag.
4302 */
4303 if (leader1_flags != NULL)
4304 {
4305 for (p = leader1_flags; *p && *p != ':'; ++p)
4306 {
4307 if (*p == COM_FIRST)
4308 return (leader2_len == 0);
4309 if (*p == COM_END)
4310 return FALSE;
4311 if (*p == COM_START)
4312 {
4313 if (*(ml_get(lnum) + leader1_len) == NUL)
4314 return FALSE;
4315 if (leader2_flags == NULL || leader2_len == 0)
4316 return FALSE;
4317 for (p = leader2_flags; *p && *p != ':'; ++p)
4318 if (*p == COM_MIDDLE)
4319 return TRUE;
4320 return FALSE;
4321 }
4322 }
4323 }
4324
4325 /*
4326 * Get current line and next line, compare the leaders.
4327 * The first line has to be saved, only one line can be locked at a time.
4328 */
4329 line1 = vim_strsave(ml_get(lnum));
4330 if (line1 != NULL)
4331 {
4332 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4333 ;
4334 line2 = ml_get(lnum + 1);
4335 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4336 {
4337 if (!vim_iswhite(line2[idx2]))
4338 {
4339 if (line1[idx1++] != line2[idx2])
4340 break;
4341 }
4342 else
4343 while (vim_iswhite(line1[idx1]))
4344 ++idx1;
4345 }
4346 vim_free(line1);
4347 }
4348 return (idx2 == leader2_len && idx1 == leader1_len);
4349}
4350#endif
4351
4352/*
4353 * implementation of the format operator 'gq'
4354 */
4355 void
4356op_format(oap, keep_cursor)
4357 oparg_T *oap;
4358 int keep_cursor; /* keep cursor on same text char */
4359{
4360 long old_line_count = curbuf->b_ml.ml_line_count;
4361
4362 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4363 * can put it back there. */
4364 curwin->w_cursor = oap->cursor_start;
4365
4366 if (u_save((linenr_T)(oap->start.lnum - 1),
4367 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4368 return;
4369 curwin->w_cursor = oap->start;
4370
4371#ifdef FEAT_VISUAL
4372 if (oap->is_VIsual)
4373 /* When there is no change: need to remove the Visual selection */
4374 redraw_curbuf_later(INVERTED);
4375#endif
4376
4377 /* Set '[ mark at the start of the formatted area */
4378 curbuf->b_op_start = oap->start;
4379
4380 /* For "gw" remember the cursor position and put it back below (adjusted
4381 * for joined and split lines). */
4382 if (keep_cursor)
4383 saved_cursor = oap->cursor_start;
4384
Bram Moolenaar81a82092008-03-12 16:27:00 +00004385 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386
4387 /*
4388 * Leave the cursor at the first non-blank of the last formatted line.
4389 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4390 * line, so "." will do the next lines.
4391 */
4392 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4393 ++curwin->w_cursor.lnum;
4394 beginline(BL_WHITE | BL_FIX);
4395 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4396 msgmore(old_line_count);
4397
4398 /* put '] mark on the end of the formatted area */
4399 curbuf->b_op_end = curwin->w_cursor;
4400
4401 if (keep_cursor)
4402 {
4403 curwin->w_cursor = saved_cursor;
4404 saved_cursor.lnum = 0;
4405 }
4406
4407#ifdef FEAT_VISUAL
4408 if (oap->is_VIsual)
4409 {
4410 win_T *wp;
4411
4412 FOR_ALL_WINDOWS(wp)
4413 {
4414 if (wp->w_old_cursor_lnum != 0)
4415 {
4416 /* When lines have been inserted or deleted, adjust the end of
4417 * the Visual area to be redrawn. */
4418 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4419 wp->w_old_cursor_lnum += old_line_count;
4420 else
4421 wp->w_old_visual_lnum += old_line_count;
4422 }
4423 }
4424 }
4425#endif
4426}
4427
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004428#if defined(FEAT_EVAL) || defined(PROTO)
4429/*
4430 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4431 */
4432 void
4433op_formatexpr(oap)
4434 oparg_T *oap;
4435{
4436# ifdef FEAT_VISUAL
4437 if (oap->is_VIsual)
4438 /* When there is no change: need to remove the Visual selection */
4439 redraw_curbuf_later(INVERTED);
4440# endif
4441
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004442 (void)fex_format(oap->start.lnum, oap->line_count, NUL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004443}
4444
4445 int
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004446fex_format(lnum, count, c)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004447 linenr_T lnum;
4448 long count;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004449 int c; /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004450{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004451 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4452 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004453 int r;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004454#ifdef FEAT_MBYTE
4455 char_u buf[MB_MAXBYTES];
4456#else
4457 char_u buf[2];
4458#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004459
4460 /*
4461 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004462 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004463 */
4464 set_vim_var_nr(VV_LNUM, lnum);
4465 set_vim_var_nr(VV_COUNT, count);
4466
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004467#ifdef FEAT_MBYTE
4468 if (has_mbyte)
4469 buf[(*mb_char2bytes)(c, buf)] = NUL;
4470 else
4471#endif
4472 {
4473 buf[0] = c;
4474 buf[1] = NUL;
4475 }
4476 set_vim_var_string(VV_CHAR, buf, -1);
4477
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004478 /*
4479 * Evaluate the function.
4480 */
4481 if (use_sandbox)
4482 ++sandbox;
4483 r = eval_to_number(curbuf->b_p_fex);
4484 if (use_sandbox)
4485 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004486
4487 set_vim_var_string(VV_CHAR, NULL, -1);
4488
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004489 return r;
4490}
4491#endif
4492
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493/*
4494 * Format "line_count" lines, starting at the cursor position.
4495 * When "line_count" is negative, format until the end of the paragraph.
4496 * Lines after the cursor line are saved for undo, caller must have saved the
4497 * first line.
4498 */
4499 void
Bram Moolenaar81a82092008-03-12 16:27:00 +00004500format_lines(line_count, avoid_fex)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501 linenr_T line_count;
Bram Moolenaar81a82092008-03-12 16:27:00 +00004502 int avoid_fex; /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503{
4504 int max_len;
4505 int is_not_par; /* current line not part of parag. */
4506 int next_is_not_par; /* next line not part of paragraph */
4507 int is_end_par; /* at end of paragraph */
4508 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4509 int next_is_start_par = FALSE;
4510#ifdef FEAT_COMMENTS
4511 int leader_len = 0; /* leader len of current line */
4512 int next_leader_len; /* leader len of next line */
4513 char_u *leader_flags = NULL; /* flags for leader of current line */
4514 char_u *next_leader_flags; /* flags for leader of next line */
4515 int do_comments; /* format comments */
4516#endif
4517 int advance = TRUE;
4518 int second_indent = -1;
4519 int do_second_indent;
4520 int do_number_indent;
4521 int do_trail_white;
4522 int first_par_line = TRUE;
4523 int smd_save;
4524 long count;
4525 int need_set_indent = TRUE; /* set indent of next paragraph */
4526 int force_format = FALSE;
4527 int old_State = State;
4528
4529 /* length of a line to force formatting: 3 * 'tw' */
4530 max_len = comp_textwidth(TRUE) * 3;
4531
4532 /* check for 'q', '2' and '1' in 'formatoptions' */
4533#ifdef FEAT_COMMENTS
4534 do_comments = has_format_option(FO_Q_COMS);
4535#endif
4536 do_second_indent = has_format_option(FO_Q_SECOND);
4537 do_number_indent = has_format_option(FO_Q_NUMBER);
4538 do_trail_white = has_format_option(FO_WHITE_PAR);
4539
4540 /*
4541 * Get info about the previous and current line.
4542 */
4543 if (curwin->w_cursor.lnum > 1)
4544 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4545#ifdef FEAT_COMMENTS
4546 , &leader_len, &leader_flags, do_comments
4547#endif
4548 );
4549 else
4550 is_not_par = TRUE;
4551 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4552#ifdef FEAT_COMMENTS
4553 , &next_leader_len, &next_leader_flags, do_comments
4554#endif
4555 );
4556 is_end_par = (is_not_par || next_is_not_par);
4557 if (!is_end_par && do_trail_white)
4558 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4559
4560 curwin->w_cursor.lnum--;
4561 for (count = line_count; count != 0 && !got_int; --count)
4562 {
4563 /*
4564 * Advance to next paragraph.
4565 */
4566 if (advance)
4567 {
4568 curwin->w_cursor.lnum++;
4569 prev_is_end_par = is_end_par;
4570 is_not_par = next_is_not_par;
4571#ifdef FEAT_COMMENTS
4572 leader_len = next_leader_len;
4573 leader_flags = next_leader_flags;
4574#endif
4575 }
4576
4577 /*
4578 * The last line to be formatted.
4579 */
4580 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4581 {
4582 next_is_not_par = TRUE;
4583#ifdef FEAT_COMMENTS
4584 next_leader_len = 0;
4585 next_leader_flags = NULL;
4586#endif
4587 }
4588 else
4589 {
4590 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4591#ifdef FEAT_COMMENTS
4592 , &next_leader_len, &next_leader_flags, do_comments
4593#endif
4594 );
4595 if (do_number_indent)
4596 next_is_start_par =
4597 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4598 }
4599 advance = TRUE;
4600 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4601 if (!is_end_par && do_trail_white)
4602 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4603
4604 /*
4605 * Skip lines that are not in a paragraph.
4606 */
4607 if (is_not_par)
4608 {
4609 if (line_count < 0)
4610 break;
4611 }
4612 else
4613 {
4614 /*
4615 * For the first line of a paragraph, check indent of second line.
4616 * Don't do this for comments and empty lines.
4617 */
4618 if (first_par_line
4619 && (do_second_indent || do_number_indent)
4620 && prev_is_end_par
4621 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4622#ifdef FEAT_COMMENTS
4623 && leader_len == 0
4624 && next_leader_len == 0
4625#endif
4626 )
4627 {
4628 if (do_second_indent
4629 && !lineempty(curwin->w_cursor.lnum + 1))
4630 second_indent = get_indent_lnum(curwin->w_cursor.lnum + 1);
4631 else if (do_number_indent)
4632 second_indent = get_number_indent(curwin->w_cursor.lnum);
4633 }
4634
4635 /*
4636 * When the comment leader changes, it's the end of the paragraph.
4637 */
4638 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4639#ifdef FEAT_COMMENTS
4640 || !same_leader(curwin->w_cursor.lnum,
4641 leader_len, leader_flags,
4642 next_leader_len, next_leader_flags)
4643#endif
4644 )
4645 is_end_par = TRUE;
4646
4647 /*
4648 * If we have got to the end of a paragraph, or the line is
4649 * getting long, format it.
4650 */
4651 if (is_end_par || force_format)
4652 {
4653 if (need_set_indent)
4654 /* replace indent in first line with minimal number of
4655 * tabs and spaces, according to current options */
4656 (void)set_indent(get_indent(), SIN_CHANGED);
4657
4658 /* put cursor on last non-space */
4659 State = NORMAL; /* don't go past end-of-line */
4660 coladvance((colnr_T)MAXCOL);
4661 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
4662 dec_cursor();
4663
4664 /* do the formatting, without 'showmode' */
4665 State = INSERT; /* for open_line() */
4666 smd_save = p_smd;
4667 p_smd = FALSE;
4668 insertchar(NUL, INSCHAR_FORMAT
4669#ifdef FEAT_COMMENTS
4670 + (do_comments ? INSCHAR_DO_COM : 0)
4671#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00004672 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 State = old_State;
4674 p_smd = smd_save;
4675 second_indent = -1;
4676 /* at end of par.: need to set indent of next par. */
4677 need_set_indent = is_end_par;
4678 if (is_end_par)
4679 {
4680 /* When called with a negative line count, break at the
4681 * end of the paragraph. */
4682 if (line_count < 0)
4683 break;
4684 first_par_line = TRUE;
4685 }
4686 force_format = FALSE;
4687 }
4688
4689 /*
4690 * When still in same paragraph, join the lines together. But
4691 * first delete the comment leader from the second line.
4692 */
4693 if (!is_end_par)
4694 {
4695 advance = FALSE;
4696 curwin->w_cursor.lnum++;
4697 curwin->w_cursor.col = 0;
4698 if (line_count < 0 && u_save_cursor() == FAIL)
4699 break;
4700#ifdef FEAT_COMMENTS
Bram Moolenaare3226be2005-12-18 22:10:00 +00004701 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702 if (next_leader_len > 0)
4703 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
4704 (long)-next_leader_len);
4705#endif
4706 curwin->w_cursor.lnum--;
4707 if (do_join(TRUE) == FAIL)
4708 {
4709 beep_flush();
4710 break;
4711 }
4712 first_par_line = FALSE;
4713 /* If the line is getting long, format it next time */
4714 if (STRLEN(ml_get_curline()) > (size_t)max_len)
4715 force_format = TRUE;
4716 else
4717 force_format = FALSE;
4718 }
4719 }
4720 line_breakcheck();
4721 }
4722}
4723
4724/*
4725 * Return TRUE if line "lnum" ends in a white character.
4726 */
4727 static int
4728ends_in_white(lnum)
4729 linenr_T lnum;
4730{
4731 char_u *s = ml_get(lnum);
4732 size_t l;
4733
4734 if (*s == NUL)
4735 return FALSE;
4736 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
4737 * invocation may call function multiple times". */
4738 l = STRLEN(s) - 1;
4739 return vim_iswhite(s[l]);
4740}
4741
4742/*
4743 * Blank lines, and lines containing only the comment leader, are left
4744 * untouched by the formatting. The function returns TRUE in this
4745 * case. It also returns TRUE when a line starts with the end of a comment
4746 * ('e' in comment flags), so that this line is skipped, and not joined to the
4747 * previous line. A new paragraph starts after a blank line, or when the
4748 * comment leader changes -- webb.
4749 */
4750#ifdef FEAT_COMMENTS
4751 static int
4752fmt_check_par(lnum, leader_len, leader_flags, do_comments)
4753 linenr_T lnum;
4754 int *leader_len;
4755 char_u **leader_flags;
4756 int do_comments;
4757{
4758 char_u *flags = NULL; /* init for GCC */
4759 char_u *ptr;
4760
4761 ptr = ml_get(lnum);
4762 if (do_comments)
4763 *leader_len = get_leader_len(ptr, leader_flags, FALSE);
4764 else
4765 *leader_len = 0;
4766
4767 if (*leader_len > 0)
4768 {
4769 /*
4770 * Search for 'e' flag in comment leader flags.
4771 */
4772 flags = *leader_flags;
4773 while (*flags && *flags != ':' && *flags != COM_END)
4774 ++flags;
4775 }
4776
4777 return (*skipwhite(ptr + *leader_len) == NUL
4778 || (*leader_len > 0 && *flags == COM_END)
4779 || startPS(lnum, NUL, FALSE));
4780}
4781#else
4782 static int
4783fmt_check_par(lnum)
4784 linenr_T lnum;
4785{
4786 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
4787}
4788#endif
4789
4790/*
4791 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
4792 * previous line is in the same paragraph. Used for auto-formatting.
4793 */
4794 int
4795paragraph_start(lnum)
4796 linenr_T lnum;
4797{
4798 char_u *p;
4799#ifdef FEAT_COMMENTS
4800 int leader_len = 0; /* leader len of current line */
4801 char_u *leader_flags = NULL; /* flags for leader of current line */
4802 int next_leader_len; /* leader len of next line */
4803 char_u *next_leader_flags; /* flags for leader of next line */
4804 int do_comments; /* format comments */
4805#endif
4806
4807 if (lnum <= 1)
4808 return TRUE; /* start of the file */
4809
4810 p = ml_get(lnum - 1);
4811 if (*p == NUL)
4812 return TRUE; /* after empty line */
4813
4814#ifdef FEAT_COMMENTS
4815 do_comments = has_format_option(FO_Q_COMS);
4816#endif
4817 if (fmt_check_par(lnum - 1
4818#ifdef FEAT_COMMENTS
4819 , &leader_len, &leader_flags, do_comments
4820#endif
4821 ))
4822 return TRUE; /* after non-paragraph line */
4823
4824 if (fmt_check_par(lnum
4825#ifdef FEAT_COMMENTS
4826 , &next_leader_len, &next_leader_flags, do_comments
4827#endif
4828 ))
4829 return TRUE; /* "lnum" is not a paragraph line */
4830
4831 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
4832 return TRUE; /* missing trailing space in previous line. */
4833
4834 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
4835 return TRUE; /* numbered item starts in "lnum". */
4836
4837#ifdef FEAT_COMMENTS
4838 if (!same_leader(lnum - 1, leader_len, leader_flags,
4839 next_leader_len, next_leader_flags))
4840 return TRUE; /* change of comment leader. */
4841#endif
4842
4843 return FALSE;
4844}
4845
4846#ifdef FEAT_VISUAL
4847/*
4848 * prepare a few things for block mode yank/delete/tilde
4849 *
4850 * for delete:
4851 * - textlen includes the first/last char to be (partly) deleted
4852 * - start/endspaces is the number of columns that are taken by the
4853 * first/last deleted char minus the number of columns that have to be
4854 * deleted. for yank and tilde:
4855 * - textlen includes the first/last char to be wholly yanked
4856 * - start/endspaces is the number of columns of the first/last yanked char
4857 * that are to be yanked.
4858 */
4859 static void
4860block_prep(oap, bdp, lnum, is_del)
4861 oparg_T *oap;
4862 struct block_def *bdp;
4863 linenr_T lnum;
4864 int is_del;
4865{
4866 int incr = 0;
4867 char_u *pend;
4868 char_u *pstart;
4869 char_u *line;
4870 char_u *prev_pstart;
4871 char_u *prev_pend;
4872
4873 bdp->startspaces = 0;
4874 bdp->endspaces = 0;
4875 bdp->textlen = 0;
4876 bdp->start_vcol = 0;
4877 bdp->end_vcol = 0;
4878#ifdef FEAT_VISUALEXTRA
4879 bdp->is_short = FALSE;
4880 bdp->is_oneChar = FALSE;
4881 bdp->pre_whitesp = 0;
4882 bdp->pre_whitesp_c = 0;
4883 bdp->end_char_vcols = 0;
4884#endif
4885 bdp->start_char_vcols = 0;
4886
4887 line = ml_get(lnum);
4888 pstart = line;
4889 prev_pstart = line;
4890 while (bdp->start_vcol < oap->start_vcol && *pstart)
4891 {
4892 /* Count a tab for what it's worth (if list mode not on) */
4893 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
4894 bdp->start_vcol += incr;
4895#ifdef FEAT_VISUALEXTRA
4896 if (vim_iswhite(*pstart))
4897 {
4898 bdp->pre_whitesp += incr;
4899 bdp->pre_whitesp_c++;
4900 }
4901 else
4902 {
4903 bdp->pre_whitesp = 0;
4904 bdp->pre_whitesp_c = 0;
4905 }
4906#endif
4907 prev_pstart = pstart;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004908 mb_ptr_adv(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 }
4910 bdp->start_char_vcols = incr;
4911 if (bdp->start_vcol < oap->start_vcol) /* line too short */
4912 {
4913 bdp->end_vcol = bdp->start_vcol;
4914#ifdef FEAT_VISUALEXTRA
4915 bdp->is_short = TRUE;
4916#endif
4917 if (!is_del || oap->op_type == OP_APPEND)
4918 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
4919 }
4920 else
4921 {
4922 /* notice: this converts partly selected Multibyte characters to
4923 * spaces, too. */
4924 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
4925 if (is_del && bdp->startspaces)
4926 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
4927 pend = pstart;
4928 bdp->end_vcol = bdp->start_vcol;
4929 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
4930 {
4931#ifdef FEAT_VISUALEXTRA
4932 bdp->is_oneChar = TRUE;
4933#endif
4934 if (oap->op_type == OP_INSERT)
4935 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4936 else if (oap->op_type == OP_APPEND)
4937 {
4938 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
4939 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4940 }
4941 else
4942 {
4943 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
4944 if (is_del && oap->op_type != OP_LSHIFT)
4945 {
4946 /* just putting the sum of those two into
4947 * bdp->startspaces doesn't work for Visual replace,
4948 * so we have to split the tab in two */
4949 bdp->startspaces = bdp->start_char_vcols
4950 - (bdp->start_vcol - oap->start_vcol);
4951 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4952 }
4953 }
4954 }
4955 else
4956 {
4957 prev_pend = pend;
4958 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
4959 {
4960 /* Count a tab for what it's worth (if list mode not on) */
4961 prev_pend = pend;
4962 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
4963 bdp->end_vcol += incr;
4964 }
4965 if (bdp->end_vcol <= oap->end_vcol
4966 && (!is_del
4967 || oap->op_type == OP_APPEND
4968 || oap->op_type == OP_REPLACE)) /* line too short */
4969 {
4970#ifdef FEAT_VISUALEXTRA
4971 bdp->is_short = TRUE;
4972#endif
4973 /* Alternative: include spaces to fill up the block.
4974 * Disadvantage: can lead to trailing spaces when the line is
4975 * short where the text is put */
4976 /* if (!is_del || oap->op_type == OP_APPEND) */
4977 if (oap->op_type == OP_APPEND || virtual_op)
4978 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00004979 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 else
4981 bdp->endspaces = 0; /* replace doesn't add characters */
4982 }
4983 else if (bdp->end_vcol > oap->end_vcol)
4984 {
4985 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4986 if (!is_del && bdp->endspaces)
4987 {
4988 bdp->endspaces = incr - bdp->endspaces;
4989 if (pend != pstart)
4990 pend = prev_pend;
4991 }
4992 }
4993 }
4994#ifdef FEAT_VISUALEXTRA
4995 bdp->end_char_vcols = incr;
4996#endif
4997 if (is_del && bdp->startspaces)
4998 pstart = prev_pstart;
4999 bdp->textlen = (int)(pend - pstart);
5000 }
5001 bdp->textcol = (colnr_T) (pstart - line);
5002 bdp->textstart = pstart;
5003}
5004#endif /* FEAT_VISUAL */
5005
5006#ifdef FEAT_RIGHTLEFT
5007static void reverse_line __ARGS((char_u *s));
5008
5009 static void
5010reverse_line(s)
5011 char_u *s;
5012{
5013 int i, j;
5014 char_u c;
5015
5016 if ((i = (int)STRLEN(s) - 1) <= 0)
5017 return;
5018
5019 curwin->w_cursor.col = i - curwin->w_cursor.col;
5020 for (j = 0; j < i; j++, i--)
5021 {
5022 c = s[i]; s[i] = s[j]; s[j] = c;
5023 }
5024}
5025
5026# define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
5027#else
5028# define RLADDSUBFIX(ptr)
5029#endif
5030
5031/*
5032 * add or subtract 'Prenum1' from a number in a line
5033 * 'command' is CTRL-A for add, CTRL-X for subtract
5034 *
5035 * return FAIL for failure, OK otherwise
5036 */
5037 int
5038do_addsub(command, Prenum1)
5039 int command;
5040 linenr_T Prenum1;
5041{
5042 int col;
5043 char_u *buf1;
5044 char_u buf2[NUMBUFLEN];
5045 int hex; /* 'X' or 'x': hex; '0': octal */
5046 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005047 unsigned long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 long_u oldn;
5049 char_u *ptr;
5050 int c;
5051 int length = 0; /* character length of the number */
5052 int todel;
5053 int dohex;
5054 int dooct;
5055 int doalp;
5056 int firstdigit;
5057 int negative;
5058 int subtract;
5059
5060 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5061 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
5062 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5063
5064 ptr = ml_get_curline();
5065 RLADDSUBFIX(ptr);
5066
5067 /*
5068 * First check if we are on a hexadecimal number, after the "0x".
5069 */
5070 col = curwin->w_cursor.col;
5071 if (dohex)
5072 while (col > 0 && vim_isxdigit(ptr[col]))
5073 --col;
5074 if ( dohex
5075 && col > 0
5076 && (ptr[col] == 'X'
5077 || ptr[col] == 'x')
5078 && ptr[col - 1] == '0'
5079 && vim_isxdigit(ptr[col + 1]))
5080 {
5081 /*
5082 * Found hexadecimal number, move to its start.
5083 */
5084 --col;
5085 }
5086 else
5087 {
5088 /*
5089 * Search forward and then backward to find the start of number.
5090 */
5091 col = curwin->w_cursor.col;
5092
5093 while (ptr[col] != NUL
5094 && !vim_isdigit(ptr[col])
5095 && !(doalp && ASCII_ISALPHA(ptr[col])))
5096 ++col;
5097
5098 while (col > 0
5099 && vim_isdigit(ptr[col - 1])
5100 && !(doalp && ASCII_ISALPHA(ptr[col])))
5101 --col;
5102 }
5103
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 /*
5105 * If a number was found, and saving for undo works, replace the number.
5106 */
5107 firstdigit = ptr[col];
5108 RLADDSUBFIX(ptr);
5109 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5110 || u_save_cursor() != OK)
5111 {
5112 beep_flush();
5113 return FAIL;
5114 }
5115
5116 /* get ptr again, because u_save() may have changed it */
5117 ptr = ml_get_curline();
5118 RLADDSUBFIX(ptr);
5119
5120 if (doalp && ASCII_ISALPHA(firstdigit))
5121 {
5122 /* decrement or increment alphabetic character */
5123 if (command == Ctrl_X)
5124 {
5125 if (CharOrd(firstdigit) < Prenum1)
5126 {
5127 if (isupper(firstdigit))
5128 firstdigit = 'A';
5129 else
5130 firstdigit = 'a';
5131 }
5132 else
5133#ifdef EBCDIC
5134 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5135#else
5136 firstdigit -= Prenum1;
5137#endif
5138 }
5139 else
5140 {
5141 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5142 {
5143 if (isupper(firstdigit))
5144 firstdigit = 'Z';
5145 else
5146 firstdigit = 'z';
5147 }
5148 else
5149#ifdef EBCDIC
5150 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5151#else
5152 firstdigit += Prenum1;
5153#endif
5154 }
5155 curwin->w_cursor.col = col;
5156 (void)del_char(FALSE);
5157 ins_char(firstdigit);
5158 }
5159 else
5160 {
5161 negative = FALSE;
5162 if (col > 0 && ptr[col - 1] == '-') /* negative number */
5163 {
5164 --col;
5165 negative = TRUE;
5166 }
5167
5168 /* get the number value (unsigned) */
5169 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
5170
5171 /* ignore leading '-' for hex and octal numbers */
5172 if (hex && negative)
5173 {
5174 ++col;
5175 --length;
5176 negative = FALSE;
5177 }
5178
5179 /* add or subtract */
5180 subtract = FALSE;
5181 if (command == Ctrl_X)
5182 subtract ^= TRUE;
5183 if (negative)
5184 subtract ^= TRUE;
5185
5186 oldn = n;
5187 if (subtract)
5188 n -= (unsigned long)Prenum1;
5189 else
5190 n += (unsigned long)Prenum1;
5191
5192 /* handle wraparound for decimal numbers */
5193 if (!hex)
5194 {
5195 if (subtract)
5196 {
5197 if (n > oldn)
5198 {
5199 n = 1 + (n ^ (unsigned long)-1);
5200 negative ^= TRUE;
5201 }
5202 }
5203 else /* add */
5204 {
5205 if (n < oldn)
5206 {
5207 n = (n ^ (unsigned long)-1);
5208 negative ^= TRUE;
5209 }
5210 }
5211 if (n == 0)
5212 negative = FALSE;
5213 }
5214
5215 /*
5216 * Delete the old number.
5217 */
5218 curwin->w_cursor.col = col;
5219 todel = length;
5220 c = gchar_cursor();
5221 /*
5222 * Don't include the '-' in the length, only the length of the part
5223 * after it is kept the same.
5224 */
5225 if (c == '-')
5226 --length;
5227 while (todel-- > 0)
5228 {
5229 if (c < 0x100 && isalpha(c))
5230 {
5231 if (isupper(c))
5232 hexupper = TRUE;
5233 else
5234 hexupper = FALSE;
5235 }
5236 /* del_char() will mark line needing displaying */
5237 (void)del_char(FALSE);
5238 c = gchar_cursor();
5239 }
5240
5241 /*
5242 * Prepare the leading characters in buf1[].
5243 * When there are many leading zeros it could be very long. Allocate
5244 * a bit too much.
5245 */
5246 buf1 = alloc((unsigned)length + NUMBUFLEN);
5247 if (buf1 == NULL)
5248 return FAIL;
5249 ptr = buf1;
5250 if (negative)
5251 {
5252 *ptr++ = '-';
5253 }
5254 if (hex)
5255 {
5256 *ptr++ = '0';
5257 --length;
5258 }
5259 if (hex == 'x' || hex == 'X')
5260 {
5261 *ptr++ = hex;
5262 --length;
5263 }
5264
5265 /*
5266 * Put the number characters in buf2[].
5267 */
5268 if (hex == 0)
5269 sprintf((char *)buf2, "%lu", n);
5270 else if (hex == '0')
5271 sprintf((char *)buf2, "%lo", n);
5272 else if (hex && hexupper)
5273 sprintf((char *)buf2, "%lX", n);
5274 else
5275 sprintf((char *)buf2, "%lx", n);
5276 length -= (int)STRLEN(buf2);
5277
5278 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005279 * Adjust number of zeros to the new number of digits, so the
5280 * total length of the number remains the same.
5281 * Don't do this when
5282 * the result may look like an octal number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005284 if (firstdigit == '0' && !(dooct && hex == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 while (length-- > 0)
5286 *ptr++ = '0';
5287 *ptr = NUL;
5288 STRCAT(buf1, buf2);
5289 ins_str(buf1); /* insert the new number */
5290 vim_free(buf1);
5291 }
5292 --curwin->w_cursor.col;
5293 curwin->w_set_curswant = TRUE;
5294#ifdef FEAT_RIGHTLEFT
5295 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
5296 RLADDSUBFIX(ptr);
5297#endif
5298 return OK;
5299}
5300
5301#ifdef FEAT_VIMINFO
5302 int
5303read_viminfo_register(virp, force)
5304 vir_T *virp;
5305 int force;
5306{
5307 int eof;
5308 int do_it = TRUE;
5309 int size;
5310 int limit;
5311 int i;
5312 int set_prev = FALSE;
5313 char_u *str;
5314 char_u **array = NULL;
5315
5316 /* We only get here (hopefully) if line[0] == '"' */
5317 str = virp->vir_line + 1;
5318 if (*str == '"')
5319 {
5320 set_prev = TRUE;
5321 str++;
5322 }
5323 if (!ASCII_ISALNUM(*str) && *str != '-')
5324 {
5325 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5326 return TRUE; /* too many errors, pretend end-of-file */
5327 do_it = FALSE;
5328 }
5329 get_yank_register(*str++, FALSE);
5330 if (!force && y_current->y_array != NULL)
5331 do_it = FALSE;
5332 size = 0;
5333 limit = 100; /* Optimized for registers containing <= 100 lines */
5334 if (do_it)
5335 {
5336 if (set_prev)
5337 y_previous = y_current;
5338 vim_free(y_current->y_array);
5339 array = y_current->y_array =
5340 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
5341 str = skipwhite(str);
5342 if (STRNCMP(str, "CHAR", 4) == 0)
5343 y_current->y_type = MCHAR;
5344#ifdef FEAT_VISUAL
5345 else if (STRNCMP(str, "BLOCK", 5) == 0)
5346 y_current->y_type = MBLOCK;
5347#endif
5348 else
5349 y_current->y_type = MLINE;
5350 /* get the block width; if it's missing we get a zero, which is OK */
5351 str = skipwhite(skiptowhite(str));
5352#ifdef FEAT_VISUAL
5353 y_current->y_width = getdigits(&str);
5354#else
5355 (void)getdigits(&str);
5356#endif
5357 }
5358
5359 while (!(eof = viminfo_readline(virp))
5360 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5361 {
5362 if (do_it)
5363 {
5364 if (size >= limit)
5365 {
5366 y_current->y_array = (char_u **)
5367 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
5368 for (i = 0; i < limit; i++)
5369 y_current->y_array[i] = array[i];
5370 vim_free(array);
5371 limit *= 2;
5372 array = y_current->y_array;
5373 }
5374 str = viminfo_readstring(virp, 1, TRUE);
5375 if (str != NULL)
5376 array[size++] = str;
5377 else
5378 do_it = FALSE;
5379 }
5380 }
5381 if (do_it)
5382 {
5383 if (size == 0)
5384 {
5385 vim_free(array);
5386 y_current->y_array = NULL;
5387 }
5388 else if (size < limit)
5389 {
5390 y_current->y_array =
5391 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
5392 for (i = 0; i < size; i++)
5393 y_current->y_array[i] = array[i];
5394 vim_free(array);
5395 }
5396 y_current->y_size = size;
5397 }
5398 return eof;
5399}
5400
5401 void
5402write_viminfo_registers(fp)
5403 FILE *fp;
5404{
5405 int i, j;
5406 char_u *type;
5407 char_u c;
5408 int num_lines;
5409 int max_num_lines;
5410 int max_kbyte;
5411 long len;
5412
5413 fprintf(fp, _("\n# Registers:\n"));
5414
5415 /* Get '<' value, use old '"' value if '<' is not found. */
5416 max_num_lines = get_viminfo_parameter('<');
5417 if (max_num_lines < 0)
5418 max_num_lines = get_viminfo_parameter('"');
5419 if (max_num_lines == 0)
5420 return;
5421 max_kbyte = get_viminfo_parameter('s');
5422 if (max_kbyte == 0)
5423 return;
5424 for (i = 0; i < NUM_REGISTERS; i++)
5425 {
5426 if (y_regs[i].y_array == NULL)
5427 continue;
5428#ifdef FEAT_CLIPBOARD
5429 /* Skip '*'/'+' register, we don't want them back next time */
5430 if (i == STAR_REGISTER || i == PLUS_REGISTER)
5431 continue;
5432#endif
5433#ifdef FEAT_DND
5434 /* Neither do we want the '~' register */
5435 if (i == TILDE_REGISTER)
5436 continue;
5437#endif
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005438 /* Skip empty registers. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439 num_lines = y_regs[i].y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005440 if (num_lines == 0
5441 || (num_lines == 1 && y_regs[i].y_type == MCHAR
5442 && STRLEN(y_regs[i].y_array[0]) == 0))
5443 continue;
5444
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445 if (max_kbyte > 0)
5446 {
5447 /* Skip register if there is more text than the maximum size. */
5448 len = 0;
5449 for (j = 0; j < num_lines; j++)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005450 len += (long)STRLEN(y_regs[i].y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005451 if (len > (long)max_kbyte * 1024L)
5452 continue;
5453 }
5454
5455 switch (y_regs[i].y_type)
5456 {
5457 case MLINE:
5458 type = (char_u *)"LINE";
5459 break;
5460 case MCHAR:
5461 type = (char_u *)"CHAR";
5462 break;
5463#ifdef FEAT_VISUAL
5464 case MBLOCK:
5465 type = (char_u *)"BLOCK";
5466 break;
5467#endif
5468 default:
5469 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005470 y_regs[i].y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 emsg(IObuff);
5472 type = (char_u *)"LINE";
5473 break;
5474 }
5475 if (y_previous == &y_regs[i])
5476 fprintf(fp, "\"");
5477 c = get_register_name(i);
5478 fprintf(fp, "\"%c\t%s\t%d\n", c, type,
5479#ifdef FEAT_VISUAL
5480 (int)y_regs[i].y_width
5481#else
5482 0
5483#endif
5484 );
5485
5486 /* If max_num_lines < 0, then we save ALL the lines in the register */
5487 if (max_num_lines > 0 && num_lines > max_num_lines)
5488 num_lines = max_num_lines;
5489 for (j = 0; j < num_lines; j++)
5490 {
5491 putc('\t', fp);
5492 viminfo_writestring(fp, y_regs[i].y_array[j]);
5493 }
5494 }
5495}
5496#endif /* FEAT_VIMINFO */
5497
5498#if defined(FEAT_CLIPBOARD) || defined(PROTO)
5499/*
5500 * SELECTION / PRIMARY ('*')
5501 *
5502 * Text selection stuff that uses the GUI selection register '*'. When using a
5503 * GUI this may be text from another window, otherwise it is the last text we
5504 * had highlighted with VIsual mode. With mouse support, clicking the middle
5505 * button performs the paste, otherwise you will need to do <"*p>. "
5506 * If not under X, it is synonymous with the clipboard register '+'.
5507 *
5508 * X CLIPBOARD ('+')
5509 *
5510 * Text selection stuff that uses the GUI clipboard register '+'.
5511 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5512 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5513 * otherwise you will need to do <"+p>. "
5514 * If not under X, it is synonymous with the selection register '*'.
5515 */
5516
5517/*
5518 * Routine to export any final X selection we had to the environment
5519 * so that the text is still available after vim has exited. X selections
5520 * only exist while the owning application exists, so we write to the
5521 * permanent (while X runs) store CUT_BUFFER0.
5522 * Dump the CLIPBOARD selection if we own it (it's logically the more
5523 * 'permanent' of the two), otherwise the PRIMARY one.
5524 * For now, use a hard-coded sanity limit of 1Mb of data.
5525 */
5526#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5527 void
5528x11_export_final_selection()
5529{
5530 Display *dpy;
5531 char_u *str = NULL;
5532 long_u len = 0;
5533 int motion_type = -1;
5534
5535# ifdef FEAT_GUI
5536 if (gui.in_use)
5537 dpy = X_DISPLAY;
5538 else
5539# endif
5540# ifdef FEAT_XCLIPBOARD
5541 dpy = xterm_dpy;
5542# else
5543 return;
5544# endif
5545
5546 /* Get selection to export */
5547 if (clip_plus.owned)
5548 motion_type = clip_convert_selection(&str, &len, &clip_plus);
5549 else if (clip_star.owned)
5550 motion_type = clip_convert_selection(&str, &len, &clip_star);
5551
5552 /* Check it's OK */
5553 if (dpy != NULL && str != NULL && motion_type >= 0
5554 && len < 1024*1024 && len > 0)
5555 {
5556 XStoreBuffer(dpy, (char *)str, (int)len, 0);
5557 XFlush(dpy);
5558 }
5559
5560 vim_free(str);
5561}
5562#endif
5563
5564 void
5565clip_free_selection(cbd)
5566 VimClipboard *cbd;
5567{
5568 struct yankreg *y_ptr = y_current;
5569
5570 if (cbd == &clip_plus)
5571 y_current = &y_regs[PLUS_REGISTER];
5572 else
5573 y_current = &y_regs[STAR_REGISTER];
5574 free_yank_all();
5575 y_current->y_size = 0;
5576 y_current = y_ptr;
5577}
5578
5579/*
5580 * Get the selected text and put it in the gui selection register '*' or '+'.
5581 */
5582 void
5583clip_get_selection(cbd)
5584 VimClipboard *cbd;
5585{
5586 struct yankreg *old_y_previous, *old_y_current;
5587 pos_T old_cursor;
5588#ifdef FEAT_VISUAL
5589 pos_T old_visual;
5590 int old_visual_mode;
5591#endif
5592 colnr_T old_curswant;
5593 int old_set_curswant;
5594 pos_T old_op_start, old_op_end;
5595 oparg_T oa;
5596 cmdarg_T ca;
5597
5598 if (cbd->owned)
5599 {
5600 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
5601 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
5602 return;
5603
5604 /* Get the text between clip_star.start & clip_star.end */
5605 old_y_previous = y_previous;
5606 old_y_current = y_current;
5607 old_cursor = curwin->w_cursor;
5608 old_curswant = curwin->w_curswant;
5609 old_set_curswant = curwin->w_set_curswant;
5610 old_op_start = curbuf->b_op_start;
5611 old_op_end = curbuf->b_op_end;
5612#ifdef FEAT_VISUAL
5613 old_visual = VIsual;
5614 old_visual_mode = VIsual_mode;
5615#endif
5616 clear_oparg(&oa);
5617 oa.regname = (cbd == &clip_plus ? '+' : '*');
5618 oa.op_type = OP_YANK;
5619 vim_memset(&ca, 0, sizeof(ca));
5620 ca.oap = &oa;
5621 ca.cmdchar = 'y';
5622 ca.count1 = 1;
5623 ca.retval = CA_NO_ADJ_OP_END;
5624 do_pending_operator(&ca, 0, TRUE);
5625 y_previous = old_y_previous;
5626 y_current = old_y_current;
5627 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005628 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629 curwin->w_curswant = old_curswant;
5630 curwin->w_set_curswant = old_set_curswant;
5631 curbuf->b_op_start = old_op_start;
5632 curbuf->b_op_end = old_op_end;
5633#ifdef FEAT_VISUAL
5634 VIsual = old_visual;
5635 VIsual_mode = old_visual_mode;
5636#endif
5637 }
5638 else
5639 {
5640 clip_free_selection(cbd);
5641
5642 /* Try to get selected text from another window */
5643 clip_gen_request_selection(cbd);
5644 }
5645}
5646
5647/* Convert from the GUI selection string into the '*'/'+' register */
5648 void
5649clip_yank_selection(type, str, len, cbd)
5650 int type;
5651 char_u *str;
5652 long len;
5653 VimClipboard *cbd;
5654{
5655 struct yankreg *y_ptr;
5656
5657 if (cbd == &clip_plus)
5658 y_ptr = &y_regs[PLUS_REGISTER];
5659 else
5660 y_ptr = &y_regs[STAR_REGISTER];
5661
5662 clip_free_selection(cbd);
5663
5664 str_to_reg(y_ptr, type, str, len, 0L);
5665}
5666
5667/*
5668 * Convert the '*'/'+' register into a GUI selection string returned in *str
5669 * with length *len.
5670 * Returns the motion type, or -1 for failure.
5671 */
5672 int
5673clip_convert_selection(str, len, cbd)
5674 char_u **str;
5675 long_u *len;
5676 VimClipboard *cbd;
5677{
5678 char_u *p;
5679 int lnum;
5680 int i, j;
5681 int_u eolsize;
5682 struct yankreg *y_ptr;
5683
5684 if (cbd == &clip_plus)
5685 y_ptr = &y_regs[PLUS_REGISTER];
5686 else
5687 y_ptr = &y_regs[STAR_REGISTER];
5688
5689#ifdef USE_CRNL
5690 eolsize = 2;
5691#else
5692 eolsize = 1;
5693#endif
5694
5695 *str = NULL;
5696 *len = 0;
5697 if (y_ptr->y_array == NULL)
5698 return -1;
5699
5700 for (i = 0; i < y_ptr->y_size; i++)
5701 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
5702
5703 /*
5704 * Don't want newline character at end of last line if we're in MCHAR mode.
5705 */
5706 if (y_ptr->y_type == MCHAR && *len >= eolsize)
5707 *len -= eolsize;
5708
5709 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
5710 if (p == NULL)
5711 return -1;
5712 lnum = 0;
5713 for (i = 0, j = 0; i < (int)*len; i++, j++)
5714 {
5715 if (y_ptr->y_array[lnum][j] == '\n')
5716 p[i] = NUL;
5717 else if (y_ptr->y_array[lnum][j] == NUL)
5718 {
5719#ifdef USE_CRNL
5720 p[i++] = '\r';
5721#endif
5722#ifdef USE_CR
5723 p[i] = '\r';
5724#else
5725 p[i] = '\n';
5726#endif
5727 lnum++;
5728 j = -1;
5729 }
5730 else
5731 p[i] = y_ptr->y_array[lnum][j];
5732 }
5733 return y_ptr->y_type;
5734}
5735
5736
5737# if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
5738/*
5739 * If we have written to a clipboard register, send the text to the clipboard.
5740 */
5741 static void
5742may_set_selection()
5743{
5744 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
5745 {
5746 clip_own_selection(&clip_star);
5747 clip_gen_set_selection(&clip_star);
5748 }
5749 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
5750 {
5751 clip_own_selection(&clip_plus);
5752 clip_gen_set_selection(&clip_plus);
5753 }
5754}
5755# endif
5756
5757#endif /* FEAT_CLIPBOARD || PROTO */
5758
5759
5760#if defined(FEAT_DND) || defined(PROTO)
5761/*
5762 * Replace the contents of the '~' register with str.
5763 */
5764 void
5765dnd_yank_drag_data(str, len)
5766 char_u *str;
5767 long len;
5768{
5769 struct yankreg *curr;
5770
5771 curr = y_current;
5772 y_current = &y_regs[TILDE_REGISTER];
5773 free_yank_all();
5774 str_to_reg(y_current, MCHAR, str, len, 0L);
5775 y_current = curr;
5776}
5777#endif
5778
5779
5780#if defined(FEAT_EVAL) || defined(PROTO)
5781/*
5782 * Return the type of a register.
5783 * Used for getregtype()
5784 * Returns MAUTO for error.
5785 */
5786 char_u
5787get_reg_type(regname, reglen)
5788 int regname;
5789 long *reglen;
5790{
5791 switch (regname)
5792 {
5793 case '%': /* file name */
5794 case '#': /* alternate file name */
5795 case '=': /* expression */
5796 case ':': /* last command line */
5797 case '/': /* last search-pattern */
5798 case '.': /* last inserted text */
5799#ifdef FEAT_SEARCHPATH
5800 case Ctrl_F: /* Filename under cursor */
5801 case Ctrl_P: /* Path under cursor, expand via "path" */
5802#endif
5803 case Ctrl_W: /* word under cursor */
5804 case Ctrl_A: /* WORD (mnemonic All) under cursor */
5805 case '_': /* black hole: always empty */
5806 return MCHAR;
5807 }
5808
5809#ifdef FEAT_CLIPBOARD
5810 regname = may_get_selection(regname);
5811#endif
5812
5813 /* Should we check for a valid name? */
5814 get_yank_register(regname, FALSE);
5815
5816 if (y_current->y_array != NULL)
5817 {
5818#ifdef FEAT_VISUAL
5819 if (reglen != NULL && y_current->y_type == MBLOCK)
5820 *reglen = y_current->y_width;
5821#endif
5822 return y_current->y_type;
5823 }
5824 return MAUTO;
5825}
5826
5827/*
5828 * Return the contents of a register as a single allocated string.
5829 * Used for "@r" in expressions and for getreg().
5830 * Returns NULL for error.
5831 */
5832 char_u *
Bram Moolenaarde934d72005-05-22 22:09:40 +00005833get_reg_contents(regname, allowexpr, expr_src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 int regname;
Bram Moolenaarde934d72005-05-22 22:09:40 +00005835 int allowexpr; /* allow "=" register */
5836 int expr_src; /* get expression for "=" register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005837{
5838 long i;
5839 char_u *retval;
5840 int allocated;
5841 long len;
5842
5843 /* Don't allow using an expression register inside an expression */
5844 if (regname == '=')
5845 {
5846 if (allowexpr)
Bram Moolenaarde934d72005-05-22 22:09:40 +00005847 {
5848 if (expr_src)
5849 return get_expr_line_src();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850 return get_expr_line();
Bram Moolenaarde934d72005-05-22 22:09:40 +00005851 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005852 return NULL;
5853 }
5854
5855 if (regname == '@') /* "@@" is used for unnamed register */
5856 regname = '"';
5857
5858 /* check for valid regname */
5859 if (regname != NUL && !valid_yank_reg(regname, FALSE))
5860 return NULL;
5861
5862#ifdef FEAT_CLIPBOARD
5863 regname = may_get_selection(regname);
5864#endif
5865
5866 if (get_spec_reg(regname, &retval, &allocated, FALSE))
5867 {
5868 if (retval == NULL)
5869 return NULL;
5870 if (!allocated)
5871 retval = vim_strsave(retval);
5872 return retval;
5873 }
5874
5875 get_yank_register(regname, FALSE);
5876 if (y_current->y_array == NULL)
5877 return NULL;
5878
5879 /*
5880 * Compute length of resulting string.
5881 */
5882 len = 0;
5883 for (i = 0; i < y_current->y_size; ++i)
5884 {
5885 len += (long)STRLEN(y_current->y_array[i]);
5886 /*
5887 * Insert a newline between lines and after last line if
5888 * y_type is MLINE.
5889 */
5890 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5891 ++len;
5892 }
5893
5894 retval = lalloc(len + 1, TRUE);
5895
5896 /*
5897 * Copy the lines of the yank register into the string.
5898 */
5899 if (retval != NULL)
5900 {
5901 len = 0;
5902 for (i = 0; i < y_current->y_size; ++i)
5903 {
5904 STRCPY(retval + len, y_current->y_array[i]);
5905 len += (long)STRLEN(retval + len);
5906
5907 /*
5908 * Insert a NL between lines and after the last line if y_type is
5909 * MLINE.
5910 */
5911 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5912 retval[len++] = '\n';
5913 }
5914 retval[len] = NUL;
5915 }
5916
5917 return retval;
5918}
5919
5920/*
5921 * Store string "str" in register "name".
5922 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
5923 * If "must_append" is TRUE, always append to the register. Otherwise append
5924 * if "name" is an uppercase letter.
5925 * Note: "maxlen" and "must_append" don't work for the "/" register.
5926 * Careful: 'str' is modified, you may have to use a copy!
5927 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
5928 */
5929 void
5930write_reg_contents(name, str, maxlen, must_append)
5931 int name;
5932 char_u *str;
5933 int maxlen;
5934 int must_append;
5935{
5936 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
5937}
5938
5939 void
5940write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
5941 int name;
5942 char_u *str;
5943 int maxlen;
5944 int must_append;
5945 int yank_type;
5946 long block_len;
5947{
5948 struct yankreg *old_y_previous, *old_y_current;
5949 long len;
5950
Bram Moolenaare7566042005-06-17 22:00:15 +00005951 if (maxlen >= 0)
5952 len = maxlen;
5953 else
5954 len = (long)STRLEN(str);
5955
Bram Moolenaar071d4272004-06-13 20:20:40 +00005956 /* Special case: '/' search pattern */
5957 if (name == '/')
5958 {
5959 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
5960 return;
5961 }
5962
Bram Moolenaare7566042005-06-17 22:00:15 +00005963#ifdef FEAT_EVAL
5964 if (name == '=')
5965 {
5966 char_u *p, *s;
5967
5968 p = vim_strnsave(str, (int)len);
5969 if (p == NULL)
5970 return;
5971 if (must_append)
5972 {
5973 s = concat_str(get_expr_line_src(), p);
5974 vim_free(p);
5975 p = s;
5976
5977 }
5978 set_expr_line(p);
5979 return;
5980 }
5981#endif
5982
Bram Moolenaar071d4272004-06-13 20:20:40 +00005983 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
5984 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005985 emsg_invreg(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986 return;
5987 }
5988
5989 if (name == '_') /* black hole: nothing to do */
5990 return;
5991
5992 /* Don't want to change the current (unnamed) register */
5993 old_y_previous = y_previous;
5994 old_y_current = y_current;
5995
5996 get_yank_register(name, TRUE);
5997 if (!y_append && !must_append)
5998 free_yank_all();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999#ifndef FEAT_VISUAL
6000 /* Just in case - make sure we don't use MBLOCK */
6001 if (yank_type == MBLOCK)
6002 yank_type = MAUTO;
6003#endif
6004 if (yank_type == MAUTO)
6005 yank_type = ((len > 0 && (str[len - 1] == '\n' || str[len - 1] == '\r'))
6006 ? MLINE : MCHAR);
6007 str_to_reg(y_current, yank_type, str, len, block_len);
6008
6009# ifdef FEAT_CLIPBOARD
6010 /* Send text of clipboard register to the clipboard. */
6011 may_set_selection();
6012# endif
6013
6014 /* ':let @" = "val"' should change the meaning of the "" register */
6015 if (name != '"')
6016 y_previous = old_y_previous;
6017 y_current = old_y_current;
6018}
6019#endif /* FEAT_EVAL */
6020
6021#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6022/*
6023 * Put a string into a register. When the register is not empty, the string
6024 * is appended.
6025 */
6026 static void
6027str_to_reg(y_ptr, type, str, len, blocklen)
6028 struct yankreg *y_ptr; /* pointer to yank register */
6029 int type; /* MCHAR, MLINE or MBLOCK */
6030 char_u *str; /* string to put in register */
6031 long len; /* length of string */
6032 long blocklen; /* width of Visual block */
6033{
6034 int lnum;
6035 long start;
6036 long i;
6037 int extra;
6038 int newlines; /* number of lines added */
6039 int extraline = 0; /* extra line at the end */
6040 int append = FALSE; /* append to last line in register */
6041 char_u *s;
6042 char_u **pp;
6043#ifdef FEAT_VISUAL
6044 long maxlen;
6045#endif
6046
6047 if (y_ptr->y_array == NULL) /* NULL means emtpy register */
6048 y_ptr->y_size = 0;
6049
6050 /*
6051 * Count the number of lines within the string
6052 */
6053 newlines = 0;
6054 for (i = 0; i < len; i++)
6055 if (str[i] == '\n')
6056 ++newlines;
6057 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
6058 {
6059 extraline = 1;
6060 ++newlines; /* count extra newline at the end */
6061 }
6062 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
6063 {
6064 append = TRUE;
6065 --newlines; /* uncount newline when appending first line */
6066 }
6067
6068 /*
6069 * Allocate an array to hold the pointers to the new register lines.
6070 * If the register was not empty, move the existing lines to the new array.
6071 */
6072 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
6073 * sizeof(char_u *), TRUE);
6074 if (pp == NULL) /* out of memory */
6075 return;
6076 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
6077 pp[lnum] = y_ptr->y_array[lnum];
6078 vim_free(y_ptr->y_array);
6079 y_ptr->y_array = pp;
6080#ifdef FEAT_VISUAL
6081 maxlen = 0;
6082#endif
6083
6084 /*
6085 * Find the end of each line and save it into the array.
6086 */
6087 for (start = 0; start < len + extraline; start += i + 1)
6088 {
6089 for (i = start; i < len; ++i) /* find the end of the line */
6090 if (str[i] == '\n')
6091 break;
6092 i -= start; /* i is now length of line */
6093#ifdef FEAT_VISUAL
6094 if (i > maxlen)
6095 maxlen = i;
6096#endif
6097 if (append)
6098 {
6099 --lnum;
6100 extra = (int)STRLEN(y_ptr->y_array[lnum]);
6101 }
6102 else
6103 extra = 0;
6104 s = alloc((unsigned)(i + extra + 1));
6105 if (s == NULL)
6106 break;
6107 if (extra)
6108 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
6109 if (append)
6110 vim_free(y_ptr->y_array[lnum]);
6111 if (i)
6112 mch_memmove(s + extra, str + start, (size_t)i);
6113 extra += i;
6114 s[extra] = NUL;
6115 y_ptr->y_array[lnum++] = s;
6116 while (--extra >= 0)
6117 {
6118 if (*s == NUL)
6119 *s = '\n'; /* replace NUL with newline */
6120 ++s;
6121 }
6122 append = FALSE; /* only first line is appended */
6123 }
6124 y_ptr->y_type = type;
6125 y_ptr->y_size = lnum;
6126# ifdef FEAT_VISUAL
6127 if (type == MBLOCK)
6128 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
6129 else
6130 y_ptr->y_width = 0;
6131# endif
6132}
6133#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
6134
6135 void
6136clear_oparg(oap)
6137 oparg_T *oap;
6138{
6139 vim_memset(oap, 0, sizeof(oparg_T));
6140}
6141
Bram Moolenaar7c626922005-02-07 22:01:03 +00006142static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143
6144/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00006145 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146 *
6147 * "Words" are counted by looking for boundaries between non-space and
6148 * space characters. (it seems to produce results that match 'wc'.)
6149 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00006150 * Return value is byte count; word count for the line is added to "*wc".
6151 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006152 *
6153 * The function will only examine the first "limit" characters in the
6154 * line, stopping if it encounters an end-of-line (NUL byte). In that
6155 * case, eol_size will be added to the character count to account for
6156 * the size of the EOL character.
6157 */
6158 static long
Bram Moolenaar7c626922005-02-07 22:01:03 +00006159line_count_info(line, wc, cc, limit, eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 char_u *line;
6161 long *wc;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006162 long *cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163 long limit;
6164 int eol_size;
6165{
Bram Moolenaar7c626922005-02-07 22:01:03 +00006166 long i;
6167 long words = 0;
6168 long chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169 int is_word = 0;
6170
Bram Moolenaar7c626922005-02-07 22:01:03 +00006171 for (i = 0; line[i] && i < limit; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006172 {
6173 if (is_word)
6174 {
6175 if (vim_isspace(line[i]))
6176 {
6177 words++;
6178 is_word = 0;
6179 }
6180 }
6181 else if (!vim_isspace(line[i]))
6182 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006183 ++chars;
6184#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006185 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00006186#else
6187 ++i;
6188#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 }
6190
6191 if (is_word)
6192 words++;
6193 *wc += words;
6194
6195 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006196 if (line[i] == NUL && i < limit)
6197 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006199 chars += eol_size;
6200 }
6201 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202 return i;
6203}
6204
6205/*
6206 * Give some info about the position of the cursor (for "g CTRL-G").
6207 * In Visual mode, give some info about the selected region. (In this case,
6208 * the *_count_cursor variables store running totals for the selection.)
6209 */
6210 void
6211cursor_pos_info()
6212{
6213 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006214 char_u buf1[50];
6215 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216 linenr_T lnum;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006217 long byte_count = 0;
6218 long byte_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006219 long char_count = 0;
6220 long char_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006221 long word_count = 0;
6222 long word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006223 int eol_size;
6224 long last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225#ifdef FEAT_VISUAL
6226 long line_count_selected = 0;
6227 pos_T min_pos, max_pos;
6228 oparg_T oparg;
6229 struct block_def bd;
6230#endif
6231
6232 /*
6233 * Compute the length of the file in characters.
6234 */
6235 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6236 {
6237 MSG(_(no_lines_msg));
6238 }
6239 else
6240 {
6241 if (get_fileformat(curbuf) == EOL_DOS)
6242 eol_size = 2;
6243 else
6244 eol_size = 1;
6245
6246#ifdef FEAT_VISUAL
6247 if (VIsual_active)
6248 {
6249 if (lt(VIsual, curwin->w_cursor))
6250 {
6251 min_pos = VIsual;
6252 max_pos = curwin->w_cursor;
6253 }
6254 else
6255 {
6256 min_pos = curwin->w_cursor;
6257 max_pos = VIsual;
6258 }
6259 if (*p_sel == 'e' && max_pos.col > 0)
6260 --max_pos.col;
6261
6262 if (VIsual_mode == Ctrl_V)
6263 {
6264 oparg.is_VIsual = 1;
6265 oparg.block_mode = TRUE;
6266 oparg.op_type = OP_NOP;
6267 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006268 &oparg.start_vcol, &oparg.end_vcol);
6269 if (curwin->w_curswant == MAXCOL)
6270 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006271 /* Swap the start, end vcol if needed */
6272 if (oparg.end_vcol < oparg.start_vcol)
6273 {
6274 oparg.end_vcol += oparg.start_vcol;
6275 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
6276 oparg.end_vcol -= oparg.start_vcol;
6277 }
6278 }
6279 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
6280 }
6281#endif
6282
6283 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6284 {
6285 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006286 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287 {
6288 ui_breakcheck();
6289 if (got_int)
6290 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006291 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 }
6293
6294#ifdef FEAT_VISUAL
6295 /* Do extra processing for VIsual mode. */
6296 if (VIsual_active
6297 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
6298 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00006299 char_u *s = NULL;
6300 long len = 0L;
6301
Bram Moolenaar071d4272004-06-13 20:20:40 +00006302 switch (VIsual_mode)
6303 {
6304 case Ctrl_V:
6305# ifdef FEAT_VIRTUALEDIT
6306 virtual_op = virtual_active();
6307# endif
6308 block_prep(&oparg, &bd, lnum, 0);
6309# ifdef FEAT_VIRTUALEDIT
6310 virtual_op = MAYBE;
6311# endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00006312 s = bd.textstart;
6313 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006314 break;
6315 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00006316 s = ml_get(lnum);
6317 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318 break;
6319 case 'v':
6320 {
6321 colnr_T start_col = (lnum == min_pos.lnum)
6322 ? min_pos.col : 0;
6323 colnr_T end_col = (lnum == max_pos.lnum)
6324 ? max_pos.col - start_col + 1 : MAXCOL;
6325
Bram Moolenaardef9e822004-12-31 20:58:58 +00006326 s = ml_get(lnum) + start_col;
6327 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006328 }
6329 break;
6330 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00006331 if (s != NULL)
6332 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00006333 byte_count_cursor += line_count_info(s, &word_count_cursor,
6334 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00006335 if (lnum == curbuf->b_ml.ml_line_count
6336 && !curbuf->b_p_eol
6337 && curbuf->b_p_bin
Bram Moolenaarec2dad62005-01-02 11:36:03 +00006338 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006339 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00006340 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341 }
6342 else
6343#endif
6344 {
6345 /* In non-visual mode, check for the line the cursor is on */
6346 if (lnum == curwin->w_cursor.lnum)
6347 {
6348 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006349 char_count_cursor += char_count;
6350 byte_count_cursor = byte_count +
6351 line_count_info(ml_get(lnum),
6352 &word_count_cursor, &char_count_cursor,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006353 (long)(curwin->w_cursor.col + 1), eol_size);
6354 }
6355 }
6356 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006357 byte_count += line_count_info(ml_get(lnum), &word_count,
6358 &char_count, (long)MAXCOL, eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359 }
6360
6361 /* Correction for when last line doesn't have an EOL. */
6362 if (!curbuf->b_p_eol && curbuf->b_p_bin)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006363 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006364
6365#ifdef FEAT_VISUAL
6366 if (VIsual_active)
6367 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006368 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369 {
6370 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006371 &max_pos.col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372 sprintf((char *)buf1, _("%ld Cols; "),
6373 (long)(oparg.end_vcol - oparg.start_vcol + 1));
6374 }
6375 else
6376 buf1[0] = NUL;
6377
Bram Moolenaar7c626922005-02-07 22:01:03 +00006378 if (char_count_cursor == byte_count_cursor
Bram Moolenaar555b2802005-05-19 21:08:39 +00006379 && char_count == byte_count)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006380 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381 buf1, line_count_selected,
6382 (long)curbuf->b_ml.ml_line_count,
6383 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006384 byte_count_cursor, byte_count);
6385 else
6386 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"),
6387 buf1, line_count_selected,
6388 (long)curbuf->b_ml.ml_line_count,
6389 word_count_cursor, word_count,
6390 char_count_cursor, char_count,
6391 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006392 }
6393 else
6394#endif
6395 {
6396 p = ml_get_curline();
6397 validate_virtcol();
6398 col_print(buf1, (int)curwin->w_cursor.col + 1,
6399 (int)curwin->w_virtcol + 1);
6400 col_print(buf2, (int)STRLEN(p), linetabsize(p));
6401
Bram Moolenaar7c626922005-02-07 22:01:03 +00006402 if (char_count_cursor == byte_count_cursor
6403 && char_count == byte_count)
6404 sprintf((char *)IObuff, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405 (char *)buf1, (char *)buf2,
6406 (long)curwin->w_cursor.lnum,
6407 (long)curbuf->b_ml.ml_line_count,
6408 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006409 byte_count_cursor, byte_count);
6410 else
6411 sprintf((char *)IObuff, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"),
6412 (char *)buf1, (char *)buf2,
6413 (long)curwin->w_cursor.lnum,
6414 (long)curbuf->b_ml.ml_line_count,
6415 word_count_cursor, word_count,
6416 char_count_cursor, char_count,
6417 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418 }
6419
6420#ifdef FEAT_MBYTE
Bram Moolenaar7c626922005-02-07 22:01:03 +00006421 byte_count = bomb_size();
6422 if (byte_count > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
Bram Moolenaar7c626922005-02-07 22:01:03 +00006424 byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006425#endif
6426 /* Don't shorten this message, the user asked for it. */
6427 p = p_shm;
6428 p_shm = (char_u *)"";
6429 msg(IObuff);
6430 p_shm = p;
6431 }
6432}