blob: 8c239da135fd5d0b2f656eb772e9bb471d0c1d93 [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;
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002143 int todo;
Bram Moolenaar60a795a2005-09-16 21:55:43 +00002144#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 int did_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146
2147 if (u_save((linenr_T)(oap->start.lnum - 1),
2148 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2149 return;
2150
2151 pos = oap->start;
2152#ifdef FEAT_VISUAL
2153 if (oap->block_mode) /* Visual block mode */
2154 {
2155 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2156 {
2157 block_prep(oap, &bd, pos.lnum, FALSE);
2158 pos.col = bd.textcol;
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002159 for (todo = bd.textlen; todo > 0; --todo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 {
Bram Moolenaar60a795a2005-09-16 21:55:43 +00002161# ifdef FEAT_MBYTE
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002162 if (has_mbyte)
2163 todo -= (*mb_ptr2len)(ml_get_pos(&pos)) - 1;
Bram Moolenaar60a795a2005-09-16 21:55:43 +00002164# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 did_change |= swapchar(oap->op_type, &pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 if (inc(&pos) == -1) /* at end of file */
2167 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 }
2169# ifdef FEAT_NETBEANS_INTG
2170 if (usingNetbeans && did_change)
2171 {
2172 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2173
Bram Moolenaar009b2592004-10-24 19:18:58 +00002174 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2175 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaar009b2592004-10-24 19:18:58 +00002177 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 }
2179# endif
2180 }
2181 if (did_change)
2182 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2183 }
2184 else /* not block mode */
2185#endif
2186 {
2187 if (oap->motion_type == MLINE)
2188 {
2189 oap->start.col = 0;
2190 pos.col = 0;
2191 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2192 if (oap->end.col)
2193 --oap->end.col;
2194 }
2195 else if (!oap->inclusive)
2196 dec(&(oap->end));
2197
Bram Moolenaar60a795a2005-09-16 21:55:43 +00002198 while (ltoreq(pos, oap->end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 {
2200 did_change |= swapchar(oap->op_type, &pos);
2201 if (inc(&pos) == -1) /* at end of file */
2202 break;
2203 }
Bram Moolenaar60a795a2005-09-16 21:55:43 +00002204
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 if (did_change)
2206 {
2207 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2208 0L);
2209#ifdef FEAT_NETBEANS_INTG
2210 if (usingNetbeans && did_change)
2211 {
2212 char_u *ptr;
2213 int count;
2214
2215 pos = oap->start;
2216 while (pos.lnum < oap->end.lnum)
2217 {
2218 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2219 count = STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002220 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00002222 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 pos.col = 0;
2224 pos.lnum++;
2225 }
2226 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2227 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002228 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaar009b2592004-10-24 19:18:58 +00002230 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 }
2232#endif
2233 }
2234 }
2235
2236#ifdef FEAT_VISUAL
2237 if (!did_change && oap->is_VIsual)
2238 /* No change: need to remove the Visual selection */
2239 redraw_curbuf_later(INVERTED);
2240#endif
2241
2242 /*
2243 * Set '[ and '] marks.
2244 */
2245 curbuf->b_op_start = oap->start;
2246 curbuf->b_op_end = oap->end;
2247
2248 if (oap->line_count > p_report)
2249 {
2250 if (oap->line_count == 1)
2251 MSG(_("1 line changed"));
2252 else
2253 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2254 }
2255}
2256
2257/*
2258 * If op_type == OP_UPPER: make uppercase,
2259 * if op_type == OP_LOWER: make lowercase,
2260 * if op_type == OP_ROT13: do rot13 encoding,
2261 * else swap case of character at 'pos'
2262 * returns TRUE when something actually changed.
2263 */
2264 int
2265swapchar(op_type, pos)
2266 int op_type;
2267 pos_T *pos;
2268{
2269 int c;
2270 int nc;
2271
2272 c = gchar_pos(pos);
2273
2274 /* Only do rot13 encoding for ASCII characters. */
2275 if (c >= 0x80 && op_type == OP_ROT13)
2276 return FALSE;
2277
2278#ifdef FEAT_MBYTE
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002279 if (op_type == OP_UPPER && enc_latin1like && c == 0xdf)
2280 {
2281 pos_T sp = curwin->w_cursor;
2282
2283 /* Special handling of German sharp s: change to "SS". */
2284 curwin->w_cursor = *pos;
2285 del_char(FALSE);
2286 ins_char('S');
2287 ins_char('S');
2288 curwin->w_cursor = sp;
2289 inc(pos);
2290 }
2291
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2293 return FALSE;
2294#endif
2295 nc = c;
2296 if (MB_ISLOWER(c))
2297 {
2298 if (op_type == OP_ROT13)
2299 nc = ROT13(c, 'a');
2300 else if (op_type != OP_LOWER)
2301 nc = MB_TOUPPER(c);
2302 }
2303 else if (MB_ISUPPER(c))
2304 {
2305 if (op_type == OP_ROT13)
2306 nc = ROT13(c, 'A');
2307 else if (op_type != OP_UPPER)
2308 nc = MB_TOLOWER(c);
2309 }
2310 if (nc != c)
2311 {
2312#ifdef FEAT_MBYTE
2313 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2314 {
2315 pos_T sp = curwin->w_cursor;
2316
2317 curwin->w_cursor = *pos;
2318 del_char(FALSE);
2319 ins_char(nc);
2320 curwin->w_cursor = sp;
2321 }
2322 else
2323#endif
2324 pchar(*pos, nc);
2325 return TRUE;
2326 }
2327 return FALSE;
2328}
2329
2330#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2331/*
2332 * op_insert - Insert and append operators for Visual mode.
2333 */
2334 void
2335op_insert(oap, count1)
2336 oparg_T *oap;
2337 long count1;
2338{
2339 long ins_len, pre_textlen = 0;
2340 char_u *firstline, *ins_text;
2341 struct block_def bd;
2342 int i;
2343
2344 /* edit() changes this - record it for OP_APPEND */
2345 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2346
2347 /* vis block is still marked. Get rid of it now. */
2348 curwin->w_cursor.lnum = oap->start.lnum;
2349 update_screen(INVERTED);
2350
2351 if (oap->block_mode)
2352 {
2353#ifdef FEAT_VIRTUALEDIT
2354 /* When 'virtualedit' is used, need to insert the extra spaces before
2355 * doing block_prep(). When only "block" is used, virtual edit is
2356 * already disabled, but still need it when calling
2357 * coladvance_force(). */
2358 if (curwin->w_cursor.coladd > 0)
2359 {
2360 int old_ve_flags = ve_flags;
2361
2362 ve_flags = VE_ALL;
2363 if (u_save_cursor() == FAIL)
2364 return;
2365 coladvance_force(oap->op_type == OP_APPEND
2366 ? oap->end_vcol + 1 : getviscol());
2367 if (oap->op_type == OP_APPEND)
2368 --curwin->w_cursor.col;
2369 ve_flags = old_ve_flags;
2370 }
2371#endif
2372 /* Get the info about the block before entering the text */
2373 block_prep(oap, &bd, oap->start.lnum, TRUE);
2374 firstline = ml_get(oap->start.lnum) + bd.textcol;
2375 if (oap->op_type == OP_APPEND)
2376 firstline += bd.textlen;
2377 pre_textlen = (long)STRLEN(firstline);
2378 }
2379
2380 if (oap->op_type == OP_APPEND)
2381 {
2382 if (oap->block_mode
2383#ifdef FEAT_VIRTUALEDIT
2384 && curwin->w_cursor.coladd == 0
2385#endif
2386 )
2387 {
2388 /* Move the cursor to the character right of the block. */
2389 curwin->w_set_curswant = TRUE;
2390 while (*ml_get_cursor() != NUL
2391 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2392 ++curwin->w_cursor.col;
2393 if (bd.is_short && !bd.is_MAX)
2394 {
2395 /* First line was too short, make it longer and adjust the
2396 * values in "bd". */
2397 if (u_save_cursor() == FAIL)
2398 return;
2399 for (i = 0; i < bd.endspaces; ++i)
2400 ins_char(' ');
2401 bd.textlen += bd.endspaces;
2402 }
2403 }
2404 else
2405 {
2406 curwin->w_cursor = oap->end;
2407
2408 /* Works just like an 'i'nsert on the next character. */
2409 if (!lineempty(curwin->w_cursor.lnum)
2410 && oap->start_vcol != oap->end_vcol)
2411 inc_cursor();
2412 }
2413 }
2414
2415 edit(NUL, FALSE, (linenr_T)count1);
2416
2417 /* if user has moved off this line, we don't know what to do, so do
2418 * nothing */
2419 if (curwin->w_cursor.lnum != oap->start.lnum)
2420 return;
2421
2422 if (oap->block_mode)
2423 {
2424 struct block_def bd2;
2425
2426 /*
2427 * Spaces and tabs in the indent may have changed to other spaces and
2428 * tabs. Get the starting column again and correct the lenght.
2429 * Don't do this when "$" used, end-of-line will have changed.
2430 */
2431 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2432 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2433 {
2434 if (oap->op_type == OP_APPEND)
2435 {
2436 pre_textlen += bd2.textlen - bd.textlen;
2437 if (bd2.endspaces)
2438 --bd2.textlen;
2439 }
2440 bd.textcol = bd2.textcol;
2441 bd.textlen = bd2.textlen;
2442 }
2443
2444 /*
2445 * Subsequent calls to ml_get() flush the firstline data - take a
2446 * copy of the required string.
2447 */
2448 firstline = ml_get(oap->start.lnum) + bd.textcol;
2449 if (oap->op_type == OP_APPEND)
2450 firstline += bd.textlen;
2451 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
2452 {
2453 ins_text = vim_strnsave(firstline, (int)ins_len);
2454 if (ins_text != NULL)
2455 {
2456 /* block handled here */
2457 if (u_save(oap->start.lnum,
2458 (linenr_T)(oap->end.lnum + 1)) == OK)
2459 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2460 &bd);
2461
2462 curwin->w_cursor.col = oap->start.col;
2463 check_cursor();
2464 vim_free(ins_text);
2465 }
2466 }
2467 }
2468}
2469#endif
2470
2471/*
2472 * op_change - handle a change operation
2473 *
2474 * return TRUE if edit() returns because of a CTRL-O command
2475 */
2476 int
2477op_change(oap)
2478 oparg_T *oap;
2479{
2480 colnr_T l;
2481 int retval;
2482#ifdef FEAT_VISUALEXTRA
2483 long offset;
2484 linenr_T linenr;
2485 long ins_len, pre_textlen = 0;
2486 char_u *firstline;
2487 char_u *ins_text, *newp, *oldp;
2488 struct block_def bd;
2489#endif
2490
2491 l = oap->start.col;
2492 if (oap->motion_type == MLINE)
2493 {
2494 l = 0;
2495#ifdef FEAT_SMARTINDENT
2496 if (!p_paste && curbuf->b_p_si
2497# ifdef FEAT_CINDENT
2498 && !curbuf->b_p_cin
2499# endif
2500 )
2501 can_si = TRUE; /* It's like opening a new line, do si */
2502#endif
2503 }
2504
2505 /* First delete the text in the region. In an empty buffer only need to
2506 * save for undo */
2507 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2508 {
2509 if (u_save_cursor() == FAIL)
2510 return FALSE;
2511 }
2512 else if (op_delete(oap) == FAIL)
2513 return FALSE;
2514
2515 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
2516 && !virtual_op)
2517 inc_cursor();
2518
2519#ifdef FEAT_VISUALEXTRA
2520 /* check for still on same line (<CR> in inserted text meaningless) */
2521 /* skip blank lines too */
2522 if (oap->block_mode)
2523 {
2524# ifdef FEAT_VIRTUALEDIT
2525 /* Add spaces before getting the current line length. */
2526 if (virtual_op && (curwin->w_cursor.coladd > 0
2527 || gchar_cursor() == NUL))
2528 coladvance_force(getviscol());
2529# endif
2530 pre_textlen = (long)STRLEN(ml_get(oap->start.lnum));
2531 bd.textcol = curwin->w_cursor.col;
2532 }
2533#endif
2534
2535#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2536 if (oap->motion_type == MLINE)
2537 fix_indent();
2538#endif
2539
2540 retval = edit(NUL, FALSE, (linenr_T)1);
2541
2542#ifdef FEAT_VISUALEXTRA
2543 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002544 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 * block.
2546 */
2547 if (oap->block_mode && oap->start.lnum != oap->end.lnum)
2548 {
2549 firstline = ml_get(oap->start.lnum);
2550 /*
2551 * Subsequent calls to ml_get() flush the firstline data - take a
2552 * copy of the required bit.
2553 */
2554 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
2555 {
2556 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2557 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002558 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2560 linenr++)
2561 {
2562 block_prep(oap, &bd, linenr, TRUE);
2563 if (!bd.is_short || virtual_op)
2564 {
2565# ifdef FEAT_VIRTUALEDIT
2566 pos_T vpos;
2567
2568 /* If the block starts in virtual space, count the
2569 * initial coladd offset as part of "startspaces" */
2570 if (bd.is_short)
2571 {
2572 linenr_T lnum = curwin->w_cursor.lnum;
2573
2574 curwin->w_cursor.lnum = linenr;
2575 (void)getvpos(&vpos, oap->start_vcol);
2576 curwin->w_cursor.lnum = lnum;
2577 }
2578 else
2579 vpos.coladd = 0;
2580# endif
2581 oldp = ml_get(linenr);
2582 newp = alloc_check((unsigned)(STRLEN(oldp)
2583# ifdef FEAT_VIRTUALEDIT
2584 + vpos.coladd
2585# endif
2586 + ins_len + 1));
2587 if (newp == NULL)
2588 continue;
2589 /* copy up to block start */
2590 mch_memmove(newp, oldp, (size_t)bd.textcol);
2591 offset = bd.textcol;
2592# ifdef FEAT_VIRTUALEDIT
2593 copy_spaces(newp + offset, (size_t)vpos.coladd);
2594 offset += vpos.coladd;
2595# endif
2596 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2597 offset += ins_len;
2598 oldp += bd.textcol;
2599 mch_memmove(newp + offset, oldp, STRLEN(oldp) + 1);
2600 ml_replace(linenr, newp, FALSE);
2601 }
2602 }
2603 check_cursor();
2604
2605 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2606 }
2607 vim_free(ins_text);
2608 }
2609 }
2610#endif
2611
2612 return retval;
2613}
2614
2615/*
2616 * set all the yank registers to empty (called from main())
2617 */
2618 void
2619init_yank()
2620{
2621 int i;
2622
2623 for (i = 0; i < NUM_REGISTERS; ++i)
2624 y_regs[i].y_array = NULL;
2625}
2626
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002627#if defined(EXITFREE) || defined(PROTO)
2628 void
2629clear_registers()
2630{
2631 int i;
2632
2633 for (i = 0; i < NUM_REGISTERS; ++i)
2634 {
2635 y_current = &y_regs[i];
2636 if (y_current->y_array != NULL)
2637 free_yank_all();
2638 }
2639}
2640#endif
2641
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642/*
2643 * Free "n" lines from the current yank register.
2644 * Called for normal freeing and in case of error.
2645 */
2646 static void
2647free_yank(n)
2648 long n;
2649{
2650 if (y_current->y_array != NULL)
2651 {
2652 long i;
2653
2654 for (i = n; --i >= 0; )
2655 {
2656#ifdef AMIGA /* only for very slow machines */
2657 if ((i & 1023) == 1023) /* this may take a while */
2658 {
2659 /*
2660 * This message should never cause a hit-return message.
2661 * Overwrite this message with any next message.
2662 */
2663 ++no_wait_return;
2664 smsg((char_u *)_("freeing %ld lines"), i + 1);
2665 --no_wait_return;
2666 msg_didout = FALSE;
2667 msg_col = 0;
2668 }
2669#endif
2670 vim_free(y_current->y_array[i]);
2671 }
2672 vim_free(y_current->y_array);
2673 y_current->y_array = NULL;
2674#ifdef AMIGA
2675 if (n >= 1000)
2676 MSG("");
2677#endif
2678 }
2679}
2680
2681 static void
2682free_yank_all()
2683{
2684 free_yank(y_current->y_size);
2685}
2686
2687/*
2688 * Yank the text between "oap->start" and "oap->end" into a yank register.
2689 * If we are to append (uppercase register), we first yank into a new yank
2690 * register and then concatenate the old and the new one (so we keep the old
2691 * one in case of out-of-memory).
2692 *
2693 * return FAIL for failure, OK otherwise
2694 */
2695 int
2696op_yank(oap, deleting, mess)
2697 oparg_T *oap;
2698 int deleting;
2699 int mess;
2700{
2701 long y_idx; /* index in y_array[] */
2702 struct yankreg *curr; /* copy of y_current */
2703 struct yankreg newreg; /* new yank register when appending */
2704 char_u **new_ptr;
2705 linenr_T lnum; /* current line number */
2706 long j;
2707 int yanktype = oap->motion_type;
2708 long yanklines = oap->line_count;
2709 linenr_T yankendlnum = oap->end.lnum;
2710 char_u *p;
2711 char_u *pnew;
2712 struct block_def bd;
2713
2714 /* check for read-only register */
2715 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2716 {
2717 beep_flush();
2718 return FAIL;
2719 }
2720 if (oap->regname == '_') /* black hole: nothing to do */
2721 return OK;
2722
2723#ifdef FEAT_CLIPBOARD
2724 if (!clip_star.available && oap->regname == '*')
2725 oap->regname = 0;
2726 else if (!clip_plus.available && oap->regname == '+')
2727 oap->regname = 0;
2728#endif
2729
2730 if (!deleting) /* op_delete() already set y_current */
2731 get_yank_register(oap->regname, TRUE);
2732
2733 curr = y_current;
2734 /* append to existing contents */
2735 if (y_append && y_current->y_array != NULL)
2736 y_current = &newreg;
2737 else
2738 free_yank_all(); /* free previously yanked lines */
2739
2740/*
2741 * If the cursor was in column 1 before and after the movement, and the
2742 * operator is not inclusive, the yank is always linewise.
2743 */
2744 if ( oap->motion_type == MCHAR
2745 && oap->start.col == 0
2746 && !oap->inclusive
2747#ifdef FEAT_VISUAL
2748 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00002749 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750#endif
2751 && oap->end.col == 0
2752 && yanklines > 1)
2753 {
2754 yanktype = MLINE;
2755 --yankendlnum;
2756 --yanklines;
2757 }
2758
2759 y_current->y_size = yanklines;
2760 y_current->y_type = yanktype; /* set the yank register type */
2761#ifdef FEAT_VISUAL
2762 y_current->y_width = 0;
2763#endif
2764 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
2765 yanklines), TRUE);
2766
2767 if (y_current->y_array == NULL)
2768 {
2769 y_current = curr;
2770 return FAIL;
2771 }
2772
2773 y_idx = 0;
2774 lnum = oap->start.lnum;
2775
2776#ifdef FEAT_VISUAL
2777 if (oap->block_mode)
2778 {
2779 /* Visual block mode */
2780 y_current->y_type = MBLOCK; /* set the yank register type */
2781 y_current->y_width = oap->end_vcol - oap->start_vcol;
2782
2783 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
2784 y_current->y_width--;
2785 }
2786#endif
2787
2788 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
2789 {
2790 switch (y_current->y_type)
2791 {
2792#ifdef FEAT_VISUAL
2793 case MBLOCK:
2794 block_prep(oap, &bd, lnum, FALSE);
2795 if (yank_copy_line(&bd, y_idx) == FAIL)
2796 goto fail;
2797 break;
2798#endif
2799
2800 case MLINE:
2801 if ((y_current->y_array[y_idx] =
2802 vim_strsave(ml_get(lnum))) == NULL)
2803 goto fail;
2804 break;
2805
2806 case MCHAR:
2807 {
2808 colnr_T startcol = 0, endcol = MAXCOL;
2809#ifdef FEAT_VIRTUALEDIT
2810 int is_oneChar = FALSE;
2811 colnr_T cs, ce;
2812#endif
2813 p = ml_get(lnum);
2814 bd.startspaces = 0;
2815 bd.endspaces = 0;
2816
2817 if (lnum == oap->start.lnum)
2818 {
2819 startcol = oap->start.col;
2820#ifdef FEAT_VIRTUALEDIT
2821 if (virtual_op)
2822 {
2823 getvcol(curwin, &oap->start, &cs, NULL, &ce);
2824 if (ce != cs && oap->start.coladd > 0)
2825 {
2826 /* Part of a tab selected -- but don't
2827 * double-count it. */
2828 bd.startspaces = (ce - cs + 1)
2829 - oap->start.coladd;
2830 startcol++;
2831 }
2832 }
2833#endif
2834 }
2835
2836 if (lnum == oap->end.lnum)
2837 {
2838 endcol = oap->end.col;
2839#ifdef FEAT_VIRTUALEDIT
2840 if (virtual_op)
2841 {
2842 getvcol(curwin, &oap->end, &cs, NULL, &ce);
2843 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
2844# ifdef FEAT_MBYTE
2845 /* Don't add space for double-wide
2846 * char; endcol will be on last byte
2847 * of multi-byte char. */
2848 && (*mb_head_off)(p, p + endcol) == 0
2849# endif
2850 ))
2851 {
2852 if (oap->start.lnum == oap->end.lnum
2853 && oap->start.col == oap->end.col)
2854 {
2855 /* Special case: inside a single char */
2856 is_oneChar = TRUE;
2857 bd.startspaces = oap->end.coladd
2858 - oap->start.coladd + oap->inclusive;
2859 endcol = startcol;
2860 }
2861 else
2862 {
2863 bd.endspaces = oap->end.coladd
2864 + oap->inclusive;
2865 endcol -= oap->inclusive;
2866 }
2867 }
2868 }
2869#endif
2870 }
2871 if (startcol > endcol
2872#ifdef FEAT_VIRTUALEDIT
2873 || is_oneChar
2874#endif
2875 )
2876 bd.textlen = 0;
2877 else
2878 {
2879 if (endcol == MAXCOL)
2880 endcol = STRLEN(p);
2881 bd.textlen = endcol - startcol + oap->inclusive;
2882 }
2883 bd.textstart = p + startcol;
2884 if (yank_copy_line(&bd, y_idx) == FAIL)
2885 goto fail;
2886 break;
2887 }
2888 /* NOTREACHED */
2889 }
2890 }
2891
2892 if (curr != y_current) /* append the new block to the old block */
2893 {
2894 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
2895 (curr->y_size + y_current->y_size)), TRUE);
2896 if (new_ptr == NULL)
2897 goto fail;
2898 for (j = 0; j < curr->y_size; ++j)
2899 new_ptr[j] = curr->y_array[j];
2900 vim_free(curr->y_array);
2901 curr->y_array = new_ptr;
2902
2903 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
2904 curr->y_type = MLINE;
2905
Bram Moolenaar4399ef42005-02-12 14:29:27 +00002906 /* Concatenate the last line of the old block with the first line of
2907 * the new block, unless being Vi compatible. */
2908 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 {
2910 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
2911 + STRLEN(y_current->y_array[0]) + 1), TRUE);
2912 if (pnew == NULL)
2913 {
2914 y_idx = y_current->y_size - 1;
2915 goto fail;
2916 }
2917 STRCPY(pnew, curr->y_array[--j]);
2918 STRCAT(pnew, y_current->y_array[0]);
2919 vim_free(curr->y_array[j]);
2920 vim_free(y_current->y_array[0]);
2921 curr->y_array[j++] = pnew;
2922 y_idx = 1;
2923 }
2924 else
2925 y_idx = 0;
2926 while (y_idx < y_current->y_size)
2927 curr->y_array[j++] = y_current->y_array[y_idx++];
2928 curr->y_size = j;
2929 vim_free(y_current->y_array);
2930 y_current = curr;
2931 }
2932 if (mess) /* Display message about yank? */
2933 {
2934 if (yanktype == MCHAR
2935#ifdef FEAT_VISUAL
2936 && !oap->block_mode
2937#endif
2938 && yanklines == 1)
2939 yanklines = 0;
2940 /* Some versions of Vi use ">=" here, some don't... */
2941 if (yanklines > p_report)
2942 {
2943 /* redisplay now, so message is not deleted */
2944 update_topline_redraw();
2945 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00002946 {
2947#ifdef FEAT_VISUAL
2948 if (oap->block_mode)
2949 MSG(_("block of 1 line yanked"));
2950 else
2951#endif
2952 MSG(_("1 line yanked"));
2953 }
2954#ifdef FEAT_VISUAL
2955 else if (oap->block_mode)
2956 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
2957#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 else
2959 smsg((char_u *)_("%ld lines yanked"), yanklines);
2960 }
2961 }
2962
2963 /*
2964 * Set "'[" and "']" marks.
2965 */
2966 curbuf->b_op_start = oap->start;
2967 curbuf->b_op_end = oap->end;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002968 if (yanktype == MLINE
2969#ifdef FEAT_VISUAL
2970 && !oap->block_mode
2971#endif
2972 )
2973 {
2974 curbuf->b_op_start.col = 0;
2975 curbuf->b_op_end.col = MAXCOL;
2976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977
2978#ifdef FEAT_CLIPBOARD
2979 /*
2980 * If we were yanking to the '*' register, send result to clipboard.
2981 * If no register was specified, and "unnamed" in 'clipboard', make a copy
2982 * to the '*' register.
2983 */
2984 if (clip_star.available
2985 && (curr == &(y_regs[STAR_REGISTER])
2986 || (!deleting && oap->regname == 0 && clip_unnamed)))
2987 {
2988 if (curr != &(y_regs[STAR_REGISTER]))
2989 /* Copy the text from register 0 to the clipboard register. */
2990 copy_yank_reg(&(y_regs[STAR_REGISTER]));
2991
2992 clip_own_selection(&clip_star);
2993 clip_gen_set_selection(&clip_star);
2994 }
2995
2996# ifdef FEAT_X11
2997 /*
2998 * If we were yanking to the '+' register, send result to selection.
2999 * Also copy to the '*' register, in case auto-select is off.
3000 */
3001 else if (clip_plus.available && curr == &(y_regs[PLUS_REGISTER]))
3002 {
3003 /* No need to copy to * register upon 'unnamed' now - see below */
3004 clip_own_selection(&clip_plus);
3005 clip_gen_set_selection(&clip_plus);
3006 if (!clip_isautosel())
3007 {
3008 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3009 clip_own_selection(&clip_star);
3010 clip_gen_set_selection(&clip_star);
3011 }
3012 }
3013# endif
3014#endif
3015
3016 return OK;
3017
3018fail: /* free the allocated lines */
3019 free_yank(y_idx + 1);
3020 y_current = curr;
3021 return FAIL;
3022}
3023
3024 static int
3025yank_copy_line(bd, y_idx)
3026 struct block_def *bd;
3027 long y_idx;
3028{
3029 char_u *pnew;
3030
3031 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3032 == NULL)
3033 return FAIL;
3034 y_current->y_array[y_idx] = pnew;
3035 copy_spaces(pnew, (size_t)bd->startspaces);
3036 pnew += bd->startspaces;
3037 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3038 pnew += bd->textlen;
3039 copy_spaces(pnew, (size_t)bd->endspaces);
3040 pnew += bd->endspaces;
3041 *pnew = NUL;
3042 return OK;
3043}
3044
3045#ifdef FEAT_CLIPBOARD
3046/*
3047 * Make a copy of the y_current register to register "reg".
3048 */
3049 static void
3050copy_yank_reg(reg)
3051 struct yankreg *reg;
3052{
3053 struct yankreg *curr = y_current;
3054 long j;
3055
3056 y_current = reg;
3057 free_yank_all();
3058 *y_current = *curr;
3059 y_current->y_array = (char_u **)lalloc_clear(
3060 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3061 if (y_current->y_array == NULL)
3062 y_current->y_size = 0;
3063 else
3064 for (j = 0; j < y_current->y_size; ++j)
3065 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3066 {
3067 free_yank(j);
3068 y_current->y_size = 0;
3069 break;
3070 }
3071 y_current = curr;
3072}
3073#endif
3074
3075/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003076 * Put contents of register "regname" into the text.
3077 * Caller must check "regname" to be valid!
3078 * "flags": PUT_FIXINDENT make indent look nice
3079 * PUT_CURSEND leave cursor after end of new text
3080 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 */
3082 void
3083do_put(regname, dir, count, flags)
3084 int regname;
3085 int dir; /* BACKWARD for 'P', FORWARD for 'p' */
3086 long count;
3087 int flags;
3088{
3089 char_u *ptr;
3090 char_u *newp, *oldp;
3091 int yanklen;
3092 int totlen = 0; /* init for gcc */
3093 linenr_T lnum;
3094 colnr_T col;
3095 long i; /* index in y_array[] */
3096 int y_type;
3097 long y_size;
3098#ifdef FEAT_VISUAL
3099 int oldlen;
3100 long y_width = 0;
3101 colnr_T vcol;
3102 int delcount;
3103 int incr = 0;
3104 long j;
3105 struct block_def bd;
3106#endif
3107 char_u **y_array = NULL;
3108 long nr_lines = 0;
3109 pos_T new_cursor;
3110 int indent;
3111 int orig_indent = 0; /* init for gcc */
3112 int indent_diff = 0; /* init for gcc */
3113 int first_indent = TRUE;
3114 int lendiff = 0;
3115 pos_T old_pos;
3116 char_u *insert_string = NULL;
3117 int allocated = FALSE;
3118 long cnt;
3119
3120#ifdef FEAT_CLIPBOARD
3121 /* Adjust register name for "unnamed" in 'clipboard'. */
3122 adjust_clip_reg(&regname);
3123 (void)may_get_selection(regname);
3124#endif
3125
3126 if (flags & PUT_FIXINDENT)
3127 orig_indent = get_indent();
3128
3129 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3130 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3131
3132 /*
3133 * Using inserted text works differently, because the register includes
3134 * special characters (newlines, etc.).
3135 */
3136 if (regname == '.')
3137 {
3138 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3139 (count == -1 ? 'O' : 'i')), count, FALSE);
3140 /* Putting the text is done later, so can't really move the cursor to
3141 * the next character. Use "l" to simulate it. */
3142 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3143 stuffcharReadbuff('l');
3144 return;
3145 }
3146
3147 /*
3148 * For special registers '%' (file name), '#' (alternate file name) and
3149 * ':' (last command line), etc. we have to create a fake yank register.
3150 */
3151 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3152 {
3153 if (insert_string == NULL)
3154 return;
3155 }
3156
3157 if (insert_string != NULL)
3158 {
3159 y_type = MCHAR;
3160#ifdef FEAT_EVAL
3161 if (regname == '=')
3162 {
3163 /* For the = register we need to split the string at NL
3164 * characters. */
3165 /* Loop twice: count the number of lines and save them. */
3166 for (;;)
3167 {
3168 y_size = 0;
3169 ptr = insert_string;
3170 while (ptr != NULL)
3171 {
3172 if (y_array != NULL)
3173 y_array[y_size] = ptr;
3174 ++y_size;
3175 ptr = vim_strchr(ptr, '\n');
3176 if (ptr != NULL)
3177 {
3178 if (y_array != NULL)
3179 *ptr = NUL;
3180 ++ptr;
3181 /* A trailing '\n' makes the string linewise */
3182 if (*ptr == NUL)
3183 {
3184 y_type = MLINE;
3185 break;
3186 }
3187 }
3188 }
3189 if (y_array != NULL)
3190 break;
3191 y_array = (char_u **)alloc((unsigned)
3192 (y_size * sizeof(char_u *)));
3193 if (y_array == NULL)
3194 goto end;
3195 }
3196 }
3197 else
3198#endif
3199 {
3200 y_size = 1; /* use fake one-line yank register */
3201 y_array = &insert_string;
3202 }
3203 }
3204 else
3205 {
3206 get_yank_register(regname, FALSE);
3207
3208 y_type = y_current->y_type;
3209#ifdef FEAT_VISUAL
3210 y_width = y_current->y_width;
3211#endif
3212 y_size = y_current->y_size;
3213 y_array = y_current->y_array;
3214 }
3215
3216#ifdef FEAT_VISUAL
3217 if (y_type == MLINE)
3218 {
3219 if (flags & PUT_LINE_SPLIT)
3220 {
3221 /* "p" or "P" in Visual mode: split the lines to put the text in
3222 * between. */
3223 if (u_save_cursor() == FAIL)
3224 goto end;
3225 ptr = vim_strsave(ml_get_cursor());
3226 if (ptr == NULL)
3227 goto end;
3228 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3229 vim_free(ptr);
3230
3231 ptr = vim_strnsave(ml_get_curline(), curwin->w_cursor.col);
3232 if (ptr == NULL)
3233 goto end;
3234 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3235 ++nr_lines;
3236 dir = FORWARD;
3237 }
3238 if (flags & PUT_LINE_FORWARD)
3239 {
3240 /* Must be "p" for a Visual block, put lines below the block. */
3241 curwin->w_cursor = curbuf->b_visual_end;
3242 dir = FORWARD;
3243 }
3244 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3245 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3246 }
3247#endif
3248
3249 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3250 y_type = MLINE;
3251
3252 if (y_size == 0 || y_array == NULL)
3253 {
3254 EMSG2(_("E353: Nothing in register %s"),
3255 regname == 0 ? (char_u *)"\"" : transchar(regname));
3256 goto end;
3257 }
3258
3259#ifdef FEAT_VISUAL
3260 if (y_type == MBLOCK)
3261 {
3262 lnum = curwin->w_cursor.lnum + y_size + 1;
3263 if (lnum > curbuf->b_ml.ml_line_count)
3264 lnum = curbuf->b_ml.ml_line_count + 1;
3265 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3266 goto end;
3267 }
3268 else
3269#endif
3270 if (y_type == MLINE)
3271 {
3272 lnum = curwin->w_cursor.lnum;
3273#ifdef FEAT_FOLDING
3274 /* Correct line number for closed fold. Don't move the cursor yet,
3275 * u_save() uses it. */
3276 if (dir == BACKWARD)
3277 (void)hasFolding(lnum, &lnum, NULL);
3278 else
3279 (void)hasFolding(lnum, NULL, &lnum);
3280#endif
3281 if (dir == FORWARD)
3282 ++lnum;
3283 if (u_save(lnum - 1, lnum) == FAIL)
3284 goto end;
3285#ifdef FEAT_FOLDING
3286 if (dir == FORWARD)
3287 curwin->w_cursor.lnum = lnum - 1;
3288 else
3289 curwin->w_cursor.lnum = lnum;
3290 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3291#endif
3292 }
3293 else if (u_save_cursor() == FAIL)
3294 goto end;
3295
3296 yanklen = (int)STRLEN(y_array[0]);
3297
3298#ifdef FEAT_VIRTUALEDIT
3299 if (ve_flags == VE_ALL && y_type == MCHAR)
3300 {
3301 if (gchar_cursor() == TAB)
3302 {
3303 /* Don't need to insert spaces when "p" on the last position of a
3304 * tab or "P" on the first position. */
3305 if (dir == FORWARD
3306 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3307 : curwin->w_cursor.coladd > 0)
3308 coladvance_force(getviscol());
3309 else
3310 curwin->w_cursor.coladd = 0;
3311 }
3312 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3313 coladvance_force(getviscol() + (dir == FORWARD));
3314 }
3315#endif
3316
3317 lnum = curwin->w_cursor.lnum;
3318 col = curwin->w_cursor.col;
3319
3320#ifdef FEAT_VISUAL
3321 /*
3322 * Block mode
3323 */
3324 if (y_type == MBLOCK)
3325 {
3326 char c = gchar_cursor();
3327 colnr_T endcol2 = 0;
3328
3329 if (dir == FORWARD && c != NUL)
3330 {
3331#ifdef FEAT_VIRTUALEDIT
3332 if (ve_flags == VE_ALL)
3333 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3334 else
3335#endif
3336 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3337
3338#ifdef FEAT_MBYTE
3339 if (has_mbyte)
3340 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003341 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342 else
3343#endif
3344#ifdef FEAT_VIRTUALEDIT
3345 if (c != TAB || ve_flags != VE_ALL)
3346#endif
3347 ++curwin->w_cursor.col;
3348 ++col;
3349 }
3350 else
3351 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3352
3353#ifdef FEAT_VIRTUALEDIT
3354 col += curwin->w_cursor.coladd;
3355 if (ve_flags == VE_ALL && curwin->w_cursor.coladd > 0)
3356 {
3357 if (dir == FORWARD && c == NUL)
3358 ++col;
3359 if (dir != FORWARD && c != NUL)
3360 ++curwin->w_cursor.col;
3361 if (c == TAB)
3362 {
3363 if (dir == BACKWARD && curwin->w_cursor.col)
3364 curwin->w_cursor.col--;
3365 if (dir == FORWARD && col - 1 == endcol2)
3366 curwin->w_cursor.col++;
3367 }
3368 }
3369 curwin->w_cursor.coladd = 0;
3370#endif
3371 for (i = 0; i < y_size; ++i)
3372 {
3373 int spaces;
3374 char shortline;
3375
3376 bd.startspaces = 0;
3377 bd.endspaces = 0;
3378 bd.textcol = 0;
3379 vcol = 0;
3380 delcount = 0;
3381
3382 /* add a new line */
3383 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3384 {
3385 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3386 (colnr_T)1, FALSE) == FAIL)
3387 break;
3388 ++nr_lines;
3389 }
3390 /* get the old line and advance to the position to insert at */
3391 oldp = ml_get_curline();
3392 oldlen = (int)STRLEN(oldp);
3393 for (ptr = oldp; vcol < col && *ptr; )
3394 {
3395 /* Count a tab for what it's worth (if list mode not on) */
3396 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
3397 vcol += incr;
3398 }
3399 bd.textcol = (colnr_T)(ptr - oldp);
3400
3401 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3402
3403 if (vcol < col) /* line too short, padd with spaces */
3404 bd.startspaces = col - vcol;
3405 else if (vcol > col)
3406 {
3407 bd.endspaces = vcol - col;
3408 bd.startspaces = incr - bd.endspaces;
3409 --bd.textcol;
3410 delcount = 1;
3411#ifdef FEAT_MBYTE
3412 if (has_mbyte)
3413 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3414#endif
3415 if (oldp[bd.textcol] != TAB)
3416 {
3417 /* Only a Tab can be split into spaces. Other
3418 * characters will have to be moved to after the
3419 * block, causing misalignment. */
3420 delcount = 0;
3421 bd.endspaces = 0;
3422 }
3423 }
3424
3425 yanklen = (int)STRLEN(y_array[i]);
3426
3427 /* calculate number of spaces required to fill right side of block*/
3428 spaces = y_width + 1;
3429 for (j = 0; j < yanklen; j++)
3430 spaces -= lbr_chartabsize(&y_array[i][j], 0);
3431 if (spaces < 0)
3432 spaces = 0;
3433
3434 /* insert the new text */
3435 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3436 newp = alloc_check((unsigned)totlen + oldlen + 1);
3437 if (newp == NULL)
3438 break;
3439 /* copy part up to cursor to new line */
3440 ptr = newp;
3441 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3442 ptr += bd.textcol;
3443 /* may insert some spaces before the new text */
3444 copy_spaces(ptr, (size_t)bd.startspaces);
3445 ptr += bd.startspaces;
3446 /* insert the new text */
3447 for (j = 0; j < count; ++j)
3448 {
3449 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3450 ptr += yanklen;
3451
3452 /* insert block's trailing spaces only if there's text behind */
3453 if ((j < count - 1 || !shortline) && spaces)
3454 {
3455 copy_spaces(ptr, (size_t)spaces);
3456 ptr += spaces;
3457 }
3458 }
3459 /* may insert some spaces after the new text */
3460 copy_spaces(ptr, (size_t)bd.endspaces);
3461 ptr += bd.endspaces;
3462 /* move the text after the cursor to the end of the line. */
3463 mch_memmove(ptr, oldp + bd.textcol + delcount,
3464 (size_t)(oldlen - bd.textcol - delcount + 1));
3465 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3466
3467 ++curwin->w_cursor.lnum;
3468 if (i == 0)
3469 curwin->w_cursor.col += bd.startspaces;
3470 }
3471
3472 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3473
3474 /* Set '[ mark. */
3475 curbuf->b_op_start = curwin->w_cursor;
3476 curbuf->b_op_start.lnum = lnum;
3477
3478 /* adjust '] mark */
3479 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3480 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003481# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003483# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484 if (flags & PUT_CURSEND)
3485 {
3486 curwin->w_cursor = curbuf->b_op_end;
3487 curwin->w_cursor.col++;
3488 }
3489 else
3490 curwin->w_cursor.lnum = lnum;
3491 }
3492 else
3493#endif
3494 {
3495 /*
3496 * Character or Line mode
3497 */
3498 if (y_type == MCHAR)
3499 {
3500 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3501 * char */
3502 if (dir == FORWARD && gchar_cursor() != NUL)
3503 {
3504#ifdef FEAT_MBYTE
3505 if (has_mbyte)
3506 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003507 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508
3509 /* put it on the next of the multi-byte character. */
3510 col += bytelen;
3511 if (yanklen)
3512 {
3513 curwin->w_cursor.col += bytelen;
3514 curbuf->b_op_end.col += bytelen;
3515 }
3516 }
3517 else
3518#endif
3519 {
3520 ++col;
3521 if (yanklen)
3522 {
3523 ++curwin->w_cursor.col;
3524 ++curbuf->b_op_end.col;
3525 }
3526 }
3527 }
3528 new_cursor = curwin->w_cursor;
3529 curbuf->b_op_start = curwin->w_cursor;
3530 }
3531 /*
3532 * Line mode: BACKWARD is the same as FORWARD on the previous line
3533 */
3534 else if (dir == BACKWARD)
3535 --lnum;
3536
3537 /*
3538 * simple case: insert into current line
3539 */
3540 if (y_type == MCHAR && y_size == 1)
3541 {
3542 totlen = count * yanklen;
3543 if (totlen)
3544 {
3545 oldp = ml_get(lnum);
3546 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3547 if (newp == NULL)
3548 goto end; /* alloc() will give error message */
3549 mch_memmove(newp, oldp, (size_t)col);
3550 ptr = newp + col;
3551 for (i = 0; i < count; ++i)
3552 {
3553 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3554 ptr += yanklen;
3555 }
3556 mch_memmove(ptr, oldp + col, STRLEN(oldp + col) + 1);
3557 ml_replace(lnum, newp, FALSE);
3558 /* Put cursor on last putted char. */
3559 curwin->w_cursor.col += (colnr_T)(totlen - 1);
3560 }
3561 curbuf->b_op_end = curwin->w_cursor;
3562 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3563 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3564 ++curwin->w_cursor.col;
3565 changed_bytes(lnum, col);
3566 }
3567 else
3568 {
3569 /*
3570 * Insert at least one line. When y_type is MCHAR, break the first
3571 * line in two.
3572 */
3573 for (cnt = 1; cnt <= count; ++cnt)
3574 {
3575 i = 0;
3576 if (y_type == MCHAR)
3577 {
3578 /*
3579 * Split the current line in two at the insert position.
3580 * First insert y_array[size - 1] in front of second line.
3581 * Then append y_array[0] to first line.
3582 */
3583 lnum = new_cursor.lnum;
3584 ptr = ml_get(lnum) + col;
3585 totlen = (int)STRLEN(y_array[y_size - 1]);
3586 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3587 if (newp == NULL)
3588 goto error;
3589 STRCPY(newp, y_array[y_size - 1]);
3590 STRCAT(newp, ptr);
3591 /* insert second line */
3592 ml_append(lnum, newp, (colnr_T)0, FALSE);
3593 vim_free(newp);
3594
3595 oldp = ml_get(lnum);
3596 newp = alloc_check((unsigned)(col + yanklen + 1));
3597 if (newp == NULL)
3598 goto error;
3599 /* copy first part of line */
3600 mch_memmove(newp, oldp, (size_t)col);
3601 /* append to first line */
3602 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3603 ml_replace(lnum, newp, FALSE);
3604
3605 curwin->w_cursor.lnum = lnum;
3606 i = 1;
3607 }
3608
3609 for (; i < y_size; ++i)
3610 {
3611 if ((y_type != MCHAR || i < y_size - 1)
3612 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3613 == FAIL)
3614 goto error;
3615 lnum++;
3616 ++nr_lines;
3617 if (flags & PUT_FIXINDENT)
3618 {
3619 old_pos = curwin->w_cursor;
3620 curwin->w_cursor.lnum = lnum;
3621 ptr = ml_get(lnum);
3622 if (cnt == count && i == y_size - 1)
3623 lendiff = (int)STRLEN(ptr);
3624#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3625 if (*ptr == '#' && preprocs_left())
3626 indent = 0; /* Leave # lines at start */
3627 else
3628#endif
3629 if (*ptr == NUL)
3630 indent = 0; /* Ignore empty lines */
3631 else if (first_indent)
3632 {
3633 indent_diff = orig_indent - get_indent();
3634 indent = orig_indent;
3635 first_indent = FALSE;
3636 }
3637 else if ((indent = get_indent() + indent_diff) < 0)
3638 indent = 0;
3639 (void)set_indent(indent, 0);
3640 curwin->w_cursor = old_pos;
3641 /* remember how many chars were removed */
3642 if (cnt == count && i == y_size - 1)
3643 lendiff -= (int)STRLEN(ml_get(lnum));
3644 }
3645 }
3646 }
3647
3648error:
3649 /* Adjust marks. */
3650 if (y_type == MLINE)
3651 {
3652 curbuf->b_op_start.col = 0;
3653 if (dir == FORWARD)
3654 curbuf->b_op_start.lnum++;
3655 }
3656 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
3657 (linenr_T)MAXLNUM, nr_lines, 0L);
3658
3659 /* note changed text for displaying and folding */
3660 if (y_type == MCHAR)
3661 changed_lines(curwin->w_cursor.lnum, col,
3662 curwin->w_cursor.lnum + 1, nr_lines);
3663 else
3664 changed_lines(curbuf->b_op_start.lnum, 0,
3665 curbuf->b_op_start.lnum, nr_lines);
3666
3667 /* put '] mark at last inserted character */
3668 curbuf->b_op_end.lnum = lnum;
3669 /* correct length for change in indent */
3670 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3671 if (col > 1)
3672 curbuf->b_op_end.col = col - 1;
3673 else
3674 curbuf->b_op_end.col = 0;
3675
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003676 if (flags & PUT_CURSLINE)
3677 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003678 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003679 curwin->w_cursor.lnum = lnum;
3680 beginline(BL_WHITE | BL_FIX);
3681 }
3682 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 {
3684 /* put cursor after inserted text */
3685 if (y_type == MLINE)
3686 {
3687 if (lnum >= curbuf->b_ml.ml_line_count)
3688 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3689 else
3690 curwin->w_cursor.lnum = lnum + 1;
3691 curwin->w_cursor.col = 0;
3692 }
3693 else
3694 {
3695 curwin->w_cursor.lnum = lnum;
3696 curwin->w_cursor.col = col;
3697 }
3698 }
3699 else if (y_type == MLINE)
3700 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003701 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 curwin->w_cursor.col = 0;
3703 if (dir == FORWARD)
3704 ++curwin->w_cursor.lnum;
3705 beginline(BL_WHITE | BL_FIX);
3706 }
3707 else /* put cursor on first inserted character */
3708 curwin->w_cursor = new_cursor;
3709 }
3710 }
3711
3712 msgmore(nr_lines);
3713 curwin->w_set_curswant = TRUE;
3714
3715end:
3716 if (allocated)
3717 {
3718 vim_free(insert_string);
3719 if (regname == '=')
3720 vim_free(y_array);
3721 }
Bram Moolenaar677ee682005-01-27 14:41:15 +00003722 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 if (gchar_cursor() == NUL
3724 && curwin->w_cursor.col > 0
3725 && !(restart_edit || (State & INSERT)))
3726 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00003727 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00003728 dec_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729#ifdef FEAT_VIRTUALEDIT
3730 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00003731 {
3732 colnr_T scol, ecol;
3733
3734 /* Coladd is set to the width of the last character. */
3735 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
3736 curwin->w_cursor.coladd = ecol - scol + 1;
3737 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738#endif
3739 }
3740}
3741
3742#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
3743/*
3744 * Return TRUE if lines starting with '#' should be left aligned.
3745 */
3746 int
3747preprocs_left()
3748{
3749 return
3750# ifdef FEAT_SMARTINDENT
3751# ifdef FEAT_CINDENT
3752 (curbuf->b_p_si && !curbuf->b_p_cin) ||
3753# else
3754 curbuf->b_p_si
3755# endif
3756# endif
3757# ifdef FEAT_CINDENT
3758 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE))
3759# endif
3760 ;
3761}
3762#endif
3763
3764/* Return the character name of the register with the given number */
3765 int
3766get_register_name(num)
3767 int num;
3768{
3769 if (num == -1)
3770 return '"';
3771 else if (num < 10)
3772 return num + '0';
3773 else if (num == DELETION_REGISTER)
3774 return '-';
3775#ifdef FEAT_CLIPBOARD
3776 else if (num == STAR_REGISTER)
3777 return '*';
3778 else if (num == PLUS_REGISTER)
3779 return '+';
3780#endif
3781 else
3782 {
3783#ifdef EBCDIC
3784 int i;
3785
3786 /* EBCDIC is really braindead ... */
3787 i = 'a' + (num - 10);
3788 if (i > 'i')
3789 i += 7;
3790 if (i > 'r')
3791 i += 8;
3792 return i;
3793#else
3794 return num + 'a' - 10;
3795#endif
3796 }
3797}
3798
3799/*
3800 * ":dis" and ":registers": Display the contents of the yank registers.
3801 */
3802 void
3803ex_display(eap)
3804 exarg_T *eap;
3805{
3806 int i, n;
3807 long j;
3808 char_u *p;
3809 struct yankreg *yb;
3810 int name;
3811 int attr;
3812 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003813#ifdef FEAT_MBYTE
3814 int clen;
3815#else
3816# define clen 1
3817#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818
3819 if (arg != NULL && *arg == NUL)
3820 arg = NULL;
3821 attr = hl_attr(HLF_8);
3822
3823 /* Highlight title */
3824 MSG_PUTS_TITLE(_("\n--- Registers ---"));
3825 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
3826 {
3827 name = get_register_name(i);
3828 if (arg != NULL && vim_strchr(arg, name) == NULL)
3829 continue; /* did not ask for this register */
3830
3831#ifdef FEAT_CLIPBOARD
3832 /* Adjust register name for "unnamed" in 'clipboard'.
3833 * When it's a clipboard register, fill it with the current contents
3834 * of the clipboard. */
3835 adjust_clip_reg(&name);
3836 (void)may_get_selection(name);
3837#endif
3838
3839 if (i == -1)
3840 {
3841 if (y_previous != NULL)
3842 yb = y_previous;
3843 else
3844 yb = &(y_regs[0]);
3845 }
3846 else
3847 yb = &(y_regs[i]);
3848 if (yb->y_array != NULL)
3849 {
3850 msg_putchar('\n');
3851 msg_putchar('"');
3852 msg_putchar(name);
3853 MSG_PUTS(" ");
3854
3855 n = (int)Columns - 6;
3856 for (j = 0; j < yb->y_size && n > 1; ++j)
3857 {
3858 if (j)
3859 {
3860 MSG_PUTS_ATTR("^J", attr);
3861 n -= 2;
3862 }
3863 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
3864 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003866 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003867#endif
3868 msg_outtrans_len(p, clen);
3869#ifdef FEAT_MBYTE
3870 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871#endif
3872 }
3873 }
3874 if (n > 1 && yb->y_type == MLINE)
3875 MSG_PUTS_ATTR("^J", attr);
3876 out_flush(); /* show one line at a time */
3877 }
3878 ui_breakcheck();
3879 }
3880
3881 /*
3882 * display last inserted text
3883 */
3884 if ((p = get_last_insert()) != NULL
3885 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
3886 {
3887 MSG_PUTS("\n\". ");
3888 dis_msg(p, TRUE);
3889 }
3890
3891 /*
3892 * display last command line
3893 */
3894 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
3895 && !got_int)
3896 {
3897 MSG_PUTS("\n\": ");
3898 dis_msg(last_cmdline, FALSE);
3899 }
3900
3901 /*
3902 * display current file name
3903 */
3904 if (curbuf->b_fname != NULL
3905 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
3906 {
3907 MSG_PUTS("\n\"% ");
3908 dis_msg(curbuf->b_fname, FALSE);
3909 }
3910
3911 /*
3912 * display alternate file name
3913 */
3914 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
3915 {
3916 char_u *fname;
3917 linenr_T dummy;
3918
3919 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
3920 {
3921 MSG_PUTS("\n\"# ");
3922 dis_msg(fname, FALSE);
3923 }
3924 }
3925
3926 /*
3927 * display last search pattern
3928 */
3929 if (last_search_pat() != NULL
3930 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
3931 {
3932 MSG_PUTS("\n\"/ ");
3933 dis_msg(last_search_pat(), FALSE);
3934 }
3935
3936#ifdef FEAT_EVAL
3937 /*
3938 * display last used expression
3939 */
3940 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
3941 && !got_int)
3942 {
3943 MSG_PUTS("\n\"= ");
3944 dis_msg(expr_line, FALSE);
3945 }
3946#endif
3947}
3948
3949/*
3950 * display a string for do_dis()
3951 * truncate at end of screen line
3952 */
3953 static void
3954dis_msg(p, skip_esc)
3955 char_u *p;
3956 int skip_esc; /* if TRUE, ignore trailing ESC */
3957{
3958 int n;
3959#ifdef FEAT_MBYTE
3960 int l;
3961#endif
3962
3963 n = (int)Columns - 6;
3964 while (*p != NUL
3965 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
3966 && (n -= ptr2cells(p)) >= 0)
3967 {
3968#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003969 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 {
3971 msg_outtrans_len(p, l);
3972 p += l;
3973 }
3974 else
3975#endif
3976 msg_outtrans_len(p++, 1);
3977 }
3978 ui_breakcheck();
3979}
3980
3981/*
3982 * join 'count' lines (minimal 2), including u_save()
3983 */
3984 void
3985do_do_join(count, insert_space)
3986 long count;
3987 int insert_space;
3988{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003989 colnr_T col = MAXCOL;
3990
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
3992 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
3993 return;
3994
3995 while (--count > 0)
3996 {
3997 line_breakcheck();
3998 if (got_int || do_join(insert_space) == FAIL)
3999 {
4000 beep_flush();
4001 break;
4002 }
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004003 if (col == MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4004 col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 }
4006
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004007 /* Vi compatible: use the column of the first join */
4008 if (col != MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4009 curwin->w_cursor.col = col;
4010
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011#if 0
4012 /*
4013 * Need to update the screen if the line where the cursor is became too
4014 * long to fit on the screen.
4015 */
4016 update_topline_redraw();
4017#endif
4018}
4019
4020/*
4021 * Join two lines at the cursor position.
4022 * "redraw" is TRUE when the screen should be updated.
4023 * Caller must have setup for undo.
4024 *
4025 * return FAIL for failure, OK ohterwise
4026 */
4027 int
4028do_join(insert_space)
4029 int insert_space;
4030{
4031 char_u *curr;
4032 char_u *next, *next_start;
4033 char_u *newp;
4034 int endcurr1, endcurr2;
4035 int currsize; /* size of the current line */
4036 int nextsize; /* size of the next line */
4037 int spaces; /* number of spaces to insert */
4038 linenr_T t;
4039
4040 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4041 return FAIL; /* can't join on last line */
4042
4043 curr = ml_get_curline();
4044 currsize = (int)STRLEN(curr);
4045 endcurr1 = endcurr2 = NUL;
4046 if (insert_space && currsize > 0)
4047 {
4048#ifdef FEAT_MBYTE
4049 if (has_mbyte)
4050 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004051 next = curr + currsize;
4052 mb_ptr_back(curr, next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 endcurr1 = (*mb_ptr2char)(next);
4054 if (next > curr)
4055 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004056 mb_ptr_back(curr, next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 endcurr2 = (*mb_ptr2char)(next);
4058 }
4059 }
4060 else
4061#endif
4062 {
4063 endcurr1 = *(curr + currsize - 1);
4064 if (currsize > 1)
4065 endcurr2 = *(curr + currsize - 2);
4066 }
4067 }
4068
4069 next = next_start = ml_get((linenr_T)(curwin->w_cursor.lnum + 1));
4070 spaces = 0;
4071 if (insert_space)
4072 {
4073 next = skipwhite(next);
4074 if (*next != ')' && currsize != 0 && endcurr1 != TAB
4075#ifdef FEAT_MBYTE
4076 && (!has_format_option(FO_MBYTE_JOIN)
4077 || (mb_ptr2char(next) < 0x100 && endcurr1 < 0x100))
4078 && (!has_format_option(FO_MBYTE_JOIN2)
4079 || mb_ptr2char(next) < 0x100 || endcurr1 < 0x100)
4080#endif
4081 )
4082 {
4083 /* don't add a space if the line is ending in a space */
4084 if (endcurr1 == ' ')
4085 endcurr1 = endcurr2;
4086 else
4087 ++spaces;
4088 /* extra space when 'joinspaces' set and line ends in '.' */
4089 if ( p_js
4090 && (endcurr1 == '.'
4091 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4092 && (endcurr1 == '?' || endcurr1 == '!'))))
4093 ++spaces;
4094 }
4095 }
4096 nextsize = (int)STRLEN(next);
4097
4098 newp = alloc_check((unsigned)(currsize + nextsize + spaces + 1));
4099 if (newp == NULL)
4100 return FAIL;
4101
4102 /*
4103 * Insert the next line first, because we already have that pointer.
4104 * Curr has to be obtained again, because getting next will have
4105 * invalidated it.
4106 */
4107 mch_memmove(newp + currsize + spaces, next, (size_t)(nextsize + 1));
4108
4109 curr = ml_get_curline();
4110 mch_memmove(newp, curr, (size_t)currsize);
4111
4112 copy_spaces(newp + currsize, (size_t)spaces);
4113
4114 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4115
4116 /* Only report the change in the first line here, del_lines() will report
4117 * the deleted line. */
4118 changed_lines(curwin->w_cursor.lnum, currsize,
4119 curwin->w_cursor.lnum + 1, 0L);
4120
4121 /*
4122 * Delete the following line. To do this we move the cursor there
4123 * briefly, and then move it back. After del_lines() the cursor may
4124 * have moved up (last line deleted), so the current lnum is kept in t.
4125 *
4126 * Move marks from the deleted line to the joined line, adjusting the
4127 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4128 * should not really be a problem.
4129 */
4130 t = curwin->w_cursor.lnum;
4131 mark_col_adjust(t + 1, (colnr_T)0, (linenr_T)-1,
4132 (long)(currsize + spaces - (next - next_start)));
4133 ++curwin->w_cursor.lnum;
4134 del_lines(1L, FALSE);
4135 curwin->w_cursor.lnum = t;
4136
4137 /*
4138 * go to first character of the joined line
4139 */
4140 curwin->w_cursor.col = currsize;
4141 check_cursor_col();
4142#ifdef FEAT_VIRTUALEDIT
4143 curwin->w_cursor.coladd = 0;
4144#endif
4145 curwin->w_set_curswant = TRUE;
4146
4147 return OK;
4148}
4149
4150#ifdef FEAT_COMMENTS
4151/*
4152 * Return TRUE if the two comment leaders given are the same. "lnum" is
4153 * the first line. White-space is ignored. Note that the whole of
4154 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4155 */
4156 static int
4157same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
4158 linenr_T lnum;
4159 int leader1_len;
4160 char_u *leader1_flags;
4161 int leader2_len;
4162 char_u *leader2_flags;
4163{
4164 int idx1 = 0, idx2 = 0;
4165 char_u *p;
4166 char_u *line1;
4167 char_u *line2;
4168
4169 if (leader1_len == 0)
4170 return (leader2_len == 0);
4171
4172 /*
4173 * If first leader has 'f' flag, the lines can be joined only if the
4174 * second line does not have a leader.
4175 * If first leader has 'e' flag, the lines can never be joined.
4176 * If fist leader has 's' flag, the lines can only be joined if there is
4177 * some text after it and the second line has the 'm' flag.
4178 */
4179 if (leader1_flags != NULL)
4180 {
4181 for (p = leader1_flags; *p && *p != ':'; ++p)
4182 {
4183 if (*p == COM_FIRST)
4184 return (leader2_len == 0);
4185 if (*p == COM_END)
4186 return FALSE;
4187 if (*p == COM_START)
4188 {
4189 if (*(ml_get(lnum) + leader1_len) == NUL)
4190 return FALSE;
4191 if (leader2_flags == NULL || leader2_len == 0)
4192 return FALSE;
4193 for (p = leader2_flags; *p && *p != ':'; ++p)
4194 if (*p == COM_MIDDLE)
4195 return TRUE;
4196 return FALSE;
4197 }
4198 }
4199 }
4200
4201 /*
4202 * Get current line and next line, compare the leaders.
4203 * The first line has to be saved, only one line can be locked at a time.
4204 */
4205 line1 = vim_strsave(ml_get(lnum));
4206 if (line1 != NULL)
4207 {
4208 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4209 ;
4210 line2 = ml_get(lnum + 1);
4211 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4212 {
4213 if (!vim_iswhite(line2[idx2]))
4214 {
4215 if (line1[idx1++] != line2[idx2])
4216 break;
4217 }
4218 else
4219 while (vim_iswhite(line1[idx1]))
4220 ++idx1;
4221 }
4222 vim_free(line1);
4223 }
4224 return (idx2 == leader2_len && idx1 == leader1_len);
4225}
4226#endif
4227
4228/*
4229 * implementation of the format operator 'gq'
4230 */
4231 void
4232op_format(oap, keep_cursor)
4233 oparg_T *oap;
4234 int keep_cursor; /* keep cursor on same text char */
4235{
4236 long old_line_count = curbuf->b_ml.ml_line_count;
4237
4238 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4239 * can put it back there. */
4240 curwin->w_cursor = oap->cursor_start;
4241
4242 if (u_save((linenr_T)(oap->start.lnum - 1),
4243 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4244 return;
4245 curwin->w_cursor = oap->start;
4246
4247#ifdef FEAT_VISUAL
4248 if (oap->is_VIsual)
4249 /* When there is no change: need to remove the Visual selection */
4250 redraw_curbuf_later(INVERTED);
4251#endif
4252
4253 /* Set '[ mark at the start of the formatted area */
4254 curbuf->b_op_start = oap->start;
4255
4256 /* For "gw" remember the cursor position and put it back below (adjusted
4257 * for joined and split lines). */
4258 if (keep_cursor)
4259 saved_cursor = oap->cursor_start;
4260
4261 format_lines(oap->line_count);
4262
4263 /*
4264 * Leave the cursor at the first non-blank of the last formatted line.
4265 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4266 * line, so "." will do the next lines.
4267 */
4268 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4269 ++curwin->w_cursor.lnum;
4270 beginline(BL_WHITE | BL_FIX);
4271 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4272 msgmore(old_line_count);
4273
4274 /* put '] mark on the end of the formatted area */
4275 curbuf->b_op_end = curwin->w_cursor;
4276
4277 if (keep_cursor)
4278 {
4279 curwin->w_cursor = saved_cursor;
4280 saved_cursor.lnum = 0;
4281 }
4282
4283#ifdef FEAT_VISUAL
4284 if (oap->is_VIsual)
4285 {
4286 win_T *wp;
4287
4288 FOR_ALL_WINDOWS(wp)
4289 {
4290 if (wp->w_old_cursor_lnum != 0)
4291 {
4292 /* When lines have been inserted or deleted, adjust the end of
4293 * the Visual area to be redrawn. */
4294 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4295 wp->w_old_cursor_lnum += old_line_count;
4296 else
4297 wp->w_old_visual_lnum += old_line_count;
4298 }
4299 }
4300 }
4301#endif
4302}
4303
4304/*
4305 * Format "line_count" lines, starting at the cursor position.
4306 * When "line_count" is negative, format until the end of the paragraph.
4307 * Lines after the cursor line are saved for undo, caller must have saved the
4308 * first line.
4309 */
4310 void
4311format_lines(line_count)
4312 linenr_T line_count;
4313{
4314 int max_len;
4315 int is_not_par; /* current line not part of parag. */
4316 int next_is_not_par; /* next line not part of paragraph */
4317 int is_end_par; /* at end of paragraph */
4318 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4319 int next_is_start_par = FALSE;
4320#ifdef FEAT_COMMENTS
4321 int leader_len = 0; /* leader len of current line */
4322 int next_leader_len; /* leader len of next line */
4323 char_u *leader_flags = NULL; /* flags for leader of current line */
4324 char_u *next_leader_flags; /* flags for leader of next line */
4325 int do_comments; /* format comments */
4326#endif
4327 int advance = TRUE;
4328 int second_indent = -1;
4329 int do_second_indent;
4330 int do_number_indent;
4331 int do_trail_white;
4332 int first_par_line = TRUE;
4333 int smd_save;
4334 long count;
4335 int need_set_indent = TRUE; /* set indent of next paragraph */
4336 int force_format = FALSE;
4337 int old_State = State;
4338
4339 /* length of a line to force formatting: 3 * 'tw' */
4340 max_len = comp_textwidth(TRUE) * 3;
4341
4342 /* check for 'q', '2' and '1' in 'formatoptions' */
4343#ifdef FEAT_COMMENTS
4344 do_comments = has_format_option(FO_Q_COMS);
4345#endif
4346 do_second_indent = has_format_option(FO_Q_SECOND);
4347 do_number_indent = has_format_option(FO_Q_NUMBER);
4348 do_trail_white = has_format_option(FO_WHITE_PAR);
4349
4350 /*
4351 * Get info about the previous and current line.
4352 */
4353 if (curwin->w_cursor.lnum > 1)
4354 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4355#ifdef FEAT_COMMENTS
4356 , &leader_len, &leader_flags, do_comments
4357#endif
4358 );
4359 else
4360 is_not_par = TRUE;
4361 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4362#ifdef FEAT_COMMENTS
4363 , &next_leader_len, &next_leader_flags, do_comments
4364#endif
4365 );
4366 is_end_par = (is_not_par || next_is_not_par);
4367 if (!is_end_par && do_trail_white)
4368 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4369
4370 curwin->w_cursor.lnum--;
4371 for (count = line_count; count != 0 && !got_int; --count)
4372 {
4373 /*
4374 * Advance to next paragraph.
4375 */
4376 if (advance)
4377 {
4378 curwin->w_cursor.lnum++;
4379 prev_is_end_par = is_end_par;
4380 is_not_par = next_is_not_par;
4381#ifdef FEAT_COMMENTS
4382 leader_len = next_leader_len;
4383 leader_flags = next_leader_flags;
4384#endif
4385 }
4386
4387 /*
4388 * The last line to be formatted.
4389 */
4390 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4391 {
4392 next_is_not_par = TRUE;
4393#ifdef FEAT_COMMENTS
4394 next_leader_len = 0;
4395 next_leader_flags = NULL;
4396#endif
4397 }
4398 else
4399 {
4400 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4401#ifdef FEAT_COMMENTS
4402 , &next_leader_len, &next_leader_flags, do_comments
4403#endif
4404 );
4405 if (do_number_indent)
4406 next_is_start_par =
4407 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4408 }
4409 advance = TRUE;
4410 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4411 if (!is_end_par && do_trail_white)
4412 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4413
4414 /*
4415 * Skip lines that are not in a paragraph.
4416 */
4417 if (is_not_par)
4418 {
4419 if (line_count < 0)
4420 break;
4421 }
4422 else
4423 {
4424 /*
4425 * For the first line of a paragraph, check indent of second line.
4426 * Don't do this for comments and empty lines.
4427 */
4428 if (first_par_line
4429 && (do_second_indent || do_number_indent)
4430 && prev_is_end_par
4431 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4432#ifdef FEAT_COMMENTS
4433 && leader_len == 0
4434 && next_leader_len == 0
4435#endif
4436 )
4437 {
4438 if (do_second_indent
4439 && !lineempty(curwin->w_cursor.lnum + 1))
4440 second_indent = get_indent_lnum(curwin->w_cursor.lnum + 1);
4441 else if (do_number_indent)
4442 second_indent = get_number_indent(curwin->w_cursor.lnum);
4443 }
4444
4445 /*
4446 * When the comment leader changes, it's the end of the paragraph.
4447 */
4448 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4449#ifdef FEAT_COMMENTS
4450 || !same_leader(curwin->w_cursor.lnum,
4451 leader_len, leader_flags,
4452 next_leader_len, next_leader_flags)
4453#endif
4454 )
4455 is_end_par = TRUE;
4456
4457 /*
4458 * If we have got to the end of a paragraph, or the line is
4459 * getting long, format it.
4460 */
4461 if (is_end_par || force_format)
4462 {
4463 if (need_set_indent)
4464 /* replace indent in first line with minimal number of
4465 * tabs and spaces, according to current options */
4466 (void)set_indent(get_indent(), SIN_CHANGED);
4467
4468 /* put cursor on last non-space */
4469 State = NORMAL; /* don't go past end-of-line */
4470 coladvance((colnr_T)MAXCOL);
4471 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
4472 dec_cursor();
4473
4474 /* do the formatting, without 'showmode' */
4475 State = INSERT; /* for open_line() */
4476 smd_save = p_smd;
4477 p_smd = FALSE;
4478 insertchar(NUL, INSCHAR_FORMAT
4479#ifdef FEAT_COMMENTS
4480 + (do_comments ? INSCHAR_DO_COM : 0)
4481#endif
4482 , second_indent);
4483 State = old_State;
4484 p_smd = smd_save;
4485 second_indent = -1;
4486 /* at end of par.: need to set indent of next par. */
4487 need_set_indent = is_end_par;
4488 if (is_end_par)
4489 {
4490 /* When called with a negative line count, break at the
4491 * end of the paragraph. */
4492 if (line_count < 0)
4493 break;
4494 first_par_line = TRUE;
4495 }
4496 force_format = FALSE;
4497 }
4498
4499 /*
4500 * When still in same paragraph, join the lines together. But
4501 * first delete the comment leader from the second line.
4502 */
4503 if (!is_end_par)
4504 {
4505 advance = FALSE;
4506 curwin->w_cursor.lnum++;
4507 curwin->w_cursor.col = 0;
4508 if (line_count < 0 && u_save_cursor() == FAIL)
4509 break;
4510#ifdef FEAT_COMMENTS
4511 (void)del_bytes((long)next_leader_len, FALSE);
4512 if (next_leader_len > 0)
4513 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
4514 (long)-next_leader_len);
4515#endif
4516 curwin->w_cursor.lnum--;
4517 if (do_join(TRUE) == FAIL)
4518 {
4519 beep_flush();
4520 break;
4521 }
4522 first_par_line = FALSE;
4523 /* If the line is getting long, format it next time */
4524 if (STRLEN(ml_get_curline()) > (size_t)max_len)
4525 force_format = TRUE;
4526 else
4527 force_format = FALSE;
4528 }
4529 }
4530 line_breakcheck();
4531 }
4532}
4533
4534/*
4535 * Return TRUE if line "lnum" ends in a white character.
4536 */
4537 static int
4538ends_in_white(lnum)
4539 linenr_T lnum;
4540{
4541 char_u *s = ml_get(lnum);
4542 size_t l;
4543
4544 if (*s == NUL)
4545 return FALSE;
4546 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
4547 * invocation may call function multiple times". */
4548 l = STRLEN(s) - 1;
4549 return vim_iswhite(s[l]);
4550}
4551
4552/*
4553 * Blank lines, and lines containing only the comment leader, are left
4554 * untouched by the formatting. The function returns TRUE in this
4555 * case. It also returns TRUE when a line starts with the end of a comment
4556 * ('e' in comment flags), so that this line is skipped, and not joined to the
4557 * previous line. A new paragraph starts after a blank line, or when the
4558 * comment leader changes -- webb.
4559 */
4560#ifdef FEAT_COMMENTS
4561 static int
4562fmt_check_par(lnum, leader_len, leader_flags, do_comments)
4563 linenr_T lnum;
4564 int *leader_len;
4565 char_u **leader_flags;
4566 int do_comments;
4567{
4568 char_u *flags = NULL; /* init for GCC */
4569 char_u *ptr;
4570
4571 ptr = ml_get(lnum);
4572 if (do_comments)
4573 *leader_len = get_leader_len(ptr, leader_flags, FALSE);
4574 else
4575 *leader_len = 0;
4576
4577 if (*leader_len > 0)
4578 {
4579 /*
4580 * Search for 'e' flag in comment leader flags.
4581 */
4582 flags = *leader_flags;
4583 while (*flags && *flags != ':' && *flags != COM_END)
4584 ++flags;
4585 }
4586
4587 return (*skipwhite(ptr + *leader_len) == NUL
4588 || (*leader_len > 0 && *flags == COM_END)
4589 || startPS(lnum, NUL, FALSE));
4590}
4591#else
4592 static int
4593fmt_check_par(lnum)
4594 linenr_T lnum;
4595{
4596 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
4597}
4598#endif
4599
4600/*
4601 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
4602 * previous line is in the same paragraph. Used for auto-formatting.
4603 */
4604 int
4605paragraph_start(lnum)
4606 linenr_T lnum;
4607{
4608 char_u *p;
4609#ifdef FEAT_COMMENTS
4610 int leader_len = 0; /* leader len of current line */
4611 char_u *leader_flags = NULL; /* flags for leader of current line */
4612 int next_leader_len; /* leader len of next line */
4613 char_u *next_leader_flags; /* flags for leader of next line */
4614 int do_comments; /* format comments */
4615#endif
4616
4617 if (lnum <= 1)
4618 return TRUE; /* start of the file */
4619
4620 p = ml_get(lnum - 1);
4621 if (*p == NUL)
4622 return TRUE; /* after empty line */
4623
4624#ifdef FEAT_COMMENTS
4625 do_comments = has_format_option(FO_Q_COMS);
4626#endif
4627 if (fmt_check_par(lnum - 1
4628#ifdef FEAT_COMMENTS
4629 , &leader_len, &leader_flags, do_comments
4630#endif
4631 ))
4632 return TRUE; /* after non-paragraph line */
4633
4634 if (fmt_check_par(lnum
4635#ifdef FEAT_COMMENTS
4636 , &next_leader_len, &next_leader_flags, do_comments
4637#endif
4638 ))
4639 return TRUE; /* "lnum" is not a paragraph line */
4640
4641 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
4642 return TRUE; /* missing trailing space in previous line. */
4643
4644 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
4645 return TRUE; /* numbered item starts in "lnum". */
4646
4647#ifdef FEAT_COMMENTS
4648 if (!same_leader(lnum - 1, leader_len, leader_flags,
4649 next_leader_len, next_leader_flags))
4650 return TRUE; /* change of comment leader. */
4651#endif
4652
4653 return FALSE;
4654}
4655
4656#ifdef FEAT_VISUAL
4657/*
4658 * prepare a few things for block mode yank/delete/tilde
4659 *
4660 * for delete:
4661 * - textlen includes the first/last char to be (partly) deleted
4662 * - start/endspaces is the number of columns that are taken by the
4663 * first/last deleted char minus the number of columns that have to be
4664 * deleted. for yank and tilde:
4665 * - textlen includes the first/last char to be wholly yanked
4666 * - start/endspaces is the number of columns of the first/last yanked char
4667 * that are to be yanked.
4668 */
4669 static void
4670block_prep(oap, bdp, lnum, is_del)
4671 oparg_T *oap;
4672 struct block_def *bdp;
4673 linenr_T lnum;
4674 int is_del;
4675{
4676 int incr = 0;
4677 char_u *pend;
4678 char_u *pstart;
4679 char_u *line;
4680 char_u *prev_pstart;
4681 char_u *prev_pend;
4682
4683 bdp->startspaces = 0;
4684 bdp->endspaces = 0;
4685 bdp->textlen = 0;
4686 bdp->start_vcol = 0;
4687 bdp->end_vcol = 0;
4688#ifdef FEAT_VISUALEXTRA
4689 bdp->is_short = FALSE;
4690 bdp->is_oneChar = FALSE;
4691 bdp->pre_whitesp = 0;
4692 bdp->pre_whitesp_c = 0;
4693 bdp->end_char_vcols = 0;
4694#endif
4695 bdp->start_char_vcols = 0;
4696
4697 line = ml_get(lnum);
4698 pstart = line;
4699 prev_pstart = line;
4700 while (bdp->start_vcol < oap->start_vcol && *pstart)
4701 {
4702 /* Count a tab for what it's worth (if list mode not on) */
4703 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
4704 bdp->start_vcol += incr;
4705#ifdef FEAT_VISUALEXTRA
4706 if (vim_iswhite(*pstart))
4707 {
4708 bdp->pre_whitesp += incr;
4709 bdp->pre_whitesp_c++;
4710 }
4711 else
4712 {
4713 bdp->pre_whitesp = 0;
4714 bdp->pre_whitesp_c = 0;
4715 }
4716#endif
4717 prev_pstart = pstart;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004718 mb_ptr_adv(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 }
4720 bdp->start_char_vcols = incr;
4721 if (bdp->start_vcol < oap->start_vcol) /* line too short */
4722 {
4723 bdp->end_vcol = bdp->start_vcol;
4724#ifdef FEAT_VISUALEXTRA
4725 bdp->is_short = TRUE;
4726#endif
4727 if (!is_del || oap->op_type == OP_APPEND)
4728 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
4729 }
4730 else
4731 {
4732 /* notice: this converts partly selected Multibyte characters to
4733 * spaces, too. */
4734 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
4735 if (is_del && bdp->startspaces)
4736 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
4737 pend = pstart;
4738 bdp->end_vcol = bdp->start_vcol;
4739 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
4740 {
4741#ifdef FEAT_VISUALEXTRA
4742 bdp->is_oneChar = TRUE;
4743#endif
4744 if (oap->op_type == OP_INSERT)
4745 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4746 else if (oap->op_type == OP_APPEND)
4747 {
4748 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
4749 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4750 }
4751 else
4752 {
4753 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
4754 if (is_del && oap->op_type != OP_LSHIFT)
4755 {
4756 /* just putting the sum of those two into
4757 * bdp->startspaces doesn't work for Visual replace,
4758 * so we have to split the tab in two */
4759 bdp->startspaces = bdp->start_char_vcols
4760 - (bdp->start_vcol - oap->start_vcol);
4761 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4762 }
4763 }
4764 }
4765 else
4766 {
4767 prev_pend = pend;
4768 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
4769 {
4770 /* Count a tab for what it's worth (if list mode not on) */
4771 prev_pend = pend;
4772 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
4773 bdp->end_vcol += incr;
4774 }
4775 if (bdp->end_vcol <= oap->end_vcol
4776 && (!is_del
4777 || oap->op_type == OP_APPEND
4778 || oap->op_type == OP_REPLACE)) /* line too short */
4779 {
4780#ifdef FEAT_VISUALEXTRA
4781 bdp->is_short = TRUE;
4782#endif
4783 /* Alternative: include spaces to fill up the block.
4784 * Disadvantage: can lead to trailing spaces when the line is
4785 * short where the text is put */
4786 /* if (!is_del || oap->op_type == OP_APPEND) */
4787 if (oap->op_type == OP_APPEND || virtual_op)
4788 bdp->endspaces = oap->end_vcol - bdp->end_vcol
4789 + oap->inclusive;
4790 else
4791 bdp->endspaces = 0; /* replace doesn't add characters */
4792 }
4793 else if (bdp->end_vcol > oap->end_vcol)
4794 {
4795 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4796 if (!is_del && bdp->endspaces)
4797 {
4798 bdp->endspaces = incr - bdp->endspaces;
4799 if (pend != pstart)
4800 pend = prev_pend;
4801 }
4802 }
4803 }
4804#ifdef FEAT_VISUALEXTRA
4805 bdp->end_char_vcols = incr;
4806#endif
4807 if (is_del && bdp->startspaces)
4808 pstart = prev_pstart;
4809 bdp->textlen = (int)(pend - pstart);
4810 }
4811 bdp->textcol = (colnr_T) (pstart - line);
4812 bdp->textstart = pstart;
4813}
4814#endif /* FEAT_VISUAL */
4815
4816#ifdef FEAT_RIGHTLEFT
4817static void reverse_line __ARGS((char_u *s));
4818
4819 static void
4820reverse_line(s)
4821 char_u *s;
4822{
4823 int i, j;
4824 char_u c;
4825
4826 if ((i = (int)STRLEN(s) - 1) <= 0)
4827 return;
4828
4829 curwin->w_cursor.col = i - curwin->w_cursor.col;
4830 for (j = 0; j < i; j++, i--)
4831 {
4832 c = s[i]; s[i] = s[j]; s[j] = c;
4833 }
4834}
4835
4836# define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
4837#else
4838# define RLADDSUBFIX(ptr)
4839#endif
4840
4841/*
4842 * add or subtract 'Prenum1' from a number in a line
4843 * 'command' is CTRL-A for add, CTRL-X for subtract
4844 *
4845 * return FAIL for failure, OK otherwise
4846 */
4847 int
4848do_addsub(command, Prenum1)
4849 int command;
4850 linenr_T Prenum1;
4851{
4852 int col;
4853 char_u *buf1;
4854 char_u buf2[NUMBUFLEN];
4855 int hex; /* 'X' or 'x': hex; '0': octal */
4856 static int hexupper = FALSE; /* 0xABC */
4857 long_u n;
4858 long_u oldn;
4859 char_u *ptr;
4860 int c;
4861 int length = 0; /* character length of the number */
4862 int todel;
4863 int dohex;
4864 int dooct;
4865 int doalp;
4866 int firstdigit;
4867 int negative;
4868 int subtract;
4869
4870 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
4871 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
4872 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
4873
4874 ptr = ml_get_curline();
4875 RLADDSUBFIX(ptr);
4876
4877 /*
4878 * First check if we are on a hexadecimal number, after the "0x".
4879 */
4880 col = curwin->w_cursor.col;
4881 if (dohex)
4882 while (col > 0 && vim_isxdigit(ptr[col]))
4883 --col;
4884 if ( dohex
4885 && col > 0
4886 && (ptr[col] == 'X'
4887 || ptr[col] == 'x')
4888 && ptr[col - 1] == '0'
4889 && vim_isxdigit(ptr[col + 1]))
4890 {
4891 /*
4892 * Found hexadecimal number, move to its start.
4893 */
4894 --col;
4895 }
4896 else
4897 {
4898 /*
4899 * Search forward and then backward to find the start of number.
4900 */
4901 col = curwin->w_cursor.col;
4902
4903 while (ptr[col] != NUL
4904 && !vim_isdigit(ptr[col])
4905 && !(doalp && ASCII_ISALPHA(ptr[col])))
4906 ++col;
4907
4908 while (col > 0
4909 && vim_isdigit(ptr[col - 1])
4910 && !(doalp && ASCII_ISALPHA(ptr[col])))
4911 --col;
4912 }
4913
4914 /* truncate to max length of a number */
4915 if (length >= NUMBUFLEN - 1)
4916 length = NUMBUFLEN - 2;
4917
4918 /*
4919 * If a number was found, and saving for undo works, replace the number.
4920 */
4921 firstdigit = ptr[col];
4922 RLADDSUBFIX(ptr);
4923 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
4924 || u_save_cursor() != OK)
4925 {
4926 beep_flush();
4927 return FAIL;
4928 }
4929
4930 /* get ptr again, because u_save() may have changed it */
4931 ptr = ml_get_curline();
4932 RLADDSUBFIX(ptr);
4933
4934 if (doalp && ASCII_ISALPHA(firstdigit))
4935 {
4936 /* decrement or increment alphabetic character */
4937 if (command == Ctrl_X)
4938 {
4939 if (CharOrd(firstdigit) < Prenum1)
4940 {
4941 if (isupper(firstdigit))
4942 firstdigit = 'A';
4943 else
4944 firstdigit = 'a';
4945 }
4946 else
4947#ifdef EBCDIC
4948 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
4949#else
4950 firstdigit -= Prenum1;
4951#endif
4952 }
4953 else
4954 {
4955 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
4956 {
4957 if (isupper(firstdigit))
4958 firstdigit = 'Z';
4959 else
4960 firstdigit = 'z';
4961 }
4962 else
4963#ifdef EBCDIC
4964 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
4965#else
4966 firstdigit += Prenum1;
4967#endif
4968 }
4969 curwin->w_cursor.col = col;
4970 (void)del_char(FALSE);
4971 ins_char(firstdigit);
4972 }
4973 else
4974 {
4975 negative = FALSE;
4976 if (col > 0 && ptr[col - 1] == '-') /* negative number */
4977 {
4978 --col;
4979 negative = TRUE;
4980 }
4981
4982 /* get the number value (unsigned) */
4983 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
4984
4985 /* ignore leading '-' for hex and octal numbers */
4986 if (hex && negative)
4987 {
4988 ++col;
4989 --length;
4990 negative = FALSE;
4991 }
4992
4993 /* add or subtract */
4994 subtract = FALSE;
4995 if (command == Ctrl_X)
4996 subtract ^= TRUE;
4997 if (negative)
4998 subtract ^= TRUE;
4999
5000 oldn = n;
5001 if (subtract)
5002 n -= (unsigned long)Prenum1;
5003 else
5004 n += (unsigned long)Prenum1;
5005
5006 /* handle wraparound for decimal numbers */
5007 if (!hex)
5008 {
5009 if (subtract)
5010 {
5011 if (n > oldn)
5012 {
5013 n = 1 + (n ^ (unsigned long)-1);
5014 negative ^= TRUE;
5015 }
5016 }
5017 else /* add */
5018 {
5019 if (n < oldn)
5020 {
5021 n = (n ^ (unsigned long)-1);
5022 negative ^= TRUE;
5023 }
5024 }
5025 if (n == 0)
5026 negative = FALSE;
5027 }
5028
5029 /*
5030 * Delete the old number.
5031 */
5032 curwin->w_cursor.col = col;
5033 todel = length;
5034 c = gchar_cursor();
5035 /*
5036 * Don't include the '-' in the length, only the length of the part
5037 * after it is kept the same.
5038 */
5039 if (c == '-')
5040 --length;
5041 while (todel-- > 0)
5042 {
5043 if (c < 0x100 && isalpha(c))
5044 {
5045 if (isupper(c))
5046 hexupper = TRUE;
5047 else
5048 hexupper = FALSE;
5049 }
5050 /* del_char() will mark line needing displaying */
5051 (void)del_char(FALSE);
5052 c = gchar_cursor();
5053 }
5054
5055 /*
5056 * Prepare the leading characters in buf1[].
5057 * When there are many leading zeros it could be very long. Allocate
5058 * a bit too much.
5059 */
5060 buf1 = alloc((unsigned)length + NUMBUFLEN);
5061 if (buf1 == NULL)
5062 return FAIL;
5063 ptr = buf1;
5064 if (negative)
5065 {
5066 *ptr++ = '-';
5067 }
5068 if (hex)
5069 {
5070 *ptr++ = '0';
5071 --length;
5072 }
5073 if (hex == 'x' || hex == 'X')
5074 {
5075 *ptr++ = hex;
5076 --length;
5077 }
5078
5079 /*
5080 * Put the number characters in buf2[].
5081 */
5082 if (hex == 0)
5083 sprintf((char *)buf2, "%lu", n);
5084 else if (hex == '0')
5085 sprintf((char *)buf2, "%lo", n);
5086 else if (hex && hexupper)
5087 sprintf((char *)buf2, "%lX", n);
5088 else
5089 sprintf((char *)buf2, "%lx", n);
5090 length -= (int)STRLEN(buf2);
5091
5092 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005093 * Adjust number of zeros to the new number of digits, so the
5094 * total length of the number remains the same.
5095 * Don't do this when
5096 * the result may look like an octal number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005098 if (firstdigit == '0' && !(dooct && hex == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 while (length-- > 0)
5100 *ptr++ = '0';
5101 *ptr = NUL;
5102 STRCAT(buf1, buf2);
5103 ins_str(buf1); /* insert the new number */
5104 vim_free(buf1);
5105 }
5106 --curwin->w_cursor.col;
5107 curwin->w_set_curswant = TRUE;
5108#ifdef FEAT_RIGHTLEFT
5109 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
5110 RLADDSUBFIX(ptr);
5111#endif
5112 return OK;
5113}
5114
5115#ifdef FEAT_VIMINFO
5116 int
5117read_viminfo_register(virp, force)
5118 vir_T *virp;
5119 int force;
5120{
5121 int eof;
5122 int do_it = TRUE;
5123 int size;
5124 int limit;
5125 int i;
5126 int set_prev = FALSE;
5127 char_u *str;
5128 char_u **array = NULL;
5129
5130 /* We only get here (hopefully) if line[0] == '"' */
5131 str = virp->vir_line + 1;
5132 if (*str == '"')
5133 {
5134 set_prev = TRUE;
5135 str++;
5136 }
5137 if (!ASCII_ISALNUM(*str) && *str != '-')
5138 {
5139 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5140 return TRUE; /* too many errors, pretend end-of-file */
5141 do_it = FALSE;
5142 }
5143 get_yank_register(*str++, FALSE);
5144 if (!force && y_current->y_array != NULL)
5145 do_it = FALSE;
5146 size = 0;
5147 limit = 100; /* Optimized for registers containing <= 100 lines */
5148 if (do_it)
5149 {
5150 if (set_prev)
5151 y_previous = y_current;
5152 vim_free(y_current->y_array);
5153 array = y_current->y_array =
5154 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
5155 str = skipwhite(str);
5156 if (STRNCMP(str, "CHAR", 4) == 0)
5157 y_current->y_type = MCHAR;
5158#ifdef FEAT_VISUAL
5159 else if (STRNCMP(str, "BLOCK", 5) == 0)
5160 y_current->y_type = MBLOCK;
5161#endif
5162 else
5163 y_current->y_type = MLINE;
5164 /* get the block width; if it's missing we get a zero, which is OK */
5165 str = skipwhite(skiptowhite(str));
5166#ifdef FEAT_VISUAL
5167 y_current->y_width = getdigits(&str);
5168#else
5169 (void)getdigits(&str);
5170#endif
5171 }
5172
5173 while (!(eof = viminfo_readline(virp))
5174 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5175 {
5176 if (do_it)
5177 {
5178 if (size >= limit)
5179 {
5180 y_current->y_array = (char_u **)
5181 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
5182 for (i = 0; i < limit; i++)
5183 y_current->y_array[i] = array[i];
5184 vim_free(array);
5185 limit *= 2;
5186 array = y_current->y_array;
5187 }
5188 str = viminfo_readstring(virp, 1, TRUE);
5189 if (str != NULL)
5190 array[size++] = str;
5191 else
5192 do_it = FALSE;
5193 }
5194 }
5195 if (do_it)
5196 {
5197 if (size == 0)
5198 {
5199 vim_free(array);
5200 y_current->y_array = NULL;
5201 }
5202 else if (size < limit)
5203 {
5204 y_current->y_array =
5205 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
5206 for (i = 0; i < size; i++)
5207 y_current->y_array[i] = array[i];
5208 vim_free(array);
5209 }
5210 y_current->y_size = size;
5211 }
5212 return eof;
5213}
5214
5215 void
5216write_viminfo_registers(fp)
5217 FILE *fp;
5218{
5219 int i, j;
5220 char_u *type;
5221 char_u c;
5222 int num_lines;
5223 int max_num_lines;
5224 int max_kbyte;
5225 long len;
5226
5227 fprintf(fp, _("\n# Registers:\n"));
5228
5229 /* Get '<' value, use old '"' value if '<' is not found. */
5230 max_num_lines = get_viminfo_parameter('<');
5231 if (max_num_lines < 0)
5232 max_num_lines = get_viminfo_parameter('"');
5233 if (max_num_lines == 0)
5234 return;
5235 max_kbyte = get_viminfo_parameter('s');
5236 if (max_kbyte == 0)
5237 return;
5238 for (i = 0; i < NUM_REGISTERS; i++)
5239 {
5240 if (y_regs[i].y_array == NULL)
5241 continue;
5242#ifdef FEAT_CLIPBOARD
5243 /* Skip '*'/'+' register, we don't want them back next time */
5244 if (i == STAR_REGISTER || i == PLUS_REGISTER)
5245 continue;
5246#endif
5247#ifdef FEAT_DND
5248 /* Neither do we want the '~' register */
5249 if (i == TILDE_REGISTER)
5250 continue;
5251#endif
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005252 /* Skip empty registers. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 num_lines = y_regs[i].y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005254 if (num_lines == 0
5255 || (num_lines == 1 && y_regs[i].y_type == MCHAR
5256 && STRLEN(y_regs[i].y_array[0]) == 0))
5257 continue;
5258
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259 if (max_kbyte > 0)
5260 {
5261 /* Skip register if there is more text than the maximum size. */
5262 len = 0;
5263 for (j = 0; j < num_lines; j++)
5264 len += STRLEN(y_regs[i].y_array[j]) + 1L;
5265 if (len > (long)max_kbyte * 1024L)
5266 continue;
5267 }
5268
5269 switch (y_regs[i].y_type)
5270 {
5271 case MLINE:
5272 type = (char_u *)"LINE";
5273 break;
5274 case MCHAR:
5275 type = (char_u *)"CHAR";
5276 break;
5277#ifdef FEAT_VISUAL
5278 case MBLOCK:
5279 type = (char_u *)"BLOCK";
5280 break;
5281#endif
5282 default:
5283 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005284 y_regs[i].y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 emsg(IObuff);
5286 type = (char_u *)"LINE";
5287 break;
5288 }
5289 if (y_previous == &y_regs[i])
5290 fprintf(fp, "\"");
5291 c = get_register_name(i);
5292 fprintf(fp, "\"%c\t%s\t%d\n", c, type,
5293#ifdef FEAT_VISUAL
5294 (int)y_regs[i].y_width
5295#else
5296 0
5297#endif
5298 );
5299
5300 /* If max_num_lines < 0, then we save ALL the lines in the register */
5301 if (max_num_lines > 0 && num_lines > max_num_lines)
5302 num_lines = max_num_lines;
5303 for (j = 0; j < num_lines; j++)
5304 {
5305 putc('\t', fp);
5306 viminfo_writestring(fp, y_regs[i].y_array[j]);
5307 }
5308 }
5309}
5310#endif /* FEAT_VIMINFO */
5311
5312#if defined(FEAT_CLIPBOARD) || defined(PROTO)
5313/*
5314 * SELECTION / PRIMARY ('*')
5315 *
5316 * Text selection stuff that uses the GUI selection register '*'. When using a
5317 * GUI this may be text from another window, otherwise it is the last text we
5318 * had highlighted with VIsual mode. With mouse support, clicking the middle
5319 * button performs the paste, otherwise you will need to do <"*p>. "
5320 * If not under X, it is synonymous with the clipboard register '+'.
5321 *
5322 * X CLIPBOARD ('+')
5323 *
5324 * Text selection stuff that uses the GUI clipboard register '+'.
5325 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5326 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5327 * otherwise you will need to do <"+p>. "
5328 * If not under X, it is synonymous with the selection register '*'.
5329 */
5330
5331/*
5332 * Routine to export any final X selection we had to the environment
5333 * so that the text is still available after vim has exited. X selections
5334 * only exist while the owning application exists, so we write to the
5335 * permanent (while X runs) store CUT_BUFFER0.
5336 * Dump the CLIPBOARD selection if we own it (it's logically the more
5337 * 'permanent' of the two), otherwise the PRIMARY one.
5338 * For now, use a hard-coded sanity limit of 1Mb of data.
5339 */
5340#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5341 void
5342x11_export_final_selection()
5343{
5344 Display *dpy;
5345 char_u *str = NULL;
5346 long_u len = 0;
5347 int motion_type = -1;
5348
5349# ifdef FEAT_GUI
5350 if (gui.in_use)
5351 dpy = X_DISPLAY;
5352 else
5353# endif
5354# ifdef FEAT_XCLIPBOARD
5355 dpy = xterm_dpy;
5356# else
5357 return;
5358# endif
5359
5360 /* Get selection to export */
5361 if (clip_plus.owned)
5362 motion_type = clip_convert_selection(&str, &len, &clip_plus);
5363 else if (clip_star.owned)
5364 motion_type = clip_convert_selection(&str, &len, &clip_star);
5365
5366 /* Check it's OK */
5367 if (dpy != NULL && str != NULL && motion_type >= 0
5368 && len < 1024*1024 && len > 0)
5369 {
5370 XStoreBuffer(dpy, (char *)str, (int)len, 0);
5371 XFlush(dpy);
5372 }
5373
5374 vim_free(str);
5375}
5376#endif
5377
5378 void
5379clip_free_selection(cbd)
5380 VimClipboard *cbd;
5381{
5382 struct yankreg *y_ptr = y_current;
5383
5384 if (cbd == &clip_plus)
5385 y_current = &y_regs[PLUS_REGISTER];
5386 else
5387 y_current = &y_regs[STAR_REGISTER];
5388 free_yank_all();
5389 y_current->y_size = 0;
5390 y_current = y_ptr;
5391}
5392
5393/*
5394 * Get the selected text and put it in the gui selection register '*' or '+'.
5395 */
5396 void
5397clip_get_selection(cbd)
5398 VimClipboard *cbd;
5399{
5400 struct yankreg *old_y_previous, *old_y_current;
5401 pos_T old_cursor;
5402#ifdef FEAT_VISUAL
5403 pos_T old_visual;
5404 int old_visual_mode;
5405#endif
5406 colnr_T old_curswant;
5407 int old_set_curswant;
5408 pos_T old_op_start, old_op_end;
5409 oparg_T oa;
5410 cmdarg_T ca;
5411
5412 if (cbd->owned)
5413 {
5414 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
5415 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
5416 return;
5417
5418 /* Get the text between clip_star.start & clip_star.end */
5419 old_y_previous = y_previous;
5420 old_y_current = y_current;
5421 old_cursor = curwin->w_cursor;
5422 old_curswant = curwin->w_curswant;
5423 old_set_curswant = curwin->w_set_curswant;
5424 old_op_start = curbuf->b_op_start;
5425 old_op_end = curbuf->b_op_end;
5426#ifdef FEAT_VISUAL
5427 old_visual = VIsual;
5428 old_visual_mode = VIsual_mode;
5429#endif
5430 clear_oparg(&oa);
5431 oa.regname = (cbd == &clip_plus ? '+' : '*');
5432 oa.op_type = OP_YANK;
5433 vim_memset(&ca, 0, sizeof(ca));
5434 ca.oap = &oa;
5435 ca.cmdchar = 'y';
5436 ca.count1 = 1;
5437 ca.retval = CA_NO_ADJ_OP_END;
5438 do_pending_operator(&ca, 0, TRUE);
5439 y_previous = old_y_previous;
5440 y_current = old_y_current;
5441 curwin->w_cursor = old_cursor;
5442 curwin->w_curswant = old_curswant;
5443 curwin->w_set_curswant = old_set_curswant;
5444 curbuf->b_op_start = old_op_start;
5445 curbuf->b_op_end = old_op_end;
5446#ifdef FEAT_VISUAL
5447 VIsual = old_visual;
5448 VIsual_mode = old_visual_mode;
5449#endif
5450 }
5451 else
5452 {
5453 clip_free_selection(cbd);
5454
5455 /* Try to get selected text from another window */
5456 clip_gen_request_selection(cbd);
5457 }
5458}
5459
5460/* Convert from the GUI selection string into the '*'/'+' register */
5461 void
5462clip_yank_selection(type, str, len, cbd)
5463 int type;
5464 char_u *str;
5465 long len;
5466 VimClipboard *cbd;
5467{
5468 struct yankreg *y_ptr;
5469
5470 if (cbd == &clip_plus)
5471 y_ptr = &y_regs[PLUS_REGISTER];
5472 else
5473 y_ptr = &y_regs[STAR_REGISTER];
5474
5475 clip_free_selection(cbd);
5476
5477 str_to_reg(y_ptr, type, str, len, 0L);
5478}
5479
5480/*
5481 * Convert the '*'/'+' register into a GUI selection string returned in *str
5482 * with length *len.
5483 * Returns the motion type, or -1 for failure.
5484 */
5485 int
5486clip_convert_selection(str, len, cbd)
5487 char_u **str;
5488 long_u *len;
5489 VimClipboard *cbd;
5490{
5491 char_u *p;
5492 int lnum;
5493 int i, j;
5494 int_u eolsize;
5495 struct yankreg *y_ptr;
5496
5497 if (cbd == &clip_plus)
5498 y_ptr = &y_regs[PLUS_REGISTER];
5499 else
5500 y_ptr = &y_regs[STAR_REGISTER];
5501
5502#ifdef USE_CRNL
5503 eolsize = 2;
5504#else
5505 eolsize = 1;
5506#endif
5507
5508 *str = NULL;
5509 *len = 0;
5510 if (y_ptr->y_array == NULL)
5511 return -1;
5512
5513 for (i = 0; i < y_ptr->y_size; i++)
5514 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
5515
5516 /*
5517 * Don't want newline character at end of last line if we're in MCHAR mode.
5518 */
5519 if (y_ptr->y_type == MCHAR && *len >= eolsize)
5520 *len -= eolsize;
5521
5522 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
5523 if (p == NULL)
5524 return -1;
5525 lnum = 0;
5526 for (i = 0, j = 0; i < (int)*len; i++, j++)
5527 {
5528 if (y_ptr->y_array[lnum][j] == '\n')
5529 p[i] = NUL;
5530 else if (y_ptr->y_array[lnum][j] == NUL)
5531 {
5532#ifdef USE_CRNL
5533 p[i++] = '\r';
5534#endif
5535#ifdef USE_CR
5536 p[i] = '\r';
5537#else
5538 p[i] = '\n';
5539#endif
5540 lnum++;
5541 j = -1;
5542 }
5543 else
5544 p[i] = y_ptr->y_array[lnum][j];
5545 }
5546 return y_ptr->y_type;
5547}
5548
5549
5550# if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
5551/*
5552 * If we have written to a clipboard register, send the text to the clipboard.
5553 */
5554 static void
5555may_set_selection()
5556{
5557 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
5558 {
5559 clip_own_selection(&clip_star);
5560 clip_gen_set_selection(&clip_star);
5561 }
5562 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
5563 {
5564 clip_own_selection(&clip_plus);
5565 clip_gen_set_selection(&clip_plus);
5566 }
5567}
5568# endif
5569
5570#endif /* FEAT_CLIPBOARD || PROTO */
5571
5572
5573#if defined(FEAT_DND) || defined(PROTO)
5574/*
5575 * Replace the contents of the '~' register with str.
5576 */
5577 void
5578dnd_yank_drag_data(str, len)
5579 char_u *str;
5580 long len;
5581{
5582 struct yankreg *curr;
5583
5584 curr = y_current;
5585 y_current = &y_regs[TILDE_REGISTER];
5586 free_yank_all();
5587 str_to_reg(y_current, MCHAR, str, len, 0L);
5588 y_current = curr;
5589}
5590#endif
5591
5592
5593#if defined(FEAT_EVAL) || defined(PROTO)
5594/*
5595 * Return the type of a register.
5596 * Used for getregtype()
5597 * Returns MAUTO for error.
5598 */
5599 char_u
5600get_reg_type(regname, reglen)
5601 int regname;
5602 long *reglen;
5603{
5604 switch (regname)
5605 {
5606 case '%': /* file name */
5607 case '#': /* alternate file name */
5608 case '=': /* expression */
5609 case ':': /* last command line */
5610 case '/': /* last search-pattern */
5611 case '.': /* last inserted text */
5612#ifdef FEAT_SEARCHPATH
5613 case Ctrl_F: /* Filename under cursor */
5614 case Ctrl_P: /* Path under cursor, expand via "path" */
5615#endif
5616 case Ctrl_W: /* word under cursor */
5617 case Ctrl_A: /* WORD (mnemonic All) under cursor */
5618 case '_': /* black hole: always empty */
5619 return MCHAR;
5620 }
5621
5622#ifdef FEAT_CLIPBOARD
5623 regname = may_get_selection(regname);
5624#endif
5625
5626 /* Should we check for a valid name? */
5627 get_yank_register(regname, FALSE);
5628
5629 if (y_current->y_array != NULL)
5630 {
5631#ifdef FEAT_VISUAL
5632 if (reglen != NULL && y_current->y_type == MBLOCK)
5633 *reglen = y_current->y_width;
5634#endif
5635 return y_current->y_type;
5636 }
5637 return MAUTO;
5638}
5639
5640/*
5641 * Return the contents of a register as a single allocated string.
5642 * Used for "@r" in expressions and for getreg().
5643 * Returns NULL for error.
5644 */
5645 char_u *
Bram Moolenaarde934d72005-05-22 22:09:40 +00005646get_reg_contents(regname, allowexpr, expr_src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647 int regname;
Bram Moolenaarde934d72005-05-22 22:09:40 +00005648 int allowexpr; /* allow "=" register */
5649 int expr_src; /* get expression for "=" register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650{
5651 long i;
5652 char_u *retval;
5653 int allocated;
5654 long len;
5655
5656 /* Don't allow using an expression register inside an expression */
5657 if (regname == '=')
5658 {
5659 if (allowexpr)
Bram Moolenaarde934d72005-05-22 22:09:40 +00005660 {
5661 if (expr_src)
5662 return get_expr_line_src();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663 return get_expr_line();
Bram Moolenaarde934d72005-05-22 22:09:40 +00005664 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005665 return NULL;
5666 }
5667
5668 if (regname == '@') /* "@@" is used for unnamed register */
5669 regname = '"';
5670
5671 /* check for valid regname */
5672 if (regname != NUL && !valid_yank_reg(regname, FALSE))
5673 return NULL;
5674
5675#ifdef FEAT_CLIPBOARD
5676 regname = may_get_selection(regname);
5677#endif
5678
5679 if (get_spec_reg(regname, &retval, &allocated, FALSE))
5680 {
5681 if (retval == NULL)
5682 return NULL;
5683 if (!allocated)
5684 retval = vim_strsave(retval);
5685 return retval;
5686 }
5687
5688 get_yank_register(regname, FALSE);
5689 if (y_current->y_array == NULL)
5690 return NULL;
5691
5692 /*
5693 * Compute length of resulting string.
5694 */
5695 len = 0;
5696 for (i = 0; i < y_current->y_size; ++i)
5697 {
5698 len += (long)STRLEN(y_current->y_array[i]);
5699 /*
5700 * Insert a newline between lines and after last line if
5701 * y_type is MLINE.
5702 */
5703 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5704 ++len;
5705 }
5706
5707 retval = lalloc(len + 1, TRUE);
5708
5709 /*
5710 * Copy the lines of the yank register into the string.
5711 */
5712 if (retval != NULL)
5713 {
5714 len = 0;
5715 for (i = 0; i < y_current->y_size; ++i)
5716 {
5717 STRCPY(retval + len, y_current->y_array[i]);
5718 len += (long)STRLEN(retval + len);
5719
5720 /*
5721 * Insert a NL between lines and after the last line if y_type is
5722 * MLINE.
5723 */
5724 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5725 retval[len++] = '\n';
5726 }
5727 retval[len] = NUL;
5728 }
5729
5730 return retval;
5731}
5732
5733/*
5734 * Store string "str" in register "name".
5735 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
5736 * If "must_append" is TRUE, always append to the register. Otherwise append
5737 * if "name" is an uppercase letter.
5738 * Note: "maxlen" and "must_append" don't work for the "/" register.
5739 * Careful: 'str' is modified, you may have to use a copy!
5740 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
5741 */
5742 void
5743write_reg_contents(name, str, maxlen, must_append)
5744 int name;
5745 char_u *str;
5746 int maxlen;
5747 int must_append;
5748{
5749 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
5750}
5751
5752 void
5753write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
5754 int name;
5755 char_u *str;
5756 int maxlen;
5757 int must_append;
5758 int yank_type;
5759 long block_len;
5760{
5761 struct yankreg *old_y_previous, *old_y_current;
5762 long len;
5763
Bram Moolenaare7566042005-06-17 22:00:15 +00005764 if (maxlen >= 0)
5765 len = maxlen;
5766 else
5767 len = (long)STRLEN(str);
5768
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769 /* Special case: '/' search pattern */
5770 if (name == '/')
5771 {
5772 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
5773 return;
5774 }
5775
Bram Moolenaare7566042005-06-17 22:00:15 +00005776#ifdef FEAT_EVAL
5777 if (name == '=')
5778 {
5779 char_u *p, *s;
5780
5781 p = vim_strnsave(str, (int)len);
5782 if (p == NULL)
5783 return;
5784 if (must_append)
5785 {
5786 s = concat_str(get_expr_line_src(), p);
5787 vim_free(p);
5788 p = s;
5789
5790 }
5791 set_expr_line(p);
5792 return;
5793 }
5794#endif
5795
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
5797 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005798 emsg_invreg(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 return;
5800 }
5801
5802 if (name == '_') /* black hole: nothing to do */
5803 return;
5804
5805 /* Don't want to change the current (unnamed) register */
5806 old_y_previous = y_previous;
5807 old_y_current = y_current;
5808
5809 get_yank_register(name, TRUE);
5810 if (!y_append && !must_append)
5811 free_yank_all();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812#ifndef FEAT_VISUAL
5813 /* Just in case - make sure we don't use MBLOCK */
5814 if (yank_type == MBLOCK)
5815 yank_type = MAUTO;
5816#endif
5817 if (yank_type == MAUTO)
5818 yank_type = ((len > 0 && (str[len - 1] == '\n' || str[len - 1] == '\r'))
5819 ? MLINE : MCHAR);
5820 str_to_reg(y_current, yank_type, str, len, block_len);
5821
5822# ifdef FEAT_CLIPBOARD
5823 /* Send text of clipboard register to the clipboard. */
5824 may_set_selection();
5825# endif
5826
5827 /* ':let @" = "val"' should change the meaning of the "" register */
5828 if (name != '"')
5829 y_previous = old_y_previous;
5830 y_current = old_y_current;
5831}
5832#endif /* FEAT_EVAL */
5833
5834#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
5835/*
5836 * Put a string into a register. When the register is not empty, the string
5837 * is appended.
5838 */
5839 static void
5840str_to_reg(y_ptr, type, str, len, blocklen)
5841 struct yankreg *y_ptr; /* pointer to yank register */
5842 int type; /* MCHAR, MLINE or MBLOCK */
5843 char_u *str; /* string to put in register */
5844 long len; /* length of string */
5845 long blocklen; /* width of Visual block */
5846{
5847 int lnum;
5848 long start;
5849 long i;
5850 int extra;
5851 int newlines; /* number of lines added */
5852 int extraline = 0; /* extra line at the end */
5853 int append = FALSE; /* append to last line in register */
5854 char_u *s;
5855 char_u **pp;
5856#ifdef FEAT_VISUAL
5857 long maxlen;
5858#endif
5859
5860 if (y_ptr->y_array == NULL) /* NULL means emtpy register */
5861 y_ptr->y_size = 0;
5862
5863 /*
5864 * Count the number of lines within the string
5865 */
5866 newlines = 0;
5867 for (i = 0; i < len; i++)
5868 if (str[i] == '\n')
5869 ++newlines;
5870 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
5871 {
5872 extraline = 1;
5873 ++newlines; /* count extra newline at the end */
5874 }
5875 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
5876 {
5877 append = TRUE;
5878 --newlines; /* uncount newline when appending first line */
5879 }
5880
5881 /*
5882 * Allocate an array to hold the pointers to the new register lines.
5883 * If the register was not empty, move the existing lines to the new array.
5884 */
5885 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
5886 * sizeof(char_u *), TRUE);
5887 if (pp == NULL) /* out of memory */
5888 return;
5889 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
5890 pp[lnum] = y_ptr->y_array[lnum];
5891 vim_free(y_ptr->y_array);
5892 y_ptr->y_array = pp;
5893#ifdef FEAT_VISUAL
5894 maxlen = 0;
5895#endif
5896
5897 /*
5898 * Find the end of each line and save it into the array.
5899 */
5900 for (start = 0; start < len + extraline; start += i + 1)
5901 {
5902 for (i = start; i < len; ++i) /* find the end of the line */
5903 if (str[i] == '\n')
5904 break;
5905 i -= start; /* i is now length of line */
5906#ifdef FEAT_VISUAL
5907 if (i > maxlen)
5908 maxlen = i;
5909#endif
5910 if (append)
5911 {
5912 --lnum;
5913 extra = (int)STRLEN(y_ptr->y_array[lnum]);
5914 }
5915 else
5916 extra = 0;
5917 s = alloc((unsigned)(i + extra + 1));
5918 if (s == NULL)
5919 break;
5920 if (extra)
5921 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
5922 if (append)
5923 vim_free(y_ptr->y_array[lnum]);
5924 if (i)
5925 mch_memmove(s + extra, str + start, (size_t)i);
5926 extra += i;
5927 s[extra] = NUL;
5928 y_ptr->y_array[lnum++] = s;
5929 while (--extra >= 0)
5930 {
5931 if (*s == NUL)
5932 *s = '\n'; /* replace NUL with newline */
5933 ++s;
5934 }
5935 append = FALSE; /* only first line is appended */
5936 }
5937 y_ptr->y_type = type;
5938 y_ptr->y_size = lnum;
5939# ifdef FEAT_VISUAL
5940 if (type == MBLOCK)
5941 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
5942 else
5943 y_ptr->y_width = 0;
5944# endif
5945}
5946#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
5947
5948 void
5949clear_oparg(oap)
5950 oparg_T *oap;
5951{
5952 vim_memset(oap, 0, sizeof(oparg_T));
5953}
5954
Bram Moolenaar7c626922005-02-07 22:01:03 +00005955static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005956
5957/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00005958 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005959 *
5960 * "Words" are counted by looking for boundaries between non-space and
5961 * space characters. (it seems to produce results that match 'wc'.)
5962 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00005963 * Return value is byte count; word count for the line is added to "*wc".
5964 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 *
5966 * The function will only examine the first "limit" characters in the
5967 * line, stopping if it encounters an end-of-line (NUL byte). In that
5968 * case, eol_size will be added to the character count to account for
5969 * the size of the EOL character.
5970 */
5971 static long
Bram Moolenaar7c626922005-02-07 22:01:03 +00005972line_count_info(line, wc, cc, limit, eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 char_u *line;
5974 long *wc;
Bram Moolenaar7c626922005-02-07 22:01:03 +00005975 long *cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976 long limit;
5977 int eol_size;
5978{
Bram Moolenaar7c626922005-02-07 22:01:03 +00005979 long i;
5980 long words = 0;
5981 long chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005982 int is_word = 0;
5983
Bram Moolenaar7c626922005-02-07 22:01:03 +00005984 for (i = 0; line[i] && i < limit; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005985 {
5986 if (is_word)
5987 {
5988 if (vim_isspace(line[i]))
5989 {
5990 words++;
5991 is_word = 0;
5992 }
5993 }
5994 else if (!vim_isspace(line[i]))
5995 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00005996 ++chars;
5997#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005998 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00005999#else
6000 ++i;
6001#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006002 }
6003
6004 if (is_word)
6005 words++;
6006 *wc += words;
6007
6008 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006009 if (line[i] == NUL && i < limit)
6010 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006012 chars += eol_size;
6013 }
6014 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 return i;
6016}
6017
6018/*
6019 * Give some info about the position of the cursor (for "g CTRL-G").
6020 * In Visual mode, give some info about the selected region. (In this case,
6021 * the *_count_cursor variables store running totals for the selection.)
6022 */
6023 void
6024cursor_pos_info()
6025{
6026 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006027 char_u buf1[50];
6028 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006029 linenr_T lnum;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006030 long byte_count = 0;
6031 long byte_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032 long char_count = 0;
6033 long char_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006034 long word_count = 0;
6035 long word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006036 int eol_size;
6037 long last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038#ifdef FEAT_VISUAL
6039 long line_count_selected = 0;
6040 pos_T min_pos, max_pos;
6041 oparg_T oparg;
6042 struct block_def bd;
6043#endif
6044
6045 /*
6046 * Compute the length of the file in characters.
6047 */
6048 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6049 {
6050 MSG(_(no_lines_msg));
6051 }
6052 else
6053 {
6054 if (get_fileformat(curbuf) == EOL_DOS)
6055 eol_size = 2;
6056 else
6057 eol_size = 1;
6058
6059#ifdef FEAT_VISUAL
6060 if (VIsual_active)
6061 {
6062 if (lt(VIsual, curwin->w_cursor))
6063 {
6064 min_pos = VIsual;
6065 max_pos = curwin->w_cursor;
6066 }
6067 else
6068 {
6069 min_pos = curwin->w_cursor;
6070 max_pos = VIsual;
6071 }
6072 if (*p_sel == 'e' && max_pos.col > 0)
6073 --max_pos.col;
6074
6075 if (VIsual_mode == Ctrl_V)
6076 {
6077 oparg.is_VIsual = 1;
6078 oparg.block_mode = TRUE;
6079 oparg.op_type = OP_NOP;
6080 getvcols(curwin, &min_pos, &max_pos,
6081 &oparg.start_vcol, &oparg.end_vcol);
6082 /* Swap the start, end vcol if needed */
6083 if (oparg.end_vcol < oparg.start_vcol)
6084 {
6085 oparg.end_vcol += oparg.start_vcol;
6086 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
6087 oparg.end_vcol -= oparg.start_vcol;
6088 }
6089 }
6090 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
6091 }
6092#endif
6093
6094 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6095 {
6096 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006097 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006098 {
6099 ui_breakcheck();
6100 if (got_int)
6101 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006102 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103 }
6104
6105#ifdef FEAT_VISUAL
6106 /* Do extra processing for VIsual mode. */
6107 if (VIsual_active
6108 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
6109 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00006110 char_u *s = NULL;
6111 long len = 0L;
6112
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113 switch (VIsual_mode)
6114 {
6115 case Ctrl_V:
6116# ifdef FEAT_VIRTUALEDIT
6117 virtual_op = virtual_active();
6118# endif
6119 block_prep(&oparg, &bd, lnum, 0);
6120# ifdef FEAT_VIRTUALEDIT
6121 virtual_op = MAYBE;
6122# endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00006123 s = bd.textstart;
6124 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125 break;
6126 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00006127 s = ml_get(lnum);
6128 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129 break;
6130 case 'v':
6131 {
6132 colnr_T start_col = (lnum == min_pos.lnum)
6133 ? min_pos.col : 0;
6134 colnr_T end_col = (lnum == max_pos.lnum)
6135 ? max_pos.col - start_col + 1 : MAXCOL;
6136
Bram Moolenaardef9e822004-12-31 20:58:58 +00006137 s = ml_get(lnum) + start_col;
6138 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139 }
6140 break;
6141 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00006142 if (s != NULL)
6143 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00006144 byte_count_cursor += line_count_info(s, &word_count_cursor,
6145 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00006146 if (lnum == curbuf->b_ml.ml_line_count
6147 && !curbuf->b_p_eol
6148 && curbuf->b_p_bin
Bram Moolenaarec2dad62005-01-02 11:36:03 +00006149 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006150 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00006151 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006152 }
6153 else
6154#endif
6155 {
6156 /* In non-visual mode, check for the line the cursor is on */
6157 if (lnum == curwin->w_cursor.lnum)
6158 {
6159 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006160 char_count_cursor += char_count;
6161 byte_count_cursor = byte_count +
6162 line_count_info(ml_get(lnum),
6163 &word_count_cursor, &char_count_cursor,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164 (long)(curwin->w_cursor.col + 1), eol_size);
6165 }
6166 }
6167 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006168 byte_count += line_count_info(ml_get(lnum), &word_count,
6169 &char_count, (long)MAXCOL, eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170 }
6171
6172 /* Correction for when last line doesn't have an EOL. */
6173 if (!curbuf->b_p_eol && curbuf->b_p_bin)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006174 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175
6176#ifdef FEAT_VISUAL
6177 if (VIsual_active)
6178 {
6179 if (VIsual_mode == Ctrl_V)
6180 {
6181 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
6182 &max_pos.col);
6183 sprintf((char *)buf1, _("%ld Cols; "),
6184 (long)(oparg.end_vcol - oparg.start_vcol + 1));
6185 }
6186 else
6187 buf1[0] = NUL;
6188
Bram Moolenaar7c626922005-02-07 22:01:03 +00006189 if (char_count_cursor == byte_count_cursor
Bram Moolenaar555b2802005-05-19 21:08:39 +00006190 && char_count == byte_count)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006191 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006192 buf1, line_count_selected,
6193 (long)curbuf->b_ml.ml_line_count,
6194 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006195 byte_count_cursor, byte_count);
6196 else
6197 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"),
6198 buf1, line_count_selected,
6199 (long)curbuf->b_ml.ml_line_count,
6200 word_count_cursor, word_count,
6201 char_count_cursor, char_count,
6202 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203 }
6204 else
6205#endif
6206 {
6207 p = ml_get_curline();
6208 validate_virtcol();
6209 col_print(buf1, (int)curwin->w_cursor.col + 1,
6210 (int)curwin->w_virtcol + 1);
6211 col_print(buf2, (int)STRLEN(p), linetabsize(p));
6212
Bram Moolenaar7c626922005-02-07 22:01:03 +00006213 if (char_count_cursor == byte_count_cursor
6214 && char_count == byte_count)
6215 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 +00006216 (char *)buf1, (char *)buf2,
6217 (long)curwin->w_cursor.lnum,
6218 (long)curbuf->b_ml.ml_line_count,
6219 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006220 byte_count_cursor, byte_count);
6221 else
6222 sprintf((char *)IObuff, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"),
6223 (char *)buf1, (char *)buf2,
6224 (long)curwin->w_cursor.lnum,
6225 (long)curbuf->b_ml.ml_line_count,
6226 word_count_cursor, word_count,
6227 char_count_cursor, char_count,
6228 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006229 }
6230
6231#ifdef FEAT_MBYTE
Bram Moolenaar7c626922005-02-07 22:01:03 +00006232 byte_count = bomb_size();
6233 if (byte_count > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006234 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
Bram Moolenaar7c626922005-02-07 22:01:03 +00006235 byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006236#endif
6237 /* Don't shorten this message, the user asked for it. */
6238 p = p_shm;
6239 p_shm = (char_u *)"";
6240 msg(IObuff);
6241 p_shm = p;
6242 }
6243}