blob: 04ef069d5a8d7b1a8470cb3f6ba3d6fcbcffe712 [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{
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +000075 int startspaces; /* 'extra' cols before first char */
76 int endspaces; /* 'extra' cols after last char */
Bram Moolenaar071d4272004-06-13 20:20:40 +000077 int textlen; /* chars in block */
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +000078 char_u *textstart; /* pointer to 1st char (partially) in block */
79 colnr_T textcol; /* index of chars (partially) in block */
Bram Moolenaar071d4272004-06-13 20:20:40 +000080 colnr_T start_vcol; /* start col of 1st char wholly inside block */
81 colnr_T end_vcol; /* start col of 1st char wholly after block */
82#ifdef FEAT_VISUALEXTRA
83 int is_short; /* TRUE if line is too short to fit in block */
84 int is_MAX; /* TRUE if curswant==MAXCOL when starting */
85 int is_oneChar; /* TRUE if block within one character */
86 int pre_whitesp; /* screen cols of ws before block */
87 int pre_whitesp_c; /* chars of ws before block */
88 colnr_T end_char_vcols; /* number of vcols of post-block char */
89#endif
90 colnr_T start_char_vcols; /* number of vcols of pre-block char */
91};
92
93#ifdef FEAT_VISUALEXTRA
94static void shift_block __ARGS((oparg_T *oap, int amount));
95static void block_insert __ARGS((oparg_T *oap, char_u *s, int b_insert, struct block_def*bdp));
96#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000097static int stuff_yank __ARGS((int, char_u *));
Bram Moolenaard333d1e2006-11-07 17:43:47 +000098static void put_reedit_in_typebuf __ARGS((int silent));
Bram Moolenaar7f6ca072007-02-27 16:21:38 +000099static int put_in_typebuf __ARGS((char_u *s, int esc, int colon,
100 int silent));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101static void stuffescaped __ARGS((char_u *arg, int literally));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102#ifdef FEAT_MBYTE
103static void mb_adjust_opend __ARGS((oparg_T *oap));
104#endif
105static void free_yank __ARGS((long));
106static void free_yank_all __ARGS((void));
107static int yank_copy_line __ARGS((struct block_def *bd, long y_idx));
108#ifdef FEAT_CLIPBOARD
109static void copy_yank_reg __ARGS((struct yankreg *reg));
110# if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
111static void may_set_selection __ARGS((void));
112# endif
113#endif
114static void dis_msg __ARGS((char_u *p, int skip_esc));
115#ifdef FEAT_VISUAL
116static void block_prep __ARGS((oparg_T *oap, struct block_def *, linenr_T, int));
117#endif
118#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
119static void str_to_reg __ARGS((struct yankreg *y_ptr, int type, char_u *str, long len, long blocklen));
120#endif
121static int ends_in_white __ARGS((linenr_T lnum));
122#ifdef FEAT_COMMENTS
123static int same_leader __ARGS((linenr_T lnum, int, char_u *, int, char_u *));
124static int fmt_check_par __ARGS((linenr_T, int *, char_u **, int do_comments));
125#else
126static int fmt_check_par __ARGS((linenr_T));
127#endif
128
129/*
130 * The names of operators.
131 * IMPORTANT: Index must correspond with defines in vim.h!!!
132 * The third field indicates whether the operator always works on lines.
133 */
134static char opchars[][3] =
135{
136 {NUL, NUL, FALSE}, /* OP_NOP */
137 {'d', NUL, FALSE}, /* OP_DELETE */
138 {'y', NUL, FALSE}, /* OP_YANK */
139 {'c', NUL, FALSE}, /* OP_CHANGE */
140 {'<', NUL, TRUE}, /* OP_LSHIFT */
141 {'>', NUL, TRUE}, /* OP_RSHIFT */
142 {'!', NUL, TRUE}, /* OP_FILTER */
143 {'g', '~', FALSE}, /* OP_TILDE */
144 {'=', NUL, TRUE}, /* OP_INDENT */
145 {'g', 'q', TRUE}, /* OP_FORMAT */
146 {':', NUL, TRUE}, /* OP_COLON */
147 {'g', 'U', FALSE}, /* OP_UPPER */
148 {'g', 'u', FALSE}, /* OP_LOWER */
149 {'J', NUL, TRUE}, /* DO_JOIN */
150 {'g', 'J', TRUE}, /* DO_JOIN_NS */
151 {'g', '?', FALSE}, /* OP_ROT13 */
152 {'r', NUL, FALSE}, /* OP_REPLACE */
153 {'I', NUL, FALSE}, /* OP_INSERT */
154 {'A', NUL, FALSE}, /* OP_APPEND */
155 {'z', 'f', TRUE}, /* OP_FOLD */
156 {'z', 'o', TRUE}, /* OP_FOLDOPEN */
157 {'z', 'O', TRUE}, /* OP_FOLDOPENREC */
158 {'z', 'c', TRUE}, /* OP_FOLDCLOSE */
159 {'z', 'C', TRUE}, /* OP_FOLDCLOSEREC */
160 {'z', 'd', TRUE}, /* OP_FOLDDEL */
161 {'z', 'D', TRUE}, /* OP_FOLDDELREC */
162 {'g', 'w', TRUE}, /* OP_FORMAT2 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000163 {'g', '@', FALSE}, /* OP_FUNCTION */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164};
165
166/*
167 * Translate a command name into an operator type.
168 * Must only be called with a valid operator name!
169 */
170 int
171get_op_type(char1, char2)
172 int char1;
173 int char2;
174{
175 int i;
176
177 if (char1 == 'r') /* ignore second character */
178 return OP_REPLACE;
179 if (char1 == '~') /* when tilde is an operator */
180 return OP_TILDE;
181 for (i = 0; ; ++i)
182 if (opchars[i][0] == char1 && opchars[i][1] == char2)
183 break;
184 return i;
185}
186
187#if defined(FEAT_VISUAL) || defined(PROTO)
188/*
189 * Return TRUE if operator "op" always works on whole lines.
190 */
191 int
192op_on_lines(op)
193 int op;
194{
195 return opchars[op][2];
196}
197#endif
198
199/*
200 * Get first operator command character.
201 * Returns 'g' or 'z' if there is another command character.
202 */
203 int
204get_op_char(optype)
205 int optype;
206{
207 return opchars[optype][0];
208}
209
210/*
211 * Get second operator command character.
212 */
213 int
214get_extra_op_char(optype)
215 int optype;
216{
217 return opchars[optype][1];
218}
219
220/*
221 * op_shift - handle a shift operation
222 */
223 void
224op_shift(oap, curs_top, amount)
225 oparg_T *oap;
226 int curs_top;
227 int amount;
228{
229 long i;
230 int first_char;
231 char_u *s;
232#ifdef FEAT_VISUAL
233 int block_col = 0;
234#endif
235
236 if (u_save((linenr_T)(oap->start.lnum - 1),
237 (linenr_T)(oap->end.lnum + 1)) == FAIL)
238 return;
239
240#ifdef FEAT_VISUAL
241 if (oap->block_mode)
242 block_col = curwin->w_cursor.col;
243#endif
244
245 for (i = oap->line_count; --i >= 0; )
246 {
247 first_char = *ml_get_curline();
248 if (first_char == NUL) /* empty line */
249 curwin->w_cursor.col = 0;
250#ifdef FEAT_VISUALEXTRA
251 else if (oap->block_mode)
252 shift_block(oap, amount);
253#endif
254 else
255 /* Move the line right if it doesn't start with '#', 'smartindent'
256 * isn't set or 'cindent' isn't set or '#' isn't in 'cino'. */
257#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
258 if (first_char != '#' || !preprocs_left())
259#endif
260 {
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000261 shift_line(oap->op_type == OP_LSHIFT, p_sr, amount, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262 }
263 ++curwin->w_cursor.lnum;
264 }
265
266 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
267
268#ifdef FEAT_VISUAL
269 if (oap->block_mode)
270 {
271 curwin->w_cursor.lnum = oap->start.lnum;
272 curwin->w_cursor.col = block_col;
273 }
274 else
275#endif
276 if (curs_top) /* put cursor on first line, for ">>" */
277 {
278 curwin->w_cursor.lnum = oap->start.lnum;
279 beginline(BL_SOL | BL_FIX); /* shift_line() may have set cursor.col */
280 }
281 else
282 --curwin->w_cursor.lnum; /* put cursor on last line, for ":>" */
283
284 if (oap->line_count > p_report)
285 {
286 if (oap->op_type == OP_RSHIFT)
287 s = (char_u *)">";
288 else
289 s = (char_u *)"<";
290 if (oap->line_count == 1)
291 {
292 if (amount == 1)
293 sprintf((char *)IObuff, _("1 line %sed 1 time"), s);
294 else
295 sprintf((char *)IObuff, _("1 line %sed %d times"), s, amount);
296 }
297 else
298 {
299 if (amount == 1)
300 sprintf((char *)IObuff, _("%ld lines %sed 1 time"),
301 oap->line_count, s);
302 else
303 sprintf((char *)IObuff, _("%ld lines %sed %d times"),
304 oap->line_count, s, amount);
305 }
306 msg(IObuff);
307 }
308
309 /*
310 * Set "'[" and "']" marks.
311 */
312 curbuf->b_op_start = oap->start;
313 curbuf->b_op_end.lnum = oap->end.lnum;
314 curbuf->b_op_end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
315 if (curbuf->b_op_end.col > 0)
316 --curbuf->b_op_end.col;
317}
318
319/*
320 * shift the current line one shiftwidth left (if left != 0) or right
321 * leaves cursor on first blank in the line
322 */
323 void
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000324shift_line(left, round, amount, call_changed_bytes)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325 int left;
326 int round;
327 int amount;
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000328 int call_changed_bytes; /* call changed_bytes() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329{
330 int count;
331 int i, j;
332 int p_sw = (int)curbuf->b_p_sw;
333
334 count = get_indent(); /* get current indent */
335
336 if (round) /* round off indent */
337 {
338 i = count / p_sw; /* number of p_sw rounded down */
339 j = count % p_sw; /* extra spaces */
340 if (j && left) /* first remove extra spaces */
341 --amount;
342 if (left)
343 {
344 i -= amount;
345 if (i < 0)
346 i = 0;
347 }
348 else
349 i += amount;
350 count = i * p_sw;
351 }
352 else /* original vi indent */
353 {
354 if (left)
355 {
356 count -= p_sw * amount;
357 if (count < 0)
358 count = 0;
359 }
360 else
361 count += p_sw * amount;
362 }
363
364 /* Set new indent */
365#ifdef FEAT_VREPLACE
366 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000367 change_indent(INDENT_SET, count, FALSE, NUL, call_changed_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 else
369#endif
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000370 (void)set_indent(count, call_changed_bytes ? SIN_CHANGED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371}
372
373#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
374/*
375 * Shift one line of the current block one shiftwidth right or left.
376 * Leaves cursor on first character in block.
377 */
378 static void
379shift_block(oap, amount)
380 oparg_T *oap;
381 int amount;
382{
383 int left = (oap->op_type == OP_LSHIFT);
384 int oldstate = State;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000385 int total;
386 char_u *newp, *oldp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387 int oldcol = curwin->w_cursor.col;
388 int p_sw = (int)curbuf->b_p_sw;
389 int p_ts = (int)curbuf->b_p_ts;
390 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 int incr;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000392 colnr_T ws_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393 int i = 0, j = 0;
394 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395#ifdef FEAT_RIGHTLEFT
396 int old_p_ri = p_ri;
397
398 p_ri = 0; /* don't want revins in ident */
399#endif
400
401 State = INSERT; /* don't want REPLACE for State */
402 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
403 if (bd.is_short)
404 return;
405
406 /* total is number of screen columns to be inserted/removed */
407 total = amount * p_sw;
408 oldp = ml_get_curline();
409
410 if (!left)
411 {
412 /*
413 * 1. Get start vcol
414 * 2. Total ws vcols
415 * 3. Divvy into TABs & spp
416 * 4. Construct new string
417 */
418 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
419 ws_vcol = bd.start_vcol - bd.pre_whitesp;
420 if (bd.startspaces)
421 {
422#ifdef FEAT_MBYTE
423 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000424 bd.textstart += (*mb_ptr2len)(bd.textstart);
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000425 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426#endif
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000427 ++bd.textstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 }
429 for ( ; vim_iswhite(*bd.textstart); )
430 {
431 incr = lbr_chartabsize_adv(&bd.textstart, (colnr_T)(bd.start_vcol));
432 total += incr;
433 bd.start_vcol += incr;
434 }
435 /* OK, now total=all the VWS reqd, and textstart points at the 1st
436 * non-ws char in the block. */
437 if (!curbuf->b_p_et)
438 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
439 if (i)
440 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
441 else
442 j = total;
443 /* if we're splitting a TAB, allow for it */
444 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
445 len = (int)STRLEN(bd.textstart) + 1;
446 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
447 if (newp == NULL)
448 return;
449 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
450 mch_memmove(newp, oldp, (size_t)bd.textcol);
451 copy_chars(newp + bd.textcol, (size_t)i, TAB);
452 copy_spaces(newp + bd.textcol + i, (size_t)j);
453 /* the end */
454 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
455 }
456 else /* left */
457 {
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000458 colnr_T destination_col; /* column to which text in block will
459 be shifted */
460 char_u *verbatim_copy_end; /* end of the part of the line which is
461 copied verbatim */
462 colnr_T verbatim_copy_width;/* the (displayed) width of this part
463 of line */
464 unsigned fill; /* nr of spaces that replace a TAB */
465 unsigned new_line_len; /* the length of the line after the
466 block shift */
467 size_t block_space_width;
468 size_t shift_amount;
469 char_u *non_white = bd.textstart;
470 colnr_T non_white_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000472 /*
473 * Firstly, let's find the first non-whitespace character that is
474 * displayed after the block's start column and the character's column
475 * number. Also, let's calculate the width of all the whitespace
476 * characters that are displayed in the block and precede the searched
477 * non-whitespace character.
478 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000480 /* If "bd.startspaces" is set, "bd.textstart" points to the character,
481 * the part of which is displayed at the block's beginning. Let's start
482 * searching from the next character. */
483 if (bd.startspaces)
484 mb_ptr_adv(non_white);
485
486 /* The character's column is in "bd.start_vcol". */
487 non_white_col = bd.start_vcol;
488
489 while (vim_iswhite(*non_white))
490 {
491 incr = lbr_chartabsize_adv(&non_white, non_white_col);
492 non_white_col += incr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493 }
494
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000495 block_space_width = non_white_col - oap->start_vcol;
496 /* We will shift by "total" or "block_space_width", whichever is less.
497 */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000498 shift_amount = (block_space_width < (size_t)total
499 ? block_space_width : (size_t)total);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000500
501 /* The column to which we will shift the text. */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000502 destination_col = (colnr_T)(non_white_col - shift_amount);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000503
504 /* Now let's find out how much of the beginning of the line we can
505 * reuse without modification. */
506 verbatim_copy_end = bd.textstart;
507 verbatim_copy_width = bd.start_vcol;
508
509 /* If "bd.startspaces" is set, "bd.textstart" points to the character
510 * preceding the block. We have to subtract its width to obtain its
511 * column number. */
512 if (bd.startspaces)
513 verbatim_copy_width -= bd.start_char_vcols;
514 while (verbatim_copy_width < destination_col)
515 {
516 incr = lbr_chartabsize(verbatim_copy_end, verbatim_copy_width);
517 if (verbatim_copy_width + incr > destination_col)
518 break;
519 verbatim_copy_width += incr;
520 mb_ptr_adv(verbatim_copy_end);
521 }
522
523 /* If "destination_col" is different from the width of the initial
524 * part of the line that will be copied, it means we encountered a tab
525 * character, which we will have to partly replace with spaces. */
526 fill = destination_col - verbatim_copy_width;
527
528 /* The replacement line will consist of:
529 * - the beginning of the original line up to "verbatim_copy_end",
530 * - "fill" number of spaces,
531 * - the rest of the line, pointed to by non_white. */
532 new_line_len = (unsigned)(verbatim_copy_end - oldp)
533 + fill
534 + (unsigned)STRLEN(non_white) + 1;
535
536 newp = alloc_check(new_line_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 if (newp == NULL)
538 return;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000539 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp));
540 copy_spaces(newp + (verbatim_copy_end - oldp), (size_t)fill);
541 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542 }
543 /* replace the line */
544 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
545 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
546 State = oldstate;
547 curwin->w_cursor.col = oldcol;
548#ifdef FEAT_RIGHTLEFT
549 p_ri = old_p_ri;
550#endif
551}
552#endif
553
554#ifdef FEAT_VISUALEXTRA
555/*
556 * Insert string "s" (b_insert ? before : after) block :AKelly
557 * Caller must prepare for undo.
558 */
559 static void
560block_insert(oap, s, b_insert, bdp)
561 oparg_T *oap;
562 char_u *s;
563 int b_insert;
564 struct block_def *bdp;
565{
566 int p_ts;
567 int count = 0; /* extra spaces to replace a cut TAB */
568 int spaces = 0; /* non-zero if cutting a TAB */
569 colnr_T offset; /* pointer along new line */
570 unsigned s_len; /* STRLEN(s) */
571 char_u *newp, *oldp; /* new, old lines */
572 linenr_T lnum; /* loop var */
573 int oldstate = State;
574
575 State = INSERT; /* don't want REPLACE for State */
576 s_len = (unsigned)STRLEN(s);
577
578 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
579 {
580 block_prep(oap, bdp, lnum, TRUE);
581 if (bdp->is_short && b_insert)
582 continue; /* OP_INSERT, line ends before block start */
583
584 oldp = ml_get(lnum);
585
586 if (b_insert)
587 {
588 p_ts = bdp->start_char_vcols;
589 spaces = bdp->startspaces;
590 if (spaces != 0)
591 count = p_ts - 1; /* we're cutting a TAB */
592 offset = bdp->textcol;
593 }
594 else /* append */
595 {
596 p_ts = bdp->end_char_vcols;
597 if (!bdp->is_short) /* spaces = padding after block */
598 {
599 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
600 if (spaces != 0)
601 count = p_ts - 1; /* we're cutting a TAB */
602 offset = bdp->textcol + bdp->textlen - (spaces != 0);
603 }
604 else /* spaces = padding to block edge */
605 {
606 /* if $ used, just append to EOL (ie spaces==0) */
607 if (!bdp->is_MAX)
608 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
609 count = spaces;
610 offset = bdp->textcol + bdp->textlen;
611 }
612 }
613
614 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
615 if (newp == NULL)
616 continue;
617
618 /* copy up to shifted part */
619 mch_memmove(newp, oldp, (size_t)(offset));
620 oldp += offset;
621
622 /* insert pre-padding */
623 copy_spaces(newp + offset, (size_t)spaces);
624
625 /* copy the new text */
626 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
627 offset += s_len;
628
629 if (spaces && !bdp->is_short)
630 {
631 /* insert post-padding */
632 copy_spaces(newp + offset + spaces, (size_t)(p_ts - spaces));
633 /* We're splitting a TAB, don't copy it. */
634 oldp++;
635 /* We allowed for that TAB, remember this now */
636 count++;
637 }
638
639 if (spaces > 0)
640 offset += count;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000641 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642
643 ml_replace(lnum, newp, FALSE);
644
645 if (lnum == oap->end.lnum)
646 {
647 /* Set "']" mark to the end of the block instead of the end of
648 * the insert in the first line. */
649 curbuf->b_op_end.lnum = oap->end.lnum;
650 curbuf->b_op_end.col = offset;
651 }
652 } /* for all lnum */
653
654 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
655
656 State = oldstate;
657}
658#endif
659
660#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
661/*
662 * op_reindent - handle reindenting a block of lines.
663 */
664 void
665op_reindent(oap, how)
666 oparg_T *oap;
667 int (*how) __ARGS((void));
668{
669 long i;
670 char_u *l;
671 int count;
672 linenr_T first_changed = 0;
673 linenr_T last_changed = 0;
674 linenr_T start_lnum = curwin->w_cursor.lnum;
675
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000676 /* Don't even try when 'modifiable' is off. */
677 if (!curbuf->b_p_ma)
678 {
679 EMSG(_(e_modifiable));
680 return;
681 }
682
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 for (i = oap->line_count; --i >= 0 && !got_int; )
684 {
685 /* it's a slow thing to do, so give feedback so there's no worry that
686 * the computer's just hung. */
687
688 if (i > 1
689 && (i % 50 == 0 || i == oap->line_count - 1)
690 && oap->line_count > p_report)
691 smsg((char_u *)_("%ld lines to indent... "), i);
692
693 /*
694 * Be vi-compatible: For lisp indenting the first line is not
695 * indented, unless there is only one line.
696 */
697#ifdef FEAT_LISP
698 if (i != oap->line_count - 1 || oap->line_count == 1
699 || how != get_lisp_indent)
700#endif
701 {
702 l = skipwhite(ml_get_curline());
703 if (*l == NUL) /* empty or blank line */
704 count = 0;
705 else
706 count = how(); /* get the indent for this line */
707
708 if (set_indent(count, SIN_UNDO))
709 {
710 /* did change the indent, call changed_lines() later */
711 if (first_changed == 0)
712 first_changed = curwin->w_cursor.lnum;
713 last_changed = curwin->w_cursor.lnum;
714 }
715 }
716 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +0000717 curwin->w_cursor.col = 0; /* make sure it's valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 }
719
720 /* put cursor on first non-blank of indented line */
721 curwin->w_cursor.lnum = start_lnum;
722 beginline(BL_SOL | BL_FIX);
723
724 /* Mark changed lines so that they will be redrawn. When Visual
725 * highlighting was present, need to continue until the last line. When
726 * there is no change still need to remove the Visual highlighting. */
727 if (last_changed != 0)
728 changed_lines(first_changed, 0,
729#ifdef FEAT_VISUAL
730 oap->is_VIsual ? start_lnum + oap->line_count :
731#endif
732 last_changed + 1, 0L);
733#ifdef FEAT_VISUAL
734 else if (oap->is_VIsual)
735 redraw_curbuf_later(INVERTED);
736#endif
737
738 if (oap->line_count > p_report)
739 {
740 i = oap->line_count - (i + 1);
741 if (i == 1)
742 MSG(_("1 line indented "));
743 else
744 smsg((char_u *)_("%ld lines indented "), i);
745 }
746 /* set '[ and '] marks */
747 curbuf->b_op_start = oap->start;
748 curbuf->b_op_end = oap->end;
749}
750#endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
751
752#if defined(FEAT_EVAL) || defined(PROTO)
753/*
754 * Keep the last expression line here, for repeating.
755 */
756static char_u *expr_line = NULL;
757
758/*
759 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
760 * Returns '=' when OK, NUL otherwise.
761 */
762 int
763get_expr_register()
764{
765 char_u *new_line;
766
767 new_line = getcmdline('=', 0L, 0);
768 if (new_line == NULL)
769 return NUL;
770 if (*new_line == NUL) /* use previous line */
771 vim_free(new_line);
772 else
773 set_expr_line(new_line);
774 return '=';
775}
776
777/*
778 * Set the expression for the '=' register.
779 * Argument must be an allocated string.
780 */
781 void
782set_expr_line(new_line)
783 char_u *new_line;
784{
785 vim_free(expr_line);
786 expr_line = new_line;
787}
788
789/*
790 * Get the result of the '=' register expression.
791 * Returns a pointer to allocated memory, or NULL for failure.
792 */
793 char_u *
794get_expr_line()
795{
796 char_u *expr_copy;
797 char_u *rv;
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000798 static int nested = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799
800 if (expr_line == NULL)
801 return NULL;
802
803 /* Make a copy of the expression, because evaluating it may cause it to be
804 * changed. */
805 expr_copy = vim_strsave(expr_line);
806 if (expr_copy == NULL)
807 return NULL;
808
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000809 /* When we are invoked recursively limit the evaluation to 10 levels.
810 * Then return the string as-is. */
811 if (nested >= 10)
812 return expr_copy;
813
814 ++nested;
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000815 rv = eval_to_string(expr_copy, NULL, TRUE);
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000816 --nested;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817 vim_free(expr_copy);
818 return rv;
819}
Bram Moolenaarde934d72005-05-22 22:09:40 +0000820
821/*
822 * Get the '=' register expression itself, without evaluating it.
823 */
824 char_u *
825get_expr_line_src()
826{
827 if (expr_line == NULL)
828 return NULL;
829 return vim_strsave(expr_line);
830}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831#endif /* FEAT_EVAL */
832
833/*
834 * Check if 'regname' is a valid name of a yank register.
835 * Note: There is no check for 0 (default register), caller should do this
836 */
837 int
838valid_yank_reg(regname, writing)
839 int regname;
840 int writing; /* if TRUE check for writable registers */
841{
842 if ( (regname > 0 && ASCII_ISALNUM(regname))
843 || (!writing && vim_strchr((char_u *)
844#ifdef FEAT_EVAL
845 "/.%#:="
846#else
847 "/.%#:"
848#endif
849 , regname) != NULL)
850 || regname == '"'
851 || regname == '-'
852 || regname == '_'
853#ifdef FEAT_CLIPBOARD
854 || regname == '*'
855 || regname == '+'
856#endif
857#ifdef FEAT_DND
858 || (!writing && regname == '~')
859#endif
860 )
861 return TRUE;
862 return FALSE;
863}
864
865/*
866 * Set y_current and y_append, according to the value of "regname".
867 * Cannot handle the '_' register.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000868 * Must only be called with a valid register name!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 *
870 * If regname is 0 and writing, use register 0
871 * If regname is 0 and reading, use previous register
872 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000873 void
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874get_yank_register(regname, writing)
875 int regname;
876 int writing;
877{
878 int i;
879
880 y_append = FALSE;
881 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
882 {
883 y_current = y_previous;
884 return;
885 }
886 i = regname;
887 if (VIM_ISDIGIT(i))
888 i -= '0';
889 else if (ASCII_ISLOWER(i))
890 i = CharOrdLow(i) + 10;
891 else if (ASCII_ISUPPER(i))
892 {
893 i = CharOrdUp(i) + 10;
894 y_append = TRUE;
895 }
896 else if (regname == '-')
897 i = DELETION_REGISTER;
898#ifdef FEAT_CLIPBOARD
899 /* When selection is not available, use register 0 instead of '*' */
900 else if (clip_star.available && regname == '*')
901 i = STAR_REGISTER;
902 /* When clipboard is not available, use register 0 instead of '+' */
903 else if (clip_plus.available && regname == '+')
904 i = PLUS_REGISTER;
905#endif
906#ifdef FEAT_DND
907 else if (!writing && regname == '~')
908 i = TILDE_REGISTER;
909#endif
910 else /* not 0-9, a-z, A-Z or '-': use register 0 */
911 i = 0;
912 y_current = &(y_regs[i]);
913 if (writing) /* remember the register we write into for do_put() */
914 y_previous = y_current;
915}
916
Bram Moolenaar8299df92004-07-10 09:47:34 +0000917#if defined(FEAT_CLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918/*
919 * When "regname" is a clipboard register, obtain the selection. If it's not
920 * available return zero, otherwise return "regname".
921 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000922 int
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923may_get_selection(regname)
924 int regname;
925{
926 if (regname == '*')
927 {
928 if (!clip_star.available)
929 regname = 0;
930 else
931 clip_get_selection(&clip_star);
932 }
933 else if (regname == '+')
934 {
935 if (!clip_plus.available)
936 regname = 0;
937 else
938 clip_get_selection(&clip_plus);
939 }
940 return regname;
941}
942#endif
943
944#if defined(FEAT_VISUAL) || defined(PROTO)
945/*
946 * Obtain the contents of a "normal" register. The register is made empty.
947 * The returned pointer has allocated memory, use put_register() later.
948 */
949 void *
950get_register(name, copy)
951 int name;
952 int copy; /* make a copy, if FALSE make register empty. */
953{
Bram Moolenaar0a307462007-12-01 20:13:05 +0000954 struct yankreg *reg;
955 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956
957#ifdef FEAT_CLIPBOARD
958 /* When Visual area changed, may have to update selection. Obtain the
959 * selection too. */
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000960 if (name == '*' && clip_star.available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 {
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000962 if (clip_isautosel())
963 clip_update_selection();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 may_get_selection(name);
965 }
966#endif
967
968 get_yank_register(name, 0);
969 reg = (struct yankreg *)alloc((unsigned)sizeof(struct yankreg));
970 if (reg != NULL)
971 {
972 *reg = *y_current;
973 if (copy)
974 {
975 /* If we run out of memory some or all of the lines are empty. */
976 if (reg->y_size == 0)
977 reg->y_array = NULL;
978 else
979 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
980 * reg->y_size));
981 if (reg->y_array != NULL)
982 {
983 for (i = 0; i < reg->y_size; ++i)
984 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
985 }
986 }
987 else
988 y_current->y_array = NULL;
989 }
990 return (void *)reg;
991}
992
993/*
Bram Moolenaar0a307462007-12-01 20:13:05 +0000994 * Put "reg" into register "name". Free any previous contents and "reg".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 */
996 void
997put_register(name, reg)
998 int name;
999 void *reg;
1000{
1001 get_yank_register(name, 0);
1002 free_yank_all();
1003 *y_current = *(struct yankreg *)reg;
Bram Moolenaar0a307462007-12-01 20:13:05 +00001004 vim_free(reg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005
1006# ifdef FEAT_CLIPBOARD
1007 /* Send text written to clipboard register to the clipboard. */
1008 may_set_selection();
1009# endif
1010}
1011#endif
1012
1013#if defined(FEAT_MOUSE) || defined(PROTO)
1014/*
1015 * return TRUE if the current yank register has type MLINE
1016 */
1017 int
1018yank_register_mline(regname)
1019 int regname;
1020{
1021 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1022 return FALSE;
1023 if (regname == '_') /* black hole is always empty */
1024 return FALSE;
1025 get_yank_register(regname, FALSE);
1026 return (y_current->y_type == MLINE);
1027}
1028#endif
1029
1030/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001031 * Start or stop recording into a yank register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 *
Bram Moolenaard55de222007-05-06 13:38:48 +00001033 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 */
1035 int
1036do_record(c)
1037 int c;
1038{
Bram Moolenaard55de222007-05-06 13:38:48 +00001039 char_u *p;
1040 static int regname;
1041 struct yankreg *old_y_previous, *old_y_current;
1042 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043
1044 if (Recording == FALSE) /* start recording */
1045 {
1046 /* registers 0-9, a-z and " are allowed */
1047 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1048 retval = FAIL;
1049 else
1050 {
1051 Recording = TRUE;
1052 showmode();
1053 regname = c;
1054 retval = OK;
1055 }
1056 }
1057 else /* stop recording */
1058 {
1059 /*
Bram Moolenaard55de222007-05-06 13:38:48 +00001060 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1061 * needs to be removed again to put it in a register. exec_reg then
1062 * adds the escaping back later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 */
1064 Recording = FALSE;
1065 MSG("");
1066 p = get_recorded();
1067 if (p == NULL)
1068 retval = FAIL;
1069 else
1070 {
Bram Moolenaar81b85872007-03-04 20:22:01 +00001071 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1072 vim_unescape_csi(p);
1073
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 /*
1075 * We don't want to change the default register here, so save and
1076 * restore the current register name.
1077 */
1078 old_y_previous = y_previous;
1079 old_y_current = y_current;
1080
1081 retval = stuff_yank(regname, p);
1082
1083 y_previous = old_y_previous;
1084 y_current = old_y_current;
1085 }
1086 }
1087 return retval;
1088}
1089
1090/*
1091 * Stuff string "p" into yank register "regname" as a single line (append if
1092 * uppercase). "p" must have been alloced.
1093 *
1094 * return FAIL for failure, OK otherwise
1095 */
1096 static int
1097stuff_yank(regname, p)
1098 int regname;
1099 char_u *p;
1100{
1101 char_u *lp;
1102 char_u **pp;
1103
1104 /* check for read-only register */
1105 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1106 {
1107 vim_free(p);
1108 return FAIL;
1109 }
1110 if (regname == '_') /* black hole: don't do anything */
1111 {
1112 vim_free(p);
1113 return OK;
1114 }
1115 get_yank_register(regname, TRUE);
1116 if (y_append && y_current->y_array != NULL)
1117 {
1118 pp = &(y_current->y_array[y_current->y_size - 1]);
1119 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1120 if (lp == NULL)
1121 {
1122 vim_free(p);
1123 return FAIL;
1124 }
1125 STRCPY(lp, *pp);
1126 STRCAT(lp, p);
1127 vim_free(p);
1128 vim_free(*pp);
1129 *pp = lp;
1130 }
1131 else
1132 {
1133 free_yank_all();
1134 if ((y_current->y_array =
1135 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1136 {
1137 vim_free(p);
1138 return FAIL;
1139 }
1140 y_current->y_array[0] = p;
1141 y_current->y_size = 1;
1142 y_current->y_type = MCHAR; /* used to be MLINE, why? */
1143 }
1144 return OK;
1145}
1146
Bram Moolenaar42b94362009-05-26 16:12:37 +00001147static int execreg_lastc = NUL;
1148
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149/*
1150 * execute a yank register: copy it into the stuff buffer
1151 *
1152 * return FAIL for failure, OK otherwise
1153 */
1154 int
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001155do_execreg(regname, colon, addcr, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 int regname;
1157 int colon; /* insert ':' before each line */
1158 int addcr; /* always add '\n' to end of line */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001159 int silent; /* set "silent" flag in typeahead buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 long i;
1162 char_u *p;
1163 int retval = OK;
1164 int remap;
1165
1166 if (regname == '@') /* repeat previous one */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001167 {
Bram Moolenaar42b94362009-05-26 16:12:37 +00001168 if (execreg_lastc == NUL)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001169 {
1170 EMSG(_("E748: No previously used register"));
1171 return FAIL;
1172 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001173 regname = execreg_lastc;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001174 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 /* check for valid regname */
1176 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001177 {
1178 emsg_invreg(regname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 return FAIL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001180 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001181 execreg_lastc = regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182
1183#ifdef FEAT_CLIPBOARD
1184 regname = may_get_selection(regname);
1185#endif
1186
1187 if (regname == '_') /* black hole: don't stuff anything */
1188 return OK;
1189
1190#ifdef FEAT_CMDHIST
1191 if (regname == ':') /* use last command line */
1192 {
1193 if (last_cmdline == NULL)
1194 {
1195 EMSG(_(e_nolastcmd));
1196 return FAIL;
1197 }
1198 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
1199 new_last_cmdline = NULL;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001200 /* Escape all control characters with a CTRL-V */
1201 p = vim_strsave_escaped_ext(last_cmdline,
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001202 (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 +00001203 if (p != NULL)
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001204 {
1205 /* When in Visual mode "'<,'>" will be prepended to the command.
1206 * Remove it when it's already there. */
1207 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001208 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001209 else
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001210 retval = put_in_typebuf(p, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001211 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001212 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 }
1214#endif
1215#ifdef FEAT_EVAL
1216 else if (regname == '=')
1217 {
1218 p = get_expr_line();
1219 if (p == NULL)
1220 return FAIL;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001221 retval = put_in_typebuf(p, TRUE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 vim_free(p);
1223 }
1224#endif
1225 else if (regname == '.') /* use last inserted text */
1226 {
1227 p = get_last_insert_save();
1228 if (p == NULL)
1229 {
1230 EMSG(_(e_noinstext));
1231 return FAIL;
1232 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001233 retval = put_in_typebuf(p, FALSE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 vim_free(p);
1235 }
1236 else
1237 {
1238 get_yank_register(regname, FALSE);
1239 if (y_current->y_array == NULL)
1240 return FAIL;
1241
1242 /* Disallow remaping for ":@r". */
1243 remap = colon ? REMAP_NONE : REMAP_YES;
1244
1245 /*
1246 * Insert lines into typeahead buffer, from last one to first one.
1247 */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001248 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 for (i = y_current->y_size; --i >= 0; )
1250 {
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001251 char_u *escaped;
1252
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 /* insert NL between lines and after last line if type is MLINE */
1254 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1255 || addcr)
1256 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001257 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 return FAIL;
1259 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001260 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1261 if (escaped == NULL)
1262 return FAIL;
1263 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1264 vim_free(escaped);
1265 if (retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 return FAIL;
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001267 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 == FAIL)
1269 return FAIL;
1270 }
1271 Exec_reg = TRUE; /* disable the 'q' command */
1272 }
1273 return retval;
1274}
1275
1276/*
1277 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1278 * used only after other typeahead has been processed.
1279 */
1280 static void
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001281put_reedit_in_typebuf(silent)
1282 int silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283{
1284 char_u buf[3];
1285
1286 if (restart_edit != NUL)
1287 {
1288 if (restart_edit == 'V')
1289 {
1290 buf[0] = 'g';
1291 buf[1] = 'R';
1292 buf[2] = NUL;
1293 }
1294 else
1295 {
1296 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1297 buf[1] = NUL;
1298 }
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001299 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 restart_edit = NUL;
1301 }
1302}
1303
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001304/*
1305 * Insert register contents "s" into the typeahead buffer, so that it will be
1306 * executed again.
1307 * When "esc" is TRUE it is to be taken literally: Escape CSI characters and
1308 * no remapping.
1309 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 static int
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001311put_in_typebuf(s, esc, colon, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 char_u *s;
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001313 int esc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 int colon; /* add ':' before the line */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001315 int silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316{
1317 int retval = OK;
1318
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001319 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 if (colon)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001321 retval = ins_typebuf((char_u *)"\n", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 if (retval == OK)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001323 {
1324 char_u *p;
1325
1326 if (esc)
1327 p = vim_strsave_escape_csi(s);
1328 else
1329 p = s;
1330 if (p == NULL)
1331 retval = FAIL;
1332 else
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001333 retval = ins_typebuf(p, esc ? REMAP_NONE : REMAP_YES,
1334 0, TRUE, silent);
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001335 if (esc)
1336 vim_free(p);
1337 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 if (colon && retval == OK)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001339 retval = ins_typebuf((char_u *)":", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 return retval;
1341}
1342
1343/*
1344 * Insert a yank register: copy it into the Read buffer.
1345 * Used by CTRL-R command and middle mouse button in insert mode.
1346 *
1347 * return FAIL for failure, OK otherwise
1348 */
1349 int
1350insert_reg(regname, literally)
1351 int regname;
1352 int literally; /* insert literally, not as if typed */
1353{
1354 long i;
1355 int retval = OK;
1356 char_u *arg;
1357 int allocated;
1358
1359 /*
1360 * It is possible to get into an endless loop by having CTRL-R a in
1361 * register a and then, in insert mode, doing CTRL-R a.
1362 * If you hit CTRL-C, the loop will be broken here.
1363 */
1364 ui_breakcheck();
1365 if (got_int)
1366 return FAIL;
1367
1368 /* check for valid regname */
1369 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1370 return FAIL;
1371
1372#ifdef FEAT_CLIPBOARD
1373 regname = may_get_selection(regname);
1374#endif
1375
1376 if (regname == '.') /* insert last inserted text */
1377 retval = stuff_inserted(NUL, 1L, TRUE);
1378 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1379 {
1380 if (arg == NULL)
1381 return FAIL;
1382 stuffescaped(arg, literally);
1383 if (allocated)
1384 vim_free(arg);
1385 }
1386 else /* name or number register */
1387 {
1388 get_yank_register(regname, FALSE);
1389 if (y_current->y_array == NULL)
1390 retval = FAIL;
1391 else
1392 {
1393 for (i = 0; i < y_current->y_size; ++i)
1394 {
1395 stuffescaped(y_current->y_array[i], literally);
1396 /*
1397 * Insert a newline between lines and after last line if
1398 * y_type is MLINE.
1399 */
1400 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1401 stuffcharReadbuff('\n');
1402 }
1403 }
1404 }
1405
1406 return retval;
1407}
1408
1409/*
1410 * Stuff a string into the typeahead buffer, such that edit() will insert it
1411 * literally ("literally" TRUE) or interpret is as typed characters.
1412 */
1413 static void
1414stuffescaped(arg, literally)
1415 char_u *arg;
1416 int literally;
1417{
1418 int c;
1419 char_u *start;
1420
1421 while (*arg != NUL)
1422 {
1423 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1424 * stuff K_SPECIAL to get the effect of a special key when "literally"
1425 * is TRUE. */
1426 start = arg;
1427 while ((*arg >= ' '
1428#ifndef EBCDIC
1429 && *arg < DEL /* EBCDIC: chars above space are normal */
1430#endif
1431 )
1432 || (*arg == K_SPECIAL && !literally))
1433 ++arg;
1434 if (arg > start)
1435 stuffReadbuffLen(start, (long)(arg - start));
1436
1437 /* stuff a single special character */
1438 if (*arg != NUL)
1439 {
1440#ifdef FEAT_MBYTE
1441 if (has_mbyte)
Bram Moolenaar3b1c4852010-07-31 17:59:29 +02001442 c = mb_cptr2char_adv(&arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 else
1444#endif
1445 c = *arg++;
1446 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1447 stuffcharReadbuff(Ctrl_V);
1448 stuffcharReadbuff(c);
1449 }
1450 }
1451}
1452
1453/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001454 * If "regname" is a special register, return TRUE and store a pointer to its
1455 * value in "argp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456 */
Bram Moolenaar8299df92004-07-10 09:47:34 +00001457 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458get_spec_reg(regname, argp, allocated, errmsg)
1459 int regname;
1460 char_u **argp;
Bram Moolenaard55de222007-05-06 13:38:48 +00001461 int *allocated; /* return: TRUE when value was allocated */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 int errmsg; /* give error message when failing */
1463{
1464 int cnt;
1465
1466 *argp = NULL;
1467 *allocated = FALSE;
1468 switch (regname)
1469 {
1470 case '%': /* file name */
1471 if (errmsg)
1472 check_fname(); /* will give emsg if not set */
1473 *argp = curbuf->b_fname;
1474 return TRUE;
1475
1476 case '#': /* alternate file name */
1477 *argp = getaltfname(errmsg); /* may give emsg if not set */
1478 return TRUE;
1479
1480#ifdef FEAT_EVAL
1481 case '=': /* result of expression */
1482 *argp = get_expr_line();
1483 *allocated = TRUE;
1484 return TRUE;
1485#endif
1486
1487 case ':': /* last command line */
1488 if (last_cmdline == NULL && errmsg)
1489 EMSG(_(e_nolastcmd));
1490 *argp = last_cmdline;
1491 return TRUE;
1492
1493 case '/': /* last search-pattern */
1494 if (last_search_pat() == NULL && errmsg)
1495 EMSG(_(e_noprevre));
1496 *argp = last_search_pat();
1497 return TRUE;
1498
1499 case '.': /* last inserted text */
1500 *argp = get_last_insert_save();
1501 *allocated = TRUE;
1502 if (*argp == NULL && errmsg)
1503 EMSG(_(e_noinstext));
1504 return TRUE;
1505
1506#ifdef FEAT_SEARCHPATH
1507 case Ctrl_F: /* Filename under cursor */
1508 case Ctrl_P: /* Path under cursor, expand via "path" */
1509 if (!errmsg)
1510 return FALSE;
1511 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001512 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 *allocated = TRUE;
1514 return TRUE;
1515#endif
1516
1517 case Ctrl_W: /* word under cursor */
1518 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1519 if (!errmsg)
1520 return FALSE;
1521 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1522 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1523 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1524 *allocated = TRUE;
1525 return TRUE;
1526
1527 case '_': /* black hole: always empty */
1528 *argp = (char_u *)"";
1529 return TRUE;
1530 }
1531
1532 return FALSE;
1533}
1534
1535/*
Bram Moolenaar8299df92004-07-10 09:47:34 +00001536 * Paste a yank register into the command line.
1537 * Only for non-special registers.
1538 * Used by CTRL-R command in command-line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 * insert_reg() can't be used here, because special characters from the
1540 * register contents will be interpreted as commands.
1541 *
1542 * return FAIL for failure, OK otherwise
1543 */
1544 int
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001545cmdline_paste_reg(regname, literally, remcr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 int regname;
1547 int literally; /* Insert text literally instead of "as typed" */
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001548 int remcr; /* don't add trailing CR */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549{
1550 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551
1552 get_yank_register(regname, FALSE);
1553 if (y_current->y_array == NULL)
1554 return FAIL;
1555
1556 for (i = 0; i < y_current->y_size; ++i)
1557 {
1558 cmdline_paste_str(y_current->y_array[i], literally);
1559
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001560 /* Insert ^M between lines and after last line if type is MLINE.
1561 * Don't do this when "remcr" is TRUE and the next line is empty. */
1562 if (y_current->y_type == MLINE
1563 || (i < y_current->y_size - 1
1564 && !(remcr
1565 && i == y_current->y_size - 2
1566 && *y_current->y_array[i + 1] == NUL)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 cmdline_paste_str((char_u *)"\r", literally);
1568
1569 /* Check for CTRL-C, in case someone tries to paste a few thousand
1570 * lines and gets bored. */
1571 ui_breakcheck();
1572 if (got_int)
1573 return FAIL;
1574 }
1575 return OK;
1576}
1577
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578#if defined(FEAT_CLIPBOARD) || defined(PROTO)
1579/*
1580 * Adjust the register name pointed to with "rp" for the clipboard being
1581 * used always and the clipboard being available.
1582 */
1583 void
1584adjust_clip_reg(rp)
1585 int *rp;
1586{
1587 /* If no reg. specified, and "unnamed" is in 'clipboard', use '*' reg. */
1588 if (*rp == 0 && clip_unnamed)
1589 *rp = '*';
1590 if (!clip_star.available && *rp == '*')
1591 *rp = 0;
1592 if (!clip_plus.available && *rp == '+')
1593 *rp = 0;
1594}
1595#endif
1596
1597/*
Bram Moolenaard04b7502010-07-08 22:27:55 +02001598 * Handle a delete operation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 *
Bram Moolenaard04b7502010-07-08 22:27:55 +02001600 * Return FAIL if undo failed, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 */
1602 int
1603op_delete(oap)
1604 oparg_T *oap;
1605{
1606 int n;
1607 linenr_T lnum;
1608 char_u *ptr;
1609#ifdef FEAT_VISUAL
1610 char_u *newp, *oldp;
1611 struct block_def bd;
1612#endif
1613 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1614 int did_yank = FALSE;
1615
1616 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1617 return OK;
1618
1619 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1620 if (oap->empty)
1621 return u_save_cursor();
1622
1623 if (!curbuf->b_p_ma)
1624 {
1625 EMSG(_(e_modifiable));
1626 return FAIL;
1627 }
1628
1629#ifdef FEAT_CLIPBOARD
1630 adjust_clip_reg(&oap->regname);
1631#endif
1632
1633#ifdef FEAT_MBYTE
1634 if (has_mbyte)
1635 mb_adjust_opend(oap);
1636#endif
1637
Bram Moolenaard04b7502010-07-08 22:27:55 +02001638 /*
1639 * Imitate the strange Vi behaviour: If the delete spans more than one
1640 * line and motion_type == MCHAR and the result is a blank line, make the
1641 * delete linewise. Don't do this for the change command or Visual mode.
1642 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 if ( oap->motion_type == MCHAR
1644#ifdef FEAT_VISUAL
1645 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001646 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647#endif
1648 && oap->line_count > 1
1649 && oap->op_type == OP_DELETE)
1650 {
1651 ptr = ml_get(oap->end.lnum) + oap->end.col + oap->inclusive;
1652 ptr = skipwhite(ptr);
1653 if (*ptr == NUL && inindent(0))
1654 oap->motion_type = MLINE;
1655 }
1656
Bram Moolenaard04b7502010-07-08 22:27:55 +02001657 /*
1658 * Check for trying to delete (e.g. "D") in an empty line.
1659 * Note: For the change operator it is ok.
1660 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 if ( oap->motion_type == MCHAR
1662 && oap->line_count == 1
1663 && oap->op_type == OP_DELETE
1664 && *ml_get(oap->start.lnum) == NUL)
1665 {
1666 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001667 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 * 'cpoptions' (Vi compatible).
1669 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001670#ifdef FEAT_VIRTUALEDIT
1671 if (virtual_op)
1672 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1673 * marks as if it happened. */
1674 goto setmarks;
1675#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1677 beep_flush();
1678 return OK;
1679 }
1680
Bram Moolenaard04b7502010-07-08 22:27:55 +02001681 /*
1682 * Do a yank of whatever we're about to delete.
1683 * If a yank register was specified, put the deleted text into that
1684 * register. For the black hole register '_' don't yank anything.
1685 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 if (oap->regname != '_')
1687 {
1688 if (oap->regname != 0)
1689 {
1690 /* check for read-only register */
1691 if (!valid_yank_reg(oap->regname, TRUE))
1692 {
1693 beep_flush();
1694 return OK;
1695 }
1696 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1697 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1698 did_yank = TRUE;
1699 }
1700
1701 /*
1702 * Put deleted text into register 1 and shift number registers if the
1703 * delete contains a line break, or when a regname has been specified.
1704 */
1705 if (oap->regname != 0 || oap->motion_type == MLINE
1706 || oap->line_count > 1 || oap->use_reg_one)
1707 {
1708 y_current = &y_regs[9];
1709 free_yank_all(); /* free register nine */
1710 for (n = 9; n > 1; --n)
1711 y_regs[n] = y_regs[n - 1];
1712 y_previous = y_current = &y_regs[1];
1713 y_regs[1].y_array = NULL; /* set register one to empty */
1714 if (op_yank(oap, TRUE, FALSE) == OK)
1715 did_yank = TRUE;
1716 }
1717
1718 /* Yank into small delete register when no register specified and the
1719 * delete is within one line. */
1720 if (oap->regname == 0 && oap->motion_type != MLINE
1721 && oap->line_count == 1)
1722 {
1723 oap->regname = '-';
1724 get_yank_register(oap->regname, TRUE);
1725 if (op_yank(oap, TRUE, FALSE) == OK)
1726 did_yank = TRUE;
1727 oap->regname = 0;
1728 }
1729
1730 /*
1731 * If there's too much stuff to fit in the yank register, then get a
1732 * confirmation before doing the delete. This is crude, but simple.
1733 * And it avoids doing a delete of something we can't put back if we
1734 * want.
1735 */
1736 if (!did_yank)
1737 {
1738 int msg_silent_save = msg_silent;
1739
1740 msg_silent = 0; /* must display the prompt */
1741 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1742 msg_silent = msg_silent_save;
1743 if (n != 'y')
1744 {
1745 EMSG(_(e_abort));
1746 return FAIL;
1747 }
1748 }
1749 }
1750
1751#ifdef FEAT_VISUAL
Bram Moolenaard04b7502010-07-08 22:27:55 +02001752 /*
1753 * block mode delete
1754 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 if (oap->block_mode)
1756 {
1757 if (u_save((linenr_T)(oap->start.lnum - 1),
1758 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1759 return FAIL;
1760
1761 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1762 {
1763 block_prep(oap, &bd, lnum, TRUE);
1764 if (bd.textlen == 0) /* nothing to delete */
1765 continue;
1766
1767 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1768 if (lnum == curwin->w_cursor.lnum)
1769 {
1770 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1771# ifdef FEAT_VIRTUALEDIT
1772 curwin->w_cursor.coladd = 0;
1773# endif
1774 }
1775
1776 /* n == number of chars deleted
1777 * If we delete a TAB, it may be replaced by several characters.
1778 * Thus the number of characters may increase!
1779 */
1780 n = bd.textlen - bd.startspaces - bd.endspaces;
1781 oldp = ml_get(lnum);
1782 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1783 if (newp == NULL)
1784 continue;
1785 /* copy up to deleted part */
1786 mch_memmove(newp, oldp, (size_t)bd.textcol);
1787 /* insert spaces */
1788 copy_spaces(newp + bd.textcol,
1789 (size_t)(bd.startspaces + bd.endspaces));
1790 /* copy the part after the deleted part */
1791 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001792 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 /* replace the line */
1794 ml_replace(lnum, newp, FALSE);
1795 }
1796
1797 check_cursor_col();
1798 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1799 oap->end.lnum + 1, 0L);
1800 oap->line_count = 0; /* no lines deleted */
1801 }
1802 else
1803#endif
1804 if (oap->motion_type == MLINE)
1805 {
1806 if (oap->op_type == OP_CHANGE)
1807 {
1808 /* Delete the lines except the first one. Temporarily move the
1809 * cursor to the next line. Save the current line number, if the
1810 * last line is deleted it may be changed.
1811 */
1812 if (oap->line_count > 1)
1813 {
1814 lnum = curwin->w_cursor.lnum;
1815 ++curwin->w_cursor.lnum;
1816 del_lines((long)(oap->line_count - 1), TRUE);
1817 curwin->w_cursor.lnum = lnum;
1818 }
1819 if (u_save_cursor() == FAIL)
1820 return FAIL;
1821 if (curbuf->b_p_ai) /* don't delete indent */
1822 {
1823 beginline(BL_WHITE); /* cursor on first non-white */
1824 did_ai = TRUE; /* delete the indent when ESC hit */
1825 ai_col = curwin->w_cursor.col;
1826 }
1827 else
1828 beginline(0); /* cursor in column 0 */
1829 truncate_line(FALSE); /* delete the rest of the line */
1830 /* leave cursor past last char in line */
1831 if (oap->line_count > 1)
1832 u_clearline(); /* "U" command not possible after "2cc" */
1833 }
1834 else
1835 {
1836 del_lines(oap->line_count, TRUE);
1837 beginline(BL_WHITE | BL_FIX);
1838 u_clearline(); /* "U" command not possible after "dd" */
1839 }
1840 }
1841 else
1842 {
1843#ifdef FEAT_VIRTUALEDIT
1844 if (virtual_op)
1845 {
1846 int endcol = 0;
1847
1848 /* For virtualedit: break the tabs that are partly included. */
1849 if (gchar_pos(&oap->start) == '\t')
1850 {
1851 if (u_save_cursor() == FAIL) /* save first line for undo */
1852 return FAIL;
1853 if (oap->line_count == 1)
1854 endcol = getviscol2(oap->end.col, oap->end.coladd);
1855 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1856 oap->start = curwin->w_cursor;
1857 if (oap->line_count == 1)
1858 {
1859 coladvance(endcol);
1860 oap->end.col = curwin->w_cursor.col;
1861 oap->end.coladd = curwin->w_cursor.coladd;
1862 curwin->w_cursor = oap->start;
1863 }
1864 }
1865
1866 /* Break a tab only when it's included in the area. */
1867 if (gchar_pos(&oap->end) == '\t'
1868 && (int)oap->end.coladd < oap->inclusive)
1869 {
1870 /* save last line for undo */
1871 if (u_save((linenr_T)(oap->end.lnum - 1),
1872 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1873 return FAIL;
1874 curwin->w_cursor = oap->end;
1875 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1876 oap->end = curwin->w_cursor;
1877 curwin->w_cursor = oap->start;
1878 }
1879 }
1880#endif
1881
1882 if (oap->line_count == 1) /* delete characters within one line */
1883 {
1884 if (u_save_cursor() == FAIL) /* save line for undo */
1885 return FAIL;
1886
1887 /* if 'cpoptions' contains '$', display '$' at end of change */
1888 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
1889 && oap->op_type == OP_CHANGE
1890 && oap->end.lnum == curwin->w_cursor.lnum
1891#ifdef FEAT_VISUAL
1892 && !oap->is_VIsual
1893#endif
1894 )
1895 display_dollar(oap->end.col - !oap->inclusive);
1896
1897 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1898
1899#ifdef FEAT_VIRTUALEDIT
1900 if (virtual_op)
1901 {
1902 /* fix up things for virtualedit-delete:
1903 * break the tabs which are going to get in our way
1904 */
1905 char_u *curline = ml_get_curline();
1906 int len = (int)STRLEN(curline);
1907
1908 if (oap->end.coladd != 0
1909 && (int)oap->end.col >= len - 1
1910 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1911 n++;
1912 /* Delete at least one char (e.g, when on a control char). */
1913 if (n == 0 && oap->start.coladd != oap->end.coladd)
1914 n = 1;
1915
1916 /* When deleted a char in the line, reset coladd. */
1917 if (gchar_cursor() != NUL)
1918 curwin->w_cursor.coladd = 0;
1919 }
1920#endif
Bram Moolenaarca003e12006-03-17 23:19:38 +00001921 (void)del_bytes((long)n, !virtual_op, oap->op_type == OP_DELETE
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001922#ifdef FEAT_VISUAL
1923 && !oap->is_VIsual
1924#endif
1925 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 }
1927 else /* delete characters between lines */
1928 {
1929 pos_T curpos;
1930
1931 /* save deleted and changed lines for undo */
1932 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1933 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1934 return FAIL;
1935
1936 truncate_line(TRUE); /* delete from cursor to end of line */
1937
1938 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1939 ++curwin->w_cursor.lnum;
1940 del_lines((long)(oap->line_count - 2), FALSE);
1941
1942 /* delete from start of line until op_end */
1943 curwin->w_cursor.col = 0;
1944 (void)del_bytes((long)(oap->end.col + 1 - !oap->inclusive),
Bram Moolenaarca003e12006-03-17 23:19:38 +00001945 !virtual_op, oap->op_type == OP_DELETE
Bram Moolenaara9b1e742005-12-19 22:14:58 +00001946#ifdef FEAT_VISUAL
1947 && !oap->is_VIsual
1948#endif
1949 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
1951
Bram Moolenaar893eaab2010-07-10 17:51:46 +02001952 (void)do_join(2, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 }
1954 }
1955
1956 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
1957
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001958#ifdef FEAT_VIRTUALEDIT
1959setmarks:
1960#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961#ifdef FEAT_VISUAL
1962 if (oap->block_mode)
1963 {
1964 curbuf->b_op_end.lnum = oap->end.lnum;
1965 curbuf->b_op_end.col = oap->start.col;
1966 }
1967 else
1968#endif
1969 curbuf->b_op_end = oap->start;
1970 curbuf->b_op_start = oap->start;
1971
1972 return OK;
1973}
1974
1975#ifdef FEAT_MBYTE
1976/*
1977 * Adjust end of operating area for ending on a multi-byte character.
1978 * Used for deletion.
1979 */
1980 static void
1981mb_adjust_opend(oap)
1982 oparg_T *oap;
1983{
1984 char_u *p;
1985
1986 if (oap->inclusive)
1987 {
1988 p = ml_get(oap->end.lnum);
1989 oap->end.col += mb_tail_off(p, p + oap->end.col);
1990 }
1991}
1992#endif
1993
1994#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1995/*
1996 * Replace a whole area with one character.
1997 */
1998 int
1999op_replace(oap, c)
2000 oparg_T *oap;
2001 int c;
2002{
2003 int n, numc;
2004#ifdef FEAT_MBYTE
2005 int num_chars;
2006#endif
2007 char_u *newp, *oldp;
2008 size_t oldlen;
2009 struct block_def bd;
2010
2011 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2012 return OK; /* nothing to do */
2013
2014#ifdef FEAT_MBYTE
2015 if (has_mbyte)
2016 mb_adjust_opend(oap);
2017#endif
2018
2019 if (u_save((linenr_T)(oap->start.lnum - 1),
2020 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2021 return FAIL;
2022
2023 /*
2024 * block mode replace
2025 */
2026 if (oap->block_mode)
2027 {
2028 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2029 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2030 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002031 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2033 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2034 continue; /* nothing to replace */
2035
2036 /* n == number of extra chars required
2037 * If we split a TAB, it may be replaced by several characters.
2038 * Thus the number of characters may increase!
2039 */
2040#ifdef FEAT_VIRTUALEDIT
2041 /* If the range starts in virtual space, count the initial
2042 * coladd offset as part of "startspaces" */
2043 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2044 {
2045 pos_T vpos;
2046
Bram Moolenaara1381de2009-11-03 15:44:21 +00002047 vpos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 getvpos(&vpos, oap->start_vcol);
2049 bd.startspaces += vpos.coladd;
2050 n = bd.startspaces;
2051 }
2052 else
2053#endif
2054 /* allow for pre spaces */
2055 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2056
2057 /* allow for post spp */
2058 n += (bd.endspaces
2059#ifdef FEAT_VIRTUALEDIT
2060 && !bd.is_oneChar
2061#endif
2062 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2063 /* Figure out how many characters to replace. */
2064 numc = oap->end_vcol - oap->start_vcol + 1;
2065 if (bd.is_short && (!virtual_op || bd.is_MAX))
2066 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2067
2068#ifdef FEAT_MBYTE
2069 /* A double-wide character can be replaced only up to half the
2070 * times. */
2071 if ((*mb_char2cells)(c) > 1)
2072 {
2073 if ((numc & 1) && !bd.is_short)
2074 {
2075 ++bd.endspaces;
2076 ++n;
2077 }
2078 numc = numc / 2;
2079 }
2080
2081 /* Compute bytes needed, move character count to num_chars. */
2082 num_chars = numc;
2083 numc *= (*mb_char2len)(c);
2084#endif
2085 /* oldlen includes textlen, so don't double count */
2086 n += numc - bd.textlen;
2087
2088 oldp = ml_get_curline();
2089 oldlen = STRLEN(oldp);
2090 newp = alloc_check((unsigned)oldlen + 1 + n);
2091 if (newp == NULL)
2092 continue;
2093 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2094 /* copy up to deleted part */
2095 mch_memmove(newp, oldp, (size_t)bd.textcol);
2096 oldp += bd.textcol + bd.textlen;
2097 /* insert pre-spaces */
2098 copy_spaces(newp + bd.textcol, (size_t)bd.startspaces);
2099 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
2100#ifdef FEAT_MBYTE
2101 if (has_mbyte)
2102 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002103 n = (int)STRLEN(newp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 while (--num_chars >= 0)
2105 n += (*mb_char2bytes)(c, newp + n);
2106 }
2107 else
2108#endif
2109 copy_chars(newp + STRLEN(newp), (size_t)numc, c);
2110 if (!bd.is_short)
2111 {
2112 /* insert post-spaces */
2113 copy_spaces(newp + STRLEN(newp), (size_t)bd.endspaces);
2114 /* copy the part after the changed part */
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002115 STRMOVE(newp + STRLEN(newp), oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 }
2117 /* replace the line */
2118 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
2119 }
2120 }
2121 else
2122 {
2123 /*
2124 * MCHAR and MLINE motion replace.
2125 */
2126 if (oap->motion_type == MLINE)
2127 {
2128 oap->start.col = 0;
2129 curwin->w_cursor.col = 0;
2130 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2131 if (oap->end.col)
2132 --oap->end.col;
2133 }
2134 else if (!oap->inclusive)
2135 dec(&(oap->end));
2136
2137 while (ltoreq(curwin->w_cursor, oap->end))
2138 {
2139 n = gchar_cursor();
2140 if (n != NUL)
2141 {
2142#ifdef FEAT_MBYTE
2143 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2144 {
2145 /* This is slow, but it handles replacing a single-byte
2146 * with a multi-byte and the other way around. */
2147 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
2148 n = State;
2149 State = REPLACE;
2150 ins_char(c);
2151 State = n;
2152 /* Backup to the replaced character. */
2153 dec_cursor();
2154 }
2155 else
2156#endif
2157 {
2158#ifdef FEAT_VIRTUALEDIT
2159 if (n == TAB)
2160 {
2161 int end_vcol = 0;
2162
2163 if (curwin->w_cursor.lnum == oap->end.lnum)
2164 {
2165 /* oap->end has to be recalculated when
2166 * the tab breaks */
2167 end_vcol = getviscol2(oap->end.col,
2168 oap->end.coladd);
2169 }
2170 coladvance_force(getviscol());
2171 if (curwin->w_cursor.lnum == oap->end.lnum)
2172 getvpos(&oap->end, end_vcol);
2173 }
2174#endif
2175 pchar(curwin->w_cursor, c);
2176 }
2177 }
2178#ifdef FEAT_VIRTUALEDIT
2179 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2180 {
2181 int virtcols = oap->end.coladd;
2182
2183 if (curwin->w_cursor.lnum == oap->start.lnum
2184 && oap->start.col == oap->end.col && oap->start.coladd)
2185 virtcols -= oap->start.coladd;
2186
2187 /* oap->end has been trimmed so it's effectively inclusive;
2188 * as a result an extra +1 must be counted so we don't
2189 * trample the NUL byte. */
2190 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2191 curwin->w_cursor.col -= (virtcols + 1);
2192 for (; virtcols >= 0; virtcols--)
2193 {
2194 pchar(curwin->w_cursor, c);
2195 if (inc(&curwin->w_cursor) == -1)
2196 break;
2197 }
2198 }
2199#endif
2200
2201 /* Advance to next character, stop at the end of the file. */
2202 if (inc_cursor() == -1)
2203 break;
2204 }
2205 }
2206
2207 curwin->w_cursor = oap->start;
2208 check_cursor();
2209 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2210
2211 /* Set "'[" and "']" marks. */
2212 curbuf->b_op_start = oap->start;
2213 curbuf->b_op_end = oap->end;
2214
2215 return OK;
2216}
2217#endif
2218
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002219static int swapchars __ARGS((int op_type, pos_T *pos, int length));
2220
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221/*
2222 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2223 */
2224 void
2225op_tilde(oap)
2226 oparg_T *oap;
2227{
2228 pos_T pos;
2229#ifdef FEAT_VISUAL
2230 struct block_def bd;
Bram Moolenaar60a795a2005-09-16 21:55:43 +00002231#endif
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002232 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233
2234 if (u_save((linenr_T)(oap->start.lnum - 1),
2235 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2236 return;
2237
2238 pos = oap->start;
2239#ifdef FEAT_VISUAL
2240 if (oap->block_mode) /* Visual block mode */
2241 {
2242 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2243 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002244 int one_change;
2245
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 block_prep(oap, &bd, pos.lnum, FALSE);
2247 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002248 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2249 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002250
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002252 if (netbeans_active() && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 {
2254 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2255
Bram Moolenaar009b2592004-10-24 19:18:58 +00002256 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2257 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002259 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 }
2261# endif
2262 }
2263 if (did_change)
2264 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2265 }
2266 else /* not block mode */
2267#endif
2268 {
2269 if (oap->motion_type == MLINE)
2270 {
2271 oap->start.col = 0;
2272 pos.col = 0;
2273 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2274 if (oap->end.col)
2275 --oap->end.col;
2276 }
2277 else if (!oap->inclusive)
2278 dec(&(oap->end));
2279
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002280 if (pos.lnum == oap->end.lnum)
2281 did_change = swapchars(oap->op_type, &pos,
2282 oap->end.col - pos.col + 1);
2283 else
2284 for (;;)
2285 {
2286 did_change |= swapchars(oap->op_type, &pos,
2287 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2288 (int)STRLEN(ml_get_pos(&pos)));
2289 if (ltoreq(oap->end, pos) || inc(&pos) == -1)
2290 break;
2291 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 if (did_change)
2293 {
2294 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2295 0L);
2296#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002297 if (netbeans_active() && did_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 {
2299 char_u *ptr;
2300 int count;
2301
2302 pos = oap->start;
2303 while (pos.lnum < oap->end.lnum)
2304 {
2305 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002306 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002307 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002309 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 pos.col = 0;
2311 pos.lnum++;
2312 }
2313 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2314 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002315 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002317 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 }
2319#endif
2320 }
2321 }
2322
2323#ifdef FEAT_VISUAL
2324 if (!did_change && oap->is_VIsual)
2325 /* No change: need to remove the Visual selection */
2326 redraw_curbuf_later(INVERTED);
2327#endif
2328
2329 /*
2330 * Set '[ and '] marks.
2331 */
2332 curbuf->b_op_start = oap->start;
2333 curbuf->b_op_end = oap->end;
2334
2335 if (oap->line_count > p_report)
2336 {
2337 if (oap->line_count == 1)
2338 MSG(_("1 line changed"));
2339 else
2340 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2341 }
2342}
2343
2344/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002345 * Invoke swapchar() on "length" bytes at position "pos".
2346 * "pos" is advanced to just after the changed characters.
2347 * "length" is rounded up to include the whole last multi-byte character.
2348 * Also works correctly when the number of bytes changes.
2349 * Returns TRUE if some character was changed.
2350 */
2351 static int
2352swapchars(op_type, pos, length)
2353 int op_type;
2354 pos_T *pos;
2355 int length;
2356{
2357 int todo;
2358 int did_change = 0;
2359
2360 for (todo = length; todo > 0; --todo)
2361 {
2362# ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002363 if (has_mbyte)
2364 /* we're counting bytes, not characters */
2365 todo -= (*mb_ptr2len)(ml_get_pos(pos)) - 1;
2366# endif
2367 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002368 if (inc(pos) == -1) /* at end of file */
2369 break;
2370 }
2371 return did_change;
2372}
2373
2374/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 * If op_type == OP_UPPER: make uppercase,
2376 * if op_type == OP_LOWER: make lowercase,
2377 * if op_type == OP_ROT13: do rot13 encoding,
2378 * else swap case of character at 'pos'
2379 * returns TRUE when something actually changed.
2380 */
2381 int
2382swapchar(op_type, pos)
2383 int op_type;
2384 pos_T *pos;
2385{
2386 int c;
2387 int nc;
2388
2389 c = gchar_pos(pos);
2390
2391 /* Only do rot13 encoding for ASCII characters. */
2392 if (c >= 0x80 && op_type == OP_ROT13)
2393 return FALSE;
2394
2395#ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002396 if (op_type == OP_UPPER && c == 0xdf
2397 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002398 {
2399 pos_T sp = curwin->w_cursor;
2400
2401 /* Special handling of German sharp s: change to "SS". */
2402 curwin->w_cursor = *pos;
2403 del_char(FALSE);
2404 ins_char('S');
2405 ins_char('S');
2406 curwin->w_cursor = sp;
2407 inc(pos);
2408 }
2409
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2411 return FALSE;
2412#endif
2413 nc = c;
2414 if (MB_ISLOWER(c))
2415 {
2416 if (op_type == OP_ROT13)
2417 nc = ROT13(c, 'a');
2418 else if (op_type != OP_LOWER)
2419 nc = MB_TOUPPER(c);
2420 }
2421 else if (MB_ISUPPER(c))
2422 {
2423 if (op_type == OP_ROT13)
2424 nc = ROT13(c, 'A');
2425 else if (op_type != OP_UPPER)
2426 nc = MB_TOLOWER(c);
2427 }
2428 if (nc != c)
2429 {
2430#ifdef FEAT_MBYTE
2431 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2432 {
2433 pos_T sp = curwin->w_cursor;
2434
2435 curwin->w_cursor = *pos;
Bram Moolenaard1cb65e2010-08-01 14:22:48 +02002436 /* don't use del_char(), it also removes composing chars */
2437 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 ins_char(nc);
2439 curwin->w_cursor = sp;
2440 }
2441 else
2442#endif
2443 pchar(*pos, nc);
2444 return TRUE;
2445 }
2446 return FALSE;
2447}
2448
2449#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2450/*
2451 * op_insert - Insert and append operators for Visual mode.
2452 */
2453 void
2454op_insert(oap, count1)
2455 oparg_T *oap;
2456 long count1;
2457{
2458 long ins_len, pre_textlen = 0;
2459 char_u *firstline, *ins_text;
2460 struct block_def bd;
2461 int i;
2462
2463 /* edit() changes this - record it for OP_APPEND */
2464 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2465
2466 /* vis block is still marked. Get rid of it now. */
2467 curwin->w_cursor.lnum = oap->start.lnum;
2468 update_screen(INVERTED);
2469
2470 if (oap->block_mode)
2471 {
2472#ifdef FEAT_VIRTUALEDIT
2473 /* When 'virtualedit' is used, need to insert the extra spaces before
2474 * doing block_prep(). When only "block" is used, virtual edit is
2475 * already disabled, but still need it when calling
2476 * coladvance_force(). */
2477 if (curwin->w_cursor.coladd > 0)
2478 {
2479 int old_ve_flags = ve_flags;
2480
2481 ve_flags = VE_ALL;
2482 if (u_save_cursor() == FAIL)
2483 return;
2484 coladvance_force(oap->op_type == OP_APPEND
2485 ? oap->end_vcol + 1 : getviscol());
2486 if (oap->op_type == OP_APPEND)
2487 --curwin->w_cursor.col;
2488 ve_flags = old_ve_flags;
2489 }
2490#endif
2491 /* Get the info about the block before entering the text */
2492 block_prep(oap, &bd, oap->start.lnum, TRUE);
2493 firstline = ml_get(oap->start.lnum) + bd.textcol;
2494 if (oap->op_type == OP_APPEND)
2495 firstline += bd.textlen;
2496 pre_textlen = (long)STRLEN(firstline);
2497 }
2498
2499 if (oap->op_type == OP_APPEND)
2500 {
2501 if (oap->block_mode
2502#ifdef FEAT_VIRTUALEDIT
2503 && curwin->w_cursor.coladd == 0
2504#endif
2505 )
2506 {
2507 /* Move the cursor to the character right of the block. */
2508 curwin->w_set_curswant = TRUE;
2509 while (*ml_get_cursor() != NUL
2510 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2511 ++curwin->w_cursor.col;
2512 if (bd.is_short && !bd.is_MAX)
2513 {
2514 /* First line was too short, make it longer and adjust the
2515 * values in "bd". */
2516 if (u_save_cursor() == FAIL)
2517 return;
2518 for (i = 0; i < bd.endspaces; ++i)
2519 ins_char(' ');
2520 bd.textlen += bd.endspaces;
2521 }
2522 }
2523 else
2524 {
2525 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002526 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527
2528 /* Works just like an 'i'nsert on the next character. */
2529 if (!lineempty(curwin->w_cursor.lnum)
2530 && oap->start_vcol != oap->end_vcol)
2531 inc_cursor();
2532 }
2533 }
2534
2535 edit(NUL, FALSE, (linenr_T)count1);
2536
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002537 /* If user has moved off this line, we don't know what to do, so do
2538 * nothing.
2539 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2540 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 return;
2542
2543 if (oap->block_mode)
2544 {
2545 struct block_def bd2;
2546
2547 /*
2548 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002549 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 * Don't do this when "$" used, end-of-line will have changed.
2551 */
2552 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2553 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2554 {
2555 if (oap->op_type == OP_APPEND)
2556 {
2557 pre_textlen += bd2.textlen - bd.textlen;
2558 if (bd2.endspaces)
2559 --bd2.textlen;
2560 }
2561 bd.textcol = bd2.textcol;
2562 bd.textlen = bd2.textlen;
2563 }
2564
2565 /*
2566 * Subsequent calls to ml_get() flush the firstline data - take a
2567 * copy of the required string.
2568 */
2569 firstline = ml_get(oap->start.lnum) + bd.textcol;
2570 if (oap->op_type == OP_APPEND)
2571 firstline += bd.textlen;
2572 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
2573 {
2574 ins_text = vim_strnsave(firstline, (int)ins_len);
2575 if (ins_text != NULL)
2576 {
2577 /* block handled here */
2578 if (u_save(oap->start.lnum,
2579 (linenr_T)(oap->end.lnum + 1)) == OK)
2580 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2581 &bd);
2582
2583 curwin->w_cursor.col = oap->start.col;
2584 check_cursor();
2585 vim_free(ins_text);
2586 }
2587 }
2588 }
2589}
2590#endif
2591
2592/*
2593 * op_change - handle a change operation
2594 *
2595 * return TRUE if edit() returns because of a CTRL-O command
2596 */
2597 int
2598op_change(oap)
2599 oparg_T *oap;
2600{
2601 colnr_T l;
2602 int retval;
2603#ifdef FEAT_VISUALEXTRA
2604 long offset;
2605 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002606 long ins_len;
2607 long pre_textlen = 0;
2608 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 char_u *firstline;
2610 char_u *ins_text, *newp, *oldp;
2611 struct block_def bd;
2612#endif
2613
2614 l = oap->start.col;
2615 if (oap->motion_type == MLINE)
2616 {
2617 l = 0;
2618#ifdef FEAT_SMARTINDENT
2619 if (!p_paste && curbuf->b_p_si
2620# ifdef FEAT_CINDENT
2621 && !curbuf->b_p_cin
2622# endif
2623 )
2624 can_si = TRUE; /* It's like opening a new line, do si */
2625#endif
2626 }
2627
2628 /* First delete the text in the region. In an empty buffer only need to
2629 * save for undo */
2630 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2631 {
2632 if (u_save_cursor() == FAIL)
2633 return FALSE;
2634 }
2635 else if (op_delete(oap) == FAIL)
2636 return FALSE;
2637
2638 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
2639 && !virtual_op)
2640 inc_cursor();
2641
2642#ifdef FEAT_VISUALEXTRA
2643 /* check for still on same line (<CR> in inserted text meaningless) */
2644 /* skip blank lines too */
2645 if (oap->block_mode)
2646 {
2647# ifdef FEAT_VIRTUALEDIT
2648 /* Add spaces before getting the current line length. */
2649 if (virtual_op && (curwin->w_cursor.coladd > 0
2650 || gchar_cursor() == NUL))
2651 coladvance_force(getviscol());
2652# endif
Bram Moolenaar53241da2007-09-13 20:41:32 +00002653 firstline = ml_get(oap->start.lnum);
2654 pre_textlen = (long)STRLEN(firstline);
2655 pre_indent = (long)(skipwhite(firstline) - firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 bd.textcol = curwin->w_cursor.col;
2657 }
2658#endif
2659
2660#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2661 if (oap->motion_type == MLINE)
2662 fix_indent();
2663#endif
2664
2665 retval = edit(NUL, FALSE, (linenr_T)1);
2666
2667#ifdef FEAT_VISUALEXTRA
2668 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002669 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002671 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002673 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002675 /* Auto-indenting may have changed the indent. If the cursor was past
2676 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002678 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002680 long new_indent = (long)(skipwhite(firstline) - firstline);
2681
2682 pre_textlen += new_indent - pre_indent;
2683 bd.textcol += new_indent - pre_indent;
2684 }
2685
2686 ins_len = (long)STRLEN(firstline) - pre_textlen;
2687 if (ins_len > 0)
2688 {
2689 /* Subsequent calls to ml_get() flush the firstline data - take a
2690 * copy of the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2692 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002693 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2695 linenr++)
2696 {
2697 block_prep(oap, &bd, linenr, TRUE);
2698 if (!bd.is_short || virtual_op)
2699 {
2700# ifdef FEAT_VIRTUALEDIT
2701 pos_T vpos;
2702
2703 /* If the block starts in virtual space, count the
2704 * initial coladd offset as part of "startspaces" */
2705 if (bd.is_short)
2706 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002707 vpos.lnum = linenr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 (void)getvpos(&vpos, oap->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 }
2710 else
2711 vpos.coladd = 0;
2712# endif
2713 oldp = ml_get(linenr);
2714 newp = alloc_check((unsigned)(STRLEN(oldp)
2715# ifdef FEAT_VIRTUALEDIT
2716 + vpos.coladd
2717# endif
2718 + ins_len + 1));
2719 if (newp == NULL)
2720 continue;
2721 /* copy up to block start */
2722 mch_memmove(newp, oldp, (size_t)bd.textcol);
2723 offset = bd.textcol;
2724# ifdef FEAT_VIRTUALEDIT
2725 copy_spaces(newp + offset, (size_t)vpos.coladd);
2726 offset += vpos.coladd;
2727# endif
2728 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2729 offset += ins_len;
2730 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002731 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732 ml_replace(linenr, newp, FALSE);
2733 }
2734 }
2735 check_cursor();
2736
2737 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2738 }
2739 vim_free(ins_text);
2740 }
2741 }
2742#endif
2743
2744 return retval;
2745}
2746
2747/*
2748 * set all the yank registers to empty (called from main())
2749 */
2750 void
2751init_yank()
2752{
2753 int i;
2754
2755 for (i = 0; i < NUM_REGISTERS; ++i)
2756 y_regs[i].y_array = NULL;
2757}
2758
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002759#if defined(EXITFREE) || defined(PROTO)
2760 void
2761clear_registers()
2762{
2763 int i;
2764
2765 for (i = 0; i < NUM_REGISTERS; ++i)
2766 {
2767 y_current = &y_regs[i];
2768 if (y_current->y_array != NULL)
2769 free_yank_all();
2770 }
2771}
2772#endif
2773
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774/*
2775 * Free "n" lines from the current yank register.
2776 * Called for normal freeing and in case of error.
2777 */
2778 static void
2779free_yank(n)
2780 long n;
2781{
2782 if (y_current->y_array != NULL)
2783 {
2784 long i;
2785
2786 for (i = n; --i >= 0; )
2787 {
2788#ifdef AMIGA /* only for very slow machines */
2789 if ((i & 1023) == 1023) /* this may take a while */
2790 {
2791 /*
2792 * This message should never cause a hit-return message.
2793 * Overwrite this message with any next message.
2794 */
2795 ++no_wait_return;
2796 smsg((char_u *)_("freeing %ld lines"), i + 1);
2797 --no_wait_return;
2798 msg_didout = FALSE;
2799 msg_col = 0;
2800 }
2801#endif
2802 vim_free(y_current->y_array[i]);
2803 }
2804 vim_free(y_current->y_array);
2805 y_current->y_array = NULL;
2806#ifdef AMIGA
2807 if (n >= 1000)
2808 MSG("");
2809#endif
2810 }
2811}
2812
2813 static void
2814free_yank_all()
2815{
2816 free_yank(y_current->y_size);
2817}
2818
2819/*
2820 * Yank the text between "oap->start" and "oap->end" into a yank register.
2821 * If we are to append (uppercase register), we first yank into a new yank
2822 * register and then concatenate the old and the new one (so we keep the old
2823 * one in case of out-of-memory).
2824 *
2825 * return FAIL for failure, OK otherwise
2826 */
2827 int
2828op_yank(oap, deleting, mess)
2829 oparg_T *oap;
2830 int deleting;
2831 int mess;
2832{
2833 long y_idx; /* index in y_array[] */
2834 struct yankreg *curr; /* copy of y_current */
2835 struct yankreg newreg; /* new yank register when appending */
2836 char_u **new_ptr;
2837 linenr_T lnum; /* current line number */
2838 long j;
2839 int yanktype = oap->motion_type;
2840 long yanklines = oap->line_count;
2841 linenr_T yankendlnum = oap->end.lnum;
2842 char_u *p;
2843 char_u *pnew;
2844 struct block_def bd;
2845
2846 /* check for read-only register */
2847 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2848 {
2849 beep_flush();
2850 return FAIL;
2851 }
2852 if (oap->regname == '_') /* black hole: nothing to do */
2853 return OK;
2854
2855#ifdef FEAT_CLIPBOARD
2856 if (!clip_star.available && oap->regname == '*')
2857 oap->regname = 0;
2858 else if (!clip_plus.available && oap->regname == '+')
2859 oap->regname = 0;
2860#endif
2861
2862 if (!deleting) /* op_delete() already set y_current */
2863 get_yank_register(oap->regname, TRUE);
2864
2865 curr = y_current;
2866 /* append to existing contents */
2867 if (y_append && y_current->y_array != NULL)
2868 y_current = &newreg;
2869 else
2870 free_yank_all(); /* free previously yanked lines */
2871
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002872 /*
2873 * If the cursor was in column 1 before and after the movement, and the
2874 * operator is not inclusive, the yank is always linewise.
2875 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876 if ( oap->motion_type == MCHAR
2877 && oap->start.col == 0
2878 && !oap->inclusive
2879#ifdef FEAT_VISUAL
2880 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00002881 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882#endif
2883 && oap->end.col == 0
2884 && yanklines > 1)
2885 {
2886 yanktype = MLINE;
2887 --yankendlnum;
2888 --yanklines;
2889 }
2890
2891 y_current->y_size = yanklines;
2892 y_current->y_type = yanktype; /* set the yank register type */
2893#ifdef FEAT_VISUAL
2894 y_current->y_width = 0;
2895#endif
2896 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
2897 yanklines), TRUE);
2898
2899 if (y_current->y_array == NULL)
2900 {
2901 y_current = curr;
2902 return FAIL;
2903 }
2904
2905 y_idx = 0;
2906 lnum = oap->start.lnum;
2907
2908#ifdef FEAT_VISUAL
2909 if (oap->block_mode)
2910 {
2911 /* Visual block mode */
2912 y_current->y_type = MBLOCK; /* set the yank register type */
2913 y_current->y_width = oap->end_vcol - oap->start_vcol;
2914
2915 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
2916 y_current->y_width--;
2917 }
2918#endif
2919
2920 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
2921 {
2922 switch (y_current->y_type)
2923 {
2924#ifdef FEAT_VISUAL
2925 case MBLOCK:
2926 block_prep(oap, &bd, lnum, FALSE);
2927 if (yank_copy_line(&bd, y_idx) == FAIL)
2928 goto fail;
2929 break;
2930#endif
2931
2932 case MLINE:
2933 if ((y_current->y_array[y_idx] =
2934 vim_strsave(ml_get(lnum))) == NULL)
2935 goto fail;
2936 break;
2937
2938 case MCHAR:
2939 {
2940 colnr_T startcol = 0, endcol = MAXCOL;
2941#ifdef FEAT_VIRTUALEDIT
2942 int is_oneChar = FALSE;
2943 colnr_T cs, ce;
2944#endif
2945 p = ml_get(lnum);
2946 bd.startspaces = 0;
2947 bd.endspaces = 0;
2948
2949 if (lnum == oap->start.lnum)
2950 {
2951 startcol = oap->start.col;
2952#ifdef FEAT_VIRTUALEDIT
2953 if (virtual_op)
2954 {
2955 getvcol(curwin, &oap->start, &cs, NULL, &ce);
2956 if (ce != cs && oap->start.coladd > 0)
2957 {
2958 /* Part of a tab selected -- but don't
2959 * double-count it. */
2960 bd.startspaces = (ce - cs + 1)
2961 - oap->start.coladd;
2962 startcol++;
2963 }
2964 }
2965#endif
2966 }
2967
2968 if (lnum == oap->end.lnum)
2969 {
2970 endcol = oap->end.col;
2971#ifdef FEAT_VIRTUALEDIT
2972 if (virtual_op)
2973 {
2974 getvcol(curwin, &oap->end, &cs, NULL, &ce);
2975 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
2976# ifdef FEAT_MBYTE
2977 /* Don't add space for double-wide
2978 * char; endcol will be on last byte
2979 * of multi-byte char. */
2980 && (*mb_head_off)(p, p + endcol) == 0
2981# endif
2982 ))
2983 {
2984 if (oap->start.lnum == oap->end.lnum
2985 && oap->start.col == oap->end.col)
2986 {
2987 /* Special case: inside a single char */
2988 is_oneChar = TRUE;
2989 bd.startspaces = oap->end.coladd
2990 - oap->start.coladd + oap->inclusive;
2991 endcol = startcol;
2992 }
2993 else
2994 {
2995 bd.endspaces = oap->end.coladd
2996 + oap->inclusive;
2997 endcol -= oap->inclusive;
2998 }
2999 }
3000 }
3001#endif
3002 }
3003 if (startcol > endcol
3004#ifdef FEAT_VIRTUALEDIT
3005 || is_oneChar
3006#endif
3007 )
3008 bd.textlen = 0;
3009 else
3010 {
3011 if (endcol == MAXCOL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003012 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 bd.textlen = endcol - startcol + oap->inclusive;
3014 }
3015 bd.textstart = p + startcol;
3016 if (yank_copy_line(&bd, y_idx) == FAIL)
3017 goto fail;
3018 break;
3019 }
3020 /* NOTREACHED */
3021 }
3022 }
3023
3024 if (curr != y_current) /* append the new block to the old block */
3025 {
3026 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3027 (curr->y_size + y_current->y_size)), TRUE);
3028 if (new_ptr == NULL)
3029 goto fail;
3030 for (j = 0; j < curr->y_size; ++j)
3031 new_ptr[j] = curr->y_array[j];
3032 vim_free(curr->y_array);
3033 curr->y_array = new_ptr;
3034
3035 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3036 curr->y_type = MLINE;
3037
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003038 /* Concatenate the last line of the old block with the first line of
3039 * the new block, unless being Vi compatible. */
3040 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 {
3042 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3043 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3044 if (pnew == NULL)
3045 {
3046 y_idx = y_current->y_size - 1;
3047 goto fail;
3048 }
3049 STRCPY(pnew, curr->y_array[--j]);
3050 STRCAT(pnew, y_current->y_array[0]);
3051 vim_free(curr->y_array[j]);
3052 vim_free(y_current->y_array[0]);
3053 curr->y_array[j++] = pnew;
3054 y_idx = 1;
3055 }
3056 else
3057 y_idx = 0;
3058 while (y_idx < y_current->y_size)
3059 curr->y_array[j++] = y_current->y_array[y_idx++];
3060 curr->y_size = j;
3061 vim_free(y_current->y_array);
3062 y_current = curr;
3063 }
3064 if (mess) /* Display message about yank? */
3065 {
3066 if (yanktype == MCHAR
3067#ifdef FEAT_VISUAL
3068 && !oap->block_mode
3069#endif
3070 && yanklines == 1)
3071 yanklines = 0;
3072 /* Some versions of Vi use ">=" here, some don't... */
3073 if (yanklines > p_report)
3074 {
3075 /* redisplay now, so message is not deleted */
3076 update_topline_redraw();
3077 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003078 {
3079#ifdef FEAT_VISUAL
3080 if (oap->block_mode)
3081 MSG(_("block of 1 line yanked"));
3082 else
3083#endif
3084 MSG(_("1 line yanked"));
3085 }
3086#ifdef FEAT_VISUAL
3087 else if (oap->block_mode)
3088 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
3089#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090 else
3091 smsg((char_u *)_("%ld lines yanked"), yanklines);
3092 }
3093 }
3094
3095 /*
3096 * Set "'[" and "']" marks.
3097 */
3098 curbuf->b_op_start = oap->start;
3099 curbuf->b_op_end = oap->end;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003100 if (yanktype == MLINE
3101#ifdef FEAT_VISUAL
3102 && !oap->block_mode
3103#endif
3104 )
3105 {
3106 curbuf->b_op_start.col = 0;
3107 curbuf->b_op_end.col = MAXCOL;
3108 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109
3110#ifdef FEAT_CLIPBOARD
3111 /*
3112 * If we were yanking to the '*' register, send result to clipboard.
3113 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3114 * to the '*' register.
3115 */
3116 if (clip_star.available
3117 && (curr == &(y_regs[STAR_REGISTER])
3118 || (!deleting && oap->regname == 0 && clip_unnamed)))
3119 {
3120 if (curr != &(y_regs[STAR_REGISTER]))
3121 /* Copy the text from register 0 to the clipboard register. */
3122 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3123
3124 clip_own_selection(&clip_star);
3125 clip_gen_set_selection(&clip_star);
3126 }
3127
3128# ifdef FEAT_X11
3129 /*
3130 * If we were yanking to the '+' register, send result to selection.
3131 * Also copy to the '*' register, in case auto-select is off.
3132 */
3133 else if (clip_plus.available && curr == &(y_regs[PLUS_REGISTER]))
3134 {
3135 /* No need to copy to * register upon 'unnamed' now - see below */
3136 clip_own_selection(&clip_plus);
3137 clip_gen_set_selection(&clip_plus);
3138 if (!clip_isautosel())
3139 {
3140 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3141 clip_own_selection(&clip_star);
3142 clip_gen_set_selection(&clip_star);
3143 }
3144 }
3145# endif
3146#endif
3147
3148 return OK;
3149
3150fail: /* free the allocated lines */
3151 free_yank(y_idx + 1);
3152 y_current = curr;
3153 return FAIL;
3154}
3155
3156 static int
3157yank_copy_line(bd, y_idx)
3158 struct block_def *bd;
3159 long y_idx;
3160{
3161 char_u *pnew;
3162
3163 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3164 == NULL)
3165 return FAIL;
3166 y_current->y_array[y_idx] = pnew;
3167 copy_spaces(pnew, (size_t)bd->startspaces);
3168 pnew += bd->startspaces;
3169 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3170 pnew += bd->textlen;
3171 copy_spaces(pnew, (size_t)bd->endspaces);
3172 pnew += bd->endspaces;
3173 *pnew = NUL;
3174 return OK;
3175}
3176
3177#ifdef FEAT_CLIPBOARD
3178/*
3179 * Make a copy of the y_current register to register "reg".
3180 */
3181 static void
3182copy_yank_reg(reg)
3183 struct yankreg *reg;
3184{
3185 struct yankreg *curr = y_current;
3186 long j;
3187
3188 y_current = reg;
3189 free_yank_all();
3190 *y_current = *curr;
3191 y_current->y_array = (char_u **)lalloc_clear(
3192 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3193 if (y_current->y_array == NULL)
3194 y_current->y_size = 0;
3195 else
3196 for (j = 0; j < y_current->y_size; ++j)
3197 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3198 {
3199 free_yank(j);
3200 y_current->y_size = 0;
3201 break;
3202 }
3203 y_current = curr;
3204}
3205#endif
3206
3207/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003208 * Put contents of register "regname" into the text.
3209 * Caller must check "regname" to be valid!
3210 * "flags": PUT_FIXINDENT make indent look nice
3211 * PUT_CURSEND leave cursor after end of new text
3212 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 */
3214 void
3215do_put(regname, dir, count, flags)
3216 int regname;
3217 int dir; /* BACKWARD for 'P', FORWARD for 'p' */
3218 long count;
3219 int flags;
3220{
3221 char_u *ptr;
3222 char_u *newp, *oldp;
3223 int yanklen;
3224 int totlen = 0; /* init for gcc */
3225 linenr_T lnum;
3226 colnr_T col;
3227 long i; /* index in y_array[] */
3228 int y_type;
3229 long y_size;
3230#ifdef FEAT_VISUAL
3231 int oldlen;
3232 long y_width = 0;
3233 colnr_T vcol;
3234 int delcount;
3235 int incr = 0;
3236 long j;
3237 struct block_def bd;
3238#endif
3239 char_u **y_array = NULL;
3240 long nr_lines = 0;
3241 pos_T new_cursor;
3242 int indent;
3243 int orig_indent = 0; /* init for gcc */
3244 int indent_diff = 0; /* init for gcc */
3245 int first_indent = TRUE;
3246 int lendiff = 0;
3247 pos_T old_pos;
3248 char_u *insert_string = NULL;
3249 int allocated = FALSE;
3250 long cnt;
3251
3252#ifdef FEAT_CLIPBOARD
3253 /* Adjust register name for "unnamed" in 'clipboard'. */
3254 adjust_clip_reg(&regname);
3255 (void)may_get_selection(regname);
3256#endif
3257
3258 if (flags & PUT_FIXINDENT)
3259 orig_indent = get_indent();
3260
3261 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3262 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3263
3264 /*
3265 * Using inserted text works differently, because the register includes
3266 * special characters (newlines, etc.).
3267 */
3268 if (regname == '.')
3269 {
3270 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3271 (count == -1 ? 'O' : 'i')), count, FALSE);
3272 /* Putting the text is done later, so can't really move the cursor to
3273 * the next character. Use "l" to simulate it. */
3274 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3275 stuffcharReadbuff('l');
3276 return;
3277 }
3278
3279 /*
3280 * For special registers '%' (file name), '#' (alternate file name) and
3281 * ':' (last command line), etc. we have to create a fake yank register.
3282 */
3283 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3284 {
3285 if (insert_string == NULL)
3286 return;
3287 }
3288
3289 if (insert_string != NULL)
3290 {
3291 y_type = MCHAR;
3292#ifdef FEAT_EVAL
3293 if (regname == '=')
3294 {
3295 /* For the = register we need to split the string at NL
3296 * characters. */
3297 /* Loop twice: count the number of lines and save them. */
3298 for (;;)
3299 {
3300 y_size = 0;
3301 ptr = insert_string;
3302 while (ptr != NULL)
3303 {
3304 if (y_array != NULL)
3305 y_array[y_size] = ptr;
3306 ++y_size;
3307 ptr = vim_strchr(ptr, '\n');
3308 if (ptr != NULL)
3309 {
3310 if (y_array != NULL)
3311 *ptr = NUL;
3312 ++ptr;
3313 /* A trailing '\n' makes the string linewise */
3314 if (*ptr == NUL)
3315 {
3316 y_type = MLINE;
3317 break;
3318 }
3319 }
3320 }
3321 if (y_array != NULL)
3322 break;
3323 y_array = (char_u **)alloc((unsigned)
3324 (y_size * sizeof(char_u *)));
3325 if (y_array == NULL)
3326 goto end;
3327 }
3328 }
3329 else
3330#endif
3331 {
3332 y_size = 1; /* use fake one-line yank register */
3333 y_array = &insert_string;
3334 }
3335 }
3336 else
3337 {
3338 get_yank_register(regname, FALSE);
3339
3340 y_type = y_current->y_type;
3341#ifdef FEAT_VISUAL
3342 y_width = y_current->y_width;
3343#endif
3344 y_size = y_current->y_size;
3345 y_array = y_current->y_array;
3346 }
3347
3348#ifdef FEAT_VISUAL
3349 if (y_type == MLINE)
3350 {
3351 if (flags & PUT_LINE_SPLIT)
3352 {
3353 /* "p" or "P" in Visual mode: split the lines to put the text in
3354 * between. */
3355 if (u_save_cursor() == FAIL)
3356 goto end;
3357 ptr = vim_strsave(ml_get_cursor());
3358 if (ptr == NULL)
3359 goto end;
3360 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3361 vim_free(ptr);
3362
3363 ptr = vim_strnsave(ml_get_curline(), curwin->w_cursor.col);
3364 if (ptr == NULL)
3365 goto end;
3366 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3367 ++nr_lines;
3368 dir = FORWARD;
3369 }
3370 if (flags & PUT_LINE_FORWARD)
3371 {
3372 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003373 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 dir = FORWARD;
3375 }
3376 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3377 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3378 }
3379#endif
3380
3381 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3382 y_type = MLINE;
3383
3384 if (y_size == 0 || y_array == NULL)
3385 {
3386 EMSG2(_("E353: Nothing in register %s"),
3387 regname == 0 ? (char_u *)"\"" : transchar(regname));
3388 goto end;
3389 }
3390
3391#ifdef FEAT_VISUAL
3392 if (y_type == MBLOCK)
3393 {
3394 lnum = curwin->w_cursor.lnum + y_size + 1;
3395 if (lnum > curbuf->b_ml.ml_line_count)
3396 lnum = curbuf->b_ml.ml_line_count + 1;
3397 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3398 goto end;
3399 }
3400 else
3401#endif
3402 if (y_type == MLINE)
3403 {
3404 lnum = curwin->w_cursor.lnum;
3405#ifdef FEAT_FOLDING
3406 /* Correct line number for closed fold. Don't move the cursor yet,
3407 * u_save() uses it. */
3408 if (dir == BACKWARD)
3409 (void)hasFolding(lnum, &lnum, NULL);
3410 else
3411 (void)hasFolding(lnum, NULL, &lnum);
3412#endif
3413 if (dir == FORWARD)
3414 ++lnum;
3415 if (u_save(lnum - 1, lnum) == FAIL)
3416 goto end;
3417#ifdef FEAT_FOLDING
3418 if (dir == FORWARD)
3419 curwin->w_cursor.lnum = lnum - 1;
3420 else
3421 curwin->w_cursor.lnum = lnum;
3422 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3423#endif
3424 }
3425 else if (u_save_cursor() == FAIL)
3426 goto end;
3427
3428 yanklen = (int)STRLEN(y_array[0]);
3429
3430#ifdef FEAT_VIRTUALEDIT
3431 if (ve_flags == VE_ALL && y_type == MCHAR)
3432 {
3433 if (gchar_cursor() == TAB)
3434 {
3435 /* Don't need to insert spaces when "p" on the last position of a
3436 * tab or "P" on the first position. */
3437 if (dir == FORWARD
3438 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3439 : curwin->w_cursor.coladd > 0)
3440 coladvance_force(getviscol());
3441 else
3442 curwin->w_cursor.coladd = 0;
3443 }
3444 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3445 coladvance_force(getviscol() + (dir == FORWARD));
3446 }
3447#endif
3448
3449 lnum = curwin->w_cursor.lnum;
3450 col = curwin->w_cursor.col;
3451
3452#ifdef FEAT_VISUAL
3453 /*
3454 * Block mode
3455 */
3456 if (y_type == MBLOCK)
3457 {
3458 char c = gchar_cursor();
3459 colnr_T endcol2 = 0;
3460
3461 if (dir == FORWARD && c != NUL)
3462 {
3463#ifdef FEAT_VIRTUALEDIT
3464 if (ve_flags == VE_ALL)
3465 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3466 else
3467#endif
3468 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3469
3470#ifdef FEAT_MBYTE
3471 if (has_mbyte)
3472 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003473 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 else
3475#endif
3476#ifdef FEAT_VIRTUALEDIT
3477 if (c != TAB || ve_flags != VE_ALL)
3478#endif
3479 ++curwin->w_cursor.col;
3480 ++col;
3481 }
3482 else
3483 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3484
3485#ifdef FEAT_VIRTUALEDIT
3486 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003487 if (ve_flags == VE_ALL
3488 && (curwin->w_cursor.coladd > 0
3489 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 {
3491 if (dir == FORWARD && c == NUL)
3492 ++col;
3493 if (dir != FORWARD && c != NUL)
3494 ++curwin->w_cursor.col;
3495 if (c == TAB)
3496 {
3497 if (dir == BACKWARD && curwin->w_cursor.col)
3498 curwin->w_cursor.col--;
3499 if (dir == FORWARD && col - 1 == endcol2)
3500 curwin->w_cursor.col++;
3501 }
3502 }
3503 curwin->w_cursor.coladd = 0;
3504#endif
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003505 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 for (i = 0; i < y_size; ++i)
3507 {
3508 int spaces;
3509 char shortline;
3510
3511 bd.startspaces = 0;
3512 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 vcol = 0;
3514 delcount = 0;
3515
3516 /* add a new line */
3517 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3518 {
3519 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3520 (colnr_T)1, FALSE) == FAIL)
3521 break;
3522 ++nr_lines;
3523 }
3524 /* get the old line and advance to the position to insert at */
3525 oldp = ml_get_curline();
3526 oldlen = (int)STRLEN(oldp);
3527 for (ptr = oldp; vcol < col && *ptr; )
3528 {
3529 /* Count a tab for what it's worth (if list mode not on) */
3530 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
3531 vcol += incr;
3532 }
3533 bd.textcol = (colnr_T)(ptr - oldp);
3534
3535 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3536
3537 if (vcol < col) /* line too short, padd with spaces */
3538 bd.startspaces = col - vcol;
3539 else if (vcol > col)
3540 {
3541 bd.endspaces = vcol - col;
3542 bd.startspaces = incr - bd.endspaces;
3543 --bd.textcol;
3544 delcount = 1;
3545#ifdef FEAT_MBYTE
3546 if (has_mbyte)
3547 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3548#endif
3549 if (oldp[bd.textcol] != TAB)
3550 {
3551 /* Only a Tab can be split into spaces. Other
3552 * characters will have to be moved to after the
3553 * block, causing misalignment. */
3554 delcount = 0;
3555 bd.endspaces = 0;
3556 }
3557 }
3558
3559 yanklen = (int)STRLEN(y_array[i]);
3560
3561 /* calculate number of spaces required to fill right side of block*/
3562 spaces = y_width + 1;
3563 for (j = 0; j < yanklen; j++)
3564 spaces -= lbr_chartabsize(&y_array[i][j], 0);
3565 if (spaces < 0)
3566 spaces = 0;
3567
3568 /* insert the new text */
3569 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3570 newp = alloc_check((unsigned)totlen + oldlen + 1);
3571 if (newp == NULL)
3572 break;
3573 /* copy part up to cursor to new line */
3574 ptr = newp;
3575 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3576 ptr += bd.textcol;
3577 /* may insert some spaces before the new text */
3578 copy_spaces(ptr, (size_t)bd.startspaces);
3579 ptr += bd.startspaces;
3580 /* insert the new text */
3581 for (j = 0; j < count; ++j)
3582 {
3583 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3584 ptr += yanklen;
3585
3586 /* insert block's trailing spaces only if there's text behind */
3587 if ((j < count - 1 || !shortline) && spaces)
3588 {
3589 copy_spaces(ptr, (size_t)spaces);
3590 ptr += spaces;
3591 }
3592 }
3593 /* may insert some spaces after the new text */
3594 copy_spaces(ptr, (size_t)bd.endspaces);
3595 ptr += bd.endspaces;
3596 /* move the text after the cursor to the end of the line. */
3597 mch_memmove(ptr, oldp + bd.textcol + delcount,
3598 (size_t)(oldlen - bd.textcol - delcount + 1));
3599 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3600
3601 ++curwin->w_cursor.lnum;
3602 if (i == 0)
3603 curwin->w_cursor.col += bd.startspaces;
3604 }
3605
3606 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3607
3608 /* Set '[ mark. */
3609 curbuf->b_op_start = curwin->w_cursor;
3610 curbuf->b_op_start.lnum = lnum;
3611
3612 /* adjust '] mark */
3613 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3614 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003615# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003617# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 if (flags & PUT_CURSEND)
3619 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003620 colnr_T len;
3621
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 curwin->w_cursor = curbuf->b_op_end;
3623 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003624
3625 /* in Insert mode we might be after the NUL, correct for that */
3626 len = (colnr_T)STRLEN(ml_get_curline());
3627 if (curwin->w_cursor.col > len)
3628 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 }
3630 else
3631 curwin->w_cursor.lnum = lnum;
3632 }
3633 else
3634#endif
3635 {
3636 /*
3637 * Character or Line mode
3638 */
3639 if (y_type == MCHAR)
3640 {
3641 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3642 * char */
3643 if (dir == FORWARD && gchar_cursor() != NUL)
3644 {
3645#ifdef FEAT_MBYTE
3646 if (has_mbyte)
3647 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003648 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649
3650 /* put it on the next of the multi-byte character. */
3651 col += bytelen;
3652 if (yanklen)
3653 {
3654 curwin->w_cursor.col += bytelen;
3655 curbuf->b_op_end.col += bytelen;
3656 }
3657 }
3658 else
3659#endif
3660 {
3661 ++col;
3662 if (yanklen)
3663 {
3664 ++curwin->w_cursor.col;
3665 ++curbuf->b_op_end.col;
3666 }
3667 }
3668 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 curbuf->b_op_start = curwin->w_cursor;
3670 }
3671 /*
3672 * Line mode: BACKWARD is the same as FORWARD on the previous line
3673 */
3674 else if (dir == BACKWARD)
3675 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003676 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677
3678 /*
3679 * simple case: insert into current line
3680 */
3681 if (y_type == MCHAR && y_size == 1)
3682 {
3683 totlen = count * yanklen;
3684 if (totlen)
3685 {
3686 oldp = ml_get(lnum);
3687 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3688 if (newp == NULL)
3689 goto end; /* alloc() will give error message */
3690 mch_memmove(newp, oldp, (size_t)col);
3691 ptr = newp + col;
3692 for (i = 0; i < count; ++i)
3693 {
3694 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3695 ptr += yanklen;
3696 }
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00003697 STRMOVE(ptr, oldp + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 ml_replace(lnum, newp, FALSE);
3699 /* Put cursor on last putted char. */
3700 curwin->w_cursor.col += (colnr_T)(totlen - 1);
3701 }
3702 curbuf->b_op_end = curwin->w_cursor;
3703 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3704 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3705 ++curwin->w_cursor.col;
3706 changed_bytes(lnum, col);
3707 }
3708 else
3709 {
3710 /*
3711 * Insert at least one line. When y_type is MCHAR, break the first
3712 * line in two.
3713 */
3714 for (cnt = 1; cnt <= count; ++cnt)
3715 {
3716 i = 0;
3717 if (y_type == MCHAR)
3718 {
3719 /*
3720 * Split the current line in two at the insert position.
3721 * First insert y_array[size - 1] in front of second line.
3722 * Then append y_array[0] to first line.
3723 */
3724 lnum = new_cursor.lnum;
3725 ptr = ml_get(lnum) + col;
3726 totlen = (int)STRLEN(y_array[y_size - 1]);
3727 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3728 if (newp == NULL)
3729 goto error;
3730 STRCPY(newp, y_array[y_size - 1]);
3731 STRCAT(newp, ptr);
3732 /* insert second line */
3733 ml_append(lnum, newp, (colnr_T)0, FALSE);
3734 vim_free(newp);
3735
3736 oldp = ml_get(lnum);
3737 newp = alloc_check((unsigned)(col + yanklen + 1));
3738 if (newp == NULL)
3739 goto error;
3740 /* copy first part of line */
3741 mch_memmove(newp, oldp, (size_t)col);
3742 /* append to first line */
3743 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3744 ml_replace(lnum, newp, FALSE);
3745
3746 curwin->w_cursor.lnum = lnum;
3747 i = 1;
3748 }
3749
3750 for (; i < y_size; ++i)
3751 {
3752 if ((y_type != MCHAR || i < y_size - 1)
3753 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3754 == FAIL)
3755 goto error;
3756 lnum++;
3757 ++nr_lines;
3758 if (flags & PUT_FIXINDENT)
3759 {
3760 old_pos = curwin->w_cursor;
3761 curwin->w_cursor.lnum = lnum;
3762 ptr = ml_get(lnum);
3763 if (cnt == count && i == y_size - 1)
3764 lendiff = (int)STRLEN(ptr);
3765#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3766 if (*ptr == '#' && preprocs_left())
3767 indent = 0; /* Leave # lines at start */
3768 else
3769#endif
3770 if (*ptr == NUL)
3771 indent = 0; /* Ignore empty lines */
3772 else if (first_indent)
3773 {
3774 indent_diff = orig_indent - get_indent();
3775 indent = orig_indent;
3776 first_indent = FALSE;
3777 }
3778 else if ((indent = get_indent() + indent_diff) < 0)
3779 indent = 0;
3780 (void)set_indent(indent, 0);
3781 curwin->w_cursor = old_pos;
3782 /* remember how many chars were removed */
3783 if (cnt == count && i == y_size - 1)
3784 lendiff -= (int)STRLEN(ml_get(lnum));
3785 }
3786 }
3787 }
3788
3789error:
3790 /* Adjust marks. */
3791 if (y_type == MLINE)
3792 {
3793 curbuf->b_op_start.col = 0;
3794 if (dir == FORWARD)
3795 curbuf->b_op_start.lnum++;
3796 }
3797 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
3798 (linenr_T)MAXLNUM, nr_lines, 0L);
3799
3800 /* note changed text for displaying and folding */
3801 if (y_type == MCHAR)
3802 changed_lines(curwin->w_cursor.lnum, col,
3803 curwin->w_cursor.lnum + 1, nr_lines);
3804 else
3805 changed_lines(curbuf->b_op_start.lnum, 0,
3806 curbuf->b_op_start.lnum, nr_lines);
3807
3808 /* put '] mark at last inserted character */
3809 curbuf->b_op_end.lnum = lnum;
3810 /* correct length for change in indent */
3811 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3812 if (col > 1)
3813 curbuf->b_op_end.col = col - 1;
3814 else
3815 curbuf->b_op_end.col = 0;
3816
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003817 if (flags & PUT_CURSLINE)
3818 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003819 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003820 curwin->w_cursor.lnum = lnum;
3821 beginline(BL_WHITE | BL_FIX);
3822 }
3823 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 {
3825 /* put cursor after inserted text */
3826 if (y_type == MLINE)
3827 {
3828 if (lnum >= curbuf->b_ml.ml_line_count)
3829 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3830 else
3831 curwin->w_cursor.lnum = lnum + 1;
3832 curwin->w_cursor.col = 0;
3833 }
3834 else
3835 {
3836 curwin->w_cursor.lnum = lnum;
3837 curwin->w_cursor.col = col;
3838 }
3839 }
3840 else if (y_type == MLINE)
3841 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003842 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843 curwin->w_cursor.col = 0;
3844 if (dir == FORWARD)
3845 ++curwin->w_cursor.lnum;
3846 beginline(BL_WHITE | BL_FIX);
3847 }
3848 else /* put cursor on first inserted character */
3849 curwin->w_cursor = new_cursor;
3850 }
3851 }
3852
3853 msgmore(nr_lines);
3854 curwin->w_set_curswant = TRUE;
3855
3856end:
3857 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003859 if (regname == '=')
3860 vim_free(y_array);
3861
Bram Moolenaar677ee682005-01-27 14:41:15 +00003862 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003863 adjust_cursor_eol();
3864}
3865
3866/*
3867 * When the cursor is on the NUL past the end of the line and it should not be
3868 * there move it left.
3869 */
3870 void
3871adjust_cursor_eol()
3872{
3873 if (curwin->w_cursor.col > 0
3874 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00003875#ifdef FEAT_VIRTUALEDIT
3876 && (ve_flags & VE_ONEMORE) == 0
3877#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 && !(restart_edit || (State & INSERT)))
3879 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00003880 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00003881 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003882
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883#ifdef FEAT_VIRTUALEDIT
3884 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00003885 {
3886 colnr_T scol, ecol;
3887
3888 /* Coladd is set to the width of the last character. */
3889 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
3890 curwin->w_cursor.coladd = ecol - scol + 1;
3891 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892#endif
3893 }
3894}
3895
3896#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
3897/*
3898 * Return TRUE if lines starting with '#' should be left aligned.
3899 */
3900 int
3901preprocs_left()
3902{
3903 return
3904# ifdef FEAT_SMARTINDENT
3905# ifdef FEAT_CINDENT
3906 (curbuf->b_p_si && !curbuf->b_p_cin) ||
3907# else
3908 curbuf->b_p_si
3909# endif
3910# endif
3911# ifdef FEAT_CINDENT
3912 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE))
3913# endif
3914 ;
3915}
3916#endif
3917
3918/* Return the character name of the register with the given number */
3919 int
3920get_register_name(num)
3921 int num;
3922{
3923 if (num == -1)
3924 return '"';
3925 else if (num < 10)
3926 return num + '0';
3927 else if (num == DELETION_REGISTER)
3928 return '-';
3929#ifdef FEAT_CLIPBOARD
3930 else if (num == STAR_REGISTER)
3931 return '*';
3932 else if (num == PLUS_REGISTER)
3933 return '+';
3934#endif
3935 else
3936 {
3937#ifdef EBCDIC
3938 int i;
3939
3940 /* EBCDIC is really braindead ... */
3941 i = 'a' + (num - 10);
3942 if (i > 'i')
3943 i += 7;
3944 if (i > 'r')
3945 i += 8;
3946 return i;
3947#else
3948 return num + 'a' - 10;
3949#endif
3950 }
3951}
3952
3953/*
3954 * ":dis" and ":registers": Display the contents of the yank registers.
3955 */
3956 void
3957ex_display(eap)
3958 exarg_T *eap;
3959{
3960 int i, n;
3961 long j;
3962 char_u *p;
3963 struct yankreg *yb;
3964 int name;
3965 int attr;
3966 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003967#ifdef FEAT_MBYTE
3968 int clen;
3969#else
3970# define clen 1
3971#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972
3973 if (arg != NULL && *arg == NUL)
3974 arg = NULL;
3975 attr = hl_attr(HLF_8);
3976
3977 /* Highlight title */
3978 MSG_PUTS_TITLE(_("\n--- Registers ---"));
3979 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
3980 {
3981 name = get_register_name(i);
Bram Moolenaar0818b872010-11-24 14:28:58 +01003982 if (arg != NULL && vim_strchr(arg, name) == NULL
3983#ifdef ONE_CLIPBOARD
3984 /* Star register and plus register contain the same thing. */
3985 && (name != '*' || vim_strchr(arg, '+') == NULL)
3986#endif
3987 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 continue; /* did not ask for this register */
3989
3990#ifdef FEAT_CLIPBOARD
3991 /* Adjust register name for "unnamed" in 'clipboard'.
3992 * When it's a clipboard register, fill it with the current contents
3993 * of the clipboard. */
3994 adjust_clip_reg(&name);
3995 (void)may_get_selection(name);
3996#endif
3997
3998 if (i == -1)
3999 {
4000 if (y_previous != NULL)
4001 yb = y_previous;
4002 else
4003 yb = &(y_regs[0]);
4004 }
4005 else
4006 yb = &(y_regs[i]);
Bram Moolenaarcde547a2009-11-17 11:43:06 +00004007
4008#ifdef FEAT_EVAL
4009 if (name == MB_TOLOWER(redir_reg)
4010 || (redir_reg == '"' && yb == y_previous))
4011 continue; /* do not list register being written to, the
4012 * pointer can be freed */
4013#endif
4014
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015 if (yb->y_array != NULL)
4016 {
4017 msg_putchar('\n');
4018 msg_putchar('"');
4019 msg_putchar(name);
4020 MSG_PUTS(" ");
4021
4022 n = (int)Columns - 6;
4023 for (j = 0; j < yb->y_size && n > 1; ++j)
4024 {
4025 if (j)
4026 {
4027 MSG_PUTS_ATTR("^J", attr);
4028 n -= 2;
4029 }
4030 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4031 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004033 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004034#endif
4035 msg_outtrans_len(p, clen);
4036#ifdef FEAT_MBYTE
4037 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038#endif
4039 }
4040 }
4041 if (n > 1 && yb->y_type == MLINE)
4042 MSG_PUTS_ATTR("^J", attr);
4043 out_flush(); /* show one line at a time */
4044 }
4045 ui_breakcheck();
4046 }
4047
4048 /*
4049 * display last inserted text
4050 */
4051 if ((p = get_last_insert()) != NULL
4052 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4053 {
4054 MSG_PUTS("\n\". ");
4055 dis_msg(p, TRUE);
4056 }
4057
4058 /*
4059 * display last command line
4060 */
4061 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4062 && !got_int)
4063 {
4064 MSG_PUTS("\n\": ");
4065 dis_msg(last_cmdline, FALSE);
4066 }
4067
4068 /*
4069 * display current file name
4070 */
4071 if (curbuf->b_fname != NULL
4072 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4073 {
4074 MSG_PUTS("\n\"% ");
4075 dis_msg(curbuf->b_fname, FALSE);
4076 }
4077
4078 /*
4079 * display alternate file name
4080 */
4081 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4082 {
4083 char_u *fname;
4084 linenr_T dummy;
4085
4086 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4087 {
4088 MSG_PUTS("\n\"# ");
4089 dis_msg(fname, FALSE);
4090 }
4091 }
4092
4093 /*
4094 * display last search pattern
4095 */
4096 if (last_search_pat() != NULL
4097 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4098 {
4099 MSG_PUTS("\n\"/ ");
4100 dis_msg(last_search_pat(), FALSE);
4101 }
4102
4103#ifdef FEAT_EVAL
4104 /*
4105 * display last used expression
4106 */
4107 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4108 && !got_int)
4109 {
4110 MSG_PUTS("\n\"= ");
4111 dis_msg(expr_line, FALSE);
4112 }
4113#endif
4114}
4115
4116/*
4117 * display a string for do_dis()
4118 * truncate at end of screen line
4119 */
4120 static void
4121dis_msg(p, skip_esc)
4122 char_u *p;
4123 int skip_esc; /* if TRUE, ignore trailing ESC */
4124{
4125 int n;
4126#ifdef FEAT_MBYTE
4127 int l;
4128#endif
4129
4130 n = (int)Columns - 6;
4131 while (*p != NUL
4132 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4133 && (n -= ptr2cells(p)) >= 0)
4134 {
4135#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004136 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 {
4138 msg_outtrans_len(p, l);
4139 p += l;
4140 }
4141 else
4142#endif
4143 msg_outtrans_len(p++, 1);
4144 }
4145 ui_breakcheck();
4146}
4147
4148/*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004149 * Join 'count' lines (minimal 2) at cursor position.
4150 * When "save_undo" is TRUE save lines for undo first.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004152 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 */
4154 int
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004155do_join(count, insert_space, save_undo)
4156 long count;
4157 int insert_space;
4158 int save_undo;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159{
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004160 char_u *curr = NULL;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004161 char_u *curr_start = NULL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004162 char_u *cend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 char_u *newp;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004164 char_u *spaces; /* number of spaces inserted before a line */
Bram Moolenaard43848c2010-07-14 14:28:26 +02004165 int endcurr1 = NUL;
4166 int endcurr2 = NUL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004167 int currsize = 0; /* size of the current line */
4168 int sumsize = 0; /* size of the long new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 linenr_T t;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004170 colnr_T col = 0;
4171 int ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004173 if (save_undo && u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4174 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4175 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004177 /* Allocate an array to store the number of spaces inserted before each
4178 * line. We will use it to pre-compute the length of the new line and the
4179 * proper placement of each original line in the new one. */
4180 spaces = lalloc_clear((long_u)count, TRUE);
4181 if (spaces == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 return FAIL;
4183
4184 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004185 * Don't move anything, just compute the final line length
4186 * and setup the array of space strings lengths
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004188 for (t = 0; t < count; ++t)
4189 {
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004190 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004191 if (insert_space && t > 0)
4192 {
4193 curr = skipwhite(curr);
4194 if (*curr != ')' && currsize != 0 && endcurr1 != TAB
4195#ifdef FEAT_MBYTE
4196 && (!has_format_option(FO_MBYTE_JOIN)
4197 || (mb_ptr2char(curr) < 0x100 && endcurr1 < 0x100))
4198 && (!has_format_option(FO_MBYTE_JOIN2)
4199 || mb_ptr2char(curr) < 0x100 || endcurr1 < 0x100)
4200#endif
4201 )
4202 {
4203 /* don't add a space if the line is ending in a space */
4204 if (endcurr1 == ' ')
4205 endcurr1 = endcurr2;
4206 else
4207 ++spaces[t];
4208 /* extra space when 'joinspaces' set and line ends in '.' */
4209 if ( p_js
4210 && (endcurr1 == '.'
4211 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4212 && (endcurr1 == '?' || endcurr1 == '!'))))
4213 ++spaces[t];
4214 }
4215 }
4216 currsize = (int)STRLEN(curr);
4217 sumsize += currsize + spaces[t];
4218 endcurr1 = endcurr2 = NUL;
4219 if (insert_space && currsize > 0)
4220 {
4221#ifdef FEAT_MBYTE
4222 if (has_mbyte)
4223 {
4224 cend = curr + currsize;
4225 mb_ptr_back(curr, cend);
4226 endcurr1 = (*mb_ptr2char)(cend);
4227 if (cend > curr)
4228 {
4229 mb_ptr_back(curr, cend);
4230 endcurr2 = (*mb_ptr2char)(cend);
4231 }
4232 }
4233 else
4234#endif
4235 {
4236 endcurr1 = *(curr + currsize - 1);
4237 if (currsize > 1)
4238 endcurr2 = *(curr + currsize - 2);
4239 }
4240 }
4241 line_breakcheck();
4242 if (got_int)
4243 {
4244 ret = FAIL;
4245 goto theend;
4246 }
4247 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004249 /* store the column position before last line */
4250 col = sumsize - currsize - spaces[count - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004252 /* allocate the space for the new line */
4253 newp = alloc_check((unsigned)(sumsize + 1));
4254 cend = newp + sumsize;
4255 *cend = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004257 /*
4258 * Move affected lines to the new long one.
4259 *
4260 * Move marks from each deleted line to the joined line, adjusting the
4261 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4262 * should not really be a problem.
4263 */
4264 for (t = count - 1; ; --t)
4265 {
4266 cend -= currsize;
4267 mch_memmove(cend, curr, (size_t)currsize);
4268 if (spaces[t] > 0)
4269 {
4270 cend -= spaces[t];
4271 copy_spaces(cend, (size_t)(spaces[t]));
4272 }
4273 mark_col_adjust(curwin->w_cursor.lnum + t, (colnr_T)0, (linenr_T)-t,
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004274 (long)(cend - newp + spaces[t] - (curr - curr_start)));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004275 if (t == 0)
4276 break;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004277 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004278 if (insert_space && t > 1)
4279 curr = skipwhite(curr);
4280 currsize = (int)STRLEN(curr);
4281 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4283
4284 /* Only report the change in the first line here, del_lines() will report
4285 * the deleted line. */
4286 changed_lines(curwin->w_cursor.lnum, currsize,
4287 curwin->w_cursor.lnum + 1, 0L);
4288
4289 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004290 * Delete following lines. To do this we move the cursor there
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 * briefly, and then move it back. After del_lines() the cursor may
4292 * have moved up (last line deleted), so the current lnum is kept in t.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 */
4294 t = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 ++curwin->w_cursor.lnum;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004296 del_lines(count - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297 curwin->w_cursor.lnum = t;
4298
4299 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004300 * Set the cursor column:
4301 * Vi compatible: use the column of the first join
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004302 * vim: use the column of the last join
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004304 curwin->w_cursor.col =
4305 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306 check_cursor_col();
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004307
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308#ifdef FEAT_VIRTUALEDIT
4309 curwin->w_cursor.coladd = 0;
4310#endif
4311 curwin->w_set_curswant = TRUE;
4312
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004313theend:
4314 vim_free(spaces);
4315 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316}
4317
4318#ifdef FEAT_COMMENTS
4319/*
4320 * Return TRUE if the two comment leaders given are the same. "lnum" is
4321 * the first line. White-space is ignored. Note that the whole of
4322 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4323 */
4324 static int
4325same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
4326 linenr_T lnum;
4327 int leader1_len;
4328 char_u *leader1_flags;
4329 int leader2_len;
4330 char_u *leader2_flags;
4331{
4332 int idx1 = 0, idx2 = 0;
4333 char_u *p;
4334 char_u *line1;
4335 char_u *line2;
4336
4337 if (leader1_len == 0)
4338 return (leader2_len == 0);
4339
4340 /*
4341 * If first leader has 'f' flag, the lines can be joined only if the
4342 * second line does not have a leader.
4343 * If first leader has 'e' flag, the lines can never be joined.
4344 * If fist leader has 's' flag, the lines can only be joined if there is
4345 * some text after it and the second line has the 'm' flag.
4346 */
4347 if (leader1_flags != NULL)
4348 {
4349 for (p = leader1_flags; *p && *p != ':'; ++p)
4350 {
4351 if (*p == COM_FIRST)
4352 return (leader2_len == 0);
4353 if (*p == COM_END)
4354 return FALSE;
4355 if (*p == COM_START)
4356 {
4357 if (*(ml_get(lnum) + leader1_len) == NUL)
4358 return FALSE;
4359 if (leader2_flags == NULL || leader2_len == 0)
4360 return FALSE;
4361 for (p = leader2_flags; *p && *p != ':'; ++p)
4362 if (*p == COM_MIDDLE)
4363 return TRUE;
4364 return FALSE;
4365 }
4366 }
4367 }
4368
4369 /*
4370 * Get current line and next line, compare the leaders.
4371 * The first line has to be saved, only one line can be locked at a time.
4372 */
4373 line1 = vim_strsave(ml_get(lnum));
4374 if (line1 != NULL)
4375 {
4376 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4377 ;
4378 line2 = ml_get(lnum + 1);
4379 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4380 {
4381 if (!vim_iswhite(line2[idx2]))
4382 {
4383 if (line1[idx1++] != line2[idx2])
4384 break;
4385 }
4386 else
4387 while (vim_iswhite(line1[idx1]))
4388 ++idx1;
4389 }
4390 vim_free(line1);
4391 }
4392 return (idx2 == leader2_len && idx1 == leader1_len);
4393}
4394#endif
4395
4396/*
4397 * implementation of the format operator 'gq'
4398 */
4399 void
4400op_format(oap, keep_cursor)
4401 oparg_T *oap;
4402 int keep_cursor; /* keep cursor on same text char */
4403{
4404 long old_line_count = curbuf->b_ml.ml_line_count;
4405
4406 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4407 * can put it back there. */
4408 curwin->w_cursor = oap->cursor_start;
4409
4410 if (u_save((linenr_T)(oap->start.lnum - 1),
4411 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4412 return;
4413 curwin->w_cursor = oap->start;
4414
4415#ifdef FEAT_VISUAL
4416 if (oap->is_VIsual)
4417 /* When there is no change: need to remove the Visual selection */
4418 redraw_curbuf_later(INVERTED);
4419#endif
4420
4421 /* Set '[ mark at the start of the formatted area */
4422 curbuf->b_op_start = oap->start;
4423
4424 /* For "gw" remember the cursor position and put it back below (adjusted
4425 * for joined and split lines). */
4426 if (keep_cursor)
4427 saved_cursor = oap->cursor_start;
4428
Bram Moolenaar81a82092008-03-12 16:27:00 +00004429 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430
4431 /*
4432 * Leave the cursor at the first non-blank of the last formatted line.
4433 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4434 * line, so "." will do the next lines.
4435 */
4436 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4437 ++curwin->w_cursor.lnum;
4438 beginline(BL_WHITE | BL_FIX);
4439 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4440 msgmore(old_line_count);
4441
4442 /* put '] mark on the end of the formatted area */
4443 curbuf->b_op_end = curwin->w_cursor;
4444
4445 if (keep_cursor)
4446 {
4447 curwin->w_cursor = saved_cursor;
4448 saved_cursor.lnum = 0;
4449 }
4450
4451#ifdef FEAT_VISUAL
4452 if (oap->is_VIsual)
4453 {
4454 win_T *wp;
4455
4456 FOR_ALL_WINDOWS(wp)
4457 {
4458 if (wp->w_old_cursor_lnum != 0)
4459 {
4460 /* When lines have been inserted or deleted, adjust the end of
4461 * the Visual area to be redrawn. */
4462 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4463 wp->w_old_cursor_lnum += old_line_count;
4464 else
4465 wp->w_old_visual_lnum += old_line_count;
4466 }
4467 }
4468 }
4469#endif
4470}
4471
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004472#if defined(FEAT_EVAL) || defined(PROTO)
4473/*
4474 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4475 */
4476 void
4477op_formatexpr(oap)
4478 oparg_T *oap;
4479{
4480# ifdef FEAT_VISUAL
4481 if (oap->is_VIsual)
4482 /* When there is no change: need to remove the Visual selection */
4483 redraw_curbuf_later(INVERTED);
4484# endif
4485
Bram Moolenaar700303e2010-07-11 17:35:50 +02004486 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0)
4487 /* As documented: when 'formatexpr' returns non-zero fall back to
4488 * internal formatting. */
4489 op_format(oap, FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004490}
4491
4492 int
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004493fex_format(lnum, count, c)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004494 linenr_T lnum;
4495 long count;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004496 int c; /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004497{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004498 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4499 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004500 int r;
4501
4502 /*
4503 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004504 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004505 */
4506 set_vim_var_nr(VV_LNUM, lnum);
4507 set_vim_var_nr(VV_COUNT, count);
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004508 set_vim_var_char(c);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004509
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004510 /*
4511 * Evaluate the function.
4512 */
4513 if (use_sandbox)
4514 ++sandbox;
4515 r = eval_to_number(curbuf->b_p_fex);
4516 if (use_sandbox)
4517 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004518
4519 set_vim_var_string(VV_CHAR, NULL, -1);
4520
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004521 return r;
4522}
4523#endif
4524
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525/*
4526 * Format "line_count" lines, starting at the cursor position.
4527 * When "line_count" is negative, format until the end of the paragraph.
4528 * Lines after the cursor line are saved for undo, caller must have saved the
4529 * first line.
4530 */
4531 void
Bram Moolenaar81a82092008-03-12 16:27:00 +00004532format_lines(line_count, avoid_fex)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 linenr_T line_count;
Bram Moolenaar81a82092008-03-12 16:27:00 +00004534 int avoid_fex; /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535{
4536 int max_len;
4537 int is_not_par; /* current line not part of parag. */
4538 int next_is_not_par; /* next line not part of paragraph */
4539 int is_end_par; /* at end of paragraph */
4540 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4541 int next_is_start_par = FALSE;
4542#ifdef FEAT_COMMENTS
4543 int leader_len = 0; /* leader len of current line */
4544 int next_leader_len; /* leader len of next line */
4545 char_u *leader_flags = NULL; /* flags for leader of current line */
4546 char_u *next_leader_flags; /* flags for leader of next line */
4547 int do_comments; /* format comments */
4548#endif
4549 int advance = TRUE;
4550 int second_indent = -1;
4551 int do_second_indent;
4552 int do_number_indent;
4553 int do_trail_white;
4554 int first_par_line = TRUE;
4555 int smd_save;
4556 long count;
4557 int need_set_indent = TRUE; /* set indent of next paragraph */
4558 int force_format = FALSE;
4559 int old_State = State;
4560
4561 /* length of a line to force formatting: 3 * 'tw' */
4562 max_len = comp_textwidth(TRUE) * 3;
4563
4564 /* check for 'q', '2' and '1' in 'formatoptions' */
4565#ifdef FEAT_COMMENTS
4566 do_comments = has_format_option(FO_Q_COMS);
4567#endif
4568 do_second_indent = has_format_option(FO_Q_SECOND);
4569 do_number_indent = has_format_option(FO_Q_NUMBER);
4570 do_trail_white = has_format_option(FO_WHITE_PAR);
4571
4572 /*
4573 * Get info about the previous and current line.
4574 */
4575 if (curwin->w_cursor.lnum > 1)
4576 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4577#ifdef FEAT_COMMENTS
4578 , &leader_len, &leader_flags, do_comments
4579#endif
4580 );
4581 else
4582 is_not_par = TRUE;
4583 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4584#ifdef FEAT_COMMENTS
4585 , &next_leader_len, &next_leader_flags, do_comments
4586#endif
4587 );
4588 is_end_par = (is_not_par || next_is_not_par);
4589 if (!is_end_par && do_trail_white)
4590 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4591
4592 curwin->w_cursor.lnum--;
4593 for (count = line_count; count != 0 && !got_int; --count)
4594 {
4595 /*
4596 * Advance to next paragraph.
4597 */
4598 if (advance)
4599 {
4600 curwin->w_cursor.lnum++;
4601 prev_is_end_par = is_end_par;
4602 is_not_par = next_is_not_par;
4603#ifdef FEAT_COMMENTS
4604 leader_len = next_leader_len;
4605 leader_flags = next_leader_flags;
4606#endif
4607 }
4608
4609 /*
4610 * The last line to be formatted.
4611 */
4612 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4613 {
4614 next_is_not_par = TRUE;
4615#ifdef FEAT_COMMENTS
4616 next_leader_len = 0;
4617 next_leader_flags = NULL;
4618#endif
4619 }
4620 else
4621 {
4622 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4623#ifdef FEAT_COMMENTS
4624 , &next_leader_len, &next_leader_flags, do_comments
4625#endif
4626 );
4627 if (do_number_indent)
4628 next_is_start_par =
4629 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4630 }
4631 advance = TRUE;
4632 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4633 if (!is_end_par && do_trail_white)
4634 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4635
4636 /*
4637 * Skip lines that are not in a paragraph.
4638 */
4639 if (is_not_par)
4640 {
4641 if (line_count < 0)
4642 break;
4643 }
4644 else
4645 {
4646 /*
4647 * For the first line of a paragraph, check indent of second line.
4648 * Don't do this for comments and empty lines.
4649 */
4650 if (first_par_line
4651 && (do_second_indent || do_number_indent)
4652 && prev_is_end_par
4653 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
4654#ifdef FEAT_COMMENTS
4655 && leader_len == 0
4656 && next_leader_len == 0
4657#endif
4658 )
4659 {
4660 if (do_second_indent
4661 && !lineempty(curwin->w_cursor.lnum + 1))
4662 second_indent = get_indent_lnum(curwin->w_cursor.lnum + 1);
4663 else if (do_number_indent)
4664 second_indent = get_number_indent(curwin->w_cursor.lnum);
4665 }
4666
4667 /*
4668 * When the comment leader changes, it's the end of the paragraph.
4669 */
4670 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4671#ifdef FEAT_COMMENTS
4672 || !same_leader(curwin->w_cursor.lnum,
4673 leader_len, leader_flags,
4674 next_leader_len, next_leader_flags)
4675#endif
4676 )
4677 is_end_par = TRUE;
4678
4679 /*
4680 * If we have got to the end of a paragraph, or the line is
4681 * getting long, format it.
4682 */
4683 if (is_end_par || force_format)
4684 {
4685 if (need_set_indent)
4686 /* replace indent in first line with minimal number of
4687 * tabs and spaces, according to current options */
4688 (void)set_indent(get_indent(), SIN_CHANGED);
4689
4690 /* put cursor on last non-space */
4691 State = NORMAL; /* don't go past end-of-line */
4692 coladvance((colnr_T)MAXCOL);
4693 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
4694 dec_cursor();
4695
4696 /* do the formatting, without 'showmode' */
4697 State = INSERT; /* for open_line() */
4698 smd_save = p_smd;
4699 p_smd = FALSE;
4700 insertchar(NUL, INSCHAR_FORMAT
4701#ifdef FEAT_COMMENTS
4702 + (do_comments ? INSCHAR_DO_COM : 0)
4703#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00004704 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 State = old_State;
4706 p_smd = smd_save;
4707 second_indent = -1;
4708 /* at end of par.: need to set indent of next par. */
4709 need_set_indent = is_end_par;
4710 if (is_end_par)
4711 {
4712 /* When called with a negative line count, break at the
4713 * end of the paragraph. */
4714 if (line_count < 0)
4715 break;
4716 first_par_line = TRUE;
4717 }
4718 force_format = FALSE;
4719 }
4720
4721 /*
4722 * When still in same paragraph, join the lines together. But
4723 * first delete the comment leader from the second line.
4724 */
4725 if (!is_end_par)
4726 {
4727 advance = FALSE;
4728 curwin->w_cursor.lnum++;
4729 curwin->w_cursor.col = 0;
4730 if (line_count < 0 && u_save_cursor() == FAIL)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004731 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732#ifdef FEAT_COMMENTS
Bram Moolenaare3226be2005-12-18 22:10:00 +00004733 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 if (next_leader_len > 0)
4735 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
4736 (long)-next_leader_len);
4737#endif
4738 curwin->w_cursor.lnum--;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004739 if (do_join(2, TRUE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 {
4741 beep_flush();
4742 break;
4743 }
4744 first_par_line = FALSE;
4745 /* If the line is getting long, format it next time */
4746 if (STRLEN(ml_get_curline()) > (size_t)max_len)
4747 force_format = TRUE;
4748 else
4749 force_format = FALSE;
4750 }
4751 }
4752 line_breakcheck();
4753 }
4754}
4755
4756/*
4757 * Return TRUE if line "lnum" ends in a white character.
4758 */
4759 static int
4760ends_in_white(lnum)
4761 linenr_T lnum;
4762{
4763 char_u *s = ml_get(lnum);
4764 size_t l;
4765
4766 if (*s == NUL)
4767 return FALSE;
4768 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
4769 * invocation may call function multiple times". */
4770 l = STRLEN(s) - 1;
4771 return vim_iswhite(s[l]);
4772}
4773
4774/*
4775 * Blank lines, and lines containing only the comment leader, are left
4776 * untouched by the formatting. The function returns TRUE in this
4777 * case. It also returns TRUE when a line starts with the end of a comment
4778 * ('e' in comment flags), so that this line is skipped, and not joined to the
4779 * previous line. A new paragraph starts after a blank line, or when the
4780 * comment leader changes -- webb.
4781 */
4782#ifdef FEAT_COMMENTS
4783 static int
4784fmt_check_par(lnum, leader_len, leader_flags, do_comments)
4785 linenr_T lnum;
4786 int *leader_len;
4787 char_u **leader_flags;
4788 int do_comments;
4789{
4790 char_u *flags = NULL; /* init for GCC */
4791 char_u *ptr;
4792
4793 ptr = ml_get(lnum);
4794 if (do_comments)
4795 *leader_len = get_leader_len(ptr, leader_flags, FALSE);
4796 else
4797 *leader_len = 0;
4798
4799 if (*leader_len > 0)
4800 {
4801 /*
4802 * Search for 'e' flag in comment leader flags.
4803 */
4804 flags = *leader_flags;
4805 while (*flags && *flags != ':' && *flags != COM_END)
4806 ++flags;
4807 }
4808
4809 return (*skipwhite(ptr + *leader_len) == NUL
4810 || (*leader_len > 0 && *flags == COM_END)
4811 || startPS(lnum, NUL, FALSE));
4812}
4813#else
4814 static int
4815fmt_check_par(lnum)
4816 linenr_T lnum;
4817{
4818 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
4819}
4820#endif
4821
4822/*
4823 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
4824 * previous line is in the same paragraph. Used for auto-formatting.
4825 */
4826 int
4827paragraph_start(lnum)
4828 linenr_T lnum;
4829{
4830 char_u *p;
4831#ifdef FEAT_COMMENTS
4832 int leader_len = 0; /* leader len of current line */
4833 char_u *leader_flags = NULL; /* flags for leader of current line */
4834 int next_leader_len; /* leader len of next line */
4835 char_u *next_leader_flags; /* flags for leader of next line */
4836 int do_comments; /* format comments */
4837#endif
4838
4839 if (lnum <= 1)
4840 return TRUE; /* start of the file */
4841
4842 p = ml_get(lnum - 1);
4843 if (*p == NUL)
4844 return TRUE; /* after empty line */
4845
4846#ifdef FEAT_COMMENTS
4847 do_comments = has_format_option(FO_Q_COMS);
4848#endif
4849 if (fmt_check_par(lnum - 1
4850#ifdef FEAT_COMMENTS
4851 , &leader_len, &leader_flags, do_comments
4852#endif
4853 ))
4854 return TRUE; /* after non-paragraph line */
4855
4856 if (fmt_check_par(lnum
4857#ifdef FEAT_COMMENTS
4858 , &next_leader_len, &next_leader_flags, do_comments
4859#endif
4860 ))
4861 return TRUE; /* "lnum" is not a paragraph line */
4862
4863 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
4864 return TRUE; /* missing trailing space in previous line. */
4865
4866 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
4867 return TRUE; /* numbered item starts in "lnum". */
4868
4869#ifdef FEAT_COMMENTS
4870 if (!same_leader(lnum - 1, leader_len, leader_flags,
4871 next_leader_len, next_leader_flags))
4872 return TRUE; /* change of comment leader. */
4873#endif
4874
4875 return FALSE;
4876}
4877
4878#ifdef FEAT_VISUAL
4879/*
4880 * prepare a few things for block mode yank/delete/tilde
4881 *
4882 * for delete:
4883 * - textlen includes the first/last char to be (partly) deleted
4884 * - start/endspaces is the number of columns that are taken by the
4885 * first/last deleted char minus the number of columns that have to be
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +00004886 * deleted.
4887 * for yank and tilde:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 * - textlen includes the first/last char to be wholly yanked
4889 * - start/endspaces is the number of columns of the first/last yanked char
4890 * that are to be yanked.
4891 */
4892 static void
4893block_prep(oap, bdp, lnum, is_del)
4894 oparg_T *oap;
4895 struct block_def *bdp;
4896 linenr_T lnum;
4897 int is_del;
4898{
4899 int incr = 0;
4900 char_u *pend;
4901 char_u *pstart;
4902 char_u *line;
4903 char_u *prev_pstart;
4904 char_u *prev_pend;
4905
4906 bdp->startspaces = 0;
4907 bdp->endspaces = 0;
4908 bdp->textlen = 0;
4909 bdp->start_vcol = 0;
4910 bdp->end_vcol = 0;
4911#ifdef FEAT_VISUALEXTRA
4912 bdp->is_short = FALSE;
4913 bdp->is_oneChar = FALSE;
4914 bdp->pre_whitesp = 0;
4915 bdp->pre_whitesp_c = 0;
4916 bdp->end_char_vcols = 0;
4917#endif
4918 bdp->start_char_vcols = 0;
4919
4920 line = ml_get(lnum);
4921 pstart = line;
4922 prev_pstart = line;
4923 while (bdp->start_vcol < oap->start_vcol && *pstart)
4924 {
4925 /* Count a tab for what it's worth (if list mode not on) */
4926 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
4927 bdp->start_vcol += incr;
4928#ifdef FEAT_VISUALEXTRA
4929 if (vim_iswhite(*pstart))
4930 {
4931 bdp->pre_whitesp += incr;
4932 bdp->pre_whitesp_c++;
4933 }
4934 else
4935 {
4936 bdp->pre_whitesp = 0;
4937 bdp->pre_whitesp_c = 0;
4938 }
4939#endif
4940 prev_pstart = pstart;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004941 mb_ptr_adv(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 }
4943 bdp->start_char_vcols = incr;
4944 if (bdp->start_vcol < oap->start_vcol) /* line too short */
4945 {
4946 bdp->end_vcol = bdp->start_vcol;
4947#ifdef FEAT_VISUALEXTRA
4948 bdp->is_short = TRUE;
4949#endif
4950 if (!is_del || oap->op_type == OP_APPEND)
4951 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
4952 }
4953 else
4954 {
4955 /* notice: this converts partly selected Multibyte characters to
4956 * spaces, too. */
4957 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
4958 if (is_del && bdp->startspaces)
4959 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
4960 pend = pstart;
4961 bdp->end_vcol = bdp->start_vcol;
4962 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
4963 {
4964#ifdef FEAT_VISUALEXTRA
4965 bdp->is_oneChar = TRUE;
4966#endif
4967 if (oap->op_type == OP_INSERT)
4968 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4969 else if (oap->op_type == OP_APPEND)
4970 {
4971 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
4972 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
4973 }
4974 else
4975 {
4976 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
4977 if (is_del && oap->op_type != OP_LSHIFT)
4978 {
4979 /* just putting the sum of those two into
4980 * bdp->startspaces doesn't work for Visual replace,
4981 * so we have to split the tab in two */
4982 bdp->startspaces = bdp->start_char_vcols
4983 - (bdp->start_vcol - oap->start_vcol);
4984 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
4985 }
4986 }
4987 }
4988 else
4989 {
4990 prev_pend = pend;
4991 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
4992 {
4993 /* Count a tab for what it's worth (if list mode not on) */
4994 prev_pend = pend;
4995 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
4996 bdp->end_vcol += incr;
4997 }
4998 if (bdp->end_vcol <= oap->end_vcol
4999 && (!is_del
5000 || oap->op_type == OP_APPEND
5001 || oap->op_type == OP_REPLACE)) /* line too short */
5002 {
5003#ifdef FEAT_VISUALEXTRA
5004 bdp->is_short = TRUE;
5005#endif
5006 /* Alternative: include spaces to fill up the block.
5007 * Disadvantage: can lead to trailing spaces when the line is
5008 * short where the text is put */
5009 /* if (!is_del || oap->op_type == OP_APPEND) */
5010 if (oap->op_type == OP_APPEND || virtual_op)
5011 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00005012 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 else
5014 bdp->endspaces = 0; /* replace doesn't add characters */
5015 }
5016 else if (bdp->end_vcol > oap->end_vcol)
5017 {
5018 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5019 if (!is_del && bdp->endspaces)
5020 {
5021 bdp->endspaces = incr - bdp->endspaces;
5022 if (pend != pstart)
5023 pend = prev_pend;
5024 }
5025 }
5026 }
5027#ifdef FEAT_VISUALEXTRA
5028 bdp->end_char_vcols = incr;
5029#endif
5030 if (is_del && bdp->startspaces)
5031 pstart = prev_pstart;
5032 bdp->textlen = (int)(pend - pstart);
5033 }
5034 bdp->textcol = (colnr_T) (pstart - line);
5035 bdp->textstart = pstart;
5036}
5037#endif /* FEAT_VISUAL */
5038
5039#ifdef FEAT_RIGHTLEFT
5040static void reverse_line __ARGS((char_u *s));
5041
5042 static void
5043reverse_line(s)
5044 char_u *s;
5045{
5046 int i, j;
5047 char_u c;
5048
5049 if ((i = (int)STRLEN(s) - 1) <= 0)
5050 return;
5051
5052 curwin->w_cursor.col = i - curwin->w_cursor.col;
5053 for (j = 0; j < i; j++, i--)
5054 {
5055 c = s[i]; s[i] = s[j]; s[j] = c;
5056 }
5057}
5058
5059# define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
5060#else
5061# define RLADDSUBFIX(ptr)
5062#endif
5063
5064/*
5065 * add or subtract 'Prenum1' from a number in a line
5066 * 'command' is CTRL-A for add, CTRL-X for subtract
5067 *
5068 * return FAIL for failure, OK otherwise
5069 */
5070 int
5071do_addsub(command, Prenum1)
5072 int command;
5073 linenr_T Prenum1;
5074{
5075 int col;
5076 char_u *buf1;
5077 char_u buf2[NUMBUFLEN];
5078 int hex; /* 'X' or 'x': hex; '0': octal */
5079 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005080 unsigned long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 long_u oldn;
5082 char_u *ptr;
5083 int c;
5084 int length = 0; /* character length of the number */
5085 int todel;
5086 int dohex;
5087 int dooct;
5088 int doalp;
5089 int firstdigit;
5090 int negative;
5091 int subtract;
5092
5093 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5094 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
5095 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5096
5097 ptr = ml_get_curline();
5098 RLADDSUBFIX(ptr);
5099
5100 /*
5101 * First check if we are on a hexadecimal number, after the "0x".
5102 */
5103 col = curwin->w_cursor.col;
5104 if (dohex)
5105 while (col > 0 && vim_isxdigit(ptr[col]))
5106 --col;
5107 if ( dohex
5108 && col > 0
5109 && (ptr[col] == 'X'
5110 || ptr[col] == 'x')
5111 && ptr[col - 1] == '0'
5112 && vim_isxdigit(ptr[col + 1]))
5113 {
5114 /*
5115 * Found hexadecimal number, move to its start.
5116 */
5117 --col;
5118 }
5119 else
5120 {
5121 /*
5122 * Search forward and then backward to find the start of number.
5123 */
5124 col = curwin->w_cursor.col;
5125
5126 while (ptr[col] != NUL
5127 && !vim_isdigit(ptr[col])
5128 && !(doalp && ASCII_ISALPHA(ptr[col])))
5129 ++col;
5130
5131 while (col > 0
5132 && vim_isdigit(ptr[col - 1])
5133 && !(doalp && ASCII_ISALPHA(ptr[col])))
5134 --col;
5135 }
5136
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137 /*
5138 * If a number was found, and saving for undo works, replace the number.
5139 */
5140 firstdigit = ptr[col];
5141 RLADDSUBFIX(ptr);
5142 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5143 || u_save_cursor() != OK)
5144 {
5145 beep_flush();
5146 return FAIL;
5147 }
5148
5149 /* get ptr again, because u_save() may have changed it */
5150 ptr = ml_get_curline();
5151 RLADDSUBFIX(ptr);
5152
5153 if (doalp && ASCII_ISALPHA(firstdigit))
5154 {
5155 /* decrement or increment alphabetic character */
5156 if (command == Ctrl_X)
5157 {
5158 if (CharOrd(firstdigit) < Prenum1)
5159 {
5160 if (isupper(firstdigit))
5161 firstdigit = 'A';
5162 else
5163 firstdigit = 'a';
5164 }
5165 else
5166#ifdef EBCDIC
5167 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5168#else
5169 firstdigit -= Prenum1;
5170#endif
5171 }
5172 else
5173 {
5174 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5175 {
5176 if (isupper(firstdigit))
5177 firstdigit = 'Z';
5178 else
5179 firstdigit = 'z';
5180 }
5181 else
5182#ifdef EBCDIC
5183 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5184#else
5185 firstdigit += Prenum1;
5186#endif
5187 }
5188 curwin->w_cursor.col = col;
5189 (void)del_char(FALSE);
5190 ins_char(firstdigit);
5191 }
5192 else
5193 {
5194 negative = FALSE;
5195 if (col > 0 && ptr[col - 1] == '-') /* negative number */
5196 {
5197 --col;
5198 negative = TRUE;
5199 }
5200
5201 /* get the number value (unsigned) */
5202 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
5203
5204 /* ignore leading '-' for hex and octal numbers */
5205 if (hex && negative)
5206 {
5207 ++col;
5208 --length;
5209 negative = FALSE;
5210 }
5211
5212 /* add or subtract */
5213 subtract = FALSE;
5214 if (command == Ctrl_X)
5215 subtract ^= TRUE;
5216 if (negative)
5217 subtract ^= TRUE;
5218
5219 oldn = n;
5220 if (subtract)
5221 n -= (unsigned long)Prenum1;
5222 else
5223 n += (unsigned long)Prenum1;
5224
5225 /* handle wraparound for decimal numbers */
5226 if (!hex)
5227 {
5228 if (subtract)
5229 {
5230 if (n > oldn)
5231 {
5232 n = 1 + (n ^ (unsigned long)-1);
5233 negative ^= TRUE;
5234 }
5235 }
5236 else /* add */
5237 {
5238 if (n < oldn)
5239 {
5240 n = (n ^ (unsigned long)-1);
5241 negative ^= TRUE;
5242 }
5243 }
5244 if (n == 0)
5245 negative = FALSE;
5246 }
5247
5248 /*
5249 * Delete the old number.
5250 */
5251 curwin->w_cursor.col = col;
5252 todel = length;
5253 c = gchar_cursor();
5254 /*
5255 * Don't include the '-' in the length, only the length of the part
5256 * after it is kept the same.
5257 */
5258 if (c == '-')
5259 --length;
5260 while (todel-- > 0)
5261 {
5262 if (c < 0x100 && isalpha(c))
5263 {
5264 if (isupper(c))
5265 hexupper = TRUE;
5266 else
5267 hexupper = FALSE;
5268 }
5269 /* del_char() will mark line needing displaying */
5270 (void)del_char(FALSE);
5271 c = gchar_cursor();
5272 }
5273
5274 /*
5275 * Prepare the leading characters in buf1[].
5276 * When there are many leading zeros it could be very long. Allocate
5277 * a bit too much.
5278 */
5279 buf1 = alloc((unsigned)length + NUMBUFLEN);
5280 if (buf1 == NULL)
5281 return FAIL;
5282 ptr = buf1;
5283 if (negative)
5284 {
5285 *ptr++ = '-';
5286 }
5287 if (hex)
5288 {
5289 *ptr++ = '0';
5290 --length;
5291 }
5292 if (hex == 'x' || hex == 'X')
5293 {
5294 *ptr++ = hex;
5295 --length;
5296 }
5297
5298 /*
5299 * Put the number characters in buf2[].
5300 */
5301 if (hex == 0)
5302 sprintf((char *)buf2, "%lu", n);
5303 else if (hex == '0')
5304 sprintf((char *)buf2, "%lo", n);
5305 else if (hex && hexupper)
5306 sprintf((char *)buf2, "%lX", n);
5307 else
5308 sprintf((char *)buf2, "%lx", n);
5309 length -= (int)STRLEN(buf2);
5310
5311 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005312 * Adjust number of zeros to the new number of digits, so the
5313 * total length of the number remains the same.
5314 * Don't do this when
5315 * the result may look like an octal number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005317 if (firstdigit == '0' && !(dooct && hex == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318 while (length-- > 0)
5319 *ptr++ = '0';
5320 *ptr = NUL;
5321 STRCAT(buf1, buf2);
5322 ins_str(buf1); /* insert the new number */
5323 vim_free(buf1);
5324 }
5325 --curwin->w_cursor.col;
5326 curwin->w_set_curswant = TRUE;
5327#ifdef FEAT_RIGHTLEFT
5328 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
5329 RLADDSUBFIX(ptr);
5330#endif
5331 return OK;
5332}
5333
5334#ifdef FEAT_VIMINFO
5335 int
5336read_viminfo_register(virp, force)
5337 vir_T *virp;
5338 int force;
5339{
5340 int eof;
5341 int do_it = TRUE;
5342 int size;
5343 int limit;
5344 int i;
5345 int set_prev = FALSE;
5346 char_u *str;
5347 char_u **array = NULL;
5348
5349 /* We only get here (hopefully) if line[0] == '"' */
5350 str = virp->vir_line + 1;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005351
5352 /* If the line starts with "" this is the y_previous register. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353 if (*str == '"')
5354 {
5355 set_prev = TRUE;
5356 str++;
5357 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00005358
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359 if (!ASCII_ISALNUM(*str) && *str != '-')
5360 {
5361 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5362 return TRUE; /* too many errors, pretend end-of-file */
5363 do_it = FALSE;
5364 }
5365 get_yank_register(*str++, FALSE);
5366 if (!force && y_current->y_array != NULL)
5367 do_it = FALSE;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005368
5369 if (*str == '@')
5370 {
5371 /* "x@: register x used for @@ */
5372 if (force || execreg_lastc == NUL)
5373 execreg_lastc = str[-1];
5374 }
5375
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 size = 0;
5377 limit = 100; /* Optimized for registers containing <= 100 lines */
5378 if (do_it)
5379 {
5380 if (set_prev)
5381 y_previous = y_current;
5382 vim_free(y_current->y_array);
5383 array = y_current->y_array =
5384 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
Bram Moolenaar42b94362009-05-26 16:12:37 +00005385 str = skipwhite(skiptowhite(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005386 if (STRNCMP(str, "CHAR", 4) == 0)
5387 y_current->y_type = MCHAR;
5388#ifdef FEAT_VISUAL
5389 else if (STRNCMP(str, "BLOCK", 5) == 0)
5390 y_current->y_type = MBLOCK;
5391#endif
5392 else
5393 y_current->y_type = MLINE;
5394 /* get the block width; if it's missing we get a zero, which is OK */
5395 str = skipwhite(skiptowhite(str));
5396#ifdef FEAT_VISUAL
5397 y_current->y_width = getdigits(&str);
5398#else
5399 (void)getdigits(&str);
5400#endif
5401 }
5402
5403 while (!(eof = viminfo_readline(virp))
5404 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5405 {
5406 if (do_it)
5407 {
5408 if (size >= limit)
5409 {
5410 y_current->y_array = (char_u **)
5411 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
5412 for (i = 0; i < limit; i++)
5413 y_current->y_array[i] = array[i];
5414 vim_free(array);
5415 limit *= 2;
5416 array = y_current->y_array;
5417 }
5418 str = viminfo_readstring(virp, 1, TRUE);
5419 if (str != NULL)
5420 array[size++] = str;
5421 else
5422 do_it = FALSE;
5423 }
5424 }
5425 if (do_it)
5426 {
5427 if (size == 0)
5428 {
5429 vim_free(array);
5430 y_current->y_array = NULL;
5431 }
5432 else if (size < limit)
5433 {
5434 y_current->y_array =
5435 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
5436 for (i = 0; i < size; i++)
5437 y_current->y_array[i] = array[i];
5438 vim_free(array);
5439 }
5440 y_current->y_size = size;
5441 }
5442 return eof;
5443}
5444
5445 void
5446write_viminfo_registers(fp)
5447 FILE *fp;
5448{
5449 int i, j;
5450 char_u *type;
5451 char_u c;
5452 int num_lines;
5453 int max_num_lines;
5454 int max_kbyte;
5455 long len;
5456
Bram Moolenaar64404472010-06-26 06:24:45 +02005457 fputs(_("\n# Registers:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458
5459 /* Get '<' value, use old '"' value if '<' is not found. */
5460 max_num_lines = get_viminfo_parameter('<');
5461 if (max_num_lines < 0)
5462 max_num_lines = get_viminfo_parameter('"');
5463 if (max_num_lines == 0)
5464 return;
5465 max_kbyte = get_viminfo_parameter('s');
5466 if (max_kbyte == 0)
5467 return;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005468
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 for (i = 0; i < NUM_REGISTERS; i++)
5470 {
5471 if (y_regs[i].y_array == NULL)
5472 continue;
5473#ifdef FEAT_CLIPBOARD
5474 /* Skip '*'/'+' register, we don't want them back next time */
5475 if (i == STAR_REGISTER || i == PLUS_REGISTER)
5476 continue;
5477#endif
5478#ifdef FEAT_DND
5479 /* Neither do we want the '~' register */
5480 if (i == TILDE_REGISTER)
5481 continue;
5482#endif
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005483 /* Skip empty registers. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 num_lines = y_regs[i].y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005485 if (num_lines == 0
5486 || (num_lines == 1 && y_regs[i].y_type == MCHAR
Bram Moolenaar64404472010-06-26 06:24:45 +02005487 && *y_regs[i].y_array[0] == NUL))
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00005488 continue;
5489
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 if (max_kbyte > 0)
5491 {
5492 /* Skip register if there is more text than the maximum size. */
5493 len = 0;
5494 for (j = 0; j < num_lines; j++)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005495 len += (long)STRLEN(y_regs[i].y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496 if (len > (long)max_kbyte * 1024L)
5497 continue;
5498 }
5499
5500 switch (y_regs[i].y_type)
5501 {
5502 case MLINE:
5503 type = (char_u *)"LINE";
5504 break;
5505 case MCHAR:
5506 type = (char_u *)"CHAR";
5507 break;
5508#ifdef FEAT_VISUAL
5509 case MBLOCK:
5510 type = (char_u *)"BLOCK";
5511 break;
5512#endif
5513 default:
5514 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005515 y_regs[i].y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 emsg(IObuff);
5517 type = (char_u *)"LINE";
5518 break;
5519 }
5520 if (y_previous == &y_regs[i])
5521 fprintf(fp, "\"");
5522 c = get_register_name(i);
Bram Moolenaar42b94362009-05-26 16:12:37 +00005523 fprintf(fp, "\"%c", c);
5524 if (c == execreg_lastc)
5525 fprintf(fp, "@");
5526 fprintf(fp, "\t%s\t%d\n", type,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527#ifdef FEAT_VISUAL
5528 (int)y_regs[i].y_width
5529#else
5530 0
5531#endif
5532 );
5533
5534 /* If max_num_lines < 0, then we save ALL the lines in the register */
5535 if (max_num_lines > 0 && num_lines > max_num_lines)
5536 num_lines = max_num_lines;
5537 for (j = 0; j < num_lines; j++)
5538 {
5539 putc('\t', fp);
5540 viminfo_writestring(fp, y_regs[i].y_array[j]);
5541 }
5542 }
5543}
5544#endif /* FEAT_VIMINFO */
5545
5546#if defined(FEAT_CLIPBOARD) || defined(PROTO)
5547/*
5548 * SELECTION / PRIMARY ('*')
5549 *
5550 * Text selection stuff that uses the GUI selection register '*'. When using a
5551 * GUI this may be text from another window, otherwise it is the last text we
5552 * had highlighted with VIsual mode. With mouse support, clicking the middle
5553 * button performs the paste, otherwise you will need to do <"*p>. "
5554 * If not under X, it is synonymous with the clipboard register '+'.
5555 *
5556 * X CLIPBOARD ('+')
5557 *
5558 * Text selection stuff that uses the GUI clipboard register '+'.
5559 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
5560 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
5561 * otherwise you will need to do <"+p>. "
5562 * If not under X, it is synonymous with the selection register '*'.
5563 */
5564
5565/*
5566 * Routine to export any final X selection we had to the environment
5567 * so that the text is still available after vim has exited. X selections
5568 * only exist while the owning application exists, so we write to the
5569 * permanent (while X runs) store CUT_BUFFER0.
5570 * Dump the CLIPBOARD selection if we own it (it's logically the more
5571 * 'permanent' of the two), otherwise the PRIMARY one.
5572 * For now, use a hard-coded sanity limit of 1Mb of data.
5573 */
5574#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
5575 void
5576x11_export_final_selection()
5577{
5578 Display *dpy;
5579 char_u *str = NULL;
5580 long_u len = 0;
5581 int motion_type = -1;
5582
5583# ifdef FEAT_GUI
5584 if (gui.in_use)
5585 dpy = X_DISPLAY;
5586 else
5587# endif
5588# ifdef FEAT_XCLIPBOARD
5589 dpy = xterm_dpy;
5590# else
5591 return;
5592# endif
5593
5594 /* Get selection to export */
5595 if (clip_plus.owned)
5596 motion_type = clip_convert_selection(&str, &len, &clip_plus);
5597 else if (clip_star.owned)
5598 motion_type = clip_convert_selection(&str, &len, &clip_star);
5599
5600 /* Check it's OK */
5601 if (dpy != NULL && str != NULL && motion_type >= 0
5602 && len < 1024*1024 && len > 0)
5603 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005604#ifdef FEAT_MBYTE
5605 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
5606 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
5607 * encoding conversion usually doesn't work, so keep the text as-is.
5608 */
5609 if (has_mbyte)
5610 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005611 vimconv_T vc;
5612
5613 vc.vc_type = CONV_NONE;
5614 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
5615 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01005616 int intlen = len;
5617 char_u *conv_str;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00005618
5619 conv_str = string_convert(&vc, str, &intlen);
5620 len = intlen;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00005621 if (conv_str != NULL)
5622 {
5623 vim_free(str);
5624 str = conv_str;
5625 }
5626 convert_setup(&vc, NULL, NULL);
5627 }
5628 }
5629#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 XStoreBuffer(dpy, (char *)str, (int)len, 0);
5631 XFlush(dpy);
5632 }
5633
5634 vim_free(str);
5635}
5636#endif
5637
5638 void
5639clip_free_selection(cbd)
5640 VimClipboard *cbd;
5641{
5642 struct yankreg *y_ptr = y_current;
5643
5644 if (cbd == &clip_plus)
5645 y_current = &y_regs[PLUS_REGISTER];
5646 else
5647 y_current = &y_regs[STAR_REGISTER];
5648 free_yank_all();
5649 y_current->y_size = 0;
5650 y_current = y_ptr;
5651}
5652
5653/*
5654 * Get the selected text and put it in the gui selection register '*' or '+'.
5655 */
5656 void
5657clip_get_selection(cbd)
5658 VimClipboard *cbd;
5659{
5660 struct yankreg *old_y_previous, *old_y_current;
5661 pos_T old_cursor;
5662#ifdef FEAT_VISUAL
5663 pos_T old_visual;
5664 int old_visual_mode;
5665#endif
5666 colnr_T old_curswant;
5667 int old_set_curswant;
5668 pos_T old_op_start, old_op_end;
5669 oparg_T oa;
5670 cmdarg_T ca;
5671
5672 if (cbd->owned)
5673 {
5674 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
5675 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
5676 return;
5677
5678 /* Get the text between clip_star.start & clip_star.end */
5679 old_y_previous = y_previous;
5680 old_y_current = y_current;
5681 old_cursor = curwin->w_cursor;
5682 old_curswant = curwin->w_curswant;
5683 old_set_curswant = curwin->w_set_curswant;
5684 old_op_start = curbuf->b_op_start;
5685 old_op_end = curbuf->b_op_end;
5686#ifdef FEAT_VISUAL
5687 old_visual = VIsual;
5688 old_visual_mode = VIsual_mode;
5689#endif
5690 clear_oparg(&oa);
5691 oa.regname = (cbd == &clip_plus ? '+' : '*');
5692 oa.op_type = OP_YANK;
5693 vim_memset(&ca, 0, sizeof(ca));
5694 ca.oap = &oa;
5695 ca.cmdchar = 'y';
5696 ca.count1 = 1;
5697 ca.retval = CA_NO_ADJ_OP_END;
5698 do_pending_operator(&ca, 0, TRUE);
5699 y_previous = old_y_previous;
5700 y_current = old_y_current;
5701 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00005702 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 curwin->w_curswant = old_curswant;
5704 curwin->w_set_curswant = old_set_curswant;
5705 curbuf->b_op_start = old_op_start;
5706 curbuf->b_op_end = old_op_end;
5707#ifdef FEAT_VISUAL
5708 VIsual = old_visual;
5709 VIsual_mode = old_visual_mode;
5710#endif
5711 }
5712 else
5713 {
5714 clip_free_selection(cbd);
5715
5716 /* Try to get selected text from another window */
5717 clip_gen_request_selection(cbd);
5718 }
5719}
5720
5721/* Convert from the GUI selection string into the '*'/'+' register */
5722 void
5723clip_yank_selection(type, str, len, cbd)
5724 int type;
5725 char_u *str;
5726 long len;
5727 VimClipboard *cbd;
5728{
5729 struct yankreg *y_ptr;
5730
5731 if (cbd == &clip_plus)
5732 y_ptr = &y_regs[PLUS_REGISTER];
5733 else
5734 y_ptr = &y_regs[STAR_REGISTER];
5735
5736 clip_free_selection(cbd);
5737
5738 str_to_reg(y_ptr, type, str, len, 0L);
5739}
5740
5741/*
5742 * Convert the '*'/'+' register into a GUI selection string returned in *str
5743 * with length *len.
5744 * Returns the motion type, or -1 for failure.
5745 */
5746 int
5747clip_convert_selection(str, len, cbd)
5748 char_u **str;
5749 long_u *len;
5750 VimClipboard *cbd;
5751{
5752 char_u *p;
5753 int lnum;
5754 int i, j;
5755 int_u eolsize;
5756 struct yankreg *y_ptr;
5757
5758 if (cbd == &clip_plus)
5759 y_ptr = &y_regs[PLUS_REGISTER];
5760 else
5761 y_ptr = &y_regs[STAR_REGISTER];
5762
5763#ifdef USE_CRNL
5764 eolsize = 2;
5765#else
5766 eolsize = 1;
5767#endif
5768
5769 *str = NULL;
5770 *len = 0;
5771 if (y_ptr->y_array == NULL)
5772 return -1;
5773
5774 for (i = 0; i < y_ptr->y_size; i++)
5775 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
5776
5777 /*
5778 * Don't want newline character at end of last line if we're in MCHAR mode.
5779 */
5780 if (y_ptr->y_type == MCHAR && *len >= eolsize)
5781 *len -= eolsize;
5782
5783 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
5784 if (p == NULL)
5785 return -1;
5786 lnum = 0;
5787 for (i = 0, j = 0; i < (int)*len; i++, j++)
5788 {
5789 if (y_ptr->y_array[lnum][j] == '\n')
5790 p[i] = NUL;
5791 else if (y_ptr->y_array[lnum][j] == NUL)
5792 {
5793#ifdef USE_CRNL
5794 p[i++] = '\r';
5795#endif
5796#ifdef USE_CR
5797 p[i] = '\r';
5798#else
5799 p[i] = '\n';
5800#endif
5801 lnum++;
5802 j = -1;
5803 }
5804 else
5805 p[i] = y_ptr->y_array[lnum][j];
5806 }
5807 return y_ptr->y_type;
5808}
5809
5810
5811# if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
5812/*
5813 * If we have written to a clipboard register, send the text to the clipboard.
5814 */
5815 static void
5816may_set_selection()
5817{
5818 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
5819 {
5820 clip_own_selection(&clip_star);
5821 clip_gen_set_selection(&clip_star);
5822 }
5823 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
5824 {
5825 clip_own_selection(&clip_plus);
5826 clip_gen_set_selection(&clip_plus);
5827 }
5828}
5829# endif
5830
5831#endif /* FEAT_CLIPBOARD || PROTO */
5832
5833
5834#if defined(FEAT_DND) || defined(PROTO)
5835/*
5836 * Replace the contents of the '~' register with str.
5837 */
5838 void
5839dnd_yank_drag_data(str, len)
5840 char_u *str;
5841 long len;
5842{
5843 struct yankreg *curr;
5844
5845 curr = y_current;
5846 y_current = &y_regs[TILDE_REGISTER];
5847 free_yank_all();
5848 str_to_reg(y_current, MCHAR, str, len, 0L);
5849 y_current = curr;
5850}
5851#endif
5852
5853
5854#if defined(FEAT_EVAL) || defined(PROTO)
5855/*
5856 * Return the type of a register.
5857 * Used for getregtype()
5858 * Returns MAUTO for error.
5859 */
5860 char_u
5861get_reg_type(regname, reglen)
5862 int regname;
5863 long *reglen;
5864{
5865 switch (regname)
5866 {
5867 case '%': /* file name */
5868 case '#': /* alternate file name */
5869 case '=': /* expression */
5870 case ':': /* last command line */
5871 case '/': /* last search-pattern */
5872 case '.': /* last inserted text */
5873#ifdef FEAT_SEARCHPATH
5874 case Ctrl_F: /* Filename under cursor */
5875 case Ctrl_P: /* Path under cursor, expand via "path" */
5876#endif
5877 case Ctrl_W: /* word under cursor */
5878 case Ctrl_A: /* WORD (mnemonic All) under cursor */
5879 case '_': /* black hole: always empty */
5880 return MCHAR;
5881 }
5882
5883#ifdef FEAT_CLIPBOARD
5884 regname = may_get_selection(regname);
5885#endif
5886
5887 /* Should we check for a valid name? */
5888 get_yank_register(regname, FALSE);
5889
5890 if (y_current->y_array != NULL)
5891 {
5892#ifdef FEAT_VISUAL
5893 if (reglen != NULL && y_current->y_type == MBLOCK)
5894 *reglen = y_current->y_width;
5895#endif
5896 return y_current->y_type;
5897 }
5898 return MAUTO;
5899}
5900
5901/*
5902 * Return the contents of a register as a single allocated string.
5903 * Used for "@r" in expressions and for getreg().
5904 * Returns NULL for error.
5905 */
5906 char_u *
Bram Moolenaarde934d72005-05-22 22:09:40 +00005907get_reg_contents(regname, allowexpr, expr_src)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 int regname;
Bram Moolenaarde934d72005-05-22 22:09:40 +00005909 int allowexpr; /* allow "=" register */
5910 int expr_src; /* get expression for "=" register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911{
5912 long i;
5913 char_u *retval;
5914 int allocated;
5915 long len;
5916
5917 /* Don't allow using an expression register inside an expression */
5918 if (regname == '=')
5919 {
5920 if (allowexpr)
Bram Moolenaarde934d72005-05-22 22:09:40 +00005921 {
5922 if (expr_src)
5923 return get_expr_line_src();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924 return get_expr_line();
Bram Moolenaarde934d72005-05-22 22:09:40 +00005925 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005926 return NULL;
5927 }
5928
5929 if (regname == '@') /* "@@" is used for unnamed register */
5930 regname = '"';
5931
5932 /* check for valid regname */
5933 if (regname != NUL && !valid_yank_reg(regname, FALSE))
5934 return NULL;
5935
5936#ifdef FEAT_CLIPBOARD
5937 regname = may_get_selection(regname);
5938#endif
5939
5940 if (get_spec_reg(regname, &retval, &allocated, FALSE))
5941 {
5942 if (retval == NULL)
5943 return NULL;
5944 if (!allocated)
5945 retval = vim_strsave(retval);
5946 return retval;
5947 }
5948
5949 get_yank_register(regname, FALSE);
5950 if (y_current->y_array == NULL)
5951 return NULL;
5952
5953 /*
5954 * Compute length of resulting string.
5955 */
5956 len = 0;
5957 for (i = 0; i < y_current->y_size; ++i)
5958 {
5959 len += (long)STRLEN(y_current->y_array[i]);
5960 /*
5961 * Insert a newline between lines and after last line if
5962 * y_type is MLINE.
5963 */
5964 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5965 ++len;
5966 }
5967
5968 retval = lalloc(len + 1, TRUE);
5969
5970 /*
5971 * Copy the lines of the yank register into the string.
5972 */
5973 if (retval != NULL)
5974 {
5975 len = 0;
5976 for (i = 0; i < y_current->y_size; ++i)
5977 {
5978 STRCPY(retval + len, y_current->y_array[i]);
5979 len += (long)STRLEN(retval + len);
5980
5981 /*
5982 * Insert a NL between lines and after the last line if y_type is
5983 * MLINE.
5984 */
5985 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
5986 retval[len++] = '\n';
5987 }
5988 retval[len] = NUL;
5989 }
5990
5991 return retval;
5992}
5993
5994/*
5995 * Store string "str" in register "name".
5996 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
5997 * If "must_append" is TRUE, always append to the register. Otherwise append
5998 * if "name" is an uppercase letter.
5999 * Note: "maxlen" and "must_append" don't work for the "/" register.
6000 * Careful: 'str' is modified, you may have to use a copy!
6001 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
6002 */
6003 void
6004write_reg_contents(name, str, maxlen, must_append)
6005 int name;
6006 char_u *str;
6007 int maxlen;
6008 int must_append;
6009{
6010 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
6011}
6012
6013 void
6014write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
6015 int name;
6016 char_u *str;
6017 int maxlen;
6018 int must_append;
6019 int yank_type;
6020 long block_len;
6021{
6022 struct yankreg *old_y_previous, *old_y_current;
6023 long len;
6024
Bram Moolenaare7566042005-06-17 22:00:15 +00006025 if (maxlen >= 0)
6026 len = maxlen;
6027 else
6028 len = (long)STRLEN(str);
6029
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030 /* Special case: '/' search pattern */
6031 if (name == '/')
6032 {
6033 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
6034 return;
6035 }
6036
Bram Moolenaare7566042005-06-17 22:00:15 +00006037#ifdef FEAT_EVAL
6038 if (name == '=')
6039 {
6040 char_u *p, *s;
6041
6042 p = vim_strnsave(str, (int)len);
6043 if (p == NULL)
6044 return;
6045 if (must_append)
6046 {
6047 s = concat_str(get_expr_line_src(), p);
6048 vim_free(p);
6049 p = s;
6050
6051 }
6052 set_expr_line(p);
6053 return;
6054 }
6055#endif
6056
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6058 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00006059 emsg_invreg(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006060 return;
6061 }
6062
6063 if (name == '_') /* black hole: nothing to do */
6064 return;
6065
6066 /* Don't want to change the current (unnamed) register */
6067 old_y_previous = y_previous;
6068 old_y_current = y_current;
6069
6070 get_yank_register(name, TRUE);
6071 if (!y_append && !must_append)
6072 free_yank_all();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073#ifndef FEAT_VISUAL
6074 /* Just in case - make sure we don't use MBLOCK */
6075 if (yank_type == MBLOCK)
6076 yank_type = MAUTO;
6077#endif
6078 if (yank_type == MAUTO)
6079 yank_type = ((len > 0 && (str[len - 1] == '\n' || str[len - 1] == '\r'))
6080 ? MLINE : MCHAR);
6081 str_to_reg(y_current, yank_type, str, len, block_len);
6082
6083# ifdef FEAT_CLIPBOARD
6084 /* Send text of clipboard register to the clipboard. */
6085 may_set_selection();
6086# endif
6087
6088 /* ':let @" = "val"' should change the meaning of the "" register */
6089 if (name != '"')
6090 y_previous = old_y_previous;
6091 y_current = old_y_current;
6092}
6093#endif /* FEAT_EVAL */
6094
6095#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6096/*
6097 * Put a string into a register. When the register is not empty, the string
6098 * is appended.
6099 */
6100 static void
6101str_to_reg(y_ptr, type, str, len, blocklen)
6102 struct yankreg *y_ptr; /* pointer to yank register */
6103 int type; /* MCHAR, MLINE or MBLOCK */
6104 char_u *str; /* string to put in register */
6105 long len; /* length of string */
6106 long blocklen; /* width of Visual block */
6107{
6108 int lnum;
6109 long start;
6110 long i;
6111 int extra;
6112 int newlines; /* number of lines added */
6113 int extraline = 0; /* extra line at the end */
6114 int append = FALSE; /* append to last line in register */
6115 char_u *s;
6116 char_u **pp;
6117#ifdef FEAT_VISUAL
6118 long maxlen;
6119#endif
6120
Bram Moolenaarcde547a2009-11-17 11:43:06 +00006121 if (y_ptr->y_array == NULL) /* NULL means empty register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122 y_ptr->y_size = 0;
6123
6124 /*
6125 * Count the number of lines within the string
6126 */
6127 newlines = 0;
6128 for (i = 0; i < len; i++)
6129 if (str[i] == '\n')
6130 ++newlines;
6131 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
6132 {
6133 extraline = 1;
6134 ++newlines; /* count extra newline at the end */
6135 }
6136 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
6137 {
6138 append = TRUE;
6139 --newlines; /* uncount newline when appending first line */
6140 }
6141
6142 /*
6143 * Allocate an array to hold the pointers to the new register lines.
6144 * If the register was not empty, move the existing lines to the new array.
6145 */
6146 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
6147 * sizeof(char_u *), TRUE);
6148 if (pp == NULL) /* out of memory */
6149 return;
6150 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
6151 pp[lnum] = y_ptr->y_array[lnum];
6152 vim_free(y_ptr->y_array);
6153 y_ptr->y_array = pp;
6154#ifdef FEAT_VISUAL
6155 maxlen = 0;
6156#endif
6157
6158 /*
6159 * Find the end of each line and save it into the array.
6160 */
6161 for (start = 0; start < len + extraline; start += i + 1)
6162 {
6163 for (i = start; i < len; ++i) /* find the end of the line */
6164 if (str[i] == '\n')
6165 break;
6166 i -= start; /* i is now length of line */
6167#ifdef FEAT_VISUAL
6168 if (i > maxlen)
6169 maxlen = i;
6170#endif
6171 if (append)
6172 {
6173 --lnum;
6174 extra = (int)STRLEN(y_ptr->y_array[lnum]);
6175 }
6176 else
6177 extra = 0;
6178 s = alloc((unsigned)(i + extra + 1));
6179 if (s == NULL)
6180 break;
6181 if (extra)
6182 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
6183 if (append)
6184 vim_free(y_ptr->y_array[lnum]);
6185 if (i)
6186 mch_memmove(s + extra, str + start, (size_t)i);
6187 extra += i;
6188 s[extra] = NUL;
6189 y_ptr->y_array[lnum++] = s;
6190 while (--extra >= 0)
6191 {
6192 if (*s == NUL)
6193 *s = '\n'; /* replace NUL with newline */
6194 ++s;
6195 }
6196 append = FALSE; /* only first line is appended */
6197 }
6198 y_ptr->y_type = type;
6199 y_ptr->y_size = lnum;
6200# ifdef FEAT_VISUAL
6201 if (type == MBLOCK)
6202 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
6203 else
6204 y_ptr->y_width = 0;
6205# endif
6206}
6207#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
6208
6209 void
6210clear_oparg(oap)
6211 oparg_T *oap;
6212{
6213 vim_memset(oap, 0, sizeof(oparg_T));
6214}
6215
Bram Moolenaar7c626922005-02-07 22:01:03 +00006216static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217
6218/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00006219 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220 *
6221 * "Words" are counted by looking for boundaries between non-space and
6222 * space characters. (it seems to produce results that match 'wc'.)
6223 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00006224 * Return value is byte count; word count for the line is added to "*wc".
6225 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006226 *
6227 * The function will only examine the first "limit" characters in the
6228 * line, stopping if it encounters an end-of-line (NUL byte). In that
6229 * case, eol_size will be added to the character count to account for
6230 * the size of the EOL character.
6231 */
6232 static long
Bram Moolenaar7c626922005-02-07 22:01:03 +00006233line_count_info(line, wc, cc, limit, eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006234 char_u *line;
6235 long *wc;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006236 long *cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006237 long limit;
6238 int eol_size;
6239{
Bram Moolenaar7c626922005-02-07 22:01:03 +00006240 long i;
6241 long words = 0;
6242 long chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243 int is_word = 0;
6244
Bram Moolenaar7c626922005-02-07 22:01:03 +00006245 for (i = 0; line[i] && i < limit; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246 {
6247 if (is_word)
6248 {
6249 if (vim_isspace(line[i]))
6250 {
6251 words++;
6252 is_word = 0;
6253 }
6254 }
6255 else if (!vim_isspace(line[i]))
6256 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006257 ++chars;
6258#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006259 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00006260#else
6261 ++i;
6262#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263 }
6264
6265 if (is_word)
6266 words++;
6267 *wc += words;
6268
6269 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006270 if (line[i] == NUL && i < limit)
6271 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006273 chars += eol_size;
6274 }
6275 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276 return i;
6277}
6278
6279/*
6280 * Give some info about the position of the cursor (for "g CTRL-G").
6281 * In Visual mode, give some info about the selected region. (In this case,
6282 * the *_count_cursor variables store running totals for the selection.)
6283 */
6284 void
6285cursor_pos_info()
6286{
6287 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006288 char_u buf1[50];
6289 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006290 linenr_T lnum;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006291 long byte_count = 0;
6292 long byte_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006293 long char_count = 0;
6294 long char_count_cursor = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006295 long word_count = 0;
6296 long word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006297 int eol_size;
6298 long last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006299#ifdef FEAT_VISUAL
6300 long line_count_selected = 0;
6301 pos_T min_pos, max_pos;
6302 oparg_T oparg;
6303 struct block_def bd;
6304#endif
6305
6306 /*
6307 * Compute the length of the file in characters.
6308 */
6309 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6310 {
6311 MSG(_(no_lines_msg));
6312 }
6313 else
6314 {
6315 if (get_fileformat(curbuf) == EOL_DOS)
6316 eol_size = 2;
6317 else
6318 eol_size = 1;
6319
6320#ifdef FEAT_VISUAL
6321 if (VIsual_active)
6322 {
6323 if (lt(VIsual, curwin->w_cursor))
6324 {
6325 min_pos = VIsual;
6326 max_pos = curwin->w_cursor;
6327 }
6328 else
6329 {
6330 min_pos = curwin->w_cursor;
6331 max_pos = VIsual;
6332 }
6333 if (*p_sel == 'e' && max_pos.col > 0)
6334 --max_pos.col;
6335
6336 if (VIsual_mode == Ctrl_V)
6337 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00006338#ifdef FEAT_LINEBREAK
6339 char_u * saved_sbr = p_sbr;
6340
6341 /* Make 'sbr' empty for a moment to get the correct size. */
6342 p_sbr = empty_option;
6343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006344 oparg.is_VIsual = 1;
6345 oparg.block_mode = TRUE;
6346 oparg.op_type = OP_NOP;
6347 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006348 &oparg.start_vcol, &oparg.end_vcol);
Bram Moolenaar81d00072009-04-29 15:41:40 +00006349#ifdef FEAT_LINEBREAK
6350 p_sbr = saved_sbr;
6351#endif
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006352 if (curwin->w_curswant == MAXCOL)
6353 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006354 /* Swap the start, end vcol if needed */
6355 if (oparg.end_vcol < oparg.start_vcol)
6356 {
6357 oparg.end_vcol += oparg.start_vcol;
6358 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
6359 oparg.end_vcol -= oparg.start_vcol;
6360 }
6361 }
6362 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
6363 }
6364#endif
6365
6366 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6367 {
6368 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006369 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006370 {
6371 ui_breakcheck();
6372 if (got_int)
6373 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006374 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375 }
6376
6377#ifdef FEAT_VISUAL
6378 /* Do extra processing for VIsual mode. */
6379 if (VIsual_active
6380 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
6381 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00006382 char_u *s = NULL;
6383 long len = 0L;
6384
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385 switch (VIsual_mode)
6386 {
6387 case Ctrl_V:
6388# ifdef FEAT_VIRTUALEDIT
6389 virtual_op = virtual_active();
6390# endif
6391 block_prep(&oparg, &bd, lnum, 0);
6392# ifdef FEAT_VIRTUALEDIT
6393 virtual_op = MAYBE;
6394# endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00006395 s = bd.textstart;
6396 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006397 break;
6398 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00006399 s = ml_get(lnum);
6400 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401 break;
6402 case 'v':
6403 {
6404 colnr_T start_col = (lnum == min_pos.lnum)
6405 ? min_pos.col : 0;
6406 colnr_T end_col = (lnum == max_pos.lnum)
6407 ? max_pos.col - start_col + 1 : MAXCOL;
6408
Bram Moolenaardef9e822004-12-31 20:58:58 +00006409 s = ml_get(lnum) + start_col;
6410 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006411 }
6412 break;
6413 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00006414 if (s != NULL)
6415 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00006416 byte_count_cursor += line_count_info(s, &word_count_cursor,
6417 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00006418 if (lnum == curbuf->b_ml.ml_line_count
6419 && !curbuf->b_p_eol
6420 && curbuf->b_p_bin
Bram Moolenaarec2dad62005-01-02 11:36:03 +00006421 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006422 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00006423 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424 }
6425 else
6426#endif
6427 {
6428 /* In non-visual mode, check for the line the cursor is on */
6429 if (lnum == curwin->w_cursor.lnum)
6430 {
6431 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00006432 char_count_cursor += char_count;
6433 byte_count_cursor = byte_count +
6434 line_count_info(ml_get(lnum),
6435 &word_count_cursor, &char_count_cursor,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006436 (long)(curwin->w_cursor.col + 1), eol_size);
6437 }
6438 }
6439 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00006440 byte_count += line_count_info(ml_get(lnum), &word_count,
6441 &char_count, (long)MAXCOL, eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006442 }
6443
6444 /* Correction for when last line doesn't have an EOL. */
6445 if (!curbuf->b_p_eol && curbuf->b_p_bin)
Bram Moolenaar7c626922005-02-07 22:01:03 +00006446 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447
6448#ifdef FEAT_VISUAL
6449 if (VIsual_active)
6450 {
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006451 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006452 {
6453 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006454 &max_pos.col);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006455 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456 (long)(oparg.end_vcol - oparg.start_vcol + 1));
6457 }
6458 else
6459 buf1[0] = NUL;
6460
Bram Moolenaar7c626922005-02-07 22:01:03 +00006461 if (char_count_cursor == byte_count_cursor
Bram Moolenaar555b2802005-05-19 21:08:39 +00006462 && char_count == byte_count)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006463 vim_snprintf((char *)IObuff, IOSIZE,
6464 _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006465 buf1, line_count_selected,
6466 (long)curbuf->b_ml.ml_line_count,
6467 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006468 byte_count_cursor, byte_count);
6469 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006470 vim_snprintf((char *)IObuff, IOSIZE,
6471 _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"),
Bram Moolenaar7c626922005-02-07 22:01:03 +00006472 buf1, line_count_selected,
6473 (long)curbuf->b_ml.ml_line_count,
6474 word_count_cursor, word_count,
6475 char_count_cursor, char_count,
6476 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477 }
6478 else
6479#endif
6480 {
6481 p = ml_get_curline();
6482 validate_virtcol();
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006483 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 (int)curwin->w_virtcol + 1);
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006485 col_print(buf2, sizeof(buf2), (int)STRLEN(p), linetabsize(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006486
Bram Moolenaar7c626922005-02-07 22:01:03 +00006487 if (char_count_cursor == byte_count_cursor
6488 && char_count == byte_count)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006489 vim_snprintf((char *)IObuff, IOSIZE,
6490 _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006491 (char *)buf1, (char *)buf2,
6492 (long)curwin->w_cursor.lnum,
6493 (long)curbuf->b_ml.ml_line_count,
6494 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00006495 byte_count_cursor, byte_count);
6496 else
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00006497 vim_snprintf((char *)IObuff, IOSIZE,
6498 _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"),
Bram Moolenaar7c626922005-02-07 22:01:03 +00006499 (char *)buf1, (char *)buf2,
6500 (long)curwin->w_cursor.lnum,
6501 (long)curbuf->b_ml.ml_line_count,
6502 word_count_cursor, word_count,
6503 char_count_cursor, char_count,
6504 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006505 }
6506
6507#ifdef FEAT_MBYTE
Bram Moolenaar7c626922005-02-07 22:01:03 +00006508 byte_count = bomb_size();
6509 if (byte_count > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006510 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
Bram Moolenaar7c626922005-02-07 22:01:03 +00006511 byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006512#endif
6513 /* Don't shorten this message, the user asked for it. */
6514 p = p_shm;
6515 p_shm = (char_u *)"";
6516 msg(IObuff);
6517 p_shm = p;
6518 }
6519}