blob: 23856c8457f29f9253d226a852c33efb8ca4febb [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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/*
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +020053 * Each yank register has an array of pointers to lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +000054 */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +020055typedef struct
Bram Moolenaar071d4272004-06-13 20:20:40 +000056{
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 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000060 colnr_T y_width; /* only set if y_type == MBLOCK */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +020061#ifdef FEAT_VIMINFO
62 time_t y_time_set;
63#endif
64} yankreg_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +000065
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +020066static yankreg_T y_regs[NUM_REGISTERS];
67
68static yankreg_T *y_current; /* ptr to current yankreg */
Bram Moolenaar071d4272004-06-13 20:20:40 +000069static int y_append; /* TRUE when appending */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +020070static yankreg_T *y_previous = NULL; /* ptr to last written yankreg */
Bram Moolenaar071d4272004-06-13 20:20:40 +000071
72/*
73 * structure used by block_prep, op_delete and op_yank for blockwise operators
74 * also op_change, op_shift, op_insert, op_replace - AKelly
75 */
76struct block_def
77{
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +000078 int startspaces; /* 'extra' cols before first char */
79 int endspaces; /* 'extra' cols after last char */
Bram Moolenaar071d4272004-06-13 20:20:40 +000080 int textlen; /* chars in block */
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +000081 char_u *textstart; /* pointer to 1st char (partially) in block */
82 colnr_T textcol; /* index of chars (partially) in block */
Bram Moolenaar071d4272004-06-13 20:20:40 +000083 colnr_T start_vcol; /* start col of 1st char wholly inside block */
84 colnr_T end_vcol; /* start col of 1st char wholly after block */
85#ifdef FEAT_VISUALEXTRA
86 int is_short; /* TRUE if line is too short to fit in block */
87 int is_MAX; /* TRUE if curswant==MAXCOL when starting */
88 int is_oneChar; /* TRUE if block within one character */
89 int pre_whitesp; /* screen cols of ws before block */
90 int pre_whitesp_c; /* chars of ws before block */
91 colnr_T end_char_vcols; /* number of vcols of post-block char */
92#endif
93 colnr_T start_char_vcols; /* number of vcols of pre-block char */
94};
95
96#ifdef FEAT_VISUALEXTRA
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010097static void shift_block(oparg_T *oap, int amount);
98static void block_insert(oparg_T *oap, char_u *s, int b_insert, struct block_def*bdp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000099#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100100static int stuff_yank(int, char_u *);
101static void put_reedit_in_typebuf(int silent);
102static int put_in_typebuf(char_u *s, int esc, int colon,
103 int silent);
104static void stuffescaped(char_u *arg, int literally);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105#ifdef FEAT_MBYTE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100106static void mb_adjust_opend(oparg_T *oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100108static void free_yank(long);
109static void free_yank_all(void);
110static int yank_copy_line(struct block_def *bd, long y_idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111#ifdef FEAT_CLIPBOARD
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +0200112static void copy_yank_reg(yankreg_T *reg);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100113static void may_set_selection(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100115static void dis_msg(char_u *p, int skip_esc);
Bram Moolenaar81340392012-06-06 16:12:59 +0200116#if defined(FEAT_COMMENTS) || defined(PROTO)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100117static char_u *skip_comment(char_u *line, int process, int include_space, int *is_comment);
Bram Moolenaar81340392012-06-06 16:12:59 +0200118#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100119static void block_prep(oparg_T *oap, struct block_def *, linenr_T, int);
120static int do_addsub(int op_type, pos_T *pos, int length, linenr_T Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +0200122static void str_to_reg(yankreg_T *y_ptr, int yank_type, char_u *str, long len, long blocklen, int str_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100124static int ends_in_white(linenr_T lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125#ifdef FEAT_COMMENTS
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100126static int same_leader(linenr_T lnum, int, char_u *, int, char_u *);
127static int fmt_check_par(linenr_T, int *, char_u **, int do_comments);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128#else
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100129static int fmt_check_par(linenr_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130#endif
131
132/*
133 * The names of operators.
134 * IMPORTANT: Index must correspond with defines in vim.h!!!
135 * The third field indicates whether the operator always works on lines.
136 */
137static char opchars[][3] =
138{
139 {NUL, NUL, FALSE}, /* OP_NOP */
140 {'d', NUL, FALSE}, /* OP_DELETE */
141 {'y', NUL, FALSE}, /* OP_YANK */
142 {'c', NUL, FALSE}, /* OP_CHANGE */
143 {'<', NUL, TRUE}, /* OP_LSHIFT */
144 {'>', NUL, TRUE}, /* OP_RSHIFT */
145 {'!', NUL, TRUE}, /* OP_FILTER */
146 {'g', '~', FALSE}, /* OP_TILDE */
147 {'=', NUL, TRUE}, /* OP_INDENT */
148 {'g', 'q', TRUE}, /* OP_FORMAT */
149 {':', NUL, TRUE}, /* OP_COLON */
150 {'g', 'U', FALSE}, /* OP_UPPER */
151 {'g', 'u', FALSE}, /* OP_LOWER */
152 {'J', NUL, TRUE}, /* DO_JOIN */
153 {'g', 'J', TRUE}, /* DO_JOIN_NS */
154 {'g', '?', FALSE}, /* OP_ROT13 */
155 {'r', NUL, FALSE}, /* OP_REPLACE */
156 {'I', NUL, FALSE}, /* OP_INSERT */
157 {'A', NUL, FALSE}, /* OP_APPEND */
158 {'z', 'f', TRUE}, /* OP_FOLD */
159 {'z', 'o', TRUE}, /* OP_FOLDOPEN */
160 {'z', 'O', TRUE}, /* OP_FOLDOPENREC */
161 {'z', 'c', TRUE}, /* OP_FOLDCLOSE */
162 {'z', 'C', TRUE}, /* OP_FOLDCLOSEREC */
163 {'z', 'd', TRUE}, /* OP_FOLDDEL */
164 {'z', 'D', TRUE}, /* OP_FOLDDELREC */
165 {'g', 'w', TRUE}, /* OP_FORMAT2 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000166 {'g', '@', FALSE}, /* OP_FUNCTION */
Bram Moolenaard79e5502016-01-10 22:13:02 +0100167 {Ctrl_A, NUL, FALSE}, /* OP_NR_ADD */
168 {Ctrl_X, NUL, FALSE}, /* OP_NR_SUB */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169};
170
171/*
172 * Translate a command name into an operator type.
173 * Must only be called with a valid operator name!
174 */
175 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100176get_op_type(int char1, int char2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177{
178 int i;
179
180 if (char1 == 'r') /* ignore second character */
181 return OP_REPLACE;
182 if (char1 == '~') /* when tilde is an operator */
183 return OP_TILDE;
Bram Moolenaard79e5502016-01-10 22:13:02 +0100184 if (char1 == 'g' && char2 == Ctrl_A) /* add */
185 return OP_NR_ADD;
186 if (char1 == 'g' && char2 == Ctrl_X) /* subtract */
187 return OP_NR_SUB;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 for (i = 0; ; ++i)
189 if (opchars[i][0] == char1 && opchars[i][1] == char2)
190 break;
191 return i;
192}
193
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194/*
195 * Return TRUE if operator "op" always works on whole lines.
196 */
197 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100198op_on_lines(int op)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199{
200 return opchars[op][2];
201}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202
203/*
204 * Get first operator command character.
205 * Returns 'g' or 'z' if there is another command character.
206 */
207 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100208get_op_char(int optype)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209{
210 return opchars[optype][0];
211}
212
213/*
214 * Get second operator command character.
215 */
216 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100217get_extra_op_char(int optype)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218{
219 return opchars[optype][1];
220}
221
222/*
223 * op_shift - handle a shift operation
224 */
225 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100226op_shift(oparg_T *oap, int curs_top, int amount)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227{
228 long i;
229 int first_char;
230 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 int block_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232
233 if (u_save((linenr_T)(oap->start.lnum - 1),
234 (linenr_T)(oap->end.lnum + 1)) == FAIL)
235 return;
236
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237 if (oap->block_mode)
238 block_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239
240 for (i = oap->line_count; --i >= 0; )
241 {
242 first_char = *ml_get_curline();
243 if (first_char == NUL) /* empty line */
244 curwin->w_cursor.col = 0;
245#ifdef FEAT_VISUALEXTRA
246 else if (oap->block_mode)
247 shift_block(oap, amount);
248#endif
249 else
250 /* Move the line right if it doesn't start with '#', 'smartindent'
251 * isn't set or 'cindent' isn't set or '#' isn't in 'cino'. */
252#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
253 if (first_char != '#' || !preprocs_left())
254#endif
255 {
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000256 shift_line(oap->op_type == OP_LSHIFT, p_sr, amount, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 }
258 ++curwin->w_cursor.lnum;
259 }
260
261 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262 if (oap->block_mode)
263 {
264 curwin->w_cursor.lnum = oap->start.lnum;
265 curwin->w_cursor.col = block_col;
266 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100267 else if (curs_top) /* put cursor on first line, for ">>" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268 {
269 curwin->w_cursor.lnum = oap->start.lnum;
270 beginline(BL_SOL | BL_FIX); /* shift_line() may have set cursor.col */
271 }
272 else
273 --curwin->w_cursor.lnum; /* put cursor on last line, for ":>" */
274
Bram Moolenaar54b2bfa2017-01-02 14:57:08 +0100275#ifdef FEAT_FOLDING
276 /* The cursor line is not in a closed fold */
277 foldOpenCursor();
278#endif
279
280
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281 if (oap->line_count > p_report)
282 {
283 if (oap->op_type == OP_RSHIFT)
284 s = (char_u *)">";
285 else
286 s = (char_u *)"<";
287 if (oap->line_count == 1)
288 {
289 if (amount == 1)
290 sprintf((char *)IObuff, _("1 line %sed 1 time"), s);
291 else
292 sprintf((char *)IObuff, _("1 line %sed %d times"), s, amount);
293 }
294 else
295 {
296 if (amount == 1)
297 sprintf((char *)IObuff, _("%ld lines %sed 1 time"),
298 oap->line_count, s);
299 else
300 sprintf((char *)IObuff, _("%ld lines %sed %d times"),
301 oap->line_count, s, amount);
302 }
303 msg(IObuff);
304 }
305
306 /*
307 * Set "'[" and "']" marks.
308 */
309 curbuf->b_op_start = oap->start;
310 curbuf->b_op_end.lnum = oap->end.lnum;
311 curbuf->b_op_end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
312 if (curbuf->b_op_end.col > 0)
313 --curbuf->b_op_end.col;
314}
315
316/*
317 * shift the current line one shiftwidth left (if left != 0) or right
318 * leaves cursor on first blank in the line
319 */
320 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100321shift_line(
322 int left,
323 int round,
324 int amount,
325 int call_changed_bytes) /* call changed_bytes() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326{
327 int count;
328 int i, j;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100329 int p_sw = (int)get_sw_value(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330
331 count = get_indent(); /* get current indent */
332
333 if (round) /* round off indent */
334 {
335 i = count / p_sw; /* number of p_sw rounded down */
336 j = count % p_sw; /* extra spaces */
337 if (j && left) /* first remove extra spaces */
338 --amount;
339 if (left)
340 {
341 i -= amount;
342 if (i < 0)
343 i = 0;
344 }
345 else
346 i += amount;
347 count = i * p_sw;
348 }
349 else /* original vi indent */
350 {
351 if (left)
352 {
353 count -= p_sw * amount;
354 if (count < 0)
355 count = 0;
356 }
357 else
358 count += p_sw * amount;
359 }
360
361 /* Set new indent */
362#ifdef FEAT_VREPLACE
363 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000364 change_indent(INDENT_SET, count, FALSE, NUL, call_changed_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365 else
366#endif
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000367 (void)set_indent(count, call_changed_bytes ? SIN_CHANGED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368}
369
370#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
371/*
372 * Shift one line of the current block one shiftwidth right or left.
373 * Leaves cursor on first character in block.
374 */
375 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100376shift_block(oparg_T *oap, int amount)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377{
378 int left = (oap->op_type == OP_LSHIFT);
379 int oldstate = State;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000380 int total;
381 char_u *newp, *oldp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382 int oldcol = curwin->w_cursor.col;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100383 int p_sw = (int)get_sw_value(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384 int p_ts = (int)curbuf->b_p_ts;
385 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 int incr;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000387 colnr_T ws_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 int i = 0, j = 0;
389 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390#ifdef FEAT_RIGHTLEFT
391 int old_p_ri = p_ri;
392
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200393 p_ri = 0; /* don't want revins in indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394#endif
395
396 State = INSERT; /* don't want REPLACE for State */
397 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
398 if (bd.is_short)
399 return;
400
401 /* total is number of screen columns to be inserted/removed */
402 total = amount * p_sw;
403 oldp = ml_get_curline();
404
405 if (!left)
406 {
407 /*
408 * 1. Get start vcol
409 * 2. Total ws vcols
410 * 3. Divvy into TABs & spp
411 * 4. Construct new string
412 */
413 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
414 ws_vcol = bd.start_vcol - bd.pre_whitesp;
415 if (bd.startspaces)
416 {
417#ifdef FEAT_MBYTE
418 if (has_mbyte)
Bram Moolenaar20b4f462016-03-05 17:25:39 +0100419 {
420 if ((*mb_ptr2len)(bd.textstart) == 1)
421 ++bd.textstart;
422 else
423 {
424 ws_vcol = 0;
425 bd.startspaces = 0;
426 }
427 }
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000428 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429#endif
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000430 ++bd.textstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 }
432 for ( ; vim_iswhite(*bd.textstart); )
433 {
Bram Moolenaar597a4222014-06-25 14:39:50 +0200434 /* TODO: is passing bd.textstart for start of the line OK? */
435 incr = lbr_chartabsize_adv(bd.textstart, &bd.textstart,
436 (colnr_T)(bd.start_vcol));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437 total += incr;
438 bd.start_vcol += incr;
439 }
440 /* OK, now total=all the VWS reqd, and textstart points at the 1st
441 * non-ws char in the block. */
442 if (!curbuf->b_p_et)
443 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
444 if (i)
445 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
446 else
447 j = total;
448 /* if we're splitting a TAB, allow for it */
449 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
450 len = (int)STRLEN(bd.textstart) + 1;
451 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
452 if (newp == NULL)
453 return;
454 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
455 mch_memmove(newp, oldp, (size_t)bd.textcol);
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200456 vim_memset(newp + bd.textcol, TAB, (size_t)i);
457 vim_memset(newp + bd.textcol + i, ' ', (size_t)j);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 /* the end */
459 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
460 }
461 else /* left */
462 {
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000463 colnr_T destination_col; /* column to which text in block will
464 be shifted */
465 char_u *verbatim_copy_end; /* end of the part of the line which is
466 copied verbatim */
467 colnr_T verbatim_copy_width;/* the (displayed) width of this part
468 of line */
469 unsigned fill; /* nr of spaces that replace a TAB */
470 unsigned new_line_len; /* the length of the line after the
471 block shift */
472 size_t block_space_width;
473 size_t shift_amount;
474 char_u *non_white = bd.textstart;
475 colnr_T non_white_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000477 /*
478 * Firstly, let's find the first non-whitespace character that is
479 * displayed after the block's start column and the character's column
480 * number. Also, let's calculate the width of all the whitespace
481 * characters that are displayed in the block and precede the searched
482 * non-whitespace character.
483 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000485 /* If "bd.startspaces" is set, "bd.textstart" points to the character,
486 * the part of which is displayed at the block's beginning. Let's start
487 * searching from the next character. */
488 if (bd.startspaces)
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100489 MB_PTR_ADV(non_white);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000490
491 /* The character's column is in "bd.start_vcol". */
492 non_white_col = bd.start_vcol;
493
494 while (vim_iswhite(*non_white))
495 {
Bram Moolenaar597a4222014-06-25 14:39:50 +0200496 incr = lbr_chartabsize_adv(bd.textstart, &non_white, non_white_col);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000497 non_white_col += incr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 }
499
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000500 block_space_width = non_white_col - oap->start_vcol;
501 /* We will shift by "total" or "block_space_width", whichever is less.
502 */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000503 shift_amount = (block_space_width < (size_t)total
504 ? block_space_width : (size_t)total);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000505
506 /* The column to which we will shift the text. */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000507 destination_col = (colnr_T)(non_white_col - shift_amount);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000508
509 /* Now let's find out how much of the beginning of the line we can
510 * reuse without modification. */
511 verbatim_copy_end = bd.textstart;
512 verbatim_copy_width = bd.start_vcol;
513
514 /* If "bd.startspaces" is set, "bd.textstart" points to the character
515 * preceding the block. We have to subtract its width to obtain its
516 * column number. */
517 if (bd.startspaces)
518 verbatim_copy_width -= bd.start_char_vcols;
519 while (verbatim_copy_width < destination_col)
520 {
Bram Moolenaar597a4222014-06-25 14:39:50 +0200521 char_u *line = verbatim_copy_end;
522
523 /* TODO: is passing verbatim_copy_end for start of the line OK? */
524 incr = lbr_chartabsize(line, verbatim_copy_end,
525 verbatim_copy_width);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000526 if (verbatim_copy_width + incr > destination_col)
527 break;
528 verbatim_copy_width += incr;
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100529 MB_PTR_ADV(verbatim_copy_end);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000530 }
531
532 /* If "destination_col" is different from the width of the initial
533 * part of the line that will be copied, it means we encountered a tab
534 * character, which we will have to partly replace with spaces. */
535 fill = destination_col - verbatim_copy_width;
536
537 /* The replacement line will consist of:
538 * - the beginning of the original line up to "verbatim_copy_end",
539 * - "fill" number of spaces,
540 * - the rest of the line, pointed to by non_white. */
541 new_line_len = (unsigned)(verbatim_copy_end - oldp)
542 + fill
543 + (unsigned)STRLEN(non_white) + 1;
544
545 newp = alloc_check(new_line_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 if (newp == NULL)
547 return;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000548 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp));
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200549 vim_memset(newp + (verbatim_copy_end - oldp), ' ', (size_t)fill);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000550 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 }
552 /* replace the line */
553 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
554 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
555 State = oldstate;
556 curwin->w_cursor.col = oldcol;
557#ifdef FEAT_RIGHTLEFT
558 p_ri = old_p_ri;
559#endif
560}
561#endif
562
563#ifdef FEAT_VISUALEXTRA
564/*
565 * Insert string "s" (b_insert ? before : after) block :AKelly
566 * Caller must prepare for undo.
567 */
568 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100569block_insert(
570 oparg_T *oap,
571 char_u *s,
572 int b_insert,
573 struct block_def *bdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574{
575 int p_ts;
576 int count = 0; /* extra spaces to replace a cut TAB */
577 int spaces = 0; /* non-zero if cutting a TAB */
578 colnr_T offset; /* pointer along new line */
579 unsigned s_len; /* STRLEN(s) */
580 char_u *newp, *oldp; /* new, old lines */
581 linenr_T lnum; /* loop var */
582 int oldstate = State;
583
584 State = INSERT; /* don't want REPLACE for State */
585 s_len = (unsigned)STRLEN(s);
586
587 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
588 {
589 block_prep(oap, bdp, lnum, TRUE);
590 if (bdp->is_short && b_insert)
591 continue; /* OP_INSERT, line ends before block start */
592
593 oldp = ml_get(lnum);
594
595 if (b_insert)
596 {
597 p_ts = bdp->start_char_vcols;
598 spaces = bdp->startspaces;
599 if (spaces != 0)
600 count = p_ts - 1; /* we're cutting a TAB */
601 offset = bdp->textcol;
602 }
603 else /* append */
604 {
605 p_ts = bdp->end_char_vcols;
606 if (!bdp->is_short) /* spaces = padding after block */
607 {
608 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
609 if (spaces != 0)
610 count = p_ts - 1; /* we're cutting a TAB */
611 offset = bdp->textcol + bdp->textlen - (spaces != 0);
612 }
613 else /* spaces = padding to block edge */
614 {
615 /* if $ used, just append to EOL (ie spaces==0) */
616 if (!bdp->is_MAX)
617 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
618 count = spaces;
619 offset = bdp->textcol + bdp->textlen;
620 }
621 }
622
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200623#ifdef FEAT_MBYTE
624 if (has_mbyte && spaces > 0)
625 {
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100626 int off;
627
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200628 /* Avoid starting halfway a multi-byte character. */
629 if (b_insert)
630 {
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100631 off = (*mb_head_off)(oldp, oldp + offset + spaces);
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200632 }
633 else
634 {
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100635 off = (*mb_off_next)(oldp, oldp + offset);
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200636 offset += off;
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200637 }
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100638 spaces -= off;
639 count -= off;
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200640 }
641#endif
642
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
644 if (newp == NULL)
645 continue;
646
647 /* copy up to shifted part */
648 mch_memmove(newp, oldp, (size_t)(offset));
649 oldp += offset;
650
651 /* insert pre-padding */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200652 vim_memset(newp + offset, ' ', (size_t)spaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653
654 /* copy the new text */
655 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
656 offset += s_len;
657
658 if (spaces && !bdp->is_short)
659 {
660 /* insert post-padding */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200661 vim_memset(newp + offset + spaces, ' ', (size_t)(p_ts - spaces));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 /* We're splitting a TAB, don't copy it. */
663 oldp++;
664 /* We allowed for that TAB, remember this now */
665 count++;
666 }
667
668 if (spaces > 0)
669 offset += count;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000670 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671
672 ml_replace(lnum, newp, FALSE);
673
674 if (lnum == oap->end.lnum)
675 {
676 /* Set "']" mark to the end of the block instead of the end of
677 * the insert in the first line. */
678 curbuf->b_op_end.lnum = oap->end.lnum;
679 curbuf->b_op_end.col = offset;
680 }
681 } /* for all lnum */
682
683 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
684
685 State = oldstate;
686}
687#endif
688
689#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
690/*
691 * op_reindent - handle reindenting a block of lines.
692 */
693 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100694op_reindent(oparg_T *oap, int (*how)(void))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695{
696 long i;
697 char_u *l;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200698 int amount;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 linenr_T first_changed = 0;
700 linenr_T last_changed = 0;
701 linenr_T start_lnum = curwin->w_cursor.lnum;
702
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000703 /* Don't even try when 'modifiable' is off. */
704 if (!curbuf->b_p_ma)
705 {
706 EMSG(_(e_modifiable));
707 return;
708 }
709
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 for (i = oap->line_count; --i >= 0 && !got_int; )
711 {
712 /* it's a slow thing to do, so give feedback so there's no worry that
713 * the computer's just hung. */
714
715 if (i > 1
716 && (i % 50 == 0 || i == oap->line_count - 1)
717 && oap->line_count > p_report)
718 smsg((char_u *)_("%ld lines to indent... "), i);
719
720 /*
721 * Be vi-compatible: For lisp indenting the first line is not
722 * indented, unless there is only one line.
723 */
724#ifdef FEAT_LISP
725 if (i != oap->line_count - 1 || oap->line_count == 1
726 || how != get_lisp_indent)
727#endif
728 {
729 l = skipwhite(ml_get_curline());
730 if (*l == NUL) /* empty or blank line */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200731 amount = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 else
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200733 amount = how(); /* get the indent for this line */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200735 if (amount >= 0 && set_indent(amount, SIN_UNDO))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 {
737 /* did change the indent, call changed_lines() later */
738 if (first_changed == 0)
739 first_changed = curwin->w_cursor.lnum;
740 last_changed = curwin->w_cursor.lnum;
741 }
742 }
743 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +0000744 curwin->w_cursor.col = 0; /* make sure it's valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 }
746
747 /* put cursor on first non-blank of indented line */
748 curwin->w_cursor.lnum = start_lnum;
749 beginline(BL_SOL | BL_FIX);
750
751 /* Mark changed lines so that they will be redrawn. When Visual
752 * highlighting was present, need to continue until the last line. When
753 * there is no change still need to remove the Visual highlighting. */
754 if (last_changed != 0)
755 changed_lines(first_changed, 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756 oap->is_VIsual ? start_lnum + oap->line_count :
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 last_changed + 1, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 else if (oap->is_VIsual)
759 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760
761 if (oap->line_count > p_report)
762 {
763 i = oap->line_count - (i + 1);
764 if (i == 1)
765 MSG(_("1 line indented "));
766 else
767 smsg((char_u *)_("%ld lines indented "), i);
768 }
769 /* set '[ and '] marks */
770 curbuf->b_op_start = oap->start;
771 curbuf->b_op_end = oap->end;
772}
773#endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
774
775#if defined(FEAT_EVAL) || defined(PROTO)
776/*
777 * Keep the last expression line here, for repeating.
778 */
779static char_u *expr_line = NULL;
780
781/*
782 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
783 * Returns '=' when OK, NUL otherwise.
784 */
785 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100786get_expr_register(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787{
788 char_u *new_line;
789
790 new_line = getcmdline('=', 0L, 0);
791 if (new_line == NULL)
792 return NUL;
793 if (*new_line == NUL) /* use previous line */
794 vim_free(new_line);
795 else
796 set_expr_line(new_line);
797 return '=';
798}
799
800/*
801 * Set the expression for the '=' register.
802 * Argument must be an allocated string.
803 */
804 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100805set_expr_line(char_u *new_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806{
807 vim_free(expr_line);
808 expr_line = new_line;
809}
810
811/*
812 * Get the result of the '=' register expression.
813 * Returns a pointer to allocated memory, or NULL for failure.
814 */
815 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100816get_expr_line(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817{
818 char_u *expr_copy;
819 char_u *rv;
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000820 static int nested = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821
822 if (expr_line == NULL)
823 return NULL;
824
825 /* Make a copy of the expression, because evaluating it may cause it to be
826 * changed. */
827 expr_copy = vim_strsave(expr_line);
828 if (expr_copy == NULL)
829 return NULL;
830
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000831 /* When we are invoked recursively limit the evaluation to 10 levels.
832 * Then return the string as-is. */
833 if (nested >= 10)
834 return expr_copy;
835
836 ++nested;
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000837 rv = eval_to_string(expr_copy, NULL, TRUE);
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000838 --nested;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 vim_free(expr_copy);
840 return rv;
841}
Bram Moolenaarde934d72005-05-22 22:09:40 +0000842
843/*
844 * Get the '=' register expression itself, without evaluating it.
845 */
846 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100847get_expr_line_src(void)
Bram Moolenaarde934d72005-05-22 22:09:40 +0000848{
849 if (expr_line == NULL)
850 return NULL;
851 return vim_strsave(expr_line);
852}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853#endif /* FEAT_EVAL */
854
855/*
856 * Check if 'regname' is a valid name of a yank register.
857 * Note: There is no check for 0 (default register), caller should do this
858 */
859 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100860valid_yank_reg(
861 int regname,
862 int writing) /* if TRUE check for writable registers */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863{
864 if ( (regname > 0 && ASCII_ISALNUM(regname))
865 || (!writing && vim_strchr((char_u *)
866#ifdef FEAT_EVAL
Bram Moolenaar3b3a9492015-01-27 18:44:16 +0100867 "/.%:="
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868#else
Bram Moolenaar3b3a9492015-01-27 18:44:16 +0100869 "/.%:"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870#endif
871 , regname) != NULL)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +0100872 || regname == '#'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 || regname == '"'
874 || regname == '-'
875 || regname == '_'
876#ifdef FEAT_CLIPBOARD
877 || regname == '*'
878 || regname == '+'
879#endif
880#ifdef FEAT_DND
881 || (!writing && regname == '~')
882#endif
883 )
884 return TRUE;
885 return FALSE;
886}
887
888/*
889 * Set y_current and y_append, according to the value of "regname".
890 * Cannot handle the '_' register.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000891 * Must only be called with a valid register name!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 *
893 * If regname is 0 and writing, use register 0
894 * If regname is 0 and reading, use previous register
895 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000896 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100897get_yank_register(int regname, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898{
899 int i;
900
901 y_append = FALSE;
902 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
903 {
904 y_current = y_previous;
905 return;
906 }
907 i = regname;
908 if (VIM_ISDIGIT(i))
909 i -= '0';
910 else if (ASCII_ISLOWER(i))
911 i = CharOrdLow(i) + 10;
912 else if (ASCII_ISUPPER(i))
913 {
914 i = CharOrdUp(i) + 10;
915 y_append = TRUE;
916 }
917 else if (regname == '-')
918 i = DELETION_REGISTER;
919#ifdef FEAT_CLIPBOARD
920 /* When selection is not available, use register 0 instead of '*' */
921 else if (clip_star.available && regname == '*')
922 i = STAR_REGISTER;
923 /* When clipboard is not available, use register 0 instead of '+' */
924 else if (clip_plus.available && regname == '+')
925 i = PLUS_REGISTER;
926#endif
927#ifdef FEAT_DND
928 else if (!writing && regname == '~')
929 i = TILDE_REGISTER;
930#endif
931 else /* not 0-9, a-z, A-Z or '-': use register 0 */
932 i = 0;
933 y_current = &(y_regs[i]);
934 if (writing) /* remember the register we write into for do_put() */
935 y_previous = y_current;
936}
937
Bram Moolenaar8299df92004-07-10 09:47:34 +0000938#if defined(FEAT_CLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939/*
940 * When "regname" is a clipboard register, obtain the selection. If it's not
941 * available return zero, otherwise return "regname".
942 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000943 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100944may_get_selection(int regname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945{
946 if (regname == '*')
947 {
948 if (!clip_star.available)
949 regname = 0;
950 else
951 clip_get_selection(&clip_star);
952 }
953 else if (regname == '+')
954 {
955 if (!clip_plus.available)
956 regname = 0;
957 else
958 clip_get_selection(&clip_plus);
959 }
960 return regname;
961}
962#endif
963
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964/*
965 * Obtain the contents of a "normal" register. The register is made empty.
966 * The returned pointer has allocated memory, use put_register() later.
967 */
968 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100969get_register(
970 int name,
971 int copy) /* make a copy, if FALSE make register empty. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +0200973 yankreg_T *reg;
974 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975
976#ifdef FEAT_CLIPBOARD
977 /* When Visual area changed, may have to update selection. Obtain the
978 * selection too. */
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000979 if (name == '*' && clip_star.available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200981 if (clip_isautosel_star())
982 clip_update_selection(&clip_star);
983 may_get_selection(name);
984 }
985 if (name == '+' && clip_plus.available)
986 {
987 if (clip_isautosel_plus())
988 clip_update_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 may_get_selection(name);
990 }
991#endif
992
993 get_yank_register(name, 0);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +0200994 reg = (yankreg_T *)alloc((unsigned)sizeof(yankreg_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 if (reg != NULL)
996 {
997 *reg = *y_current;
998 if (copy)
999 {
1000 /* If we run out of memory some or all of the lines are empty. */
1001 if (reg->y_size == 0)
1002 reg->y_array = NULL;
1003 else
1004 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
1005 * reg->y_size));
1006 if (reg->y_array != NULL)
1007 {
1008 for (i = 0; i < reg->y_size; ++i)
1009 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
1010 }
1011 }
1012 else
1013 y_current->y_array = NULL;
1014 }
1015 return (void *)reg;
1016}
1017
1018/*
Bram Moolenaar0a307462007-12-01 20:13:05 +00001019 * Put "reg" into register "name". Free any previous contents and "reg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 */
1021 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001022put_register(int name, void *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023{
1024 get_yank_register(name, 0);
1025 free_yank_all();
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001026 *y_current = *(yankreg_T *)reg;
Bram Moolenaar0a307462007-12-01 20:13:05 +00001027 vim_free(reg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001029#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 /* Send text written to clipboard register to the clipboard. */
1031 may_set_selection();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001032#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001034
1035 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001036free_register(void *reg)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001037{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001038 yankreg_T tmp;
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001039
1040 tmp = *y_current;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001041 *y_current = *(yankreg_T *)reg;
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001042 free_yank_all();
1043 vim_free(reg);
1044 *y_current = tmp;
1045}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046
1047#if defined(FEAT_MOUSE) || defined(PROTO)
1048/*
1049 * return TRUE if the current yank register has type MLINE
1050 */
1051 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001052yank_register_mline(int regname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053{
1054 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1055 return FALSE;
1056 if (regname == '_') /* black hole is always empty */
1057 return FALSE;
1058 get_yank_register(regname, FALSE);
1059 return (y_current->y_type == MLINE);
1060}
1061#endif
1062
1063/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001064 * Start or stop recording into a yank register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 *
Bram Moolenaard55de222007-05-06 13:38:48 +00001066 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 */
1068 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001069do_record(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070{
Bram Moolenaard55de222007-05-06 13:38:48 +00001071 char_u *p;
1072 static int regname;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001073 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaard55de222007-05-06 13:38:48 +00001074 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075
1076 if (Recording == FALSE) /* start recording */
1077 {
1078 /* registers 0-9, a-z and " are allowed */
1079 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1080 retval = FAIL;
1081 else
1082 {
Bram Moolenaara0ed84a2015-11-19 17:56:13 +01001083 Recording = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 showmode();
1085 regname = c;
1086 retval = OK;
1087 }
1088 }
1089 else /* stop recording */
1090 {
1091 /*
Bram Moolenaard55de222007-05-06 13:38:48 +00001092 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1093 * needs to be removed again to put it in a register. exec_reg then
1094 * adds the escaping back later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095 */
1096 Recording = FALSE;
1097 MSG("");
1098 p = get_recorded();
1099 if (p == NULL)
1100 retval = FAIL;
1101 else
1102 {
Bram Moolenaar81b85872007-03-04 20:22:01 +00001103 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1104 vim_unescape_csi(p);
1105
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 /*
1107 * We don't want to change the default register here, so save and
1108 * restore the current register name.
1109 */
1110 old_y_previous = y_previous;
1111 old_y_current = y_current;
1112
1113 retval = stuff_yank(regname, p);
1114
1115 y_previous = old_y_previous;
1116 y_current = old_y_current;
1117 }
1118 }
1119 return retval;
1120}
1121
1122/*
1123 * Stuff string "p" into yank register "regname" as a single line (append if
1124 * uppercase). "p" must have been alloced.
1125 *
1126 * return FAIL for failure, OK otherwise
1127 */
1128 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001129stuff_yank(int regname, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130{
1131 char_u *lp;
1132 char_u **pp;
1133
1134 /* check for read-only register */
1135 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1136 {
1137 vim_free(p);
1138 return FAIL;
1139 }
1140 if (regname == '_') /* black hole: don't do anything */
1141 {
1142 vim_free(p);
1143 return OK;
1144 }
1145 get_yank_register(regname, TRUE);
1146 if (y_append && y_current->y_array != NULL)
1147 {
1148 pp = &(y_current->y_array[y_current->y_size - 1]);
1149 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1150 if (lp == NULL)
1151 {
1152 vim_free(p);
1153 return FAIL;
1154 }
1155 STRCPY(lp, *pp);
1156 STRCAT(lp, p);
1157 vim_free(p);
1158 vim_free(*pp);
1159 *pp = lp;
1160 }
1161 else
1162 {
1163 free_yank_all();
1164 if ((y_current->y_array =
1165 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1166 {
1167 vim_free(p);
1168 return FAIL;
1169 }
1170 y_current->y_array[0] = p;
1171 y_current->y_size = 1;
1172 y_current->y_type = MCHAR; /* used to be MLINE, why? */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001173#ifdef FEAT_VIMINFO
1174 y_current->y_time_set = vim_time();
1175#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 }
1177 return OK;
1178}
1179
Bram Moolenaar42b94362009-05-26 16:12:37 +00001180static int execreg_lastc = NUL;
1181
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182/*
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001183 * Execute a yank register: copy it into the stuff buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 *
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001185 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 */
1187 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001188do_execreg(
1189 int regname,
1190 int colon, /* insert ':' before each line */
1191 int addcr, /* always add '\n' to end of line */
1192 int silent) /* set "silent" flag in typeahead buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 long i;
1195 char_u *p;
1196 int retval = OK;
1197 int remap;
1198
1199 if (regname == '@') /* repeat previous one */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001200 {
Bram Moolenaar42b94362009-05-26 16:12:37 +00001201 if (execreg_lastc == NUL)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001202 {
1203 EMSG(_("E748: No previously used register"));
1204 return FAIL;
1205 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001206 regname = execreg_lastc;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001207 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 /* check for valid regname */
1209 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001210 {
1211 emsg_invreg(regname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 return FAIL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001213 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001214 execreg_lastc = regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215
1216#ifdef FEAT_CLIPBOARD
1217 regname = may_get_selection(regname);
1218#endif
1219
1220 if (regname == '_') /* black hole: don't stuff anything */
1221 return OK;
1222
1223#ifdef FEAT_CMDHIST
1224 if (regname == ':') /* use last command line */
1225 {
1226 if (last_cmdline == NULL)
1227 {
1228 EMSG(_(e_nolastcmd));
1229 return FAIL;
1230 }
1231 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
1232 new_last_cmdline = NULL;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001233 /* Escape all control characters with a CTRL-V */
1234 p = vim_strsave_escaped_ext(last_cmdline,
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001235 (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 +00001236 if (p != NULL)
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001237 {
1238 /* When in Visual mode "'<,'>" will be prepended to the command.
1239 * Remove it when it's already there. */
1240 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001241 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001242 else
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001243 retval = put_in_typebuf(p, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001244 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001245 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246 }
1247#endif
1248#ifdef FEAT_EVAL
1249 else if (regname == '=')
1250 {
1251 p = get_expr_line();
1252 if (p == NULL)
1253 return FAIL;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001254 retval = put_in_typebuf(p, TRUE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 vim_free(p);
1256 }
1257#endif
1258 else if (regname == '.') /* use last inserted text */
1259 {
1260 p = get_last_insert_save();
1261 if (p == NULL)
1262 {
1263 EMSG(_(e_noinstext));
1264 return FAIL;
1265 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001266 retval = put_in_typebuf(p, FALSE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 vim_free(p);
1268 }
1269 else
1270 {
1271 get_yank_register(regname, FALSE);
1272 if (y_current->y_array == NULL)
1273 return FAIL;
1274
1275 /* Disallow remaping for ":@r". */
1276 remap = colon ? REMAP_NONE : REMAP_YES;
1277
1278 /*
1279 * Insert lines into typeahead buffer, from last one to first one.
1280 */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001281 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 for (i = y_current->y_size; --i >= 0; )
1283 {
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001284 char_u *escaped;
1285
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 /* insert NL between lines and after last line if type is MLINE */
1287 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1288 || addcr)
1289 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001290 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 return FAIL;
1292 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001293 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1294 if (escaped == NULL)
1295 return FAIL;
1296 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1297 vim_free(escaped);
1298 if (retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 return FAIL;
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001300 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 == FAIL)
1302 return FAIL;
1303 }
1304 Exec_reg = TRUE; /* disable the 'q' command */
1305 }
1306 return retval;
1307}
1308
1309/*
1310 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1311 * used only after other typeahead has been processed.
1312 */
1313 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001314put_reedit_in_typebuf(int silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315{
1316 char_u buf[3];
1317
1318 if (restart_edit != NUL)
1319 {
1320 if (restart_edit == 'V')
1321 {
1322 buf[0] = 'g';
1323 buf[1] = 'R';
1324 buf[2] = NUL;
1325 }
1326 else
1327 {
1328 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1329 buf[1] = NUL;
1330 }
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001331 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 restart_edit = NUL;
1333 }
1334}
1335
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001336/*
1337 * Insert register contents "s" into the typeahead buffer, so that it will be
1338 * executed again.
1339 * When "esc" is TRUE it is to be taken literally: Escape CSI characters and
1340 * no remapping.
1341 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001343put_in_typebuf(
1344 char_u *s,
1345 int esc,
1346 int colon, /* add ':' before the line */
1347 int silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348{
1349 int retval = OK;
1350
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001351 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 if (colon)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001353 retval = ins_typebuf((char_u *)"\n", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 if (retval == OK)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001355 {
1356 char_u *p;
1357
1358 if (esc)
1359 p = vim_strsave_escape_csi(s);
1360 else
1361 p = s;
1362 if (p == NULL)
1363 retval = FAIL;
1364 else
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001365 retval = ins_typebuf(p, esc ? REMAP_NONE : REMAP_YES,
1366 0, TRUE, silent);
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001367 if (esc)
1368 vim_free(p);
1369 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 if (colon && retval == OK)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001371 retval = ins_typebuf((char_u *)":", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 return retval;
1373}
1374
1375/*
1376 * Insert a yank register: copy it into the Read buffer.
1377 * Used by CTRL-R command and middle mouse button in insert mode.
1378 *
1379 * return FAIL for failure, OK otherwise
1380 */
1381 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001382insert_reg(
1383 int regname,
1384 int literally) /* insert literally, not as if typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385{
1386 long i;
1387 int retval = OK;
1388 char_u *arg;
1389 int allocated;
1390
1391 /*
1392 * It is possible to get into an endless loop by having CTRL-R a in
1393 * register a and then, in insert mode, doing CTRL-R a.
1394 * If you hit CTRL-C, the loop will be broken here.
1395 */
1396 ui_breakcheck();
1397 if (got_int)
1398 return FAIL;
1399
1400 /* check for valid regname */
1401 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1402 return FAIL;
1403
1404#ifdef FEAT_CLIPBOARD
1405 regname = may_get_selection(regname);
1406#endif
1407
1408 if (regname == '.') /* insert last inserted text */
1409 retval = stuff_inserted(NUL, 1L, TRUE);
1410 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1411 {
1412 if (arg == NULL)
1413 return FAIL;
1414 stuffescaped(arg, literally);
1415 if (allocated)
1416 vim_free(arg);
1417 }
1418 else /* name or number register */
1419 {
1420 get_yank_register(regname, FALSE);
1421 if (y_current->y_array == NULL)
1422 retval = FAIL;
1423 else
1424 {
1425 for (i = 0; i < y_current->y_size; ++i)
1426 {
1427 stuffescaped(y_current->y_array[i], literally);
1428 /*
1429 * Insert a newline between lines and after last line if
1430 * y_type is MLINE.
1431 */
1432 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1433 stuffcharReadbuff('\n');
1434 }
1435 }
1436 }
1437
1438 return retval;
1439}
1440
1441/*
1442 * Stuff a string into the typeahead buffer, such that edit() will insert it
1443 * literally ("literally" TRUE) or interpret is as typed characters.
1444 */
1445 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001446stuffescaped(char_u *arg, int literally)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447{
1448 int c;
1449 char_u *start;
1450
1451 while (*arg != NUL)
1452 {
1453 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1454 * stuff K_SPECIAL to get the effect of a special key when "literally"
1455 * is TRUE. */
1456 start = arg;
1457 while ((*arg >= ' '
1458#ifndef EBCDIC
1459 && *arg < DEL /* EBCDIC: chars above space are normal */
1460#endif
1461 )
1462 || (*arg == K_SPECIAL && !literally))
1463 ++arg;
1464 if (arg > start)
1465 stuffReadbuffLen(start, (long)(arg - start));
1466
1467 /* stuff a single special character */
1468 if (*arg != NUL)
1469 {
1470#ifdef FEAT_MBYTE
1471 if (has_mbyte)
Bram Moolenaar3b1c4852010-07-31 17:59:29 +02001472 c = mb_cptr2char_adv(&arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 else
1474#endif
1475 c = *arg++;
1476 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1477 stuffcharReadbuff(Ctrl_V);
1478 stuffcharReadbuff(c);
1479 }
1480 }
1481}
1482
1483/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001484 * If "regname" is a special register, return TRUE and store a pointer to its
1485 * value in "argp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 */
Bram Moolenaar8299df92004-07-10 09:47:34 +00001487 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001488get_spec_reg(
1489 int regname,
1490 char_u **argp,
1491 int *allocated, /* return: TRUE when value was allocated */
1492 int errmsg) /* give error message when failing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493{
1494 int cnt;
1495
1496 *argp = NULL;
1497 *allocated = FALSE;
1498 switch (regname)
1499 {
1500 case '%': /* file name */
1501 if (errmsg)
1502 check_fname(); /* will give emsg if not set */
1503 *argp = curbuf->b_fname;
1504 return TRUE;
1505
1506 case '#': /* alternate file name */
1507 *argp = getaltfname(errmsg); /* may give emsg if not set */
1508 return TRUE;
1509
1510#ifdef FEAT_EVAL
1511 case '=': /* result of expression */
1512 *argp = get_expr_line();
1513 *allocated = TRUE;
1514 return TRUE;
1515#endif
1516
1517 case ':': /* last command line */
1518 if (last_cmdline == NULL && errmsg)
1519 EMSG(_(e_nolastcmd));
1520 *argp = last_cmdline;
1521 return TRUE;
1522
1523 case '/': /* last search-pattern */
1524 if (last_search_pat() == NULL && errmsg)
1525 EMSG(_(e_noprevre));
1526 *argp = last_search_pat();
1527 return TRUE;
1528
1529 case '.': /* last inserted text */
1530 *argp = get_last_insert_save();
1531 *allocated = TRUE;
1532 if (*argp == NULL && errmsg)
1533 EMSG(_(e_noinstext));
1534 return TRUE;
1535
1536#ifdef FEAT_SEARCHPATH
1537 case Ctrl_F: /* Filename under cursor */
1538 case Ctrl_P: /* Path under cursor, expand via "path" */
1539 if (!errmsg)
1540 return FALSE;
1541 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001542 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 *allocated = TRUE;
1544 return TRUE;
1545#endif
1546
1547 case Ctrl_W: /* word under cursor */
1548 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1549 if (!errmsg)
1550 return FALSE;
1551 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1552 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1553 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1554 *allocated = TRUE;
1555 return TRUE;
1556
1557 case '_': /* black hole: always empty */
1558 *argp = (char_u *)"";
1559 return TRUE;
1560 }
1561
1562 return FALSE;
1563}
1564
1565/*
Bram Moolenaar8299df92004-07-10 09:47:34 +00001566 * Paste a yank register into the command line.
1567 * Only for non-special registers.
1568 * Used by CTRL-R command in command-line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 * insert_reg() can't be used here, because special characters from the
1570 * register contents will be interpreted as commands.
1571 *
1572 * return FAIL for failure, OK otherwise
1573 */
1574 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001575cmdline_paste_reg(
1576 int regname,
1577 int literally, /* Insert text literally instead of "as typed" */
1578 int remcr) /* don't add CR characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579{
1580 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581
1582 get_yank_register(regname, FALSE);
1583 if (y_current->y_array == NULL)
1584 return FAIL;
1585
1586 for (i = 0; i < y_current->y_size; ++i)
1587 {
1588 cmdline_paste_str(y_current->y_array[i], literally);
1589
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001590 /* Insert ^M between lines and after last line if type is MLINE.
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01001591 * Don't do this when "remcr" is TRUE. */
1592 if ((y_current->y_type == MLINE || i < y_current->y_size - 1) && !remcr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 cmdline_paste_str((char_u *)"\r", literally);
1594
1595 /* Check for CTRL-C, in case someone tries to paste a few thousand
1596 * lines and gets bored. */
1597 ui_breakcheck();
1598 if (got_int)
1599 return FAIL;
1600 }
1601 return OK;
1602}
1603
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604#if defined(FEAT_CLIPBOARD) || defined(PROTO)
1605/*
1606 * Adjust the register name pointed to with "rp" for the clipboard being
1607 * used always and the clipboard being available.
1608 */
1609 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001610adjust_clip_reg(int *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611{
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001612 /* If no reg. specified, and "unnamed" or "unnamedplus" is in 'clipboard',
1613 * use '*' or '+' reg, respectively. "unnamedplus" prevails. */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001614 if (*rp == 0 && (clip_unnamed != 0 || clip_unnamed_saved != 0))
1615 {
1616 if (clip_unnamed != 0)
1617 *rp = ((clip_unnamed & CLIP_UNNAMED_PLUS) && clip_plus.available)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001618 ? '+' : '*';
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001619 else
1620 *rp = ((clip_unnamed_saved & CLIP_UNNAMED_PLUS) && clip_plus.available)
1621 ? '+' : '*';
1622 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623 if (!clip_star.available && *rp == '*')
1624 *rp = 0;
1625 if (!clip_plus.available && *rp == '+')
1626 *rp = 0;
1627}
1628#endif
1629
1630/*
Bram Moolenaara1891842017-02-04 21:34:31 +01001631 * Shift the delete registers: "9 is cleared, "8 becomes "9, etc.
1632 */
1633 void
1634shift_delete_registers()
1635{
1636 int n;
1637
1638 y_current = &y_regs[9];
1639 free_yank_all(); /* free register nine */
1640 for (n = 9; n > 1; --n)
1641 y_regs[n] = y_regs[n - 1];
1642 y_previous = y_current = &y_regs[1];
1643 y_regs[1].y_array = NULL; /* set register one to empty */
1644}
1645
1646/*
Bram Moolenaard04b7502010-07-08 22:27:55 +02001647 * Handle a delete operation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 *
Bram Moolenaard04b7502010-07-08 22:27:55 +02001649 * Return FAIL if undo failed, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 */
1651 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001652op_delete(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653{
1654 int n;
1655 linenr_T lnum;
1656 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 char_u *newp, *oldp;
1658 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1660 int did_yank = FALSE;
Bram Moolenaar7c821302012-09-05 14:18:45 +02001661 int orig_regname = oap->regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662
1663 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1664 return OK;
1665
1666 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1667 if (oap->empty)
1668 return u_save_cursor();
1669
1670 if (!curbuf->b_p_ma)
1671 {
1672 EMSG(_(e_modifiable));
1673 return FAIL;
1674 }
1675
1676#ifdef FEAT_CLIPBOARD
1677 adjust_clip_reg(&oap->regname);
1678#endif
1679
1680#ifdef FEAT_MBYTE
1681 if (has_mbyte)
1682 mb_adjust_opend(oap);
1683#endif
1684
Bram Moolenaard04b7502010-07-08 22:27:55 +02001685 /*
1686 * Imitate the strange Vi behaviour: If the delete spans more than one
1687 * line and motion_type == MCHAR and the result is a blank line, make the
1688 * delete linewise. Don't do this for the change command or Visual mode.
1689 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 if ( oap->motion_type == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001692 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 && oap->line_count > 1
Bram Moolenaar64a72302012-01-10 13:46:22 +01001694 && oap->motion_force == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 && oap->op_type == OP_DELETE)
1696 {
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001697 ptr = ml_get(oap->end.lnum) + oap->end.col;
1698 if (*ptr != NUL)
1699 ptr += oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 ptr = skipwhite(ptr);
1701 if (*ptr == NUL && inindent(0))
1702 oap->motion_type = MLINE;
1703 }
1704
Bram Moolenaard04b7502010-07-08 22:27:55 +02001705 /*
1706 * Check for trying to delete (e.g. "D") in an empty line.
1707 * Note: For the change operator it is ok.
1708 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 if ( oap->motion_type == MCHAR
1710 && oap->line_count == 1
1711 && oap->op_type == OP_DELETE
1712 && *ml_get(oap->start.lnum) == NUL)
1713 {
1714 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001715 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 * 'cpoptions' (Vi compatible).
1717 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001718#ifdef FEAT_VIRTUALEDIT
1719 if (virtual_op)
1720 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1721 * marks as if it happened. */
1722 goto setmarks;
1723#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1725 beep_flush();
1726 return OK;
1727 }
1728
Bram Moolenaard04b7502010-07-08 22:27:55 +02001729 /*
1730 * Do a yank of whatever we're about to delete.
1731 * If a yank register was specified, put the deleted text into that
1732 * register. For the black hole register '_' don't yank anything.
1733 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 if (oap->regname != '_')
1735 {
1736 if (oap->regname != 0)
1737 {
1738 /* check for read-only register */
1739 if (!valid_yank_reg(oap->regname, TRUE))
1740 {
1741 beep_flush();
1742 return OK;
1743 }
1744 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1745 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1746 did_yank = TRUE;
1747 }
1748
1749 /*
1750 * Put deleted text into register 1 and shift number registers if the
1751 * delete contains a line break, or when a regname has been specified.
Bram Moolenaar7c821302012-09-05 14:18:45 +02001752 * Use the register name from before adjust_clip_reg() may have
1753 * changed it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 */
Bram Moolenaar7c821302012-09-05 14:18:45 +02001755 if (orig_regname != 0 || oap->motion_type == MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 || oap->line_count > 1 || oap->use_reg_one)
1757 {
Bram Moolenaara1891842017-02-04 21:34:31 +01001758 shift_delete_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 if (op_yank(oap, TRUE, FALSE) == OK)
1760 did_yank = TRUE;
1761 }
1762
Bram Moolenaar84298db2012-04-20 13:46:08 +02001763 /* Yank into small delete register when no named register specified
1764 * and the delete is within one line. */
1765 if ((
1766#ifdef FEAT_CLIPBOARD
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001767 ((clip_unnamed & CLIP_UNNAMED) && oap->regname == '*') ||
1768 ((clip_unnamed & CLIP_UNNAMED_PLUS) && oap->regname == '+') ||
Bram Moolenaar84298db2012-04-20 13:46:08 +02001769#endif
1770 oap->regname == 0) && oap->motion_type != MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 && oap->line_count == 1)
1772 {
1773 oap->regname = '-';
1774 get_yank_register(oap->regname, TRUE);
1775 if (op_yank(oap, TRUE, FALSE) == OK)
1776 did_yank = TRUE;
1777 oap->regname = 0;
1778 }
1779
1780 /*
1781 * If there's too much stuff to fit in the yank register, then get a
1782 * confirmation before doing the delete. This is crude, but simple.
1783 * And it avoids doing a delete of something we can't put back if we
1784 * want.
1785 */
1786 if (!did_yank)
1787 {
1788 int msg_silent_save = msg_silent;
1789
1790 msg_silent = 0; /* must display the prompt */
1791 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1792 msg_silent = msg_silent_save;
1793 if (n != 'y')
1794 {
1795 EMSG(_(e_abort));
1796 return FAIL;
1797 }
1798 }
1799 }
1800
Bram Moolenaard04b7502010-07-08 22:27:55 +02001801 /*
1802 * block mode delete
1803 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 if (oap->block_mode)
1805 {
1806 if (u_save((linenr_T)(oap->start.lnum - 1),
1807 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1808 return FAIL;
1809
1810 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1811 {
1812 block_prep(oap, &bd, lnum, TRUE);
1813 if (bd.textlen == 0) /* nothing to delete */
1814 continue;
1815
1816 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1817 if (lnum == curwin->w_cursor.lnum)
1818 {
1819 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1820# ifdef FEAT_VIRTUALEDIT
1821 curwin->w_cursor.coladd = 0;
1822# endif
1823 }
1824
1825 /* n == number of chars deleted
1826 * If we delete a TAB, it may be replaced by several characters.
1827 * Thus the number of characters may increase!
1828 */
1829 n = bd.textlen - bd.startspaces - bd.endspaces;
1830 oldp = ml_get(lnum);
1831 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1832 if (newp == NULL)
1833 continue;
1834 /* copy up to deleted part */
1835 mch_memmove(newp, oldp, (size_t)bd.textcol);
1836 /* insert spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02001837 vim_memset(newp + bd.textcol, ' ',
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 (size_t)(bd.startspaces + bd.endspaces));
1839 /* copy the part after the deleted part */
1840 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001841 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 /* replace the line */
1843 ml_replace(lnum, newp, FALSE);
1844 }
1845
1846 check_cursor_col();
1847 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1848 oap->end.lnum + 1, 0L);
1849 oap->line_count = 0; /* no lines deleted */
1850 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001851 else if (oap->motion_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 {
1853 if (oap->op_type == OP_CHANGE)
1854 {
1855 /* Delete the lines except the first one. Temporarily move the
1856 * cursor to the next line. Save the current line number, if the
1857 * last line is deleted it may be changed.
1858 */
1859 if (oap->line_count > 1)
1860 {
1861 lnum = curwin->w_cursor.lnum;
1862 ++curwin->w_cursor.lnum;
1863 del_lines((long)(oap->line_count - 1), TRUE);
1864 curwin->w_cursor.lnum = lnum;
1865 }
1866 if (u_save_cursor() == FAIL)
1867 return FAIL;
1868 if (curbuf->b_p_ai) /* don't delete indent */
1869 {
1870 beginline(BL_WHITE); /* cursor on first non-white */
1871 did_ai = TRUE; /* delete the indent when ESC hit */
1872 ai_col = curwin->w_cursor.col;
1873 }
1874 else
1875 beginline(0); /* cursor in column 0 */
1876 truncate_line(FALSE); /* delete the rest of the line */
1877 /* leave cursor past last char in line */
1878 if (oap->line_count > 1)
1879 u_clearline(); /* "U" command not possible after "2cc" */
1880 }
1881 else
1882 {
1883 del_lines(oap->line_count, TRUE);
1884 beginline(BL_WHITE | BL_FIX);
1885 u_clearline(); /* "U" command not possible after "dd" */
1886 }
1887 }
1888 else
1889 {
1890#ifdef FEAT_VIRTUALEDIT
1891 if (virtual_op)
1892 {
1893 int endcol = 0;
1894
1895 /* For virtualedit: break the tabs that are partly included. */
1896 if (gchar_pos(&oap->start) == '\t')
1897 {
1898 if (u_save_cursor() == FAIL) /* save first line for undo */
1899 return FAIL;
1900 if (oap->line_count == 1)
1901 endcol = getviscol2(oap->end.col, oap->end.coladd);
1902 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1903 oap->start = curwin->w_cursor;
1904 if (oap->line_count == 1)
1905 {
1906 coladvance(endcol);
1907 oap->end.col = curwin->w_cursor.col;
1908 oap->end.coladd = curwin->w_cursor.coladd;
1909 curwin->w_cursor = oap->start;
1910 }
1911 }
1912
1913 /* Break a tab only when it's included in the area. */
1914 if (gchar_pos(&oap->end) == '\t'
1915 && (int)oap->end.coladd < oap->inclusive)
1916 {
1917 /* save last line for undo */
1918 if (u_save((linenr_T)(oap->end.lnum - 1),
1919 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1920 return FAIL;
1921 curwin->w_cursor = oap->end;
1922 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1923 oap->end = curwin->w_cursor;
1924 curwin->w_cursor = oap->start;
1925 }
1926 }
1927#endif
1928
1929 if (oap->line_count == 1) /* delete characters within one line */
1930 {
1931 if (u_save_cursor() == FAIL) /* save line for undo */
1932 return FAIL;
1933
1934 /* if 'cpoptions' contains '$', display '$' at end of change */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001935 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 && oap->op_type == OP_CHANGE
1937 && oap->end.lnum == curwin->w_cursor.lnum
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001938 && !oap->is_VIsual)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 display_dollar(oap->end.col - !oap->inclusive);
1940
1941 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1942
1943#ifdef FEAT_VIRTUALEDIT
1944 if (virtual_op)
1945 {
1946 /* fix up things for virtualedit-delete:
1947 * break the tabs which are going to get in our way
1948 */
1949 char_u *curline = ml_get_curline();
1950 int len = (int)STRLEN(curline);
1951
1952 if (oap->end.coladd != 0
1953 && (int)oap->end.col >= len - 1
1954 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1955 n++;
1956 /* Delete at least one char (e.g, when on a control char). */
1957 if (n == 0 && oap->start.coladd != oap->end.coladd)
1958 n = 1;
1959
1960 /* When deleted a char in the line, reset coladd. */
1961 if (gchar_cursor() != NUL)
1962 curwin->w_cursor.coladd = 0;
1963 }
1964#endif
Bram Moolenaard009e862015-06-09 20:20:03 +02001965 (void)del_bytes((long)n, !virtual_op,
1966 oap->op_type == OP_DELETE && !oap->is_VIsual);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 }
1968 else /* delete characters between lines */
1969 {
1970 pos_T curpos;
1971
1972 /* save deleted and changed lines for undo */
1973 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1974 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1975 return FAIL;
1976
1977 truncate_line(TRUE); /* delete from cursor to end of line */
1978
1979 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1980 ++curwin->w_cursor.lnum;
1981 del_lines((long)(oap->line_count - 2), FALSE);
1982
Bram Moolenaard009e862015-06-09 20:20:03 +02001983 /* delete from start of line until op_end */
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001984 n = (oap->end.col + 1 - !oap->inclusive);
Bram Moolenaard009e862015-06-09 20:20:03 +02001985 curwin->w_cursor.col = 0;
1986 (void)del_bytes((long)n, !virtual_op,
1987 oap->op_type == OP_DELETE && !oap->is_VIsual);
1988 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
1989 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 }
1991 }
1992
1993 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
1994
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001995#ifdef FEAT_VIRTUALEDIT
1996setmarks:
1997#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 if (oap->block_mode)
1999 {
2000 curbuf->b_op_end.lnum = oap->end.lnum;
2001 curbuf->b_op_end.col = oap->start.col;
2002 }
2003 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 curbuf->b_op_end = oap->start;
2005 curbuf->b_op_start = oap->start;
2006
2007 return OK;
2008}
2009
2010#ifdef FEAT_MBYTE
2011/*
2012 * Adjust end of operating area for ending on a multi-byte character.
2013 * Used for deletion.
2014 */
2015 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002016mb_adjust_opend(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017{
2018 char_u *p;
2019
2020 if (oap->inclusive)
2021 {
2022 p = ml_get(oap->end.lnum);
2023 oap->end.col += mb_tail_off(p, p + oap->end.col);
2024 }
2025}
2026#endif
2027
2028#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2029/*
2030 * Replace a whole area with one character.
2031 */
2032 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002033op_replace(oparg_T *oap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034{
2035 int n, numc;
2036#ifdef FEAT_MBYTE
2037 int num_chars;
2038#endif
2039 char_u *newp, *oldp;
2040 size_t oldlen;
2041 struct block_def bd;
Bram Moolenaard9820532013-11-04 01:41:17 +01002042 char_u *after_p = NULL;
2043 int had_ctrl_v_cr = (c == -1 || c == -2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044
2045 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2046 return OK; /* nothing to do */
2047
Bram Moolenaard9820532013-11-04 01:41:17 +01002048 if (had_ctrl_v_cr)
2049 c = (c == -1 ? '\r' : '\n');
2050
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051#ifdef FEAT_MBYTE
2052 if (has_mbyte)
2053 mb_adjust_opend(oap);
2054#endif
2055
2056 if (u_save((linenr_T)(oap->start.lnum - 1),
2057 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2058 return FAIL;
2059
2060 /*
2061 * block mode replace
2062 */
2063 if (oap->block_mode)
2064 {
2065 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2066 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2067 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002068 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2070 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2071 continue; /* nothing to replace */
2072
2073 /* n == number of extra chars required
2074 * If we split a TAB, it may be replaced by several characters.
2075 * Thus the number of characters may increase!
2076 */
2077#ifdef FEAT_VIRTUALEDIT
2078 /* If the range starts in virtual space, count the initial
2079 * coladd offset as part of "startspaces" */
2080 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2081 {
2082 pos_T vpos;
2083
Bram Moolenaara1381de2009-11-03 15:44:21 +00002084 vpos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 getvpos(&vpos, oap->start_vcol);
2086 bd.startspaces += vpos.coladd;
2087 n = bd.startspaces;
2088 }
2089 else
2090#endif
2091 /* allow for pre spaces */
2092 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2093
2094 /* allow for post spp */
2095 n += (bd.endspaces
2096#ifdef FEAT_VIRTUALEDIT
2097 && !bd.is_oneChar
2098#endif
2099 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2100 /* Figure out how many characters to replace. */
2101 numc = oap->end_vcol - oap->start_vcol + 1;
2102 if (bd.is_short && (!virtual_op || bd.is_MAX))
2103 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2104
2105#ifdef FEAT_MBYTE
2106 /* A double-wide character can be replaced only up to half the
2107 * times. */
2108 if ((*mb_char2cells)(c) > 1)
2109 {
2110 if ((numc & 1) && !bd.is_short)
2111 {
2112 ++bd.endspaces;
2113 ++n;
2114 }
2115 numc = numc / 2;
2116 }
2117
2118 /* Compute bytes needed, move character count to num_chars. */
2119 num_chars = numc;
2120 numc *= (*mb_char2len)(c);
2121#endif
2122 /* oldlen includes textlen, so don't double count */
2123 n += numc - bd.textlen;
2124
2125 oldp = ml_get_curline();
2126 oldlen = STRLEN(oldp);
2127 newp = alloc_check((unsigned)oldlen + 1 + n);
2128 if (newp == NULL)
2129 continue;
2130 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2131 /* copy up to deleted part */
2132 mch_memmove(newp, oldp, (size_t)bd.textcol);
2133 oldp += bd.textcol + bd.textlen;
2134 /* insert pre-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002135 vim_memset(newp + bd.textcol, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
Bram Moolenaard9820532013-11-04 01:41:17 +01002137 /* -1/-2 is used for entering CR literally. */
2138 if (had_ctrl_v_cr || (c != '\r' && c != '\n'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002140#ifdef FEAT_MBYTE
2141 if (has_mbyte)
2142 {
2143 n = (int)STRLEN(newp);
2144 while (--num_chars >= 0)
2145 n += (*mb_char2bytes)(c, newp + n);
2146 }
2147 else
2148#endif
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002149 vim_memset(newp + STRLEN(newp), c, (size_t)numc);
Bram Moolenaard9820532013-11-04 01:41:17 +01002150 if (!bd.is_short)
2151 {
2152 /* insert post-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002153 vim_memset(newp + STRLEN(newp), ' ', (size_t)bd.endspaces);
Bram Moolenaard9820532013-11-04 01:41:17 +01002154 /* copy the part after the changed part */
2155 STRMOVE(newp + STRLEN(newp), oldp);
2156 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157 }
2158 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002160 /* Replacing with \r or \n means splitting the line. */
Bram Moolenaarefe06f42013-11-11 23:17:39 +01002161 after_p = alloc_check(
2162 (unsigned)(oldlen + 1 + n - STRLEN(newp)));
Bram Moolenaard9820532013-11-04 01:41:17 +01002163 if (after_p != NULL)
2164 STRMOVE(after_p, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 }
2166 /* replace the line */
2167 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
Bram Moolenaard9820532013-11-04 01:41:17 +01002168 if (after_p != NULL)
2169 {
2170 ml_append(curwin->w_cursor.lnum++, after_p, 0, FALSE);
2171 appended_lines_mark(curwin->w_cursor.lnum, 1L);
2172 oap->end.lnum++;
2173 vim_free(after_p);
2174 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 }
2176 }
2177 else
2178 {
2179 /*
2180 * MCHAR and MLINE motion replace.
2181 */
2182 if (oap->motion_type == MLINE)
2183 {
2184 oap->start.col = 0;
2185 curwin->w_cursor.col = 0;
2186 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2187 if (oap->end.col)
2188 --oap->end.col;
2189 }
2190 else if (!oap->inclusive)
2191 dec(&(oap->end));
2192
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002193 while (LTOREQ_POS(curwin->w_cursor, oap->end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 {
2195 n = gchar_cursor();
2196 if (n != NUL)
2197 {
2198#ifdef FEAT_MBYTE
2199 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2200 {
2201 /* This is slow, but it handles replacing a single-byte
2202 * with a multi-byte and the other way around. */
Bram Moolenaardb813952013-03-07 18:50:57 +01002203 if (curwin->w_cursor.lnum == oap->end.lnum)
2204 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 n = State;
2206 State = REPLACE;
2207 ins_char(c);
2208 State = n;
2209 /* Backup to the replaced character. */
2210 dec_cursor();
2211 }
2212 else
2213#endif
2214 {
2215#ifdef FEAT_VIRTUALEDIT
2216 if (n == TAB)
2217 {
2218 int end_vcol = 0;
2219
2220 if (curwin->w_cursor.lnum == oap->end.lnum)
2221 {
2222 /* oap->end has to be recalculated when
2223 * the tab breaks */
2224 end_vcol = getviscol2(oap->end.col,
2225 oap->end.coladd);
2226 }
2227 coladvance_force(getviscol());
2228 if (curwin->w_cursor.lnum == oap->end.lnum)
2229 getvpos(&oap->end, end_vcol);
2230 }
2231#endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002232 PCHAR(curwin->w_cursor, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 }
2234 }
2235#ifdef FEAT_VIRTUALEDIT
2236 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2237 {
2238 int virtcols = oap->end.coladd;
2239
2240 if (curwin->w_cursor.lnum == oap->start.lnum
2241 && oap->start.col == oap->end.col && oap->start.coladd)
2242 virtcols -= oap->start.coladd;
2243
2244 /* oap->end has been trimmed so it's effectively inclusive;
2245 * as a result an extra +1 must be counted so we don't
2246 * trample the NUL byte. */
2247 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2248 curwin->w_cursor.col -= (virtcols + 1);
2249 for (; virtcols >= 0; virtcols--)
2250 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002251 PCHAR(curwin->w_cursor, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 if (inc(&curwin->w_cursor) == -1)
2253 break;
2254 }
2255 }
2256#endif
2257
2258 /* Advance to next character, stop at the end of the file. */
2259 if (inc_cursor() == -1)
2260 break;
2261 }
2262 }
2263
2264 curwin->w_cursor = oap->start;
2265 check_cursor();
2266 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2267
2268 /* Set "'[" and "']" marks. */
2269 curbuf->b_op_start = oap->start;
2270 curbuf->b_op_end = oap->end;
2271
2272 return OK;
2273}
2274#endif
2275
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002276static int swapchars(int op_type, pos_T *pos, int length);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002277
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278/*
2279 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2280 */
2281 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002282op_tilde(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283{
2284 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 struct block_def bd;
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002286 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287
2288 if (u_save((linenr_T)(oap->start.lnum - 1),
2289 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2290 return;
2291
2292 pos = oap->start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 if (oap->block_mode) /* Visual block mode */
2294 {
2295 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2296 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002297 int one_change;
2298
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 block_prep(oap, &bd, pos.lnum, FALSE);
2300 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002301 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2302 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002303
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002304#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002305 if (netbeans_active() && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 {
2307 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2308
Bram Moolenaar009b2592004-10-24 19:18:58 +00002309 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2310 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002312 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002314#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 }
2316 if (did_change)
2317 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2318 }
2319 else /* not block mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 {
2321 if (oap->motion_type == MLINE)
2322 {
2323 oap->start.col = 0;
2324 pos.col = 0;
2325 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2326 if (oap->end.col)
2327 --oap->end.col;
2328 }
2329 else if (!oap->inclusive)
2330 dec(&(oap->end));
2331
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002332 if (pos.lnum == oap->end.lnum)
2333 did_change = swapchars(oap->op_type, &pos,
2334 oap->end.col - pos.col + 1);
2335 else
2336 for (;;)
2337 {
2338 did_change |= swapchars(oap->op_type, &pos,
2339 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2340 (int)STRLEN(ml_get_pos(&pos)));
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002341 if (LTOREQ_POS(oap->end, pos) || inc(&pos) == -1)
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002342 break;
2343 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 if (did_change)
2345 {
2346 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2347 0L);
2348#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002349 if (netbeans_active() && did_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 {
2351 char_u *ptr;
2352 int count;
2353
2354 pos = oap->start;
2355 while (pos.lnum < oap->end.lnum)
2356 {
2357 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002358 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002359 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002361 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 pos.col = 0;
2363 pos.lnum++;
2364 }
2365 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2366 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002367 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002369 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 }
2371#endif
2372 }
2373 }
2374
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 if (!did_change && oap->is_VIsual)
2376 /* No change: need to remove the Visual selection */
2377 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378
2379 /*
2380 * Set '[ and '] marks.
2381 */
2382 curbuf->b_op_start = oap->start;
2383 curbuf->b_op_end = oap->end;
2384
2385 if (oap->line_count > p_report)
2386 {
2387 if (oap->line_count == 1)
2388 MSG(_("1 line changed"));
2389 else
2390 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2391 }
2392}
2393
2394/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002395 * Invoke swapchar() on "length" bytes at position "pos".
2396 * "pos" is advanced to just after the changed characters.
2397 * "length" is rounded up to include the whole last multi-byte character.
2398 * Also works correctly when the number of bytes changes.
2399 * Returns TRUE if some character was changed.
2400 */
2401 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002402swapchars(int op_type, pos_T *pos, int length)
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002403{
2404 int todo;
2405 int did_change = 0;
2406
2407 for (todo = length; todo > 0; --todo)
2408 {
2409# ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002410 if (has_mbyte)
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002411 {
2412 int len = (*mb_ptr2len)(ml_get_pos(pos));
2413
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002414 /* we're counting bytes, not characters */
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002415 if (len > 0)
2416 todo -= len - 1;
2417 }
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002418# endif
2419 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002420 if (inc(pos) == -1) /* at end of file */
2421 break;
2422 }
2423 return did_change;
2424}
2425
2426/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 * If op_type == OP_UPPER: make uppercase,
2428 * if op_type == OP_LOWER: make lowercase,
2429 * if op_type == OP_ROT13: do rot13 encoding,
2430 * else swap case of character at 'pos'
2431 * returns TRUE when something actually changed.
2432 */
2433 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002434swapchar(int op_type, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435{
2436 int c;
2437 int nc;
2438
2439 c = gchar_pos(pos);
2440
2441 /* Only do rot13 encoding for ASCII characters. */
2442 if (c >= 0x80 && op_type == OP_ROT13)
2443 return FALSE;
2444
2445#ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002446 if (op_type == OP_UPPER && c == 0xdf
2447 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002448 {
2449 pos_T sp = curwin->w_cursor;
2450
2451 /* Special handling of German sharp s: change to "SS". */
2452 curwin->w_cursor = *pos;
2453 del_char(FALSE);
2454 ins_char('S');
2455 ins_char('S');
2456 curwin->w_cursor = sp;
2457 inc(pos);
2458 }
2459
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2461 return FALSE;
2462#endif
2463 nc = c;
2464 if (MB_ISLOWER(c))
2465 {
2466 if (op_type == OP_ROT13)
2467 nc = ROT13(c, 'a');
2468 else if (op_type != OP_LOWER)
2469 nc = MB_TOUPPER(c);
2470 }
2471 else if (MB_ISUPPER(c))
2472 {
2473 if (op_type == OP_ROT13)
2474 nc = ROT13(c, 'A');
2475 else if (op_type != OP_UPPER)
2476 nc = MB_TOLOWER(c);
2477 }
2478 if (nc != c)
2479 {
2480#ifdef FEAT_MBYTE
2481 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2482 {
2483 pos_T sp = curwin->w_cursor;
2484
2485 curwin->w_cursor = *pos;
Bram Moolenaard1cb65e2010-08-01 14:22:48 +02002486 /* don't use del_char(), it also removes composing chars */
2487 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 ins_char(nc);
2489 curwin->w_cursor = sp;
2490 }
2491 else
2492#endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002493 PCHAR(*pos, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 return TRUE;
2495 }
2496 return FALSE;
2497}
2498
2499#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2500/*
2501 * op_insert - Insert and append operators for Visual mode.
2502 */
2503 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002504op_insert(oparg_T *oap, long count1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505{
2506 long ins_len, pre_textlen = 0;
2507 char_u *firstline, *ins_text;
2508 struct block_def bd;
2509 int i;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002510 pos_T t1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511
2512 /* edit() changes this - record it for OP_APPEND */
2513 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2514
2515 /* vis block is still marked. Get rid of it now. */
2516 curwin->w_cursor.lnum = oap->start.lnum;
2517 update_screen(INVERTED);
2518
2519 if (oap->block_mode)
2520 {
2521#ifdef FEAT_VIRTUALEDIT
2522 /* When 'virtualedit' is used, need to insert the extra spaces before
2523 * doing block_prep(). When only "block" is used, virtual edit is
2524 * already disabled, but still need it when calling
2525 * coladvance_force(). */
2526 if (curwin->w_cursor.coladd > 0)
2527 {
2528 int old_ve_flags = ve_flags;
2529
2530 ve_flags = VE_ALL;
2531 if (u_save_cursor() == FAIL)
2532 return;
2533 coladvance_force(oap->op_type == OP_APPEND
2534 ? oap->end_vcol + 1 : getviscol());
2535 if (oap->op_type == OP_APPEND)
2536 --curwin->w_cursor.col;
2537 ve_flags = old_ve_flags;
2538 }
2539#endif
2540 /* Get the info about the block before entering the text */
2541 block_prep(oap, &bd, oap->start.lnum, TRUE);
2542 firstline = ml_get(oap->start.lnum) + bd.textcol;
2543 if (oap->op_type == OP_APPEND)
2544 firstline += bd.textlen;
2545 pre_textlen = (long)STRLEN(firstline);
2546 }
2547
2548 if (oap->op_type == OP_APPEND)
2549 {
2550 if (oap->block_mode
2551#ifdef FEAT_VIRTUALEDIT
2552 && curwin->w_cursor.coladd == 0
2553#endif
2554 )
2555 {
2556 /* Move the cursor to the character right of the block. */
2557 curwin->w_set_curswant = TRUE;
2558 while (*ml_get_cursor() != NUL
2559 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2560 ++curwin->w_cursor.col;
2561 if (bd.is_short && !bd.is_MAX)
2562 {
2563 /* First line was too short, make it longer and adjust the
2564 * values in "bd". */
2565 if (u_save_cursor() == FAIL)
2566 return;
2567 for (i = 0; i < bd.endspaces; ++i)
2568 ins_char(' ');
2569 bd.textlen += bd.endspaces;
2570 }
2571 }
2572 else
2573 {
2574 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002575 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576
2577 /* Works just like an 'i'nsert on the next character. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002578 if (!LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 && oap->start_vcol != oap->end_vcol)
2580 inc_cursor();
2581 }
2582 }
2583
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002584 t1 = oap->start;
Bram Moolenaar23fa81d2017-02-01 21:50:21 +01002585 (void)edit(NUL, FALSE, (linenr_T)count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002587 /* When a tab was inserted, and the characters in front of the tab
2588 * have been converted to a tab as well, the column of the cursor
2589 * might have actually been reduced, so need to adjust here. */
2590 if (t1.lnum == curbuf->b_op_start_orig.lnum
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002591 && LT_POS(curbuf->b_op_start_orig, t1))
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002592 oap->start = curbuf->b_op_start_orig;
2593
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002594 /* If user has moved off this line, we don't know what to do, so do
2595 * nothing.
2596 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2597 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 return;
2599
2600 if (oap->block_mode)
2601 {
2602 struct block_def bd2;
2603
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002604 /* The user may have moved the cursor before inserting something, try
2605 * to adjust the block for that. */
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002606 if (oap->start.lnum == curbuf->b_op_start_orig.lnum && !bd.is_MAX)
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002607 {
2608 if (oap->op_type == OP_INSERT
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002609 && oap->start.col
2610#ifdef FEAT_VIRTUALEDIT
2611 + oap->start.coladd
2612#endif
2613 != curbuf->b_op_start_orig.col
2614#ifdef FEAT_VIRTUALEDIT
2615 + curbuf->b_op_start_orig.coladd
2616#endif
2617 )
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002618 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002619 int t = getviscol2(curbuf->b_op_start_orig.col,
2620 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002621 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002622 pre_textlen -= t - oap->start_vcol;
2623 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002624 }
2625 else if (oap->op_type == OP_APPEND
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002626 && oap->end.col
2627#ifdef FEAT_VIRTUALEDIT
2628 + oap->end.coladd
2629#endif
2630 >= curbuf->b_op_start_orig.col
2631#ifdef FEAT_VIRTUALEDIT
2632 + curbuf->b_op_start_orig.coladd
2633#endif
2634 )
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002635 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002636 int t = getviscol2(curbuf->b_op_start_orig.col,
2637 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002638 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002639 /* reset pre_textlen to the value of OP_INSERT */
2640 pre_textlen += bd.textlen;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002641 pre_textlen -= t - oap->start_vcol;
2642 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002643 oap->op_type = OP_INSERT;
2644 }
2645 }
2646
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 /*
2648 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002649 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650 * Don't do this when "$" used, end-of-line will have changed.
2651 */
2652 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2653 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2654 {
2655 if (oap->op_type == OP_APPEND)
2656 {
2657 pre_textlen += bd2.textlen - bd.textlen;
2658 if (bd2.endspaces)
2659 --bd2.textlen;
2660 }
2661 bd.textcol = bd2.textcol;
2662 bd.textlen = bd2.textlen;
2663 }
2664
2665 /*
2666 * Subsequent calls to ml_get() flush the firstline data - take a
2667 * copy of the required string.
2668 */
2669 firstline = ml_get(oap->start.lnum) + bd.textcol;
2670 if (oap->op_type == OP_APPEND)
2671 firstline += bd.textlen;
Bram Moolenaar5e4b9e92012-03-23 14:16:23 +01002672 if (pre_textlen >= 0
2673 && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 {
2675 ins_text = vim_strnsave(firstline, (int)ins_len);
2676 if (ins_text != NULL)
2677 {
2678 /* block handled here */
2679 if (u_save(oap->start.lnum,
2680 (linenr_T)(oap->end.lnum + 1)) == OK)
2681 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2682 &bd);
2683
2684 curwin->w_cursor.col = oap->start.col;
2685 check_cursor();
2686 vim_free(ins_text);
2687 }
2688 }
2689 }
2690}
2691#endif
2692
2693/*
2694 * op_change - handle a change operation
2695 *
2696 * return TRUE if edit() returns because of a CTRL-O command
2697 */
2698 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002699op_change(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700{
2701 colnr_T l;
2702 int retval;
2703#ifdef FEAT_VISUALEXTRA
2704 long offset;
2705 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002706 long ins_len;
2707 long pre_textlen = 0;
2708 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 char_u *firstline;
2710 char_u *ins_text, *newp, *oldp;
2711 struct block_def bd;
2712#endif
2713
2714 l = oap->start.col;
2715 if (oap->motion_type == MLINE)
2716 {
2717 l = 0;
2718#ifdef FEAT_SMARTINDENT
2719 if (!p_paste && curbuf->b_p_si
2720# ifdef FEAT_CINDENT
2721 && !curbuf->b_p_cin
2722# endif
2723 )
2724 can_si = TRUE; /* It's like opening a new line, do si */
2725#endif
2726 }
2727
2728 /* First delete the text in the region. In an empty buffer only need to
2729 * save for undo */
2730 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2731 {
2732 if (u_save_cursor() == FAIL)
2733 return FALSE;
2734 }
2735 else if (op_delete(oap) == FAIL)
2736 return FALSE;
2737
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002738 if ((l > curwin->w_cursor.col) && !LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 && !virtual_op)
2740 inc_cursor();
2741
2742#ifdef FEAT_VISUALEXTRA
2743 /* check for still on same line (<CR> in inserted text meaningless) */
2744 /* skip blank lines too */
2745 if (oap->block_mode)
2746 {
2747# ifdef FEAT_VIRTUALEDIT
2748 /* Add spaces before getting the current line length. */
2749 if (virtual_op && (curwin->w_cursor.coladd > 0
2750 || gchar_cursor() == NUL))
2751 coladvance_force(getviscol());
2752# endif
Bram Moolenaar53241da2007-09-13 20:41:32 +00002753 firstline = ml_get(oap->start.lnum);
2754 pre_textlen = (long)STRLEN(firstline);
2755 pre_indent = (long)(skipwhite(firstline) - firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 bd.textcol = curwin->w_cursor.col;
2757 }
2758#endif
2759
2760#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2761 if (oap->motion_type == MLINE)
2762 fix_indent();
2763#endif
2764
2765 retval = edit(NUL, FALSE, (linenr_T)1);
2766
2767#ifdef FEAT_VISUALEXTRA
2768 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002769 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002771 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002773 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002775 /* Auto-indenting may have changed the indent. If the cursor was past
2776 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002778 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002780 long new_indent = (long)(skipwhite(firstline) - firstline);
2781
2782 pre_textlen += new_indent - pre_indent;
2783 bd.textcol += new_indent - pre_indent;
2784 }
2785
2786 ins_len = (long)STRLEN(firstline) - pre_textlen;
2787 if (ins_len > 0)
2788 {
2789 /* Subsequent calls to ml_get() flush the firstline data - take a
2790 * copy of the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2792 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002793 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2795 linenr++)
2796 {
2797 block_prep(oap, &bd, linenr, TRUE);
2798 if (!bd.is_short || virtual_op)
2799 {
2800# ifdef FEAT_VIRTUALEDIT
2801 pos_T vpos;
2802
2803 /* If the block starts in virtual space, count the
2804 * initial coladd offset as part of "startspaces" */
2805 if (bd.is_short)
2806 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002807 vpos.lnum = linenr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 (void)getvpos(&vpos, oap->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 }
2810 else
2811 vpos.coladd = 0;
2812# endif
2813 oldp = ml_get(linenr);
2814 newp = alloc_check((unsigned)(STRLEN(oldp)
2815# ifdef FEAT_VIRTUALEDIT
2816 + vpos.coladd
2817# endif
2818 + ins_len + 1));
2819 if (newp == NULL)
2820 continue;
2821 /* copy up to block start */
2822 mch_memmove(newp, oldp, (size_t)bd.textcol);
2823 offset = bd.textcol;
2824# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002825 vim_memset(newp + offset, ' ', (size_t)vpos.coladd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 offset += vpos.coladd;
2827# endif
2828 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2829 offset += ins_len;
2830 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002831 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 ml_replace(linenr, newp, FALSE);
2833 }
2834 }
2835 check_cursor();
2836
2837 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2838 }
2839 vim_free(ins_text);
2840 }
2841 }
2842#endif
2843
2844 return retval;
2845}
2846
2847/*
2848 * set all the yank registers to empty (called from main())
2849 */
2850 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002851init_yank(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852{
2853 int i;
2854
2855 for (i = 0; i < NUM_REGISTERS; ++i)
2856 y_regs[i].y_array = NULL;
2857}
2858
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002859#if defined(EXITFREE) || defined(PROTO)
2860 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002861clear_registers(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002862{
2863 int i;
2864
2865 for (i = 0; i < NUM_REGISTERS; ++i)
2866 {
2867 y_current = &y_regs[i];
2868 if (y_current->y_array != NULL)
2869 free_yank_all();
2870 }
2871}
2872#endif
2873
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874/*
2875 * Free "n" lines from the current yank register.
2876 * Called for normal freeing and in case of error.
2877 */
2878 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002879free_yank(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880{
2881 if (y_current->y_array != NULL)
2882 {
2883 long i;
2884
2885 for (i = n; --i >= 0; )
2886 {
2887#ifdef AMIGA /* only for very slow machines */
2888 if ((i & 1023) == 1023) /* this may take a while */
2889 {
2890 /*
2891 * This message should never cause a hit-return message.
2892 * Overwrite this message with any next message.
2893 */
2894 ++no_wait_return;
2895 smsg((char_u *)_("freeing %ld lines"), i + 1);
2896 --no_wait_return;
2897 msg_didout = FALSE;
2898 msg_col = 0;
2899 }
2900#endif
2901 vim_free(y_current->y_array[i]);
2902 }
2903 vim_free(y_current->y_array);
2904 y_current->y_array = NULL;
2905#ifdef AMIGA
2906 if (n >= 1000)
2907 MSG("");
2908#endif
2909 }
2910}
2911
2912 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002913free_yank_all(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914{
2915 free_yank(y_current->y_size);
2916}
2917
2918/*
2919 * Yank the text between "oap->start" and "oap->end" into a yank register.
2920 * If we are to append (uppercase register), we first yank into a new yank
2921 * register and then concatenate the old and the new one (so we keep the old
2922 * one in case of out-of-memory).
2923 *
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02002924 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 */
2926 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002927op_yank(oparg_T *oap, int deleting, int mess)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928{
2929 long y_idx; /* index in y_array[] */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002930 yankreg_T *curr; /* copy of y_current */
2931 yankreg_T newreg; /* new yank register when appending */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 char_u **new_ptr;
2933 linenr_T lnum; /* current line number */
2934 long j;
2935 int yanktype = oap->motion_type;
2936 long yanklines = oap->line_count;
2937 linenr_T yankendlnum = oap->end.lnum;
2938 char_u *p;
2939 char_u *pnew;
2940 struct block_def bd;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01002941#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01002942 int did_star = FALSE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01002943#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944
2945 /* check for read-only register */
2946 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2947 {
2948 beep_flush();
2949 return FAIL;
2950 }
2951 if (oap->regname == '_') /* black hole: nothing to do */
2952 return OK;
2953
2954#ifdef FEAT_CLIPBOARD
2955 if (!clip_star.available && oap->regname == '*')
2956 oap->regname = 0;
2957 else if (!clip_plus.available && oap->regname == '+')
2958 oap->regname = 0;
2959#endif
2960
2961 if (!deleting) /* op_delete() already set y_current */
2962 get_yank_register(oap->regname, TRUE);
2963
2964 curr = y_current;
2965 /* append to existing contents */
2966 if (y_append && y_current->y_array != NULL)
2967 y_current = &newreg;
2968 else
2969 free_yank_all(); /* free previously yanked lines */
2970
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002971 /*
2972 * If the cursor was in column 1 before and after the movement, and the
2973 * operator is not inclusive, the yank is always linewise.
2974 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975 if ( oap->motion_type == MCHAR
2976 && oap->start.col == 0
2977 && !oap->inclusive
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00002979 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 && oap->end.col == 0
2981 && yanklines > 1)
2982 {
2983 yanktype = MLINE;
2984 --yankendlnum;
2985 --yanklines;
2986 }
2987
2988 y_current->y_size = yanklines;
2989 y_current->y_type = yanktype; /* set the yank register type */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 y_current->y_width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
2992 yanklines), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 if (y_current->y_array == NULL)
2994 {
2995 y_current = curr;
2996 return FAIL;
2997 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002998#ifdef FEAT_VIMINFO
2999 y_current->y_time_set = vim_time();
3000#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001
3002 y_idx = 0;
3003 lnum = oap->start.lnum;
3004
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005 if (oap->block_mode)
3006 {
3007 /* Visual block mode */
3008 y_current->y_type = MBLOCK; /* set the yank register type */
3009 y_current->y_width = oap->end_vcol - oap->start_vcol;
3010
3011 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
3012 y_current->y_width--;
3013 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014
3015 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
3016 {
3017 switch (y_current->y_type)
3018 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 case MBLOCK:
3020 block_prep(oap, &bd, lnum, FALSE);
3021 if (yank_copy_line(&bd, y_idx) == FAIL)
3022 goto fail;
3023 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024
3025 case MLINE:
3026 if ((y_current->y_array[y_idx] =
3027 vim_strsave(ml_get(lnum))) == NULL)
3028 goto fail;
3029 break;
3030
3031 case MCHAR:
3032 {
3033 colnr_T startcol = 0, endcol = MAXCOL;
3034#ifdef FEAT_VIRTUALEDIT
3035 int is_oneChar = FALSE;
3036 colnr_T cs, ce;
3037#endif
3038 p = ml_get(lnum);
3039 bd.startspaces = 0;
3040 bd.endspaces = 0;
3041
3042 if (lnum == oap->start.lnum)
3043 {
3044 startcol = oap->start.col;
3045#ifdef FEAT_VIRTUALEDIT
3046 if (virtual_op)
3047 {
3048 getvcol(curwin, &oap->start, &cs, NULL, &ce);
3049 if (ce != cs && oap->start.coladd > 0)
3050 {
3051 /* Part of a tab selected -- but don't
3052 * double-count it. */
3053 bd.startspaces = (ce - cs + 1)
3054 - oap->start.coladd;
3055 startcol++;
3056 }
3057 }
3058#endif
3059 }
3060
3061 if (lnum == oap->end.lnum)
3062 {
3063 endcol = oap->end.col;
3064#ifdef FEAT_VIRTUALEDIT
3065 if (virtual_op)
3066 {
3067 getvcol(curwin, &oap->end, &cs, NULL, &ce);
3068 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
3069# ifdef FEAT_MBYTE
3070 /* Don't add space for double-wide
3071 * char; endcol will be on last byte
3072 * of multi-byte char. */
3073 && (*mb_head_off)(p, p + endcol) == 0
3074# endif
3075 ))
3076 {
3077 if (oap->start.lnum == oap->end.lnum
3078 && oap->start.col == oap->end.col)
3079 {
3080 /* Special case: inside a single char */
3081 is_oneChar = TRUE;
3082 bd.startspaces = oap->end.coladd
3083 - oap->start.coladd + oap->inclusive;
3084 endcol = startcol;
3085 }
3086 else
3087 {
3088 bd.endspaces = oap->end.coladd
3089 + oap->inclusive;
3090 endcol -= oap->inclusive;
3091 }
3092 }
3093 }
3094#endif
3095 }
Bram Moolenaar18e00d22012-05-18 12:49:40 +02003096 if (endcol == MAXCOL)
3097 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098 if (startcol > endcol
3099#ifdef FEAT_VIRTUALEDIT
3100 || is_oneChar
3101#endif
3102 )
3103 bd.textlen = 0;
3104 else
3105 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 bd.textlen = endcol - startcol + oap->inclusive;
3107 }
3108 bd.textstart = p + startcol;
3109 if (yank_copy_line(&bd, y_idx) == FAIL)
3110 goto fail;
3111 break;
3112 }
3113 /* NOTREACHED */
3114 }
3115 }
3116
3117 if (curr != y_current) /* append the new block to the old block */
3118 {
3119 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3120 (curr->y_size + y_current->y_size)), TRUE);
3121 if (new_ptr == NULL)
3122 goto fail;
3123 for (j = 0; j < curr->y_size; ++j)
3124 new_ptr[j] = curr->y_array[j];
3125 vim_free(curr->y_array);
3126 curr->y_array = new_ptr;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003127#ifdef FEAT_VIMINFO
3128 curr->y_time_set = vim_time();
3129#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130
3131 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3132 curr->y_type = MLINE;
3133
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003134 /* Concatenate the last line of the old block with the first line of
3135 * the new block, unless being Vi compatible. */
3136 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137 {
3138 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3139 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3140 if (pnew == NULL)
3141 {
3142 y_idx = y_current->y_size - 1;
3143 goto fail;
3144 }
3145 STRCPY(pnew, curr->y_array[--j]);
3146 STRCAT(pnew, y_current->y_array[0]);
3147 vim_free(curr->y_array[j]);
3148 vim_free(y_current->y_array[0]);
3149 curr->y_array[j++] = pnew;
3150 y_idx = 1;
3151 }
3152 else
3153 y_idx = 0;
3154 while (y_idx < y_current->y_size)
3155 curr->y_array[j++] = y_current->y_array[y_idx++];
3156 curr->y_size = j;
3157 vim_free(y_current->y_array);
3158 y_current = curr;
3159 }
Bram Moolenaar7ec83432014-06-17 18:16:11 +02003160 if (curwin->w_p_rnu)
3161 redraw_later(SOME_VALID); /* cursor moved to start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 if (mess) /* Display message about yank? */
3163 {
3164 if (yanktype == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 && yanklines == 1)
3167 yanklines = 0;
3168 /* Some versions of Vi use ">=" here, some don't... */
3169 if (yanklines > p_report)
3170 {
3171 /* redisplay now, so message is not deleted */
3172 update_topline_redraw();
3173 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003174 {
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003175 if (oap->block_mode)
3176 MSG(_("block of 1 line yanked"));
3177 else
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003178 MSG(_("1 line yanked"));
3179 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003180 else if (oap->block_mode)
3181 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182 else
3183 smsg((char_u *)_("%ld lines yanked"), yanklines);
3184 }
3185 }
3186
3187 /*
3188 * Set "'[" and "']" marks.
3189 */
3190 curbuf->b_op_start = oap->start;
3191 curbuf->b_op_end = oap->end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003192 if (yanktype == MLINE && !oap->block_mode)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003193 {
3194 curbuf->b_op_start.col = 0;
3195 curbuf->b_op_end.col = MAXCOL;
3196 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197
3198#ifdef FEAT_CLIPBOARD
3199 /*
3200 * If we were yanking to the '*' register, send result to clipboard.
3201 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3202 * to the '*' register.
3203 */
3204 if (clip_star.available
3205 && (curr == &(y_regs[STAR_REGISTER])
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003206 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003207 && ((clip_unnamed | clip_unnamed_saved) & CLIP_UNNAMED))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 {
3209 if (curr != &(y_regs[STAR_REGISTER]))
3210 /* Copy the text from register 0 to the clipboard register. */
3211 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3212
3213 clip_own_selection(&clip_star);
3214 clip_gen_set_selection(&clip_star);
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003215# ifdef FEAT_X11
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003216 did_star = TRUE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003217# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218 }
3219
3220# ifdef FEAT_X11
3221 /*
3222 * If we were yanking to the '+' register, send result to selection.
3223 * Also copy to the '*' register, in case auto-select is off.
3224 */
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003225 if (clip_plus.available
3226 && (curr == &(y_regs[PLUS_REGISTER])
3227 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003228 && ((clip_unnamed | clip_unnamed_saved) &
3229 CLIP_UNNAMED_PLUS))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 {
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003231 if (curr != &(y_regs[PLUS_REGISTER]))
3232 /* Copy the text from register 0 to the clipboard register. */
3233 copy_yank_reg(&(y_regs[PLUS_REGISTER]));
3234
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235 clip_own_selection(&clip_plus);
3236 clip_gen_set_selection(&clip_plus);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003237 if (!clip_isautosel_star() && !did_star
3238 && curr == &(y_regs[PLUS_REGISTER]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 {
3240 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3241 clip_own_selection(&clip_star);
3242 clip_gen_set_selection(&clip_star);
3243 }
3244 }
3245# endif
3246#endif
3247
3248 return OK;
3249
3250fail: /* free the allocated lines */
3251 free_yank(y_idx + 1);
3252 y_current = curr;
3253 return FAIL;
3254}
3255
3256 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003257yank_copy_line(struct block_def *bd, long y_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258{
3259 char_u *pnew;
3260
3261 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3262 == NULL)
3263 return FAIL;
3264 y_current->y_array[y_idx] = pnew;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003265 vim_memset(pnew, ' ', (size_t)bd->startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 pnew += bd->startspaces;
3267 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3268 pnew += bd->textlen;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003269 vim_memset(pnew, ' ', (size_t)bd->endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 pnew += bd->endspaces;
3271 *pnew = NUL;
3272 return OK;
3273}
3274
3275#ifdef FEAT_CLIPBOARD
3276/*
3277 * Make a copy of the y_current register to register "reg".
3278 */
3279 static void
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003280copy_yank_reg(yankreg_T *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003282 yankreg_T *curr = y_current;
3283 long j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284
3285 y_current = reg;
3286 free_yank_all();
3287 *y_current = *curr;
3288 y_current->y_array = (char_u **)lalloc_clear(
3289 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3290 if (y_current->y_array == NULL)
3291 y_current->y_size = 0;
3292 else
3293 for (j = 0; j < y_current->y_size; ++j)
3294 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3295 {
3296 free_yank(j);
3297 y_current->y_size = 0;
3298 break;
3299 }
3300 y_current = curr;
3301}
3302#endif
3303
3304/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003305 * Put contents of register "regname" into the text.
3306 * Caller must check "regname" to be valid!
3307 * "flags": PUT_FIXINDENT make indent look nice
3308 * PUT_CURSEND leave cursor after end of new text
3309 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310 */
3311 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003312do_put(
3313 int regname,
3314 int dir, /* BACKWARD for 'P', FORWARD for 'p' */
3315 long count,
3316 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317{
3318 char_u *ptr;
3319 char_u *newp, *oldp;
3320 int yanklen;
3321 int totlen = 0; /* init for gcc */
3322 linenr_T lnum;
3323 colnr_T col;
3324 long i; /* index in y_array[] */
3325 int y_type;
3326 long y_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327 int oldlen;
3328 long y_width = 0;
3329 colnr_T vcol;
3330 int delcount;
3331 int incr = 0;
3332 long j;
3333 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334 char_u **y_array = NULL;
3335 long nr_lines = 0;
3336 pos_T new_cursor;
3337 int indent;
3338 int orig_indent = 0; /* init for gcc */
3339 int indent_diff = 0; /* init for gcc */
3340 int first_indent = TRUE;
3341 int lendiff = 0;
3342 pos_T old_pos;
3343 char_u *insert_string = NULL;
3344 int allocated = FALSE;
3345 long cnt;
3346
3347#ifdef FEAT_CLIPBOARD
3348 /* Adjust register name for "unnamed" in 'clipboard'. */
3349 adjust_clip_reg(&regname);
3350 (void)may_get_selection(regname);
3351#endif
3352
3353 if (flags & PUT_FIXINDENT)
3354 orig_indent = get_indent();
3355
3356 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3357 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3358
3359 /*
3360 * Using inserted text works differently, because the register includes
3361 * special characters (newlines, etc.).
3362 */
3363 if (regname == '.')
3364 {
Bram Moolenaarf8eb9c52017-01-02 17:31:24 +01003365 if (VIsual_active)
3366 stuffcharReadbuff(VIsual_mode);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3368 (count == -1 ? 'O' : 'i')), count, FALSE);
3369 /* Putting the text is done later, so can't really move the cursor to
3370 * the next character. Use "l" to simulate it. */
3371 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3372 stuffcharReadbuff('l');
3373 return;
3374 }
3375
3376 /*
3377 * For special registers '%' (file name), '#' (alternate file name) and
3378 * ':' (last command line), etc. we have to create a fake yank register.
3379 */
3380 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3381 {
3382 if (insert_string == NULL)
3383 return;
3384 }
3385
Bram Moolenaar27356ad2012-12-12 16:11:36 +01003386#ifdef FEAT_AUTOCMD
3387 /* Autocommands may be executed when saving lines for undo, which may make
3388 * y_array invalid. Start undo now to avoid that. */
3389 u_save(curwin->w_cursor.lnum, curwin->w_cursor.lnum + 1);
3390#endif
3391
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 if (insert_string != NULL)
3393 {
3394 y_type = MCHAR;
3395#ifdef FEAT_EVAL
3396 if (regname == '=')
3397 {
3398 /* For the = register we need to split the string at NL
Bram Moolenaara554a192011-09-21 17:33:53 +02003399 * characters.
3400 * Loop twice: count the number of lines and save them. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 for (;;)
3402 {
3403 y_size = 0;
3404 ptr = insert_string;
3405 while (ptr != NULL)
3406 {
3407 if (y_array != NULL)
3408 y_array[y_size] = ptr;
3409 ++y_size;
3410 ptr = vim_strchr(ptr, '\n');
3411 if (ptr != NULL)
3412 {
3413 if (y_array != NULL)
3414 *ptr = NUL;
3415 ++ptr;
Bram Moolenaara554a192011-09-21 17:33:53 +02003416 /* A trailing '\n' makes the register linewise. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 if (*ptr == NUL)
3418 {
3419 y_type = MLINE;
3420 break;
3421 }
3422 }
3423 }
3424 if (y_array != NULL)
3425 break;
3426 y_array = (char_u **)alloc((unsigned)
3427 (y_size * sizeof(char_u *)));
3428 if (y_array == NULL)
3429 goto end;
3430 }
3431 }
3432 else
3433#endif
3434 {
3435 y_size = 1; /* use fake one-line yank register */
3436 y_array = &insert_string;
3437 }
3438 }
3439 else
3440 {
3441 get_yank_register(regname, FALSE);
3442
3443 y_type = y_current->y_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 y_width = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 y_size = y_current->y_size;
3446 y_array = y_current->y_array;
3447 }
3448
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 if (y_type == MLINE)
3450 {
3451 if (flags & PUT_LINE_SPLIT)
3452 {
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003453 char_u *p;
3454
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 /* "p" or "P" in Visual mode: split the lines to put the text in
3456 * between. */
3457 if (u_save_cursor() == FAIL)
3458 goto end;
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003459 p = ml_get_cursor();
3460 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003461 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003462 ptr = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 if (ptr == NULL)
3464 goto end;
3465 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3466 vim_free(ptr);
3467
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003468 oldp = ml_get_curline();
3469 p = oldp + curwin->w_cursor.col;
3470 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003471 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003472 ptr = vim_strnsave(oldp, p - oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473 if (ptr == NULL)
3474 goto end;
3475 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3476 ++nr_lines;
3477 dir = FORWARD;
3478 }
3479 if (flags & PUT_LINE_FORWARD)
3480 {
3481 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003482 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 dir = FORWARD;
3484 }
3485 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3486 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3487 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488
3489 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3490 y_type = MLINE;
3491
3492 if (y_size == 0 || y_array == NULL)
3493 {
3494 EMSG2(_("E353: Nothing in register %s"),
3495 regname == 0 ? (char_u *)"\"" : transchar(regname));
3496 goto end;
3497 }
3498
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 if (y_type == MBLOCK)
3500 {
3501 lnum = curwin->w_cursor.lnum + y_size + 1;
3502 if (lnum > curbuf->b_ml.ml_line_count)
3503 lnum = curbuf->b_ml.ml_line_count + 1;
3504 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3505 goto end;
3506 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003507 else if (y_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 {
3509 lnum = curwin->w_cursor.lnum;
3510#ifdef FEAT_FOLDING
3511 /* Correct line number for closed fold. Don't move the cursor yet,
3512 * u_save() uses it. */
3513 if (dir == BACKWARD)
3514 (void)hasFolding(lnum, &lnum, NULL);
3515 else
3516 (void)hasFolding(lnum, NULL, &lnum);
3517#endif
3518 if (dir == FORWARD)
3519 ++lnum;
Bram Moolenaar10315b12013-06-29 17:19:28 +02003520 /* In an empty buffer the empty line is going to be replaced, include
3521 * it in the saved lines. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003522 if ((BUFEMPTY() ? u_save(0, 2) : u_save(lnum - 1, lnum)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 goto end;
3524#ifdef FEAT_FOLDING
3525 if (dir == FORWARD)
3526 curwin->w_cursor.lnum = lnum - 1;
3527 else
3528 curwin->w_cursor.lnum = lnum;
3529 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3530#endif
3531 }
3532 else if (u_save_cursor() == FAIL)
3533 goto end;
3534
3535 yanklen = (int)STRLEN(y_array[0]);
3536
3537#ifdef FEAT_VIRTUALEDIT
3538 if (ve_flags == VE_ALL && y_type == MCHAR)
3539 {
3540 if (gchar_cursor() == TAB)
3541 {
3542 /* Don't need to insert spaces when "p" on the last position of a
3543 * tab or "P" on the first position. */
3544 if (dir == FORWARD
3545 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3546 : curwin->w_cursor.coladd > 0)
3547 coladvance_force(getviscol());
3548 else
3549 curwin->w_cursor.coladd = 0;
3550 }
3551 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3552 coladvance_force(getviscol() + (dir == FORWARD));
3553 }
3554#endif
3555
3556 lnum = curwin->w_cursor.lnum;
3557 col = curwin->w_cursor.col;
3558
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 /*
3560 * Block mode
3561 */
3562 if (y_type == MBLOCK)
3563 {
Bram Moolenaarc8129962017-01-22 20:04:51 +01003564 int c = gchar_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 colnr_T endcol2 = 0;
3566
3567 if (dir == FORWARD && c != NUL)
3568 {
3569#ifdef FEAT_VIRTUALEDIT
3570 if (ve_flags == VE_ALL)
3571 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3572 else
3573#endif
3574 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3575
3576#ifdef FEAT_MBYTE
3577 if (has_mbyte)
3578 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003579 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 else
3581#endif
3582#ifdef FEAT_VIRTUALEDIT
3583 if (c != TAB || ve_flags != VE_ALL)
3584#endif
3585 ++curwin->w_cursor.col;
3586 ++col;
3587 }
3588 else
3589 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3590
3591#ifdef FEAT_VIRTUALEDIT
3592 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003593 if (ve_flags == VE_ALL
3594 && (curwin->w_cursor.coladd > 0
3595 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596 {
3597 if (dir == FORWARD && c == NUL)
3598 ++col;
3599 if (dir != FORWARD && c != NUL)
3600 ++curwin->w_cursor.col;
3601 if (c == TAB)
3602 {
3603 if (dir == BACKWARD && curwin->w_cursor.col)
3604 curwin->w_cursor.col--;
3605 if (dir == FORWARD && col - 1 == endcol2)
3606 curwin->w_cursor.col++;
3607 }
3608 }
3609 curwin->w_cursor.coladd = 0;
3610#endif
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003611 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 for (i = 0; i < y_size; ++i)
3613 {
3614 int spaces;
3615 char shortline;
3616
3617 bd.startspaces = 0;
3618 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619 vcol = 0;
3620 delcount = 0;
3621
3622 /* add a new line */
3623 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3624 {
3625 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3626 (colnr_T)1, FALSE) == FAIL)
3627 break;
3628 ++nr_lines;
3629 }
3630 /* get the old line and advance to the position to insert at */
3631 oldp = ml_get_curline();
3632 oldlen = (int)STRLEN(oldp);
3633 for (ptr = oldp; vcol < col && *ptr; )
3634 {
3635 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02003636 incr = lbr_chartabsize_adv(oldp, &ptr, (colnr_T)vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 vcol += incr;
3638 }
3639 bd.textcol = (colnr_T)(ptr - oldp);
3640
3641 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3642
3643 if (vcol < col) /* line too short, padd with spaces */
3644 bd.startspaces = col - vcol;
3645 else if (vcol > col)
3646 {
3647 bd.endspaces = vcol - col;
3648 bd.startspaces = incr - bd.endspaces;
3649 --bd.textcol;
3650 delcount = 1;
3651#ifdef FEAT_MBYTE
3652 if (has_mbyte)
3653 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3654#endif
3655 if (oldp[bd.textcol] != TAB)
3656 {
3657 /* Only a Tab can be split into spaces. Other
3658 * characters will have to be moved to after the
3659 * block, causing misalignment. */
3660 delcount = 0;
3661 bd.endspaces = 0;
3662 }
3663 }
3664
3665 yanklen = (int)STRLEN(y_array[i]);
3666
3667 /* calculate number of spaces required to fill right side of block*/
3668 spaces = y_width + 1;
3669 for (j = 0; j < yanklen; j++)
Bram Moolenaar597a4222014-06-25 14:39:50 +02003670 spaces -= lbr_chartabsize(NULL, &y_array[i][j], 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 if (spaces < 0)
3672 spaces = 0;
3673
3674 /* insert the new text */
3675 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3676 newp = alloc_check((unsigned)totlen + oldlen + 1);
3677 if (newp == NULL)
3678 break;
3679 /* copy part up to cursor to new line */
3680 ptr = newp;
3681 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3682 ptr += bd.textcol;
3683 /* may insert some spaces before the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003684 vim_memset(ptr, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 ptr += bd.startspaces;
3686 /* insert the new text */
3687 for (j = 0; j < count; ++j)
3688 {
3689 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3690 ptr += yanklen;
3691
3692 /* insert block's trailing spaces only if there's text behind */
3693 if ((j < count - 1 || !shortline) && spaces)
3694 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003695 vim_memset(ptr, ' ', (size_t)spaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 ptr += spaces;
3697 }
3698 }
3699 /* may insert some spaces after the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003700 vim_memset(ptr, ' ', (size_t)bd.endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 ptr += bd.endspaces;
3702 /* move the text after the cursor to the end of the line. */
3703 mch_memmove(ptr, oldp + bd.textcol + delcount,
3704 (size_t)(oldlen - bd.textcol - delcount + 1));
3705 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3706
3707 ++curwin->w_cursor.lnum;
3708 if (i == 0)
3709 curwin->w_cursor.col += bd.startspaces;
3710 }
3711
3712 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3713
3714 /* Set '[ mark. */
3715 curbuf->b_op_start = curwin->w_cursor;
3716 curbuf->b_op_start.lnum = lnum;
3717
3718 /* adjust '] mark */
3719 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3720 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003721# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003723# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 if (flags & PUT_CURSEND)
3725 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003726 colnr_T len;
3727
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728 curwin->w_cursor = curbuf->b_op_end;
3729 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003730
3731 /* in Insert mode we might be after the NUL, correct for that */
3732 len = (colnr_T)STRLEN(ml_get_curline());
3733 if (curwin->w_cursor.col > len)
3734 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735 }
3736 else
3737 curwin->w_cursor.lnum = lnum;
3738 }
3739 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 {
3741 /*
3742 * Character or Line mode
3743 */
3744 if (y_type == MCHAR)
3745 {
3746 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3747 * char */
3748 if (dir == FORWARD && gchar_cursor() != NUL)
3749 {
3750#ifdef FEAT_MBYTE
3751 if (has_mbyte)
3752 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003753 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754
3755 /* put it on the next of the multi-byte character. */
3756 col += bytelen;
3757 if (yanklen)
3758 {
3759 curwin->w_cursor.col += bytelen;
3760 curbuf->b_op_end.col += bytelen;
3761 }
3762 }
3763 else
3764#endif
3765 {
3766 ++col;
3767 if (yanklen)
3768 {
3769 ++curwin->w_cursor.col;
3770 ++curbuf->b_op_end.col;
3771 }
3772 }
3773 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 curbuf->b_op_start = curwin->w_cursor;
3775 }
3776 /*
3777 * Line mode: BACKWARD is the same as FORWARD on the previous line
3778 */
3779 else if (dir == BACKWARD)
3780 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003781 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782
3783 /*
3784 * simple case: insert into current line
3785 */
3786 if (y_type == MCHAR && y_size == 1)
3787 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003788 linenr_T end_lnum = 0; /* init for gcc */
Bram Moolenaar9957a102017-01-23 21:53:53 +01003789
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003790 if (VIsual_active)
3791 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003792 end_lnum = curbuf->b_visual.vi_end.lnum;
3793 if (end_lnum < curbuf->b_visual.vi_start.lnum)
3794 end_lnum = curbuf->b_visual.vi_start.lnum;
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003795 }
Bram Moolenaar9957a102017-01-23 21:53:53 +01003796
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003797 do {
3798 totlen = count * yanklen;
3799 if (totlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 {
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003801 oldp = ml_get(lnum);
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003802 if (VIsual_active && col > (int)STRLEN(oldp))
3803 {
3804 lnum++;
3805 continue;
3806 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003807 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3808 if (newp == NULL)
3809 goto end; /* alloc() gave an error message */
3810 mch_memmove(newp, oldp, (size_t)col);
3811 ptr = newp + col;
3812 for (i = 0; i < count; ++i)
3813 {
3814 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3815 ptr += yanklen;
3816 }
3817 STRMOVE(ptr, oldp + col);
3818 ml_replace(lnum, newp, FALSE);
3819 /* Place cursor on last putted char. */
3820 if (lnum == curwin->w_cursor.lnum)
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003821 {
3822 /* make sure curwin->w_virtcol is updated */
3823 changed_cline_bef_curs();
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003824 curwin->w_cursor.col += (colnr_T)(totlen - 1);
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003825 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003827 if (VIsual_active)
3828 lnum++;
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003829 } while (VIsual_active && lnum <= end_lnum);
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003830
Bram Moolenaar06e7ce12014-11-19 17:35:39 +01003831 if (VIsual_active) /* reset lnum to the last visual line */
3832 lnum--;
3833
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 curbuf->b_op_end = curwin->w_cursor;
3835 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3836 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3837 ++curwin->w_cursor.col;
3838 changed_bytes(lnum, col);
3839 }
3840 else
3841 {
3842 /*
3843 * Insert at least one line. When y_type is MCHAR, break the first
3844 * line in two.
3845 */
3846 for (cnt = 1; cnt <= count; ++cnt)
3847 {
3848 i = 0;
3849 if (y_type == MCHAR)
3850 {
3851 /*
3852 * Split the current line in two at the insert position.
3853 * First insert y_array[size - 1] in front of second line.
3854 * Then append y_array[0] to first line.
3855 */
3856 lnum = new_cursor.lnum;
3857 ptr = ml_get(lnum) + col;
3858 totlen = (int)STRLEN(y_array[y_size - 1]);
3859 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3860 if (newp == NULL)
3861 goto error;
3862 STRCPY(newp, y_array[y_size - 1]);
3863 STRCAT(newp, ptr);
3864 /* insert second line */
3865 ml_append(lnum, newp, (colnr_T)0, FALSE);
3866 vim_free(newp);
3867
3868 oldp = ml_get(lnum);
3869 newp = alloc_check((unsigned)(col + yanklen + 1));
3870 if (newp == NULL)
3871 goto error;
3872 /* copy first part of line */
3873 mch_memmove(newp, oldp, (size_t)col);
3874 /* append to first line */
3875 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3876 ml_replace(lnum, newp, FALSE);
3877
3878 curwin->w_cursor.lnum = lnum;
3879 i = 1;
3880 }
3881
3882 for (; i < y_size; ++i)
3883 {
3884 if ((y_type != MCHAR || i < y_size - 1)
3885 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3886 == FAIL)
3887 goto error;
3888 lnum++;
3889 ++nr_lines;
3890 if (flags & PUT_FIXINDENT)
3891 {
3892 old_pos = curwin->w_cursor;
3893 curwin->w_cursor.lnum = lnum;
3894 ptr = ml_get(lnum);
3895 if (cnt == count && i == y_size - 1)
3896 lendiff = (int)STRLEN(ptr);
3897#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3898 if (*ptr == '#' && preprocs_left())
3899 indent = 0; /* Leave # lines at start */
3900 else
3901#endif
3902 if (*ptr == NUL)
3903 indent = 0; /* Ignore empty lines */
3904 else if (first_indent)
3905 {
3906 indent_diff = orig_indent - get_indent();
3907 indent = orig_indent;
3908 first_indent = FALSE;
3909 }
3910 else if ((indent = get_indent() + indent_diff) < 0)
3911 indent = 0;
3912 (void)set_indent(indent, 0);
3913 curwin->w_cursor = old_pos;
3914 /* remember how many chars were removed */
3915 if (cnt == count && i == y_size - 1)
3916 lendiff -= (int)STRLEN(ml_get(lnum));
3917 }
3918 }
3919 }
3920
3921error:
3922 /* Adjust marks. */
3923 if (y_type == MLINE)
3924 {
3925 curbuf->b_op_start.col = 0;
3926 if (dir == FORWARD)
3927 curbuf->b_op_start.lnum++;
3928 }
Bram Moolenaar82faa252016-06-04 20:14:07 +02003929 /* Skip mark_adjust when adding lines after the last one, there
Bram Moolenaarf58a8472017-03-05 18:03:04 +01003930 * can't be marks there. But still needed in diff mode. */
Bram Moolenaar82faa252016-06-04 20:14:07 +02003931 if (curbuf->b_op_start.lnum + (y_type == MCHAR) - 1 + nr_lines
Bram Moolenaarf58a8472017-03-05 18:03:04 +01003932 < curbuf->b_ml.ml_line_count
3933#ifdef FEAT_DIFF
3934 || curwin->w_p_diff
3935#endif
3936 )
Bram Moolenaar82faa252016-06-04 20:14:07 +02003937 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 (linenr_T)MAXLNUM, nr_lines, 0L);
3939
3940 /* note changed text for displaying and folding */
3941 if (y_type == MCHAR)
3942 changed_lines(curwin->w_cursor.lnum, col,
3943 curwin->w_cursor.lnum + 1, nr_lines);
3944 else
3945 changed_lines(curbuf->b_op_start.lnum, 0,
3946 curbuf->b_op_start.lnum, nr_lines);
3947
3948 /* put '] mark at last inserted character */
3949 curbuf->b_op_end.lnum = lnum;
3950 /* correct length for change in indent */
3951 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3952 if (col > 1)
3953 curbuf->b_op_end.col = col - 1;
3954 else
3955 curbuf->b_op_end.col = 0;
3956
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003957 if (flags & PUT_CURSLINE)
3958 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003959 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003960 curwin->w_cursor.lnum = lnum;
3961 beginline(BL_WHITE | BL_FIX);
3962 }
3963 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 {
3965 /* put cursor after inserted text */
3966 if (y_type == MLINE)
3967 {
3968 if (lnum >= curbuf->b_ml.ml_line_count)
3969 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3970 else
3971 curwin->w_cursor.lnum = lnum + 1;
3972 curwin->w_cursor.col = 0;
3973 }
3974 else
3975 {
3976 curwin->w_cursor.lnum = lnum;
3977 curwin->w_cursor.col = col;
3978 }
3979 }
3980 else if (y_type == MLINE)
3981 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003982 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 curwin->w_cursor.col = 0;
3984 if (dir == FORWARD)
3985 ++curwin->w_cursor.lnum;
3986 beginline(BL_WHITE | BL_FIX);
3987 }
3988 else /* put cursor on first inserted character */
3989 curwin->w_cursor = new_cursor;
3990 }
3991 }
3992
3993 msgmore(nr_lines);
3994 curwin->w_set_curswant = TRUE;
3995
3996end:
3997 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003999 if (regname == '=')
4000 vim_free(y_array);
4001
Bram Moolenaar033d8882013-09-25 23:24:57 +02004002 VIsual_active = FALSE;
Bram Moolenaar033d8882013-09-25 23:24:57 +02004003
Bram Moolenaar677ee682005-01-27 14:41:15 +00004004 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004005 adjust_cursor_eol();
4006}
4007
4008/*
4009 * When the cursor is on the NUL past the end of the line and it should not be
4010 * there move it left.
4011 */
4012 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004013adjust_cursor_eol(void)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004014{
4015 if (curwin->w_cursor.col > 0
4016 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00004017#ifdef FEAT_VIRTUALEDIT
4018 && (ve_flags & VE_ONEMORE) == 0
4019#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 && !(restart_edit || (State & INSERT)))
4021 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00004022 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00004023 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004024
Bram Moolenaar071d4272004-06-13 20:20:40 +00004025#ifdef FEAT_VIRTUALEDIT
4026 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00004027 {
4028 colnr_T scol, ecol;
4029
4030 /* Coladd is set to the width of the last character. */
4031 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4032 curwin->w_cursor.coladd = ecol - scol + 1;
4033 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034#endif
4035 }
4036}
4037
4038#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
4039/*
4040 * Return TRUE if lines starting with '#' should be left aligned.
4041 */
4042 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004043preprocs_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044{
4045 return
4046# ifdef FEAT_SMARTINDENT
4047# ifdef FEAT_CINDENT
4048 (curbuf->b_p_si && !curbuf->b_p_cin) ||
4049# else
4050 curbuf->b_p_si
4051# endif
4052# endif
4053# ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004054 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE)
4055 && curbuf->b_ind_hash_comment == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056# endif
4057 ;
4058}
4059#endif
4060
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004061/*
4062 * Return the character name of the register with the given number.
4063 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004065get_register_name(int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066{
4067 if (num == -1)
4068 return '"';
4069 else if (num < 10)
4070 return num + '0';
4071 else if (num == DELETION_REGISTER)
4072 return '-';
4073#ifdef FEAT_CLIPBOARD
4074 else if (num == STAR_REGISTER)
4075 return '*';
4076 else if (num == PLUS_REGISTER)
4077 return '+';
4078#endif
4079 else
4080 {
4081#ifdef EBCDIC
4082 int i;
4083
4084 /* EBCDIC is really braindead ... */
4085 i = 'a' + (num - 10);
4086 if (i > 'i')
4087 i += 7;
4088 if (i > 'r')
4089 i += 8;
4090 return i;
4091#else
4092 return num + 'a' - 10;
4093#endif
4094 }
4095}
4096
4097/*
4098 * ":dis" and ":registers": Display the contents of the yank registers.
4099 */
4100 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004101ex_display(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004103 int i, n;
4104 long j;
4105 char_u *p;
4106 yankreg_T *yb;
4107 int name;
4108 int attr;
4109 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004110#ifdef FEAT_MBYTE
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004111 int clen;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004112#else
4113# define clen 1
4114#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115
4116 if (arg != NULL && *arg == NUL)
4117 arg = NULL;
4118 attr = hl_attr(HLF_8);
4119
4120 /* Highlight title */
4121 MSG_PUTS_TITLE(_("\n--- Registers ---"));
4122 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
4123 {
4124 name = get_register_name(i);
Bram Moolenaar0818b872010-11-24 14:28:58 +01004125 if (arg != NULL && vim_strchr(arg, name) == NULL
4126#ifdef ONE_CLIPBOARD
4127 /* Star register and plus register contain the same thing. */
4128 && (name != '*' || vim_strchr(arg, '+') == NULL)
4129#endif
4130 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 continue; /* did not ask for this register */
4132
4133#ifdef FEAT_CLIPBOARD
4134 /* Adjust register name for "unnamed" in 'clipboard'.
4135 * When it's a clipboard register, fill it with the current contents
4136 * of the clipboard. */
4137 adjust_clip_reg(&name);
4138 (void)may_get_selection(name);
4139#endif
4140
4141 if (i == -1)
4142 {
4143 if (y_previous != NULL)
4144 yb = y_previous;
4145 else
4146 yb = &(y_regs[0]);
4147 }
4148 else
4149 yb = &(y_regs[i]);
Bram Moolenaarcde547a2009-11-17 11:43:06 +00004150
4151#ifdef FEAT_EVAL
4152 if (name == MB_TOLOWER(redir_reg)
4153 || (redir_reg == '"' && yb == y_previous))
4154 continue; /* do not list register being written to, the
4155 * pointer can be freed */
4156#endif
4157
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 if (yb->y_array != NULL)
4159 {
4160 msg_putchar('\n');
4161 msg_putchar('"');
4162 msg_putchar(name);
4163 MSG_PUTS(" ");
4164
4165 n = (int)Columns - 6;
4166 for (j = 0; j < yb->y_size && n > 1; ++j)
4167 {
4168 if (j)
4169 {
4170 MSG_PUTS_ATTR("^J", attr);
4171 n -= 2;
4172 }
4173 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4174 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004176 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004177#endif
4178 msg_outtrans_len(p, clen);
4179#ifdef FEAT_MBYTE
4180 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181#endif
4182 }
4183 }
4184 if (n > 1 && yb->y_type == MLINE)
4185 MSG_PUTS_ATTR("^J", attr);
4186 out_flush(); /* show one line at a time */
4187 }
4188 ui_breakcheck();
4189 }
4190
4191 /*
4192 * display last inserted text
4193 */
4194 if ((p = get_last_insert()) != NULL
4195 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4196 {
4197 MSG_PUTS("\n\". ");
4198 dis_msg(p, TRUE);
4199 }
4200
4201 /*
4202 * display last command line
4203 */
4204 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4205 && !got_int)
4206 {
4207 MSG_PUTS("\n\": ");
4208 dis_msg(last_cmdline, FALSE);
4209 }
4210
4211 /*
4212 * display current file name
4213 */
4214 if (curbuf->b_fname != NULL
4215 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4216 {
4217 MSG_PUTS("\n\"% ");
4218 dis_msg(curbuf->b_fname, FALSE);
4219 }
4220
4221 /*
4222 * display alternate file name
4223 */
4224 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4225 {
4226 char_u *fname;
4227 linenr_T dummy;
4228
4229 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4230 {
4231 MSG_PUTS("\n\"# ");
4232 dis_msg(fname, FALSE);
4233 }
4234 }
4235
4236 /*
4237 * display last search pattern
4238 */
4239 if (last_search_pat() != NULL
4240 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4241 {
4242 MSG_PUTS("\n\"/ ");
4243 dis_msg(last_search_pat(), FALSE);
4244 }
4245
4246#ifdef FEAT_EVAL
4247 /*
4248 * display last used expression
4249 */
4250 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4251 && !got_int)
4252 {
4253 MSG_PUTS("\n\"= ");
4254 dis_msg(expr_line, FALSE);
4255 }
4256#endif
4257}
4258
4259/*
4260 * display a string for do_dis()
4261 * truncate at end of screen line
4262 */
4263 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004264dis_msg(
4265 char_u *p,
4266 int skip_esc) /* if TRUE, ignore trailing ESC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267{
4268 int n;
4269#ifdef FEAT_MBYTE
4270 int l;
4271#endif
4272
4273 n = (int)Columns - 6;
4274 while (*p != NUL
4275 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4276 && (n -= ptr2cells(p)) >= 0)
4277 {
4278#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004279 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 {
4281 msg_outtrans_len(p, l);
4282 p += l;
4283 }
4284 else
4285#endif
4286 msg_outtrans_len(p++, 1);
4287 }
4288 ui_breakcheck();
4289}
4290
Bram Moolenaar81340392012-06-06 16:12:59 +02004291#if defined(FEAT_COMMENTS) || defined(PROTO)
4292/*
4293 * If "process" is TRUE and the line begins with a comment leader (possibly
4294 * after some white space), return a pointer to the text after it. Put a boolean
4295 * value indicating whether the line ends with an unclosed comment in
4296 * "is_comment".
4297 * line - line to be processed,
4298 * process - if FALSE, will only check whether the line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004299 * comment,
Bram Moolenaar81340392012-06-06 16:12:59 +02004300 * include_space - whether to also skip space following the comment leader,
4301 * is_comment - will indicate whether the current line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004302 * comment.
Bram Moolenaar81340392012-06-06 16:12:59 +02004303 */
4304 static char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004305skip_comment(
4306 char_u *line,
4307 int process,
4308 int include_space,
4309 int *is_comment)
Bram Moolenaar81340392012-06-06 16:12:59 +02004310{
4311 char_u *comment_flags = NULL;
4312 int lead_len;
4313 int leader_offset = get_last_leader_offset(line, &comment_flags);
4314
4315 *is_comment = FALSE;
4316 if (leader_offset != -1)
4317 {
4318 /* Let's check whether the line ends with an unclosed comment.
4319 * If the last comment leader has COM_END in flags, there's no comment.
4320 */
4321 while (*comment_flags)
4322 {
4323 if (*comment_flags == COM_END
4324 || *comment_flags == ':')
4325 break;
4326 ++comment_flags;
4327 }
4328 if (*comment_flags != COM_END)
4329 *is_comment = TRUE;
4330 }
4331
4332 if (process == FALSE)
4333 return line;
4334
4335 lead_len = get_leader_len(line, &comment_flags, FALSE, include_space);
4336
4337 if (lead_len == 0)
4338 return line;
4339
4340 /* Find:
Bram Moolenaar81340392012-06-06 16:12:59 +02004341 * - COM_END,
4342 * - colon,
4343 * whichever comes first.
4344 */
4345 while (*comment_flags)
4346 {
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004347 if (*comment_flags == COM_END
Bram Moolenaar81340392012-06-06 16:12:59 +02004348 || *comment_flags == ':')
4349 {
4350 break;
4351 }
4352 ++comment_flags;
4353 }
4354
4355 /* If we found a colon, it means that we are not processing a line
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004356 * starting with a closing part of a three-part comment. That's good,
4357 * because we don't want to remove those as this would be annoying.
Bram Moolenaar81340392012-06-06 16:12:59 +02004358 */
4359 if (*comment_flags == ':' || *comment_flags == NUL)
4360 line += lead_len;
4361
4362 return line;
4363}
4364#endif
4365
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366/*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004367 * Join 'count' lines (minimal 2) at cursor position.
4368 * When "save_undo" is TRUE save lines for undo first.
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004369 * Set "use_formatoptions" to FALSE when e.g. processing backspace and comment
4370 * leaders should not be removed.
4371 * When setmark is TRUE, sets the '[ and '] mark, else, the caller is expected
4372 * to set those marks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004374 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375 */
4376 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004377do_join(
4378 long count,
4379 int insert_space,
4380 int save_undo,
4381 int use_formatoptions UNUSED,
4382 int setmark)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383{
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004384 char_u *curr = NULL;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004385 char_u *curr_start = NULL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004386 char_u *cend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 char_u *newp;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004388 char_u *spaces; /* number of spaces inserted before a line */
Bram Moolenaard43848c2010-07-14 14:28:26 +02004389 int endcurr1 = NUL;
4390 int endcurr2 = NUL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004391 int currsize = 0; /* size of the current line */
4392 int sumsize = 0; /* size of the long new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 linenr_T t;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004394 colnr_T col = 0;
4395 int ret = OK;
Bram Moolenaar81340392012-06-06 16:12:59 +02004396#if defined(FEAT_COMMENTS) || defined(PROTO)
Bram Moolenaar802053f2012-06-06 23:08:38 +02004397 int *comments = NULL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004398 int remove_comments = (use_formatoptions == TRUE)
4399 && has_format_option(FO_REMOVE_COMS);
4400 int prev_was_comment;
4401#endif
4402
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004404 if (save_undo && u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4405 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4406 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004408 /* Allocate an array to store the number of spaces inserted before each
4409 * line. We will use it to pre-compute the length of the new line and the
4410 * proper placement of each original line in the new one. */
4411 spaces = lalloc_clear((long_u)count, TRUE);
4412 if (spaces == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 return FAIL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004414#if defined(FEAT_COMMENTS) || defined(PROTO)
4415 if (remove_comments)
4416 {
4417 comments = (int *)lalloc_clear((long_u)count * sizeof(int), TRUE);
4418 if (comments == NULL)
4419 {
4420 vim_free(spaces);
4421 return FAIL;
4422 }
4423 }
4424#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425
4426 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004427 * Don't move anything, just compute the final line length
4428 * and setup the array of space strings lengths
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004430 for (t = 0; t < count; ++t)
4431 {
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004432 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t));
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004433 if (t == 0 && setmark)
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004434 {
4435 /* Set the '[ mark. */
4436 curwin->w_buffer->b_op_start.lnum = curwin->w_cursor.lnum;
4437 curwin->w_buffer->b_op_start.col = (colnr_T)STRLEN(curr);
4438 }
Bram Moolenaar81340392012-06-06 16:12:59 +02004439#if defined(FEAT_COMMENTS) || defined(PROTO)
4440 if (remove_comments)
4441 {
4442 /* We don't want to remove the comment leader if the
4443 * previous line is not a comment. */
4444 if (t > 0 && prev_was_comment)
4445 {
4446
4447 char_u *new_curr = skip_comment(curr, TRUE, insert_space,
4448 &prev_was_comment);
Bram Moolenaar27ba0882012-06-07 21:09:39 +02004449 comments[t] = (int)(new_curr - curr);
Bram Moolenaar81340392012-06-06 16:12:59 +02004450 curr = new_curr;
4451 }
4452 else
4453 curr = skip_comment(curr, FALSE, insert_space,
4454 &prev_was_comment);
4455 }
4456#endif
4457
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004458 if (insert_space && t > 0)
4459 {
4460 curr = skipwhite(curr);
4461 if (*curr != ')' && currsize != 0 && endcurr1 != TAB
4462#ifdef FEAT_MBYTE
4463 && (!has_format_option(FO_MBYTE_JOIN)
4464 || (mb_ptr2char(curr) < 0x100 && endcurr1 < 0x100))
4465 && (!has_format_option(FO_MBYTE_JOIN2)
4466 || mb_ptr2char(curr) < 0x100 || endcurr1 < 0x100)
4467#endif
4468 )
4469 {
4470 /* don't add a space if the line is ending in a space */
4471 if (endcurr1 == ' ')
4472 endcurr1 = endcurr2;
4473 else
4474 ++spaces[t];
4475 /* extra space when 'joinspaces' set and line ends in '.' */
4476 if ( p_js
4477 && (endcurr1 == '.'
4478 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4479 && (endcurr1 == '?' || endcurr1 == '!'))))
4480 ++spaces[t];
4481 }
4482 }
4483 currsize = (int)STRLEN(curr);
4484 sumsize += currsize + spaces[t];
4485 endcurr1 = endcurr2 = NUL;
4486 if (insert_space && currsize > 0)
4487 {
4488#ifdef FEAT_MBYTE
4489 if (has_mbyte)
4490 {
4491 cend = curr + currsize;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004492 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004493 endcurr1 = (*mb_ptr2char)(cend);
4494 if (cend > curr)
4495 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004496 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004497 endcurr2 = (*mb_ptr2char)(cend);
4498 }
4499 }
4500 else
4501#endif
4502 {
4503 endcurr1 = *(curr + currsize - 1);
4504 if (currsize > 1)
4505 endcurr2 = *(curr + currsize - 2);
4506 }
4507 }
4508 line_breakcheck();
4509 if (got_int)
4510 {
4511 ret = FAIL;
4512 goto theend;
4513 }
4514 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004516 /* store the column position before last line */
4517 col = sumsize - currsize - spaces[count - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004519 /* allocate the space for the new line */
4520 newp = alloc_check((unsigned)(sumsize + 1));
4521 cend = newp + sumsize;
4522 *cend = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004524 /*
4525 * Move affected lines to the new long one.
4526 *
4527 * Move marks from each deleted line to the joined line, adjusting the
4528 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4529 * should not really be a problem.
4530 */
4531 for (t = count - 1; ; --t)
4532 {
4533 cend -= currsize;
4534 mch_memmove(cend, curr, (size_t)currsize);
4535 if (spaces[t] > 0)
4536 {
4537 cend -= spaces[t];
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02004538 vim_memset(cend, ' ', (size_t)(spaces[t]));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004539 }
4540 mark_col_adjust(curwin->w_cursor.lnum + t, (colnr_T)0, (linenr_T)-t,
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004541 (long)(cend - newp + spaces[t] - (curr - curr_start)));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004542 if (t == 0)
4543 break;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004544 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1));
Bram Moolenaar81340392012-06-06 16:12:59 +02004545#if defined(FEAT_COMMENTS) || defined(PROTO)
4546 if (remove_comments)
4547 curr += comments[t - 1];
4548#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004549 if (insert_space && t > 1)
4550 curr = skipwhite(curr);
4551 currsize = (int)STRLEN(curr);
4552 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4554
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004555 if (setmark)
4556 {
4557 /* Set the '] mark. */
4558 curwin->w_buffer->b_op_end.lnum = curwin->w_cursor.lnum;
4559 curwin->w_buffer->b_op_end.col = (colnr_T)STRLEN(newp);
4560 }
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004561
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562 /* Only report the change in the first line here, del_lines() will report
4563 * the deleted line. */
4564 changed_lines(curwin->w_cursor.lnum, currsize,
4565 curwin->w_cursor.lnum + 1, 0L);
4566
4567 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004568 * Delete following lines. To do this we move the cursor there
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569 * briefly, and then move it back. After del_lines() the cursor may
4570 * have moved up (last line deleted), so the current lnum is kept in t.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571 */
4572 t = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 ++curwin->w_cursor.lnum;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004574 del_lines(count - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575 curwin->w_cursor.lnum = t;
4576
4577 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004578 * Set the cursor column:
4579 * Vi compatible: use the column of the first join
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004580 * vim: use the column of the last join
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004582 curwin->w_cursor.col =
4583 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 check_cursor_col();
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004585
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586#ifdef FEAT_VIRTUALEDIT
4587 curwin->w_cursor.coladd = 0;
4588#endif
4589 curwin->w_set_curswant = TRUE;
4590
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004591theend:
4592 vim_free(spaces);
Bram Moolenaar81340392012-06-06 16:12:59 +02004593#if defined(FEAT_COMMENTS) || defined(PROTO)
4594 if (remove_comments)
4595 vim_free(comments);
4596#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004597 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598}
4599
4600#ifdef FEAT_COMMENTS
4601/*
4602 * Return TRUE if the two comment leaders given are the same. "lnum" is
4603 * the first line. White-space is ignored. Note that the whole of
4604 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4605 */
4606 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004607same_leader(
4608 linenr_T lnum,
4609 int leader1_len,
4610 char_u *leader1_flags,
4611 int leader2_len,
4612 char_u *leader2_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613{
4614 int idx1 = 0, idx2 = 0;
4615 char_u *p;
4616 char_u *line1;
4617 char_u *line2;
4618
4619 if (leader1_len == 0)
4620 return (leader2_len == 0);
4621
4622 /*
4623 * If first leader has 'f' flag, the lines can be joined only if the
4624 * second line does not have a leader.
4625 * If first leader has 'e' flag, the lines can never be joined.
4626 * If fist leader has 's' flag, the lines can only be joined if there is
4627 * some text after it and the second line has the 'm' flag.
4628 */
4629 if (leader1_flags != NULL)
4630 {
4631 for (p = leader1_flags; *p && *p != ':'; ++p)
4632 {
4633 if (*p == COM_FIRST)
4634 return (leader2_len == 0);
4635 if (*p == COM_END)
4636 return FALSE;
4637 if (*p == COM_START)
4638 {
4639 if (*(ml_get(lnum) + leader1_len) == NUL)
4640 return FALSE;
4641 if (leader2_flags == NULL || leader2_len == 0)
4642 return FALSE;
4643 for (p = leader2_flags; *p && *p != ':'; ++p)
4644 if (*p == COM_MIDDLE)
4645 return TRUE;
4646 return FALSE;
4647 }
4648 }
4649 }
4650
4651 /*
4652 * Get current line and next line, compare the leaders.
4653 * The first line has to be saved, only one line can be locked at a time.
4654 */
4655 line1 = vim_strsave(ml_get(lnum));
4656 if (line1 != NULL)
4657 {
4658 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4659 ;
4660 line2 = ml_get(lnum + 1);
4661 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4662 {
4663 if (!vim_iswhite(line2[idx2]))
4664 {
4665 if (line1[idx1++] != line2[idx2])
4666 break;
4667 }
4668 else
4669 while (vim_iswhite(line1[idx1]))
4670 ++idx1;
4671 }
4672 vim_free(line1);
4673 }
4674 return (idx2 == leader2_len && idx1 == leader1_len);
4675}
4676#endif
4677
4678/*
Bram Moolenaar66accae2012-01-10 13:44:27 +01004679 * Implementation of the format operator 'gq'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 */
4681 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004682op_format(
4683 oparg_T *oap,
4684 int keep_cursor) /* keep cursor on same text char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685{
4686 long old_line_count = curbuf->b_ml.ml_line_count;
4687
4688 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4689 * can put it back there. */
4690 curwin->w_cursor = oap->cursor_start;
4691
4692 if (u_save((linenr_T)(oap->start.lnum - 1),
4693 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4694 return;
4695 curwin->w_cursor = oap->start;
4696
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697 if (oap->is_VIsual)
4698 /* When there is no change: need to remove the Visual selection */
4699 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700
4701 /* Set '[ mark at the start of the formatted area */
4702 curbuf->b_op_start = oap->start;
4703
4704 /* For "gw" remember the cursor position and put it back below (adjusted
4705 * for joined and split lines). */
4706 if (keep_cursor)
4707 saved_cursor = oap->cursor_start;
4708
Bram Moolenaar81a82092008-03-12 16:27:00 +00004709 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710
4711 /*
4712 * Leave the cursor at the first non-blank of the last formatted line.
4713 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4714 * line, so "." will do the next lines.
4715 */
4716 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4717 ++curwin->w_cursor.lnum;
4718 beginline(BL_WHITE | BL_FIX);
4719 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4720 msgmore(old_line_count);
4721
4722 /* put '] mark on the end of the formatted area */
4723 curbuf->b_op_end = curwin->w_cursor;
4724
4725 if (keep_cursor)
4726 {
4727 curwin->w_cursor = saved_cursor;
4728 saved_cursor.lnum = 0;
4729 }
4730
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 if (oap->is_VIsual)
4732 {
4733 win_T *wp;
4734
4735 FOR_ALL_WINDOWS(wp)
4736 {
4737 if (wp->w_old_cursor_lnum != 0)
4738 {
4739 /* When lines have been inserted or deleted, adjust the end of
4740 * the Visual area to be redrawn. */
4741 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4742 wp->w_old_cursor_lnum += old_line_count;
4743 else
4744 wp->w_old_visual_lnum += old_line_count;
4745 }
4746 }
4747 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748}
4749
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004750#if defined(FEAT_EVAL) || defined(PROTO)
4751/*
4752 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4753 */
4754 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004755op_formatexpr(oparg_T *oap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004756{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004757 if (oap->is_VIsual)
4758 /* When there is no change: need to remove the Visual selection */
4759 redraw_curbuf_later(INVERTED);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004760
Bram Moolenaar700303e2010-07-11 17:35:50 +02004761 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0)
4762 /* As documented: when 'formatexpr' returns non-zero fall back to
4763 * internal formatting. */
4764 op_format(oap, FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004765}
4766
4767 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004768fex_format(
4769 linenr_T lnum,
4770 long count,
4771 int c) /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004772{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004773 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4774 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004775 int r;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004776 char_u *fex;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004777
4778 /*
4779 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004780 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004781 */
4782 set_vim_var_nr(VV_LNUM, lnum);
4783 set_vim_var_nr(VV_COUNT, count);
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004784 set_vim_var_char(c);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004785
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004786 /* Make a copy, the option could be changed while calling it. */
4787 fex = vim_strsave(curbuf->b_p_fex);
4788 if (fex == NULL)
4789 return 0;
4790
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004791 /*
4792 * Evaluate the function.
4793 */
4794 if (use_sandbox)
4795 ++sandbox;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004796 r = (int)eval_to_number(fex);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004797 if (use_sandbox)
4798 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004799
4800 set_vim_var_string(VV_CHAR, NULL, -1);
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004801 vim_free(fex);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004802
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004803 return r;
4804}
4805#endif
4806
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807/*
4808 * Format "line_count" lines, starting at the cursor position.
4809 * When "line_count" is negative, format until the end of the paragraph.
4810 * Lines after the cursor line are saved for undo, caller must have saved the
4811 * first line.
4812 */
4813 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004814format_lines(
4815 linenr_T line_count,
4816 int avoid_fex) /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817{
4818 int max_len;
4819 int is_not_par; /* current line not part of parag. */
4820 int next_is_not_par; /* next line not part of paragraph */
4821 int is_end_par; /* at end of paragraph */
4822 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4823 int next_is_start_par = FALSE;
4824#ifdef FEAT_COMMENTS
4825 int leader_len = 0; /* leader len of current line */
4826 int next_leader_len; /* leader len of next line */
4827 char_u *leader_flags = NULL; /* flags for leader of current line */
4828 char_u *next_leader_flags; /* flags for leader of next line */
4829 int do_comments; /* format comments */
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004830 int do_comments_list = 0; /* format comments with 'n' or '2' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831#endif
4832 int advance = TRUE;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004833 int second_indent = -1; /* indent for second line (comment
4834 * aware) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835 int do_second_indent;
4836 int do_number_indent;
4837 int do_trail_white;
4838 int first_par_line = TRUE;
4839 int smd_save;
4840 long count;
4841 int need_set_indent = TRUE; /* set indent of next paragraph */
4842 int force_format = FALSE;
4843 int old_State = State;
4844
4845 /* length of a line to force formatting: 3 * 'tw' */
4846 max_len = comp_textwidth(TRUE) * 3;
4847
4848 /* check for 'q', '2' and '1' in 'formatoptions' */
4849#ifdef FEAT_COMMENTS
4850 do_comments = has_format_option(FO_Q_COMS);
4851#endif
4852 do_second_indent = has_format_option(FO_Q_SECOND);
4853 do_number_indent = has_format_option(FO_Q_NUMBER);
4854 do_trail_white = has_format_option(FO_WHITE_PAR);
4855
4856 /*
4857 * Get info about the previous and current line.
4858 */
4859 if (curwin->w_cursor.lnum > 1)
4860 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4861#ifdef FEAT_COMMENTS
4862 , &leader_len, &leader_flags, do_comments
4863#endif
4864 );
4865 else
4866 is_not_par = TRUE;
4867 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4868#ifdef FEAT_COMMENTS
4869 , &next_leader_len, &next_leader_flags, do_comments
4870#endif
4871 );
4872 is_end_par = (is_not_par || next_is_not_par);
4873 if (!is_end_par && do_trail_white)
4874 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4875
4876 curwin->w_cursor.lnum--;
4877 for (count = line_count; count != 0 && !got_int; --count)
4878 {
4879 /*
4880 * Advance to next paragraph.
4881 */
4882 if (advance)
4883 {
4884 curwin->w_cursor.lnum++;
4885 prev_is_end_par = is_end_par;
4886 is_not_par = next_is_not_par;
4887#ifdef FEAT_COMMENTS
4888 leader_len = next_leader_len;
4889 leader_flags = next_leader_flags;
4890#endif
4891 }
4892
4893 /*
4894 * The last line to be formatted.
4895 */
4896 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4897 {
4898 next_is_not_par = TRUE;
4899#ifdef FEAT_COMMENTS
4900 next_leader_len = 0;
4901 next_leader_flags = NULL;
4902#endif
4903 }
4904 else
4905 {
4906 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4907#ifdef FEAT_COMMENTS
4908 , &next_leader_len, &next_leader_flags, do_comments
4909#endif
4910 );
4911 if (do_number_indent)
4912 next_is_start_par =
4913 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4914 }
4915 advance = TRUE;
4916 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4917 if (!is_end_par && do_trail_white)
4918 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4919
4920 /*
4921 * Skip lines that are not in a paragraph.
4922 */
4923 if (is_not_par)
4924 {
4925 if (line_count < 0)
4926 break;
4927 }
4928 else
4929 {
4930 /*
4931 * For the first line of a paragraph, check indent of second line.
4932 * Don't do this for comments and empty lines.
4933 */
4934 if (first_par_line
4935 && (do_second_indent || do_number_indent)
4936 && prev_is_end_par
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004937 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004939 if (do_second_indent && !LINEEMPTY(curwin->w_cursor.lnum + 1))
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004940 {
4941#ifdef FEAT_COMMENTS
4942 if (leader_len == 0 && next_leader_len == 0)
4943 {
4944 /* no comment found */
4945#endif
4946 second_indent =
4947 get_indent_lnum(curwin->w_cursor.lnum + 1);
4948#ifdef FEAT_COMMENTS
4949 }
4950 else
4951 {
4952 second_indent = next_leader_len;
4953 do_comments_list = 1;
4954 }
4955#endif
4956 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 else if (do_number_indent)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004958 {
4959#ifdef FEAT_COMMENTS
4960 if (leader_len == 0 && next_leader_len == 0)
4961 {
4962 /* no comment found */
4963#endif
4964 second_indent =
4965 get_number_indent(curwin->w_cursor.lnum);
4966#ifdef FEAT_COMMENTS
4967 }
4968 else
4969 {
4970 /* get_number_indent() is now "comment aware"... */
4971 second_indent =
4972 get_number_indent(curwin->w_cursor.lnum);
4973 do_comments_list = 1;
4974 }
4975#endif
4976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 }
4978
4979 /*
4980 * When the comment leader changes, it's the end of the paragraph.
4981 */
4982 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4983#ifdef FEAT_COMMENTS
4984 || !same_leader(curwin->w_cursor.lnum,
4985 leader_len, leader_flags,
4986 next_leader_len, next_leader_flags)
4987#endif
4988 )
4989 is_end_par = TRUE;
4990
4991 /*
4992 * If we have got to the end of a paragraph, or the line is
4993 * getting long, format it.
4994 */
4995 if (is_end_par || force_format)
4996 {
4997 if (need_set_indent)
4998 /* replace indent in first line with minimal number of
4999 * tabs and spaces, according to current options */
5000 (void)set_indent(get_indent(), SIN_CHANGED);
5001
5002 /* put cursor on last non-space */
5003 State = NORMAL; /* don't go past end-of-line */
5004 coladvance((colnr_T)MAXCOL);
5005 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
5006 dec_cursor();
5007
5008 /* do the formatting, without 'showmode' */
5009 State = INSERT; /* for open_line() */
5010 smd_save = p_smd;
5011 p_smd = FALSE;
5012 insertchar(NUL, INSCHAR_FORMAT
5013#ifdef FEAT_COMMENTS
5014 + (do_comments ? INSCHAR_DO_COM : 0)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005015 + (do_comments && do_comments_list
5016 ? INSCHAR_COM_LIST : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00005018 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019 State = old_State;
5020 p_smd = smd_save;
5021 second_indent = -1;
5022 /* at end of par.: need to set indent of next par. */
5023 need_set_indent = is_end_par;
5024 if (is_end_par)
5025 {
5026 /* When called with a negative line count, break at the
5027 * end of the paragraph. */
5028 if (line_count < 0)
5029 break;
5030 first_par_line = TRUE;
5031 }
5032 force_format = FALSE;
5033 }
5034
5035 /*
5036 * When still in same paragraph, join the lines together. But
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005037 * first delete the leader from the second line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 */
5039 if (!is_end_par)
5040 {
5041 advance = FALSE;
5042 curwin->w_cursor.lnum++;
5043 curwin->w_cursor.col = 0;
5044 if (line_count < 0 && u_save_cursor() == FAIL)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02005045 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046#ifdef FEAT_COMMENTS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 if (next_leader_len > 0)
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005048 {
5049 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
5051 (long)-next_leader_len);
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005052 } else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053#endif
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005054 if (second_indent > 0) /* the "leader" for FO_Q_SECOND */
5055 {
5056 char_u *p = ml_get_curline();
Bram Moolenaar92c2db82013-11-02 23:59:35 +01005057 int indent = (int)(skipwhite(p) - p);
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005058
5059 if (indent > 0)
5060 {
5061 (void)del_bytes(indent, FALSE, FALSE);
5062 mark_col_adjust(curwin->w_cursor.lnum,
5063 (colnr_T)0, 0L, (long)-indent);
Bram Moolenaar92c2db82013-11-02 23:59:35 +01005064 }
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 curwin->w_cursor.lnum--;
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02005067 if (do_join(2, TRUE, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 {
5069 beep_flush();
5070 break;
5071 }
5072 first_par_line = FALSE;
5073 /* If the line is getting long, format it next time */
5074 if (STRLEN(ml_get_curline()) > (size_t)max_len)
5075 force_format = TRUE;
5076 else
5077 force_format = FALSE;
5078 }
5079 }
5080 line_breakcheck();
5081 }
5082}
5083
5084/*
5085 * Return TRUE if line "lnum" ends in a white character.
5086 */
5087 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005088ends_in_white(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089{
5090 char_u *s = ml_get(lnum);
5091 size_t l;
5092
5093 if (*s == NUL)
5094 return FALSE;
5095 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
5096 * invocation may call function multiple times". */
5097 l = STRLEN(s) - 1;
5098 return vim_iswhite(s[l]);
5099}
5100
5101/*
5102 * Blank lines, and lines containing only the comment leader, are left
5103 * untouched by the formatting. The function returns TRUE in this
5104 * case. It also returns TRUE when a line starts with the end of a comment
5105 * ('e' in comment flags), so that this line is skipped, and not joined to the
5106 * previous line. A new paragraph starts after a blank line, or when the
5107 * comment leader changes -- webb.
5108 */
5109#ifdef FEAT_COMMENTS
5110 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005111fmt_check_par(
5112 linenr_T lnum,
5113 int *leader_len,
5114 char_u **leader_flags,
5115 int do_comments)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116{
5117 char_u *flags = NULL; /* init for GCC */
5118 char_u *ptr;
5119
5120 ptr = ml_get(lnum);
5121 if (do_comments)
Bram Moolenaar81340392012-06-06 16:12:59 +02005122 *leader_len = get_leader_len(ptr, leader_flags, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123 else
5124 *leader_len = 0;
5125
5126 if (*leader_len > 0)
5127 {
5128 /*
5129 * Search for 'e' flag in comment leader flags.
5130 */
5131 flags = *leader_flags;
5132 while (*flags && *flags != ':' && *flags != COM_END)
5133 ++flags;
5134 }
5135
5136 return (*skipwhite(ptr + *leader_len) == NUL
5137 || (*leader_len > 0 && *flags == COM_END)
5138 || startPS(lnum, NUL, FALSE));
5139}
5140#else
5141 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005142fmt_check_par(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143{
5144 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
5145}
5146#endif
5147
5148/*
5149 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
5150 * previous line is in the same paragraph. Used for auto-formatting.
5151 */
5152 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005153paragraph_start(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154{
5155 char_u *p;
5156#ifdef FEAT_COMMENTS
5157 int leader_len = 0; /* leader len of current line */
5158 char_u *leader_flags = NULL; /* flags for leader of current line */
5159 int next_leader_len; /* leader len of next line */
5160 char_u *next_leader_flags; /* flags for leader of next line */
5161 int do_comments; /* format comments */
5162#endif
5163
5164 if (lnum <= 1)
5165 return TRUE; /* start of the file */
5166
5167 p = ml_get(lnum - 1);
5168 if (*p == NUL)
5169 return TRUE; /* after empty line */
5170
5171#ifdef FEAT_COMMENTS
5172 do_comments = has_format_option(FO_Q_COMS);
5173#endif
5174 if (fmt_check_par(lnum - 1
5175#ifdef FEAT_COMMENTS
5176 , &leader_len, &leader_flags, do_comments
5177#endif
5178 ))
5179 return TRUE; /* after non-paragraph line */
5180
5181 if (fmt_check_par(lnum
5182#ifdef FEAT_COMMENTS
5183 , &next_leader_len, &next_leader_flags, do_comments
5184#endif
5185 ))
5186 return TRUE; /* "lnum" is not a paragraph line */
5187
5188 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
5189 return TRUE; /* missing trailing space in previous line. */
5190
5191 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
5192 return TRUE; /* numbered item starts in "lnum". */
5193
5194#ifdef FEAT_COMMENTS
5195 if (!same_leader(lnum - 1, leader_len, leader_flags,
5196 next_leader_len, next_leader_flags))
5197 return TRUE; /* change of comment leader. */
5198#endif
5199
5200 return FALSE;
5201}
5202
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203/*
5204 * prepare a few things for block mode yank/delete/tilde
5205 *
5206 * for delete:
5207 * - textlen includes the first/last char to be (partly) deleted
5208 * - start/endspaces is the number of columns that are taken by the
5209 * first/last deleted char minus the number of columns that have to be
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +00005210 * deleted.
5211 * for yank and tilde:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005212 * - textlen includes the first/last char to be wholly yanked
5213 * - start/endspaces is the number of columns of the first/last yanked char
5214 * that are to be yanked.
5215 */
5216 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005217block_prep(
5218 oparg_T *oap,
5219 struct block_def *bdp,
5220 linenr_T lnum,
5221 int is_del)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222{
5223 int incr = 0;
5224 char_u *pend;
5225 char_u *pstart;
5226 char_u *line;
5227 char_u *prev_pstart;
5228 char_u *prev_pend;
5229
5230 bdp->startspaces = 0;
5231 bdp->endspaces = 0;
5232 bdp->textlen = 0;
5233 bdp->start_vcol = 0;
5234 bdp->end_vcol = 0;
5235#ifdef FEAT_VISUALEXTRA
5236 bdp->is_short = FALSE;
5237 bdp->is_oneChar = FALSE;
5238 bdp->pre_whitesp = 0;
5239 bdp->pre_whitesp_c = 0;
5240 bdp->end_char_vcols = 0;
5241#endif
5242 bdp->start_char_vcols = 0;
5243
5244 line = ml_get(lnum);
5245 pstart = line;
5246 prev_pstart = line;
5247 while (bdp->start_vcol < oap->start_vcol && *pstart)
5248 {
5249 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02005250 incr = lbr_chartabsize(line, pstart, (colnr_T)bdp->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 bdp->start_vcol += incr;
5252#ifdef FEAT_VISUALEXTRA
5253 if (vim_iswhite(*pstart))
5254 {
5255 bdp->pre_whitesp += incr;
5256 bdp->pre_whitesp_c++;
5257 }
5258 else
5259 {
5260 bdp->pre_whitesp = 0;
5261 bdp->pre_whitesp_c = 0;
5262 }
5263#endif
5264 prev_pstart = pstart;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005265 MB_PTR_ADV(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 }
5267 bdp->start_char_vcols = incr;
5268 if (bdp->start_vcol < oap->start_vcol) /* line too short */
5269 {
5270 bdp->end_vcol = bdp->start_vcol;
5271#ifdef FEAT_VISUALEXTRA
5272 bdp->is_short = TRUE;
5273#endif
5274 if (!is_del || oap->op_type == OP_APPEND)
5275 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
5276 }
5277 else
5278 {
5279 /* notice: this converts partly selected Multibyte characters to
5280 * spaces, too. */
5281 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
5282 if (is_del && bdp->startspaces)
5283 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
5284 pend = pstart;
5285 bdp->end_vcol = bdp->start_vcol;
5286 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
5287 {
5288#ifdef FEAT_VISUALEXTRA
5289 bdp->is_oneChar = TRUE;
5290#endif
5291 if (oap->op_type == OP_INSERT)
5292 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5293 else if (oap->op_type == OP_APPEND)
5294 {
5295 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
5296 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5297 }
5298 else
5299 {
5300 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
5301 if (is_del && oap->op_type != OP_LSHIFT)
5302 {
5303 /* just putting the sum of those two into
5304 * bdp->startspaces doesn't work for Visual replace,
5305 * so we have to split the tab in two */
5306 bdp->startspaces = bdp->start_char_vcols
5307 - (bdp->start_vcol - oap->start_vcol);
5308 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5309 }
5310 }
5311 }
5312 else
5313 {
5314 prev_pend = pend;
5315 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
5316 {
5317 /* Count a tab for what it's worth (if list mode not on) */
5318 prev_pend = pend;
Bram Moolenaar1dc92332015-01-27 13:22:20 +01005319 incr = lbr_chartabsize_adv(line, &pend, (colnr_T)bdp->end_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320 bdp->end_vcol += incr;
5321 }
5322 if (bdp->end_vcol <= oap->end_vcol
5323 && (!is_del
5324 || oap->op_type == OP_APPEND
5325 || oap->op_type == OP_REPLACE)) /* line too short */
5326 {
5327#ifdef FEAT_VISUALEXTRA
5328 bdp->is_short = TRUE;
5329#endif
5330 /* Alternative: include spaces to fill up the block.
5331 * Disadvantage: can lead to trailing spaces when the line is
5332 * short where the text is put */
5333 /* if (!is_del || oap->op_type == OP_APPEND) */
5334 if (oap->op_type == OP_APPEND || virtual_op)
5335 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00005336 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 else
5338 bdp->endspaces = 0; /* replace doesn't add characters */
5339 }
5340 else if (bdp->end_vcol > oap->end_vcol)
5341 {
5342 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5343 if (!is_del && bdp->endspaces)
5344 {
5345 bdp->endspaces = incr - bdp->endspaces;
5346 if (pend != pstart)
5347 pend = prev_pend;
5348 }
5349 }
5350 }
5351#ifdef FEAT_VISUALEXTRA
5352 bdp->end_char_vcols = incr;
5353#endif
5354 if (is_del && bdp->startspaces)
5355 pstart = prev_pstart;
5356 bdp->textlen = (int)(pend - pstart);
5357 }
5358 bdp->textcol = (colnr_T) (pstart - line);
5359 bdp->textstart = pstart;
5360}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362/*
Bram Moolenaard79e5502016-01-10 22:13:02 +01005363 * Handle the add/subtract operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005365 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005366op_addsub(
5367 oparg_T *oap,
5368 linenr_T Prenum1, /* Amount of add/subtract */
5369 int g_cmd) /* was g<c-a>/g<c-x> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370{
Bram Moolenaard79e5502016-01-10 22:13:02 +01005371 pos_T pos;
5372 struct block_def bd;
5373 int change_cnt = 0;
5374 linenr_T amount = Prenum1;
5375
5376 if (!VIsual_active)
5377 {
5378 pos = curwin->w_cursor;
5379 if (u_save_cursor() == FAIL)
5380 return;
5381 change_cnt = do_addsub(oap->op_type, &pos, 0, amount);
5382 if (change_cnt)
5383 changed_lines(pos.lnum, 0, pos.lnum + 1, 0L);
5384 }
5385 else
5386 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005387 int one_change;
5388 int length;
5389 pos_T startpos;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005390
5391 if (u_save((linenr_T)(oap->start.lnum - 1),
5392 (linenr_T)(oap->end.lnum + 1)) == FAIL)
5393 return;
5394
5395 pos = oap->start;
5396 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
5397 {
5398 if (oap->block_mode) /* Visual block mode */
5399 {
5400 block_prep(oap, &bd, pos.lnum, FALSE);
5401 pos.col = bd.textcol;
5402 length = bd.textlen;
5403 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005404 else if (oap->motion_type == MLINE)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005405 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005406 curwin->w_cursor.col = 0;
5407 pos.col = 0;
5408 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5409 }
5410 else /* oap->motion_type == MCHAR */
5411 {
5412 if (!oap->inclusive)
5413 dec(&(oap->end));
5414 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5415 pos.col = 0;
5416 if (pos.lnum == oap->start.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005417 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005418 pos.col += oap->start.col;
5419 length -= oap->start.col;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005420 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005421 if (pos.lnum == oap->end.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005422 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005423 length = (int)STRLEN(ml_get(oap->end.lnum));
5424 if (oap->end.col >= length)
5425 oap->end.col = length - 1;
5426 length = oap->end.col - pos.col + 1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005427 }
5428 }
5429 one_change = do_addsub(oap->op_type, &pos, length, amount);
5430 if (one_change)
5431 {
5432 /* Remember the start position of the first change. */
5433 if (change_cnt == 0)
5434 startpos = curbuf->b_op_start;
5435 ++change_cnt;
5436 }
5437
5438#ifdef FEAT_NETBEANS_INTG
5439 if (netbeans_active() && one_change)
5440 {
5441 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
5442
5443 netbeans_removed(curbuf, pos.lnum, pos.col, (long)length);
5444 netbeans_inserted(curbuf, pos.lnum, pos.col,
5445 &ptr[pos.col], length);
5446 }
5447#endif
5448 if (g_cmd && one_change)
5449 amount += Prenum1;
5450 }
5451 if (change_cnt)
5452 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
5453
5454 if (!change_cnt && oap->is_VIsual)
5455 /* No change: need to remove the Visual selection */
5456 redraw_curbuf_later(INVERTED);
5457
5458 /* Set '[ mark if something changed. Keep the last end
5459 * position from do_addsub(). */
5460 if (change_cnt > 0)
5461 curbuf->b_op_start = startpos;
5462
5463 if (change_cnt > p_report)
5464 {
5465 if (change_cnt == 1)
5466 MSG(_("1 line changed"));
5467 else
5468 smsg((char_u *)_("%ld lines changed"), change_cnt);
5469 }
5470 }
5471}
5472
5473/*
5474 * Add or subtract 'Prenum1' from a number in a line
5475 * op_type is OP_NR_ADD or OP_NR_SUB
5476 *
5477 * Returns TRUE if some character was changed.
5478 */
5479 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005480do_addsub(
5481 int op_type,
5482 pos_T *pos,
5483 int length,
5484 linenr_T Prenum1)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005485{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486 int col;
5487 char_u *buf1;
5488 char_u buf2[NUMBUFLEN];
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005489 int pre; /* 'X'/'x': hex; '0': octal; 'B'/'b': bin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005491 uvarnumber_T n;
5492 uvarnumber_T oldn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 char_u *ptr;
5494 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495 int todel;
5496 int dohex;
5497 int dooct;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005498 int dobin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 int doalp;
5500 int firstdigit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501 int subtract;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005502 int negative = FALSE;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02005503 int was_positive = TRUE;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005504 int visual = VIsual_active;
Bram Moolenaar3ec32612015-07-12 15:02:38 +02005505 int did_change = FALSE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005506 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005507 int maxlen = 0;
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005508 pos_T startpos;
5509 pos_T endpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510
5511 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5512 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005513 dobin = (vim_strchr(curbuf->b_p_nf, 'b') != NULL); /* "Bin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5515
Bram Moolenaard79e5502016-01-10 22:13:02 +01005516 curwin->w_cursor = *pos;
5517 ptr = ml_get(pos->lnum);
5518 col = pos->col;
5519
5520 if (*ptr == NUL)
5521 goto theend;
5522
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523 /*
5524 * First check if we are on a hexadecimal number, after the "0x".
5525 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005526 if (!VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005528 if (dobin)
5529 while (col > 0 && vim_isbdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005530 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005531 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005532#ifdef FEAT_MBYTE
5533 if (has_mbyte)
5534 col -= (*mb_head_off)(ptr, ptr + col);
5535#endif
5536 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005537
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005538 if (dohex)
5539 while (col > 0 && vim_isxdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005540 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005541 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005542#ifdef FEAT_MBYTE
5543 if (has_mbyte)
5544 col -= (*mb_head_off)(ptr, ptr + col);
5545#endif
5546 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005547
5548 if ( dobin
5549 && dohex
5550 && ! ((col > 0
5551 && (ptr[col] == 'X'
5552 || ptr[col] == 'x')
5553 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005554#ifdef FEAT_MBYTE
5555 && (!has_mbyte ||
5556 !(*mb_head_off)(ptr, ptr + col - 1))
5557#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005558 && vim_isxdigit(ptr[col + 1]))))
5559 {
5560
5561 /* In case of binary/hexadecimal pattern overlap match, rescan */
5562
Bram Moolenaard79e5502016-01-10 22:13:02 +01005563 col = pos->col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005564
5565 while (col > 0 && vim_isdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005566 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005567 col--;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005568#ifdef FEAT_MBYTE
5569 if (has_mbyte)
5570 col -= (*mb_head_off)(ptr, ptr + col);
5571#endif
5572 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005573 }
5574
5575 if (( dohex
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005576 && col > 0
5577 && (ptr[col] == 'X'
5578 || ptr[col] == 'x')
5579 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005580#ifdef FEAT_MBYTE
5581 && (!has_mbyte ||
5582 !(*mb_head_off)(ptr, ptr + col - 1))
5583#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005584 && vim_isxdigit(ptr[col + 1])) ||
5585 ( dobin
5586 && col > 0
5587 && (ptr[col] == 'B'
5588 || ptr[col] == 'b')
5589 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005590#ifdef FEAT_MBYTE
5591 && (!has_mbyte ||
5592 !(*mb_head_off)(ptr, ptr + col - 1))
5593#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005594 && vim_isbdigit(ptr[col + 1])))
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005595 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005596 /* Found hexadecimal or binary number, move to its start. */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005597 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005598#ifdef FEAT_MBYTE
5599 if (has_mbyte)
5600 col -= (*mb_head_off)(ptr, ptr + col);
5601#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005602 }
5603 else
5604 {
5605 /*
5606 * Search forward and then backward to find the start of number.
5607 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005608 col = pos->col;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005609
5610 while (ptr[col] != NUL
5611 && !vim_isdigit(ptr[col])
5612 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005613 col += MB_PTR2LEN(ptr + col);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005614
5615 while (col > 0
5616 && vim_isdigit(ptr[col - 1])
5617 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005618 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005619 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005620#ifdef FEAT_MBYTE
5621 if (has_mbyte)
5622 col -= (*mb_head_off)(ptr, ptr + col);
5623#endif
5624 }
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005625 }
5626 }
5627
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005628 if (visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005629 {
5630 while (ptr[col] != NUL && length > 0
5631 && !vim_isdigit(ptr[col])
5632 && !(doalp && ASCII_ISALPHA(ptr[col])))
5633 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005634 int mb_len = MB_PTR2LEN(ptr + col);
5635
5636 col += mb_len;
5637 length -= mb_len;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005638 }
5639
5640 if (length == 0)
5641 goto theend;
5642
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005643 if (col > pos->col && ptr[col - 1] == '-'
5644#ifdef FEAT_MBYTE
5645 && (!has_mbyte ||
5646 !(*mb_head_off)(ptr, ptr + col - 1))
5647#endif
5648 )
Bram Moolenaard79e5502016-01-10 22:13:02 +01005649 {
5650 negative = TRUE;
5651 was_positive = FALSE;
5652 }
5653 }
5654
5655 /*
5656 * If a number was found, and saving for undo works, replace the number.
5657 */
5658 firstdigit = ptr[col];
5659 if (!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5660 {
5661 beep_flush();
5662 goto theend;
5663 }
5664
5665 if (doalp && ASCII_ISALPHA(firstdigit))
5666 {
5667 /* decrement or increment alphabetic character */
5668 if (op_type == OP_NR_SUB)
5669 {
5670 if (CharOrd(firstdigit) < Prenum1)
5671 {
5672 if (isupper(firstdigit))
5673 firstdigit = 'A';
5674 else
5675 firstdigit = 'a';
5676 }
5677 else
5678#ifdef EBCDIC
5679 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5680#else
5681 firstdigit -= Prenum1;
5682#endif
5683 }
5684 else
5685 {
5686 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5687 {
5688 if (isupper(firstdigit))
5689 firstdigit = 'Z';
5690 else
5691 firstdigit = 'z';
5692 }
5693 else
5694#ifdef EBCDIC
5695 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5696#else
5697 firstdigit += Prenum1;
5698#endif
5699 }
5700 curwin->w_cursor.col = col;
5701 if (!did_change)
5702 startpos = curwin->w_cursor;
5703 did_change = TRUE;
5704 (void)del_char(FALSE);
5705 ins_char(firstdigit);
5706 endpos = curwin->w_cursor;
5707 curwin->w_cursor.col = col;
5708 }
5709 else
5710 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005711 if (col > 0 && ptr[col - 1] == '-'
5712#ifdef FEAT_MBYTE
5713 && (!has_mbyte ||
5714 !(*mb_head_off)(ptr, ptr + col - 1))
5715#endif
5716 && !visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005717 {
5718 /* negative number */
5719 --col;
5720 negative = TRUE;
5721 }
5722 /* get the number value (unsigned) */
5723 if (visual && VIsual_mode != 'V')
5724 maxlen = (curbuf->b_visual.vi_curswant == MAXCOL
5725 ? (int)STRLEN(ptr) - col
5726 : length);
5727
5728 vim_str2nr(ptr + col, &pre, &length,
5729 0 + (dobin ? STR2NR_BIN : 0)
5730 + (dooct ? STR2NR_OCT : 0)
5731 + (dohex ? STR2NR_HEX : 0),
5732 NULL, &n, maxlen);
5733
5734 /* ignore leading '-' for hex and octal and bin numbers */
5735 if (pre && negative)
5736 {
5737 ++col;
5738 --length;
5739 negative = FALSE;
5740 }
5741 /* add or subtract */
5742 subtract = FALSE;
5743 if (op_type == OP_NR_SUB)
5744 subtract ^= TRUE;
5745 if (negative)
5746 subtract ^= TRUE;
5747
5748 oldn = n;
5749 if (subtract)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005750 n -= (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005751 else
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005752 n += (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005753 /* handle wraparound for decimal numbers */
5754 if (!pre)
5755 {
5756 if (subtract)
5757 {
5758 if (n > oldn)
5759 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005760 n = 1 + (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005761 negative ^= TRUE;
5762 }
5763 }
5764 else
5765 {
5766 /* add */
5767 if (n < oldn)
5768 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005769 n = (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005770 negative ^= TRUE;
5771 }
5772 }
5773 if (n == 0)
5774 negative = FALSE;
5775 }
5776
5777 if (visual && !was_positive && !negative && col > 0)
5778 {
5779 /* need to remove the '-' */
5780 col--;
5781 length++;
5782 }
5783
5784 /*
5785 * Delete the old number.
5786 */
5787 curwin->w_cursor.col = col;
5788 if (!did_change)
5789 startpos = curwin->w_cursor;
5790 did_change = TRUE;
5791 todel = length;
5792 c = gchar_cursor();
5793 /*
5794 * Don't include the '-' in the length, only the length of the
5795 * part after it is kept the same.
5796 */
5797 if (c == '-')
5798 --length;
5799 while (todel-- > 0)
5800 {
5801 if (c < 0x100 && isalpha(c))
5802 {
5803 if (isupper(c))
5804 hexupper = TRUE;
5805 else
5806 hexupper = FALSE;
5807 }
5808 /* del_char() will mark line needing displaying */
5809 (void)del_char(FALSE);
5810 c = gchar_cursor();
5811 }
5812
5813 /*
5814 * Prepare the leading characters in buf1[].
5815 * When there are many leading zeros it could be very long.
5816 * Allocate a bit too much.
5817 */
5818 buf1 = alloc((unsigned)length + NUMBUFLEN);
5819 if (buf1 == NULL)
5820 goto theend;
5821 ptr = buf1;
Bram Moolenaardc633cf2016-04-23 14:33:19 +02005822 if (negative && (!visual || was_positive))
Bram Moolenaard79e5502016-01-10 22:13:02 +01005823 {
5824 *ptr++ = '-';
5825 }
5826 if (pre)
5827 {
5828 *ptr++ = '0';
5829 --length;
5830 }
5831 if (pre == 'b' || pre == 'B' ||
5832 pre == 'x' || pre == 'X')
5833 {
5834 *ptr++ = pre;
5835 --length;
5836 }
5837
5838 /*
5839 * Put the number characters in buf2[].
5840 */
5841 if (pre == 'b' || pre == 'B')
5842 {
5843 int i;
5844 int bit = 0;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005845 int bits = sizeof(uvarnumber_T) * 8;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005846
5847 /* leading zeros */
5848 for (bit = bits; bit > 0; bit--)
5849 if ((n >> (bit - 1)) & 0x1) break;
5850
5851 for (i = 0; bit > 0; bit--)
5852 buf2[i++] = ((n >> (bit - 1)) & 0x1) ? '1' : '0';
5853
5854 buf2[i] = '\0';
5855 }
5856 else if (pre == 0)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005857 vim_snprintf((char *)buf2, NUMBUFLEN, "%llu", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005858 else if (pre == '0')
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005859 vim_snprintf((char *)buf2, NUMBUFLEN, "%llo", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005860 else if (pre && hexupper)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005861 vim_snprintf((char *)buf2, NUMBUFLEN, "%llX", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005862 else
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005863 vim_snprintf((char *)buf2, NUMBUFLEN, "%llx", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005864 length -= (int)STRLEN(buf2);
5865
5866 /*
5867 * Adjust number of zeros to the new number of digits, so the
5868 * total length of the number remains the same.
5869 * Don't do this when
5870 * the result may look like an octal number.
5871 */
5872 if (firstdigit == '0' && !(dooct && pre == 0))
5873 while (length-- > 0)
5874 *ptr++ = '0';
5875 *ptr = NUL;
5876 STRCAT(buf1, buf2);
5877 ins_str(buf1); /* insert the new number */
5878 vim_free(buf1);
5879 endpos = curwin->w_cursor;
5880 if (did_change && curwin->w_cursor.col)
5881 --curwin->w_cursor.col;
5882 }
5883
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005884 if (did_change)
5885 {
5886 /* set the '[ and '] marks */
5887 curbuf->b_op_start = startpos;
5888 curbuf->b_op_end = endpos;
5889 if (curbuf->b_op_end.col > 0)
5890 --curbuf->b_op_end.col;
5891 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01005892
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005893theend:
5894 if (visual)
5895 curwin->w_cursor = save_cursor;
Bram Moolenaar8e081252016-03-21 23:13:32 +01005896 else if (did_change)
5897 curwin->w_set_curswant = TRUE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005898
Bram Moolenaard79e5502016-01-10 22:13:02 +01005899 return did_change;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900}
5901
5902#ifdef FEAT_VIMINFO
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005903
5904static yankreg_T *y_read_regs = NULL;
5905
5906#define REG_PREVIOUS 1
5907#define REG_EXEC 2
5908
5909/*
5910 * Prepare for reading viminfo registers when writing viminfo later.
5911 */
5912 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02005913prepare_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005914{
5915 y_read_regs = (yankreg_T *)alloc_clear(NUM_REGISTERS
5916 * (int)sizeof(yankreg_T));
5917}
5918
5919 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02005920finish_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005921{
5922 int i;
5923 int j;
5924
5925 if (y_read_regs != NULL)
5926 {
5927 for (i = 0; i < NUM_REGISTERS; ++i)
5928 if (y_read_regs[i].y_array != NULL)
5929 {
5930 for (j = 0; j < y_read_regs[i].y_size; j++)
5931 vim_free(y_read_regs[i].y_array[j]);
5932 vim_free(y_read_regs[i].y_array);
5933 }
5934 vim_free(y_read_regs);
5935 y_read_regs = NULL;
5936 }
5937}
5938
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005940read_viminfo_register(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005941{
5942 int eof;
5943 int do_it = TRUE;
5944 int size;
5945 int limit;
5946 int i;
5947 int set_prev = FALSE;
5948 char_u *str;
5949 char_u **array = NULL;
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01005950 int new_type = MCHAR; /* init to shut up compiler */
5951 colnr_T new_width = 0; /* init to shut up compiler */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005952
5953 /* We only get here (hopefully) if line[0] == '"' */
5954 str = virp->vir_line + 1;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005955
5956 /* If the line starts with "" this is the y_previous register. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957 if (*str == '"')
5958 {
5959 set_prev = TRUE;
5960 str++;
5961 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00005962
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963 if (!ASCII_ISALNUM(*str) && *str != '-')
5964 {
5965 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5966 return TRUE; /* too many errors, pretend end-of-file */
5967 do_it = FALSE;
5968 }
5969 get_yank_register(*str++, FALSE);
5970 if (!force && y_current->y_array != NULL)
5971 do_it = FALSE;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005972
5973 if (*str == '@')
5974 {
5975 /* "x@: register x used for @@ */
5976 if (force || execreg_lastc == NUL)
5977 execreg_lastc = str[-1];
5978 }
5979
Bram Moolenaar071d4272004-06-13 20:20:40 +00005980 size = 0;
5981 limit = 100; /* Optimized for registers containing <= 100 lines */
5982 if (do_it)
5983 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01005984 /*
5985 * Build the new register in array[].
5986 * y_array is kept as-is until done.
5987 * The "do_it" flag is reset when something is wrong, in which case
5988 * array[] needs to be freed.
5989 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990 if (set_prev)
5991 y_previous = y_current;
Bram Moolenaare88b0032014-12-17 21:00:49 +01005992 array = (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
Bram Moolenaar42b94362009-05-26 16:12:37 +00005993 str = skipwhite(skiptowhite(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005994 if (STRNCMP(str, "CHAR", 4) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01005995 new_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996 else if (STRNCMP(str, "BLOCK", 5) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01005997 new_type = MBLOCK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01005999 new_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000 /* get the block width; if it's missing we get a zero, which is OK */
6001 str = skipwhite(skiptowhite(str));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006002 new_width = getdigits(&str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006003 }
6004
6005 while (!(eof = viminfo_readline(virp))
6006 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
6007 {
6008 if (do_it)
6009 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006010 if (size == limit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006012 char_u **new_array = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006014
6015 if (new_array == NULL)
6016 {
6017 do_it = FALSE;
6018 break;
6019 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006020 for (i = 0; i < limit; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006021 new_array[i] = array[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006022 vim_free(array);
Bram Moolenaare88b0032014-12-17 21:00:49 +01006023 array = new_array;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024 limit *= 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006025 }
6026 str = viminfo_readstring(virp, 1, TRUE);
6027 if (str != NULL)
6028 array[size++] = str;
6029 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006030 /* error, don't store the result */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006031 do_it = FALSE;
6032 }
6033 }
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01006034
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035 if (do_it)
6036 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006037 /* free y_array[] */
6038 for (i = 0; i < y_current->y_size; i++)
6039 vim_free(y_current->y_array[i]);
6040 vim_free(y_current->y_array);
6041
6042 y_current->y_type = new_type;
6043 y_current->y_width = new_width;
6044 y_current->y_size = size;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006045 y_current->y_time_set = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006046 if (size == 0)
6047 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006048 y_current->y_array = NULL;
6049 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006050 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006052 /* Move the lines from array[] to y_array[]. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006053 y_current->y_array =
6054 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
6055 for (i = 0; i < size; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006056 {
6057 if (y_current->y_array == NULL)
6058 vim_free(array[i]);
6059 else
6060 y_current->y_array[i] = array[i];
6061 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006064 else
6065 {
6066 /* Free array[] if it was filled. */
6067 for (i = 0; i < size; i++)
6068 vim_free(array[i]);
6069 }
6070 vim_free(array);
6071
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072 return eof;
6073}
6074
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006075/*
6076 * Accept a new style register line from the viminfo, store it when it's new.
6077 */
6078 void
6079handle_viminfo_register(garray_T *values, int force)
6080{
6081 bval_T *vp = (bval_T *)values->ga_data;
6082 int flags;
6083 int name;
6084 int type;
6085 int linecount;
6086 int width;
6087 time_t timestamp;
6088 yankreg_T *y_ptr;
6089 int i;
6090
6091 /* Check the format:
6092 * |{bartype},{flags},{name},{type},
6093 * {linecount},{width},{timestamp},"line1","line2"
6094 */
6095 if (values->ga_len < 6
6096 || vp[0].bv_type != BVAL_NR
6097 || vp[1].bv_type != BVAL_NR
6098 || vp[2].bv_type != BVAL_NR
6099 || vp[3].bv_type != BVAL_NR
6100 || vp[4].bv_type != BVAL_NR
6101 || vp[5].bv_type != BVAL_NR)
6102 return;
6103 flags = vp[0].bv_nr;
6104 name = vp[1].bv_nr;
Bram Moolenaar67e37202016-06-14 21:32:28 +02006105 if (name < 0 || name >= NUM_REGISTERS)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006106 return;
6107 type = vp[2].bv_nr;
6108 if (type != MCHAR && type != MLINE && type != MBLOCK)
6109 return;
6110 linecount = vp[3].bv_nr;
6111 if (values->ga_len < 6 + linecount)
6112 return;
6113 width = vp[4].bv_nr;
6114 if (width < 0)
6115 return;
6116
6117 if (y_read_regs != NULL)
6118 /* Reading viminfo for merging and writing. Store the register
6119 * content, don't update the current registers. */
6120 y_ptr = &y_read_regs[name];
6121 else
6122 y_ptr = &y_regs[name];
6123
6124 /* Do not overwrite unless forced or the timestamp is newer. */
6125 timestamp = (time_t)vp[5].bv_nr;
6126 if (y_ptr->y_array != NULL && !force
6127 && (timestamp == 0 || y_ptr->y_time_set > timestamp))
6128 return;
6129
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02006130 if (y_ptr->y_array != NULL)
6131 for (i = 0; i < y_ptr->y_size; i++)
6132 vim_free(y_ptr->y_array[i]);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006133 vim_free(y_ptr->y_array);
6134
6135 if (y_read_regs == NULL)
6136 {
6137 if (flags & REG_PREVIOUS)
6138 y_previous = y_ptr;
6139 if ((flags & REG_EXEC) && (force || execreg_lastc == NUL))
6140 execreg_lastc = get_register_name(name);
6141 }
6142 y_ptr->y_type = type;
6143 y_ptr->y_width = width;
6144 y_ptr->y_size = linecount;
6145 y_ptr->y_time_set = timestamp;
6146 if (linecount == 0)
6147 y_ptr->y_array = NULL;
6148 else
6149 {
6150 y_ptr->y_array =
6151 (char_u **)alloc((unsigned)(linecount * sizeof(char_u *)));
6152 for (i = 0; i < linecount; i++)
6153 {
6154 if (vp[i + 6].bv_allocated)
6155 {
6156 y_ptr->y_array[i] = vp[i + 6].bv_string;
6157 vp[i + 6].bv_string = NULL;
6158 }
6159 else
6160 y_ptr->y_array[i] = vim_strsave(vp[i + 6].bv_string);
6161 }
6162 }
6163}
6164
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006166write_viminfo_registers(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006168 int i, j;
6169 char_u *type;
6170 char_u c;
6171 int num_lines;
6172 int max_num_lines;
6173 int max_kbyte;
6174 long len;
6175 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176
Bram Moolenaar64404472010-06-26 06:24:45 +02006177 fputs(_("\n# Registers:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178
6179 /* Get '<' value, use old '"' value if '<' is not found. */
6180 max_num_lines = get_viminfo_parameter('<');
6181 if (max_num_lines < 0)
6182 max_num_lines = get_viminfo_parameter('"');
6183 if (max_num_lines == 0)
6184 return;
6185 max_kbyte = get_viminfo_parameter('s');
6186 if (max_kbyte == 0)
6187 return;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006188
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 for (i = 0; i < NUM_REGISTERS; i++)
6190 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191#ifdef FEAT_CLIPBOARD
6192 /* Skip '*'/'+' register, we don't want them back next time */
6193 if (i == STAR_REGISTER || i == PLUS_REGISTER)
6194 continue;
6195#endif
6196#ifdef FEAT_DND
6197 /* Neither do we want the '~' register */
6198 if (i == TILDE_REGISTER)
6199 continue;
6200#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006201 /* When reading viminfo for merging and writing: Use the register from
6202 * viminfo if it's newer. */
6203 if (y_read_regs != NULL
6204 && y_read_regs[i].y_array != NULL
6205 && (y_regs[i].y_array == NULL ||
6206 y_read_regs[i].y_time_set > y_regs[i].y_time_set))
6207 y_ptr = &y_read_regs[i];
6208 else if (y_regs[i].y_array == NULL)
6209 continue;
6210 else
6211 y_ptr = &y_regs[i];
6212
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006213 /* Skip empty registers. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006214 num_lines = y_ptr->y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006215 if (num_lines == 0
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006216 || (num_lines == 1 && y_ptr->y_type == MCHAR
6217 && *y_ptr->y_array[0] == NUL))
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006218 continue;
6219
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220 if (max_kbyte > 0)
6221 {
6222 /* Skip register if there is more text than the maximum size. */
6223 len = 0;
6224 for (j = 0; j < num_lines; j++)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006225 len += (long)STRLEN(y_ptr->y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006226 if (len > (long)max_kbyte * 1024L)
6227 continue;
6228 }
6229
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006230 switch (y_ptr->y_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006231 {
6232 case MLINE:
6233 type = (char_u *)"LINE";
6234 break;
6235 case MCHAR:
6236 type = (char_u *)"CHAR";
6237 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238 case MBLOCK:
6239 type = (char_u *)"BLOCK";
6240 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241 default:
6242 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006243 y_ptr->y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244 emsg(IObuff);
6245 type = (char_u *)"LINE";
6246 break;
6247 }
6248 if (y_previous == &y_regs[i])
6249 fprintf(fp, "\"");
6250 c = get_register_name(i);
Bram Moolenaar42b94362009-05-26 16:12:37 +00006251 fprintf(fp, "\"%c", c);
6252 if (c == execreg_lastc)
6253 fprintf(fp, "@");
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006254 fprintf(fp, "\t%s\t%d\n", type, (int)y_ptr->y_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006255
6256 /* If max_num_lines < 0, then we save ALL the lines in the register */
6257 if (max_num_lines > 0 && num_lines > max_num_lines)
6258 num_lines = max_num_lines;
6259 for (j = 0; j < num_lines; j++)
6260 {
6261 putc('\t', fp);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006262 viminfo_writestring(fp, y_ptr->y_array[j]);
6263 }
6264
6265 {
6266 int flags = 0;
6267 int remaining;
6268
6269 /* New style with a bar line. Format:
6270 * |{bartype},{flags},{name},{type},
6271 * {linecount},{width},{timestamp},"line1","line2"
6272 * flags: REG_PREVIOUS - register is y_previous
6273 * REG_EXEC - used for @@
6274 */
6275 if (y_previous == &y_regs[i])
6276 flags |= REG_PREVIOUS;
6277 if (c == execreg_lastc)
6278 flags |= REG_EXEC;
6279 fprintf(fp, "|%d,%d,%d,%d,%d,%d,%ld", BARTYPE_REGISTER, flags,
6280 i, y_ptr->y_type, num_lines, (int)y_ptr->y_width,
6281 (long)y_ptr->y_time_set);
6282 /* 11 chars for type/flags/name/type, 3 * 20 for numbers */
6283 remaining = LSIZE - 71;
6284 for (j = 0; j < num_lines; j++)
6285 {
6286 putc(',', fp);
6287 --remaining;
6288 remaining = barline_writestring(fp, y_ptr->y_array[j],
6289 remaining);
6290 }
6291 putc('\n', fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 }
6293 }
6294}
6295#endif /* FEAT_VIMINFO */
6296
6297#if defined(FEAT_CLIPBOARD) || defined(PROTO)
6298/*
6299 * SELECTION / PRIMARY ('*')
6300 *
6301 * Text selection stuff that uses the GUI selection register '*'. When using a
6302 * GUI this may be text from another window, otherwise it is the last text we
6303 * had highlighted with VIsual mode. With mouse support, clicking the middle
6304 * button performs the paste, otherwise you will need to do <"*p>. "
6305 * If not under X, it is synonymous with the clipboard register '+'.
6306 *
6307 * X CLIPBOARD ('+')
6308 *
6309 * Text selection stuff that uses the GUI clipboard register '+'.
6310 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
6311 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
6312 * otherwise you will need to do <"+p>. "
6313 * If not under X, it is synonymous with the selection register '*'.
6314 */
6315
6316/*
6317 * Routine to export any final X selection we had to the environment
Bram Moolenaarf58a8472017-03-05 18:03:04 +01006318 * so that the text is still available after Vim has exited. X selections
Bram Moolenaar071d4272004-06-13 20:20:40 +00006319 * only exist while the owning application exists, so we write to the
6320 * permanent (while X runs) store CUT_BUFFER0.
6321 * Dump the CLIPBOARD selection if we own it (it's logically the more
6322 * 'permanent' of the two), otherwise the PRIMARY one.
6323 * For now, use a hard-coded sanity limit of 1Mb of data.
6324 */
Bram Moolenaara6b7a082016-08-10 20:53:05 +02006325#if (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006326 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006327x11_export_final_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006328{
6329 Display *dpy;
6330 char_u *str = NULL;
6331 long_u len = 0;
6332 int motion_type = -1;
6333
6334# ifdef FEAT_GUI
6335 if (gui.in_use)
6336 dpy = X_DISPLAY;
6337 else
6338# endif
6339# ifdef FEAT_XCLIPBOARD
6340 dpy = xterm_dpy;
6341# else
6342 return;
6343# endif
6344
6345 /* Get selection to export */
6346 if (clip_plus.owned)
6347 motion_type = clip_convert_selection(&str, &len, &clip_plus);
6348 else if (clip_star.owned)
6349 motion_type = clip_convert_selection(&str, &len, &clip_star);
6350
6351 /* Check it's OK */
6352 if (dpy != NULL && str != NULL && motion_type >= 0
6353 && len < 1024*1024 && len > 0)
6354 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006355#ifdef FEAT_MBYTE
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006356 int ok = TRUE;
6357
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006358 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
6359 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
6360 * encoding conversion usually doesn't work, so keep the text as-is.
6361 */
6362 if (has_mbyte)
6363 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006364 vimconv_T vc;
6365
6366 vc.vc_type = CONV_NONE;
6367 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
6368 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01006369 int intlen = len;
6370 char_u *conv_str;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006371
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006372 vc.vc_fail = TRUE;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006373 conv_str = string_convert(&vc, str, &intlen);
6374 len = intlen;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006375 if (conv_str != NULL)
6376 {
6377 vim_free(str);
6378 str = conv_str;
6379 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006380 else
6381 {
6382 ok = FALSE;
6383 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006384 convert_setup(&vc, NULL, NULL);
6385 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006386 else
6387 {
6388 ok = FALSE;
6389 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006390 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006391
6392 /* Do not store the string if conversion failed. Better to use any
6393 * other selection than garbled text. */
6394 if (ok)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006395#endif
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006396 {
6397 XStoreBuffer(dpy, (char *)str, (int)len, 0);
6398 XFlush(dpy);
6399 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006400 }
6401
6402 vim_free(str);
6403}
6404#endif
6405
6406 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006407clip_free_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006409 yankreg_T *y_ptr = y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006410
6411 if (cbd == &clip_plus)
6412 y_current = &y_regs[PLUS_REGISTER];
6413 else
6414 y_current = &y_regs[STAR_REGISTER];
6415 free_yank_all();
6416 y_current->y_size = 0;
6417 y_current = y_ptr;
6418}
6419
6420/*
6421 * Get the selected text and put it in the gui selection register '*' or '+'.
6422 */
6423 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006424clip_get_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006425{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006426 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006427 pos_T old_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428 pos_T old_visual;
6429 int old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430 colnr_T old_curswant;
6431 int old_set_curswant;
6432 pos_T old_op_start, old_op_end;
6433 oparg_T oa;
6434 cmdarg_T ca;
6435
6436 if (cbd->owned)
6437 {
6438 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
6439 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
6440 return;
6441
6442 /* Get the text between clip_star.start & clip_star.end */
6443 old_y_previous = y_previous;
6444 old_y_current = y_current;
6445 old_cursor = curwin->w_cursor;
6446 old_curswant = curwin->w_curswant;
6447 old_set_curswant = curwin->w_set_curswant;
6448 old_op_start = curbuf->b_op_start;
6449 old_op_end = curbuf->b_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450 old_visual = VIsual;
6451 old_visual_mode = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006452 clear_oparg(&oa);
6453 oa.regname = (cbd == &clip_plus ? '+' : '*');
6454 oa.op_type = OP_YANK;
6455 vim_memset(&ca, 0, sizeof(ca));
6456 ca.oap = &oa;
6457 ca.cmdchar = 'y';
6458 ca.count1 = 1;
6459 ca.retval = CA_NO_ADJ_OP_END;
6460 do_pending_operator(&ca, 0, TRUE);
6461 y_previous = old_y_previous;
6462 y_current = old_y_current;
6463 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006464 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006465 curwin->w_curswant = old_curswant;
6466 curwin->w_set_curswant = old_set_curswant;
6467 curbuf->b_op_start = old_op_start;
6468 curbuf->b_op_end = old_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469 VIsual = old_visual;
6470 VIsual_mode = old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006471 }
6472 else
6473 {
6474 clip_free_selection(cbd);
6475
6476 /* Try to get selected text from another window */
6477 clip_gen_request_selection(cbd);
6478 }
6479}
6480
Bram Moolenaard44347f2011-06-19 01:14:29 +02006481/*
6482 * Convert from the GUI selection string into the '*'/'+' register.
6483 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006485clip_yank_selection(
6486 int type,
6487 char_u *str,
6488 long len,
6489 VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006490{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006491 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006492
6493 if (cbd == &clip_plus)
6494 y_ptr = &y_regs[PLUS_REGISTER];
6495 else
6496 y_ptr = &y_regs[STAR_REGISTER];
6497
6498 clip_free_selection(cbd);
6499
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006500 str_to_reg(y_ptr, type, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501}
6502
6503/*
6504 * Convert the '*'/'+' register into a GUI selection string returned in *str
6505 * with length *len.
6506 * Returns the motion type, or -1 for failure.
6507 */
6508 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006509clip_convert_selection(char_u **str, long_u *len, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006510{
6511 char_u *p;
6512 int lnum;
6513 int i, j;
6514 int_u eolsize;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006515 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516
6517 if (cbd == &clip_plus)
6518 y_ptr = &y_regs[PLUS_REGISTER];
6519 else
6520 y_ptr = &y_regs[STAR_REGISTER];
6521
6522#ifdef USE_CRNL
6523 eolsize = 2;
6524#else
6525 eolsize = 1;
6526#endif
6527
6528 *str = NULL;
6529 *len = 0;
6530 if (y_ptr->y_array == NULL)
6531 return -1;
6532
6533 for (i = 0; i < y_ptr->y_size; i++)
6534 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
6535
6536 /*
6537 * Don't want newline character at end of last line if we're in MCHAR mode.
6538 */
6539 if (y_ptr->y_type == MCHAR && *len >= eolsize)
6540 *len -= eolsize;
6541
6542 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
6543 if (p == NULL)
6544 return -1;
6545 lnum = 0;
6546 for (i = 0, j = 0; i < (int)*len; i++, j++)
6547 {
6548 if (y_ptr->y_array[lnum][j] == '\n')
6549 p[i] = NUL;
6550 else if (y_ptr->y_array[lnum][j] == NUL)
6551 {
6552#ifdef USE_CRNL
6553 p[i++] = '\r';
6554#endif
6555#ifdef USE_CR
6556 p[i] = '\r';
6557#else
6558 p[i] = '\n';
6559#endif
6560 lnum++;
6561 j = -1;
6562 }
6563 else
6564 p[i] = y_ptr->y_array[lnum][j];
6565 }
6566 return y_ptr->y_type;
6567}
6568
6569
Bram Moolenaar071d4272004-06-13 20:20:40 +00006570/*
6571 * If we have written to a clipboard register, send the text to the clipboard.
6572 */
6573 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006574may_set_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006575{
6576 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
6577 {
6578 clip_own_selection(&clip_star);
6579 clip_gen_set_selection(&clip_star);
6580 }
6581 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
6582 {
6583 clip_own_selection(&clip_plus);
6584 clip_gen_set_selection(&clip_plus);
6585 }
6586}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587
6588#endif /* FEAT_CLIPBOARD || PROTO */
6589
6590
6591#if defined(FEAT_DND) || defined(PROTO)
6592/*
6593 * Replace the contents of the '~' register with str.
6594 */
6595 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006596dnd_yank_drag_data(char_u *str, long len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006598 yankreg_T *curr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599
6600 curr = y_current;
6601 y_current = &y_regs[TILDE_REGISTER];
6602 free_yank_all();
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006603 str_to_reg(y_current, MCHAR, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006604 y_current = curr;
6605}
6606#endif
6607
6608
6609#if defined(FEAT_EVAL) || defined(PROTO)
6610/*
6611 * Return the type of a register.
6612 * Used for getregtype()
6613 * Returns MAUTO for error.
6614 */
6615 char_u
Bram Moolenaar9b578142016-01-30 19:39:49 +01006616get_reg_type(int regname, long *reglen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617{
6618 switch (regname)
6619 {
6620 case '%': /* file name */
6621 case '#': /* alternate file name */
6622 case '=': /* expression */
6623 case ':': /* last command line */
6624 case '/': /* last search-pattern */
6625 case '.': /* last inserted text */
6626#ifdef FEAT_SEARCHPATH
6627 case Ctrl_F: /* Filename under cursor */
6628 case Ctrl_P: /* Path under cursor, expand via "path" */
6629#endif
6630 case Ctrl_W: /* word under cursor */
6631 case Ctrl_A: /* WORD (mnemonic All) under cursor */
6632 case '_': /* black hole: always empty */
6633 return MCHAR;
6634 }
6635
6636#ifdef FEAT_CLIPBOARD
6637 regname = may_get_selection(regname);
6638#endif
6639
Bram Moolenaar32b92012014-01-14 12:33:36 +01006640 if (regname != NUL && !valid_yank_reg(regname, FALSE))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006641 return MAUTO;
Bram Moolenaar32b92012014-01-14 12:33:36 +01006642
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643 get_yank_register(regname, FALSE);
6644
6645 if (y_current->y_array != NULL)
6646 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006647 if (reglen != NULL && y_current->y_type == MBLOCK)
6648 *reglen = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006649 return y_current->y_type;
6650 }
6651 return MAUTO;
6652}
6653
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01006654static char_u *getreg_wrap_one_line(char_u *s, int flags);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006655
6656/*
6657 * When "flags" has GREG_LIST return a list with text "s".
6658 * Otherwise just return "s".
6659 */
6660 static char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006661getreg_wrap_one_line(char_u *s, int flags)
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006662{
6663 if (flags & GREG_LIST)
6664 {
6665 list_T *list = list_alloc();
6666
6667 if (list != NULL)
6668 {
6669 if (list_append_string(list, NULL, -1) == FAIL)
6670 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006671 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006672 return NULL;
6673 }
6674 list->lv_first->li_tv.vval.v_string = s;
6675 }
6676 return (char_u *)list;
6677 }
6678 return s;
6679}
6680
Bram Moolenaar071d4272004-06-13 20:20:40 +00006681/*
6682 * Return the contents of a register as a single allocated string.
6683 * Used for "@r" in expressions and for getreg().
6684 * Returns NULL for error.
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006685 * Flags:
6686 * GREG_NO_EXPR Do not allow expression register
6687 * GREG_EXPR_SRC For the expression register: return expression itself,
6688 * not the result of its evaluation.
6689 * GREG_LIST Return a list of lines in place of a single string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006690 */
6691 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006692get_reg_contents(int regname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006693{
6694 long i;
6695 char_u *retval;
6696 int allocated;
6697 long len;
6698
6699 /* Don't allow using an expression register inside an expression */
6700 if (regname == '=')
6701 {
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006702 if (flags & GREG_NO_EXPR)
6703 return NULL;
6704 if (flags & GREG_EXPR_SRC)
6705 return getreg_wrap_one_line(get_expr_line_src(), flags);
6706 return getreg_wrap_one_line(get_expr_line(), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006707 }
6708
6709 if (regname == '@') /* "@@" is used for unnamed register */
6710 regname = '"';
6711
6712 /* check for valid regname */
6713 if (regname != NUL && !valid_yank_reg(regname, FALSE))
6714 return NULL;
6715
6716#ifdef FEAT_CLIPBOARD
6717 regname = may_get_selection(regname);
6718#endif
6719
6720 if (get_spec_reg(regname, &retval, &allocated, FALSE))
6721 {
6722 if (retval == NULL)
6723 return NULL;
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006724 if (allocated)
6725 return getreg_wrap_one_line(retval, flags);
6726 return getreg_wrap_one_line(vim_strsave(retval), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006727 }
6728
6729 get_yank_register(regname, FALSE);
6730 if (y_current->y_array == NULL)
6731 return NULL;
6732
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006733 if (flags & GREG_LIST)
6734 {
6735 list_T *list = list_alloc();
6736 int error = FALSE;
6737
6738 if (list == NULL)
6739 return NULL;
6740 for (i = 0; i < y_current->y_size; ++i)
6741 if (list_append_string(list, y_current->y_array[i], -1) == FAIL)
6742 error = TRUE;
6743 if (error)
6744 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006745 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006746 return NULL;
6747 }
6748 return (char_u *)list;
6749 }
6750
Bram Moolenaar071d4272004-06-13 20:20:40 +00006751 /*
6752 * Compute length of resulting string.
6753 */
6754 len = 0;
6755 for (i = 0; i < y_current->y_size; ++i)
6756 {
6757 len += (long)STRLEN(y_current->y_array[i]);
6758 /*
6759 * Insert a newline between lines and after last line if
6760 * y_type is MLINE.
6761 */
6762 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6763 ++len;
6764 }
6765
6766 retval = lalloc(len + 1, TRUE);
6767
6768 /*
6769 * Copy the lines of the yank register into the string.
6770 */
6771 if (retval != NULL)
6772 {
6773 len = 0;
6774 for (i = 0; i < y_current->y_size; ++i)
6775 {
6776 STRCPY(retval + len, y_current->y_array[i]);
6777 len += (long)STRLEN(retval + len);
6778
6779 /*
6780 * Insert a NL between lines and after the last line if y_type is
6781 * MLINE.
6782 */
6783 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6784 retval[len++] = '\n';
6785 }
6786 retval[len] = NUL;
6787 }
6788
6789 return retval;
6790}
6791
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006792 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006793init_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006794 int name,
6795 yankreg_T **old_y_previous,
6796 yankreg_T **old_y_current,
6797 int must_append,
6798 int *yank_type UNUSED)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006799{
6800 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6801 {
6802 emsg_invreg(name);
6803 return FAIL;
6804 }
6805
6806 /* Don't want to change the current (unnamed) register */
6807 *old_y_previous = y_previous;
6808 *old_y_current = y_current;
6809
6810 get_yank_register(name, TRUE);
6811 if (!y_append && !must_append)
6812 free_yank_all();
6813 return OK;
6814}
6815
6816 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006817finish_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006818 int name,
6819 yankreg_T *old_y_previous,
6820 yankreg_T *old_y_current)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006821{
6822# ifdef FEAT_CLIPBOARD
6823 /* Send text of clipboard register to the clipboard. */
6824 may_set_selection();
6825# endif
6826
6827 /* ':let @" = "val"' should change the meaning of the "" register */
6828 if (name != '"')
6829 y_previous = old_y_previous;
6830 y_current = old_y_current;
6831}
6832
Bram Moolenaar071d4272004-06-13 20:20:40 +00006833/*
6834 * Store string "str" in register "name".
6835 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
6836 * If "must_append" is TRUE, always append to the register. Otherwise append
6837 * if "name" is an uppercase letter.
6838 * Note: "maxlen" and "must_append" don't work for the "/" register.
6839 * Careful: 'str' is modified, you may have to use a copy!
6840 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
6841 */
6842 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006843write_reg_contents(
6844 int name,
6845 char_u *str,
6846 int maxlen,
6847 int must_append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848{
6849 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
6850}
6851
6852 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006853write_reg_contents_lst(
6854 int name,
6855 char_u **strings,
6856 int maxlen UNUSED,
6857 int must_append,
6858 int yank_type,
6859 long block_len)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006860{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006861 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006862
6863 if (name == '/'
6864#ifdef FEAT_EVAL
6865 || name == '='
6866#endif
6867 )
6868 {
6869 char_u *s;
6870
6871 if (strings[0] == NULL)
6872 s = (char_u *)"";
6873 else if (strings[1] != NULL)
6874 {
6875 EMSG(_("E883: search pattern and expression register may not "
6876 "contain two or more lines"));
6877 return;
6878 }
6879 else
6880 s = strings[0];
6881 write_reg_contents_ex(name, s, -1, must_append, yank_type, block_len);
6882 return;
6883 }
6884
6885 if (name == '_') /* black hole: nothing to do */
6886 return;
6887
6888 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
6889 &yank_type) == FAIL)
6890 return;
6891
6892 str_to_reg(y_current, yank_type, (char_u *) strings, -1, block_len, TRUE);
6893
6894 finish_write_reg(name, old_y_previous, old_y_current);
6895}
6896
6897 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006898write_reg_contents_ex(
6899 int name,
6900 char_u *str,
6901 int maxlen,
6902 int must_append,
6903 int yank_type,
6904 long block_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006906 yankreg_T *old_y_previous, *old_y_current;
6907 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006908
Bram Moolenaare7566042005-06-17 22:00:15 +00006909 if (maxlen >= 0)
6910 len = maxlen;
6911 else
6912 len = (long)STRLEN(str);
6913
Bram Moolenaar071d4272004-06-13 20:20:40 +00006914 /* Special case: '/' search pattern */
6915 if (name == '/')
6916 {
6917 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
6918 return;
6919 }
6920
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01006921 if (name == '#')
6922 {
6923 buf_T *buf;
6924
6925 if (VIM_ISDIGIT(*str))
6926 {
6927 int num = atoi((char *)str);
6928
6929 buf = buflist_findnr(num);
6930 if (buf == NULL)
6931 EMSGN(_(e_nobufnr), (long)num);
6932 }
6933 else
6934 buf = buflist_findnr(buflist_findpat(str, str + STRLEN(str),
6935 TRUE, FALSE, FALSE));
6936 if (buf == NULL)
6937 return;
6938 curwin->w_alt_fnum = buf->b_fnum;
6939 return;
6940 }
6941
Bram Moolenaare7566042005-06-17 22:00:15 +00006942#ifdef FEAT_EVAL
6943 if (name == '=')
6944 {
6945 char_u *p, *s;
6946
6947 p = vim_strnsave(str, (int)len);
6948 if (p == NULL)
6949 return;
6950 if (must_append)
6951 {
6952 s = concat_str(get_expr_line_src(), p);
6953 vim_free(p);
6954 p = s;
Bram Moolenaare7566042005-06-17 22:00:15 +00006955 }
6956 set_expr_line(p);
6957 return;
6958 }
6959#endif
6960
Bram Moolenaar071d4272004-06-13 20:20:40 +00006961 if (name == '_') /* black hole: nothing to do */
6962 return;
6963
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006964 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
6965 &yank_type) == FAIL)
6966 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006967
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006968 str_to_reg(y_current, yank_type, str, len, block_len, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006969
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006970 finish_write_reg(name, old_y_previous, old_y_current);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006971}
6972#endif /* FEAT_EVAL */
6973
6974#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6975/*
6976 * Put a string into a register. When the register is not empty, the string
6977 * is appended.
6978 */
6979 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006980str_to_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006981 yankreg_T *y_ptr, /* pointer to yank register */
6982 int yank_type, /* MCHAR, MLINE, MBLOCK, MAUTO */
6983 char_u *str, /* string to put in register */
6984 long len, /* length of string */
6985 long blocklen, /* width of Visual block */
6986 int str_list) /* TRUE if str is char_u ** */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006987{
Bram Moolenaard44347f2011-06-19 01:14:29 +02006988 int type; /* MCHAR, MLINE or MBLOCK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006989 int lnum;
6990 long start;
6991 long i;
6992 int extra;
6993 int newlines; /* number of lines added */
6994 int extraline = 0; /* extra line at the end */
6995 int append = FALSE; /* append to last line in register */
6996 char_u *s;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006997 char_u **ss;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006998 char_u **pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999 long maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007000
Bram Moolenaarcde547a2009-11-17 11:43:06 +00007001 if (y_ptr->y_array == NULL) /* NULL means empty register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007002 y_ptr->y_size = 0;
7003
Bram Moolenaard44347f2011-06-19 01:14:29 +02007004 if (yank_type == MAUTO)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007005 type = ((str_list || (len > 0 && (str[len - 1] == NL
7006 || str[len - 1] == CAR)))
Bram Moolenaard44347f2011-06-19 01:14:29 +02007007 ? MLINE : MCHAR);
7008 else
7009 type = yank_type;
7010
Bram Moolenaar071d4272004-06-13 20:20:40 +00007011 /*
7012 * Count the number of lines within the string
7013 */
7014 newlines = 0;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007015 if (str_list)
7016 {
7017 for (ss = (char_u **) str; *ss != NULL; ++ss)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007018 ++newlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007019 }
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007020 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007021 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007022 for (i = 0; i < len; i++)
7023 if (str[i] == '\n')
7024 ++newlines;
7025 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
7026 {
7027 extraline = 1;
7028 ++newlines; /* count extra newline at the end */
7029 }
7030 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
7031 {
7032 append = TRUE;
7033 --newlines; /* uncount newline when appending first line */
7034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035 }
7036
Bram Moolenaar659c94d2015-05-04 20:19:21 +02007037 /* Without any lines make the register empty. */
7038 if (y_ptr->y_size + newlines == 0)
7039 {
7040 vim_free(y_ptr->y_array);
7041 y_ptr->y_array = NULL;
7042 return;
7043 }
7044
Bram Moolenaar071d4272004-06-13 20:20:40 +00007045 /*
7046 * Allocate an array to hold the pointers to the new register lines.
7047 * If the register was not empty, move the existing lines to the new array.
7048 */
7049 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
7050 * sizeof(char_u *), TRUE);
7051 if (pp == NULL) /* out of memory */
7052 return;
7053 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
7054 pp[lnum] = y_ptr->y_array[lnum];
7055 vim_free(y_ptr->y_array);
7056 y_ptr->y_array = pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057 maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007058
7059 /*
7060 * Find the end of each line and save it into the array.
7061 */
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007062 if (str_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007063 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007064 for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum)
7065 {
Bram Moolenaar121f9bd2014-04-29 15:55:43 +02007066 i = (long)STRLEN(*ss);
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007067 pp[lnum] = vim_strnsave(*ss, i);
7068 if (i > maxlen)
7069 maxlen = i;
7070 }
7071 }
7072 else
7073 {
7074 for (start = 0; start < len + extraline; start += i + 1)
7075 {
7076 for (i = start; i < len; ++i) /* find the end of the line */
7077 if (str[i] == '\n')
7078 break;
7079 i -= start; /* i is now length of line */
7080 if (i > maxlen)
7081 maxlen = i;
7082 if (append)
7083 {
7084 --lnum;
7085 extra = (int)STRLEN(y_ptr->y_array[lnum]);
7086 }
7087 else
7088 extra = 0;
7089 s = alloc((unsigned)(i + extra + 1));
7090 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091 break;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007092 if (extra)
7093 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
7094 if (append)
7095 vim_free(y_ptr->y_array[lnum]);
7096 if (i)
7097 mch_memmove(s + extra, str + start, (size_t)i);
7098 extra += i;
7099 s[extra] = NUL;
7100 y_ptr->y_array[lnum++] = s;
7101 while (--extra >= 0)
7102 {
7103 if (*s == NUL)
7104 *s = '\n'; /* replace NUL with newline */
7105 ++s;
7106 }
7107 append = FALSE; /* only first line is appended */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109 }
7110 y_ptr->y_type = type;
7111 y_ptr->y_size = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007112 if (type == MBLOCK)
7113 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
7114 else
7115 y_ptr->y_width = 0;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007116#ifdef FEAT_VIMINFO
7117 y_ptr->y_time_set = vim_time();
7118#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007119}
7120#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
7121
7122 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007123clear_oparg(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007124{
7125 vim_memset(oap, 0, sizeof(oparg_T));
7126}
7127
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007128static varnumber_T line_count_info(char_u *line, varnumber_T *wc, varnumber_T *cc, varnumber_T limit, int eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007129
7130/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00007131 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007132 *
7133 * "Words" are counted by looking for boundaries between non-space and
7134 * space characters. (it seems to produce results that match 'wc'.)
7135 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00007136 * Return value is byte count; word count for the line is added to "*wc".
7137 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007138 *
7139 * The function will only examine the first "limit" characters in the
7140 * line, stopping if it encounters an end-of-line (NUL byte). In that
7141 * case, eol_size will be added to the character count to account for
7142 * the size of the EOL character.
7143 */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007144 static varnumber_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01007145line_count_info(
7146 char_u *line,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007147 varnumber_T *wc,
7148 varnumber_T *cc,
7149 varnumber_T limit,
Bram Moolenaar9b578142016-01-30 19:39:49 +01007150 int eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007151{
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007152 varnumber_T i;
7153 varnumber_T words = 0;
7154 varnumber_T chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007155 int is_word = 0;
7156
Bram Moolenaar88b1ba12012-06-29 13:34:19 +02007157 for (i = 0; i < limit && line[i] != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007158 {
7159 if (is_word)
7160 {
7161 if (vim_isspace(line[i]))
7162 {
7163 words++;
7164 is_word = 0;
7165 }
7166 }
7167 else if (!vim_isspace(line[i]))
7168 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007169 ++chars;
7170#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007171 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00007172#else
7173 ++i;
7174#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175 }
7176
7177 if (is_word)
7178 words++;
7179 *wc += words;
7180
7181 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar1cb7e092011-08-10 12:11:01 +02007182 if (i < limit && line[i] == NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007183 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007184 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007185 chars += eol_size;
7186 }
7187 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007188 return i;
7189}
7190
7191/*
7192 * Give some info about the position of the cursor (for "g CTRL-G").
7193 * In Visual mode, give some info about the selected region. (In this case,
7194 * the *_count_cursor variables store running totals for the selection.)
Bram Moolenaared767a22016-01-03 22:49:16 +01007195 * When "dict" is not NULL store the info there instead of showing it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007196 */
7197 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007198cursor_pos_info(dict_T *dict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007199{
7200 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007201 char_u buf1[50];
7202 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203 linenr_T lnum;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007204 varnumber_T byte_count = 0;
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007205#ifdef FEAT_MBYTE
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007206 varnumber_T bom_count = 0;
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007207#endif
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007208 varnumber_T byte_count_cursor = 0;
7209 varnumber_T char_count = 0;
7210 varnumber_T char_count_cursor = 0;
7211 varnumber_T word_count = 0;
7212 varnumber_T word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007213 int eol_size;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007214 varnumber_T last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007215 long line_count_selected = 0;
7216 pos_T min_pos, max_pos;
7217 oparg_T oparg;
7218 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007219
7220 /*
7221 * Compute the length of the file in characters.
7222 */
7223 if (curbuf->b_ml.ml_flags & ML_EMPTY)
7224 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007225 if (dict == NULL)
7226 {
7227 MSG(_(no_lines_msg));
7228 return;
7229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230 }
7231 else
7232 {
7233 if (get_fileformat(curbuf) == EOL_DOS)
7234 eol_size = 2;
7235 else
7236 eol_size = 1;
7237
Bram Moolenaar071d4272004-06-13 20:20:40 +00007238 if (VIsual_active)
7239 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007240 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007241 {
7242 min_pos = VIsual;
7243 max_pos = curwin->w_cursor;
7244 }
7245 else
7246 {
7247 min_pos = curwin->w_cursor;
7248 max_pos = VIsual;
7249 }
7250 if (*p_sel == 'e' && max_pos.col > 0)
7251 --max_pos.col;
7252
7253 if (VIsual_mode == Ctrl_V)
7254 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00007255#ifdef FEAT_LINEBREAK
7256 char_u * saved_sbr = p_sbr;
7257
7258 /* Make 'sbr' empty for a moment to get the correct size. */
7259 p_sbr = empty_option;
7260#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007261 oparg.is_VIsual = 1;
7262 oparg.block_mode = TRUE;
7263 oparg.op_type = OP_NOP;
7264 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007265 &oparg.start_vcol, &oparg.end_vcol);
Bram Moolenaar81d00072009-04-29 15:41:40 +00007266#ifdef FEAT_LINEBREAK
7267 p_sbr = saved_sbr;
7268#endif
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007269 if (curwin->w_curswant == MAXCOL)
7270 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007271 /* Swap the start, end vcol if needed */
7272 if (oparg.end_vcol < oparg.start_vcol)
7273 {
7274 oparg.end_vcol += oparg.start_vcol;
7275 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
7276 oparg.end_vcol -= oparg.start_vcol;
7277 }
7278 }
7279 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
7280 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007281
7282 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
7283 {
7284 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007285 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007286 {
7287 ui_breakcheck();
7288 if (got_int)
7289 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007290 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007291 }
7292
Bram Moolenaar071d4272004-06-13 20:20:40 +00007293 /* Do extra processing for VIsual mode. */
7294 if (VIsual_active
7295 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
7296 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00007297 char_u *s = NULL;
7298 long len = 0L;
7299
Bram Moolenaar071d4272004-06-13 20:20:40 +00007300 switch (VIsual_mode)
7301 {
7302 case Ctrl_V:
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007303#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007304 virtual_op = virtual_active();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007305#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007306 block_prep(&oparg, &bd, lnum, 0);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007307#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007308 virtual_op = MAYBE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007309#endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00007310 s = bd.textstart;
7311 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007312 break;
7313 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00007314 s = ml_get(lnum);
7315 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007316 break;
7317 case 'v':
7318 {
7319 colnr_T start_col = (lnum == min_pos.lnum)
7320 ? min_pos.col : 0;
7321 colnr_T end_col = (lnum == max_pos.lnum)
7322 ? max_pos.col - start_col + 1 : MAXCOL;
7323
Bram Moolenaardef9e822004-12-31 20:58:58 +00007324 s = ml_get(lnum) + start_col;
7325 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007326 }
7327 break;
7328 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00007329 if (s != NULL)
7330 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00007331 byte_count_cursor += line_count_info(s, &word_count_cursor,
7332 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00007333 if (lnum == curbuf->b_ml.ml_line_count
7334 && !curbuf->b_p_eol
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007335 && (curbuf->b_p_bin || !curbuf->b_p_fixeol)
Bram Moolenaarec2dad62005-01-02 11:36:03 +00007336 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007337 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00007338 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339 }
7340 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007341 {
7342 /* In non-visual mode, check for the line the cursor is on */
7343 if (lnum == curwin->w_cursor.lnum)
7344 {
7345 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007346 char_count_cursor += char_count;
7347 byte_count_cursor = byte_count +
7348 line_count_info(ml_get(lnum),
7349 &word_count_cursor, &char_count_cursor,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007350 (varnumber_T)(curwin->w_cursor.col + 1),
7351 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007352 }
7353 }
7354 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007355 byte_count += line_count_info(ml_get(lnum), &word_count,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007356 &char_count, (varnumber_T)MAXCOL,
7357 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007358 }
7359
7360 /* Correction for when last line doesn't have an EOL. */
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007361 if (!curbuf->b_p_eol && (curbuf->b_p_bin || !curbuf->b_p_fixeol))
Bram Moolenaar7c626922005-02-07 22:01:03 +00007362 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007363
Bram Moolenaared767a22016-01-03 22:49:16 +01007364 if (dict == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007365 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007366 if (VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007367 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007368 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
7369 {
7370 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
7371 &max_pos.col);
7372 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
7373 (long)(oparg.end_vcol - oparg.start_vcol + 1));
7374 }
7375 else
7376 buf1[0] = NUL;
7377
7378 if (char_count_cursor == byte_count_cursor
7379 && char_count == byte_count)
7380 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007381 _("Selected %s%ld of %ld Lines; %lld of %lld Words; %lld of %lld Bytes"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007382 buf1, line_count_selected,
7383 (long)curbuf->b_ml.ml_line_count,
7384 word_count_cursor, word_count,
7385 byte_count_cursor, byte_count);
7386 else
7387 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007388 _("Selected %s%ld of %ld Lines; %lld of %lld Words; %lld of %lld Chars; %lld of %lld Bytes"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007389 buf1, line_count_selected,
7390 (long)curbuf->b_ml.ml_line_count,
7391 word_count_cursor, word_count,
7392 char_count_cursor, char_count,
7393 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007394 }
7395 else
Bram Moolenaared767a22016-01-03 22:49:16 +01007396 {
7397 p = ml_get_curline();
7398 validate_virtcol();
7399 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
7400 (int)curwin->w_virtcol + 1);
7401 col_print(buf2, sizeof(buf2), (int)STRLEN(p),
7402 linetabsize(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007403
Bram Moolenaared767a22016-01-03 22:49:16 +01007404 if (char_count_cursor == byte_count_cursor
7405 && char_count == byte_count)
7406 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007407 _("Col %s of %s; Line %ld of %ld; Word %lld of %lld; Byte %lld of %lld"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007408 (char *)buf1, (char *)buf2,
7409 (long)curwin->w_cursor.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007410 (long)curbuf->b_ml.ml_line_count,
7411 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00007412 byte_count_cursor, byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007413 else
7414 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007415 _("Col %s of %s; Line %ld of %ld; Word %lld of %lld; Char %lld of %lld; Byte %lld of %lld"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007416 (char *)buf1, (char *)buf2,
7417 (long)curwin->w_cursor.lnum,
Bram Moolenaar7c626922005-02-07 22:01:03 +00007418 (long)curbuf->b_ml.ml_line_count,
7419 word_count_cursor, word_count,
7420 char_count_cursor, char_count,
7421 byte_count_cursor, byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007422 }
7423 }
7424
Bram Moolenaared767a22016-01-03 22:49:16 +01007425#ifdef FEAT_MBYTE
7426 bom_count = bomb_size();
7427 if (bom_count > 0)
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007428 vim_snprintf((char *)IObuff + STRLEN(IObuff), IOSIZE,
7429 _("(+%ld for BOM)"), bom_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007430#endif
7431 if (dict == NULL)
7432 {
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007433 /* Don't shorten this message, the user asked for it. */
Bram Moolenaared767a22016-01-03 22:49:16 +01007434 p = p_shm;
7435 p_shm = (char_u *)"";
7436 msg(IObuff);
7437 p_shm = p;
7438 }
7439 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007440#if defined(FEAT_EVAL)
Bram Moolenaared767a22016-01-03 22:49:16 +01007441 if (dict != NULL)
7442 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007443 dict_add_nr_str(dict, "words", word_count, NULL);
7444 dict_add_nr_str(dict, "chars", char_count, NULL);
7445 dict_add_nr_str(dict, "bytes", byte_count
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007446# ifdef FEAT_MBYTE
7447 + bom_count
7448# endif
7449 , NULL);
7450 dict_add_nr_str(dict, VIsual_active ? "visual_bytes" : "cursor_bytes",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007451 byte_count_cursor, NULL);
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007452 dict_add_nr_str(dict, VIsual_active ? "visual_chars" : "cursor_chars",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007453 char_count_cursor, NULL);
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007454 dict_add_nr_str(dict, VIsual_active ? "visual_words" : "cursor_words",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007455 word_count_cursor, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007456 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007457#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007458}