blob: a88c907392875798bfcd983aec0051f47233b481 [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 Moolenaara5fac542005-10-12 20:58:49 +00003727#ifdef FEAT_VIRTUALEDIT
3728 col = curwin->w_cursor.col;
3729#endif
3730 dec_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731#ifdef FEAT_VIRTUALEDIT
3732 if (ve_flags == VE_ALL)
Bram Moolenaara5fac542005-10-12 20:58:49 +00003733 curwin->w_cursor.coladd = col - curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734#endif
3735 }
3736}
3737
3738#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
3739/*
3740 * Return TRUE if lines starting with '#' should be left aligned.
3741 */
3742 int
3743preprocs_left()
3744{
3745 return
3746# ifdef FEAT_SMARTINDENT
3747# ifdef FEAT_CINDENT
3748 (curbuf->b_p_si && !curbuf->b_p_cin) ||
3749# else
3750 curbuf->b_p_si
3751# endif
3752# endif
3753# ifdef FEAT_CINDENT
3754 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE))
3755# endif
3756 ;
3757}
3758#endif
3759
3760/* Return the character name of the register with the given number */
3761 int
3762get_register_name(num)
3763 int num;
3764{
3765 if (num == -1)
3766 return '"';
3767 else if (num < 10)
3768 return num + '0';
3769 else if (num == DELETION_REGISTER)
3770 return '-';
3771#ifdef FEAT_CLIPBOARD
3772 else if (num == STAR_REGISTER)
3773 return '*';
3774 else if (num == PLUS_REGISTER)
3775 return '+';
3776#endif
3777 else
3778 {
3779#ifdef EBCDIC
3780 int i;
3781
3782 /* EBCDIC is really braindead ... */
3783 i = 'a' + (num - 10);
3784 if (i > 'i')
3785 i += 7;
3786 if (i > 'r')
3787 i += 8;
3788 return i;
3789#else
3790 return num + 'a' - 10;
3791#endif
3792 }
3793}
3794
3795/*
3796 * ":dis" and ":registers": Display the contents of the yank registers.
3797 */
3798 void
3799ex_display(eap)
3800 exarg_T *eap;
3801{
3802 int i, n;
3803 long j;
3804 char_u *p;
3805 struct yankreg *yb;
3806 int name;
3807 int attr;
3808 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003809#ifdef FEAT_MBYTE
3810 int clen;
3811#else
3812# define clen 1
3813#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814
3815 if (arg != NULL && *arg == NUL)
3816 arg = NULL;
3817 attr = hl_attr(HLF_8);
3818
3819 /* Highlight title */
3820 MSG_PUTS_TITLE(_("\n--- Registers ---"));
3821 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
3822 {
3823 name = get_register_name(i);
3824 if (arg != NULL && vim_strchr(arg, name) == NULL)
3825 continue; /* did not ask for this register */
3826
3827#ifdef FEAT_CLIPBOARD
3828 /* Adjust register name for "unnamed" in 'clipboard'.
3829 * When it's a clipboard register, fill it with the current contents
3830 * of the clipboard. */
3831 adjust_clip_reg(&name);
3832 (void)may_get_selection(name);
3833#endif
3834
3835 if (i == -1)
3836 {
3837 if (y_previous != NULL)
3838 yb = y_previous;
3839 else
3840 yb = &(y_regs[0]);
3841 }
3842 else
3843 yb = &(y_regs[i]);
3844 if (yb->y_array != NULL)
3845 {
3846 msg_putchar('\n');
3847 msg_putchar('"');
3848 msg_putchar(name);
3849 MSG_PUTS(" ");
3850
3851 n = (int)Columns - 6;
3852 for (j = 0; j < yb->y_size && n > 1; ++j)
3853 {
3854 if (j)
3855 {
3856 MSG_PUTS_ATTR("^J", attr);
3857 n -= 2;
3858 }
3859 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
3860 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003862 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003863#endif
3864 msg_outtrans_len(p, clen);
3865#ifdef FEAT_MBYTE
3866 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867#endif
3868 }
3869 }
3870 if (n > 1 && yb->y_type == MLINE)
3871 MSG_PUTS_ATTR("^J", attr);
3872 out_flush(); /* show one line at a time */
3873 }
3874 ui_breakcheck();
3875 }
3876
3877 /*
3878 * display last inserted text
3879 */
3880 if ((p = get_last_insert()) != NULL
3881 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
3882 {
3883 MSG_PUTS("\n\". ");
3884 dis_msg(p, TRUE);
3885 }
3886
3887 /*
3888 * display last command line
3889 */
3890 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
3891 && !got_int)
3892 {
3893 MSG_PUTS("\n\": ");
3894 dis_msg(last_cmdline, FALSE);
3895 }
3896
3897 /*
3898 * display current file name
3899 */
3900 if (curbuf->b_fname != NULL
3901 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
3902 {
3903 MSG_PUTS("\n\"% ");
3904 dis_msg(curbuf->b_fname, FALSE);
3905 }
3906
3907 /*
3908 * display alternate file name
3909 */
3910 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
3911 {
3912 char_u *fname;
3913 linenr_T dummy;
3914
3915 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
3916 {
3917 MSG_PUTS("\n\"# ");
3918 dis_msg(fname, FALSE);
3919 }
3920 }
3921
3922 /*
3923 * display last search pattern
3924 */
3925 if (last_search_pat() != NULL
3926 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
3927 {
3928 MSG_PUTS("\n\"/ ");
3929 dis_msg(last_search_pat(), FALSE);
3930 }
3931
3932#ifdef FEAT_EVAL
3933 /*
3934 * display last used expression
3935 */
3936 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
3937 && !got_int)
3938 {
3939 MSG_PUTS("\n\"= ");
3940 dis_msg(expr_line, FALSE);
3941 }
3942#endif
3943}
3944
3945/*
3946 * display a string for do_dis()
3947 * truncate at end of screen line
3948 */
3949 static void
3950dis_msg(p, skip_esc)
3951 char_u *p;
3952 int skip_esc; /* if TRUE, ignore trailing ESC */
3953{
3954 int n;
3955#ifdef FEAT_MBYTE
3956 int l;
3957#endif
3958
3959 n = (int)Columns - 6;
3960 while (*p != NUL
3961 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
3962 && (n -= ptr2cells(p)) >= 0)
3963 {
3964#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003965 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 {
3967 msg_outtrans_len(p, l);
3968 p += l;
3969 }
3970 else
3971#endif
3972 msg_outtrans_len(p++, 1);
3973 }
3974 ui_breakcheck();
3975}
3976
3977/*
3978 * join 'count' lines (minimal 2), including u_save()
3979 */
3980 void
3981do_do_join(count, insert_space)
3982 long count;
3983 int insert_space;
3984{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003985 colnr_T col = MAXCOL;
3986
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
3988 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
3989 return;
3990
3991 while (--count > 0)
3992 {
3993 line_breakcheck();
3994 if (got_int || do_join(insert_space) == FAIL)
3995 {
3996 beep_flush();
3997 break;
3998 }
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003999 if (col == MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4000 col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 }
4002
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004003 /* Vi compatible: use the column of the first join */
4004 if (col != MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
4005 curwin->w_cursor.col = col;
4006
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007#if 0
4008 /*
4009 * Need to update the screen if the line where the cursor is became too
4010 * long to fit on the screen.
4011 */
4012 update_topline_redraw();
4013#endif
4014}
4015
4016/*
4017 * Join two lines at the cursor position.
4018 * "redraw" is TRUE when the screen should be updated.
4019 * Caller must have setup for undo.
4020 *
4021 * return FAIL for failure, OK ohterwise
4022 */
4023 int
4024do_join(insert_space)
4025 int insert_space;
4026{
4027 char_u *curr;
4028 char_u *next, *next_start;
4029 char_u *newp;
4030 int endcurr1, endcurr2;
4031 int currsize; /* size of the current line */
4032 int nextsize; /* size of the next line */
4033 int spaces; /* number of spaces to insert */
4034 linenr_T t;
4035
4036 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4037 return FAIL; /* can't join on last line */
4038
4039 curr = ml_get_curline();
4040 currsize = (int)STRLEN(curr);
4041 endcurr1 = endcurr2 = NUL;
4042 if (insert_space && currsize > 0)
4043 {
4044#ifdef FEAT_MBYTE
4045 if (has_mbyte)
4046 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004047 next = curr + currsize;
4048 mb_ptr_back(curr, next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049 endcurr1 = (*mb_ptr2char)(next);
4050 if (next > curr)
4051 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004052 mb_ptr_back(curr, next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 endcurr2 = (*mb_ptr2char)(next);
4054 }
4055 }
4056 else
4057#endif
4058 {
4059 endcurr1 = *(curr + currsize - 1);
4060 if (currsize > 1)
4061 endcurr2 = *(curr + currsize - 2);
4062 }
4063 }
4064
4065 next = next_start = ml_get((linenr_T)(curwin->w_cursor.lnum + 1));
4066 spaces = 0;
4067 if (insert_space)
4068 {
4069 next = skipwhite(next);
4070 if (*next != ')' && currsize != 0 && endcurr1 != TAB
4071#ifdef FEAT_MBYTE
4072 && (!has_format_option(FO_MBYTE_JOIN)
4073 || (mb_ptr2char(next) < 0x100 && endcurr1 < 0x100))
4074 && (!has_format_option(FO_MBYTE_JOIN2)
4075 || mb_ptr2char(next) < 0x100 || endcurr1 < 0x100)
4076#endif
4077 )
4078 {
4079 /* don't add a space if the line is ending in a space */
4080 if (endcurr1 == ' ')
4081 endcurr1 = endcurr2;
4082 else
4083 ++spaces;
4084 /* extra space when 'joinspaces' set and line ends in '.' */
4085 if ( p_js
4086 && (endcurr1 == '.'
4087 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4088 && (endcurr1 == '?' || endcurr1 == '!'))))
4089 ++spaces;
4090 }
4091 }
4092 nextsize = (int)STRLEN(next);
4093
4094 newp = alloc_check((unsigned)(currsize + nextsize + spaces + 1));
4095 if (newp == NULL)
4096 return FAIL;
4097
4098 /*
4099 * Insert the next line first, because we already have that pointer.
4100 * Curr has to be obtained again, because getting next will have
4101 * invalidated it.
4102 */
4103 mch_memmove(newp + currsize + spaces, next, (size_t)(nextsize + 1));
4104
4105 curr = ml_get_curline();
4106 mch_memmove(newp, curr, (size_t)currsize);
4107
4108 copy_spaces(newp + currsize, (size_t)spaces);
4109
4110 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4111
4112 /* Only report the change in the first line here, del_lines() will report
4113 * the deleted line. */
4114 changed_lines(curwin->w_cursor.lnum, currsize,
4115 curwin->w_cursor.lnum + 1, 0L);
4116
4117 /*
4118 * Delete the following line. To do this we move the cursor there
4119 * briefly, and then move it back. After del_lines() the cursor may
4120 * have moved up (last line deleted), so the current lnum is kept in t.
4121 *
4122 * Move marks from the deleted line to the joined line, adjusting the
4123 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4124 * should not really be a problem.
4125 */
4126 t = curwin->w_cursor.lnum;
4127 mark_col_adjust(t + 1, (colnr_T)0, (linenr_T)-1,
4128 (long)(currsize + spaces - (next - next_start)));
4129 ++curwin->w_cursor.lnum;
4130 del_lines(1L, FALSE);
4131 curwin->w_cursor.lnum = t;
4132
4133 /*
4134 * go to first character of the joined line
4135 */
4136 curwin->w_cursor.col = currsize;
4137 check_cursor_col();
4138#ifdef FEAT_VIRTUALEDIT
4139 curwin->w_cursor.coladd = 0;
4140#endif
4141 curwin->w_set_curswant = TRUE;
4142
4143 return OK;
4144}
4145
4146#ifdef FEAT_COMMENTS
4147/*
4148 * Return TRUE if the two comment leaders given are the same. "lnum" is
4149 * the first line. White-space is ignored. Note that the whole of
4150 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4151 */
4152 static int
4153same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
4154 linenr_T lnum;
4155 int leader1_len;
4156 char_u *leader1_flags;
4157 int leader2_len;
4158 char_u *leader2_flags;
4159{
4160 int idx1 = 0, idx2 = 0;
4161 char_u *p;
4162 char_u *line1;
4163 char_u *line2;
4164
4165 if (leader1_len == 0)
4166 return (leader2_len == 0);
4167
4168 /*
4169 * If first leader has 'f' flag, the lines can be joined only if the
4170 * second line does not have a leader.
4171 * If first leader has 'e' flag, the lines can never be joined.
4172 * If fist leader has 's' flag, the lines can only be joined if there is
4173 * some text after it and the second line has the 'm' flag.
4174 */
4175 if (leader1_flags != NULL)
4176 {
4177 for (p = leader1_flags; *p && *p != ':'; ++p)
4178 {
4179 if (*p == COM_FIRST)
4180 return (leader2_len == 0);
4181 if (*p == COM_END)
4182 return FALSE;
4183 if (*p == COM_START)
4184 {
4185 if (*(ml_get(lnum) + leader1_len) == NUL)
4186 return FALSE;
4187 if (leader2_flags == NULL || leader2_len == 0)
4188 return FALSE;
4189 for (p = leader2_flags; *p && *p != ':'; ++p)
4190 if (*p == COM_MIDDLE)
4191 return TRUE;
4192 return FALSE;
4193 }
4194 }
4195 }
4196
4197 /*
4198 * Get current line and next line, compare the leaders.
4199 * The first line has to be saved, only one line can be locked at a time.
4200 */
4201 line1 = vim_strsave(ml_get(lnum));
4202 if (line1 != NULL)
4203 {
4204 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4205 ;
4206 line2 = ml_get(lnum + 1);
4207 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4208 {
4209 if (!vim_iswhite(line2[idx2]))
4210 {
4211 if (line1[idx1++] != line2[idx2])
4212 break;
4213 }
4214 else
4215 while (vim_iswhite(line1[idx1]))
4216 ++idx1;
4217 }
4218 vim_free(line1);
4219 }
4220 return (idx2 == leader2_len && idx1 == leader1_len);
4221}
4222#endif
4223
4224/*
4225 * implementation of the format operator 'gq'
4226 */
4227 void
4228op_format(oap, keep_cursor)
4229 oparg_T *oap;
4230 int keep_cursor; /* keep cursor on same text char */
4231{
4232 long old_line_count = curbuf->b_ml.ml_line_count;
4233
4234 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4235 * can put it back there. */
4236 curwin->w_cursor = oap->cursor_start;
4237
4238 if (u_save((linenr_T)(oap->start.lnum - 1),
4239 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4240 return;
4241 curwin->w_cursor = oap->start;
4242
4243#ifdef FEAT_VISUAL
4244 if (oap->is_VIsual)
4245 /* When there is no change: need to remove the Visual selection */
4246 redraw_curbuf_later(INVERTED);
4247#endif
4248
4249 /* Set '[ mark at the start of the formatted area */
4250 curbuf->b_op_start = oap->start;
4251
4252 /* For "gw" remember the cursor position and put it back below (adjusted
4253 * for joined and split lines). */
4254 if (keep_cursor)
4255 saved_cursor = oap->cursor_start;
4256
4257 format_lines(oap->line_count);
4258
4259 /*
4260 * Leave the cursor at the first non-blank of the last formatted line.
4261 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4262 * line, so "." will do the next lines.
4263 */
4264 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4265 ++curwin->w_cursor.lnum;
4266 beginline(BL_WHITE | BL_FIX);
4267 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4268 msgmore(old_line_count);
4269
4270 /* put '] mark on the end of the formatted area */
4271 curbuf->b_op_end = curwin->w_cursor;
4272
4273 if (keep_cursor)
4274 {
4275 curwin->w_cursor = saved_cursor;
4276 saved_cursor.lnum = 0;
4277 }
4278
4279#ifdef FEAT_VISUAL
4280 if (oap->is_VIsual)
4281 {
4282 win_T *wp;
4283
4284 FOR_ALL_WINDOWS(wp)
4285 {
4286 if (wp->w_old_cursor_lnum != 0)
4287 {
4288 /* When lines have been inserted or deleted, adjust the end of
4289 * the Visual area to be redrawn. */
4290 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4291 wp->w_old_cursor_lnum += old_line_count;
4292 else
4293 wp->w_old_visual_lnum += old_line_count;
4294 }
4295 }
4296 }
4297#endif
4298}
4299
4300/*
4301 * Format "line_count" lines, starting at the cursor position.
4302 * When "line_count" is negative, format until the end of the paragraph.
4303 * Lines after the cursor line are saved for undo, caller must have saved the
4304 * first line.
4305 */
4306 void
4307format_lines(line_count)
4308 linenr_T line_count;
4309{
4310 int max_len;
4311 int is_not_par; /* current line not part of parag. */
4312 int next_is_not_par; /* next line not part of paragraph */
4313 int is_end_par; /* at end of paragraph */
4314 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4315 int next_is_start_par = FALSE;
4316#ifdef FEAT_COMMENTS
4317 int leader_len = 0; /* leader len of current line */
4318 int next_leader_len; /* leader len of next line */
4319 char_u *leader_flags = NULL; /* flags for leader of current line */
4320 char_u *next_leader_flags; /* flags for leader of next line */
4321 int do_comments; /* format comments */
4322#endif
4323 int advance = TRUE;
4324 int second_indent = -1;
4325 int do_second_indent;
4326 int do_number_indent;
4327 int do_trail_white;
4328 int first_par_line = TRUE;
4329 int smd_save;
4330 long count;
4331 int need_set_indent = TRUE; /* set indent of next paragraph */
4332 int force_format = FALSE;
4333 int old_State = State;
4334
4335 /* length of a line to force formatting: 3 * 'tw' */
4336 max_len = comp_textwidth(TRUE) * 3;
4337
4338 /* check for 'q', '2' and '1' in 'formatoptions' */
4339#ifdef FEAT_COMMENTS
4340 do_comments = has_format_option(FO_Q_COMS);
4341#endif
4342 do_second_indent = has_format_option(FO_Q_SECOND);
4343 do_number_indent = has_format_option(FO_Q_NUMBER);
4344 do_trail_white = has_format_option(FO_WHITE_PAR);
4345
4346 /*
4347 * Get info about the previous and current line.
4348 */
4349 if (curwin->w_cursor.lnum > 1)
4350 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4351#ifdef FEAT_COMMENTS
4352 , &leader_len, &leader_flags, do_comments
4353#endif
4354 );
4355 else
4356 is_not_par = TRUE;
4357 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4358#ifdef FEAT_COMMENTS
4359 , &next_leader_len, &next_leader_flags, do_comments
4360#endif
4361 );
4362 is_end_par = (is_not_par || next_is_not_par);
4363 if (!is_end_par && do_trail_white)
4364 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4365
4366 curwin->w_cursor.lnum--;
4367 for (count = line_count; count != 0 && !got_int; --count)
4368 {
4369 /*
4370 * Advance to next paragraph.
4371 */
4372 if (advance)
4373 {
4374 curwin->w_cursor.lnum++;
4375 prev_is_end_par = is_end_par;
4376 is_not_par = next_is_not_par;
4377#ifdef FEAT_COMMENTS
4378 leader_len = next_leader_len;
4379 leader_flags = next_leader_flags;
4380#endif
4381 }
4382
4383 /*
4384 * The last line to be formatted.
4385 */
4386 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4387 {
4388 next_is_not_par = TRUE;
4389#ifdef FEAT_COMMENTS
4390 next_leader_len = 0;
4391 next_leader_flags = NULL;
4392#endif
4393 }
4394 else
4395 {
4396 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4397#ifdef FEAT_COMMENTS
4398 , &next_leader_len, &next_leader_flags, do_comments
4399#endif
4400 );
4401 if (do_number_indent)
4402 next_is_start_par =
4403 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4404 }
4405 advance = TRUE;
4406 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4407 if (!is_end_par && do_trail_white)
4408 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4409
4410 /*
4411 * Skip lines that are not in a paragraph.
4412 */
4413 if (is_not_par)
4414 {
4415 if (line_count < 0)
4416 break;
4417 }
4418 else
4419 {
4420 /*
4421 * For the first line of a paragraph, check indent of second line.
4422 * Don't do this for comments and empty lines.
4423 */
4424 if (first_par_line
4425 && (do_second_indent || do_number_indent)
4426 && prev_is_end_par
4427 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4428#ifdef FEAT_COMMENTS
4429 && leader_len == 0
4430 && next_leader_len == 0
4431#endif
4432 )
4433 {
4434 if (do_second_indent
4435 && !lineempty(curwin->w_cursor.lnum + 1))
4436 second_indent = get_indent_lnum(curwin->w_cursor.lnum + 1);
4437 else if (do_number_indent)
4438 second_indent = get_number_indent(curwin->w_cursor.lnum);
4439 }
4440
4441 /*
4442 * When the comment leader changes, it's the end of the paragraph.
4443 */
4444 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4445#ifdef FEAT_COMMENTS
4446 || !same_leader(curwin->w_cursor.lnum,
4447 leader_len, leader_flags,
4448 next_leader_len, next_leader_flags)
4449#endif
4450 )
4451 is_end_par = TRUE;
4452
4453 /*
4454 * If we have got to the end of a paragraph, or the line is
4455 * getting long, format it.
4456 */
4457 if (is_end_par || force_format)
4458 {
4459 if (need_set_indent)
4460 /* replace indent in first line with minimal number of
4461 * tabs and spaces, according to current options */
4462 (void)set_indent(get_indent(), SIN_CHANGED);
4463
4464 /* put cursor on last non-space */
4465 State = NORMAL; /* don't go past end-of-line */
4466 coladvance((colnr_T)MAXCOL);
4467 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
4468 dec_cursor();
4469
4470 /* do the formatting, without 'showmode' */
4471 State = INSERT; /* for open_line() */
4472 smd_save = p_smd;
4473 p_smd = FALSE;
4474 insertchar(NUL, INSCHAR_FORMAT
4475#ifdef FEAT_COMMENTS
4476 + (do_comments ? INSCHAR_DO_COM : 0)
4477#endif
4478 , second_indent);
4479 State = old_State;
4480 p_smd = smd_save;
4481 second_indent = -1;
4482 /* at end of par.: need to set indent of next par. */
4483 need_set_indent = is_end_par;
4484 if (is_end_par)
4485 {
4486 /* When called with a negative line count, break at the
4487 * end of the paragraph. */
4488 if (line_count < 0)
4489 break;
4490 first_par_line = TRUE;
4491 }
4492 force_format = FALSE;
4493 }
4494
4495 /*
4496 * When still in same paragraph, join the lines together. But
4497 * first delete the comment leader from the second line.
4498 */
4499 if (!is_end_par)
4500 {
4501 advance = FALSE;
4502 curwin->w_cursor.lnum++;
4503 curwin->w_cursor.col = 0;
4504 if (line_count < 0 && u_save_cursor() == FAIL)
4505 break;
4506#ifdef FEAT_COMMENTS
4507 (void)del_bytes((long)next_leader_len, FALSE);
4508 if (next_leader_len > 0)
4509 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
4510 (long)-next_leader_len);
4511#endif
4512 curwin->w_cursor.lnum--;
4513 if (do_join(TRUE) == FAIL)
4514 {
4515 beep_flush();
4516 break;
4517 }
4518 first_par_line = FALSE;
4519 /* If the line is getting long, format it next time */
4520 if (STRLEN(ml_get_curline()) > (size_t)max_len)
4521 force_format = TRUE;
4522 else
4523 force_format = FALSE;
4524 }
4525 }
4526 line_breakcheck();
4527 }
4528}
4529
4530/*
4531 * Return TRUE if line "lnum" ends in a white character.
4532 */
4533 static int
4534ends_in_white(lnum)
4535 linenr_T lnum;
4536{
4537 char_u *s = ml_get(lnum);
4538 size_t l;
4539
4540 if (*s == NUL)
4541 return FALSE;
4542 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
4543 * invocation may call function multiple times". */
4544 l = STRLEN(s) - 1;
4545 return vim_iswhite(s[l]);
4546}
4547
4548/*
4549 * Blank lines, and lines containing only the comment leader, are left
4550 * untouched by the formatting. The function returns TRUE in this
4551 * case. It also returns TRUE when a line starts with the end of a comment
4552 * ('e' in comment flags), so that this line is skipped, and not joined to the
4553 * previous line. A new paragraph starts after a blank line, or when the
4554 * comment leader changes -- webb.
4555 */
4556#ifdef FEAT_COMMENTS
4557 static int
4558fmt_check_par(lnum, leader_len, leader_flags, do_comments)
4559 linenr_T lnum;
4560 int *leader_len;
4561 char_u **leader_flags;
4562 int do_comments;
4563{
4564 char_u *flags = NULL; /* init for GCC */
4565 char_u *ptr;
4566
4567 ptr = ml_get(lnum);
4568 if (do_comments)
4569 *leader_len = get_leader_len(ptr, leader_flags, FALSE);
4570 else
4571 *leader_len = 0;
4572
4573 if (*leader_len > 0)
4574 {
4575 /*
4576 * Search for 'e' flag in comment leader flags.
4577 */
4578 flags = *leader_flags;
4579 while (*flags && *flags != ':' && *flags != COM_END)
4580 ++flags;
4581 }
4582
4583 return (*skipwhite(ptr + *leader_len) == NUL
4584 || (*leader_len > 0 && *flags == COM_END)
4585 || startPS(lnum, NUL, FALSE));
4586}
4587#else
4588 static int
4589fmt_check_par(lnum)
4590 linenr_T lnum;
4591{
4592 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
4593}
4594#endif
4595
4596/*
4597 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
4598 * previous line is in the same paragraph. Used for auto-formatting.
4599 */
4600 int
4601paragraph_start(lnum)
4602 linenr_T lnum;
4603{
4604 char_u *p;
4605#ifdef FEAT_COMMENTS
4606 int leader_len = 0; /* leader len of current line */
4607 char_u *leader_flags = NULL; /* flags for leader of current line */
4608 int next_leader_len; /* leader len of next line */
4609 char_u *next_leader_flags; /* flags for leader of next line */
4610 int do_comments; /* format comments */
4611#endif
4612
4613 if (lnum <= 1)
4614 return TRUE; /* start of the file */
4615
4616 p = ml_get(lnum - 1);
4617 if (*p == NUL)
4618 return TRUE; /* after empty line */
4619
4620#ifdef FEAT_COMMENTS
4621 do_comments = has_format_option(FO_Q_COMS);
4622#endif
4623 if (fmt_check_par(lnum - 1
4624#ifdef FEAT_COMMENTS
4625 , &leader_len, &leader_flags, do_comments
4626#endif
4627 ))
4628 return TRUE; /* after non-paragraph line */
4629
4630 if (fmt_check_par(lnum
4631#ifdef FEAT_COMMENTS
4632 , &next_leader_len, &next_leader_flags, do_comments
4633#endif
4634 ))
4635 return TRUE; /* "lnum" is not a paragraph line */
4636
4637 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
4638 return TRUE; /* missing trailing space in previous line. */
4639
4640 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
4641 return TRUE; /* numbered item starts in "lnum". */
4642
4643#ifdef FEAT_COMMENTS
4644 if (!same_leader(lnum - 1, leader_len, leader_flags,
4645 next_leader_len, next_leader_flags))
4646 return TRUE; /* change of comment leader. */
4647#endif
4648
4649 return FALSE;
4650}
4651
4652#ifdef FEAT_VISUAL
4653/*
4654 * prepare a few things for block mode yank/delete/tilde
4655 *
4656 * for delete:
4657 * - textlen includes the first/last char to be (partly) deleted
4658 * - start/endspaces is the number of columns that are taken by the
4659 * first/last deleted char minus the number of columns that have to be
4660 * deleted. for yank and tilde:
4661 * - textlen includes the first/last char to be wholly yanked
4662 * - start/endspaces is the number of columns of the first/last yanked char
4663 * that are to be yanked.
4664 */
4665 static void
4666block_prep(oap, bdp, lnum, is_del)
4667 oparg_T *oap;
4668 struct block_def *bdp;
4669 linenr_T lnum;
4670 int is_del;
4671{
4672 int incr = 0;
4673 char_u *pend;
4674 char_u *pstart;
4675 char_u *line;
4676 char_u *prev_pstart;
4677 char_u *prev_pend;
4678
4679 bdp->startspaces = 0;
4680 bdp->endspaces = 0;
4681 bdp->textlen = 0;
4682 bdp->start_vcol = 0;
4683 bdp->end_vcol = 0;
4684#ifdef FEAT_VISUALEXTRA
4685 bdp->is_short = FALSE;
4686 bdp->is_oneChar = FALSE;
4687 bdp->pre_whitesp = 0;
4688 bdp->pre_whitesp_c = 0;
4689 bdp->end_char_vcols = 0;
4690#endif
4691 bdp->start_char_vcols = 0;
4692
4693 line = ml_get(lnum);
4694 pstart = line;
4695 prev_pstart = line;
4696 while (bdp->start_vcol < oap->start_vcol && *pstart)
4697 {
4698 /* Count a tab for what it's worth (if list mode not on) */
4699 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
4700 bdp->start_vcol += incr;
4701#ifdef FEAT_VISUALEXTRA
4702 if (vim_iswhite(*pstart))
4703 {
4704 bdp->pre_whitesp += incr;
4705 bdp->pre_whitesp_c++;
4706 }
4707 else
4708 {
4709 bdp->pre_whitesp = 0;
4710 bdp->pre_whitesp_c = 0;
4711 }
4712#endif
4713 prev_pstart = pstart;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004714 mb_ptr_adv(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 }
4716 bdp->start_char_vcols = incr;
4717 if (bdp->start_vcol < oap->start_vcol) /* line too short */
4718 {
4719 bdp->end_vcol = bdp->start_vcol;
4720#ifdef FEAT_VISUALEXTRA
4721 bdp->is_short = TRUE;
4722#endif
4723 if (!is_del || oap->op_type == OP_APPEND)
4724 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
4725 }
4726 else
4727 {
4728 /* notice: this converts partly selected Multibyte characters to
4729 * spaces, too. */
4730 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
4731 if (is_del && bdp->startspaces)
4732 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
4733 pend = pstart;
4734 bdp->end_vcol = bdp->start_vcol;
4735 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
4736 {
4737#ifdef FEAT_VISUALEXTRA
4738 bdp->is_oneChar = TRUE;
4739#endif
4740 if (oap->op_type == OP_INSERT)
4741 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4742 else if (oap->op_type == OP_APPEND)
4743 {
4744 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
4745 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4746 }
4747 else
4748 {
4749 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
4750 if (is_del && oap->op_type != OP_LSHIFT)
4751 {
4752 /* just putting the sum of those two into
4753 * bdp->startspaces doesn't work for Visual replace,
4754 * so we have to split the tab in two */
4755 bdp->startspaces = bdp->start_char_vcols
4756 - (bdp->start_vcol - oap->start_vcol);
4757 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4758 }
4759 }
4760 }
4761 else
4762 {
4763 prev_pend = pend;
4764 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
4765 {
4766 /* Count a tab for what it's worth (if list mode not on) */
4767 prev_pend = pend;
4768 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
4769 bdp->end_vcol += incr;
4770 }
4771 if (bdp->end_vcol <= oap->end_vcol
4772 && (!is_del
4773 || oap->op_type == OP_APPEND
4774 || oap->op_type == OP_REPLACE)) /* line too short */
4775 {
4776#ifdef FEAT_VISUALEXTRA
4777 bdp->is_short = TRUE;
4778#endif
4779 /* Alternative: include spaces to fill up the block.
4780 * Disadvantage: can lead to trailing spaces when the line is
4781 * short where the text is put */
4782 /* if (!is_del || oap->op_type == OP_APPEND) */
4783 if (oap->op_type == OP_APPEND || virtual_op)
4784 bdp->endspaces = oap->end_vcol - bdp->end_vcol
4785 + oap->inclusive;
4786 else
4787 bdp->endspaces = 0; /* replace doesn't add characters */
4788 }
4789 else if (bdp->end_vcol > oap->end_vcol)
4790 {
4791 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4792 if (!is_del && bdp->endspaces)
4793 {
4794 bdp->endspaces = incr - bdp->endspaces;
4795 if (pend != pstart)
4796 pend = prev_pend;
4797 }
4798 }
4799 }
4800#ifdef FEAT_VISUALEXTRA
4801 bdp->end_char_vcols = incr;
4802#endif
4803 if (is_del && bdp->startspaces)
4804 pstart = prev_pstart;
4805 bdp->textlen = (int)(pend - pstart);
4806 }
4807 bdp->textcol = (colnr_T) (pstart - line);
4808 bdp->textstart = pstart;
4809}
4810#endif /* FEAT_VISUAL */
4811
4812#ifdef FEAT_RIGHTLEFT
4813static void reverse_line __ARGS((char_u *s));
4814
4815 static void
4816reverse_line(s)
4817 char_u *s;
4818{
4819 int i, j;
4820 char_u c;
4821
4822 if ((i = (int)STRLEN(s) - 1) <= 0)
4823 return;
4824
4825 curwin->w_cursor.col = i - curwin->w_cursor.col;
4826 for (j = 0; j < i; j++, i--)
4827 {
4828 c = s[i]; s[i] = s[j]; s[j] = c;
4829 }
4830}
4831
4832# define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
4833#else
4834# define RLADDSUBFIX(ptr)
4835#endif
4836
4837/*
4838 * add or subtract 'Prenum1' from a number in a line
4839 * 'command' is CTRL-A for add, CTRL-X for subtract
4840 *
4841 * return FAIL for failure, OK otherwise
4842 */
4843 int
4844do_addsub(command, Prenum1)
4845 int command;
4846 linenr_T Prenum1;
4847{
4848 int col;
4849 char_u *buf1;
4850 char_u buf2[NUMBUFLEN];
4851 int hex; /* 'X' or 'x': hex; '0': octal */
4852 static int hexupper = FALSE; /* 0xABC */
4853 long_u n;
4854 long_u oldn;
4855 char_u *ptr;
4856 int c;
4857 int length = 0; /* character length of the number */
4858 int todel;
4859 int dohex;
4860 int dooct;
4861 int doalp;
4862 int firstdigit;
4863 int negative;
4864 int subtract;
4865
4866 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
4867 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
4868 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
4869
4870 ptr = ml_get_curline();
4871 RLADDSUBFIX(ptr);
4872
4873 /*
4874 * First check if we are on a hexadecimal number, after the "0x".
4875 */
4876 col = curwin->w_cursor.col;
4877 if (dohex)
4878 while (col > 0 && vim_isxdigit(ptr[col]))
4879 --col;
4880 if ( dohex
4881 && col > 0
4882 && (ptr[col] == 'X'
4883 || ptr[col] == 'x')
4884 && ptr[col - 1] == '0'
4885 && vim_isxdigit(ptr[col + 1]))
4886 {
4887 /*
4888 * Found hexadecimal number, move to its start.
4889 */
4890 --col;
4891 }
4892 else
4893 {
4894 /*
4895 * Search forward and then backward to find the start of number.
4896 */
4897 col = curwin->w_cursor.col;
4898
4899 while (ptr[col] != NUL
4900 && !vim_isdigit(ptr[col])
4901 && !(doalp && ASCII_ISALPHA(ptr[col])))
4902 ++col;
4903
4904 while (col > 0
4905 && vim_isdigit(ptr[col - 1])
4906 && !(doalp && ASCII_ISALPHA(ptr[col])))
4907 --col;
4908 }
4909
4910 /* truncate to max length of a number */
4911 if (length >= NUMBUFLEN - 1)
4912 length = NUMBUFLEN - 2;
4913
4914 /*
4915 * If a number was found, and saving for undo works, replace the number.
4916 */
4917 firstdigit = ptr[col];
4918 RLADDSUBFIX(ptr);
4919 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
4920 || u_save_cursor() != OK)
4921 {
4922 beep_flush();
4923 return FAIL;
4924 }
4925
4926 /* get ptr again, because u_save() may have changed it */
4927 ptr = ml_get_curline();
4928 RLADDSUBFIX(ptr);
4929
4930 if (doalp && ASCII_ISALPHA(firstdigit))
4931 {
4932 /* decrement or increment alphabetic character */
4933 if (command == Ctrl_X)
4934 {
4935 if (CharOrd(firstdigit) < Prenum1)
4936 {
4937 if (isupper(firstdigit))
4938 firstdigit = 'A';
4939 else
4940 firstdigit = 'a';
4941 }
4942 else
4943#ifdef EBCDIC
4944 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
4945#else
4946 firstdigit -= Prenum1;
4947#endif
4948 }
4949 else
4950 {
4951 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
4952 {
4953 if (isupper(firstdigit))
4954 firstdigit = 'Z';
4955 else
4956 firstdigit = 'z';
4957 }
4958 else
4959#ifdef EBCDIC
4960 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
4961#else
4962 firstdigit += Prenum1;
4963#endif
4964 }
4965 curwin->w_cursor.col = col;
4966 (void)del_char(FALSE);
4967 ins_char(firstdigit);
4968 }
4969 else
4970 {
4971 negative = FALSE;
4972 if (col > 0 && ptr[col - 1] == '-') /* negative number */
4973 {
4974 --col;
4975 negative = TRUE;
4976 }
4977
4978 /* get the number value (unsigned) */
4979 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
4980
4981 /* ignore leading '-' for hex and octal numbers */
4982 if (hex && negative)
4983 {
4984 ++col;
4985 --length;
4986 negative = FALSE;
4987 }
4988
4989 /* add or subtract */
4990 subtract = FALSE;
4991 if (command == Ctrl_X)
4992 subtract ^= TRUE;
4993 if (negative)
4994 subtract ^= TRUE;
4995
4996 oldn = n;
4997 if (subtract)
4998 n -= (unsigned long)Prenum1;
4999 else
5000 n += (unsigned long)Prenum1;
5001
5002 /* handle wraparound for decimal numbers */
5003 if (!hex)
5004 {
5005 if (subtract)
5006 {
5007 if (n > oldn)
5008 {
5009 n = 1 + (n ^ (unsigned long)-1);
5010 negative ^= TRUE;
5011 }
5012 }
5013 else /* add */
5014 {
5015 if (n < oldn)
5016 {
5017 n = (n ^ (unsigned long)-1);
5018 negative ^= TRUE;
5019 }
5020 }
5021 if (n == 0)
5022 negative = FALSE;
5023 }
5024
5025 /*
5026 * Delete the old number.
5027 */
5028 curwin->w_cursor.col = col;
5029 todel = length;
5030 c = gchar_cursor();
5031 /*
5032 * Don't include the '-' in the length, only the length of the part
5033 * after it is kept the same.
5034 */
5035 if (c == '-')
5036 --length;
5037 while (todel-- > 0)
5038 {
5039 if (c < 0x100 && isalpha(c))
5040 {
5041 if (isupper(c))
5042 hexupper = TRUE;
5043 else
5044 hexupper = FALSE;
5045 }
5046 /* del_char() will mark line needing displaying */
5047 (void)del_char(FALSE);
5048 c = gchar_cursor();
5049 }
5050
5051 /*
5052 * Prepare the leading characters in buf1[].
5053 * When there are many leading zeros it could be very long. Allocate
5054 * a bit too much.
5055 */
5056 buf1 = alloc((unsigned)length + NUMBUFLEN);
5057 if (buf1 == NULL)
5058 return FAIL;
5059 ptr = buf1;
5060 if (negative)
5061 {
5062 *ptr++ = '-';
5063 }
5064 if (hex)
5065 {
5066 *ptr++ = '0';
5067 --length;
5068 }
5069 if (hex == 'x' || hex == 'X')
5070 {
5071 *ptr++ = hex;
5072 --length;
5073 }
5074
5075 /*
5076 * Put the number characters in buf2[].
5077 */
5078 if (hex == 0)
5079 sprintf((char *)buf2, "%lu", n);
5080 else if (hex == '0')
5081 sprintf((char *)buf2, "%lo", n);
5082 else if (hex && hexupper)
5083 sprintf((char *)buf2, "%lX", n);
5084 else
5085 sprintf((char *)buf2, "%lx", n);
5086 length -= (int)STRLEN(buf2);
5087
5088 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005089 * Adjust number of zeros to the new number of digits, so the
5090 * total length of the number remains the same.
5091 * Don't do this when
5092 * the result may look like an octal number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005094 if (firstdigit == '0' && !(dooct && hex == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 while (length-- > 0)
5096 *ptr++ = '0';
5097 *ptr = NUL;
5098 STRCAT(buf1, buf2);
5099 ins_str(buf1); /* insert the new number */
5100 vim_free(buf1);
5101 }
5102 --curwin->w_cursor.col;
5103 curwin->w_set_curswant = TRUE;
5104#ifdef FEAT_RIGHTLEFT
5105 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
5106 RLADDSUBFIX(ptr);
5107#endif
5108 return OK;
5109}
5110
5111#ifdef FEAT_VIMINFO
5112 int
5113read_viminfo_register(virp, force)
5114 vir_T *virp;
5115 int force;
5116{
5117 int eof;
5118 int do_it = TRUE;
5119 int size;
5120 int limit;
5121 int i;
5122 int set_prev = FALSE;
5123 char_u *str;
5124 char_u **array = NULL;
5125
5126 /* We only get here (hopefully) if line[0] == '"' */
5127 str = virp->vir_line + 1;
5128 if (*str == '"')
5129 {
5130 set_prev = TRUE;
5131 str++;
5132 }
5133 if (!ASCII_ISALNUM(*str) && *str != '-')
5134 {
5135 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5136 return TRUE; /* too many errors, pretend end-of-file */
5137 do_it = FALSE;
5138 }
5139 get_yank_register(*str++, FALSE);
5140 if (!force && y_current->y_array != NULL)
5141 do_it = FALSE;
5142 size = 0;
5143 limit = 100; /* Optimized for registers containing <= 100 lines */
5144 if (do_it)
5145 {
5146 if (set_prev)
5147 y_previous = y_current;
5148 vim_free(y_current->y_array);
5149 array = y_current->y_array =
5150 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
5151 str = skipwhite(str);
5152 if (STRNCMP(str, "CHAR", 4) == 0)
5153 y_current->y_type = MCHAR;
5154#ifdef FEAT_VISUAL
5155 else if (STRNCMP(str, "BLOCK", 5) == 0)
5156 y_current->y_type = MBLOCK;
5157#endif
5158 else
5159 y_current->y_type = MLINE;
5160 /* get the block width; if it's missing we get a zero, which is OK */
5161 str = skipwhite(skiptowhite(str));
5162#ifdef FEAT_VISUAL
5163 y_current->y_width = getdigits(&str);
5164#else
5165 (void)getdigits(&str);
5166#endif
5167 }
5168
5169 while (!(eof = viminfo_readline(virp))
5170 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5171 {
5172 if (do_it)
5173 {
5174 if (size >= limit)
5175 {
5176 y_current->y_array = (char_u **)
5177 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
5178 for (i = 0; i < limit; i++)
5179 y_current->y_array[i] = array[i];
5180 vim_free(array);
5181 limit *= 2;
5182 array = y_current->y_array;
5183 }
5184 str = viminfo_readstring(virp, 1, TRUE);
5185 if (str != NULL)
5186 array[size++] = str;
5187 else
5188 do_it = FALSE;
5189 }
5190 }
5191 if (do_it)
5192 {
5193 if (size == 0)
5194 {
5195 vim_free(array);
5196 y_current->y_array = NULL;
5197 }
5198 else if (size < limit)
5199 {
5200 y_current->y_array =
5201 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
5202 for (i = 0; i < size; i++)
5203 y_current->y_array[i] = array[i];
5204 vim_free(array);
5205 }
5206 y_current->y_size = size;
5207 }
5208 return eof;
5209}
5210
5211 void
5212write_viminfo_registers(fp)
5213 FILE *fp;
5214{
5215 int i, j;
5216 char_u *type;
5217 char_u c;
5218 int num_lines;
5219 int max_num_lines;
5220 int max_kbyte;
5221 long len;
5222
5223 fprintf(fp, _("\n# Registers:\n"));
5224
5225 /* Get '<' value, use old '"' value if '<' is not found. */
5226 max_num_lines = get_viminfo_parameter('<');
5227 if (max_num_lines < 0)
5228 max_num_lines = get_viminfo_parameter('"');
5229 if (max_num_lines == 0)
5230 return;
5231 max_kbyte = get_viminfo_parameter('s');
5232 if (max_kbyte == 0)
5233 return;
5234 for (i = 0; i < NUM_REGISTERS; i++)
5235 {
5236 if (y_regs[i].y_array == NULL)
5237 continue;
5238#ifdef FEAT_CLIPBOARD
5239 /* Skip '*'/'+' register, we don't want them back next time */
5240 if (i == STAR_REGISTER || i == PLUS_REGISTER)
5241 continue;
5242#endif
5243#ifdef FEAT_DND
5244 /* Neither do we want the '~' register */
5245 if (i == TILDE_REGISTER)
5246 continue;
5247#endif
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005248 /* Skip empty registers. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249 num_lines = y_regs[i].y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005250 if (num_lines == 0
5251 || (num_lines == 1 && y_regs[i].y_type == MCHAR
5252 && STRLEN(y_regs[i].y_array[0]) == 0))
5253 continue;
5254
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 if (max_kbyte > 0)
5256 {
5257 /* Skip register if there is more text than the maximum size. */
5258 len = 0;
5259 for (j = 0; j < num_lines; j++)
5260 len += STRLEN(y_regs[i].y_array[j]) + 1L;
5261 if (len > (long)max_kbyte * 1024L)
5262 continue;
5263 }
5264
5265 switch (y_regs[i].y_type)
5266 {
5267 case MLINE:
5268 type = (char_u *)"LINE";
5269 break;
5270 case MCHAR:
5271 type = (char_u *)"CHAR";
5272 break;
5273#ifdef FEAT_VISUAL
5274 case MBLOCK:
5275 type = (char_u *)"BLOCK";
5276 break;
5277#endif
5278 default:
5279 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005280 y_regs[i].y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281 emsg(IObuff);
5282 type = (char_u *)"LINE";
5283 break;
5284 }
5285 if (y_previous == &y_regs[i])
5286 fprintf(fp, "\"");
5287 c = get_register_name(i);
5288 fprintf(fp, "\"%c\t%s\t%d\n", c, type,
5289#ifdef FEAT_VISUAL
5290 (int)y_regs[i].y_width
5291#else
5292 0
5293#endif
5294 );
5295
5296 /* If max_num_lines < 0, then we save ALL the lines in the register */
5297 if (max_num_lines > 0 && num_lines > max_num_lines)
5298 num_lines = max_num_lines;
5299 for (j = 0; j < num_lines; j++)
5300 {
5301 putc('\t', fp);
5302 viminfo_writestring(fp, y_regs[i].y_array[j]);
5303 }
5304 }
5305}
5306#endif /* FEAT_VIMINFO */
5307
5308#if defined(FEAT_CLIPBOARD) || defined(PROTO)
5309/*
5310 * SELECTION / PRIMARY ('*')
5311 *
5312 * Text selection stuff that uses the GUI selection register '*'. When using a
5313 * GUI this may be text from another window, otherwise it is the last text we
5314 * had highlighted with VIsual mode. With mouse support, clicking the middle
5315 * button performs the paste, otherwise you will need to do <"*p>. "
5316 * If not under X, it is synonymous with the clipboard register '+'.
5317 *
5318 * X CLIPBOARD ('+')
5319 *
5320 * Text selection stuff that uses the GUI clipboard register '+'.
5321 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5322 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5323 * otherwise you will need to do <"+p>. "
5324 * If not under X, it is synonymous with the selection register '*'.
5325 */
5326
5327/*
5328 * Routine to export any final X selection we had to the environment
5329 * so that the text is still available after vim has exited. X selections
5330 * only exist while the owning application exists, so we write to the
5331 * permanent (while X runs) store CUT_BUFFER0.
5332 * Dump the CLIPBOARD selection if we own it (it's logically the more
5333 * 'permanent' of the two), otherwise the PRIMARY one.
5334 * For now, use a hard-coded sanity limit of 1Mb of data.
5335 */
5336#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5337 void
5338x11_export_final_selection()
5339{
5340 Display *dpy;
5341 char_u *str = NULL;
5342 long_u len = 0;
5343 int motion_type = -1;
5344
5345# ifdef FEAT_GUI
5346 if (gui.in_use)
5347 dpy = X_DISPLAY;
5348 else
5349# endif
5350# ifdef FEAT_XCLIPBOARD
5351 dpy = xterm_dpy;
5352# else
5353 return;
5354# endif
5355
5356 /* Get selection to export */
5357 if (clip_plus.owned)
5358 motion_type = clip_convert_selection(&str, &len, &clip_plus);
5359 else if (clip_star.owned)
5360 motion_type = clip_convert_selection(&str, &len, &clip_star);
5361
5362 /* Check it's OK */
5363 if (dpy != NULL && str != NULL && motion_type >= 0
5364 && len < 1024*1024 && len > 0)
5365 {
5366 XStoreBuffer(dpy, (char *)str, (int)len, 0);
5367 XFlush(dpy);
5368 }
5369
5370 vim_free(str);
5371}
5372#endif
5373
5374 void
5375clip_free_selection(cbd)
5376 VimClipboard *cbd;
5377{
5378 struct yankreg *y_ptr = y_current;
5379
5380 if (cbd == &clip_plus)
5381 y_current = &y_regs[PLUS_REGISTER];
5382 else
5383 y_current = &y_regs[STAR_REGISTER];
5384 free_yank_all();
5385 y_current->y_size = 0;
5386 y_current = y_ptr;
5387}
5388
5389/*
5390 * Get the selected text and put it in the gui selection register '*' or '+'.
5391 */
5392 void
5393clip_get_selection(cbd)
5394 VimClipboard *cbd;
5395{
5396 struct yankreg *old_y_previous, *old_y_current;
5397 pos_T old_cursor;
5398#ifdef FEAT_VISUAL
5399 pos_T old_visual;
5400 int old_visual_mode;
5401#endif
5402 colnr_T old_curswant;
5403 int old_set_curswant;
5404 pos_T old_op_start, old_op_end;
5405 oparg_T oa;
5406 cmdarg_T ca;
5407
5408 if (cbd->owned)
5409 {
5410 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
5411 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
5412 return;
5413
5414 /* Get the text between clip_star.start & clip_star.end */
5415 old_y_previous = y_previous;
5416 old_y_current = y_current;
5417 old_cursor = curwin->w_cursor;
5418 old_curswant = curwin->w_curswant;
5419 old_set_curswant = curwin->w_set_curswant;
5420 old_op_start = curbuf->b_op_start;
5421 old_op_end = curbuf->b_op_end;
5422#ifdef FEAT_VISUAL
5423 old_visual = VIsual;
5424 old_visual_mode = VIsual_mode;
5425#endif
5426 clear_oparg(&oa);
5427 oa.regname = (cbd == &clip_plus ? '+' : '*');
5428 oa.op_type = OP_YANK;
5429 vim_memset(&ca, 0, sizeof(ca));
5430 ca.oap = &oa;
5431 ca.cmdchar = 'y';
5432 ca.count1 = 1;
5433 ca.retval = CA_NO_ADJ_OP_END;
5434 do_pending_operator(&ca, 0, TRUE);
5435 y_previous = old_y_previous;
5436 y_current = old_y_current;
5437 curwin->w_cursor = old_cursor;
5438 curwin->w_curswant = old_curswant;
5439 curwin->w_set_curswant = old_set_curswant;
5440 curbuf->b_op_start = old_op_start;
5441 curbuf->b_op_end = old_op_end;
5442#ifdef FEAT_VISUAL
5443 VIsual = old_visual;
5444 VIsual_mode = old_visual_mode;
5445#endif
5446 }
5447 else
5448 {
5449 clip_free_selection(cbd);
5450
5451 /* Try to get selected text from another window */
5452 clip_gen_request_selection(cbd);
5453 }
5454}
5455
5456/* Convert from the GUI selection string into the '*'/'+' register */
5457 void
5458clip_yank_selection(type, str, len, cbd)
5459 int type;
5460 char_u *str;
5461 long len;
5462 VimClipboard *cbd;
5463{
5464 struct yankreg *y_ptr;
5465
5466 if (cbd == &clip_plus)
5467 y_ptr = &y_regs[PLUS_REGISTER];
5468 else
5469 y_ptr = &y_regs[STAR_REGISTER];
5470
5471 clip_free_selection(cbd);
5472
5473 str_to_reg(y_ptr, type, str, len, 0L);
5474}
5475
5476/*
5477 * Convert the '*'/'+' register into a GUI selection string returned in *str
5478 * with length *len.
5479 * Returns the motion type, or -1 for failure.
5480 */
5481 int
5482clip_convert_selection(str, len, cbd)
5483 char_u **str;
5484 long_u *len;
5485 VimClipboard *cbd;
5486{
5487 char_u *p;
5488 int lnum;
5489 int i, j;
5490 int_u eolsize;
5491 struct yankreg *y_ptr;
5492
5493 if (cbd == &clip_plus)
5494 y_ptr = &y_regs[PLUS_REGISTER];
5495 else
5496 y_ptr = &y_regs[STAR_REGISTER];
5497
5498#ifdef USE_CRNL
5499 eolsize = 2;
5500#else
5501 eolsize = 1;
5502#endif
5503
5504 *str = NULL;
5505 *len = 0;
5506 if (y_ptr->y_array == NULL)
5507 return -1;
5508
5509 for (i = 0; i < y_ptr->y_size; i++)
5510 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
5511
5512 /*
5513 * Don't want newline character at end of last line if we're in MCHAR mode.
5514 */
5515 if (y_ptr->y_type == MCHAR && *len >= eolsize)
5516 *len -= eolsize;
5517
5518 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
5519 if (p == NULL)
5520 return -1;
5521 lnum = 0;
5522 for (i = 0, j = 0; i < (int)*len; i++, j++)
5523 {
5524 if (y_ptr->y_array[lnum][j] == '\n')
5525 p[i] = NUL;
5526 else if (y_ptr->y_array[lnum][j] == NUL)
5527 {
5528#ifdef USE_CRNL
5529 p[i++] = '\r';
5530#endif
5531#ifdef USE_CR
5532 p[i] = '\r';
5533#else
5534 p[i] = '\n';
5535#endif
5536 lnum++;
5537 j = -1;
5538 }
5539 else
5540 p[i] = y_ptr->y_array[lnum][j];
5541 }
5542 return y_ptr->y_type;
5543}
5544
5545
5546# if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
5547/*
5548 * If we have written to a clipboard register, send the text to the clipboard.
5549 */
5550 static void
5551may_set_selection()
5552{
5553 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
5554 {
5555 clip_own_selection(&clip_star);
5556 clip_gen_set_selection(&clip_star);
5557 }
5558 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
5559 {
5560 clip_own_selection(&clip_plus);
5561 clip_gen_set_selection(&clip_plus);
5562 }
5563}
5564# endif
5565
5566#endif /* FEAT_CLIPBOARD || PROTO */
5567
5568
5569#if defined(FEAT_DND) || defined(PROTO)
5570/*
5571 * Replace the contents of the '~' register with str.
5572 */
5573 void
5574dnd_yank_drag_data(str, len)
5575 char_u *str;
5576 long len;
5577{
5578 struct yankreg *curr;
5579
5580 curr = y_current;
5581 y_current = &y_regs[TILDE_REGISTER];
5582 free_yank_all();
5583 str_to_reg(y_current, MCHAR, str, len, 0L);
5584 y_current = curr;
5585}
5586#endif
5587
5588
5589#if defined(FEAT_EVAL) || defined(PROTO)
5590/*
5591 * Return the type of a register.
5592 * Used for getregtype()
5593 * Returns MAUTO for error.
5594 */
5595 char_u
5596get_reg_type(regname, reglen)
5597 int regname;
5598 long *reglen;
5599{
5600 switch (regname)
5601 {
5602 case '%': /* file name */
5603 case '#': /* alternate file name */
5604 case '=': /* expression */
5605 case ':': /* last command line */
5606 case '/': /* last search-pattern */
5607 case '.': /* last inserted text */
5608#ifdef FEAT_SEARCHPATH
5609 case Ctrl_F: /* Filename under cursor */
5610 case Ctrl_P: /* Path under cursor, expand via "path" */
5611#endif
5612 case Ctrl_W: /* word under cursor */
5613 case Ctrl_A: /* WORD (mnemonic All) under cursor */
5614 case '_': /* black hole: always empty */
5615 return MCHAR;
5616 }
5617
5618#ifdef FEAT_CLIPBOARD
5619 regname = may_get_selection(regname);
5620#endif
5621
5622 /* Should we check for a valid name? */
5623 get_yank_register(regname, FALSE);
5624
5625 if (y_current->y_array != NULL)
5626 {
5627#ifdef FEAT_VISUAL
5628 if (reglen != NULL && y_current->y_type == MBLOCK)
5629 *reglen = y_current->y_width;
5630#endif
5631 return y_current->y_type;
5632 }
5633 return MAUTO;
5634}
5635
5636/*
5637 * Return the contents of a register as a single allocated string.
5638 * Used for "@r" in expressions and for getreg().
5639 * Returns NULL for error.
5640 */
5641 char_u *
Bram Moolenaarde934d72005-05-22 22:09:40 +00005642get_reg_contents(regname, allowexpr, expr_src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005643 int regname;
Bram Moolenaarde934d72005-05-22 22:09:40 +00005644 int allowexpr; /* allow "=" register */
5645 int expr_src; /* get expression for "=" register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646{
5647 long i;
5648 char_u *retval;
5649 int allocated;
5650 long len;
5651
5652 /* Don't allow using an expression register inside an expression */
5653 if (regname == '=')
5654 {
5655 if (allowexpr)
Bram Moolenaarde934d72005-05-22 22:09:40 +00005656 {
5657 if (expr_src)
5658 return get_expr_line_src();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 return get_expr_line();
Bram Moolenaarde934d72005-05-22 22:09:40 +00005660 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005661 return NULL;
5662 }
5663
5664 if (regname == '@') /* "@@" is used for unnamed register */
5665 regname = '"';
5666
5667 /* check for valid regname */
5668 if (regname != NUL && !valid_yank_reg(regname, FALSE))
5669 return NULL;
5670
5671#ifdef FEAT_CLIPBOARD
5672 regname = may_get_selection(regname);
5673#endif
5674
5675 if (get_spec_reg(regname, &retval, &allocated, FALSE))
5676 {
5677 if (retval == NULL)
5678 return NULL;
5679 if (!allocated)
5680 retval = vim_strsave(retval);
5681 return retval;
5682 }
5683
5684 get_yank_register(regname, FALSE);
5685 if (y_current->y_array == NULL)
5686 return NULL;
5687
5688 /*
5689 * Compute length of resulting string.
5690 */
5691 len = 0;
5692 for (i = 0; i < y_current->y_size; ++i)
5693 {
5694 len += (long)STRLEN(y_current->y_array[i]);
5695 /*
5696 * Insert a newline between lines and after last line if
5697 * y_type is MLINE.
5698 */
5699 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5700 ++len;
5701 }
5702
5703 retval = lalloc(len + 1, TRUE);
5704
5705 /*
5706 * Copy the lines of the yank register into the string.
5707 */
5708 if (retval != NULL)
5709 {
5710 len = 0;
5711 for (i = 0; i < y_current->y_size; ++i)
5712 {
5713 STRCPY(retval + len, y_current->y_array[i]);
5714 len += (long)STRLEN(retval + len);
5715
5716 /*
5717 * Insert a NL between lines and after the last line if y_type is
5718 * MLINE.
5719 */
5720 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5721 retval[len++] = '\n';
5722 }
5723 retval[len] = NUL;
5724 }
5725
5726 return retval;
5727}
5728
5729/*
5730 * Store string "str" in register "name".
5731 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
5732 * If "must_append" is TRUE, always append to the register. Otherwise append
5733 * if "name" is an uppercase letter.
5734 * Note: "maxlen" and "must_append" don't work for the "/" register.
5735 * Careful: 'str' is modified, you may have to use a copy!
5736 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
5737 */
5738 void
5739write_reg_contents(name, str, maxlen, must_append)
5740 int name;
5741 char_u *str;
5742 int maxlen;
5743 int must_append;
5744{
5745 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
5746}
5747
5748 void
5749write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
5750 int name;
5751 char_u *str;
5752 int maxlen;
5753 int must_append;
5754 int yank_type;
5755 long block_len;
5756{
5757 struct yankreg *old_y_previous, *old_y_current;
5758 long len;
5759
Bram Moolenaare7566042005-06-17 22:00:15 +00005760 if (maxlen >= 0)
5761 len = maxlen;
5762 else
5763 len = (long)STRLEN(str);
5764
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765 /* Special case: '/' search pattern */
5766 if (name == '/')
5767 {
5768 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
5769 return;
5770 }
5771
Bram Moolenaare7566042005-06-17 22:00:15 +00005772#ifdef FEAT_EVAL
5773 if (name == '=')
5774 {
5775 char_u *p, *s;
5776
5777 p = vim_strnsave(str, (int)len);
5778 if (p == NULL)
5779 return;
5780 if (must_append)
5781 {
5782 s = concat_str(get_expr_line_src(), p);
5783 vim_free(p);
5784 p = s;
5785
5786 }
5787 set_expr_line(p);
5788 return;
5789 }
5790#endif
5791
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
5793 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00005794 emsg_invreg(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795 return;
5796 }
5797
5798 if (name == '_') /* black hole: nothing to do */
5799 return;
5800
5801 /* Don't want to change the current (unnamed) register */
5802 old_y_previous = y_previous;
5803 old_y_current = y_current;
5804
5805 get_yank_register(name, TRUE);
5806 if (!y_append && !must_append)
5807 free_yank_all();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808#ifndef FEAT_VISUAL
5809 /* Just in case - make sure we don't use MBLOCK */
5810 if (yank_type == MBLOCK)
5811 yank_type = MAUTO;
5812#endif
5813 if (yank_type == MAUTO)
5814 yank_type = ((len > 0 && (str[len - 1] == '\n' || str[len - 1] == '\r'))
5815 ? MLINE : MCHAR);
5816 str_to_reg(y_current, yank_type, str, len, block_len);
5817
5818# ifdef FEAT_CLIPBOARD
5819 /* Send text of clipboard register to the clipboard. */
5820 may_set_selection();
5821# endif
5822
5823 /* ':let @" = "val"' should change the meaning of the "" register */
5824 if (name != '"')
5825 y_previous = old_y_previous;
5826 y_current = old_y_current;
5827}
5828#endif /* FEAT_EVAL */
5829
5830#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
5831/*
5832 * Put a string into a register. When the register is not empty, the string
5833 * is appended.
5834 */
5835 static void
5836str_to_reg(y_ptr, type, str, len, blocklen)
5837 struct yankreg *y_ptr; /* pointer to yank register */
5838 int type; /* MCHAR, MLINE or MBLOCK */
5839 char_u *str; /* string to put in register */
5840 long len; /* length of string */
5841 long blocklen; /* width of Visual block */
5842{
5843 int lnum;
5844 long start;
5845 long i;
5846 int extra;
5847 int newlines; /* number of lines added */
5848 int extraline = 0; /* extra line at the end */
5849 int append = FALSE; /* append to last line in register */
5850 char_u *s;
5851 char_u **pp;
5852#ifdef FEAT_VISUAL
5853 long maxlen;
5854#endif
5855
5856 if (y_ptr->y_array == NULL) /* NULL means emtpy register */
5857 y_ptr->y_size = 0;
5858
5859 /*
5860 * Count the number of lines within the string
5861 */
5862 newlines = 0;
5863 for (i = 0; i < len; i++)
5864 if (str[i] == '\n')
5865 ++newlines;
5866 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
5867 {
5868 extraline = 1;
5869 ++newlines; /* count extra newline at the end */
5870 }
5871 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
5872 {
5873 append = TRUE;
5874 --newlines; /* uncount newline when appending first line */
5875 }
5876
5877 /*
5878 * Allocate an array to hold the pointers to the new register lines.
5879 * If the register was not empty, move the existing lines to the new array.
5880 */
5881 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
5882 * sizeof(char_u *), TRUE);
5883 if (pp == NULL) /* out of memory */
5884 return;
5885 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
5886 pp[lnum] = y_ptr->y_array[lnum];
5887 vim_free(y_ptr->y_array);
5888 y_ptr->y_array = pp;
5889#ifdef FEAT_VISUAL
5890 maxlen = 0;
5891#endif
5892
5893 /*
5894 * Find the end of each line and save it into the array.
5895 */
5896 for (start = 0; start < len + extraline; start += i + 1)
5897 {
5898 for (i = start; i < len; ++i) /* find the end of the line */
5899 if (str[i] == '\n')
5900 break;
5901 i -= start; /* i is now length of line */
5902#ifdef FEAT_VISUAL
5903 if (i > maxlen)
5904 maxlen = i;
5905#endif
5906 if (append)
5907 {
5908 --lnum;
5909 extra = (int)STRLEN(y_ptr->y_array[lnum]);
5910 }
5911 else
5912 extra = 0;
5913 s = alloc((unsigned)(i + extra + 1));
5914 if (s == NULL)
5915 break;
5916 if (extra)
5917 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
5918 if (append)
5919 vim_free(y_ptr->y_array[lnum]);
5920 if (i)
5921 mch_memmove(s + extra, str + start, (size_t)i);
5922 extra += i;
5923 s[extra] = NUL;
5924 y_ptr->y_array[lnum++] = s;
5925 while (--extra >= 0)
5926 {
5927 if (*s == NUL)
5928 *s = '\n'; /* replace NUL with newline */
5929 ++s;
5930 }
5931 append = FALSE; /* only first line is appended */
5932 }
5933 y_ptr->y_type = type;
5934 y_ptr->y_size = lnum;
5935# ifdef FEAT_VISUAL
5936 if (type == MBLOCK)
5937 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
5938 else
5939 y_ptr->y_width = 0;
5940# endif
5941}
5942#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
5943
5944 void
5945clear_oparg(oap)
5946 oparg_T *oap;
5947{
5948 vim_memset(oap, 0, sizeof(oparg_T));
5949}
5950
Bram Moolenaar7c626922005-02-07 22:01:03 +00005951static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005952
5953/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00005954 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955 *
5956 * "Words" are counted by looking for boundaries between non-space and
5957 * space characters. (it seems to produce results that match 'wc'.)
5958 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00005959 * Return value is byte count; word count for the line is added to "*wc".
5960 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 *
5962 * The function will only examine the first "limit" characters in the
5963 * line, stopping if it encounters an end-of-line (NUL byte). In that
5964 * case, eol_size will be added to the character count to account for
5965 * the size of the EOL character.
5966 */
5967 static long
Bram Moolenaar7c626922005-02-07 22:01:03 +00005968line_count_info(line, wc, cc, limit, eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005969 char_u *line;
5970 long *wc;
Bram Moolenaar7c626922005-02-07 22:01:03 +00005971 long *cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005972 long limit;
5973 int eol_size;
5974{
Bram Moolenaar7c626922005-02-07 22:01:03 +00005975 long i;
5976 long words = 0;
5977 long chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005978 int is_word = 0;
5979
Bram Moolenaar7c626922005-02-07 22:01:03 +00005980 for (i = 0; line[i] && i < limit; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005981 {
5982 if (is_word)
5983 {
5984 if (vim_isspace(line[i]))
5985 {
5986 words++;
5987 is_word = 0;
5988 }
5989 }
5990 else if (!vim_isspace(line[i]))
5991 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00005992 ++chars;
5993#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005994 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00005995#else
5996 ++i;
5997#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998 }
5999
6000 if (is_word)
6001 words++;
6002 *wc += words;
6003
6004 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006005 if (line[i] == NUL && i < limit)
6006 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006007 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006008 chars += eol_size;
6009 }
6010 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011 return i;
6012}
6013
6014/*
6015 * Give some info about the position of the cursor (for "g CTRL-G").
6016 * In Visual mode, give some info about the selected region. (In this case,
6017 * the *_count_cursor variables store running totals for the selection.)
6018 */
6019 void
6020cursor_pos_info()
6021{
6022 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006023 char_u buf1[50];
6024 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006025 linenr_T lnum;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006026 long byte_count = 0;
6027 long byte_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028 long char_count = 0;
6029 long char_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030 long word_count = 0;
6031 long word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006032 int eol_size;
6033 long last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006034#ifdef FEAT_VISUAL
6035 long line_count_selected = 0;
6036 pos_T min_pos, max_pos;
6037 oparg_T oparg;
6038 struct block_def bd;
6039#endif
6040
6041 /*
6042 * Compute the length of the file in characters.
6043 */
6044 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6045 {
6046 MSG(_(no_lines_msg));
6047 }
6048 else
6049 {
6050 if (get_fileformat(curbuf) == EOL_DOS)
6051 eol_size = 2;
6052 else
6053 eol_size = 1;
6054
6055#ifdef FEAT_VISUAL
6056 if (VIsual_active)
6057 {
6058 if (lt(VIsual, curwin->w_cursor))
6059 {
6060 min_pos = VIsual;
6061 max_pos = curwin->w_cursor;
6062 }
6063 else
6064 {
6065 min_pos = curwin->w_cursor;
6066 max_pos = VIsual;
6067 }
6068 if (*p_sel == 'e' && max_pos.col > 0)
6069 --max_pos.col;
6070
6071 if (VIsual_mode == Ctrl_V)
6072 {
6073 oparg.is_VIsual = 1;
6074 oparg.block_mode = TRUE;
6075 oparg.op_type = OP_NOP;
6076 getvcols(curwin, &min_pos, &max_pos,
6077 &oparg.start_vcol, &oparg.end_vcol);
6078 /* Swap the start, end vcol if needed */
6079 if (oparg.end_vcol < oparg.start_vcol)
6080 {
6081 oparg.end_vcol += oparg.start_vcol;
6082 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
6083 oparg.end_vcol -= oparg.start_vcol;
6084 }
6085 }
6086 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
6087 }
6088#endif
6089
6090 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6091 {
6092 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006093 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006094 {
6095 ui_breakcheck();
6096 if (got_int)
6097 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006098 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099 }
6100
6101#ifdef FEAT_VISUAL
6102 /* Do extra processing for VIsual mode. */
6103 if (VIsual_active
6104 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
6105 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00006106 char_u *s = NULL;
6107 long len = 0L;
6108
Bram Moolenaar071d4272004-06-13 20:20:40 +00006109 switch (VIsual_mode)
6110 {
6111 case Ctrl_V:
6112# ifdef FEAT_VIRTUALEDIT
6113 virtual_op = virtual_active();
6114# endif
6115 block_prep(&oparg, &bd, lnum, 0);
6116# ifdef FEAT_VIRTUALEDIT
6117 virtual_op = MAYBE;
6118# endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00006119 s = bd.textstart;
6120 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121 break;
6122 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00006123 s = ml_get(lnum);
6124 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125 break;
6126 case 'v':
6127 {
6128 colnr_T start_col = (lnum == min_pos.lnum)
6129 ? min_pos.col : 0;
6130 colnr_T end_col = (lnum == max_pos.lnum)
6131 ? max_pos.col - start_col + 1 : MAXCOL;
6132
Bram Moolenaardef9e822004-12-31 20:58:58 +00006133 s = ml_get(lnum) + start_col;
6134 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006135 }
6136 break;
6137 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00006138 if (s != NULL)
6139 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00006140 byte_count_cursor += line_count_info(s, &word_count_cursor,
6141 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00006142 if (lnum == curbuf->b_ml.ml_line_count
6143 && !curbuf->b_p_eol
6144 && curbuf->b_p_bin
Bram Moolenaarec2dad62005-01-02 11:36:03 +00006145 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006146 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00006147 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148 }
6149 else
6150#endif
6151 {
6152 /* In non-visual mode, check for the line the cursor is on */
6153 if (lnum == curwin->w_cursor.lnum)
6154 {
6155 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006156 char_count_cursor += char_count;
6157 byte_count_cursor = byte_count +
6158 line_count_info(ml_get(lnum),
6159 &word_count_cursor, &char_count_cursor,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 (long)(curwin->w_cursor.col + 1), eol_size);
6161 }
6162 }
6163 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006164 byte_count += line_count_info(ml_get(lnum), &word_count,
6165 &char_count, (long)MAXCOL, eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006166 }
6167
6168 /* Correction for when last line doesn't have an EOL. */
6169 if (!curbuf->b_p_eol && curbuf->b_p_bin)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006170 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171
6172#ifdef FEAT_VISUAL
6173 if (VIsual_active)
6174 {
6175 if (VIsual_mode == Ctrl_V)
6176 {
6177 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
6178 &max_pos.col);
6179 sprintf((char *)buf1, _("%ld Cols; "),
6180 (long)(oparg.end_vcol - oparg.start_vcol + 1));
6181 }
6182 else
6183 buf1[0] = NUL;
6184
Bram Moolenaar7c626922005-02-07 22:01:03 +00006185 if (char_count_cursor == byte_count_cursor
Bram Moolenaar555b2802005-05-19 21:08:39 +00006186 && char_count == byte_count)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006187 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188 buf1, line_count_selected,
6189 (long)curbuf->b_ml.ml_line_count,
6190 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006191 byte_count_cursor, byte_count);
6192 else
6193 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"),
6194 buf1, line_count_selected,
6195 (long)curbuf->b_ml.ml_line_count,
6196 word_count_cursor, word_count,
6197 char_count_cursor, char_count,
6198 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 }
6200 else
6201#endif
6202 {
6203 p = ml_get_curline();
6204 validate_virtcol();
6205 col_print(buf1, (int)curwin->w_cursor.col + 1,
6206 (int)curwin->w_virtcol + 1);
6207 col_print(buf2, (int)STRLEN(p), linetabsize(p));
6208
Bram Moolenaar7c626922005-02-07 22:01:03 +00006209 if (char_count_cursor == byte_count_cursor
6210 && char_count == byte_count)
6211 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 +00006212 (char *)buf1, (char *)buf2,
6213 (long)curwin->w_cursor.lnum,
6214 (long)curbuf->b_ml.ml_line_count,
6215 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006216 byte_count_cursor, byte_count);
6217 else
6218 sprintf((char *)IObuff, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"),
6219 (char *)buf1, (char *)buf2,
6220 (long)curwin->w_cursor.lnum,
6221 (long)curbuf->b_ml.ml_line_count,
6222 word_count_cursor, word_count,
6223 char_count_cursor, char_count,
6224 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225 }
6226
6227#ifdef FEAT_MBYTE
Bram Moolenaar7c626922005-02-07 22:01:03 +00006228 byte_count = bomb_size();
6229 if (byte_count > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
Bram Moolenaar7c626922005-02-07 22:01:03 +00006231 byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232#endif
6233 /* Don't shorten this message, the user asked for it. */
6234 p = p_shm;
6235 p_shm = (char_u *)"";
6236 msg(IObuff);
6237 p_shm = p;
6238 }
6239}