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