blob: 8be36e84170d04b05482714a38c42bd695db59e5 [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)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000423 bd.textstart += (*mb_ptr2len)(bd.textstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424#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)
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001163 {
1164 /* When in Visual mode "'<,'>" will be prepended to the command.
1165 * Remove it when it's already there. */
1166 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
1167 retval = put_in_typebuf(p + 5, TRUE);
1168 else
1169 retval = put_in_typebuf(p, TRUE);
1170 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001171 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 }
1173#endif
1174#ifdef FEAT_EVAL
1175 else if (regname == '=')
1176 {
1177 p = get_expr_line();
1178 if (p == NULL)
1179 return FAIL;
1180 retval = put_in_typebuf(p, colon);
1181 vim_free(p);
1182 }
1183#endif
1184 else if (regname == '.') /* use last inserted text */
1185 {
1186 p = get_last_insert_save();
1187 if (p == NULL)
1188 {
1189 EMSG(_(e_noinstext));
1190 return FAIL;
1191 }
1192 retval = put_in_typebuf(p, colon);
1193 vim_free(p);
1194 }
1195 else
1196 {
1197 get_yank_register(regname, FALSE);
1198 if (y_current->y_array == NULL)
1199 return FAIL;
1200
1201 /* Disallow remaping for ":@r". */
1202 remap = colon ? REMAP_NONE : REMAP_YES;
1203
1204 /*
1205 * Insert lines into typeahead buffer, from last one to first one.
1206 */
1207 put_reedit_in_typebuf();
1208 for (i = y_current->y_size; --i >= 0; )
1209 {
1210 /* insert NL between lines and after last line if type is MLINE */
1211 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1212 || addcr)
1213 {
1214 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, FALSE) == FAIL)
1215 return FAIL;
1216 }
1217 if (ins_typebuf(y_current->y_array[i], remap, 0, TRUE, FALSE)
1218 == FAIL)
1219 return FAIL;
1220 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, FALSE)
1221 == FAIL)
1222 return FAIL;
1223 }
1224 Exec_reg = TRUE; /* disable the 'q' command */
1225 }
1226 return retval;
1227}
1228
1229/*
1230 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1231 * used only after other typeahead has been processed.
1232 */
1233 static void
1234put_reedit_in_typebuf()
1235{
1236 char_u buf[3];
1237
1238 if (restart_edit != NUL)
1239 {
1240 if (restart_edit == 'V')
1241 {
1242 buf[0] = 'g';
1243 buf[1] = 'R';
1244 buf[2] = NUL;
1245 }
1246 else
1247 {
1248 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1249 buf[1] = NUL;
1250 }
1251 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, FALSE) == OK)
1252 restart_edit = NUL;
1253 }
1254}
1255
1256 static int
1257put_in_typebuf(s, colon)
1258 char_u *s;
1259 int colon; /* add ':' before the line */
1260{
1261 int retval = OK;
1262
1263 put_reedit_in_typebuf();
1264 if (colon)
1265 retval = ins_typebuf((char_u *)"\n", REMAP_YES, 0, TRUE, FALSE);
1266 if (retval == OK)
1267 retval = ins_typebuf(s, REMAP_YES, 0, TRUE, FALSE);
1268 if (colon && retval == OK)
1269 retval = ins_typebuf((char_u *)":", REMAP_YES, 0, TRUE, FALSE);
1270 return retval;
1271}
1272
1273/*
1274 * Insert a yank register: copy it into the Read buffer.
1275 * Used by CTRL-R command and middle mouse button in insert mode.
1276 *
1277 * return FAIL for failure, OK otherwise
1278 */
1279 int
1280insert_reg(regname, literally)
1281 int regname;
1282 int literally; /* insert literally, not as if typed */
1283{
1284 long i;
1285 int retval = OK;
1286 char_u *arg;
1287 int allocated;
1288
1289 /*
1290 * It is possible to get into an endless loop by having CTRL-R a in
1291 * register a and then, in insert mode, doing CTRL-R a.
1292 * If you hit CTRL-C, the loop will be broken here.
1293 */
1294 ui_breakcheck();
1295 if (got_int)
1296 return FAIL;
1297
1298 /* check for valid regname */
1299 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1300 return FAIL;
1301
1302#ifdef FEAT_CLIPBOARD
1303 regname = may_get_selection(regname);
1304#endif
1305
1306 if (regname == '.') /* insert last inserted text */
1307 retval = stuff_inserted(NUL, 1L, TRUE);
1308 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1309 {
1310 if (arg == NULL)
1311 return FAIL;
1312 stuffescaped(arg, literally);
1313 if (allocated)
1314 vim_free(arg);
1315 }
1316 else /* name or number register */
1317 {
1318 get_yank_register(regname, FALSE);
1319 if (y_current->y_array == NULL)
1320 retval = FAIL;
1321 else
1322 {
1323 for (i = 0; i < y_current->y_size; ++i)
1324 {
1325 stuffescaped(y_current->y_array[i], literally);
1326 /*
1327 * Insert a newline between lines and after last line if
1328 * y_type is MLINE.
1329 */
1330 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1331 stuffcharReadbuff('\n');
1332 }
1333 }
1334 }
1335
1336 return retval;
1337}
1338
1339/*
1340 * Stuff a string into the typeahead buffer, such that edit() will insert it
1341 * literally ("literally" TRUE) or interpret is as typed characters.
1342 */
1343 static void
1344stuffescaped(arg, literally)
1345 char_u *arg;
1346 int literally;
1347{
1348 int c;
1349 char_u *start;
1350
1351 while (*arg != NUL)
1352 {
1353 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1354 * stuff K_SPECIAL to get the effect of a special key when "literally"
1355 * is TRUE. */
1356 start = arg;
1357 while ((*arg >= ' '
1358#ifndef EBCDIC
1359 && *arg < DEL /* EBCDIC: chars above space are normal */
1360#endif
1361 )
1362 || (*arg == K_SPECIAL && !literally))
1363 ++arg;
1364 if (arg > start)
1365 stuffReadbuffLen(start, (long)(arg - start));
1366
1367 /* stuff a single special character */
1368 if (*arg != NUL)
1369 {
1370#ifdef FEAT_MBYTE
1371 if (has_mbyte)
1372 c = mb_ptr2char_adv(&arg);
1373 else
1374#endif
1375 c = *arg++;
1376 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1377 stuffcharReadbuff(Ctrl_V);
1378 stuffcharReadbuff(c);
1379 }
1380 }
1381}
1382
1383/*
1384 * If "regname" is a special register, return a pointer to its value.
1385 */
Bram Moolenaar8299df92004-07-10 09:47:34 +00001386 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387get_spec_reg(regname, argp, allocated, errmsg)
1388 int regname;
1389 char_u **argp;
1390 int *allocated;
1391 int errmsg; /* give error message when failing */
1392{
1393 int cnt;
1394
1395 *argp = NULL;
1396 *allocated = FALSE;
1397 switch (regname)
1398 {
1399 case '%': /* file name */
1400 if (errmsg)
1401 check_fname(); /* will give emsg if not set */
1402 *argp = curbuf->b_fname;
1403 return TRUE;
1404
1405 case '#': /* alternate file name */
1406 *argp = getaltfname(errmsg); /* may give emsg if not set */
1407 return TRUE;
1408
1409#ifdef FEAT_EVAL
1410 case '=': /* result of expression */
1411 *argp = get_expr_line();
1412 *allocated = TRUE;
1413 return TRUE;
1414#endif
1415
1416 case ':': /* last command line */
1417 if (last_cmdline == NULL && errmsg)
1418 EMSG(_(e_nolastcmd));
1419 *argp = last_cmdline;
1420 return TRUE;
1421
1422 case '/': /* last search-pattern */
1423 if (last_search_pat() == NULL && errmsg)
1424 EMSG(_(e_noprevre));
1425 *argp = last_search_pat();
1426 return TRUE;
1427
1428 case '.': /* last inserted text */
1429 *argp = get_last_insert_save();
1430 *allocated = TRUE;
1431 if (*argp == NULL && errmsg)
1432 EMSG(_(e_noinstext));
1433 return TRUE;
1434
1435#ifdef FEAT_SEARCHPATH
1436 case Ctrl_F: /* Filename under cursor */
1437 case Ctrl_P: /* Path under cursor, expand via "path" */
1438 if (!errmsg)
1439 return FALSE;
1440 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
1441 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L);
1442 *allocated = TRUE;
1443 return TRUE;
1444#endif
1445
1446 case Ctrl_W: /* word under cursor */
1447 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1448 if (!errmsg)
1449 return FALSE;
1450 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1451 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1452 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1453 *allocated = TRUE;
1454 return TRUE;
1455
1456 case '_': /* black hole: always empty */
1457 *argp = (char_u *)"";
1458 return TRUE;
1459 }
1460
1461 return FALSE;
1462}
1463
1464/*
Bram Moolenaar8299df92004-07-10 09:47:34 +00001465 * Paste a yank register into the command line.
1466 * Only for non-special registers.
1467 * Used by CTRL-R command in command-line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 * insert_reg() can't be used here, because special characters from the
1469 * register contents will be interpreted as commands.
1470 *
1471 * return FAIL for failure, OK otherwise
1472 */
1473 int
Bram Moolenaar8299df92004-07-10 09:47:34 +00001474cmdline_paste_reg(regname, literally)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 int regname;
1476 int literally; /* Insert text literally instead of "as typed" */
1477{
1478 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479
1480 get_yank_register(regname, FALSE);
1481 if (y_current->y_array == NULL)
1482 return FAIL;
1483
1484 for (i = 0; i < y_current->y_size; ++i)
1485 {
1486 cmdline_paste_str(y_current->y_array[i], literally);
1487
1488 /* insert ^M between lines and after last line if type is MLINE */
1489 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1490 cmdline_paste_str((char_u *)"\r", literally);
1491
1492 /* Check for CTRL-C, in case someone tries to paste a few thousand
1493 * lines and gets bored. */
1494 ui_breakcheck();
1495 if (got_int)
1496 return FAIL;
1497 }
1498 return OK;
1499}
1500
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501#if defined(FEAT_CLIPBOARD) || defined(PROTO)
1502/*
1503 * Adjust the register name pointed to with "rp" for the clipboard being
1504 * used always and the clipboard being available.
1505 */
1506 void
1507adjust_clip_reg(rp)
1508 int *rp;
1509{
1510 /* If no reg. specified, and "unnamed" is in 'clipboard', use '*' reg. */
1511 if (*rp == 0 && clip_unnamed)
1512 *rp = '*';
1513 if (!clip_star.available && *rp == '*')
1514 *rp = 0;
1515 if (!clip_plus.available && *rp == '+')
1516 *rp = 0;
1517}
1518#endif
1519
1520/*
1521 * op_delete - handle a delete operation
1522 *
1523 * return FAIL if undo failed, OK otherwise.
1524 */
1525 int
1526op_delete(oap)
1527 oparg_T *oap;
1528{
1529 int n;
1530 linenr_T lnum;
1531 char_u *ptr;
1532#ifdef FEAT_VISUAL
1533 char_u *newp, *oldp;
1534 struct block_def bd;
1535#endif
1536 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1537 int did_yank = FALSE;
1538
1539 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1540 return OK;
1541
1542 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1543 if (oap->empty)
1544 return u_save_cursor();
1545
1546 if (!curbuf->b_p_ma)
1547 {
1548 EMSG(_(e_modifiable));
1549 return FAIL;
1550 }
1551
1552#ifdef FEAT_CLIPBOARD
1553 adjust_clip_reg(&oap->regname);
1554#endif
1555
1556#ifdef FEAT_MBYTE
1557 if (has_mbyte)
1558 mb_adjust_opend(oap);
1559#endif
1560
1561/*
1562 * Imitate the strange Vi behaviour: If the delete spans more than one line
1563 * and motion_type == MCHAR and the result is a blank line, make the delete
1564 * linewise. Don't do this for the change command or Visual mode.
1565 */
1566 if ( oap->motion_type == MCHAR
1567#ifdef FEAT_VISUAL
1568 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001569 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570#endif
1571 && oap->line_count > 1
1572 && oap->op_type == OP_DELETE)
1573 {
1574 ptr = ml_get(oap->end.lnum) + oap->end.col + oap->inclusive;
1575 ptr = skipwhite(ptr);
1576 if (*ptr == NUL && inindent(0))
1577 oap->motion_type = MLINE;
1578 }
1579
1580/*
1581 * Check for trying to delete (e.g. "D") in an empty line.
1582 * Note: For the change operator it is ok.
1583 */
1584 if ( oap->motion_type == MCHAR
1585 && oap->line_count == 1
1586 && oap->op_type == OP_DELETE
1587 && *ml_get(oap->start.lnum) == NUL)
1588 {
1589 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001590 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 * 'cpoptions' (Vi compatible).
1592 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001593#ifdef FEAT_VIRTUALEDIT
1594 if (virtual_op)
1595 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1596 * marks as if it happened. */
1597 goto setmarks;
1598#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1600 beep_flush();
1601 return OK;
1602 }
1603
1604/*
1605 * Do a yank of whatever we're about to delete.
1606 * If a yank register was specified, put the deleted text into that register.
1607 * For the black hole register '_' don't yank anything.
1608 */
1609 if (oap->regname != '_')
1610 {
1611 if (oap->regname != 0)
1612 {
1613 /* check for read-only register */
1614 if (!valid_yank_reg(oap->regname, TRUE))
1615 {
1616 beep_flush();
1617 return OK;
1618 }
1619 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1620 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1621 did_yank = TRUE;
1622 }
1623
1624 /*
1625 * Put deleted text into register 1 and shift number registers if the
1626 * delete contains a line break, or when a regname has been specified.
1627 */
1628 if (oap->regname != 0 || oap->motion_type == MLINE
1629 || oap->line_count > 1 || oap->use_reg_one)
1630 {
1631 y_current = &y_regs[9];
1632 free_yank_all(); /* free register nine */
1633 for (n = 9; n > 1; --n)
1634 y_regs[n] = y_regs[n - 1];
1635 y_previous = y_current = &y_regs[1];
1636 y_regs[1].y_array = NULL; /* set register one to empty */
1637 if (op_yank(oap, TRUE, FALSE) == OK)
1638 did_yank = TRUE;
1639 }
1640
1641 /* Yank into small delete register when no register specified and the
1642 * delete is within one line. */
1643 if (oap->regname == 0 && oap->motion_type != MLINE
1644 && oap->line_count == 1)
1645 {
1646 oap->regname = '-';
1647 get_yank_register(oap->regname, TRUE);
1648 if (op_yank(oap, TRUE, FALSE) == OK)
1649 did_yank = TRUE;
1650 oap->regname = 0;
1651 }
1652
1653 /*
1654 * If there's too much stuff to fit in the yank register, then get a
1655 * confirmation before doing the delete. This is crude, but simple.
1656 * And it avoids doing a delete of something we can't put back if we
1657 * want.
1658 */
1659 if (!did_yank)
1660 {
1661 int msg_silent_save = msg_silent;
1662
1663 msg_silent = 0; /* must display the prompt */
1664 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1665 msg_silent = msg_silent_save;
1666 if (n != 'y')
1667 {
1668 EMSG(_(e_abort));
1669 return FAIL;
1670 }
1671 }
1672 }
1673
1674#ifdef FEAT_VISUAL
1675/*
1676 * block mode delete
1677 */
1678 if (oap->block_mode)
1679 {
1680 if (u_save((linenr_T)(oap->start.lnum - 1),
1681 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1682 return FAIL;
1683
1684 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1685 {
1686 block_prep(oap, &bd, lnum, TRUE);
1687 if (bd.textlen == 0) /* nothing to delete */
1688 continue;
1689
1690 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1691 if (lnum == curwin->w_cursor.lnum)
1692 {
1693 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1694# ifdef FEAT_VIRTUALEDIT
1695 curwin->w_cursor.coladd = 0;
1696# endif
1697 }
1698
1699 /* n == number of chars deleted
1700 * If we delete a TAB, it may be replaced by several characters.
1701 * Thus the number of characters may increase!
1702 */
1703 n = bd.textlen - bd.startspaces - bd.endspaces;
1704 oldp = ml_get(lnum);
1705 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1706 if (newp == NULL)
1707 continue;
1708 /* copy up to deleted part */
1709 mch_memmove(newp, oldp, (size_t)bd.textcol);
1710 /* insert spaces */
1711 copy_spaces(newp + bd.textcol,
1712 (size_t)(bd.startspaces + bd.endspaces));
1713 /* copy the part after the deleted part */
1714 oldp += bd.textcol + bd.textlen;
1715 mch_memmove(newp + bd.textcol + bd.startspaces + bd.endspaces,
1716 oldp, STRLEN(oldp) + 1);
1717 /* replace the line */
1718 ml_replace(lnum, newp, FALSE);
1719 }
1720
1721 check_cursor_col();
1722 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1723 oap->end.lnum + 1, 0L);
1724 oap->line_count = 0; /* no lines deleted */
1725 }
1726 else
1727#endif
1728 if (oap->motion_type == MLINE)
1729 {
1730 if (oap->op_type == OP_CHANGE)
1731 {
1732 /* Delete the lines except the first one. Temporarily move the
1733 * cursor to the next line. Save the current line number, if the
1734 * last line is deleted it may be changed.
1735 */
1736 if (oap->line_count > 1)
1737 {
1738 lnum = curwin->w_cursor.lnum;
1739 ++curwin->w_cursor.lnum;
1740 del_lines((long)(oap->line_count - 1), TRUE);
1741 curwin->w_cursor.lnum = lnum;
1742 }
1743 if (u_save_cursor() == FAIL)
1744 return FAIL;
1745 if (curbuf->b_p_ai) /* don't delete indent */
1746 {
1747 beginline(BL_WHITE); /* cursor on first non-white */
1748 did_ai = TRUE; /* delete the indent when ESC hit */
1749 ai_col = curwin->w_cursor.col;
1750 }
1751 else
1752 beginline(0); /* cursor in column 0 */
1753 truncate_line(FALSE); /* delete the rest of the line */
1754 /* leave cursor past last char in line */
1755 if (oap->line_count > 1)
1756 u_clearline(); /* "U" command not possible after "2cc" */
1757 }
1758 else
1759 {
1760 del_lines(oap->line_count, TRUE);
1761 beginline(BL_WHITE | BL_FIX);
1762 u_clearline(); /* "U" command not possible after "dd" */
1763 }
1764 }
1765 else
1766 {
1767#ifdef FEAT_VIRTUALEDIT
1768 if (virtual_op)
1769 {
1770 int endcol = 0;
1771
1772 /* For virtualedit: break the tabs that are partly included. */
1773 if (gchar_pos(&oap->start) == '\t')
1774 {
1775 if (u_save_cursor() == FAIL) /* save first line for undo */
1776 return FAIL;
1777 if (oap->line_count == 1)
1778 endcol = getviscol2(oap->end.col, oap->end.coladd);
1779 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1780 oap->start = curwin->w_cursor;
1781 if (oap->line_count == 1)
1782 {
1783 coladvance(endcol);
1784 oap->end.col = curwin->w_cursor.col;
1785 oap->end.coladd = curwin->w_cursor.coladd;
1786 curwin->w_cursor = oap->start;
1787 }
1788 }
1789
1790 /* Break a tab only when it's included in the area. */
1791 if (gchar_pos(&oap->end) == '\t'
1792 && (int)oap->end.coladd < oap->inclusive)
1793 {
1794 /* save last line for undo */
1795 if (u_save((linenr_T)(oap->end.lnum - 1),
1796 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1797 return FAIL;
1798 curwin->w_cursor = oap->end;
1799 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1800 oap->end = curwin->w_cursor;
1801 curwin->w_cursor = oap->start;
1802 }
1803 }
1804#endif
1805
1806 if (oap->line_count == 1) /* delete characters within one line */
1807 {
1808 if (u_save_cursor() == FAIL) /* save line for undo */
1809 return FAIL;
1810
1811 /* if 'cpoptions' contains '$', display '$' at end of change */
1812 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
1813 && oap->op_type == OP_CHANGE
1814 && oap->end.lnum == curwin->w_cursor.lnum
1815#ifdef FEAT_VISUAL
1816 && !oap->is_VIsual
1817#endif
1818 )
1819 display_dollar(oap->end.col - !oap->inclusive);
1820
1821 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1822
1823#ifdef FEAT_VIRTUALEDIT
1824 if (virtual_op)
1825 {
1826 /* fix up things for virtualedit-delete:
1827 * break the tabs which are going to get in our way
1828 */
1829 char_u *curline = ml_get_curline();
1830 int len = (int)STRLEN(curline);
1831
1832 if (oap->end.coladd != 0
1833 && (int)oap->end.col >= len - 1
1834 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1835 n++;
1836 /* Delete at least one char (e.g, when on a control char). */
1837 if (n == 0 && oap->start.coladd != oap->end.coladd)
1838 n = 1;
1839
1840 /* When deleted a char in the line, reset coladd. */
1841 if (gchar_cursor() != NUL)
1842 curwin->w_cursor.coladd = 0;
1843 }
1844#endif
1845 (void)del_bytes((long)n, restart_edit == NUL && !virtual_op);
1846 }
1847 else /* delete characters between lines */
1848 {
1849 pos_T curpos;
1850
1851 /* save deleted and changed lines for undo */
1852 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1853 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1854 return FAIL;
1855
1856 truncate_line(TRUE); /* delete from cursor to end of line */
1857
1858 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1859 ++curwin->w_cursor.lnum;
1860 del_lines((long)(oap->line_count - 2), FALSE);
1861
1862 /* delete from start of line until op_end */
1863 curwin->w_cursor.col = 0;
1864 (void)del_bytes((long)(oap->end.col + 1 - !oap->inclusive),
1865 restart_edit == NUL && !virtual_op);
1866 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
1867
1868 (void)do_join(FALSE);
1869 }
1870 }
1871
1872 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
1873
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001874#ifdef FEAT_VIRTUALEDIT
1875setmarks:
1876#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877#ifdef FEAT_VISUAL
1878 if (oap->block_mode)
1879 {
1880 curbuf->b_op_end.lnum = oap->end.lnum;
1881 curbuf->b_op_end.col = oap->start.col;
1882 }
1883 else
1884#endif
1885 curbuf->b_op_end = oap->start;
1886 curbuf->b_op_start = oap->start;
1887
1888 return OK;
1889}
1890
1891#ifdef FEAT_MBYTE
1892/*
1893 * Adjust end of operating area for ending on a multi-byte character.
1894 * Used for deletion.
1895 */
1896 static void
1897mb_adjust_opend(oap)
1898 oparg_T *oap;
1899{
1900 char_u *p;
1901
1902 if (oap->inclusive)
1903 {
1904 p = ml_get(oap->end.lnum);
1905 oap->end.col += mb_tail_off(p, p + oap->end.col);
1906 }
1907}
1908#endif
1909
1910#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1911/*
1912 * Replace a whole area with one character.
1913 */
1914 int
1915op_replace(oap, c)
1916 oparg_T *oap;
1917 int c;
1918{
1919 int n, numc;
1920#ifdef FEAT_MBYTE
1921 int num_chars;
1922#endif
1923 char_u *newp, *oldp;
1924 size_t oldlen;
1925 struct block_def bd;
1926
1927 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
1928 return OK; /* nothing to do */
1929
1930#ifdef FEAT_MBYTE
1931 if (has_mbyte)
1932 mb_adjust_opend(oap);
1933#endif
1934
1935 if (u_save((linenr_T)(oap->start.lnum - 1),
1936 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1937 return FAIL;
1938
1939 /*
1940 * block mode replace
1941 */
1942 if (oap->block_mode)
1943 {
1944 bd.is_MAX = (curwin->w_curswant == MAXCOL);
1945 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
1946 {
1947 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
1948 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
1949 continue; /* nothing to replace */
1950
1951 /* n == number of extra chars required
1952 * If we split a TAB, it may be replaced by several characters.
1953 * Thus the number of characters may increase!
1954 */
1955#ifdef FEAT_VIRTUALEDIT
1956 /* If the range starts in virtual space, count the initial
1957 * coladd offset as part of "startspaces" */
1958 if (virtual_op && bd.is_short && *bd.textstart == NUL)
1959 {
1960 pos_T vpos;
1961
1962 getvpos(&vpos, oap->start_vcol);
1963 bd.startspaces += vpos.coladd;
1964 n = bd.startspaces;
1965 }
1966 else
1967#endif
1968 /* allow for pre spaces */
1969 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
1970
1971 /* allow for post spp */
1972 n += (bd.endspaces
1973#ifdef FEAT_VIRTUALEDIT
1974 && !bd.is_oneChar
1975#endif
1976 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
1977 /* Figure out how many characters to replace. */
1978 numc = oap->end_vcol - oap->start_vcol + 1;
1979 if (bd.is_short && (!virtual_op || bd.is_MAX))
1980 numc -= (oap->end_vcol - bd.end_vcol) + 1;
1981
1982#ifdef FEAT_MBYTE
1983 /* A double-wide character can be replaced only up to half the
1984 * times. */
1985 if ((*mb_char2cells)(c) > 1)
1986 {
1987 if ((numc & 1) && !bd.is_short)
1988 {
1989 ++bd.endspaces;
1990 ++n;
1991 }
1992 numc = numc / 2;
1993 }
1994
1995 /* Compute bytes needed, move character count to num_chars. */
1996 num_chars = numc;
1997 numc *= (*mb_char2len)(c);
1998#endif
1999 /* oldlen includes textlen, so don't double count */
2000 n += numc - bd.textlen;
2001
2002 oldp = ml_get_curline();
2003 oldlen = STRLEN(oldp);
2004 newp = alloc_check((unsigned)oldlen + 1 + n);
2005 if (newp == NULL)
2006 continue;
2007 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2008 /* copy up to deleted part */
2009 mch_memmove(newp, oldp, (size_t)bd.textcol);
2010 oldp += bd.textcol + bd.textlen;
2011 /* insert pre-spaces */
2012 copy_spaces(newp + bd.textcol, (size_t)bd.startspaces);
2013 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
2014#ifdef FEAT_MBYTE
2015 if (has_mbyte)
2016 {
2017 n = STRLEN(newp);
2018 while (--num_chars >= 0)
2019 n += (*mb_char2bytes)(c, newp + n);
2020 }
2021 else
2022#endif
2023 copy_chars(newp + STRLEN(newp), (size_t)numc, c);
2024 if (!bd.is_short)
2025 {
2026 /* insert post-spaces */
2027 copy_spaces(newp + STRLEN(newp), (size_t)bd.endspaces);
2028 /* copy the part after the changed part */
2029 mch_memmove(newp + STRLEN(newp), oldp, STRLEN(oldp) + 1);
2030 }
2031 /* replace the line */
2032 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
2033 }
2034 }
2035 else
2036 {
2037 /*
2038 * MCHAR and MLINE motion replace.
2039 */
2040 if (oap->motion_type == MLINE)
2041 {
2042 oap->start.col = 0;
2043 curwin->w_cursor.col = 0;
2044 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2045 if (oap->end.col)
2046 --oap->end.col;
2047 }
2048 else if (!oap->inclusive)
2049 dec(&(oap->end));
2050
2051 while (ltoreq(curwin->w_cursor, oap->end))
2052 {
2053 n = gchar_cursor();
2054 if (n != NUL)
2055 {
2056#ifdef FEAT_MBYTE
2057 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2058 {
2059 /* This is slow, but it handles replacing a single-byte
2060 * with a multi-byte and the other way around. */
2061 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
2062 n = State;
2063 State = REPLACE;
2064 ins_char(c);
2065 State = n;
2066 /* Backup to the replaced character. */
2067 dec_cursor();
2068 }
2069 else
2070#endif
2071 {
2072#ifdef FEAT_VIRTUALEDIT
2073 if (n == TAB)
2074 {
2075 int end_vcol = 0;
2076
2077 if (curwin->w_cursor.lnum == oap->end.lnum)
2078 {
2079 /* oap->end has to be recalculated when
2080 * the tab breaks */
2081 end_vcol = getviscol2(oap->end.col,
2082 oap->end.coladd);
2083 }
2084 coladvance_force(getviscol());
2085 if (curwin->w_cursor.lnum == oap->end.lnum)
2086 getvpos(&oap->end, end_vcol);
2087 }
2088#endif
2089 pchar(curwin->w_cursor, c);
2090 }
2091 }
2092#ifdef FEAT_VIRTUALEDIT
2093 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2094 {
2095 int virtcols = oap->end.coladd;
2096
2097 if (curwin->w_cursor.lnum == oap->start.lnum
2098 && oap->start.col == oap->end.col && oap->start.coladd)
2099 virtcols -= oap->start.coladd;
2100
2101 /* oap->end has been trimmed so it's effectively inclusive;
2102 * as a result an extra +1 must be counted so we don't
2103 * trample the NUL byte. */
2104 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2105 curwin->w_cursor.col -= (virtcols + 1);
2106 for (; virtcols >= 0; virtcols--)
2107 {
2108 pchar(curwin->w_cursor, c);
2109 if (inc(&curwin->w_cursor) == -1)
2110 break;
2111 }
2112 }
2113#endif
2114
2115 /* Advance to next character, stop at the end of the file. */
2116 if (inc_cursor() == -1)
2117 break;
2118 }
2119 }
2120
2121 curwin->w_cursor = oap->start;
2122 check_cursor();
2123 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2124
2125 /* Set "'[" and "']" marks. */
2126 curbuf->b_op_start = oap->start;
2127 curbuf->b_op_end = oap->end;
2128
2129 return OK;
2130}
2131#endif
2132
2133/*
2134 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2135 */
2136 void
2137op_tilde(oap)
2138 oparg_T *oap;
2139{
2140 pos_T pos;
2141#ifdef FEAT_VISUAL
2142 struct block_def bd;
2143 int done;
2144#endif
2145 int did_change = 0;
2146#ifdef FEAT_MBYTE
2147 colnr_T col;
2148#endif
2149
2150 if (u_save((linenr_T)(oap->start.lnum - 1),
2151 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2152 return;
2153
2154 pos = oap->start;
2155#ifdef FEAT_VISUAL
2156 if (oap->block_mode) /* Visual block mode */
2157 {
2158 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2159 {
2160 block_prep(oap, &bd, pos.lnum, FALSE);
2161 pos.col = bd.textcol;
2162 for (done = 0; done < bd.textlen; ++done)
2163 {
2164 did_change |= swapchar(oap->op_type, &pos);
2165# ifdef FEAT_MBYTE
2166 col = pos.col + 1;
2167# endif
2168 if (inc(&pos) == -1) /* at end of file */
2169 break;
2170# ifdef FEAT_MBYTE
2171 if (pos.col > col)
2172 /* Count extra bytes of a multi-byte character. */
2173 done += pos.col - col;
2174# endif
2175 }
2176# ifdef FEAT_NETBEANS_INTG
2177 if (usingNetbeans && did_change)
2178 {
2179 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2180
Bram Moolenaar009b2592004-10-24 19:18:58 +00002181 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2182 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaar009b2592004-10-24 19:18:58 +00002184 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 }
2186# endif
2187 }
2188 if (did_change)
2189 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2190 }
2191 else /* not block mode */
2192#endif
2193 {
2194 if (oap->motion_type == MLINE)
2195 {
2196 oap->start.col = 0;
2197 pos.col = 0;
2198 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2199 if (oap->end.col)
2200 --oap->end.col;
2201 }
2202 else if (!oap->inclusive)
2203 dec(&(oap->end));
2204
2205 while (ltoreq(pos, oap->end))
2206 {
2207 did_change |= swapchar(oap->op_type, &pos);
2208 if (inc(&pos) == -1) /* at end of file */
2209 break;
2210 }
2211 if (did_change)
2212 {
2213 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2214 0L);
2215#ifdef FEAT_NETBEANS_INTG
2216 if (usingNetbeans && did_change)
2217 {
2218 char_u *ptr;
2219 int count;
2220
2221 pos = oap->start;
2222 while (pos.lnum < oap->end.lnum)
2223 {
2224 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2225 count = STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002226 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00002228 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 pos.col = 0;
2230 pos.lnum++;
2231 }
2232 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2233 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002234 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00002236 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 }
2238#endif
2239 }
2240 }
2241
2242#ifdef FEAT_VISUAL
2243 if (!did_change && oap->is_VIsual)
2244 /* No change: need to remove the Visual selection */
2245 redraw_curbuf_later(INVERTED);
2246#endif
2247
2248 /*
2249 * Set '[ and '] marks.
2250 */
2251 curbuf->b_op_start = oap->start;
2252 curbuf->b_op_end = oap->end;
2253
2254 if (oap->line_count > p_report)
2255 {
2256 if (oap->line_count == 1)
2257 MSG(_("1 line changed"));
2258 else
2259 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2260 }
2261}
2262
2263/*
2264 * If op_type == OP_UPPER: make uppercase,
2265 * if op_type == OP_LOWER: make lowercase,
2266 * if op_type == OP_ROT13: do rot13 encoding,
2267 * else swap case of character at 'pos'
2268 * returns TRUE when something actually changed.
2269 */
2270 int
2271swapchar(op_type, pos)
2272 int op_type;
2273 pos_T *pos;
2274{
2275 int c;
2276 int nc;
2277
2278 c = gchar_pos(pos);
2279
2280 /* Only do rot13 encoding for ASCII characters. */
2281 if (c >= 0x80 && op_type == OP_ROT13)
2282 return FALSE;
2283
2284#ifdef FEAT_MBYTE
2285 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2286 return FALSE;
2287#endif
2288 nc = c;
2289 if (MB_ISLOWER(c))
2290 {
2291 if (op_type == OP_ROT13)
2292 nc = ROT13(c, 'a');
2293 else if (op_type != OP_LOWER)
2294 nc = MB_TOUPPER(c);
2295 }
2296 else if (MB_ISUPPER(c))
2297 {
2298 if (op_type == OP_ROT13)
2299 nc = ROT13(c, 'A');
2300 else if (op_type != OP_UPPER)
2301 nc = MB_TOLOWER(c);
2302 }
2303 if (nc != c)
2304 {
2305#ifdef FEAT_MBYTE
2306 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2307 {
2308 pos_T sp = curwin->w_cursor;
2309
2310 curwin->w_cursor = *pos;
2311 del_char(FALSE);
2312 ins_char(nc);
2313 curwin->w_cursor = sp;
2314 }
2315 else
2316#endif
2317 pchar(*pos, nc);
2318 return TRUE;
2319 }
2320 return FALSE;
2321}
2322
2323#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2324/*
2325 * op_insert - Insert and append operators for Visual mode.
2326 */
2327 void
2328op_insert(oap, count1)
2329 oparg_T *oap;
2330 long count1;
2331{
2332 long ins_len, pre_textlen = 0;
2333 char_u *firstline, *ins_text;
2334 struct block_def bd;
2335 int i;
2336
2337 /* edit() changes this - record it for OP_APPEND */
2338 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2339
2340 /* vis block is still marked. Get rid of it now. */
2341 curwin->w_cursor.lnum = oap->start.lnum;
2342 update_screen(INVERTED);
2343
2344 if (oap->block_mode)
2345 {
2346#ifdef FEAT_VIRTUALEDIT
2347 /* When 'virtualedit' is used, need to insert the extra spaces before
2348 * doing block_prep(). When only "block" is used, virtual edit is
2349 * already disabled, but still need it when calling
2350 * coladvance_force(). */
2351 if (curwin->w_cursor.coladd > 0)
2352 {
2353 int old_ve_flags = ve_flags;
2354
2355 ve_flags = VE_ALL;
2356 if (u_save_cursor() == FAIL)
2357 return;
2358 coladvance_force(oap->op_type == OP_APPEND
2359 ? oap->end_vcol + 1 : getviscol());
2360 if (oap->op_type == OP_APPEND)
2361 --curwin->w_cursor.col;
2362 ve_flags = old_ve_flags;
2363 }
2364#endif
2365 /* Get the info about the block before entering the text */
2366 block_prep(oap, &bd, oap->start.lnum, TRUE);
2367 firstline = ml_get(oap->start.lnum) + bd.textcol;
2368 if (oap->op_type == OP_APPEND)
2369 firstline += bd.textlen;
2370 pre_textlen = (long)STRLEN(firstline);
2371 }
2372
2373 if (oap->op_type == OP_APPEND)
2374 {
2375 if (oap->block_mode
2376#ifdef FEAT_VIRTUALEDIT
2377 && curwin->w_cursor.coladd == 0
2378#endif
2379 )
2380 {
2381 /* Move the cursor to the character right of the block. */
2382 curwin->w_set_curswant = TRUE;
2383 while (*ml_get_cursor() != NUL
2384 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2385 ++curwin->w_cursor.col;
2386 if (bd.is_short && !bd.is_MAX)
2387 {
2388 /* First line was too short, make it longer and adjust the
2389 * values in "bd". */
2390 if (u_save_cursor() == FAIL)
2391 return;
2392 for (i = 0; i < bd.endspaces; ++i)
2393 ins_char(' ');
2394 bd.textlen += bd.endspaces;
2395 }
2396 }
2397 else
2398 {
2399 curwin->w_cursor = oap->end;
2400
2401 /* Works just like an 'i'nsert on the next character. */
2402 if (!lineempty(curwin->w_cursor.lnum)
2403 && oap->start_vcol != oap->end_vcol)
2404 inc_cursor();
2405 }
2406 }
2407
2408 edit(NUL, FALSE, (linenr_T)count1);
2409
2410 /* if user has moved off this line, we don't know what to do, so do
2411 * nothing */
2412 if (curwin->w_cursor.lnum != oap->start.lnum)
2413 return;
2414
2415 if (oap->block_mode)
2416 {
2417 struct block_def bd2;
2418
2419 /*
2420 * Spaces and tabs in the indent may have changed to other spaces and
2421 * tabs. Get the starting column again and correct the lenght.
2422 * Don't do this when "$" used, end-of-line will have changed.
2423 */
2424 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2425 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2426 {
2427 if (oap->op_type == OP_APPEND)
2428 {
2429 pre_textlen += bd2.textlen - bd.textlen;
2430 if (bd2.endspaces)
2431 --bd2.textlen;
2432 }
2433 bd.textcol = bd2.textcol;
2434 bd.textlen = bd2.textlen;
2435 }
2436
2437 /*
2438 * Subsequent calls to ml_get() flush the firstline data - take a
2439 * copy of the required string.
2440 */
2441 firstline = ml_get(oap->start.lnum) + bd.textcol;
2442 if (oap->op_type == OP_APPEND)
2443 firstline += bd.textlen;
2444 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
2445 {
2446 ins_text = vim_strnsave(firstline, (int)ins_len);
2447 if (ins_text != NULL)
2448 {
2449 /* block handled here */
2450 if (u_save(oap->start.lnum,
2451 (linenr_T)(oap->end.lnum + 1)) == OK)
2452 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2453 &bd);
2454
2455 curwin->w_cursor.col = oap->start.col;
2456 check_cursor();
2457 vim_free(ins_text);
2458 }
2459 }
2460 }
2461}
2462#endif
2463
2464/*
2465 * op_change - handle a change operation
2466 *
2467 * return TRUE if edit() returns because of a CTRL-O command
2468 */
2469 int
2470op_change(oap)
2471 oparg_T *oap;
2472{
2473 colnr_T l;
2474 int retval;
2475#ifdef FEAT_VISUALEXTRA
2476 long offset;
2477 linenr_T linenr;
2478 long ins_len, pre_textlen = 0;
2479 char_u *firstline;
2480 char_u *ins_text, *newp, *oldp;
2481 struct block_def bd;
2482#endif
2483
2484 l = oap->start.col;
2485 if (oap->motion_type == MLINE)
2486 {
2487 l = 0;
2488#ifdef FEAT_SMARTINDENT
2489 if (!p_paste && curbuf->b_p_si
2490# ifdef FEAT_CINDENT
2491 && !curbuf->b_p_cin
2492# endif
2493 )
2494 can_si = TRUE; /* It's like opening a new line, do si */
2495#endif
2496 }
2497
2498 /* First delete the text in the region. In an empty buffer only need to
2499 * save for undo */
2500 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2501 {
2502 if (u_save_cursor() == FAIL)
2503 return FALSE;
2504 }
2505 else if (op_delete(oap) == FAIL)
2506 return FALSE;
2507
2508 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
2509 && !virtual_op)
2510 inc_cursor();
2511
2512#ifdef FEAT_VISUALEXTRA
2513 /* check for still on same line (<CR> in inserted text meaningless) */
2514 /* skip blank lines too */
2515 if (oap->block_mode)
2516 {
2517# ifdef FEAT_VIRTUALEDIT
2518 /* Add spaces before getting the current line length. */
2519 if (virtual_op && (curwin->w_cursor.coladd > 0
2520 || gchar_cursor() == NUL))
2521 coladvance_force(getviscol());
2522# endif
2523 pre_textlen = (long)STRLEN(ml_get(oap->start.lnum));
2524 bd.textcol = curwin->w_cursor.col;
2525 }
2526#endif
2527
2528#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2529 if (oap->motion_type == MLINE)
2530 fix_indent();
2531#endif
2532
2533 retval = edit(NUL, FALSE, (linenr_T)1);
2534
2535#ifdef FEAT_VISUALEXTRA
2536 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002537 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538 * block.
2539 */
2540 if (oap->block_mode && oap->start.lnum != oap->end.lnum)
2541 {
2542 firstline = ml_get(oap->start.lnum);
2543 /*
2544 * Subsequent calls to ml_get() flush the firstline data - take a
2545 * copy of the required bit.
2546 */
2547 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
2548 {
2549 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2550 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002551 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2553 linenr++)
2554 {
2555 block_prep(oap, &bd, linenr, TRUE);
2556 if (!bd.is_short || virtual_op)
2557 {
2558# ifdef FEAT_VIRTUALEDIT
2559 pos_T vpos;
2560
2561 /* If the block starts in virtual space, count the
2562 * initial coladd offset as part of "startspaces" */
2563 if (bd.is_short)
2564 {
2565 linenr_T lnum = curwin->w_cursor.lnum;
2566
2567 curwin->w_cursor.lnum = linenr;
2568 (void)getvpos(&vpos, oap->start_vcol);
2569 curwin->w_cursor.lnum = lnum;
2570 }
2571 else
2572 vpos.coladd = 0;
2573# endif
2574 oldp = ml_get(linenr);
2575 newp = alloc_check((unsigned)(STRLEN(oldp)
2576# ifdef FEAT_VIRTUALEDIT
2577 + vpos.coladd
2578# endif
2579 + ins_len + 1));
2580 if (newp == NULL)
2581 continue;
2582 /* copy up to block start */
2583 mch_memmove(newp, oldp, (size_t)bd.textcol);
2584 offset = bd.textcol;
2585# ifdef FEAT_VIRTUALEDIT
2586 copy_spaces(newp + offset, (size_t)vpos.coladd);
2587 offset += vpos.coladd;
2588# endif
2589 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2590 offset += ins_len;
2591 oldp += bd.textcol;
2592 mch_memmove(newp + offset, oldp, STRLEN(oldp) + 1);
2593 ml_replace(linenr, newp, FALSE);
2594 }
2595 }
2596 check_cursor();
2597
2598 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2599 }
2600 vim_free(ins_text);
2601 }
2602 }
2603#endif
2604
2605 return retval;
2606}
2607
2608/*
2609 * set all the yank registers to empty (called from main())
2610 */
2611 void
2612init_yank()
2613{
2614 int i;
2615
2616 for (i = 0; i < NUM_REGISTERS; ++i)
2617 y_regs[i].y_array = NULL;
2618}
2619
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002620#if defined(EXITFREE) || defined(PROTO)
2621 void
2622clear_registers()
2623{
2624 int i;
2625
2626 for (i = 0; i < NUM_REGISTERS; ++i)
2627 {
2628 y_current = &y_regs[i];
2629 if (y_current->y_array != NULL)
2630 free_yank_all();
2631 }
2632}
2633#endif
2634
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635/*
2636 * Free "n" lines from the current yank register.
2637 * Called for normal freeing and in case of error.
2638 */
2639 static void
2640free_yank(n)
2641 long n;
2642{
2643 if (y_current->y_array != NULL)
2644 {
2645 long i;
2646
2647 for (i = n; --i >= 0; )
2648 {
2649#ifdef AMIGA /* only for very slow machines */
2650 if ((i & 1023) == 1023) /* this may take a while */
2651 {
2652 /*
2653 * This message should never cause a hit-return message.
2654 * Overwrite this message with any next message.
2655 */
2656 ++no_wait_return;
2657 smsg((char_u *)_("freeing %ld lines"), i + 1);
2658 --no_wait_return;
2659 msg_didout = FALSE;
2660 msg_col = 0;
2661 }
2662#endif
2663 vim_free(y_current->y_array[i]);
2664 }
2665 vim_free(y_current->y_array);
2666 y_current->y_array = NULL;
2667#ifdef AMIGA
2668 if (n >= 1000)
2669 MSG("");
2670#endif
2671 }
2672}
2673
2674 static void
2675free_yank_all()
2676{
2677 free_yank(y_current->y_size);
2678}
2679
2680/*
2681 * Yank the text between "oap->start" and "oap->end" into a yank register.
2682 * If we are to append (uppercase register), we first yank into a new yank
2683 * register and then concatenate the old and the new one (so we keep the old
2684 * one in case of out-of-memory).
2685 *
2686 * return FAIL for failure, OK otherwise
2687 */
2688 int
2689op_yank(oap, deleting, mess)
2690 oparg_T *oap;
2691 int deleting;
2692 int mess;
2693{
2694 long y_idx; /* index in y_array[] */
2695 struct yankreg *curr; /* copy of y_current */
2696 struct yankreg newreg; /* new yank register when appending */
2697 char_u **new_ptr;
2698 linenr_T lnum; /* current line number */
2699 long j;
2700 int yanktype = oap->motion_type;
2701 long yanklines = oap->line_count;
2702 linenr_T yankendlnum = oap->end.lnum;
2703 char_u *p;
2704 char_u *pnew;
2705 struct block_def bd;
2706
2707 /* check for read-only register */
2708 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2709 {
2710 beep_flush();
2711 return FAIL;
2712 }
2713 if (oap->regname == '_') /* black hole: nothing to do */
2714 return OK;
2715
2716#ifdef FEAT_CLIPBOARD
2717 if (!clip_star.available && oap->regname == '*')
2718 oap->regname = 0;
2719 else if (!clip_plus.available && oap->regname == '+')
2720 oap->regname = 0;
2721#endif
2722
2723 if (!deleting) /* op_delete() already set y_current */
2724 get_yank_register(oap->regname, TRUE);
2725
2726 curr = y_current;
2727 /* append to existing contents */
2728 if (y_append && y_current->y_array != NULL)
2729 y_current = &newreg;
2730 else
2731 free_yank_all(); /* free previously yanked lines */
2732
2733/*
2734 * If the cursor was in column 1 before and after the movement, and the
2735 * operator is not inclusive, the yank is always linewise.
2736 */
2737 if ( oap->motion_type == MCHAR
2738 && oap->start.col == 0
2739 && !oap->inclusive
2740#ifdef FEAT_VISUAL
2741 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00002742 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743#endif
2744 && oap->end.col == 0
2745 && yanklines > 1)
2746 {
2747 yanktype = MLINE;
2748 --yankendlnum;
2749 --yanklines;
2750 }
2751
2752 y_current->y_size = yanklines;
2753 y_current->y_type = yanktype; /* set the yank register type */
2754#ifdef FEAT_VISUAL
2755 y_current->y_width = 0;
2756#endif
2757 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
2758 yanklines), TRUE);
2759
2760 if (y_current->y_array == NULL)
2761 {
2762 y_current = curr;
2763 return FAIL;
2764 }
2765
2766 y_idx = 0;
2767 lnum = oap->start.lnum;
2768
2769#ifdef FEAT_VISUAL
2770 if (oap->block_mode)
2771 {
2772 /* Visual block mode */
2773 y_current->y_type = MBLOCK; /* set the yank register type */
2774 y_current->y_width = oap->end_vcol - oap->start_vcol;
2775
2776 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
2777 y_current->y_width--;
2778 }
2779#endif
2780
2781 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
2782 {
2783 switch (y_current->y_type)
2784 {
2785#ifdef FEAT_VISUAL
2786 case MBLOCK:
2787 block_prep(oap, &bd, lnum, FALSE);
2788 if (yank_copy_line(&bd, y_idx) == FAIL)
2789 goto fail;
2790 break;
2791#endif
2792
2793 case MLINE:
2794 if ((y_current->y_array[y_idx] =
2795 vim_strsave(ml_get(lnum))) == NULL)
2796 goto fail;
2797 break;
2798
2799 case MCHAR:
2800 {
2801 colnr_T startcol = 0, endcol = MAXCOL;
2802#ifdef FEAT_VIRTUALEDIT
2803 int is_oneChar = FALSE;
2804 colnr_T cs, ce;
2805#endif
2806 p = ml_get(lnum);
2807 bd.startspaces = 0;
2808 bd.endspaces = 0;
2809
2810 if (lnum == oap->start.lnum)
2811 {
2812 startcol = oap->start.col;
2813#ifdef FEAT_VIRTUALEDIT
2814 if (virtual_op)
2815 {
2816 getvcol(curwin, &oap->start, &cs, NULL, &ce);
2817 if (ce != cs && oap->start.coladd > 0)
2818 {
2819 /* Part of a tab selected -- but don't
2820 * double-count it. */
2821 bd.startspaces = (ce - cs + 1)
2822 - oap->start.coladd;
2823 startcol++;
2824 }
2825 }
2826#endif
2827 }
2828
2829 if (lnum == oap->end.lnum)
2830 {
2831 endcol = oap->end.col;
2832#ifdef FEAT_VIRTUALEDIT
2833 if (virtual_op)
2834 {
2835 getvcol(curwin, &oap->end, &cs, NULL, &ce);
2836 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
2837# ifdef FEAT_MBYTE
2838 /* Don't add space for double-wide
2839 * char; endcol will be on last byte
2840 * of multi-byte char. */
2841 && (*mb_head_off)(p, p + endcol) == 0
2842# endif
2843 ))
2844 {
2845 if (oap->start.lnum == oap->end.lnum
2846 && oap->start.col == oap->end.col)
2847 {
2848 /* Special case: inside a single char */
2849 is_oneChar = TRUE;
2850 bd.startspaces = oap->end.coladd
2851 - oap->start.coladd + oap->inclusive;
2852 endcol = startcol;
2853 }
2854 else
2855 {
2856 bd.endspaces = oap->end.coladd
2857 + oap->inclusive;
2858 endcol -= oap->inclusive;
2859 }
2860 }
2861 }
2862#endif
2863 }
2864 if (startcol > endcol
2865#ifdef FEAT_VIRTUALEDIT
2866 || is_oneChar
2867#endif
2868 )
2869 bd.textlen = 0;
2870 else
2871 {
2872 if (endcol == MAXCOL)
2873 endcol = STRLEN(p);
2874 bd.textlen = endcol - startcol + oap->inclusive;
2875 }
2876 bd.textstart = p + startcol;
2877 if (yank_copy_line(&bd, y_idx) == FAIL)
2878 goto fail;
2879 break;
2880 }
2881 /* NOTREACHED */
2882 }
2883 }
2884
2885 if (curr != y_current) /* append the new block to the old block */
2886 {
2887 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
2888 (curr->y_size + y_current->y_size)), TRUE);
2889 if (new_ptr == NULL)
2890 goto fail;
2891 for (j = 0; j < curr->y_size; ++j)
2892 new_ptr[j] = curr->y_array[j];
2893 vim_free(curr->y_array);
2894 curr->y_array = new_ptr;
2895
2896 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
2897 curr->y_type = MLINE;
2898
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002899 /* Concatenate the last line of the old block with the first line of
2900 * the new block, unless being Vi compatible. */
2901 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 {
2903 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
2904 + STRLEN(y_current->y_array[0]) + 1), TRUE);
2905 if (pnew == NULL)
2906 {
2907 y_idx = y_current->y_size - 1;
2908 goto fail;
2909 }
2910 STRCPY(pnew, curr->y_array[--j]);
2911 STRCAT(pnew, y_current->y_array[0]);
2912 vim_free(curr->y_array[j]);
2913 vim_free(y_current->y_array[0]);
2914 curr->y_array[j++] = pnew;
2915 y_idx = 1;
2916 }
2917 else
2918 y_idx = 0;
2919 while (y_idx < y_current->y_size)
2920 curr->y_array[j++] = y_current->y_array[y_idx++];
2921 curr->y_size = j;
2922 vim_free(y_current->y_array);
2923 y_current = curr;
2924 }
2925 if (mess) /* Display message about yank? */
2926 {
2927 if (yanktype == MCHAR
2928#ifdef FEAT_VISUAL
2929 && !oap->block_mode
2930#endif
2931 && yanklines == 1)
2932 yanklines = 0;
2933 /* Some versions of Vi use ">=" here, some don't... */
2934 if (yanklines > p_report)
2935 {
2936 /* redisplay now, so message is not deleted */
2937 update_topline_redraw();
2938 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002939 {
2940#ifdef FEAT_VISUAL
2941 if (oap->block_mode)
2942 MSG(_("block of 1 line yanked"));
2943 else
2944#endif
2945 MSG(_("1 line yanked"));
2946 }
2947#ifdef FEAT_VISUAL
2948 else if (oap->block_mode)
2949 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
2950#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 else
2952 smsg((char_u *)_("%ld lines yanked"), yanklines);
2953 }
2954 }
2955
2956 /*
2957 * Set "'[" and "']" marks.
2958 */
2959 curbuf->b_op_start = oap->start;
2960 curbuf->b_op_end = oap->end;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002961 if (yanktype == MLINE
2962#ifdef FEAT_VISUAL
2963 && !oap->block_mode
2964#endif
2965 )
2966 {
2967 curbuf->b_op_start.col = 0;
2968 curbuf->b_op_end.col = MAXCOL;
2969 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970
2971#ifdef FEAT_CLIPBOARD
2972 /*
2973 * If we were yanking to the '*' register, send result to clipboard.
2974 * If no register was specified, and "unnamed" in 'clipboard', make a copy
2975 * to the '*' register.
2976 */
2977 if (clip_star.available
2978 && (curr == &(y_regs[STAR_REGISTER])
2979 || (!deleting && oap->regname == 0 && clip_unnamed)))
2980 {
2981 if (curr != &(y_regs[STAR_REGISTER]))
2982 /* Copy the text from register 0 to the clipboard register. */
2983 copy_yank_reg(&(y_regs[STAR_REGISTER]));
2984
2985 clip_own_selection(&clip_star);
2986 clip_gen_set_selection(&clip_star);
2987 }
2988
2989# ifdef FEAT_X11
2990 /*
2991 * If we were yanking to the '+' register, send result to selection.
2992 * Also copy to the '*' register, in case auto-select is off.
2993 */
2994 else if (clip_plus.available && curr == &(y_regs[PLUS_REGISTER]))
2995 {
2996 /* No need to copy to * register upon 'unnamed' now - see below */
2997 clip_own_selection(&clip_plus);
2998 clip_gen_set_selection(&clip_plus);
2999 if (!clip_isautosel())
3000 {
3001 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3002 clip_own_selection(&clip_star);
3003 clip_gen_set_selection(&clip_star);
3004 }
3005 }
3006# endif
3007#endif
3008
3009 return OK;
3010
3011fail: /* free the allocated lines */
3012 free_yank(y_idx + 1);
3013 y_current = curr;
3014 return FAIL;
3015}
3016
3017 static int
3018yank_copy_line(bd, y_idx)
3019 struct block_def *bd;
3020 long y_idx;
3021{
3022 char_u *pnew;
3023
3024 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3025 == NULL)
3026 return FAIL;
3027 y_current->y_array[y_idx] = pnew;
3028 copy_spaces(pnew, (size_t)bd->startspaces);
3029 pnew += bd->startspaces;
3030 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3031 pnew += bd->textlen;
3032 copy_spaces(pnew, (size_t)bd->endspaces);
3033 pnew += bd->endspaces;
3034 *pnew = NUL;
3035 return OK;
3036}
3037
3038#ifdef FEAT_CLIPBOARD
3039/*
3040 * Make a copy of the y_current register to register "reg".
3041 */
3042 static void
3043copy_yank_reg(reg)
3044 struct yankreg *reg;
3045{
3046 struct yankreg *curr = y_current;
3047 long j;
3048
3049 y_current = reg;
3050 free_yank_all();
3051 *y_current = *curr;
3052 y_current->y_array = (char_u **)lalloc_clear(
3053 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3054 if (y_current->y_array == NULL)
3055 y_current->y_size = 0;
3056 else
3057 for (j = 0; j < y_current->y_size; ++j)
3058 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3059 {
3060 free_yank(j);
3061 y_current->y_size = 0;
3062 break;
3063 }
3064 y_current = curr;
3065}
3066#endif
3067
3068/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003069 * Put contents of register "regname" into the text.
3070 * Caller must check "regname" to be valid!
3071 * "flags": PUT_FIXINDENT make indent look nice
3072 * PUT_CURSEND leave cursor after end of new text
3073 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074 */
3075 void
3076do_put(regname, dir, count, flags)
3077 int regname;
3078 int dir; /* BACKWARD for 'P', FORWARD for 'p' */
3079 long count;
3080 int flags;
3081{
3082 char_u *ptr;
3083 char_u *newp, *oldp;
3084 int yanklen;
3085 int totlen = 0; /* init for gcc */
3086 linenr_T lnum;
3087 colnr_T col;
3088 long i; /* index in y_array[] */
3089 int y_type;
3090 long y_size;
3091#ifdef FEAT_VISUAL
3092 int oldlen;
3093 long y_width = 0;
3094 colnr_T vcol;
3095 int delcount;
3096 int incr = 0;
3097 long j;
3098 struct block_def bd;
3099#endif
3100 char_u **y_array = NULL;
3101 long nr_lines = 0;
3102 pos_T new_cursor;
3103 int indent;
3104 int orig_indent = 0; /* init for gcc */
3105 int indent_diff = 0; /* init for gcc */
3106 int first_indent = TRUE;
3107 int lendiff = 0;
3108 pos_T old_pos;
3109 char_u *insert_string = NULL;
3110 int allocated = FALSE;
3111 long cnt;
3112
3113#ifdef FEAT_CLIPBOARD
3114 /* Adjust register name for "unnamed" in 'clipboard'. */
3115 adjust_clip_reg(&regname);
3116 (void)may_get_selection(regname);
3117#endif
3118
3119 if (flags & PUT_FIXINDENT)
3120 orig_indent = get_indent();
3121
3122 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3123 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3124
3125 /*
3126 * Using inserted text works differently, because the register includes
3127 * special characters (newlines, etc.).
3128 */
3129 if (regname == '.')
3130 {
3131 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3132 (count == -1 ? 'O' : 'i')), count, FALSE);
3133 /* Putting the text is done later, so can't really move the cursor to
3134 * the next character. Use "l" to simulate it. */
3135 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3136 stuffcharReadbuff('l');
3137 return;
3138 }
3139
3140 /*
3141 * For special registers '%' (file name), '#' (alternate file name) and
3142 * ':' (last command line), etc. we have to create a fake yank register.
3143 */
3144 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3145 {
3146 if (insert_string == NULL)
3147 return;
3148 }
3149
3150 if (insert_string != NULL)
3151 {
3152 y_type = MCHAR;
3153#ifdef FEAT_EVAL
3154 if (regname == '=')
3155 {
3156 /* For the = register we need to split the string at NL
3157 * characters. */
3158 /* Loop twice: count the number of lines and save them. */
3159 for (;;)
3160 {
3161 y_size = 0;
3162 ptr = insert_string;
3163 while (ptr != NULL)
3164 {
3165 if (y_array != NULL)
3166 y_array[y_size] = ptr;
3167 ++y_size;
3168 ptr = vim_strchr(ptr, '\n');
3169 if (ptr != NULL)
3170 {
3171 if (y_array != NULL)
3172 *ptr = NUL;
3173 ++ptr;
3174 /* A trailing '\n' makes the string linewise */
3175 if (*ptr == NUL)
3176 {
3177 y_type = MLINE;
3178 break;
3179 }
3180 }
3181 }
3182 if (y_array != NULL)
3183 break;
3184 y_array = (char_u **)alloc((unsigned)
3185 (y_size * sizeof(char_u *)));
3186 if (y_array == NULL)
3187 goto end;
3188 }
3189 }
3190 else
3191#endif
3192 {
3193 y_size = 1; /* use fake one-line yank register */
3194 y_array = &insert_string;
3195 }
3196 }
3197 else
3198 {
3199 get_yank_register(regname, FALSE);
3200
3201 y_type = y_current->y_type;
3202#ifdef FEAT_VISUAL
3203 y_width = y_current->y_width;
3204#endif
3205 y_size = y_current->y_size;
3206 y_array = y_current->y_array;
3207 }
3208
3209#ifdef FEAT_VISUAL
3210 if (y_type == MLINE)
3211 {
3212 if (flags & PUT_LINE_SPLIT)
3213 {
3214 /* "p" or "P" in Visual mode: split the lines to put the text in
3215 * between. */
3216 if (u_save_cursor() == FAIL)
3217 goto end;
3218 ptr = vim_strsave(ml_get_cursor());
3219 if (ptr == NULL)
3220 goto end;
3221 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3222 vim_free(ptr);
3223
3224 ptr = vim_strnsave(ml_get_curline(), curwin->w_cursor.col);
3225 if (ptr == NULL)
3226 goto end;
3227 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3228 ++nr_lines;
3229 dir = FORWARD;
3230 }
3231 if (flags & PUT_LINE_FORWARD)
3232 {
3233 /* Must be "p" for a Visual block, put lines below the block. */
3234 curwin->w_cursor = curbuf->b_visual_end;
3235 dir = FORWARD;
3236 }
3237 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3238 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3239 }
3240#endif
3241
3242 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3243 y_type = MLINE;
3244
3245 if (y_size == 0 || y_array == NULL)
3246 {
3247 EMSG2(_("E353: Nothing in register %s"),
3248 regname == 0 ? (char_u *)"\"" : transchar(regname));
3249 goto end;
3250 }
3251
3252#ifdef FEAT_VISUAL
3253 if (y_type == MBLOCK)
3254 {
3255 lnum = curwin->w_cursor.lnum + y_size + 1;
3256 if (lnum > curbuf->b_ml.ml_line_count)
3257 lnum = curbuf->b_ml.ml_line_count + 1;
3258 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3259 goto end;
3260 }
3261 else
3262#endif
3263 if (y_type == MLINE)
3264 {
3265 lnum = curwin->w_cursor.lnum;
3266#ifdef FEAT_FOLDING
3267 /* Correct line number for closed fold. Don't move the cursor yet,
3268 * u_save() uses it. */
3269 if (dir == BACKWARD)
3270 (void)hasFolding(lnum, &lnum, NULL);
3271 else
3272 (void)hasFolding(lnum, NULL, &lnum);
3273#endif
3274 if (dir == FORWARD)
3275 ++lnum;
3276 if (u_save(lnum - 1, lnum) == FAIL)
3277 goto end;
3278#ifdef FEAT_FOLDING
3279 if (dir == FORWARD)
3280 curwin->w_cursor.lnum = lnum - 1;
3281 else
3282 curwin->w_cursor.lnum = lnum;
3283 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3284#endif
3285 }
3286 else if (u_save_cursor() == FAIL)
3287 goto end;
3288
3289 yanklen = (int)STRLEN(y_array[0]);
3290
3291#ifdef FEAT_VIRTUALEDIT
3292 if (ve_flags == VE_ALL && y_type == MCHAR)
3293 {
3294 if (gchar_cursor() == TAB)
3295 {
3296 /* Don't need to insert spaces when "p" on the last position of a
3297 * tab or "P" on the first position. */
3298 if (dir == FORWARD
3299 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3300 : curwin->w_cursor.coladd > 0)
3301 coladvance_force(getviscol());
3302 else
3303 curwin->w_cursor.coladd = 0;
3304 }
3305 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3306 coladvance_force(getviscol() + (dir == FORWARD));
3307 }
3308#endif
3309
3310 lnum = curwin->w_cursor.lnum;
3311 col = curwin->w_cursor.col;
3312
3313#ifdef FEAT_VISUAL
3314 /*
3315 * Block mode
3316 */
3317 if (y_type == MBLOCK)
3318 {
3319 char c = gchar_cursor();
3320 colnr_T endcol2 = 0;
3321
3322 if (dir == FORWARD && c != NUL)
3323 {
3324#ifdef FEAT_VIRTUALEDIT
3325 if (ve_flags == VE_ALL)
3326 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3327 else
3328#endif
3329 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3330
3331#ifdef FEAT_MBYTE
3332 if (has_mbyte)
3333 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003334 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335 else
3336#endif
3337#ifdef FEAT_VIRTUALEDIT
3338 if (c != TAB || ve_flags != VE_ALL)
3339#endif
3340 ++curwin->w_cursor.col;
3341 ++col;
3342 }
3343 else
3344 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3345
3346#ifdef FEAT_VIRTUALEDIT
3347 col += curwin->w_cursor.coladd;
3348 if (ve_flags == VE_ALL && curwin->w_cursor.coladd > 0)
3349 {
3350 if (dir == FORWARD && c == NUL)
3351 ++col;
3352 if (dir != FORWARD && c != NUL)
3353 ++curwin->w_cursor.col;
3354 if (c == TAB)
3355 {
3356 if (dir == BACKWARD && curwin->w_cursor.col)
3357 curwin->w_cursor.col--;
3358 if (dir == FORWARD && col - 1 == endcol2)
3359 curwin->w_cursor.col++;
3360 }
3361 }
3362 curwin->w_cursor.coladd = 0;
3363#endif
3364 for (i = 0; i < y_size; ++i)
3365 {
3366 int spaces;
3367 char shortline;
3368
3369 bd.startspaces = 0;
3370 bd.endspaces = 0;
3371 bd.textcol = 0;
3372 vcol = 0;
3373 delcount = 0;
3374
3375 /* add a new line */
3376 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3377 {
3378 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3379 (colnr_T)1, FALSE) == FAIL)
3380 break;
3381 ++nr_lines;
3382 }
3383 /* get the old line and advance to the position to insert at */
3384 oldp = ml_get_curline();
3385 oldlen = (int)STRLEN(oldp);
3386 for (ptr = oldp; vcol < col && *ptr; )
3387 {
3388 /* Count a tab for what it's worth (if list mode not on) */
3389 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
3390 vcol += incr;
3391 }
3392 bd.textcol = (colnr_T)(ptr - oldp);
3393
3394 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3395
3396 if (vcol < col) /* line too short, padd with spaces */
3397 bd.startspaces = col - vcol;
3398 else if (vcol > col)
3399 {
3400 bd.endspaces = vcol - col;
3401 bd.startspaces = incr - bd.endspaces;
3402 --bd.textcol;
3403 delcount = 1;
3404#ifdef FEAT_MBYTE
3405 if (has_mbyte)
3406 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3407#endif
3408 if (oldp[bd.textcol] != TAB)
3409 {
3410 /* Only a Tab can be split into spaces. Other
3411 * characters will have to be moved to after the
3412 * block, causing misalignment. */
3413 delcount = 0;
3414 bd.endspaces = 0;
3415 }
3416 }
3417
3418 yanklen = (int)STRLEN(y_array[i]);
3419
3420 /* calculate number of spaces required to fill right side of block*/
3421 spaces = y_width + 1;
3422 for (j = 0; j < yanklen; j++)
3423 spaces -= lbr_chartabsize(&y_array[i][j], 0);
3424 if (spaces < 0)
3425 spaces = 0;
3426
3427 /* insert the new text */
3428 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3429 newp = alloc_check((unsigned)totlen + oldlen + 1);
3430 if (newp == NULL)
3431 break;
3432 /* copy part up to cursor to new line */
3433 ptr = newp;
3434 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3435 ptr += bd.textcol;
3436 /* may insert some spaces before the new text */
3437 copy_spaces(ptr, (size_t)bd.startspaces);
3438 ptr += bd.startspaces;
3439 /* insert the new text */
3440 for (j = 0; j < count; ++j)
3441 {
3442 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3443 ptr += yanklen;
3444
3445 /* insert block's trailing spaces only if there's text behind */
3446 if ((j < count - 1 || !shortline) && spaces)
3447 {
3448 copy_spaces(ptr, (size_t)spaces);
3449 ptr += spaces;
3450 }
3451 }
3452 /* may insert some spaces after the new text */
3453 copy_spaces(ptr, (size_t)bd.endspaces);
3454 ptr += bd.endspaces;
3455 /* move the text after the cursor to the end of the line. */
3456 mch_memmove(ptr, oldp + bd.textcol + delcount,
3457 (size_t)(oldlen - bd.textcol - delcount + 1));
3458 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3459
3460 ++curwin->w_cursor.lnum;
3461 if (i == 0)
3462 curwin->w_cursor.col += bd.startspaces;
3463 }
3464
3465 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3466
3467 /* Set '[ mark. */
3468 curbuf->b_op_start = curwin->w_cursor;
3469 curbuf->b_op_start.lnum = lnum;
3470
3471 /* adjust '] mark */
3472 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3473 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003474# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003476# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477 if (flags & PUT_CURSEND)
3478 {
3479 curwin->w_cursor = curbuf->b_op_end;
3480 curwin->w_cursor.col++;
3481 }
3482 else
3483 curwin->w_cursor.lnum = lnum;
3484 }
3485 else
3486#endif
3487 {
3488 /*
3489 * Character or Line mode
3490 */
3491 if (y_type == MCHAR)
3492 {
3493 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3494 * char */
3495 if (dir == FORWARD && gchar_cursor() != NUL)
3496 {
3497#ifdef FEAT_MBYTE
3498 if (has_mbyte)
3499 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003500 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501
3502 /* put it on the next of the multi-byte character. */
3503 col += bytelen;
3504 if (yanklen)
3505 {
3506 curwin->w_cursor.col += bytelen;
3507 curbuf->b_op_end.col += bytelen;
3508 }
3509 }
3510 else
3511#endif
3512 {
3513 ++col;
3514 if (yanklen)
3515 {
3516 ++curwin->w_cursor.col;
3517 ++curbuf->b_op_end.col;
3518 }
3519 }
3520 }
3521 new_cursor = curwin->w_cursor;
3522 curbuf->b_op_start = curwin->w_cursor;
3523 }
3524 /*
3525 * Line mode: BACKWARD is the same as FORWARD on the previous line
3526 */
3527 else if (dir == BACKWARD)
3528 --lnum;
3529
3530 /*
3531 * simple case: insert into current line
3532 */
3533 if (y_type == MCHAR && y_size == 1)
3534 {
3535 totlen = count * yanklen;
3536 if (totlen)
3537 {
3538 oldp = ml_get(lnum);
3539 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3540 if (newp == NULL)
3541 goto end; /* alloc() will give error message */
3542 mch_memmove(newp, oldp, (size_t)col);
3543 ptr = newp + col;
3544 for (i = 0; i < count; ++i)
3545 {
3546 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3547 ptr += yanklen;
3548 }
3549 mch_memmove(ptr, oldp + col, STRLEN(oldp + col) + 1);
3550 ml_replace(lnum, newp, FALSE);
3551 /* Put cursor on last putted char. */
3552 curwin->w_cursor.col += (colnr_T)(totlen - 1);
3553 }
3554 curbuf->b_op_end = curwin->w_cursor;
3555 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3556 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3557 ++curwin->w_cursor.col;
3558 changed_bytes(lnum, col);
3559 }
3560 else
3561 {
3562 /*
3563 * Insert at least one line. When y_type is MCHAR, break the first
3564 * line in two.
3565 */
3566 for (cnt = 1; cnt <= count; ++cnt)
3567 {
3568 i = 0;
3569 if (y_type == MCHAR)
3570 {
3571 /*
3572 * Split the current line in two at the insert position.
3573 * First insert y_array[size - 1] in front of second line.
3574 * Then append y_array[0] to first line.
3575 */
3576 lnum = new_cursor.lnum;
3577 ptr = ml_get(lnum) + col;
3578 totlen = (int)STRLEN(y_array[y_size - 1]);
3579 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3580 if (newp == NULL)
3581 goto error;
3582 STRCPY(newp, y_array[y_size - 1]);
3583 STRCAT(newp, ptr);
3584 /* insert second line */
3585 ml_append(lnum, newp, (colnr_T)0, FALSE);
3586 vim_free(newp);
3587
3588 oldp = ml_get(lnum);
3589 newp = alloc_check((unsigned)(col + yanklen + 1));
3590 if (newp == NULL)
3591 goto error;
3592 /* copy first part of line */
3593 mch_memmove(newp, oldp, (size_t)col);
3594 /* append to first line */
3595 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3596 ml_replace(lnum, newp, FALSE);
3597
3598 curwin->w_cursor.lnum = lnum;
3599 i = 1;
3600 }
3601
3602 for (; i < y_size; ++i)
3603 {
3604 if ((y_type != MCHAR || i < y_size - 1)
3605 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3606 == FAIL)
3607 goto error;
3608 lnum++;
3609 ++nr_lines;
3610 if (flags & PUT_FIXINDENT)
3611 {
3612 old_pos = curwin->w_cursor;
3613 curwin->w_cursor.lnum = lnum;
3614 ptr = ml_get(lnum);
3615 if (cnt == count && i == y_size - 1)
3616 lendiff = (int)STRLEN(ptr);
3617#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3618 if (*ptr == '#' && preprocs_left())
3619 indent = 0; /* Leave # lines at start */
3620 else
3621#endif
3622 if (*ptr == NUL)
3623 indent = 0; /* Ignore empty lines */
3624 else if (first_indent)
3625 {
3626 indent_diff = orig_indent - get_indent();
3627 indent = orig_indent;
3628 first_indent = FALSE;
3629 }
3630 else if ((indent = get_indent() + indent_diff) < 0)
3631 indent = 0;
3632 (void)set_indent(indent, 0);
3633 curwin->w_cursor = old_pos;
3634 /* remember how many chars were removed */
3635 if (cnt == count && i == y_size - 1)
3636 lendiff -= (int)STRLEN(ml_get(lnum));
3637 }
3638 }
3639 }
3640
3641error:
3642 /* Adjust marks. */
3643 if (y_type == MLINE)
3644 {
3645 curbuf->b_op_start.col = 0;
3646 if (dir == FORWARD)
3647 curbuf->b_op_start.lnum++;
3648 }
3649 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
3650 (linenr_T)MAXLNUM, nr_lines, 0L);
3651
3652 /* note changed text for displaying and folding */
3653 if (y_type == MCHAR)
3654 changed_lines(curwin->w_cursor.lnum, col,
3655 curwin->w_cursor.lnum + 1, nr_lines);
3656 else
3657 changed_lines(curbuf->b_op_start.lnum, 0,
3658 curbuf->b_op_start.lnum, nr_lines);
3659
3660 /* put '] mark at last inserted character */
3661 curbuf->b_op_end.lnum = lnum;
3662 /* correct length for change in indent */
3663 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3664 if (col > 1)
3665 curbuf->b_op_end.col = col - 1;
3666 else
3667 curbuf->b_op_end.col = 0;
3668
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003669 if (flags & PUT_CURSLINE)
3670 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003671 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003672 curwin->w_cursor.lnum = lnum;
3673 beginline(BL_WHITE | BL_FIX);
3674 }
3675 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 {
3677 /* put cursor after inserted text */
3678 if (y_type == MLINE)
3679 {
3680 if (lnum >= curbuf->b_ml.ml_line_count)
3681 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3682 else
3683 curwin->w_cursor.lnum = lnum + 1;
3684 curwin->w_cursor.col = 0;
3685 }
3686 else
3687 {
3688 curwin->w_cursor.lnum = lnum;
3689 curwin->w_cursor.col = col;
3690 }
3691 }
3692 else if (y_type == MLINE)
3693 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003694 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 curwin->w_cursor.col = 0;
3696 if (dir == FORWARD)
3697 ++curwin->w_cursor.lnum;
3698 beginline(BL_WHITE | BL_FIX);
3699 }
3700 else /* put cursor on first inserted character */
3701 curwin->w_cursor = new_cursor;
3702 }
3703 }
3704
3705 msgmore(nr_lines);
3706 curwin->w_set_curswant = TRUE;
3707
3708end:
3709 if (allocated)
3710 {
3711 vim_free(insert_string);
3712 if (regname == '=')
3713 vim_free(y_array);
3714 }
Bram Moolenaar677ee682005-01-27 14:41:15 +00003715 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 if (gchar_cursor() == NUL
3717 && curwin->w_cursor.col > 0
3718 && !(restart_edit || (State & INSERT)))
3719 {
3720 --curwin->w_cursor.col;
3721#ifdef FEAT_VIRTUALEDIT
3722 if (ve_flags == VE_ALL)
3723 ++curwin->w_cursor.coladd;
3724#endif
3725 }
3726}
3727
3728#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
3729/*
3730 * Return TRUE if lines starting with '#' should be left aligned.
3731 */
3732 int
3733preprocs_left()
3734{
3735 return
3736# ifdef FEAT_SMARTINDENT
3737# ifdef FEAT_CINDENT
3738 (curbuf->b_p_si && !curbuf->b_p_cin) ||
3739# else
3740 curbuf->b_p_si
3741# endif
3742# endif
3743# ifdef FEAT_CINDENT
3744 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE))
3745# endif
3746 ;
3747}
3748#endif
3749
3750/* Return the character name of the register with the given number */
3751 int
3752get_register_name(num)
3753 int num;
3754{
3755 if (num == -1)
3756 return '"';
3757 else if (num < 10)
3758 return num + '0';
3759 else if (num == DELETION_REGISTER)
3760 return '-';
3761#ifdef FEAT_CLIPBOARD
3762 else if (num == STAR_REGISTER)
3763 return '*';
3764 else if (num == PLUS_REGISTER)
3765 return '+';
3766#endif
3767 else
3768 {
3769#ifdef EBCDIC
3770 int i;
3771
3772 /* EBCDIC is really braindead ... */
3773 i = 'a' + (num - 10);
3774 if (i > 'i')
3775 i += 7;
3776 if (i > 'r')
3777 i += 8;
3778 return i;
3779#else
3780 return num + 'a' - 10;
3781#endif
3782 }
3783}
3784
3785/*
3786 * ":dis" and ":registers": Display the contents of the yank registers.
3787 */
3788 void
3789ex_display(eap)
3790 exarg_T *eap;
3791{
3792 int i, n;
3793 long j;
3794 char_u *p;
3795 struct yankreg *yb;
3796 int name;
3797 int attr;
3798 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003799#ifdef FEAT_MBYTE
3800 int clen;
3801#else
3802# define clen 1
3803#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804
3805 if (arg != NULL && *arg == NUL)
3806 arg = NULL;
3807 attr = hl_attr(HLF_8);
3808
3809 /* Highlight title */
3810 MSG_PUTS_TITLE(_("\n--- Registers ---"));
3811 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
3812 {
3813 name = get_register_name(i);
3814 if (arg != NULL && vim_strchr(arg, name) == NULL)
3815 continue; /* did not ask for this register */
3816
3817#ifdef FEAT_CLIPBOARD
3818 /* Adjust register name for "unnamed" in 'clipboard'.
3819 * When it's a clipboard register, fill it with the current contents
3820 * of the clipboard. */
3821 adjust_clip_reg(&name);
3822 (void)may_get_selection(name);
3823#endif
3824
3825 if (i == -1)
3826 {
3827 if (y_previous != NULL)
3828 yb = y_previous;
3829 else
3830 yb = &(y_regs[0]);
3831 }
3832 else
3833 yb = &(y_regs[i]);
3834 if (yb->y_array != NULL)
3835 {
3836 msg_putchar('\n');
3837 msg_putchar('"');
3838 msg_putchar(name);
3839 MSG_PUTS(" ");
3840
3841 n = (int)Columns - 6;
3842 for (j = 0; j < yb->y_size && n > 1; ++j)
3843 {
3844 if (j)
3845 {
3846 MSG_PUTS_ATTR("^J", attr);
3847 n -= 2;
3848 }
3849 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
3850 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003852 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003853#endif
3854 msg_outtrans_len(p, clen);
3855#ifdef FEAT_MBYTE
3856 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857#endif
3858 }
3859 }
3860 if (n > 1 && yb->y_type == MLINE)
3861 MSG_PUTS_ATTR("^J", attr);
3862 out_flush(); /* show one line at a time */
3863 }
3864 ui_breakcheck();
3865 }
3866
3867 /*
3868 * display last inserted text
3869 */
3870 if ((p = get_last_insert()) != NULL
3871 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
3872 {
3873 MSG_PUTS("\n\". ");
3874 dis_msg(p, TRUE);
3875 }
3876
3877 /*
3878 * display last command line
3879 */
3880 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
3881 && !got_int)
3882 {
3883 MSG_PUTS("\n\": ");
3884 dis_msg(last_cmdline, FALSE);
3885 }
3886
3887 /*
3888 * display current file name
3889 */
3890 if (curbuf->b_fname != NULL
3891 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
3892 {
3893 MSG_PUTS("\n\"% ");
3894 dis_msg(curbuf->b_fname, FALSE);
3895 }
3896
3897 /*
3898 * display alternate file name
3899 */
3900 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
3901 {
3902 char_u *fname;
3903 linenr_T dummy;
3904
3905 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
3906 {
3907 MSG_PUTS("\n\"# ");
3908 dis_msg(fname, FALSE);
3909 }
3910 }
3911
3912 /*
3913 * display last search pattern
3914 */
3915 if (last_search_pat() != NULL
3916 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
3917 {
3918 MSG_PUTS("\n\"/ ");
3919 dis_msg(last_search_pat(), FALSE);
3920 }
3921
3922#ifdef FEAT_EVAL
3923 /*
3924 * display last used expression
3925 */
3926 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
3927 && !got_int)
3928 {
3929 MSG_PUTS("\n\"= ");
3930 dis_msg(expr_line, FALSE);
3931 }
3932#endif
3933}
3934
3935/*
3936 * display a string for do_dis()
3937 * truncate at end of screen line
3938 */
3939 static void
3940dis_msg(p, skip_esc)
3941 char_u *p;
3942 int skip_esc; /* if TRUE, ignore trailing ESC */
3943{
3944 int n;
3945#ifdef FEAT_MBYTE
3946 int l;
3947#endif
3948
3949 n = (int)Columns - 6;
3950 while (*p != NUL
3951 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
3952 && (n -= ptr2cells(p)) >= 0)
3953 {
3954#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003955 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 {
3957 msg_outtrans_len(p, l);
3958 p += l;
3959 }
3960 else
3961#endif
3962 msg_outtrans_len(p++, 1);
3963 }
3964 ui_breakcheck();
3965}
3966
3967/*
3968 * join 'count' lines (minimal 2), including u_save()
3969 */
3970 void
3971do_do_join(count, insert_space)
3972 long count;
3973 int insert_space;
3974{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003975 colnr_T col = MAXCOL;
3976
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
3978 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
3979 return;
3980
3981 while (--count > 0)
3982 {
3983 line_breakcheck();
3984 if (got_int || do_join(insert_space) == FAIL)
3985 {
3986 beep_flush();
3987 break;
3988 }
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003989 if (col == MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
3990 col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 }
3992
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003993 /* Vi compatible: use the column of the first join */
3994 if (col != MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
3995 curwin->w_cursor.col = col;
3996
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997#if 0
3998 /*
3999 * Need to update the screen if the line where the cursor is became too
4000 * long to fit on the screen.
4001 */
4002 update_topline_redraw();
4003#endif
4004}
4005
4006/*
4007 * Join two lines at the cursor position.
4008 * "redraw" is TRUE when the screen should be updated.
4009 * Caller must have setup for undo.
4010 *
4011 * return FAIL for failure, OK ohterwise
4012 */
4013 int
4014do_join(insert_space)
4015 int insert_space;
4016{
4017 char_u *curr;
4018 char_u *next, *next_start;
4019 char_u *newp;
4020 int endcurr1, endcurr2;
4021 int currsize; /* size of the current line */
4022 int nextsize; /* size of the next line */
4023 int spaces; /* number of spaces to insert */
4024 linenr_T t;
4025
4026 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4027 return FAIL; /* can't join on last line */
4028
4029 curr = ml_get_curline();
4030 currsize = (int)STRLEN(curr);
4031 endcurr1 = endcurr2 = NUL;
4032 if (insert_space && currsize > 0)
4033 {
4034#ifdef FEAT_MBYTE
4035 if (has_mbyte)
4036 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004037 next = curr + currsize;
4038 mb_ptr_back(curr, next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 endcurr1 = (*mb_ptr2char)(next);
4040 if (next > curr)
4041 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004042 mb_ptr_back(curr, next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043 endcurr2 = (*mb_ptr2char)(next);
4044 }
4045 }
4046 else
4047#endif
4048 {
4049 endcurr1 = *(curr + currsize - 1);
4050 if (currsize > 1)
4051 endcurr2 = *(curr + currsize - 2);
4052 }
4053 }
4054
4055 next = next_start = ml_get((linenr_T)(curwin->w_cursor.lnum + 1));
4056 spaces = 0;
4057 if (insert_space)
4058 {
4059 next = skipwhite(next);
4060 if (*next != ')' && currsize != 0 && endcurr1 != TAB
4061#ifdef FEAT_MBYTE
4062 && (!has_format_option(FO_MBYTE_JOIN)
4063 || (mb_ptr2char(next) < 0x100 && endcurr1 < 0x100))
4064 && (!has_format_option(FO_MBYTE_JOIN2)
4065 || mb_ptr2char(next) < 0x100 || endcurr1 < 0x100)
4066#endif
4067 )
4068 {
4069 /* don't add a space if the line is ending in a space */
4070 if (endcurr1 == ' ')
4071 endcurr1 = endcurr2;
4072 else
4073 ++spaces;
4074 /* extra space when 'joinspaces' set and line ends in '.' */
4075 if ( p_js
4076 && (endcurr1 == '.'
4077 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4078 && (endcurr1 == '?' || endcurr1 == '!'))))
4079 ++spaces;
4080 }
4081 }
4082 nextsize = (int)STRLEN(next);
4083
4084 newp = alloc_check((unsigned)(currsize + nextsize + spaces + 1));
4085 if (newp == NULL)
4086 return FAIL;
4087
4088 /*
4089 * Insert the next line first, because we already have that pointer.
4090 * Curr has to be obtained again, because getting next will have
4091 * invalidated it.
4092 */
4093 mch_memmove(newp + currsize + spaces, next, (size_t)(nextsize + 1));
4094
4095 curr = ml_get_curline();
4096 mch_memmove(newp, curr, (size_t)currsize);
4097
4098 copy_spaces(newp + currsize, (size_t)spaces);
4099
4100 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4101
4102 /* Only report the change in the first line here, del_lines() will report
4103 * the deleted line. */
4104 changed_lines(curwin->w_cursor.lnum, currsize,
4105 curwin->w_cursor.lnum + 1, 0L);
4106
4107 /*
4108 * Delete the following line. To do this we move the cursor there
4109 * briefly, and then move it back. After del_lines() the cursor may
4110 * have moved up (last line deleted), so the current lnum is kept in t.
4111 *
4112 * Move marks from the deleted line to the joined line, adjusting the
4113 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4114 * should not really be a problem.
4115 */
4116 t = curwin->w_cursor.lnum;
4117 mark_col_adjust(t + 1, (colnr_T)0, (linenr_T)-1,
4118 (long)(currsize + spaces - (next - next_start)));
4119 ++curwin->w_cursor.lnum;
4120 del_lines(1L, FALSE);
4121 curwin->w_cursor.lnum = t;
4122
4123 /*
4124 * go to first character of the joined line
4125 */
4126 curwin->w_cursor.col = currsize;
4127 check_cursor_col();
4128#ifdef FEAT_VIRTUALEDIT
4129 curwin->w_cursor.coladd = 0;
4130#endif
4131 curwin->w_set_curswant = TRUE;
4132
4133 return OK;
4134}
4135
4136#ifdef FEAT_COMMENTS
4137/*
4138 * Return TRUE if the two comment leaders given are the same. "lnum" is
4139 * the first line. White-space is ignored. Note that the whole of
4140 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4141 */
4142 static int
4143same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
4144 linenr_T lnum;
4145 int leader1_len;
4146 char_u *leader1_flags;
4147 int leader2_len;
4148 char_u *leader2_flags;
4149{
4150 int idx1 = 0, idx2 = 0;
4151 char_u *p;
4152 char_u *line1;
4153 char_u *line2;
4154
4155 if (leader1_len == 0)
4156 return (leader2_len == 0);
4157
4158 /*
4159 * If first leader has 'f' flag, the lines can be joined only if the
4160 * second line does not have a leader.
4161 * If first leader has 'e' flag, the lines can never be joined.
4162 * If fist leader has 's' flag, the lines can only be joined if there is
4163 * some text after it and the second line has the 'm' flag.
4164 */
4165 if (leader1_flags != NULL)
4166 {
4167 for (p = leader1_flags; *p && *p != ':'; ++p)
4168 {
4169 if (*p == COM_FIRST)
4170 return (leader2_len == 0);
4171 if (*p == COM_END)
4172 return FALSE;
4173 if (*p == COM_START)
4174 {
4175 if (*(ml_get(lnum) + leader1_len) == NUL)
4176 return FALSE;
4177 if (leader2_flags == NULL || leader2_len == 0)
4178 return FALSE;
4179 for (p = leader2_flags; *p && *p != ':'; ++p)
4180 if (*p == COM_MIDDLE)
4181 return TRUE;
4182 return FALSE;
4183 }
4184 }
4185 }
4186
4187 /*
4188 * Get current line and next line, compare the leaders.
4189 * The first line has to be saved, only one line can be locked at a time.
4190 */
4191 line1 = vim_strsave(ml_get(lnum));
4192 if (line1 != NULL)
4193 {
4194 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4195 ;
4196 line2 = ml_get(lnum + 1);
4197 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4198 {
4199 if (!vim_iswhite(line2[idx2]))
4200 {
4201 if (line1[idx1++] != line2[idx2])
4202 break;
4203 }
4204 else
4205 while (vim_iswhite(line1[idx1]))
4206 ++idx1;
4207 }
4208 vim_free(line1);
4209 }
4210 return (idx2 == leader2_len && idx1 == leader1_len);
4211}
4212#endif
4213
4214/*
4215 * implementation of the format operator 'gq'
4216 */
4217 void
4218op_format(oap, keep_cursor)
4219 oparg_T *oap;
4220 int keep_cursor; /* keep cursor on same text char */
4221{
4222 long old_line_count = curbuf->b_ml.ml_line_count;
4223
4224 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4225 * can put it back there. */
4226 curwin->w_cursor = oap->cursor_start;
4227
4228 if (u_save((linenr_T)(oap->start.lnum - 1),
4229 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4230 return;
4231 curwin->w_cursor = oap->start;
4232
4233#ifdef FEAT_VISUAL
4234 if (oap->is_VIsual)
4235 /* When there is no change: need to remove the Visual selection */
4236 redraw_curbuf_later(INVERTED);
4237#endif
4238
4239 /* Set '[ mark at the start of the formatted area */
4240 curbuf->b_op_start = oap->start;
4241
4242 /* For "gw" remember the cursor position and put it back below (adjusted
4243 * for joined and split lines). */
4244 if (keep_cursor)
4245 saved_cursor = oap->cursor_start;
4246
4247 format_lines(oap->line_count);
4248
4249 /*
4250 * Leave the cursor at the first non-blank of the last formatted line.
4251 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4252 * line, so "." will do the next lines.
4253 */
4254 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4255 ++curwin->w_cursor.lnum;
4256 beginline(BL_WHITE | BL_FIX);
4257 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4258 msgmore(old_line_count);
4259
4260 /* put '] mark on the end of the formatted area */
4261 curbuf->b_op_end = curwin->w_cursor;
4262
4263 if (keep_cursor)
4264 {
4265 curwin->w_cursor = saved_cursor;
4266 saved_cursor.lnum = 0;
4267 }
4268
4269#ifdef FEAT_VISUAL
4270 if (oap->is_VIsual)
4271 {
4272 win_T *wp;
4273
4274 FOR_ALL_WINDOWS(wp)
4275 {
4276 if (wp->w_old_cursor_lnum != 0)
4277 {
4278 /* When lines have been inserted or deleted, adjust the end of
4279 * the Visual area to be redrawn. */
4280 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4281 wp->w_old_cursor_lnum += old_line_count;
4282 else
4283 wp->w_old_visual_lnum += old_line_count;
4284 }
4285 }
4286 }
4287#endif
4288}
4289
4290/*
4291 * Format "line_count" lines, starting at the cursor position.
4292 * When "line_count" is negative, format until the end of the paragraph.
4293 * Lines after the cursor line are saved for undo, caller must have saved the
4294 * first line.
4295 */
4296 void
4297format_lines(line_count)
4298 linenr_T line_count;
4299{
4300 int max_len;
4301 int is_not_par; /* current line not part of parag. */
4302 int next_is_not_par; /* next line not part of paragraph */
4303 int is_end_par; /* at end of paragraph */
4304 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4305 int next_is_start_par = FALSE;
4306#ifdef FEAT_COMMENTS
4307 int leader_len = 0; /* leader len of current line */
4308 int next_leader_len; /* leader len of next line */
4309 char_u *leader_flags = NULL; /* flags for leader of current line */
4310 char_u *next_leader_flags; /* flags for leader of next line */
4311 int do_comments; /* format comments */
4312#endif
4313 int advance = TRUE;
4314 int second_indent = -1;
4315 int do_second_indent;
4316 int do_number_indent;
4317 int do_trail_white;
4318 int first_par_line = TRUE;
4319 int smd_save;
4320 long count;
4321 int need_set_indent = TRUE; /* set indent of next paragraph */
4322 int force_format = FALSE;
4323 int old_State = State;
4324
4325 /* length of a line to force formatting: 3 * 'tw' */
4326 max_len = comp_textwidth(TRUE) * 3;
4327
4328 /* check for 'q', '2' and '1' in 'formatoptions' */
4329#ifdef FEAT_COMMENTS
4330 do_comments = has_format_option(FO_Q_COMS);
4331#endif
4332 do_second_indent = has_format_option(FO_Q_SECOND);
4333 do_number_indent = has_format_option(FO_Q_NUMBER);
4334 do_trail_white = has_format_option(FO_WHITE_PAR);
4335
4336 /*
4337 * Get info about the previous and current line.
4338 */
4339 if (curwin->w_cursor.lnum > 1)
4340 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4341#ifdef FEAT_COMMENTS
4342 , &leader_len, &leader_flags, do_comments
4343#endif
4344 );
4345 else
4346 is_not_par = TRUE;
4347 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4348#ifdef FEAT_COMMENTS
4349 , &next_leader_len, &next_leader_flags, do_comments
4350#endif
4351 );
4352 is_end_par = (is_not_par || next_is_not_par);
4353 if (!is_end_par && do_trail_white)
4354 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4355
4356 curwin->w_cursor.lnum--;
4357 for (count = line_count; count != 0 && !got_int; --count)
4358 {
4359 /*
4360 * Advance to next paragraph.
4361 */
4362 if (advance)
4363 {
4364 curwin->w_cursor.lnum++;
4365 prev_is_end_par = is_end_par;
4366 is_not_par = next_is_not_par;
4367#ifdef FEAT_COMMENTS
4368 leader_len = next_leader_len;
4369 leader_flags = next_leader_flags;
4370#endif
4371 }
4372
4373 /*
4374 * The last line to be formatted.
4375 */
4376 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4377 {
4378 next_is_not_par = TRUE;
4379#ifdef FEAT_COMMENTS
4380 next_leader_len = 0;
4381 next_leader_flags = NULL;
4382#endif
4383 }
4384 else
4385 {
4386 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4387#ifdef FEAT_COMMENTS
4388 , &next_leader_len, &next_leader_flags, do_comments
4389#endif
4390 );
4391 if (do_number_indent)
4392 next_is_start_par =
4393 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4394 }
4395 advance = TRUE;
4396 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4397 if (!is_end_par && do_trail_white)
4398 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4399
4400 /*
4401 * Skip lines that are not in a paragraph.
4402 */
4403 if (is_not_par)
4404 {
4405 if (line_count < 0)
4406 break;
4407 }
4408 else
4409 {
4410 /*
4411 * For the first line of a paragraph, check indent of second line.
4412 * Don't do this for comments and empty lines.
4413 */
4414 if (first_par_line
4415 && (do_second_indent || do_number_indent)
4416 && prev_is_end_par
4417 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4418#ifdef FEAT_COMMENTS
4419 && leader_len == 0
4420 && next_leader_len == 0
4421#endif
4422 )
4423 {
4424 if (do_second_indent
4425 && !lineempty(curwin->w_cursor.lnum + 1))
4426 second_indent = get_indent_lnum(curwin->w_cursor.lnum + 1);
4427 else if (do_number_indent)
4428 second_indent = get_number_indent(curwin->w_cursor.lnum);
4429 }
4430
4431 /*
4432 * When the comment leader changes, it's the end of the paragraph.
4433 */
4434 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4435#ifdef FEAT_COMMENTS
4436 || !same_leader(curwin->w_cursor.lnum,
4437 leader_len, leader_flags,
4438 next_leader_len, next_leader_flags)
4439#endif
4440 )
4441 is_end_par = TRUE;
4442
4443 /*
4444 * If we have got to the end of a paragraph, or the line is
4445 * getting long, format it.
4446 */
4447 if (is_end_par || force_format)
4448 {
4449 if (need_set_indent)
4450 /* replace indent in first line with minimal number of
4451 * tabs and spaces, according to current options */
4452 (void)set_indent(get_indent(), SIN_CHANGED);
4453
4454 /* put cursor on last non-space */
4455 State = NORMAL; /* don't go past end-of-line */
4456 coladvance((colnr_T)MAXCOL);
4457 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
4458 dec_cursor();
4459
4460 /* do the formatting, without 'showmode' */
4461 State = INSERT; /* for open_line() */
4462 smd_save = p_smd;
4463 p_smd = FALSE;
4464 insertchar(NUL, INSCHAR_FORMAT
4465#ifdef FEAT_COMMENTS
4466 + (do_comments ? INSCHAR_DO_COM : 0)
4467#endif
4468 , second_indent);
4469 State = old_State;
4470 p_smd = smd_save;
4471 second_indent = -1;
4472 /* at end of par.: need to set indent of next par. */
4473 need_set_indent = is_end_par;
4474 if (is_end_par)
4475 {
4476 /* When called with a negative line count, break at the
4477 * end of the paragraph. */
4478 if (line_count < 0)
4479 break;
4480 first_par_line = TRUE;
4481 }
4482 force_format = FALSE;
4483 }
4484
4485 /*
4486 * When still in same paragraph, join the lines together. But
4487 * first delete the comment leader from the second line.
4488 */
4489 if (!is_end_par)
4490 {
4491 advance = FALSE;
4492 curwin->w_cursor.lnum++;
4493 curwin->w_cursor.col = 0;
4494 if (line_count < 0 && u_save_cursor() == FAIL)
4495 break;
4496#ifdef FEAT_COMMENTS
4497 (void)del_bytes((long)next_leader_len, FALSE);
4498 if (next_leader_len > 0)
4499 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
4500 (long)-next_leader_len);
4501#endif
4502 curwin->w_cursor.lnum--;
4503 if (do_join(TRUE) == FAIL)
4504 {
4505 beep_flush();
4506 break;
4507 }
4508 first_par_line = FALSE;
4509 /* If the line is getting long, format it next time */
4510 if (STRLEN(ml_get_curline()) > (size_t)max_len)
4511 force_format = TRUE;
4512 else
4513 force_format = FALSE;
4514 }
4515 }
4516 line_breakcheck();
4517 }
4518}
4519
4520/*
4521 * Return TRUE if line "lnum" ends in a white character.
4522 */
4523 static int
4524ends_in_white(lnum)
4525 linenr_T lnum;
4526{
4527 char_u *s = ml_get(lnum);
4528 size_t l;
4529
4530 if (*s == NUL)
4531 return FALSE;
4532 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
4533 * invocation may call function multiple times". */
4534 l = STRLEN(s) - 1;
4535 return vim_iswhite(s[l]);
4536}
4537
4538/*
4539 * Blank lines, and lines containing only the comment leader, are left
4540 * untouched by the formatting. The function returns TRUE in this
4541 * case. It also returns TRUE when a line starts with the end of a comment
4542 * ('e' in comment flags), so that this line is skipped, and not joined to the
4543 * previous line. A new paragraph starts after a blank line, or when the
4544 * comment leader changes -- webb.
4545 */
4546#ifdef FEAT_COMMENTS
4547 static int
4548fmt_check_par(lnum, leader_len, leader_flags, do_comments)
4549 linenr_T lnum;
4550 int *leader_len;
4551 char_u **leader_flags;
4552 int do_comments;
4553{
4554 char_u *flags = NULL; /* init for GCC */
4555 char_u *ptr;
4556
4557 ptr = ml_get(lnum);
4558 if (do_comments)
4559 *leader_len = get_leader_len(ptr, leader_flags, FALSE);
4560 else
4561 *leader_len = 0;
4562
4563 if (*leader_len > 0)
4564 {
4565 /*
4566 * Search for 'e' flag in comment leader flags.
4567 */
4568 flags = *leader_flags;
4569 while (*flags && *flags != ':' && *flags != COM_END)
4570 ++flags;
4571 }
4572
4573 return (*skipwhite(ptr + *leader_len) == NUL
4574 || (*leader_len > 0 && *flags == COM_END)
4575 || startPS(lnum, NUL, FALSE));
4576}
4577#else
4578 static int
4579fmt_check_par(lnum)
4580 linenr_T lnum;
4581{
4582 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
4583}
4584#endif
4585
4586/*
4587 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
4588 * previous line is in the same paragraph. Used for auto-formatting.
4589 */
4590 int
4591paragraph_start(lnum)
4592 linenr_T lnum;
4593{
4594 char_u *p;
4595#ifdef FEAT_COMMENTS
4596 int leader_len = 0; /* leader len of current line */
4597 char_u *leader_flags = NULL; /* flags for leader of current line */
4598 int next_leader_len; /* leader len of next line */
4599 char_u *next_leader_flags; /* flags for leader of next line */
4600 int do_comments; /* format comments */
4601#endif
4602
4603 if (lnum <= 1)
4604 return TRUE; /* start of the file */
4605
4606 p = ml_get(lnum - 1);
4607 if (*p == NUL)
4608 return TRUE; /* after empty line */
4609
4610#ifdef FEAT_COMMENTS
4611 do_comments = has_format_option(FO_Q_COMS);
4612#endif
4613 if (fmt_check_par(lnum - 1
4614#ifdef FEAT_COMMENTS
4615 , &leader_len, &leader_flags, do_comments
4616#endif
4617 ))
4618 return TRUE; /* after non-paragraph line */
4619
4620 if (fmt_check_par(lnum
4621#ifdef FEAT_COMMENTS
4622 , &next_leader_len, &next_leader_flags, do_comments
4623#endif
4624 ))
4625 return TRUE; /* "lnum" is not a paragraph line */
4626
4627 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
4628 return TRUE; /* missing trailing space in previous line. */
4629
4630 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
4631 return TRUE; /* numbered item starts in "lnum". */
4632
4633#ifdef FEAT_COMMENTS
4634 if (!same_leader(lnum - 1, leader_len, leader_flags,
4635 next_leader_len, next_leader_flags))
4636 return TRUE; /* change of comment leader. */
4637#endif
4638
4639 return FALSE;
4640}
4641
4642#ifdef FEAT_VISUAL
4643/*
4644 * prepare a few things for block mode yank/delete/tilde
4645 *
4646 * for delete:
4647 * - textlen includes the first/last char to be (partly) deleted
4648 * - start/endspaces is the number of columns that are taken by the
4649 * first/last deleted char minus the number of columns that have to be
4650 * deleted. for yank and tilde:
4651 * - textlen includes the first/last char to be wholly yanked
4652 * - start/endspaces is the number of columns of the first/last yanked char
4653 * that are to be yanked.
4654 */
4655 static void
4656block_prep(oap, bdp, lnum, is_del)
4657 oparg_T *oap;
4658 struct block_def *bdp;
4659 linenr_T lnum;
4660 int is_del;
4661{
4662 int incr = 0;
4663 char_u *pend;
4664 char_u *pstart;
4665 char_u *line;
4666 char_u *prev_pstart;
4667 char_u *prev_pend;
4668
4669 bdp->startspaces = 0;
4670 bdp->endspaces = 0;
4671 bdp->textlen = 0;
4672 bdp->start_vcol = 0;
4673 bdp->end_vcol = 0;
4674#ifdef FEAT_VISUALEXTRA
4675 bdp->is_short = FALSE;
4676 bdp->is_oneChar = FALSE;
4677 bdp->pre_whitesp = 0;
4678 bdp->pre_whitesp_c = 0;
4679 bdp->end_char_vcols = 0;
4680#endif
4681 bdp->start_char_vcols = 0;
4682
4683 line = ml_get(lnum);
4684 pstart = line;
4685 prev_pstart = line;
4686 while (bdp->start_vcol < oap->start_vcol && *pstart)
4687 {
4688 /* Count a tab for what it's worth (if list mode not on) */
4689 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
4690 bdp->start_vcol += incr;
4691#ifdef FEAT_VISUALEXTRA
4692 if (vim_iswhite(*pstart))
4693 {
4694 bdp->pre_whitesp += incr;
4695 bdp->pre_whitesp_c++;
4696 }
4697 else
4698 {
4699 bdp->pre_whitesp = 0;
4700 bdp->pre_whitesp_c = 0;
4701 }
4702#endif
4703 prev_pstart = pstart;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004704 mb_ptr_adv(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 }
4706 bdp->start_char_vcols = incr;
4707 if (bdp->start_vcol < oap->start_vcol) /* line too short */
4708 {
4709 bdp->end_vcol = bdp->start_vcol;
4710#ifdef FEAT_VISUALEXTRA
4711 bdp->is_short = TRUE;
4712#endif
4713 if (!is_del || oap->op_type == OP_APPEND)
4714 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
4715 }
4716 else
4717 {
4718 /* notice: this converts partly selected Multibyte characters to
4719 * spaces, too. */
4720 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
4721 if (is_del && bdp->startspaces)
4722 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
4723 pend = pstart;
4724 bdp->end_vcol = bdp->start_vcol;
4725 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
4726 {
4727#ifdef FEAT_VISUALEXTRA
4728 bdp->is_oneChar = TRUE;
4729#endif
4730 if (oap->op_type == OP_INSERT)
4731 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4732 else if (oap->op_type == OP_APPEND)
4733 {
4734 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
4735 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4736 }
4737 else
4738 {
4739 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
4740 if (is_del && oap->op_type != OP_LSHIFT)
4741 {
4742 /* just putting the sum of those two into
4743 * bdp->startspaces doesn't work for Visual replace,
4744 * so we have to split the tab in two */
4745 bdp->startspaces = bdp->start_char_vcols
4746 - (bdp->start_vcol - oap->start_vcol);
4747 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4748 }
4749 }
4750 }
4751 else
4752 {
4753 prev_pend = pend;
4754 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
4755 {
4756 /* Count a tab for what it's worth (if list mode not on) */
4757 prev_pend = pend;
4758 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
4759 bdp->end_vcol += incr;
4760 }
4761 if (bdp->end_vcol <= oap->end_vcol
4762 && (!is_del
4763 || oap->op_type == OP_APPEND
4764 || oap->op_type == OP_REPLACE)) /* line too short */
4765 {
4766#ifdef FEAT_VISUALEXTRA
4767 bdp->is_short = TRUE;
4768#endif
4769 /* Alternative: include spaces to fill up the block.
4770 * Disadvantage: can lead to trailing spaces when the line is
4771 * short where the text is put */
4772 /* if (!is_del || oap->op_type == OP_APPEND) */
4773 if (oap->op_type == OP_APPEND || virtual_op)
4774 bdp->endspaces = oap->end_vcol - bdp->end_vcol
4775 + oap->inclusive;
4776 else
4777 bdp->endspaces = 0; /* replace doesn't add characters */
4778 }
4779 else if (bdp->end_vcol > oap->end_vcol)
4780 {
4781 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4782 if (!is_del && bdp->endspaces)
4783 {
4784 bdp->endspaces = incr - bdp->endspaces;
4785 if (pend != pstart)
4786 pend = prev_pend;
4787 }
4788 }
4789 }
4790#ifdef FEAT_VISUALEXTRA
4791 bdp->end_char_vcols = incr;
4792#endif
4793 if (is_del && bdp->startspaces)
4794 pstart = prev_pstart;
4795 bdp->textlen = (int)(pend - pstart);
4796 }
4797 bdp->textcol = (colnr_T) (pstart - line);
4798 bdp->textstart = pstart;
4799}
4800#endif /* FEAT_VISUAL */
4801
4802#ifdef FEAT_RIGHTLEFT
4803static void reverse_line __ARGS((char_u *s));
4804
4805 static void
4806reverse_line(s)
4807 char_u *s;
4808{
4809 int i, j;
4810 char_u c;
4811
4812 if ((i = (int)STRLEN(s) - 1) <= 0)
4813 return;
4814
4815 curwin->w_cursor.col = i - curwin->w_cursor.col;
4816 for (j = 0; j < i; j++, i--)
4817 {
4818 c = s[i]; s[i] = s[j]; s[j] = c;
4819 }
4820}
4821
4822# define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
4823#else
4824# define RLADDSUBFIX(ptr)
4825#endif
4826
4827/*
4828 * add or subtract 'Prenum1' from a number in a line
4829 * 'command' is CTRL-A for add, CTRL-X for subtract
4830 *
4831 * return FAIL for failure, OK otherwise
4832 */
4833 int
4834do_addsub(command, Prenum1)
4835 int command;
4836 linenr_T Prenum1;
4837{
4838 int col;
4839 char_u *buf1;
4840 char_u buf2[NUMBUFLEN];
4841 int hex; /* 'X' or 'x': hex; '0': octal */
4842 static int hexupper = FALSE; /* 0xABC */
4843 long_u n;
4844 long_u oldn;
4845 char_u *ptr;
4846 int c;
4847 int length = 0; /* character length of the number */
4848 int todel;
4849 int dohex;
4850 int dooct;
4851 int doalp;
4852 int firstdigit;
4853 int negative;
4854 int subtract;
4855
4856 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
4857 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
4858 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
4859
4860 ptr = ml_get_curline();
4861 RLADDSUBFIX(ptr);
4862
4863 /*
4864 * First check if we are on a hexadecimal number, after the "0x".
4865 */
4866 col = curwin->w_cursor.col;
4867 if (dohex)
4868 while (col > 0 && vim_isxdigit(ptr[col]))
4869 --col;
4870 if ( dohex
4871 && col > 0
4872 && (ptr[col] == 'X'
4873 || ptr[col] == 'x')
4874 && ptr[col - 1] == '0'
4875 && vim_isxdigit(ptr[col + 1]))
4876 {
4877 /*
4878 * Found hexadecimal number, move to its start.
4879 */
4880 --col;
4881 }
4882 else
4883 {
4884 /*
4885 * Search forward and then backward to find the start of number.
4886 */
4887 col = curwin->w_cursor.col;
4888
4889 while (ptr[col] != NUL
4890 && !vim_isdigit(ptr[col])
4891 && !(doalp && ASCII_ISALPHA(ptr[col])))
4892 ++col;
4893
4894 while (col > 0
4895 && vim_isdigit(ptr[col - 1])
4896 && !(doalp && ASCII_ISALPHA(ptr[col])))
4897 --col;
4898 }
4899
4900 /* truncate to max length of a number */
4901 if (length >= NUMBUFLEN - 1)
4902 length = NUMBUFLEN - 2;
4903
4904 /*
4905 * If a number was found, and saving for undo works, replace the number.
4906 */
4907 firstdigit = ptr[col];
4908 RLADDSUBFIX(ptr);
4909 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
4910 || u_save_cursor() != OK)
4911 {
4912 beep_flush();
4913 return FAIL;
4914 }
4915
4916 /* get ptr again, because u_save() may have changed it */
4917 ptr = ml_get_curline();
4918 RLADDSUBFIX(ptr);
4919
4920 if (doalp && ASCII_ISALPHA(firstdigit))
4921 {
4922 /* decrement or increment alphabetic character */
4923 if (command == Ctrl_X)
4924 {
4925 if (CharOrd(firstdigit) < Prenum1)
4926 {
4927 if (isupper(firstdigit))
4928 firstdigit = 'A';
4929 else
4930 firstdigit = 'a';
4931 }
4932 else
4933#ifdef EBCDIC
4934 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
4935#else
4936 firstdigit -= Prenum1;
4937#endif
4938 }
4939 else
4940 {
4941 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
4942 {
4943 if (isupper(firstdigit))
4944 firstdigit = 'Z';
4945 else
4946 firstdigit = 'z';
4947 }
4948 else
4949#ifdef EBCDIC
4950 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
4951#else
4952 firstdigit += Prenum1;
4953#endif
4954 }
4955 curwin->w_cursor.col = col;
4956 (void)del_char(FALSE);
4957 ins_char(firstdigit);
4958 }
4959 else
4960 {
4961 negative = FALSE;
4962 if (col > 0 && ptr[col - 1] == '-') /* negative number */
4963 {
4964 --col;
4965 negative = TRUE;
4966 }
4967
4968 /* get the number value (unsigned) */
4969 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
4970
4971 /* ignore leading '-' for hex and octal numbers */
4972 if (hex && negative)
4973 {
4974 ++col;
4975 --length;
4976 negative = FALSE;
4977 }
4978
4979 /* add or subtract */
4980 subtract = FALSE;
4981 if (command == Ctrl_X)
4982 subtract ^= TRUE;
4983 if (negative)
4984 subtract ^= TRUE;
4985
4986 oldn = n;
4987 if (subtract)
4988 n -= (unsigned long)Prenum1;
4989 else
4990 n += (unsigned long)Prenum1;
4991
4992 /* handle wraparound for decimal numbers */
4993 if (!hex)
4994 {
4995 if (subtract)
4996 {
4997 if (n > oldn)
4998 {
4999 n = 1 + (n ^ (unsigned long)-1);
5000 negative ^= TRUE;
5001 }
5002 }
5003 else /* add */
5004 {
5005 if (n < oldn)
5006 {
5007 n = (n ^ (unsigned long)-1);
5008 negative ^= TRUE;
5009 }
5010 }
5011 if (n == 0)
5012 negative = FALSE;
5013 }
5014
5015 /*
5016 * Delete the old number.
5017 */
5018 curwin->w_cursor.col = col;
5019 todel = length;
5020 c = gchar_cursor();
5021 /*
5022 * Don't include the '-' in the length, only the length of the part
5023 * after it is kept the same.
5024 */
5025 if (c == '-')
5026 --length;
5027 while (todel-- > 0)
5028 {
5029 if (c < 0x100 && isalpha(c))
5030 {
5031 if (isupper(c))
5032 hexupper = TRUE;
5033 else
5034 hexupper = FALSE;
5035 }
5036 /* del_char() will mark line needing displaying */
5037 (void)del_char(FALSE);
5038 c = gchar_cursor();
5039 }
5040
5041 /*
5042 * Prepare the leading characters in buf1[].
5043 * When there are many leading zeros it could be very long. Allocate
5044 * a bit too much.
5045 */
5046 buf1 = alloc((unsigned)length + NUMBUFLEN);
5047 if (buf1 == NULL)
5048 return FAIL;
5049 ptr = buf1;
5050 if (negative)
5051 {
5052 *ptr++ = '-';
5053 }
5054 if (hex)
5055 {
5056 *ptr++ = '0';
5057 --length;
5058 }
5059 if (hex == 'x' || hex == 'X')
5060 {
5061 *ptr++ = hex;
5062 --length;
5063 }
5064
5065 /*
5066 * Put the number characters in buf2[].
5067 */
5068 if (hex == 0)
5069 sprintf((char *)buf2, "%lu", n);
5070 else if (hex == '0')
5071 sprintf((char *)buf2, "%lo", n);
5072 else if (hex && hexupper)
5073 sprintf((char *)buf2, "%lX", n);
5074 else
5075 sprintf((char *)buf2, "%lx", n);
5076 length -= (int)STRLEN(buf2);
5077
5078 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005079 * Adjust number of zeros to the new number of digits, so the
5080 * total length of the number remains the same.
5081 * Don't do this when
5082 * the result may look like an octal number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005084 if (firstdigit == '0' && !(dooct && hex == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 while (length-- > 0)
5086 *ptr++ = '0';
5087 *ptr = NUL;
5088 STRCAT(buf1, buf2);
5089 ins_str(buf1); /* insert the new number */
5090 vim_free(buf1);
5091 }
5092 --curwin->w_cursor.col;
5093 curwin->w_set_curswant = TRUE;
5094#ifdef FEAT_RIGHTLEFT
5095 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
5096 RLADDSUBFIX(ptr);
5097#endif
5098 return OK;
5099}
5100
5101#ifdef FEAT_VIMINFO
5102 int
5103read_viminfo_register(virp, force)
5104 vir_T *virp;
5105 int force;
5106{
5107 int eof;
5108 int do_it = TRUE;
5109 int size;
5110 int limit;
5111 int i;
5112 int set_prev = FALSE;
5113 char_u *str;
5114 char_u **array = NULL;
5115
5116 /* We only get here (hopefully) if line[0] == '"' */
5117 str = virp->vir_line + 1;
5118 if (*str == '"')
5119 {
5120 set_prev = TRUE;
5121 str++;
5122 }
5123 if (!ASCII_ISALNUM(*str) && *str != '-')
5124 {
5125 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5126 return TRUE; /* too many errors, pretend end-of-file */
5127 do_it = FALSE;
5128 }
5129 get_yank_register(*str++, FALSE);
5130 if (!force && y_current->y_array != NULL)
5131 do_it = FALSE;
5132 size = 0;
5133 limit = 100; /* Optimized for registers containing <= 100 lines */
5134 if (do_it)
5135 {
5136 if (set_prev)
5137 y_previous = y_current;
5138 vim_free(y_current->y_array);
5139 array = y_current->y_array =
5140 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
5141 str = skipwhite(str);
5142 if (STRNCMP(str, "CHAR", 4) == 0)
5143 y_current->y_type = MCHAR;
5144#ifdef FEAT_VISUAL
5145 else if (STRNCMP(str, "BLOCK", 5) == 0)
5146 y_current->y_type = MBLOCK;
5147#endif
5148 else
5149 y_current->y_type = MLINE;
5150 /* get the block width; if it's missing we get a zero, which is OK */
5151 str = skipwhite(skiptowhite(str));
5152#ifdef FEAT_VISUAL
5153 y_current->y_width = getdigits(&str);
5154#else
5155 (void)getdigits(&str);
5156#endif
5157 }
5158
5159 while (!(eof = viminfo_readline(virp))
5160 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5161 {
5162 if (do_it)
5163 {
5164 if (size >= limit)
5165 {
5166 y_current->y_array = (char_u **)
5167 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
5168 for (i = 0; i < limit; i++)
5169 y_current->y_array[i] = array[i];
5170 vim_free(array);
5171 limit *= 2;
5172 array = y_current->y_array;
5173 }
5174 str = viminfo_readstring(virp, 1, TRUE);
5175 if (str != NULL)
5176 array[size++] = str;
5177 else
5178 do_it = FALSE;
5179 }
5180 }
5181 if (do_it)
5182 {
5183 if (size == 0)
5184 {
5185 vim_free(array);
5186 y_current->y_array = NULL;
5187 }
5188 else if (size < limit)
5189 {
5190 y_current->y_array =
5191 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
5192 for (i = 0; i < size; i++)
5193 y_current->y_array[i] = array[i];
5194 vim_free(array);
5195 }
5196 y_current->y_size = size;
5197 }
5198 return eof;
5199}
5200
5201 void
5202write_viminfo_registers(fp)
5203 FILE *fp;
5204{
5205 int i, j;
5206 char_u *type;
5207 char_u c;
5208 int num_lines;
5209 int max_num_lines;
5210 int max_kbyte;
5211 long len;
5212
5213 fprintf(fp, _("\n# Registers:\n"));
5214
5215 /* Get '<' value, use old '"' value if '<' is not found. */
5216 max_num_lines = get_viminfo_parameter('<');
5217 if (max_num_lines < 0)
5218 max_num_lines = get_viminfo_parameter('"');
5219 if (max_num_lines == 0)
5220 return;
5221 max_kbyte = get_viminfo_parameter('s');
5222 if (max_kbyte == 0)
5223 return;
5224 for (i = 0; i < NUM_REGISTERS; i++)
5225 {
5226 if (y_regs[i].y_array == NULL)
5227 continue;
5228#ifdef FEAT_CLIPBOARD
5229 /* Skip '*'/'+' register, we don't want them back next time */
5230 if (i == STAR_REGISTER || i == PLUS_REGISTER)
5231 continue;
5232#endif
5233#ifdef FEAT_DND
5234 /* Neither do we want the '~' register */
5235 if (i == TILDE_REGISTER)
5236 continue;
5237#endif
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005238 /* Skip empty registers. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239 num_lines = y_regs[i].y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005240 if (num_lines == 0
5241 || (num_lines == 1 && y_regs[i].y_type == MCHAR
5242 && STRLEN(y_regs[i].y_array[0]) == 0))
5243 continue;
5244
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245 if (max_kbyte > 0)
5246 {
5247 /* Skip register if there is more text than the maximum size. */
5248 len = 0;
5249 for (j = 0; j < num_lines; j++)
5250 len += STRLEN(y_regs[i].y_array[j]) + 1L;
5251 if (len > (long)max_kbyte * 1024L)
5252 continue;
5253 }
5254
5255 switch (y_regs[i].y_type)
5256 {
5257 case MLINE:
5258 type = (char_u *)"LINE";
5259 break;
5260 case MCHAR:
5261 type = (char_u *)"CHAR";
5262 break;
5263#ifdef FEAT_VISUAL
5264 case MBLOCK:
5265 type = (char_u *)"BLOCK";
5266 break;
5267#endif
5268 default:
5269 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005270 y_regs[i].y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 emsg(IObuff);
5272 type = (char_u *)"LINE";
5273 break;
5274 }
5275 if (y_previous == &y_regs[i])
5276 fprintf(fp, "\"");
5277 c = get_register_name(i);
5278 fprintf(fp, "\"%c\t%s\t%d\n", c, type,
5279#ifdef FEAT_VISUAL
5280 (int)y_regs[i].y_width
5281#else
5282 0
5283#endif
5284 );
5285
5286 /* If max_num_lines < 0, then we save ALL the lines in the register */
5287 if (max_num_lines > 0 && num_lines > max_num_lines)
5288 num_lines = max_num_lines;
5289 for (j = 0; j < num_lines; j++)
5290 {
5291 putc('\t', fp);
5292 viminfo_writestring(fp, y_regs[i].y_array[j]);
5293 }
5294 }
5295}
5296#endif /* FEAT_VIMINFO */
5297
5298#if defined(FEAT_CLIPBOARD) || defined(PROTO)
5299/*
5300 * SELECTION / PRIMARY ('*')
5301 *
5302 * Text selection stuff that uses the GUI selection register '*'. When using a
5303 * GUI this may be text from another window, otherwise it is the last text we
5304 * had highlighted with VIsual mode. With mouse support, clicking the middle
5305 * button performs the paste, otherwise you will need to do <"*p>. "
5306 * If not under X, it is synonymous with the clipboard register '+'.
5307 *
5308 * X CLIPBOARD ('+')
5309 *
5310 * Text selection stuff that uses the GUI clipboard register '+'.
5311 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5312 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5313 * otherwise you will need to do <"+p>. "
5314 * If not under X, it is synonymous with the selection register '*'.
5315 */
5316
5317/*
5318 * Routine to export any final X selection we had to the environment
5319 * so that the text is still available after vim has exited. X selections
5320 * only exist while the owning application exists, so we write to the
5321 * permanent (while X runs) store CUT_BUFFER0.
5322 * Dump the CLIPBOARD selection if we own it (it's logically the more
5323 * 'permanent' of the two), otherwise the PRIMARY one.
5324 * For now, use a hard-coded sanity limit of 1Mb of data.
5325 */
5326#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5327 void
5328x11_export_final_selection()
5329{
5330 Display *dpy;
5331 char_u *str = NULL;
5332 long_u len = 0;
5333 int motion_type = -1;
5334
5335# ifdef FEAT_GUI
5336 if (gui.in_use)
5337 dpy = X_DISPLAY;
5338 else
5339# endif
5340# ifdef FEAT_XCLIPBOARD
5341 dpy = xterm_dpy;
5342# else
5343 return;
5344# endif
5345
5346 /* Get selection to export */
5347 if (clip_plus.owned)
5348 motion_type = clip_convert_selection(&str, &len, &clip_plus);
5349 else if (clip_star.owned)
5350 motion_type = clip_convert_selection(&str, &len, &clip_star);
5351
5352 /* Check it's OK */
5353 if (dpy != NULL && str != NULL && motion_type >= 0
5354 && len < 1024*1024 && len > 0)
5355 {
5356 XStoreBuffer(dpy, (char *)str, (int)len, 0);
5357 XFlush(dpy);
5358 }
5359
5360 vim_free(str);
5361}
5362#endif
5363
5364 void
5365clip_free_selection(cbd)
5366 VimClipboard *cbd;
5367{
5368 struct yankreg *y_ptr = y_current;
5369
5370 if (cbd == &clip_plus)
5371 y_current = &y_regs[PLUS_REGISTER];
5372 else
5373 y_current = &y_regs[STAR_REGISTER];
5374 free_yank_all();
5375 y_current->y_size = 0;
5376 y_current = y_ptr;
5377}
5378
5379/*
5380 * Get the selected text and put it in the gui selection register '*' or '+'.
5381 */
5382 void
5383clip_get_selection(cbd)
5384 VimClipboard *cbd;
5385{
5386 struct yankreg *old_y_previous, *old_y_current;
5387 pos_T old_cursor;
5388#ifdef FEAT_VISUAL
5389 pos_T old_visual;
5390 int old_visual_mode;
5391#endif
5392 colnr_T old_curswant;
5393 int old_set_curswant;
5394 pos_T old_op_start, old_op_end;
5395 oparg_T oa;
5396 cmdarg_T ca;
5397
5398 if (cbd->owned)
5399 {
5400 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
5401 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
5402 return;
5403
5404 /* Get the text between clip_star.start & clip_star.end */
5405 old_y_previous = y_previous;
5406 old_y_current = y_current;
5407 old_cursor = curwin->w_cursor;
5408 old_curswant = curwin->w_curswant;
5409 old_set_curswant = curwin->w_set_curswant;
5410 old_op_start = curbuf->b_op_start;
5411 old_op_end = curbuf->b_op_end;
5412#ifdef FEAT_VISUAL
5413 old_visual = VIsual;
5414 old_visual_mode = VIsual_mode;
5415#endif
5416 clear_oparg(&oa);
5417 oa.regname = (cbd == &clip_plus ? '+' : '*');
5418 oa.op_type = OP_YANK;
5419 vim_memset(&ca, 0, sizeof(ca));
5420 ca.oap = &oa;
5421 ca.cmdchar = 'y';
5422 ca.count1 = 1;
5423 ca.retval = CA_NO_ADJ_OP_END;
5424 do_pending_operator(&ca, 0, TRUE);
5425 y_previous = old_y_previous;
5426 y_current = old_y_current;
5427 curwin->w_cursor = old_cursor;
5428 curwin->w_curswant = old_curswant;
5429 curwin->w_set_curswant = old_set_curswant;
5430 curbuf->b_op_start = old_op_start;
5431 curbuf->b_op_end = old_op_end;
5432#ifdef FEAT_VISUAL
5433 VIsual = old_visual;
5434 VIsual_mode = old_visual_mode;
5435#endif
5436 }
5437 else
5438 {
5439 clip_free_selection(cbd);
5440
5441 /* Try to get selected text from another window */
5442 clip_gen_request_selection(cbd);
5443 }
5444}
5445
5446/* Convert from the GUI selection string into the '*'/'+' register */
5447 void
5448clip_yank_selection(type, str, len, cbd)
5449 int type;
5450 char_u *str;
5451 long len;
5452 VimClipboard *cbd;
5453{
5454 struct yankreg *y_ptr;
5455
5456 if (cbd == &clip_plus)
5457 y_ptr = &y_regs[PLUS_REGISTER];
5458 else
5459 y_ptr = &y_regs[STAR_REGISTER];
5460
5461 clip_free_selection(cbd);
5462
5463 str_to_reg(y_ptr, type, str, len, 0L);
5464}
5465
5466/*
5467 * Convert the '*'/'+' register into a GUI selection string returned in *str
5468 * with length *len.
5469 * Returns the motion type, or -1 for failure.
5470 */
5471 int
5472clip_convert_selection(str, len, cbd)
5473 char_u **str;
5474 long_u *len;
5475 VimClipboard *cbd;
5476{
5477 char_u *p;
5478 int lnum;
5479 int i, j;
5480 int_u eolsize;
5481 struct yankreg *y_ptr;
5482
5483 if (cbd == &clip_plus)
5484 y_ptr = &y_regs[PLUS_REGISTER];
5485 else
5486 y_ptr = &y_regs[STAR_REGISTER];
5487
5488#ifdef USE_CRNL
5489 eolsize = 2;
5490#else
5491 eolsize = 1;
5492#endif
5493
5494 *str = NULL;
5495 *len = 0;
5496 if (y_ptr->y_array == NULL)
5497 return -1;
5498
5499 for (i = 0; i < y_ptr->y_size; i++)
5500 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
5501
5502 /*
5503 * Don't want newline character at end of last line if we're in MCHAR mode.
5504 */
5505 if (y_ptr->y_type == MCHAR && *len >= eolsize)
5506 *len -= eolsize;
5507
5508 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
5509 if (p == NULL)
5510 return -1;
5511 lnum = 0;
5512 for (i = 0, j = 0; i < (int)*len; i++, j++)
5513 {
5514 if (y_ptr->y_array[lnum][j] == '\n')
5515 p[i] = NUL;
5516 else if (y_ptr->y_array[lnum][j] == NUL)
5517 {
5518#ifdef USE_CRNL
5519 p[i++] = '\r';
5520#endif
5521#ifdef USE_CR
5522 p[i] = '\r';
5523#else
5524 p[i] = '\n';
5525#endif
5526 lnum++;
5527 j = -1;
5528 }
5529 else
5530 p[i] = y_ptr->y_array[lnum][j];
5531 }
5532 return y_ptr->y_type;
5533}
5534
5535
5536# if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
5537/*
5538 * If we have written to a clipboard register, send the text to the clipboard.
5539 */
5540 static void
5541may_set_selection()
5542{
5543 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
5544 {
5545 clip_own_selection(&clip_star);
5546 clip_gen_set_selection(&clip_star);
5547 }
5548 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
5549 {
5550 clip_own_selection(&clip_plus);
5551 clip_gen_set_selection(&clip_plus);
5552 }
5553}
5554# endif
5555
5556#endif /* FEAT_CLIPBOARD || PROTO */
5557
5558
5559#if defined(FEAT_DND) || defined(PROTO)
5560/*
5561 * Replace the contents of the '~' register with str.
5562 */
5563 void
5564dnd_yank_drag_data(str, len)
5565 char_u *str;
5566 long len;
5567{
5568 struct yankreg *curr;
5569
5570 curr = y_current;
5571 y_current = &y_regs[TILDE_REGISTER];
5572 free_yank_all();
5573 str_to_reg(y_current, MCHAR, str, len, 0L);
5574 y_current = curr;
5575}
5576#endif
5577
5578
5579#if defined(FEAT_EVAL) || defined(PROTO)
5580/*
5581 * Return the type of a register.
5582 * Used for getregtype()
5583 * Returns MAUTO for error.
5584 */
5585 char_u
5586get_reg_type(regname, reglen)
5587 int regname;
5588 long *reglen;
5589{
5590 switch (regname)
5591 {
5592 case '%': /* file name */
5593 case '#': /* alternate file name */
5594 case '=': /* expression */
5595 case ':': /* last command line */
5596 case '/': /* last search-pattern */
5597 case '.': /* last inserted text */
5598#ifdef FEAT_SEARCHPATH
5599 case Ctrl_F: /* Filename under cursor */
5600 case Ctrl_P: /* Path under cursor, expand via "path" */
5601#endif
5602 case Ctrl_W: /* word under cursor */
5603 case Ctrl_A: /* WORD (mnemonic All) under cursor */
5604 case '_': /* black hole: always empty */
5605 return MCHAR;
5606 }
5607
5608#ifdef FEAT_CLIPBOARD
5609 regname = may_get_selection(regname);
5610#endif
5611
5612 /* Should we check for a valid name? */
5613 get_yank_register(regname, FALSE);
5614
5615 if (y_current->y_array != NULL)
5616 {
5617#ifdef FEAT_VISUAL
5618 if (reglen != NULL && y_current->y_type == MBLOCK)
5619 *reglen = y_current->y_width;
5620#endif
5621 return y_current->y_type;
5622 }
5623 return MAUTO;
5624}
5625
5626/*
5627 * Return the contents of a register as a single allocated string.
5628 * Used for "@r" in expressions and for getreg().
5629 * Returns NULL for error.
5630 */
5631 char_u *
Bram Moolenaarde934d72005-05-22 22:09:40 +00005632get_reg_contents(regname, allowexpr, expr_src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005633 int regname;
Bram Moolenaarde934d72005-05-22 22:09:40 +00005634 int allowexpr; /* allow "=" register */
5635 int expr_src; /* get expression for "=" register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636{
5637 long i;
5638 char_u *retval;
5639 int allocated;
5640 long len;
5641
5642 /* Don't allow using an expression register inside an expression */
5643 if (regname == '=')
5644 {
5645 if (allowexpr)
Bram Moolenaarde934d72005-05-22 22:09:40 +00005646 {
5647 if (expr_src)
5648 return get_expr_line_src();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649 return get_expr_line();
Bram Moolenaarde934d72005-05-22 22:09:40 +00005650 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651 return NULL;
5652 }
5653
5654 if (regname == '@') /* "@@" is used for unnamed register */
5655 regname = '"';
5656
5657 /* check for valid regname */
5658 if (regname != NUL && !valid_yank_reg(regname, FALSE))
5659 return NULL;
5660
5661#ifdef FEAT_CLIPBOARD
5662 regname = may_get_selection(regname);
5663#endif
5664
5665 if (get_spec_reg(regname, &retval, &allocated, FALSE))
5666 {
5667 if (retval == NULL)
5668 return NULL;
5669 if (!allocated)
5670 retval = vim_strsave(retval);
5671 return retval;
5672 }
5673
5674 get_yank_register(regname, FALSE);
5675 if (y_current->y_array == NULL)
5676 return NULL;
5677
5678 /*
5679 * Compute length of resulting string.
5680 */
5681 len = 0;
5682 for (i = 0; i < y_current->y_size; ++i)
5683 {
5684 len += (long)STRLEN(y_current->y_array[i]);
5685 /*
5686 * Insert a newline between lines and after last line if
5687 * y_type is MLINE.
5688 */
5689 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5690 ++len;
5691 }
5692
5693 retval = lalloc(len + 1, TRUE);
5694
5695 /*
5696 * Copy the lines of the yank register into the string.
5697 */
5698 if (retval != NULL)
5699 {
5700 len = 0;
5701 for (i = 0; i < y_current->y_size; ++i)
5702 {
5703 STRCPY(retval + len, y_current->y_array[i]);
5704 len += (long)STRLEN(retval + len);
5705
5706 /*
5707 * Insert a NL between lines and after the last line if y_type is
5708 * MLINE.
5709 */
5710 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5711 retval[len++] = '\n';
5712 }
5713 retval[len] = NUL;
5714 }
5715
5716 return retval;
5717}
5718
5719/*
5720 * Store string "str" in register "name".
5721 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
5722 * If "must_append" is TRUE, always append to the register. Otherwise append
5723 * if "name" is an uppercase letter.
5724 * Note: "maxlen" and "must_append" don't work for the "/" register.
5725 * Careful: 'str' is modified, you may have to use a copy!
5726 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
5727 */
5728 void
5729write_reg_contents(name, str, maxlen, must_append)
5730 int name;
5731 char_u *str;
5732 int maxlen;
5733 int must_append;
5734{
5735 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
5736}
5737
5738 void
5739write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
5740 int name;
5741 char_u *str;
5742 int maxlen;
5743 int must_append;
5744 int yank_type;
5745 long block_len;
5746{
5747 struct yankreg *old_y_previous, *old_y_current;
5748 long len;
5749
Bram Moolenaare7566042005-06-17 22:00:15 +00005750 if (maxlen >= 0)
5751 len = maxlen;
5752 else
5753 len = (long)STRLEN(str);
5754
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755 /* Special case: '/' search pattern */
5756 if (name == '/')
5757 {
5758 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
5759 return;
5760 }
5761
Bram Moolenaare7566042005-06-17 22:00:15 +00005762#ifdef FEAT_EVAL
5763 if (name == '=')
5764 {
5765 char_u *p, *s;
5766
5767 p = vim_strnsave(str, (int)len);
5768 if (p == NULL)
5769 return;
5770 if (must_append)
5771 {
5772 s = concat_str(get_expr_line_src(), p);
5773 vim_free(p);
5774 p = s;
5775
5776 }
5777 set_expr_line(p);
5778 return;
5779 }
5780#endif
5781
Bram Moolenaar071d4272004-06-13 20:20:40 +00005782 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
5783 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005784 emsg_invreg(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785 return;
5786 }
5787
5788 if (name == '_') /* black hole: nothing to do */
5789 return;
5790
5791 /* Don't want to change the current (unnamed) register */
5792 old_y_previous = y_previous;
5793 old_y_current = y_current;
5794
5795 get_yank_register(name, TRUE);
5796 if (!y_append && !must_append)
5797 free_yank_all();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798#ifndef FEAT_VISUAL
5799 /* Just in case - make sure we don't use MBLOCK */
5800 if (yank_type == MBLOCK)
5801 yank_type = MAUTO;
5802#endif
5803 if (yank_type == MAUTO)
5804 yank_type = ((len > 0 && (str[len - 1] == '\n' || str[len - 1] == '\r'))
5805 ? MLINE : MCHAR);
5806 str_to_reg(y_current, yank_type, str, len, block_len);
5807
5808# ifdef FEAT_CLIPBOARD
5809 /* Send text of clipboard register to the clipboard. */
5810 may_set_selection();
5811# endif
5812
5813 /* ':let @" = "val"' should change the meaning of the "" register */
5814 if (name != '"')
5815 y_previous = old_y_previous;
5816 y_current = old_y_current;
5817}
5818#endif /* FEAT_EVAL */
5819
5820#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
5821/*
5822 * Put a string into a register. When the register is not empty, the string
5823 * is appended.
5824 */
5825 static void
5826str_to_reg(y_ptr, type, str, len, blocklen)
5827 struct yankreg *y_ptr; /* pointer to yank register */
5828 int type; /* MCHAR, MLINE or MBLOCK */
5829 char_u *str; /* string to put in register */
5830 long len; /* length of string */
5831 long blocklen; /* width of Visual block */
5832{
5833 int lnum;
5834 long start;
5835 long i;
5836 int extra;
5837 int newlines; /* number of lines added */
5838 int extraline = 0; /* extra line at the end */
5839 int append = FALSE; /* append to last line in register */
5840 char_u *s;
5841 char_u **pp;
5842#ifdef FEAT_VISUAL
5843 long maxlen;
5844#endif
5845
5846 if (y_ptr->y_array == NULL) /* NULL means emtpy register */
5847 y_ptr->y_size = 0;
5848
5849 /*
5850 * Count the number of lines within the string
5851 */
5852 newlines = 0;
5853 for (i = 0; i < len; i++)
5854 if (str[i] == '\n')
5855 ++newlines;
5856 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
5857 {
5858 extraline = 1;
5859 ++newlines; /* count extra newline at the end */
5860 }
5861 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
5862 {
5863 append = TRUE;
5864 --newlines; /* uncount newline when appending first line */
5865 }
5866
5867 /*
5868 * Allocate an array to hold the pointers to the new register lines.
5869 * If the register was not empty, move the existing lines to the new array.
5870 */
5871 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
5872 * sizeof(char_u *), TRUE);
5873 if (pp == NULL) /* out of memory */
5874 return;
5875 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
5876 pp[lnum] = y_ptr->y_array[lnum];
5877 vim_free(y_ptr->y_array);
5878 y_ptr->y_array = pp;
5879#ifdef FEAT_VISUAL
5880 maxlen = 0;
5881#endif
5882
5883 /*
5884 * Find the end of each line and save it into the array.
5885 */
5886 for (start = 0; start < len + extraline; start += i + 1)
5887 {
5888 for (i = start; i < len; ++i) /* find the end of the line */
5889 if (str[i] == '\n')
5890 break;
5891 i -= start; /* i is now length of line */
5892#ifdef FEAT_VISUAL
5893 if (i > maxlen)
5894 maxlen = i;
5895#endif
5896 if (append)
5897 {
5898 --lnum;
5899 extra = (int)STRLEN(y_ptr->y_array[lnum]);
5900 }
5901 else
5902 extra = 0;
5903 s = alloc((unsigned)(i + extra + 1));
5904 if (s == NULL)
5905 break;
5906 if (extra)
5907 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
5908 if (append)
5909 vim_free(y_ptr->y_array[lnum]);
5910 if (i)
5911 mch_memmove(s + extra, str + start, (size_t)i);
5912 extra += i;
5913 s[extra] = NUL;
5914 y_ptr->y_array[lnum++] = s;
5915 while (--extra >= 0)
5916 {
5917 if (*s == NUL)
5918 *s = '\n'; /* replace NUL with newline */
5919 ++s;
5920 }
5921 append = FALSE; /* only first line is appended */
5922 }
5923 y_ptr->y_type = type;
5924 y_ptr->y_size = lnum;
5925# ifdef FEAT_VISUAL
5926 if (type == MBLOCK)
5927 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
5928 else
5929 y_ptr->y_width = 0;
5930# endif
5931}
5932#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
5933
5934 void
5935clear_oparg(oap)
5936 oparg_T *oap;
5937{
5938 vim_memset(oap, 0, sizeof(oparg_T));
5939}
5940
Bram Moolenaar7c626922005-02-07 22:01:03 +00005941static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942
5943/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00005944 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945 *
5946 * "Words" are counted by looking for boundaries between non-space and
5947 * space characters. (it seems to produce results that match 'wc'.)
5948 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00005949 * Return value is byte count; word count for the line is added to "*wc".
5950 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005951 *
5952 * The function will only examine the first "limit" characters in the
5953 * line, stopping if it encounters an end-of-line (NUL byte). In that
5954 * case, eol_size will be added to the character count to account for
5955 * the size of the EOL character.
5956 */
5957 static long
Bram Moolenaar7c626922005-02-07 22:01:03 +00005958line_count_info(line, wc, cc, limit, eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005959 char_u *line;
5960 long *wc;
Bram Moolenaar7c626922005-02-07 22:01:03 +00005961 long *cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962 long limit;
5963 int eol_size;
5964{
Bram Moolenaar7c626922005-02-07 22:01:03 +00005965 long i;
5966 long words = 0;
5967 long chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968 int is_word = 0;
5969
Bram Moolenaar7c626922005-02-07 22:01:03 +00005970 for (i = 0; line[i] && i < limit; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005971 {
5972 if (is_word)
5973 {
5974 if (vim_isspace(line[i]))
5975 {
5976 words++;
5977 is_word = 0;
5978 }
5979 }
5980 else if (!vim_isspace(line[i]))
5981 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00005982 ++chars;
5983#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005984 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00005985#else
5986 ++i;
5987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005988 }
5989
5990 if (is_word)
5991 words++;
5992 *wc += words;
5993
5994 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00005995 if (line[i] == NUL && i < limit)
5996 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00005998 chars += eol_size;
5999 }
6000 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001 return i;
6002}
6003
6004/*
6005 * Give some info about the position of the cursor (for "g CTRL-G").
6006 * In Visual mode, give some info about the selected region. (In this case,
6007 * the *_count_cursor variables store running totals for the selection.)
6008 */
6009 void
6010cursor_pos_info()
6011{
6012 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006013 char_u buf1[50];
6014 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 linenr_T lnum;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006016 long byte_count = 0;
6017 long byte_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006018 long char_count = 0;
6019 long char_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006020 long word_count = 0;
6021 long word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006022 int eol_size;
6023 long last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024#ifdef FEAT_VISUAL
6025 long line_count_selected = 0;
6026 pos_T min_pos, max_pos;
6027 oparg_T oparg;
6028 struct block_def bd;
6029#endif
6030
6031 /*
6032 * Compute the length of the file in characters.
6033 */
6034 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6035 {
6036 MSG(_(no_lines_msg));
6037 }
6038 else
6039 {
6040 if (get_fileformat(curbuf) == EOL_DOS)
6041 eol_size = 2;
6042 else
6043 eol_size = 1;
6044
6045#ifdef FEAT_VISUAL
6046 if (VIsual_active)
6047 {
6048 if (lt(VIsual, curwin->w_cursor))
6049 {
6050 min_pos = VIsual;
6051 max_pos = curwin->w_cursor;
6052 }
6053 else
6054 {
6055 min_pos = curwin->w_cursor;
6056 max_pos = VIsual;
6057 }
6058 if (*p_sel == 'e' && max_pos.col > 0)
6059 --max_pos.col;
6060
6061 if (VIsual_mode == Ctrl_V)
6062 {
6063 oparg.is_VIsual = 1;
6064 oparg.block_mode = TRUE;
6065 oparg.op_type = OP_NOP;
6066 getvcols(curwin, &min_pos, &max_pos,
6067 &oparg.start_vcol, &oparg.end_vcol);
6068 /* Swap the start, end vcol if needed */
6069 if (oparg.end_vcol < oparg.start_vcol)
6070 {
6071 oparg.end_vcol += oparg.start_vcol;
6072 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
6073 oparg.end_vcol -= oparg.start_vcol;
6074 }
6075 }
6076 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
6077 }
6078#endif
6079
6080 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6081 {
6082 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006083 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084 {
6085 ui_breakcheck();
6086 if (got_int)
6087 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006088 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089 }
6090
6091#ifdef FEAT_VISUAL
6092 /* Do extra processing for VIsual mode. */
6093 if (VIsual_active
6094 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
6095 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00006096 char_u *s = NULL;
6097 long len = 0L;
6098
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099 switch (VIsual_mode)
6100 {
6101 case Ctrl_V:
6102# ifdef FEAT_VIRTUALEDIT
6103 virtual_op = virtual_active();
6104# endif
6105 block_prep(&oparg, &bd, lnum, 0);
6106# ifdef FEAT_VIRTUALEDIT
6107 virtual_op = MAYBE;
6108# endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00006109 s = bd.textstart;
6110 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006111 break;
6112 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00006113 s = ml_get(lnum);
6114 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115 break;
6116 case 'v':
6117 {
6118 colnr_T start_col = (lnum == min_pos.lnum)
6119 ? min_pos.col : 0;
6120 colnr_T end_col = (lnum == max_pos.lnum)
6121 ? max_pos.col - start_col + 1 : MAXCOL;
6122
Bram Moolenaardef9e822004-12-31 20:58:58 +00006123 s = ml_get(lnum) + start_col;
6124 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125 }
6126 break;
6127 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00006128 if (s != NULL)
6129 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00006130 byte_count_cursor += line_count_info(s, &word_count_cursor,
6131 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00006132 if (lnum == curbuf->b_ml.ml_line_count
6133 && !curbuf->b_p_eol
6134 && curbuf->b_p_bin
Bram Moolenaarec2dad62005-01-02 11:36:03 +00006135 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006136 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00006137 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006138 }
6139 else
6140#endif
6141 {
6142 /* In non-visual mode, check for the line the cursor is on */
6143 if (lnum == curwin->w_cursor.lnum)
6144 {
6145 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006146 char_count_cursor += char_count;
6147 byte_count_cursor = byte_count +
6148 line_count_info(ml_get(lnum),
6149 &word_count_cursor, &char_count_cursor,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150 (long)(curwin->w_cursor.col + 1), eol_size);
6151 }
6152 }
6153 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006154 byte_count += line_count_info(ml_get(lnum), &word_count,
6155 &char_count, (long)MAXCOL, eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006156 }
6157
6158 /* Correction for when last line doesn't have an EOL. */
6159 if (!curbuf->b_p_eol && curbuf->b_p_bin)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006160 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161
6162#ifdef FEAT_VISUAL
6163 if (VIsual_active)
6164 {
6165 if (VIsual_mode == Ctrl_V)
6166 {
6167 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
6168 &max_pos.col);
6169 sprintf((char *)buf1, _("%ld Cols; "),
6170 (long)(oparg.end_vcol - oparg.start_vcol + 1));
6171 }
6172 else
6173 buf1[0] = NUL;
6174
Bram Moolenaar7c626922005-02-07 22:01:03 +00006175 if (char_count_cursor == byte_count_cursor
Bram Moolenaar555b2802005-05-19 21:08:39 +00006176 && char_count == byte_count)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006177 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178 buf1, line_count_selected,
6179 (long)curbuf->b_ml.ml_line_count,
6180 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006181 byte_count_cursor, byte_count);
6182 else
6183 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"),
6184 buf1, line_count_selected,
6185 (long)curbuf->b_ml.ml_line_count,
6186 word_count_cursor, word_count,
6187 char_count_cursor, char_count,
6188 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 }
6190 else
6191#endif
6192 {
6193 p = ml_get_curline();
6194 validate_virtcol();
6195 col_print(buf1, (int)curwin->w_cursor.col + 1,
6196 (int)curwin->w_virtcol + 1);
6197 col_print(buf2, (int)STRLEN(p), linetabsize(p));
6198
Bram Moolenaar7c626922005-02-07 22:01:03 +00006199 if (char_count_cursor == byte_count_cursor
6200 && char_count == byte_count)
6201 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 +00006202 (char *)buf1, (char *)buf2,
6203 (long)curwin->w_cursor.lnum,
6204 (long)curbuf->b_ml.ml_line_count,
6205 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006206 byte_count_cursor, byte_count);
6207 else
6208 sprintf((char *)IObuff, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"),
6209 (char *)buf1, (char *)buf2,
6210 (long)curwin->w_cursor.lnum,
6211 (long)curbuf->b_ml.ml_line_count,
6212 word_count_cursor, word_count,
6213 char_count_cursor, char_count,
6214 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 }
6216
6217#ifdef FEAT_MBYTE
Bram Moolenaar7c626922005-02-07 22:01:03 +00006218 byte_count = bomb_size();
6219 if (byte_count > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
Bram Moolenaar7c626922005-02-07 22:01:03 +00006221 byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006222#endif
6223 /* Don't shorten this message, the user asked for it. */
6224 p = p_shm;
6225 p_shm = (char_u *)"";
6226 msg(IObuff);
6227 p_shm = p;
6228 }
6229}