blob: 1abb8daa1fe9b042bc9d060d031fa82e18c2c3d1 [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)
489 mb_ptr_adv(non_white);
490
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;
529 mb_ptr_adv(verbatim_copy_end);
530 }
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 Moolenaard04b7502010-07-08 22:27:55 +02001631 * Handle a delete operation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 *
Bram Moolenaard04b7502010-07-08 22:27:55 +02001633 * Return FAIL if undo failed, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 */
1635 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001636op_delete(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637{
1638 int n;
1639 linenr_T lnum;
1640 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 char_u *newp, *oldp;
1642 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1644 int did_yank = FALSE;
Bram Moolenaar7c821302012-09-05 14:18:45 +02001645 int orig_regname = oap->regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646
1647 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1648 return OK;
1649
1650 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1651 if (oap->empty)
1652 return u_save_cursor();
1653
1654 if (!curbuf->b_p_ma)
1655 {
1656 EMSG(_(e_modifiable));
1657 return FAIL;
1658 }
1659
1660#ifdef FEAT_CLIPBOARD
1661 adjust_clip_reg(&oap->regname);
1662#endif
1663
1664#ifdef FEAT_MBYTE
1665 if (has_mbyte)
1666 mb_adjust_opend(oap);
1667#endif
1668
Bram Moolenaard04b7502010-07-08 22:27:55 +02001669 /*
1670 * Imitate the strange Vi behaviour: If the delete spans more than one
1671 * line and motion_type == MCHAR and the result is a blank line, make the
1672 * delete linewise. Don't do this for the change command or Visual mode.
1673 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 if ( oap->motion_type == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001676 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 && oap->line_count > 1
Bram Moolenaar64a72302012-01-10 13:46:22 +01001678 && oap->motion_force == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 && oap->op_type == OP_DELETE)
1680 {
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001681 ptr = ml_get(oap->end.lnum) + oap->end.col;
1682 if (*ptr != NUL)
1683 ptr += oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 ptr = skipwhite(ptr);
1685 if (*ptr == NUL && inindent(0))
1686 oap->motion_type = MLINE;
1687 }
1688
Bram Moolenaard04b7502010-07-08 22:27:55 +02001689 /*
1690 * Check for trying to delete (e.g. "D") in an empty line.
1691 * Note: For the change operator it is ok.
1692 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 if ( oap->motion_type == MCHAR
1694 && oap->line_count == 1
1695 && oap->op_type == OP_DELETE
1696 && *ml_get(oap->start.lnum) == NUL)
1697 {
1698 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001699 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 * 'cpoptions' (Vi compatible).
1701 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001702#ifdef FEAT_VIRTUALEDIT
1703 if (virtual_op)
1704 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1705 * marks as if it happened. */
1706 goto setmarks;
1707#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1709 beep_flush();
1710 return OK;
1711 }
1712
Bram Moolenaard04b7502010-07-08 22:27:55 +02001713 /*
1714 * Do a yank of whatever we're about to delete.
1715 * If a yank register was specified, put the deleted text into that
1716 * register. For the black hole register '_' don't yank anything.
1717 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 if (oap->regname != '_')
1719 {
1720 if (oap->regname != 0)
1721 {
1722 /* check for read-only register */
1723 if (!valid_yank_reg(oap->regname, TRUE))
1724 {
1725 beep_flush();
1726 return OK;
1727 }
1728 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1729 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1730 did_yank = TRUE;
1731 }
1732
1733 /*
1734 * Put deleted text into register 1 and shift number registers if the
1735 * delete contains a line break, or when a regname has been specified.
Bram Moolenaar7c821302012-09-05 14:18:45 +02001736 * Use the register name from before adjust_clip_reg() may have
1737 * changed it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 */
Bram Moolenaar7c821302012-09-05 14:18:45 +02001739 if (orig_regname != 0 || oap->motion_type == MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 || oap->line_count > 1 || oap->use_reg_one)
1741 {
1742 y_current = &y_regs[9];
1743 free_yank_all(); /* free register nine */
1744 for (n = 9; n > 1; --n)
1745 y_regs[n] = y_regs[n - 1];
1746 y_previous = y_current = &y_regs[1];
1747 y_regs[1].y_array = NULL; /* set register one to empty */
1748 if (op_yank(oap, TRUE, FALSE) == OK)
1749 did_yank = TRUE;
1750 }
1751
Bram Moolenaar84298db2012-04-20 13:46:08 +02001752 /* Yank into small delete register when no named register specified
1753 * and the delete is within one line. */
1754 if ((
1755#ifdef FEAT_CLIPBOARD
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001756 ((clip_unnamed & CLIP_UNNAMED) && oap->regname == '*') ||
1757 ((clip_unnamed & CLIP_UNNAMED_PLUS) && oap->regname == '+') ||
Bram Moolenaar84298db2012-04-20 13:46:08 +02001758#endif
1759 oap->regname == 0) && oap->motion_type != MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 && oap->line_count == 1)
1761 {
1762 oap->regname = '-';
1763 get_yank_register(oap->regname, TRUE);
1764 if (op_yank(oap, TRUE, FALSE) == OK)
1765 did_yank = TRUE;
1766 oap->regname = 0;
1767 }
1768
1769 /*
1770 * If there's too much stuff to fit in the yank register, then get a
1771 * confirmation before doing the delete. This is crude, but simple.
1772 * And it avoids doing a delete of something we can't put back if we
1773 * want.
1774 */
1775 if (!did_yank)
1776 {
1777 int msg_silent_save = msg_silent;
1778
1779 msg_silent = 0; /* must display the prompt */
1780 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1781 msg_silent = msg_silent_save;
1782 if (n != 'y')
1783 {
1784 EMSG(_(e_abort));
1785 return FAIL;
1786 }
1787 }
1788 }
1789
Bram Moolenaard04b7502010-07-08 22:27:55 +02001790 /*
1791 * block mode delete
1792 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 if (oap->block_mode)
1794 {
1795 if (u_save((linenr_T)(oap->start.lnum - 1),
1796 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1797 return FAIL;
1798
1799 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1800 {
1801 block_prep(oap, &bd, lnum, TRUE);
1802 if (bd.textlen == 0) /* nothing to delete */
1803 continue;
1804
1805 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1806 if (lnum == curwin->w_cursor.lnum)
1807 {
1808 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1809# ifdef FEAT_VIRTUALEDIT
1810 curwin->w_cursor.coladd = 0;
1811# endif
1812 }
1813
1814 /* n == number of chars deleted
1815 * If we delete a TAB, it may be replaced by several characters.
1816 * Thus the number of characters may increase!
1817 */
1818 n = bd.textlen - bd.startspaces - bd.endspaces;
1819 oldp = ml_get(lnum);
1820 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1821 if (newp == NULL)
1822 continue;
1823 /* copy up to deleted part */
1824 mch_memmove(newp, oldp, (size_t)bd.textcol);
1825 /* insert spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02001826 vim_memset(newp + bd.textcol, ' ',
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 (size_t)(bd.startspaces + bd.endspaces));
1828 /* copy the part after the deleted part */
1829 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001830 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 /* replace the line */
1832 ml_replace(lnum, newp, FALSE);
1833 }
1834
1835 check_cursor_col();
1836 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1837 oap->end.lnum + 1, 0L);
1838 oap->line_count = 0; /* no lines deleted */
1839 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001840 else if (oap->motion_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 {
1842 if (oap->op_type == OP_CHANGE)
1843 {
1844 /* Delete the lines except the first one. Temporarily move the
1845 * cursor to the next line. Save the current line number, if the
1846 * last line is deleted it may be changed.
1847 */
1848 if (oap->line_count > 1)
1849 {
1850 lnum = curwin->w_cursor.lnum;
1851 ++curwin->w_cursor.lnum;
1852 del_lines((long)(oap->line_count - 1), TRUE);
1853 curwin->w_cursor.lnum = lnum;
1854 }
1855 if (u_save_cursor() == FAIL)
1856 return FAIL;
1857 if (curbuf->b_p_ai) /* don't delete indent */
1858 {
1859 beginline(BL_WHITE); /* cursor on first non-white */
1860 did_ai = TRUE; /* delete the indent when ESC hit */
1861 ai_col = curwin->w_cursor.col;
1862 }
1863 else
1864 beginline(0); /* cursor in column 0 */
1865 truncate_line(FALSE); /* delete the rest of the line */
1866 /* leave cursor past last char in line */
1867 if (oap->line_count > 1)
1868 u_clearline(); /* "U" command not possible after "2cc" */
1869 }
1870 else
1871 {
1872 del_lines(oap->line_count, TRUE);
1873 beginline(BL_WHITE | BL_FIX);
1874 u_clearline(); /* "U" command not possible after "dd" */
1875 }
1876 }
1877 else
1878 {
1879#ifdef FEAT_VIRTUALEDIT
1880 if (virtual_op)
1881 {
1882 int endcol = 0;
1883
1884 /* For virtualedit: break the tabs that are partly included. */
1885 if (gchar_pos(&oap->start) == '\t')
1886 {
1887 if (u_save_cursor() == FAIL) /* save first line for undo */
1888 return FAIL;
1889 if (oap->line_count == 1)
1890 endcol = getviscol2(oap->end.col, oap->end.coladd);
1891 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1892 oap->start = curwin->w_cursor;
1893 if (oap->line_count == 1)
1894 {
1895 coladvance(endcol);
1896 oap->end.col = curwin->w_cursor.col;
1897 oap->end.coladd = curwin->w_cursor.coladd;
1898 curwin->w_cursor = oap->start;
1899 }
1900 }
1901
1902 /* Break a tab only when it's included in the area. */
1903 if (gchar_pos(&oap->end) == '\t'
1904 && (int)oap->end.coladd < oap->inclusive)
1905 {
1906 /* save last line for undo */
1907 if (u_save((linenr_T)(oap->end.lnum - 1),
1908 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1909 return FAIL;
1910 curwin->w_cursor = oap->end;
1911 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1912 oap->end = curwin->w_cursor;
1913 curwin->w_cursor = oap->start;
1914 }
1915 }
1916#endif
1917
1918 if (oap->line_count == 1) /* delete characters within one line */
1919 {
1920 if (u_save_cursor() == FAIL) /* save line for undo */
1921 return FAIL;
1922
1923 /* if 'cpoptions' contains '$', display '$' at end of change */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001924 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925 && oap->op_type == OP_CHANGE
1926 && oap->end.lnum == curwin->w_cursor.lnum
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001927 && !oap->is_VIsual)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 display_dollar(oap->end.col - !oap->inclusive);
1929
1930 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1931
1932#ifdef FEAT_VIRTUALEDIT
1933 if (virtual_op)
1934 {
1935 /* fix up things for virtualedit-delete:
1936 * break the tabs which are going to get in our way
1937 */
1938 char_u *curline = ml_get_curline();
1939 int len = (int)STRLEN(curline);
1940
1941 if (oap->end.coladd != 0
1942 && (int)oap->end.col >= len - 1
1943 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1944 n++;
1945 /* Delete at least one char (e.g, when on a control char). */
1946 if (n == 0 && oap->start.coladd != oap->end.coladd)
1947 n = 1;
1948
1949 /* When deleted a char in the line, reset coladd. */
1950 if (gchar_cursor() != NUL)
1951 curwin->w_cursor.coladd = 0;
1952 }
1953#endif
Bram Moolenaard009e862015-06-09 20:20:03 +02001954 (void)del_bytes((long)n, !virtual_op,
1955 oap->op_type == OP_DELETE && !oap->is_VIsual);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 }
1957 else /* delete characters between lines */
1958 {
1959 pos_T curpos;
1960
1961 /* save deleted and changed lines for undo */
1962 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1963 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1964 return FAIL;
1965
1966 truncate_line(TRUE); /* delete from cursor to end of line */
1967
1968 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1969 ++curwin->w_cursor.lnum;
1970 del_lines((long)(oap->line_count - 2), FALSE);
1971
Bram Moolenaard009e862015-06-09 20:20:03 +02001972 /* delete from start of line until op_end */
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001973 n = (oap->end.col + 1 - !oap->inclusive);
Bram Moolenaard009e862015-06-09 20:20:03 +02001974 curwin->w_cursor.col = 0;
1975 (void)del_bytes((long)n, !virtual_op,
1976 oap->op_type == OP_DELETE && !oap->is_VIsual);
1977 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
1978 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 }
1980 }
1981
1982 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
1983
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001984#ifdef FEAT_VIRTUALEDIT
1985setmarks:
1986#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 if (oap->block_mode)
1988 {
1989 curbuf->b_op_end.lnum = oap->end.lnum;
1990 curbuf->b_op_end.col = oap->start.col;
1991 }
1992 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 curbuf->b_op_end = oap->start;
1994 curbuf->b_op_start = oap->start;
1995
1996 return OK;
1997}
1998
1999#ifdef FEAT_MBYTE
2000/*
2001 * Adjust end of operating area for ending on a multi-byte character.
2002 * Used for deletion.
2003 */
2004 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002005mb_adjust_opend(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006{
2007 char_u *p;
2008
2009 if (oap->inclusive)
2010 {
2011 p = ml_get(oap->end.lnum);
2012 oap->end.col += mb_tail_off(p, p + oap->end.col);
2013 }
2014}
2015#endif
2016
2017#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2018/*
2019 * Replace a whole area with one character.
2020 */
2021 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002022op_replace(oparg_T *oap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023{
2024 int n, numc;
2025#ifdef FEAT_MBYTE
2026 int num_chars;
2027#endif
2028 char_u *newp, *oldp;
2029 size_t oldlen;
2030 struct block_def bd;
Bram Moolenaard9820532013-11-04 01:41:17 +01002031 char_u *after_p = NULL;
2032 int had_ctrl_v_cr = (c == -1 || c == -2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033
2034 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2035 return OK; /* nothing to do */
2036
Bram Moolenaard9820532013-11-04 01:41:17 +01002037 if (had_ctrl_v_cr)
2038 c = (c == -1 ? '\r' : '\n');
2039
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040#ifdef FEAT_MBYTE
2041 if (has_mbyte)
2042 mb_adjust_opend(oap);
2043#endif
2044
2045 if (u_save((linenr_T)(oap->start.lnum - 1),
2046 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2047 return FAIL;
2048
2049 /*
2050 * block mode replace
2051 */
2052 if (oap->block_mode)
2053 {
2054 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2055 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2056 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002057 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2059 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2060 continue; /* nothing to replace */
2061
2062 /* n == number of extra chars required
2063 * If we split a TAB, it may be replaced by several characters.
2064 * Thus the number of characters may increase!
2065 */
2066#ifdef FEAT_VIRTUALEDIT
2067 /* If the range starts in virtual space, count the initial
2068 * coladd offset as part of "startspaces" */
2069 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2070 {
2071 pos_T vpos;
2072
Bram Moolenaara1381de2009-11-03 15:44:21 +00002073 vpos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 getvpos(&vpos, oap->start_vcol);
2075 bd.startspaces += vpos.coladd;
2076 n = bd.startspaces;
2077 }
2078 else
2079#endif
2080 /* allow for pre spaces */
2081 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2082
2083 /* allow for post spp */
2084 n += (bd.endspaces
2085#ifdef FEAT_VIRTUALEDIT
2086 && !bd.is_oneChar
2087#endif
2088 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2089 /* Figure out how many characters to replace. */
2090 numc = oap->end_vcol - oap->start_vcol + 1;
2091 if (bd.is_short && (!virtual_op || bd.is_MAX))
2092 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2093
2094#ifdef FEAT_MBYTE
2095 /* A double-wide character can be replaced only up to half the
2096 * times. */
2097 if ((*mb_char2cells)(c) > 1)
2098 {
2099 if ((numc & 1) && !bd.is_short)
2100 {
2101 ++bd.endspaces;
2102 ++n;
2103 }
2104 numc = numc / 2;
2105 }
2106
2107 /* Compute bytes needed, move character count to num_chars. */
2108 num_chars = numc;
2109 numc *= (*mb_char2len)(c);
2110#endif
2111 /* oldlen includes textlen, so don't double count */
2112 n += numc - bd.textlen;
2113
2114 oldp = ml_get_curline();
2115 oldlen = STRLEN(oldp);
2116 newp = alloc_check((unsigned)oldlen + 1 + n);
2117 if (newp == NULL)
2118 continue;
2119 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2120 /* copy up to deleted part */
2121 mch_memmove(newp, oldp, (size_t)bd.textcol);
2122 oldp += bd.textcol + bd.textlen;
2123 /* insert pre-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002124 vim_memset(newp + bd.textcol, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
Bram Moolenaard9820532013-11-04 01:41:17 +01002126 /* -1/-2 is used for entering CR literally. */
2127 if (had_ctrl_v_cr || (c != '\r' && c != '\n'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002129#ifdef FEAT_MBYTE
2130 if (has_mbyte)
2131 {
2132 n = (int)STRLEN(newp);
2133 while (--num_chars >= 0)
2134 n += (*mb_char2bytes)(c, newp + n);
2135 }
2136 else
2137#endif
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002138 vim_memset(newp + STRLEN(newp), c, (size_t)numc);
Bram Moolenaard9820532013-11-04 01:41:17 +01002139 if (!bd.is_short)
2140 {
2141 /* insert post-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002142 vim_memset(newp + STRLEN(newp), ' ', (size_t)bd.endspaces);
Bram Moolenaard9820532013-11-04 01:41:17 +01002143 /* copy the part after the changed part */
2144 STRMOVE(newp + STRLEN(newp), oldp);
2145 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 }
2147 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002149 /* Replacing with \r or \n means splitting the line. */
Bram Moolenaarefe06f42013-11-11 23:17:39 +01002150 after_p = alloc_check(
2151 (unsigned)(oldlen + 1 + n - STRLEN(newp)));
Bram Moolenaard9820532013-11-04 01:41:17 +01002152 if (after_p != NULL)
2153 STRMOVE(after_p, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 }
2155 /* replace the line */
2156 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
Bram Moolenaard9820532013-11-04 01:41:17 +01002157 if (after_p != NULL)
2158 {
2159 ml_append(curwin->w_cursor.lnum++, after_p, 0, FALSE);
2160 appended_lines_mark(curwin->w_cursor.lnum, 1L);
2161 oap->end.lnum++;
2162 vim_free(after_p);
2163 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 }
2165 }
2166 else
2167 {
2168 /*
2169 * MCHAR and MLINE motion replace.
2170 */
2171 if (oap->motion_type == MLINE)
2172 {
2173 oap->start.col = 0;
2174 curwin->w_cursor.col = 0;
2175 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2176 if (oap->end.col)
2177 --oap->end.col;
2178 }
2179 else if (!oap->inclusive)
2180 dec(&(oap->end));
2181
2182 while (ltoreq(curwin->w_cursor, oap->end))
2183 {
2184 n = gchar_cursor();
2185 if (n != NUL)
2186 {
2187#ifdef FEAT_MBYTE
2188 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2189 {
2190 /* This is slow, but it handles replacing a single-byte
2191 * with a multi-byte and the other way around. */
Bram Moolenaardb813952013-03-07 18:50:57 +01002192 if (curwin->w_cursor.lnum == oap->end.lnum)
2193 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 n = State;
2195 State = REPLACE;
2196 ins_char(c);
2197 State = n;
2198 /* Backup to the replaced character. */
2199 dec_cursor();
2200 }
2201 else
2202#endif
2203 {
2204#ifdef FEAT_VIRTUALEDIT
2205 if (n == TAB)
2206 {
2207 int end_vcol = 0;
2208
2209 if (curwin->w_cursor.lnum == oap->end.lnum)
2210 {
2211 /* oap->end has to be recalculated when
2212 * the tab breaks */
2213 end_vcol = getviscol2(oap->end.col,
2214 oap->end.coladd);
2215 }
2216 coladvance_force(getviscol());
2217 if (curwin->w_cursor.lnum == oap->end.lnum)
2218 getvpos(&oap->end, end_vcol);
2219 }
2220#endif
2221 pchar(curwin->w_cursor, c);
2222 }
2223 }
2224#ifdef FEAT_VIRTUALEDIT
2225 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2226 {
2227 int virtcols = oap->end.coladd;
2228
2229 if (curwin->w_cursor.lnum == oap->start.lnum
2230 && oap->start.col == oap->end.col && oap->start.coladd)
2231 virtcols -= oap->start.coladd;
2232
2233 /* oap->end has been trimmed so it's effectively inclusive;
2234 * as a result an extra +1 must be counted so we don't
2235 * trample the NUL byte. */
2236 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2237 curwin->w_cursor.col -= (virtcols + 1);
2238 for (; virtcols >= 0; virtcols--)
2239 {
2240 pchar(curwin->w_cursor, c);
2241 if (inc(&curwin->w_cursor) == -1)
2242 break;
2243 }
2244 }
2245#endif
2246
2247 /* Advance to next character, stop at the end of the file. */
2248 if (inc_cursor() == -1)
2249 break;
2250 }
2251 }
2252
2253 curwin->w_cursor = oap->start;
2254 check_cursor();
2255 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2256
2257 /* Set "'[" and "']" marks. */
2258 curbuf->b_op_start = oap->start;
2259 curbuf->b_op_end = oap->end;
2260
2261 return OK;
2262}
2263#endif
2264
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002265static int swapchars(int op_type, pos_T *pos, int length);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002266
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267/*
2268 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2269 */
2270 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002271op_tilde(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272{
2273 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 struct block_def bd;
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002275 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276
2277 if (u_save((linenr_T)(oap->start.lnum - 1),
2278 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2279 return;
2280
2281 pos = oap->start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 if (oap->block_mode) /* Visual block mode */
2283 {
2284 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2285 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002286 int one_change;
2287
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 block_prep(oap, &bd, pos.lnum, FALSE);
2289 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002290 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2291 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002292
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002293#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002294 if (netbeans_active() && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 {
2296 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2297
Bram Moolenaar009b2592004-10-24 19:18:58 +00002298 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2299 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002301 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002303#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 }
2305 if (did_change)
2306 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2307 }
2308 else /* not block mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 {
2310 if (oap->motion_type == MLINE)
2311 {
2312 oap->start.col = 0;
2313 pos.col = 0;
2314 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2315 if (oap->end.col)
2316 --oap->end.col;
2317 }
2318 else if (!oap->inclusive)
2319 dec(&(oap->end));
2320
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002321 if (pos.lnum == oap->end.lnum)
2322 did_change = swapchars(oap->op_type, &pos,
2323 oap->end.col - pos.col + 1);
2324 else
2325 for (;;)
2326 {
2327 did_change |= swapchars(oap->op_type, &pos,
2328 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2329 (int)STRLEN(ml_get_pos(&pos)));
2330 if (ltoreq(oap->end, pos) || inc(&pos) == -1)
2331 break;
2332 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 if (did_change)
2334 {
2335 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2336 0L);
2337#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002338 if (netbeans_active() && did_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 {
2340 char_u *ptr;
2341 int count;
2342
2343 pos = oap->start;
2344 while (pos.lnum < oap->end.lnum)
2345 {
2346 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002347 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002348 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002350 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 pos.col = 0;
2352 pos.lnum++;
2353 }
2354 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2355 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002356 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002358 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 }
2360#endif
2361 }
2362 }
2363
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 if (!did_change && oap->is_VIsual)
2365 /* No change: need to remove the Visual selection */
2366 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367
2368 /*
2369 * Set '[ and '] marks.
2370 */
2371 curbuf->b_op_start = oap->start;
2372 curbuf->b_op_end = oap->end;
2373
2374 if (oap->line_count > p_report)
2375 {
2376 if (oap->line_count == 1)
2377 MSG(_("1 line changed"));
2378 else
2379 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2380 }
2381}
2382
2383/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002384 * Invoke swapchar() on "length" bytes at position "pos".
2385 * "pos" is advanced to just after the changed characters.
2386 * "length" is rounded up to include the whole last multi-byte character.
2387 * Also works correctly when the number of bytes changes.
2388 * Returns TRUE if some character was changed.
2389 */
2390 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002391swapchars(int op_type, pos_T *pos, int length)
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002392{
2393 int todo;
2394 int did_change = 0;
2395
2396 for (todo = length; todo > 0; --todo)
2397 {
2398# ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002399 if (has_mbyte)
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002400 {
2401 int len = (*mb_ptr2len)(ml_get_pos(pos));
2402
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002403 /* we're counting bytes, not characters */
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002404 if (len > 0)
2405 todo -= len - 1;
2406 }
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002407# endif
2408 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002409 if (inc(pos) == -1) /* at end of file */
2410 break;
2411 }
2412 return did_change;
2413}
2414
2415/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 * If op_type == OP_UPPER: make uppercase,
2417 * if op_type == OP_LOWER: make lowercase,
2418 * if op_type == OP_ROT13: do rot13 encoding,
2419 * else swap case of character at 'pos'
2420 * returns TRUE when something actually changed.
2421 */
2422 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002423swapchar(int op_type, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424{
2425 int c;
2426 int nc;
2427
2428 c = gchar_pos(pos);
2429
2430 /* Only do rot13 encoding for ASCII characters. */
2431 if (c >= 0x80 && op_type == OP_ROT13)
2432 return FALSE;
2433
2434#ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002435 if (op_type == OP_UPPER && c == 0xdf
2436 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002437 {
2438 pos_T sp = curwin->w_cursor;
2439
2440 /* Special handling of German sharp s: change to "SS". */
2441 curwin->w_cursor = *pos;
2442 del_char(FALSE);
2443 ins_char('S');
2444 ins_char('S');
2445 curwin->w_cursor = sp;
2446 inc(pos);
2447 }
2448
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2450 return FALSE;
2451#endif
2452 nc = c;
2453 if (MB_ISLOWER(c))
2454 {
2455 if (op_type == OP_ROT13)
2456 nc = ROT13(c, 'a');
2457 else if (op_type != OP_LOWER)
2458 nc = MB_TOUPPER(c);
2459 }
2460 else if (MB_ISUPPER(c))
2461 {
2462 if (op_type == OP_ROT13)
2463 nc = ROT13(c, 'A');
2464 else if (op_type != OP_UPPER)
2465 nc = MB_TOLOWER(c);
2466 }
2467 if (nc != c)
2468 {
2469#ifdef FEAT_MBYTE
2470 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2471 {
2472 pos_T sp = curwin->w_cursor;
2473
2474 curwin->w_cursor = *pos;
Bram Moolenaard1cb65e2010-08-01 14:22:48 +02002475 /* don't use del_char(), it also removes composing chars */
2476 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 ins_char(nc);
2478 curwin->w_cursor = sp;
2479 }
2480 else
2481#endif
2482 pchar(*pos, nc);
2483 return TRUE;
2484 }
2485 return FALSE;
2486}
2487
2488#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2489/*
2490 * op_insert - Insert and append operators for Visual mode.
2491 */
2492 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002493op_insert(oparg_T *oap, long count1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494{
2495 long ins_len, pre_textlen = 0;
2496 char_u *firstline, *ins_text;
2497 struct block_def bd;
2498 int i;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002499 pos_T t1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500
2501 /* edit() changes this - record it for OP_APPEND */
2502 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2503
2504 /* vis block is still marked. Get rid of it now. */
2505 curwin->w_cursor.lnum = oap->start.lnum;
2506 update_screen(INVERTED);
2507
2508 if (oap->block_mode)
2509 {
2510#ifdef FEAT_VIRTUALEDIT
2511 /* When 'virtualedit' is used, need to insert the extra spaces before
2512 * doing block_prep(). When only "block" is used, virtual edit is
2513 * already disabled, but still need it when calling
2514 * coladvance_force(). */
2515 if (curwin->w_cursor.coladd > 0)
2516 {
2517 int old_ve_flags = ve_flags;
2518
2519 ve_flags = VE_ALL;
2520 if (u_save_cursor() == FAIL)
2521 return;
2522 coladvance_force(oap->op_type == OP_APPEND
2523 ? oap->end_vcol + 1 : getviscol());
2524 if (oap->op_type == OP_APPEND)
2525 --curwin->w_cursor.col;
2526 ve_flags = old_ve_flags;
2527 }
2528#endif
2529 /* Get the info about the block before entering the text */
2530 block_prep(oap, &bd, oap->start.lnum, TRUE);
2531 firstline = ml_get(oap->start.lnum) + bd.textcol;
2532 if (oap->op_type == OP_APPEND)
2533 firstline += bd.textlen;
2534 pre_textlen = (long)STRLEN(firstline);
2535 }
2536
2537 if (oap->op_type == OP_APPEND)
2538 {
2539 if (oap->block_mode
2540#ifdef FEAT_VIRTUALEDIT
2541 && curwin->w_cursor.coladd == 0
2542#endif
2543 )
2544 {
2545 /* Move the cursor to the character right of the block. */
2546 curwin->w_set_curswant = TRUE;
2547 while (*ml_get_cursor() != NUL
2548 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2549 ++curwin->w_cursor.col;
2550 if (bd.is_short && !bd.is_MAX)
2551 {
2552 /* First line was too short, make it longer and adjust the
2553 * values in "bd". */
2554 if (u_save_cursor() == FAIL)
2555 return;
2556 for (i = 0; i < bd.endspaces; ++i)
2557 ins_char(' ');
2558 bd.textlen += bd.endspaces;
2559 }
2560 }
2561 else
2562 {
2563 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002564 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565
2566 /* Works just like an 'i'nsert on the next character. */
2567 if (!lineempty(curwin->w_cursor.lnum)
2568 && oap->start_vcol != oap->end_vcol)
2569 inc_cursor();
2570 }
2571 }
2572
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002573 t1 = oap->start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 edit(NUL, FALSE, (linenr_T)count1);
2575
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002576 /* When a tab was inserted, and the characters in front of the tab
2577 * have been converted to a tab as well, the column of the cursor
2578 * might have actually been reduced, so need to adjust here. */
2579 if (t1.lnum == curbuf->b_op_start_orig.lnum
2580 && lt(curbuf->b_op_start_orig, t1))
2581 oap->start = curbuf->b_op_start_orig;
2582
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002583 /* If user has moved off this line, we don't know what to do, so do
2584 * nothing.
2585 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2586 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 return;
2588
2589 if (oap->block_mode)
2590 {
2591 struct block_def bd2;
2592
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002593 /* The user may have moved the cursor before inserting something, try
2594 * to adjust the block for that. */
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002595 if (oap->start.lnum == curbuf->b_op_start_orig.lnum && !bd.is_MAX)
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002596 {
2597 if (oap->op_type == OP_INSERT
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002598 && oap->start.col
2599#ifdef FEAT_VIRTUALEDIT
2600 + oap->start.coladd
2601#endif
2602 != curbuf->b_op_start_orig.col
2603#ifdef FEAT_VIRTUALEDIT
2604 + curbuf->b_op_start_orig.coladd
2605#endif
2606 )
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002607 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002608 int t = getviscol2(curbuf->b_op_start_orig.col,
2609 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002610 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002611 pre_textlen -= t - oap->start_vcol;
2612 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002613 }
2614 else if (oap->op_type == OP_APPEND
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002615 && oap->end.col
2616#ifdef FEAT_VIRTUALEDIT
2617 + oap->end.coladd
2618#endif
2619 >= curbuf->b_op_start_orig.col
2620#ifdef FEAT_VIRTUALEDIT
2621 + curbuf->b_op_start_orig.coladd
2622#endif
2623 )
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002624 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002625 int t = getviscol2(curbuf->b_op_start_orig.col,
2626 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002627 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002628 /* reset pre_textlen to the value of OP_INSERT */
2629 pre_textlen += bd.textlen;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002630 pre_textlen -= t - oap->start_vcol;
2631 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002632 oap->op_type = OP_INSERT;
2633 }
2634 }
2635
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 /*
2637 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002638 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 * Don't do this when "$" used, end-of-line will have changed.
2640 */
2641 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2642 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2643 {
2644 if (oap->op_type == OP_APPEND)
2645 {
2646 pre_textlen += bd2.textlen - bd.textlen;
2647 if (bd2.endspaces)
2648 --bd2.textlen;
2649 }
2650 bd.textcol = bd2.textcol;
2651 bd.textlen = bd2.textlen;
2652 }
2653
2654 /*
2655 * Subsequent calls to ml_get() flush the firstline data - take a
2656 * copy of the required string.
2657 */
2658 firstline = ml_get(oap->start.lnum) + bd.textcol;
2659 if (oap->op_type == OP_APPEND)
2660 firstline += bd.textlen;
Bram Moolenaar5e4b9e92012-03-23 14:16:23 +01002661 if (pre_textlen >= 0
2662 && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 {
2664 ins_text = vim_strnsave(firstline, (int)ins_len);
2665 if (ins_text != NULL)
2666 {
2667 /* block handled here */
2668 if (u_save(oap->start.lnum,
2669 (linenr_T)(oap->end.lnum + 1)) == OK)
2670 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2671 &bd);
2672
2673 curwin->w_cursor.col = oap->start.col;
2674 check_cursor();
2675 vim_free(ins_text);
2676 }
2677 }
2678 }
2679}
2680#endif
2681
2682/*
2683 * op_change - handle a change operation
2684 *
2685 * return TRUE if edit() returns because of a CTRL-O command
2686 */
2687 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002688op_change(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689{
2690 colnr_T l;
2691 int retval;
2692#ifdef FEAT_VISUALEXTRA
2693 long offset;
2694 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002695 long ins_len;
2696 long pre_textlen = 0;
2697 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 char_u *firstline;
2699 char_u *ins_text, *newp, *oldp;
2700 struct block_def bd;
2701#endif
2702
2703 l = oap->start.col;
2704 if (oap->motion_type == MLINE)
2705 {
2706 l = 0;
2707#ifdef FEAT_SMARTINDENT
2708 if (!p_paste && curbuf->b_p_si
2709# ifdef FEAT_CINDENT
2710 && !curbuf->b_p_cin
2711# endif
2712 )
2713 can_si = TRUE; /* It's like opening a new line, do si */
2714#endif
2715 }
2716
2717 /* First delete the text in the region. In an empty buffer only need to
2718 * save for undo */
2719 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2720 {
2721 if (u_save_cursor() == FAIL)
2722 return FALSE;
2723 }
2724 else if (op_delete(oap) == FAIL)
2725 return FALSE;
2726
2727 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
2728 && !virtual_op)
2729 inc_cursor();
2730
2731#ifdef FEAT_VISUALEXTRA
2732 /* check for still on same line (<CR> in inserted text meaningless) */
2733 /* skip blank lines too */
2734 if (oap->block_mode)
2735 {
2736# ifdef FEAT_VIRTUALEDIT
2737 /* Add spaces before getting the current line length. */
2738 if (virtual_op && (curwin->w_cursor.coladd > 0
2739 || gchar_cursor() == NUL))
2740 coladvance_force(getviscol());
2741# endif
Bram Moolenaar53241da2007-09-13 20:41:32 +00002742 firstline = ml_get(oap->start.lnum);
2743 pre_textlen = (long)STRLEN(firstline);
2744 pre_indent = (long)(skipwhite(firstline) - firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 bd.textcol = curwin->w_cursor.col;
2746 }
2747#endif
2748
2749#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2750 if (oap->motion_type == MLINE)
2751 fix_indent();
2752#endif
2753
2754 retval = edit(NUL, FALSE, (linenr_T)1);
2755
2756#ifdef FEAT_VISUALEXTRA
2757 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002758 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002760 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002762 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002764 /* Auto-indenting may have changed the indent. If the cursor was past
2765 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002767 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002769 long new_indent = (long)(skipwhite(firstline) - firstline);
2770
2771 pre_textlen += new_indent - pre_indent;
2772 bd.textcol += new_indent - pre_indent;
2773 }
2774
2775 ins_len = (long)STRLEN(firstline) - pre_textlen;
2776 if (ins_len > 0)
2777 {
2778 /* Subsequent calls to ml_get() flush the firstline data - take a
2779 * copy of the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2781 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002782 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2784 linenr++)
2785 {
2786 block_prep(oap, &bd, linenr, TRUE);
2787 if (!bd.is_short || virtual_op)
2788 {
2789# ifdef FEAT_VIRTUALEDIT
2790 pos_T vpos;
2791
2792 /* If the block starts in virtual space, count the
2793 * initial coladd offset as part of "startspaces" */
2794 if (bd.is_short)
2795 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002796 vpos.lnum = linenr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 (void)getvpos(&vpos, oap->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 }
2799 else
2800 vpos.coladd = 0;
2801# endif
2802 oldp = ml_get(linenr);
2803 newp = alloc_check((unsigned)(STRLEN(oldp)
2804# ifdef FEAT_VIRTUALEDIT
2805 + vpos.coladd
2806# endif
2807 + ins_len + 1));
2808 if (newp == NULL)
2809 continue;
2810 /* copy up to block start */
2811 mch_memmove(newp, oldp, (size_t)bd.textcol);
2812 offset = bd.textcol;
2813# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002814 vim_memset(newp + offset, ' ', (size_t)vpos.coladd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 offset += vpos.coladd;
2816# endif
2817 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2818 offset += ins_len;
2819 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002820 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 ml_replace(linenr, newp, FALSE);
2822 }
2823 }
2824 check_cursor();
2825
2826 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2827 }
2828 vim_free(ins_text);
2829 }
2830 }
2831#endif
2832
2833 return retval;
2834}
2835
2836/*
2837 * set all the yank registers to empty (called from main())
2838 */
2839 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002840init_yank(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841{
2842 int i;
2843
2844 for (i = 0; i < NUM_REGISTERS; ++i)
2845 y_regs[i].y_array = NULL;
2846}
2847
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002848#if defined(EXITFREE) || defined(PROTO)
2849 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002850clear_registers(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002851{
2852 int i;
2853
2854 for (i = 0; i < NUM_REGISTERS; ++i)
2855 {
2856 y_current = &y_regs[i];
2857 if (y_current->y_array != NULL)
2858 free_yank_all();
2859 }
2860}
2861#endif
2862
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863/*
2864 * Free "n" lines from the current yank register.
2865 * Called for normal freeing and in case of error.
2866 */
2867 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002868free_yank(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869{
2870 if (y_current->y_array != NULL)
2871 {
2872 long i;
2873
2874 for (i = n; --i >= 0; )
2875 {
2876#ifdef AMIGA /* only for very slow machines */
2877 if ((i & 1023) == 1023) /* this may take a while */
2878 {
2879 /*
2880 * This message should never cause a hit-return message.
2881 * Overwrite this message with any next message.
2882 */
2883 ++no_wait_return;
2884 smsg((char_u *)_("freeing %ld lines"), i + 1);
2885 --no_wait_return;
2886 msg_didout = FALSE;
2887 msg_col = 0;
2888 }
2889#endif
2890 vim_free(y_current->y_array[i]);
2891 }
2892 vim_free(y_current->y_array);
2893 y_current->y_array = NULL;
2894#ifdef AMIGA
2895 if (n >= 1000)
2896 MSG("");
2897#endif
2898 }
2899}
2900
2901 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002902free_yank_all(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903{
2904 free_yank(y_current->y_size);
2905}
2906
2907/*
2908 * Yank the text between "oap->start" and "oap->end" into a yank register.
2909 * If we are to append (uppercase register), we first yank into a new yank
2910 * register and then concatenate the old and the new one (so we keep the old
2911 * one in case of out-of-memory).
2912 *
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02002913 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 */
2915 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002916op_yank(oparg_T *oap, int deleting, int mess)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917{
2918 long y_idx; /* index in y_array[] */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002919 yankreg_T *curr; /* copy of y_current */
2920 yankreg_T newreg; /* new yank register when appending */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 char_u **new_ptr;
2922 linenr_T lnum; /* current line number */
2923 long j;
2924 int yanktype = oap->motion_type;
2925 long yanklines = oap->line_count;
2926 linenr_T yankendlnum = oap->end.lnum;
2927 char_u *p;
2928 char_u *pnew;
2929 struct block_def bd;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01002930#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01002931 int did_star = FALSE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01002932#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933
2934 /* check for read-only register */
2935 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2936 {
2937 beep_flush();
2938 return FAIL;
2939 }
2940 if (oap->regname == '_') /* black hole: nothing to do */
2941 return OK;
2942
2943#ifdef FEAT_CLIPBOARD
2944 if (!clip_star.available && oap->regname == '*')
2945 oap->regname = 0;
2946 else if (!clip_plus.available && oap->regname == '+')
2947 oap->regname = 0;
2948#endif
2949
2950 if (!deleting) /* op_delete() already set y_current */
2951 get_yank_register(oap->regname, TRUE);
2952
2953 curr = y_current;
2954 /* append to existing contents */
2955 if (y_append && y_current->y_array != NULL)
2956 y_current = &newreg;
2957 else
2958 free_yank_all(); /* free previously yanked lines */
2959
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002960 /*
2961 * If the cursor was in column 1 before and after the movement, and the
2962 * operator is not inclusive, the yank is always linewise.
2963 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 if ( oap->motion_type == MCHAR
2965 && oap->start.col == 0
2966 && !oap->inclusive
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00002968 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 && oap->end.col == 0
2970 && yanklines > 1)
2971 {
2972 yanktype = MLINE;
2973 --yankendlnum;
2974 --yanklines;
2975 }
2976
2977 y_current->y_size = yanklines;
2978 y_current->y_type = yanktype; /* set the yank register type */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 y_current->y_width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
2981 yanklines), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982 if (y_current->y_array == NULL)
2983 {
2984 y_current = curr;
2985 return FAIL;
2986 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002987#ifdef FEAT_VIMINFO
2988 y_current->y_time_set = vim_time();
2989#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990
2991 y_idx = 0;
2992 lnum = oap->start.lnum;
2993
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 if (oap->block_mode)
2995 {
2996 /* Visual block mode */
2997 y_current->y_type = MBLOCK; /* set the yank register type */
2998 y_current->y_width = oap->end_vcol - oap->start_vcol;
2999
3000 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
3001 y_current->y_width--;
3002 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003
3004 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
3005 {
3006 switch (y_current->y_type)
3007 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 case MBLOCK:
3009 block_prep(oap, &bd, lnum, FALSE);
3010 if (yank_copy_line(&bd, y_idx) == FAIL)
3011 goto fail;
3012 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013
3014 case MLINE:
3015 if ((y_current->y_array[y_idx] =
3016 vim_strsave(ml_get(lnum))) == NULL)
3017 goto fail;
3018 break;
3019
3020 case MCHAR:
3021 {
3022 colnr_T startcol = 0, endcol = MAXCOL;
3023#ifdef FEAT_VIRTUALEDIT
3024 int is_oneChar = FALSE;
3025 colnr_T cs, ce;
3026#endif
3027 p = ml_get(lnum);
3028 bd.startspaces = 0;
3029 bd.endspaces = 0;
3030
3031 if (lnum == oap->start.lnum)
3032 {
3033 startcol = oap->start.col;
3034#ifdef FEAT_VIRTUALEDIT
3035 if (virtual_op)
3036 {
3037 getvcol(curwin, &oap->start, &cs, NULL, &ce);
3038 if (ce != cs && oap->start.coladd > 0)
3039 {
3040 /* Part of a tab selected -- but don't
3041 * double-count it. */
3042 bd.startspaces = (ce - cs + 1)
3043 - oap->start.coladd;
3044 startcol++;
3045 }
3046 }
3047#endif
3048 }
3049
3050 if (lnum == oap->end.lnum)
3051 {
3052 endcol = oap->end.col;
3053#ifdef FEAT_VIRTUALEDIT
3054 if (virtual_op)
3055 {
3056 getvcol(curwin, &oap->end, &cs, NULL, &ce);
3057 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
3058# ifdef FEAT_MBYTE
3059 /* Don't add space for double-wide
3060 * char; endcol will be on last byte
3061 * of multi-byte char. */
3062 && (*mb_head_off)(p, p + endcol) == 0
3063# endif
3064 ))
3065 {
3066 if (oap->start.lnum == oap->end.lnum
3067 && oap->start.col == oap->end.col)
3068 {
3069 /* Special case: inside a single char */
3070 is_oneChar = TRUE;
3071 bd.startspaces = oap->end.coladd
3072 - oap->start.coladd + oap->inclusive;
3073 endcol = startcol;
3074 }
3075 else
3076 {
3077 bd.endspaces = oap->end.coladd
3078 + oap->inclusive;
3079 endcol -= oap->inclusive;
3080 }
3081 }
3082 }
3083#endif
3084 }
Bram Moolenaar18e00d22012-05-18 12:49:40 +02003085 if (endcol == MAXCOL)
3086 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 if (startcol > endcol
3088#ifdef FEAT_VIRTUALEDIT
3089 || is_oneChar
3090#endif
3091 )
3092 bd.textlen = 0;
3093 else
3094 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095 bd.textlen = endcol - startcol + oap->inclusive;
3096 }
3097 bd.textstart = p + startcol;
3098 if (yank_copy_line(&bd, y_idx) == FAIL)
3099 goto fail;
3100 break;
3101 }
3102 /* NOTREACHED */
3103 }
3104 }
3105
3106 if (curr != y_current) /* append the new block to the old block */
3107 {
3108 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3109 (curr->y_size + y_current->y_size)), TRUE);
3110 if (new_ptr == NULL)
3111 goto fail;
3112 for (j = 0; j < curr->y_size; ++j)
3113 new_ptr[j] = curr->y_array[j];
3114 vim_free(curr->y_array);
3115 curr->y_array = new_ptr;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003116#ifdef FEAT_VIMINFO
3117 curr->y_time_set = vim_time();
3118#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119
3120 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3121 curr->y_type = MLINE;
3122
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003123 /* Concatenate the last line of the old block with the first line of
3124 * the new block, unless being Vi compatible. */
3125 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 {
3127 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3128 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3129 if (pnew == NULL)
3130 {
3131 y_idx = y_current->y_size - 1;
3132 goto fail;
3133 }
3134 STRCPY(pnew, curr->y_array[--j]);
3135 STRCAT(pnew, y_current->y_array[0]);
3136 vim_free(curr->y_array[j]);
3137 vim_free(y_current->y_array[0]);
3138 curr->y_array[j++] = pnew;
3139 y_idx = 1;
3140 }
3141 else
3142 y_idx = 0;
3143 while (y_idx < y_current->y_size)
3144 curr->y_array[j++] = y_current->y_array[y_idx++];
3145 curr->y_size = j;
3146 vim_free(y_current->y_array);
3147 y_current = curr;
3148 }
Bram Moolenaar7ec83432014-06-17 18:16:11 +02003149 if (curwin->w_p_rnu)
3150 redraw_later(SOME_VALID); /* cursor moved to start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 if (mess) /* Display message about yank? */
3152 {
3153 if (yanktype == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 && yanklines == 1)
3156 yanklines = 0;
3157 /* Some versions of Vi use ">=" here, some don't... */
3158 if (yanklines > p_report)
3159 {
3160 /* redisplay now, so message is not deleted */
3161 update_topline_redraw();
3162 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003163 {
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003164 if (oap->block_mode)
3165 MSG(_("block of 1 line yanked"));
3166 else
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003167 MSG(_("1 line yanked"));
3168 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003169 else if (oap->block_mode)
3170 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 else
3172 smsg((char_u *)_("%ld lines yanked"), yanklines);
3173 }
3174 }
3175
3176 /*
3177 * Set "'[" and "']" marks.
3178 */
3179 curbuf->b_op_start = oap->start;
3180 curbuf->b_op_end = oap->end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003181 if (yanktype == MLINE && !oap->block_mode)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003182 {
3183 curbuf->b_op_start.col = 0;
3184 curbuf->b_op_end.col = MAXCOL;
3185 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186
3187#ifdef FEAT_CLIPBOARD
3188 /*
3189 * If we were yanking to the '*' register, send result to clipboard.
3190 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3191 * to the '*' register.
3192 */
3193 if (clip_star.available
3194 && (curr == &(y_regs[STAR_REGISTER])
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003195 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003196 && ((clip_unnamed | clip_unnamed_saved) & CLIP_UNNAMED))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 {
3198 if (curr != &(y_regs[STAR_REGISTER]))
3199 /* Copy the text from register 0 to the clipboard register. */
3200 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3201
3202 clip_own_selection(&clip_star);
3203 clip_gen_set_selection(&clip_star);
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003204# ifdef FEAT_X11
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003205 did_star = TRUE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003206# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003207 }
3208
3209# ifdef FEAT_X11
3210 /*
3211 * If we were yanking to the '+' register, send result to selection.
3212 * Also copy to the '*' register, in case auto-select is off.
3213 */
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003214 if (clip_plus.available
3215 && (curr == &(y_regs[PLUS_REGISTER])
3216 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003217 && ((clip_unnamed | clip_unnamed_saved) &
3218 CLIP_UNNAMED_PLUS))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 {
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003220 if (curr != &(y_regs[PLUS_REGISTER]))
3221 /* Copy the text from register 0 to the clipboard register. */
3222 copy_yank_reg(&(y_regs[PLUS_REGISTER]));
3223
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 clip_own_selection(&clip_plus);
3225 clip_gen_set_selection(&clip_plus);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003226 if (!clip_isautosel_star() && !did_star
3227 && curr == &(y_regs[PLUS_REGISTER]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228 {
3229 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3230 clip_own_selection(&clip_star);
3231 clip_gen_set_selection(&clip_star);
3232 }
3233 }
3234# endif
3235#endif
3236
3237 return OK;
3238
3239fail: /* free the allocated lines */
3240 free_yank(y_idx + 1);
3241 y_current = curr;
3242 return FAIL;
3243}
3244
3245 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003246yank_copy_line(struct block_def *bd, long y_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247{
3248 char_u *pnew;
3249
3250 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3251 == NULL)
3252 return FAIL;
3253 y_current->y_array[y_idx] = pnew;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003254 vim_memset(pnew, ' ', (size_t)bd->startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 pnew += bd->startspaces;
3256 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3257 pnew += bd->textlen;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003258 vim_memset(pnew, ' ', (size_t)bd->endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 pnew += bd->endspaces;
3260 *pnew = NUL;
3261 return OK;
3262}
3263
3264#ifdef FEAT_CLIPBOARD
3265/*
3266 * Make a copy of the y_current register to register "reg".
3267 */
3268 static void
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003269copy_yank_reg(yankreg_T *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003271 yankreg_T *curr = y_current;
3272 long j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273
3274 y_current = reg;
3275 free_yank_all();
3276 *y_current = *curr;
3277 y_current->y_array = (char_u **)lalloc_clear(
3278 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3279 if (y_current->y_array == NULL)
3280 y_current->y_size = 0;
3281 else
3282 for (j = 0; j < y_current->y_size; ++j)
3283 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3284 {
3285 free_yank(j);
3286 y_current->y_size = 0;
3287 break;
3288 }
3289 y_current = curr;
3290}
3291#endif
3292
3293/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003294 * Put contents of register "regname" into the text.
3295 * Caller must check "regname" to be valid!
3296 * "flags": PUT_FIXINDENT make indent look nice
3297 * PUT_CURSEND leave cursor after end of new text
3298 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 */
3300 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003301do_put(
3302 int regname,
3303 int dir, /* BACKWARD for 'P', FORWARD for 'p' */
3304 long count,
3305 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306{
3307 char_u *ptr;
3308 char_u *newp, *oldp;
3309 int yanklen;
3310 int totlen = 0; /* init for gcc */
3311 linenr_T lnum;
3312 colnr_T col;
3313 long i; /* index in y_array[] */
3314 int y_type;
3315 long y_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316 int oldlen;
3317 long y_width = 0;
3318 colnr_T vcol;
3319 int delcount;
3320 int incr = 0;
3321 long j;
3322 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 char_u **y_array = NULL;
3324 long nr_lines = 0;
3325 pos_T new_cursor;
3326 int indent;
3327 int orig_indent = 0; /* init for gcc */
3328 int indent_diff = 0; /* init for gcc */
3329 int first_indent = TRUE;
3330 int lendiff = 0;
3331 pos_T old_pos;
3332 char_u *insert_string = NULL;
3333 int allocated = FALSE;
3334 long cnt;
3335
3336#ifdef FEAT_CLIPBOARD
3337 /* Adjust register name for "unnamed" in 'clipboard'. */
3338 adjust_clip_reg(&regname);
3339 (void)may_get_selection(regname);
3340#endif
3341
3342 if (flags & PUT_FIXINDENT)
3343 orig_indent = get_indent();
3344
3345 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3346 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3347
3348 /*
3349 * Using inserted text works differently, because the register includes
3350 * special characters (newlines, etc.).
3351 */
3352 if (regname == '.')
3353 {
Bram Moolenaarf8eb9c52017-01-02 17:31:24 +01003354 if (VIsual_active)
3355 stuffcharReadbuff(VIsual_mode);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3357 (count == -1 ? 'O' : 'i')), count, FALSE);
3358 /* Putting the text is done later, so can't really move the cursor to
3359 * the next character. Use "l" to simulate it. */
3360 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3361 stuffcharReadbuff('l');
3362 return;
3363 }
3364
3365 /*
3366 * For special registers '%' (file name), '#' (alternate file name) and
3367 * ':' (last command line), etc. we have to create a fake yank register.
3368 */
3369 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3370 {
3371 if (insert_string == NULL)
3372 return;
3373 }
3374
Bram Moolenaar27356ad2012-12-12 16:11:36 +01003375#ifdef FEAT_AUTOCMD
3376 /* Autocommands may be executed when saving lines for undo, which may make
3377 * y_array invalid. Start undo now to avoid that. */
3378 u_save(curwin->w_cursor.lnum, curwin->w_cursor.lnum + 1);
3379#endif
3380
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 if (insert_string != NULL)
3382 {
3383 y_type = MCHAR;
3384#ifdef FEAT_EVAL
3385 if (regname == '=')
3386 {
3387 /* For the = register we need to split the string at NL
Bram Moolenaara554a192011-09-21 17:33:53 +02003388 * characters.
3389 * Loop twice: count the number of lines and save them. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 for (;;)
3391 {
3392 y_size = 0;
3393 ptr = insert_string;
3394 while (ptr != NULL)
3395 {
3396 if (y_array != NULL)
3397 y_array[y_size] = ptr;
3398 ++y_size;
3399 ptr = vim_strchr(ptr, '\n');
3400 if (ptr != NULL)
3401 {
3402 if (y_array != NULL)
3403 *ptr = NUL;
3404 ++ptr;
Bram Moolenaara554a192011-09-21 17:33:53 +02003405 /* A trailing '\n' makes the register linewise. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 if (*ptr == NUL)
3407 {
3408 y_type = MLINE;
3409 break;
3410 }
3411 }
3412 }
3413 if (y_array != NULL)
3414 break;
3415 y_array = (char_u **)alloc((unsigned)
3416 (y_size * sizeof(char_u *)));
3417 if (y_array == NULL)
3418 goto end;
3419 }
3420 }
3421 else
3422#endif
3423 {
3424 y_size = 1; /* use fake one-line yank register */
3425 y_array = &insert_string;
3426 }
3427 }
3428 else
3429 {
3430 get_yank_register(regname, FALSE);
3431
3432 y_type = y_current->y_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 y_width = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 y_size = y_current->y_size;
3435 y_array = y_current->y_array;
3436 }
3437
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 if (y_type == MLINE)
3439 {
3440 if (flags & PUT_LINE_SPLIT)
3441 {
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003442 char_u *p;
3443
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 /* "p" or "P" in Visual mode: split the lines to put the text in
3445 * between. */
3446 if (u_save_cursor() == FAIL)
3447 goto end;
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003448 p = ml_get_cursor();
3449 if (dir == FORWARD && *p != NUL)
3450 mb_ptr_adv(p);
3451 ptr = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452 if (ptr == NULL)
3453 goto end;
3454 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3455 vim_free(ptr);
3456
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003457 oldp = ml_get_curline();
3458 p = oldp + curwin->w_cursor.col;
3459 if (dir == FORWARD && *p != NUL)
3460 mb_ptr_adv(p);
3461 ptr = vim_strnsave(oldp, p - oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 if (ptr == NULL)
3463 goto end;
3464 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3465 ++nr_lines;
3466 dir = FORWARD;
3467 }
3468 if (flags & PUT_LINE_FORWARD)
3469 {
3470 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003471 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 dir = FORWARD;
3473 }
3474 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3475 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3476 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477
3478 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3479 y_type = MLINE;
3480
3481 if (y_size == 0 || y_array == NULL)
3482 {
3483 EMSG2(_("E353: Nothing in register %s"),
3484 regname == 0 ? (char_u *)"\"" : transchar(regname));
3485 goto end;
3486 }
3487
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 if (y_type == MBLOCK)
3489 {
3490 lnum = curwin->w_cursor.lnum + y_size + 1;
3491 if (lnum > curbuf->b_ml.ml_line_count)
3492 lnum = curbuf->b_ml.ml_line_count + 1;
3493 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3494 goto end;
3495 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003496 else if (y_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 {
3498 lnum = curwin->w_cursor.lnum;
3499#ifdef FEAT_FOLDING
3500 /* Correct line number for closed fold. Don't move the cursor yet,
3501 * u_save() uses it. */
3502 if (dir == BACKWARD)
3503 (void)hasFolding(lnum, &lnum, NULL);
3504 else
3505 (void)hasFolding(lnum, NULL, &lnum);
3506#endif
3507 if (dir == FORWARD)
3508 ++lnum;
Bram Moolenaar10315b12013-06-29 17:19:28 +02003509 /* In an empty buffer the empty line is going to be replaced, include
3510 * it in the saved lines. */
Bram Moolenaarcaf2dff2013-07-03 14:19:54 +02003511 if ((bufempty() ? u_save(0, 2) : u_save(lnum - 1, lnum)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 goto end;
3513#ifdef FEAT_FOLDING
3514 if (dir == FORWARD)
3515 curwin->w_cursor.lnum = lnum - 1;
3516 else
3517 curwin->w_cursor.lnum = lnum;
3518 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3519#endif
3520 }
3521 else if (u_save_cursor() == FAIL)
3522 goto end;
3523
3524 yanklen = (int)STRLEN(y_array[0]);
3525
3526#ifdef FEAT_VIRTUALEDIT
3527 if (ve_flags == VE_ALL && y_type == MCHAR)
3528 {
3529 if (gchar_cursor() == TAB)
3530 {
3531 /* Don't need to insert spaces when "p" on the last position of a
3532 * tab or "P" on the first position. */
3533 if (dir == FORWARD
3534 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3535 : curwin->w_cursor.coladd > 0)
3536 coladvance_force(getviscol());
3537 else
3538 curwin->w_cursor.coladd = 0;
3539 }
3540 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3541 coladvance_force(getviscol() + (dir == FORWARD));
3542 }
3543#endif
3544
3545 lnum = curwin->w_cursor.lnum;
3546 col = curwin->w_cursor.col;
3547
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 /*
3549 * Block mode
3550 */
3551 if (y_type == MBLOCK)
3552 {
Bram Moolenaarc8129962017-01-22 20:04:51 +01003553 int c = gchar_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 colnr_T endcol2 = 0;
3555
3556 if (dir == FORWARD && c != NUL)
3557 {
3558#ifdef FEAT_VIRTUALEDIT
3559 if (ve_flags == VE_ALL)
3560 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3561 else
3562#endif
3563 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3564
3565#ifdef FEAT_MBYTE
3566 if (has_mbyte)
3567 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003568 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 else
3570#endif
3571#ifdef FEAT_VIRTUALEDIT
3572 if (c != TAB || ve_flags != VE_ALL)
3573#endif
3574 ++curwin->w_cursor.col;
3575 ++col;
3576 }
3577 else
3578 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3579
3580#ifdef FEAT_VIRTUALEDIT
3581 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003582 if (ve_flags == VE_ALL
3583 && (curwin->w_cursor.coladd > 0
3584 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585 {
3586 if (dir == FORWARD && c == NUL)
3587 ++col;
3588 if (dir != FORWARD && c != NUL)
3589 ++curwin->w_cursor.col;
3590 if (c == TAB)
3591 {
3592 if (dir == BACKWARD && curwin->w_cursor.col)
3593 curwin->w_cursor.col--;
3594 if (dir == FORWARD && col - 1 == endcol2)
3595 curwin->w_cursor.col++;
3596 }
3597 }
3598 curwin->w_cursor.coladd = 0;
3599#endif
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003600 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 for (i = 0; i < y_size; ++i)
3602 {
3603 int spaces;
3604 char shortline;
3605
3606 bd.startspaces = 0;
3607 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 vcol = 0;
3609 delcount = 0;
3610
3611 /* add a new line */
3612 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3613 {
3614 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3615 (colnr_T)1, FALSE) == FAIL)
3616 break;
3617 ++nr_lines;
3618 }
3619 /* get the old line and advance to the position to insert at */
3620 oldp = ml_get_curline();
3621 oldlen = (int)STRLEN(oldp);
3622 for (ptr = oldp; vcol < col && *ptr; )
3623 {
3624 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02003625 incr = lbr_chartabsize_adv(oldp, &ptr, (colnr_T)vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 vcol += incr;
3627 }
3628 bd.textcol = (colnr_T)(ptr - oldp);
3629
3630 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3631
3632 if (vcol < col) /* line too short, padd with spaces */
3633 bd.startspaces = col - vcol;
3634 else if (vcol > col)
3635 {
3636 bd.endspaces = vcol - col;
3637 bd.startspaces = incr - bd.endspaces;
3638 --bd.textcol;
3639 delcount = 1;
3640#ifdef FEAT_MBYTE
3641 if (has_mbyte)
3642 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3643#endif
3644 if (oldp[bd.textcol] != TAB)
3645 {
3646 /* Only a Tab can be split into spaces. Other
3647 * characters will have to be moved to after the
3648 * block, causing misalignment. */
3649 delcount = 0;
3650 bd.endspaces = 0;
3651 }
3652 }
3653
3654 yanklen = (int)STRLEN(y_array[i]);
3655
3656 /* calculate number of spaces required to fill right side of block*/
3657 spaces = y_width + 1;
3658 for (j = 0; j < yanklen; j++)
Bram Moolenaar597a4222014-06-25 14:39:50 +02003659 spaces -= lbr_chartabsize(NULL, &y_array[i][j], 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 if (spaces < 0)
3661 spaces = 0;
3662
3663 /* insert the new text */
3664 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3665 newp = alloc_check((unsigned)totlen + oldlen + 1);
3666 if (newp == NULL)
3667 break;
3668 /* copy part up to cursor to new line */
3669 ptr = newp;
3670 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3671 ptr += bd.textcol;
3672 /* may insert some spaces before the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003673 vim_memset(ptr, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 ptr += bd.startspaces;
3675 /* insert the new text */
3676 for (j = 0; j < count; ++j)
3677 {
3678 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3679 ptr += yanklen;
3680
3681 /* insert block's trailing spaces only if there's text behind */
3682 if ((j < count - 1 || !shortline) && spaces)
3683 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003684 vim_memset(ptr, ' ', (size_t)spaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 ptr += spaces;
3686 }
3687 }
3688 /* may insert some spaces after the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003689 vim_memset(ptr, ' ', (size_t)bd.endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 ptr += bd.endspaces;
3691 /* move the text after the cursor to the end of the line. */
3692 mch_memmove(ptr, oldp + bd.textcol + delcount,
3693 (size_t)(oldlen - bd.textcol - delcount + 1));
3694 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3695
3696 ++curwin->w_cursor.lnum;
3697 if (i == 0)
3698 curwin->w_cursor.col += bd.startspaces;
3699 }
3700
3701 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3702
3703 /* Set '[ mark. */
3704 curbuf->b_op_start = curwin->w_cursor;
3705 curbuf->b_op_start.lnum = lnum;
3706
3707 /* adjust '] mark */
3708 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3709 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003710# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003712# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 if (flags & PUT_CURSEND)
3714 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003715 colnr_T len;
3716
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 curwin->w_cursor = curbuf->b_op_end;
3718 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003719
3720 /* in Insert mode we might be after the NUL, correct for that */
3721 len = (colnr_T)STRLEN(ml_get_curline());
3722 if (curwin->w_cursor.col > len)
3723 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 }
3725 else
3726 curwin->w_cursor.lnum = lnum;
3727 }
3728 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 {
3730 /*
3731 * Character or Line mode
3732 */
3733 if (y_type == MCHAR)
3734 {
3735 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3736 * char */
3737 if (dir == FORWARD && gchar_cursor() != NUL)
3738 {
3739#ifdef FEAT_MBYTE
3740 if (has_mbyte)
3741 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003742 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743
3744 /* put it on the next of the multi-byte character. */
3745 col += bytelen;
3746 if (yanklen)
3747 {
3748 curwin->w_cursor.col += bytelen;
3749 curbuf->b_op_end.col += bytelen;
3750 }
3751 }
3752 else
3753#endif
3754 {
3755 ++col;
3756 if (yanklen)
3757 {
3758 ++curwin->w_cursor.col;
3759 ++curbuf->b_op_end.col;
3760 }
3761 }
3762 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 curbuf->b_op_start = curwin->w_cursor;
3764 }
3765 /*
3766 * Line mode: BACKWARD is the same as FORWARD on the previous line
3767 */
3768 else if (dir == BACKWARD)
3769 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003770 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771
3772 /*
3773 * simple case: insert into current line
3774 */
3775 if (y_type == MCHAR && y_size == 1)
3776 {
Bram Moolenaar9957a102017-01-23 21:53:53 +01003777 linenr_T end = curbuf->b_visual.vi_end.lnum;
3778
3779 if (curbuf->b_visual.vi_end.lnum < curbuf->b_visual.vi_start.lnum)
3780 end = curbuf->b_visual.vi_start.lnum;
3781
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003782 do {
3783 totlen = count * yanklen;
3784 if (totlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 {
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003786 oldp = ml_get(lnum);
3787 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3788 if (newp == NULL)
3789 goto end; /* alloc() gave an error message */
3790 mch_memmove(newp, oldp, (size_t)col);
3791 ptr = newp + col;
3792 for (i = 0; i < count; ++i)
3793 {
3794 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3795 ptr += yanklen;
3796 }
3797 STRMOVE(ptr, oldp + col);
3798 ml_replace(lnum, newp, FALSE);
3799 /* Place cursor on last putted char. */
3800 if (lnum == curwin->w_cursor.lnum)
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003801 {
3802 /* make sure curwin->w_virtcol is updated */
3803 changed_cline_bef_curs();
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003804 curwin->w_cursor.col += (colnr_T)(totlen - 1);
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003805 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003807 if (VIsual_active)
3808 lnum++;
Bram Moolenaar9957a102017-01-23 21:53:53 +01003809 } while (VIsual_active && lnum <= end);
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003810
Bram Moolenaar06e7ce12014-11-19 17:35:39 +01003811 if (VIsual_active) /* reset lnum to the last visual line */
3812 lnum--;
3813
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 curbuf->b_op_end = curwin->w_cursor;
3815 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3816 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3817 ++curwin->w_cursor.col;
3818 changed_bytes(lnum, col);
3819 }
3820 else
3821 {
3822 /*
3823 * Insert at least one line. When y_type is MCHAR, break the first
3824 * line in two.
3825 */
3826 for (cnt = 1; cnt <= count; ++cnt)
3827 {
3828 i = 0;
3829 if (y_type == MCHAR)
3830 {
3831 /*
3832 * Split the current line in two at the insert position.
3833 * First insert y_array[size - 1] in front of second line.
3834 * Then append y_array[0] to first line.
3835 */
3836 lnum = new_cursor.lnum;
3837 ptr = ml_get(lnum) + col;
3838 totlen = (int)STRLEN(y_array[y_size - 1]);
3839 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3840 if (newp == NULL)
3841 goto error;
3842 STRCPY(newp, y_array[y_size - 1]);
3843 STRCAT(newp, ptr);
3844 /* insert second line */
3845 ml_append(lnum, newp, (colnr_T)0, FALSE);
3846 vim_free(newp);
3847
3848 oldp = ml_get(lnum);
3849 newp = alloc_check((unsigned)(col + yanklen + 1));
3850 if (newp == NULL)
3851 goto error;
3852 /* copy first part of line */
3853 mch_memmove(newp, oldp, (size_t)col);
3854 /* append to first line */
3855 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3856 ml_replace(lnum, newp, FALSE);
3857
3858 curwin->w_cursor.lnum = lnum;
3859 i = 1;
3860 }
3861
3862 for (; i < y_size; ++i)
3863 {
3864 if ((y_type != MCHAR || i < y_size - 1)
3865 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3866 == FAIL)
3867 goto error;
3868 lnum++;
3869 ++nr_lines;
3870 if (flags & PUT_FIXINDENT)
3871 {
3872 old_pos = curwin->w_cursor;
3873 curwin->w_cursor.lnum = lnum;
3874 ptr = ml_get(lnum);
3875 if (cnt == count && i == y_size - 1)
3876 lendiff = (int)STRLEN(ptr);
3877#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3878 if (*ptr == '#' && preprocs_left())
3879 indent = 0; /* Leave # lines at start */
3880 else
3881#endif
3882 if (*ptr == NUL)
3883 indent = 0; /* Ignore empty lines */
3884 else if (first_indent)
3885 {
3886 indent_diff = orig_indent - get_indent();
3887 indent = orig_indent;
3888 first_indent = FALSE;
3889 }
3890 else if ((indent = get_indent() + indent_diff) < 0)
3891 indent = 0;
3892 (void)set_indent(indent, 0);
3893 curwin->w_cursor = old_pos;
3894 /* remember how many chars were removed */
3895 if (cnt == count && i == y_size - 1)
3896 lendiff -= (int)STRLEN(ml_get(lnum));
3897 }
3898 }
3899 }
3900
3901error:
3902 /* Adjust marks. */
3903 if (y_type == MLINE)
3904 {
3905 curbuf->b_op_start.col = 0;
3906 if (dir == FORWARD)
3907 curbuf->b_op_start.lnum++;
3908 }
Bram Moolenaar82faa252016-06-04 20:14:07 +02003909 /* Skip mark_adjust when adding lines after the last one, there
3910 * can't be marks there. */
3911 if (curbuf->b_op_start.lnum + (y_type == MCHAR) - 1 + nr_lines
3912 < curbuf->b_ml.ml_line_count)
3913 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 (linenr_T)MAXLNUM, nr_lines, 0L);
3915
3916 /* note changed text for displaying and folding */
3917 if (y_type == MCHAR)
3918 changed_lines(curwin->w_cursor.lnum, col,
3919 curwin->w_cursor.lnum + 1, nr_lines);
3920 else
3921 changed_lines(curbuf->b_op_start.lnum, 0,
3922 curbuf->b_op_start.lnum, nr_lines);
3923
3924 /* put '] mark at last inserted character */
3925 curbuf->b_op_end.lnum = lnum;
3926 /* correct length for change in indent */
3927 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3928 if (col > 1)
3929 curbuf->b_op_end.col = col - 1;
3930 else
3931 curbuf->b_op_end.col = 0;
3932
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003933 if (flags & PUT_CURSLINE)
3934 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003935 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003936 curwin->w_cursor.lnum = lnum;
3937 beginline(BL_WHITE | BL_FIX);
3938 }
3939 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 {
3941 /* put cursor after inserted text */
3942 if (y_type == MLINE)
3943 {
3944 if (lnum >= curbuf->b_ml.ml_line_count)
3945 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3946 else
3947 curwin->w_cursor.lnum = lnum + 1;
3948 curwin->w_cursor.col = 0;
3949 }
3950 else
3951 {
3952 curwin->w_cursor.lnum = lnum;
3953 curwin->w_cursor.col = col;
3954 }
3955 }
3956 else if (y_type == MLINE)
3957 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003958 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 curwin->w_cursor.col = 0;
3960 if (dir == FORWARD)
3961 ++curwin->w_cursor.lnum;
3962 beginline(BL_WHITE | BL_FIX);
3963 }
3964 else /* put cursor on first inserted character */
3965 curwin->w_cursor = new_cursor;
3966 }
3967 }
3968
3969 msgmore(nr_lines);
3970 curwin->w_set_curswant = TRUE;
3971
3972end:
3973 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003975 if (regname == '=')
3976 vim_free(y_array);
3977
Bram Moolenaar033d8882013-09-25 23:24:57 +02003978 VIsual_active = FALSE;
Bram Moolenaar033d8882013-09-25 23:24:57 +02003979
Bram Moolenaar677ee682005-01-27 14:41:15 +00003980 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003981 adjust_cursor_eol();
3982}
3983
3984/*
3985 * When the cursor is on the NUL past the end of the line and it should not be
3986 * there move it left.
3987 */
3988 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003989adjust_cursor_eol(void)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003990{
3991 if (curwin->w_cursor.col > 0
3992 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00003993#ifdef FEAT_VIRTUALEDIT
3994 && (ve_flags & VE_ONEMORE) == 0
3995#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 && !(restart_edit || (State & INSERT)))
3997 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00003998 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00003999 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004000
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001#ifdef FEAT_VIRTUALEDIT
4002 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00004003 {
4004 colnr_T scol, ecol;
4005
4006 /* Coladd is set to the width of the last character. */
4007 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4008 curwin->w_cursor.coladd = ecol - scol + 1;
4009 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010#endif
4011 }
4012}
4013
4014#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
4015/*
4016 * Return TRUE if lines starting with '#' should be left aligned.
4017 */
4018 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004019preprocs_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020{
4021 return
4022# ifdef FEAT_SMARTINDENT
4023# ifdef FEAT_CINDENT
4024 (curbuf->b_p_si && !curbuf->b_p_cin) ||
4025# else
4026 curbuf->b_p_si
4027# endif
4028# endif
4029# ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004030 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE)
4031 && curbuf->b_ind_hash_comment == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032# endif
4033 ;
4034}
4035#endif
4036
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004037/*
4038 * Return the character name of the register with the given number.
4039 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004041get_register_name(int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042{
4043 if (num == -1)
4044 return '"';
4045 else if (num < 10)
4046 return num + '0';
4047 else if (num == DELETION_REGISTER)
4048 return '-';
4049#ifdef FEAT_CLIPBOARD
4050 else if (num == STAR_REGISTER)
4051 return '*';
4052 else if (num == PLUS_REGISTER)
4053 return '+';
4054#endif
4055 else
4056 {
4057#ifdef EBCDIC
4058 int i;
4059
4060 /* EBCDIC is really braindead ... */
4061 i = 'a' + (num - 10);
4062 if (i > 'i')
4063 i += 7;
4064 if (i > 'r')
4065 i += 8;
4066 return i;
4067#else
4068 return num + 'a' - 10;
4069#endif
4070 }
4071}
4072
4073/*
4074 * ":dis" and ":registers": Display the contents of the yank registers.
4075 */
4076 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004077ex_display(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004079 int i, n;
4080 long j;
4081 char_u *p;
4082 yankreg_T *yb;
4083 int name;
4084 int attr;
4085 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004086#ifdef FEAT_MBYTE
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004087 int clen;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004088#else
4089# define clen 1
4090#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091
4092 if (arg != NULL && *arg == NUL)
4093 arg = NULL;
4094 attr = hl_attr(HLF_8);
4095
4096 /* Highlight title */
4097 MSG_PUTS_TITLE(_("\n--- Registers ---"));
4098 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
4099 {
4100 name = get_register_name(i);
Bram Moolenaar0818b872010-11-24 14:28:58 +01004101 if (arg != NULL && vim_strchr(arg, name) == NULL
4102#ifdef ONE_CLIPBOARD
4103 /* Star register and plus register contain the same thing. */
4104 && (name != '*' || vim_strchr(arg, '+') == NULL)
4105#endif
4106 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 continue; /* did not ask for this register */
4108
4109#ifdef FEAT_CLIPBOARD
4110 /* Adjust register name for "unnamed" in 'clipboard'.
4111 * When it's a clipboard register, fill it with the current contents
4112 * of the clipboard. */
4113 adjust_clip_reg(&name);
4114 (void)may_get_selection(name);
4115#endif
4116
4117 if (i == -1)
4118 {
4119 if (y_previous != NULL)
4120 yb = y_previous;
4121 else
4122 yb = &(y_regs[0]);
4123 }
4124 else
4125 yb = &(y_regs[i]);
Bram Moolenaarcde547a2009-11-17 11:43:06 +00004126
4127#ifdef FEAT_EVAL
4128 if (name == MB_TOLOWER(redir_reg)
4129 || (redir_reg == '"' && yb == y_previous))
4130 continue; /* do not list register being written to, the
4131 * pointer can be freed */
4132#endif
4133
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134 if (yb->y_array != NULL)
4135 {
4136 msg_putchar('\n');
4137 msg_putchar('"');
4138 msg_putchar(name);
4139 MSG_PUTS(" ");
4140
4141 n = (int)Columns - 6;
4142 for (j = 0; j < yb->y_size && n > 1; ++j)
4143 {
4144 if (j)
4145 {
4146 MSG_PUTS_ATTR("^J", attr);
4147 n -= 2;
4148 }
4149 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4150 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004152 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004153#endif
4154 msg_outtrans_len(p, clen);
4155#ifdef FEAT_MBYTE
4156 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157#endif
4158 }
4159 }
4160 if (n > 1 && yb->y_type == MLINE)
4161 MSG_PUTS_ATTR("^J", attr);
4162 out_flush(); /* show one line at a time */
4163 }
4164 ui_breakcheck();
4165 }
4166
4167 /*
4168 * display last inserted text
4169 */
4170 if ((p = get_last_insert()) != NULL
4171 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4172 {
4173 MSG_PUTS("\n\". ");
4174 dis_msg(p, TRUE);
4175 }
4176
4177 /*
4178 * display last command line
4179 */
4180 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4181 && !got_int)
4182 {
4183 MSG_PUTS("\n\": ");
4184 dis_msg(last_cmdline, FALSE);
4185 }
4186
4187 /*
4188 * display current file name
4189 */
4190 if (curbuf->b_fname != NULL
4191 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4192 {
4193 MSG_PUTS("\n\"% ");
4194 dis_msg(curbuf->b_fname, FALSE);
4195 }
4196
4197 /*
4198 * display alternate file name
4199 */
4200 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4201 {
4202 char_u *fname;
4203 linenr_T dummy;
4204
4205 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4206 {
4207 MSG_PUTS("\n\"# ");
4208 dis_msg(fname, FALSE);
4209 }
4210 }
4211
4212 /*
4213 * display last search pattern
4214 */
4215 if (last_search_pat() != NULL
4216 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4217 {
4218 MSG_PUTS("\n\"/ ");
4219 dis_msg(last_search_pat(), FALSE);
4220 }
4221
4222#ifdef FEAT_EVAL
4223 /*
4224 * display last used expression
4225 */
4226 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4227 && !got_int)
4228 {
4229 MSG_PUTS("\n\"= ");
4230 dis_msg(expr_line, FALSE);
4231 }
4232#endif
4233}
4234
4235/*
4236 * display a string for do_dis()
4237 * truncate at end of screen line
4238 */
4239 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004240dis_msg(
4241 char_u *p,
4242 int skip_esc) /* if TRUE, ignore trailing ESC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243{
4244 int n;
4245#ifdef FEAT_MBYTE
4246 int l;
4247#endif
4248
4249 n = (int)Columns - 6;
4250 while (*p != NUL
4251 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4252 && (n -= ptr2cells(p)) >= 0)
4253 {
4254#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004255 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 {
4257 msg_outtrans_len(p, l);
4258 p += l;
4259 }
4260 else
4261#endif
4262 msg_outtrans_len(p++, 1);
4263 }
4264 ui_breakcheck();
4265}
4266
Bram Moolenaar81340392012-06-06 16:12:59 +02004267#if defined(FEAT_COMMENTS) || defined(PROTO)
4268/*
4269 * If "process" is TRUE and the line begins with a comment leader (possibly
4270 * after some white space), return a pointer to the text after it. Put a boolean
4271 * value indicating whether the line ends with an unclosed comment in
4272 * "is_comment".
4273 * line - line to be processed,
4274 * process - if FALSE, will only check whether the line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004275 * comment,
Bram Moolenaar81340392012-06-06 16:12:59 +02004276 * include_space - whether to also skip space following the comment leader,
4277 * is_comment - will indicate whether the current line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004278 * comment.
Bram Moolenaar81340392012-06-06 16:12:59 +02004279 */
4280 static char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004281skip_comment(
4282 char_u *line,
4283 int process,
4284 int include_space,
4285 int *is_comment)
Bram Moolenaar81340392012-06-06 16:12:59 +02004286{
4287 char_u *comment_flags = NULL;
4288 int lead_len;
4289 int leader_offset = get_last_leader_offset(line, &comment_flags);
4290
4291 *is_comment = FALSE;
4292 if (leader_offset != -1)
4293 {
4294 /* Let's check whether the line ends with an unclosed comment.
4295 * If the last comment leader has COM_END in flags, there's no comment.
4296 */
4297 while (*comment_flags)
4298 {
4299 if (*comment_flags == COM_END
4300 || *comment_flags == ':')
4301 break;
4302 ++comment_flags;
4303 }
4304 if (*comment_flags != COM_END)
4305 *is_comment = TRUE;
4306 }
4307
4308 if (process == FALSE)
4309 return line;
4310
4311 lead_len = get_leader_len(line, &comment_flags, FALSE, include_space);
4312
4313 if (lead_len == 0)
4314 return line;
4315
4316 /* Find:
Bram Moolenaar81340392012-06-06 16:12:59 +02004317 * - COM_END,
4318 * - colon,
4319 * whichever comes first.
4320 */
4321 while (*comment_flags)
4322 {
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004323 if (*comment_flags == COM_END
Bram Moolenaar81340392012-06-06 16:12:59 +02004324 || *comment_flags == ':')
4325 {
4326 break;
4327 }
4328 ++comment_flags;
4329 }
4330
4331 /* If we found a colon, it means that we are not processing a line
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004332 * starting with a closing part of a three-part comment. That's good,
4333 * because we don't want to remove those as this would be annoying.
Bram Moolenaar81340392012-06-06 16:12:59 +02004334 */
4335 if (*comment_flags == ':' || *comment_flags == NUL)
4336 line += lead_len;
4337
4338 return line;
4339}
4340#endif
4341
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342/*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004343 * Join 'count' lines (minimal 2) at cursor position.
4344 * When "save_undo" is TRUE save lines for undo first.
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004345 * Set "use_formatoptions" to FALSE when e.g. processing backspace and comment
4346 * leaders should not be removed.
4347 * When setmark is TRUE, sets the '[ and '] mark, else, the caller is expected
4348 * to set those marks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004350 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 */
4352 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004353do_join(
4354 long count,
4355 int insert_space,
4356 int save_undo,
4357 int use_formatoptions UNUSED,
4358 int setmark)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359{
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004360 char_u *curr = NULL;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004361 char_u *curr_start = NULL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004362 char_u *cend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 char_u *newp;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004364 char_u *spaces; /* number of spaces inserted before a line */
Bram Moolenaard43848c2010-07-14 14:28:26 +02004365 int endcurr1 = NUL;
4366 int endcurr2 = NUL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004367 int currsize = 0; /* size of the current line */
4368 int sumsize = 0; /* size of the long new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 linenr_T t;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004370 colnr_T col = 0;
4371 int ret = OK;
Bram Moolenaar81340392012-06-06 16:12:59 +02004372#if defined(FEAT_COMMENTS) || defined(PROTO)
Bram Moolenaar802053f2012-06-06 23:08:38 +02004373 int *comments = NULL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004374 int remove_comments = (use_formatoptions == TRUE)
4375 && has_format_option(FO_REMOVE_COMS);
4376 int prev_was_comment;
4377#endif
4378
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004380 if (save_undo && u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4381 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4382 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004384 /* Allocate an array to store the number of spaces inserted before each
4385 * line. We will use it to pre-compute the length of the new line and the
4386 * proper placement of each original line in the new one. */
4387 spaces = lalloc_clear((long_u)count, TRUE);
4388 if (spaces == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 return FAIL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004390#if defined(FEAT_COMMENTS) || defined(PROTO)
4391 if (remove_comments)
4392 {
4393 comments = (int *)lalloc_clear((long_u)count * sizeof(int), TRUE);
4394 if (comments == NULL)
4395 {
4396 vim_free(spaces);
4397 return FAIL;
4398 }
4399 }
4400#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401
4402 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004403 * Don't move anything, just compute the final line length
4404 * and setup the array of space strings lengths
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004406 for (t = 0; t < count; ++t)
4407 {
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004408 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t));
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004409 if (t == 0 && setmark)
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004410 {
4411 /* Set the '[ mark. */
4412 curwin->w_buffer->b_op_start.lnum = curwin->w_cursor.lnum;
4413 curwin->w_buffer->b_op_start.col = (colnr_T)STRLEN(curr);
4414 }
Bram Moolenaar81340392012-06-06 16:12:59 +02004415#if defined(FEAT_COMMENTS) || defined(PROTO)
4416 if (remove_comments)
4417 {
4418 /* We don't want to remove the comment leader if the
4419 * previous line is not a comment. */
4420 if (t > 0 && prev_was_comment)
4421 {
4422
4423 char_u *new_curr = skip_comment(curr, TRUE, insert_space,
4424 &prev_was_comment);
Bram Moolenaar27ba0882012-06-07 21:09:39 +02004425 comments[t] = (int)(new_curr - curr);
Bram Moolenaar81340392012-06-06 16:12:59 +02004426 curr = new_curr;
4427 }
4428 else
4429 curr = skip_comment(curr, FALSE, insert_space,
4430 &prev_was_comment);
4431 }
4432#endif
4433
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004434 if (insert_space && t > 0)
4435 {
4436 curr = skipwhite(curr);
4437 if (*curr != ')' && currsize != 0 && endcurr1 != TAB
4438#ifdef FEAT_MBYTE
4439 && (!has_format_option(FO_MBYTE_JOIN)
4440 || (mb_ptr2char(curr) < 0x100 && endcurr1 < 0x100))
4441 && (!has_format_option(FO_MBYTE_JOIN2)
4442 || mb_ptr2char(curr) < 0x100 || endcurr1 < 0x100)
4443#endif
4444 )
4445 {
4446 /* don't add a space if the line is ending in a space */
4447 if (endcurr1 == ' ')
4448 endcurr1 = endcurr2;
4449 else
4450 ++spaces[t];
4451 /* extra space when 'joinspaces' set and line ends in '.' */
4452 if ( p_js
4453 && (endcurr1 == '.'
4454 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4455 && (endcurr1 == '?' || endcurr1 == '!'))))
4456 ++spaces[t];
4457 }
4458 }
4459 currsize = (int)STRLEN(curr);
4460 sumsize += currsize + spaces[t];
4461 endcurr1 = endcurr2 = NUL;
4462 if (insert_space && currsize > 0)
4463 {
4464#ifdef FEAT_MBYTE
4465 if (has_mbyte)
4466 {
4467 cend = curr + currsize;
4468 mb_ptr_back(curr, cend);
4469 endcurr1 = (*mb_ptr2char)(cend);
4470 if (cend > curr)
4471 {
4472 mb_ptr_back(curr, cend);
4473 endcurr2 = (*mb_ptr2char)(cend);
4474 }
4475 }
4476 else
4477#endif
4478 {
4479 endcurr1 = *(curr + currsize - 1);
4480 if (currsize > 1)
4481 endcurr2 = *(curr + currsize - 2);
4482 }
4483 }
4484 line_breakcheck();
4485 if (got_int)
4486 {
4487 ret = FAIL;
4488 goto theend;
4489 }
4490 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004492 /* store the column position before last line */
4493 col = sumsize - currsize - spaces[count - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004495 /* allocate the space for the new line */
4496 newp = alloc_check((unsigned)(sumsize + 1));
4497 cend = newp + sumsize;
4498 *cend = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004500 /*
4501 * Move affected lines to the new long one.
4502 *
4503 * Move marks from each deleted line to the joined line, adjusting the
4504 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4505 * should not really be a problem.
4506 */
4507 for (t = count - 1; ; --t)
4508 {
4509 cend -= currsize;
4510 mch_memmove(cend, curr, (size_t)currsize);
4511 if (spaces[t] > 0)
4512 {
4513 cend -= spaces[t];
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02004514 vim_memset(cend, ' ', (size_t)(spaces[t]));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004515 }
4516 mark_col_adjust(curwin->w_cursor.lnum + t, (colnr_T)0, (linenr_T)-t,
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004517 (long)(cend - newp + spaces[t] - (curr - curr_start)));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004518 if (t == 0)
4519 break;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004520 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1));
Bram Moolenaar81340392012-06-06 16:12:59 +02004521#if defined(FEAT_COMMENTS) || defined(PROTO)
4522 if (remove_comments)
4523 curr += comments[t - 1];
4524#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004525 if (insert_space && t > 1)
4526 curr = skipwhite(curr);
4527 currsize = (int)STRLEN(curr);
4528 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4530
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004531 if (setmark)
4532 {
4533 /* Set the '] mark. */
4534 curwin->w_buffer->b_op_end.lnum = curwin->w_cursor.lnum;
4535 curwin->w_buffer->b_op_end.col = (colnr_T)STRLEN(newp);
4536 }
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004537
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 /* Only report the change in the first line here, del_lines() will report
4539 * the deleted line. */
4540 changed_lines(curwin->w_cursor.lnum, currsize,
4541 curwin->w_cursor.lnum + 1, 0L);
4542
4543 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004544 * Delete following lines. To do this we move the cursor there
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545 * briefly, and then move it back. After del_lines() the cursor may
4546 * have moved up (last line deleted), so the current lnum is kept in t.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 */
4548 t = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549 ++curwin->w_cursor.lnum;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004550 del_lines(count - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 curwin->w_cursor.lnum = t;
4552
4553 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004554 * Set the cursor column:
4555 * Vi compatible: use the column of the first join
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004556 * vim: use the column of the last join
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004558 curwin->w_cursor.col =
4559 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 check_cursor_col();
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004561
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562#ifdef FEAT_VIRTUALEDIT
4563 curwin->w_cursor.coladd = 0;
4564#endif
4565 curwin->w_set_curswant = TRUE;
4566
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004567theend:
4568 vim_free(spaces);
Bram Moolenaar81340392012-06-06 16:12:59 +02004569#if defined(FEAT_COMMENTS) || defined(PROTO)
4570 if (remove_comments)
4571 vim_free(comments);
4572#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004573 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574}
4575
4576#ifdef FEAT_COMMENTS
4577/*
4578 * Return TRUE if the two comment leaders given are the same. "lnum" is
4579 * the first line. White-space is ignored. Note that the whole of
4580 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4581 */
4582 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004583same_leader(
4584 linenr_T lnum,
4585 int leader1_len,
4586 char_u *leader1_flags,
4587 int leader2_len,
4588 char_u *leader2_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589{
4590 int idx1 = 0, idx2 = 0;
4591 char_u *p;
4592 char_u *line1;
4593 char_u *line2;
4594
4595 if (leader1_len == 0)
4596 return (leader2_len == 0);
4597
4598 /*
4599 * If first leader has 'f' flag, the lines can be joined only if the
4600 * second line does not have a leader.
4601 * If first leader has 'e' flag, the lines can never be joined.
4602 * If fist leader has 's' flag, the lines can only be joined if there is
4603 * some text after it and the second line has the 'm' flag.
4604 */
4605 if (leader1_flags != NULL)
4606 {
4607 for (p = leader1_flags; *p && *p != ':'; ++p)
4608 {
4609 if (*p == COM_FIRST)
4610 return (leader2_len == 0);
4611 if (*p == COM_END)
4612 return FALSE;
4613 if (*p == COM_START)
4614 {
4615 if (*(ml_get(lnum) + leader1_len) == NUL)
4616 return FALSE;
4617 if (leader2_flags == NULL || leader2_len == 0)
4618 return FALSE;
4619 for (p = leader2_flags; *p && *p != ':'; ++p)
4620 if (*p == COM_MIDDLE)
4621 return TRUE;
4622 return FALSE;
4623 }
4624 }
4625 }
4626
4627 /*
4628 * Get current line and next line, compare the leaders.
4629 * The first line has to be saved, only one line can be locked at a time.
4630 */
4631 line1 = vim_strsave(ml_get(lnum));
4632 if (line1 != NULL)
4633 {
4634 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
4635 ;
4636 line2 = ml_get(lnum + 1);
4637 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4638 {
4639 if (!vim_iswhite(line2[idx2]))
4640 {
4641 if (line1[idx1++] != line2[idx2])
4642 break;
4643 }
4644 else
4645 while (vim_iswhite(line1[idx1]))
4646 ++idx1;
4647 }
4648 vim_free(line1);
4649 }
4650 return (idx2 == leader2_len && idx1 == leader1_len);
4651}
4652#endif
4653
4654/*
Bram Moolenaar66accae2012-01-10 13:44:27 +01004655 * Implementation of the format operator 'gq'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 */
4657 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004658op_format(
4659 oparg_T *oap,
4660 int keep_cursor) /* keep cursor on same text char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661{
4662 long old_line_count = curbuf->b_ml.ml_line_count;
4663
4664 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4665 * can put it back there. */
4666 curwin->w_cursor = oap->cursor_start;
4667
4668 if (u_save((linenr_T)(oap->start.lnum - 1),
4669 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4670 return;
4671 curwin->w_cursor = oap->start;
4672
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 if (oap->is_VIsual)
4674 /* When there is no change: need to remove the Visual selection */
4675 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676
4677 /* Set '[ mark at the start of the formatted area */
4678 curbuf->b_op_start = oap->start;
4679
4680 /* For "gw" remember the cursor position and put it back below (adjusted
4681 * for joined and split lines). */
4682 if (keep_cursor)
4683 saved_cursor = oap->cursor_start;
4684
Bram Moolenaar81a82092008-03-12 16:27:00 +00004685 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686
4687 /*
4688 * Leave the cursor at the first non-blank of the last formatted line.
4689 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4690 * line, so "." will do the next lines.
4691 */
4692 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4693 ++curwin->w_cursor.lnum;
4694 beginline(BL_WHITE | BL_FIX);
4695 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4696 msgmore(old_line_count);
4697
4698 /* put '] mark on the end of the formatted area */
4699 curbuf->b_op_end = curwin->w_cursor;
4700
4701 if (keep_cursor)
4702 {
4703 curwin->w_cursor = saved_cursor;
4704 saved_cursor.lnum = 0;
4705 }
4706
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 if (oap->is_VIsual)
4708 {
4709 win_T *wp;
4710
4711 FOR_ALL_WINDOWS(wp)
4712 {
4713 if (wp->w_old_cursor_lnum != 0)
4714 {
4715 /* When lines have been inserted or deleted, adjust the end of
4716 * the Visual area to be redrawn. */
4717 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4718 wp->w_old_cursor_lnum += old_line_count;
4719 else
4720 wp->w_old_visual_lnum += old_line_count;
4721 }
4722 }
4723 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724}
4725
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004726#if defined(FEAT_EVAL) || defined(PROTO)
4727/*
4728 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4729 */
4730 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004731op_formatexpr(oparg_T *oap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004732{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004733 if (oap->is_VIsual)
4734 /* When there is no change: need to remove the Visual selection */
4735 redraw_curbuf_later(INVERTED);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004736
Bram Moolenaar700303e2010-07-11 17:35:50 +02004737 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0)
4738 /* As documented: when 'formatexpr' returns non-zero fall back to
4739 * internal formatting. */
4740 op_format(oap, FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004741}
4742
4743 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004744fex_format(
4745 linenr_T lnum,
4746 long count,
4747 int c) /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004748{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004749 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4750 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004751 int r;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004752 char_u *fex;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004753
4754 /*
4755 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004756 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004757 */
4758 set_vim_var_nr(VV_LNUM, lnum);
4759 set_vim_var_nr(VV_COUNT, count);
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004760 set_vim_var_char(c);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004761
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004762 /* Make a copy, the option could be changed while calling it. */
4763 fex = vim_strsave(curbuf->b_p_fex);
4764 if (fex == NULL)
4765 return 0;
4766
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004767 /*
4768 * Evaluate the function.
4769 */
4770 if (use_sandbox)
4771 ++sandbox;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004772 r = (int)eval_to_number(fex);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004773 if (use_sandbox)
4774 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004775
4776 set_vim_var_string(VV_CHAR, NULL, -1);
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004777 vim_free(fex);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004778
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004779 return r;
4780}
4781#endif
4782
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783/*
4784 * Format "line_count" lines, starting at the cursor position.
4785 * When "line_count" is negative, format until the end of the paragraph.
4786 * Lines after the cursor line are saved for undo, caller must have saved the
4787 * first line.
4788 */
4789 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004790format_lines(
4791 linenr_T line_count,
4792 int avoid_fex) /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793{
4794 int max_len;
4795 int is_not_par; /* current line not part of parag. */
4796 int next_is_not_par; /* next line not part of paragraph */
4797 int is_end_par; /* at end of paragraph */
4798 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4799 int next_is_start_par = FALSE;
4800#ifdef FEAT_COMMENTS
4801 int leader_len = 0; /* leader len of current line */
4802 int next_leader_len; /* leader len of next line */
4803 char_u *leader_flags = NULL; /* flags for leader of current line */
4804 char_u *next_leader_flags; /* flags for leader of next line */
4805 int do_comments; /* format comments */
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004806 int do_comments_list = 0; /* format comments with 'n' or '2' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807#endif
4808 int advance = TRUE;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004809 int second_indent = -1; /* indent for second line (comment
4810 * aware) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 int do_second_indent;
4812 int do_number_indent;
4813 int do_trail_white;
4814 int first_par_line = TRUE;
4815 int smd_save;
4816 long count;
4817 int need_set_indent = TRUE; /* set indent of next paragraph */
4818 int force_format = FALSE;
4819 int old_State = State;
4820
4821 /* length of a line to force formatting: 3 * 'tw' */
4822 max_len = comp_textwidth(TRUE) * 3;
4823
4824 /* check for 'q', '2' and '1' in 'formatoptions' */
4825#ifdef FEAT_COMMENTS
4826 do_comments = has_format_option(FO_Q_COMS);
4827#endif
4828 do_second_indent = has_format_option(FO_Q_SECOND);
4829 do_number_indent = has_format_option(FO_Q_NUMBER);
4830 do_trail_white = has_format_option(FO_WHITE_PAR);
4831
4832 /*
4833 * Get info about the previous and current line.
4834 */
4835 if (curwin->w_cursor.lnum > 1)
4836 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4837#ifdef FEAT_COMMENTS
4838 , &leader_len, &leader_flags, do_comments
4839#endif
4840 );
4841 else
4842 is_not_par = TRUE;
4843 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4844#ifdef FEAT_COMMENTS
4845 , &next_leader_len, &next_leader_flags, do_comments
4846#endif
4847 );
4848 is_end_par = (is_not_par || next_is_not_par);
4849 if (!is_end_par && do_trail_white)
4850 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4851
4852 curwin->w_cursor.lnum--;
4853 for (count = line_count; count != 0 && !got_int; --count)
4854 {
4855 /*
4856 * Advance to next paragraph.
4857 */
4858 if (advance)
4859 {
4860 curwin->w_cursor.lnum++;
4861 prev_is_end_par = is_end_par;
4862 is_not_par = next_is_not_par;
4863#ifdef FEAT_COMMENTS
4864 leader_len = next_leader_len;
4865 leader_flags = next_leader_flags;
4866#endif
4867 }
4868
4869 /*
4870 * The last line to be formatted.
4871 */
4872 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4873 {
4874 next_is_not_par = TRUE;
4875#ifdef FEAT_COMMENTS
4876 next_leader_len = 0;
4877 next_leader_flags = NULL;
4878#endif
4879 }
4880 else
4881 {
4882 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4883#ifdef FEAT_COMMENTS
4884 , &next_leader_len, &next_leader_flags, do_comments
4885#endif
4886 );
4887 if (do_number_indent)
4888 next_is_start_par =
4889 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4890 }
4891 advance = TRUE;
4892 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4893 if (!is_end_par && do_trail_white)
4894 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4895
4896 /*
4897 * Skip lines that are not in a paragraph.
4898 */
4899 if (is_not_par)
4900 {
4901 if (line_count < 0)
4902 break;
4903 }
4904 else
4905 {
4906 /*
4907 * For the first line of a paragraph, check indent of second line.
4908 * Don't do this for comments and empty lines.
4909 */
4910 if (first_par_line
4911 && (do_second_indent || do_number_indent)
4912 && prev_is_end_par
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004913 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 {
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004915 if (do_second_indent && !lineempty(curwin->w_cursor.lnum + 1))
4916 {
4917#ifdef FEAT_COMMENTS
4918 if (leader_len == 0 && next_leader_len == 0)
4919 {
4920 /* no comment found */
4921#endif
4922 second_indent =
4923 get_indent_lnum(curwin->w_cursor.lnum + 1);
4924#ifdef FEAT_COMMENTS
4925 }
4926 else
4927 {
4928 second_indent = next_leader_len;
4929 do_comments_list = 1;
4930 }
4931#endif
4932 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 else if (do_number_indent)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004934 {
4935#ifdef FEAT_COMMENTS
4936 if (leader_len == 0 && next_leader_len == 0)
4937 {
4938 /* no comment found */
4939#endif
4940 second_indent =
4941 get_number_indent(curwin->w_cursor.lnum);
4942#ifdef FEAT_COMMENTS
4943 }
4944 else
4945 {
4946 /* get_number_indent() is now "comment aware"... */
4947 second_indent =
4948 get_number_indent(curwin->w_cursor.lnum);
4949 do_comments_list = 1;
4950 }
4951#endif
4952 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 }
4954
4955 /*
4956 * When the comment leader changes, it's the end of the paragraph.
4957 */
4958 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
4959#ifdef FEAT_COMMENTS
4960 || !same_leader(curwin->w_cursor.lnum,
4961 leader_len, leader_flags,
4962 next_leader_len, next_leader_flags)
4963#endif
4964 )
4965 is_end_par = TRUE;
4966
4967 /*
4968 * If we have got to the end of a paragraph, or the line is
4969 * getting long, format it.
4970 */
4971 if (is_end_par || force_format)
4972 {
4973 if (need_set_indent)
4974 /* replace indent in first line with minimal number of
4975 * tabs and spaces, according to current options */
4976 (void)set_indent(get_indent(), SIN_CHANGED);
4977
4978 /* put cursor on last non-space */
4979 State = NORMAL; /* don't go past end-of-line */
4980 coladvance((colnr_T)MAXCOL);
4981 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
4982 dec_cursor();
4983
4984 /* do the formatting, without 'showmode' */
4985 State = INSERT; /* for open_line() */
4986 smd_save = p_smd;
4987 p_smd = FALSE;
4988 insertchar(NUL, INSCHAR_FORMAT
4989#ifdef FEAT_COMMENTS
4990 + (do_comments ? INSCHAR_DO_COM : 0)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004991 + (do_comments && do_comments_list
4992 ? INSCHAR_COM_LIST : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00004994 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 State = old_State;
4996 p_smd = smd_save;
4997 second_indent = -1;
4998 /* at end of par.: need to set indent of next par. */
4999 need_set_indent = is_end_par;
5000 if (is_end_par)
5001 {
5002 /* When called with a negative line count, break at the
5003 * end of the paragraph. */
5004 if (line_count < 0)
5005 break;
5006 first_par_line = TRUE;
5007 }
5008 force_format = FALSE;
5009 }
5010
5011 /*
5012 * When still in same paragraph, join the lines together. But
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005013 * first delete the leader from the second line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014 */
5015 if (!is_end_par)
5016 {
5017 advance = FALSE;
5018 curwin->w_cursor.lnum++;
5019 curwin->w_cursor.col = 0;
5020 if (line_count < 0 && u_save_cursor() == FAIL)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02005021 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022#ifdef FEAT_COMMENTS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 if (next_leader_len > 0)
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005024 {
5025 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
5027 (long)-next_leader_len);
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005028 } else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029#endif
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005030 if (second_indent > 0) /* the "leader" for FO_Q_SECOND */
5031 {
5032 char_u *p = ml_get_curline();
Bram Moolenaar92c2db82013-11-02 23:59:35 +01005033 int indent = (int)(skipwhite(p) - p);
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005034
5035 if (indent > 0)
5036 {
5037 (void)del_bytes(indent, FALSE, FALSE);
5038 mark_col_adjust(curwin->w_cursor.lnum,
5039 (colnr_T)0, 0L, (long)-indent);
Bram Moolenaar92c2db82013-11-02 23:59:35 +01005040 }
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005041 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 curwin->w_cursor.lnum--;
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02005043 if (do_join(2, TRUE, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 {
5045 beep_flush();
5046 break;
5047 }
5048 first_par_line = FALSE;
5049 /* If the line is getting long, format it next time */
5050 if (STRLEN(ml_get_curline()) > (size_t)max_len)
5051 force_format = TRUE;
5052 else
5053 force_format = FALSE;
5054 }
5055 }
5056 line_breakcheck();
5057 }
5058}
5059
5060/*
5061 * Return TRUE if line "lnum" ends in a white character.
5062 */
5063 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005064ends_in_white(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065{
5066 char_u *s = ml_get(lnum);
5067 size_t l;
5068
5069 if (*s == NUL)
5070 return FALSE;
5071 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
5072 * invocation may call function multiple times". */
5073 l = STRLEN(s) - 1;
5074 return vim_iswhite(s[l]);
5075}
5076
5077/*
5078 * Blank lines, and lines containing only the comment leader, are left
5079 * untouched by the formatting. The function returns TRUE in this
5080 * case. It also returns TRUE when a line starts with the end of a comment
5081 * ('e' in comment flags), so that this line is skipped, and not joined to the
5082 * previous line. A new paragraph starts after a blank line, or when the
5083 * comment leader changes -- webb.
5084 */
5085#ifdef FEAT_COMMENTS
5086 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005087fmt_check_par(
5088 linenr_T lnum,
5089 int *leader_len,
5090 char_u **leader_flags,
5091 int do_comments)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092{
5093 char_u *flags = NULL; /* init for GCC */
5094 char_u *ptr;
5095
5096 ptr = ml_get(lnum);
5097 if (do_comments)
Bram Moolenaar81340392012-06-06 16:12:59 +02005098 *leader_len = get_leader_len(ptr, leader_flags, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 else
5100 *leader_len = 0;
5101
5102 if (*leader_len > 0)
5103 {
5104 /*
5105 * Search for 'e' flag in comment leader flags.
5106 */
5107 flags = *leader_flags;
5108 while (*flags && *flags != ':' && *flags != COM_END)
5109 ++flags;
5110 }
5111
5112 return (*skipwhite(ptr + *leader_len) == NUL
5113 || (*leader_len > 0 && *flags == COM_END)
5114 || startPS(lnum, NUL, FALSE));
5115}
5116#else
5117 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005118fmt_check_par(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119{
5120 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
5121}
5122#endif
5123
5124/*
5125 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
5126 * previous line is in the same paragraph. Used for auto-formatting.
5127 */
5128 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005129paragraph_start(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130{
5131 char_u *p;
5132#ifdef FEAT_COMMENTS
5133 int leader_len = 0; /* leader len of current line */
5134 char_u *leader_flags = NULL; /* flags for leader of current line */
5135 int next_leader_len; /* leader len of next line */
5136 char_u *next_leader_flags; /* flags for leader of next line */
5137 int do_comments; /* format comments */
5138#endif
5139
5140 if (lnum <= 1)
5141 return TRUE; /* start of the file */
5142
5143 p = ml_get(lnum - 1);
5144 if (*p == NUL)
5145 return TRUE; /* after empty line */
5146
5147#ifdef FEAT_COMMENTS
5148 do_comments = has_format_option(FO_Q_COMS);
5149#endif
5150 if (fmt_check_par(lnum - 1
5151#ifdef FEAT_COMMENTS
5152 , &leader_len, &leader_flags, do_comments
5153#endif
5154 ))
5155 return TRUE; /* after non-paragraph line */
5156
5157 if (fmt_check_par(lnum
5158#ifdef FEAT_COMMENTS
5159 , &next_leader_len, &next_leader_flags, do_comments
5160#endif
5161 ))
5162 return TRUE; /* "lnum" is not a paragraph line */
5163
5164 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
5165 return TRUE; /* missing trailing space in previous line. */
5166
5167 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
5168 return TRUE; /* numbered item starts in "lnum". */
5169
5170#ifdef FEAT_COMMENTS
5171 if (!same_leader(lnum - 1, leader_len, leader_flags,
5172 next_leader_len, next_leader_flags))
5173 return TRUE; /* change of comment leader. */
5174#endif
5175
5176 return FALSE;
5177}
5178
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179/*
5180 * prepare a few things for block mode yank/delete/tilde
5181 *
5182 * for delete:
5183 * - textlen includes the first/last char to be (partly) deleted
5184 * - start/endspaces is the number of columns that are taken by the
5185 * first/last deleted char minus the number of columns that have to be
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +00005186 * deleted.
5187 * for yank and tilde:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188 * - textlen includes the first/last char to be wholly yanked
5189 * - start/endspaces is the number of columns of the first/last yanked char
5190 * that are to be yanked.
5191 */
5192 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005193block_prep(
5194 oparg_T *oap,
5195 struct block_def *bdp,
5196 linenr_T lnum,
5197 int is_del)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198{
5199 int incr = 0;
5200 char_u *pend;
5201 char_u *pstart;
5202 char_u *line;
5203 char_u *prev_pstart;
5204 char_u *prev_pend;
5205
5206 bdp->startspaces = 0;
5207 bdp->endspaces = 0;
5208 bdp->textlen = 0;
5209 bdp->start_vcol = 0;
5210 bdp->end_vcol = 0;
5211#ifdef FEAT_VISUALEXTRA
5212 bdp->is_short = FALSE;
5213 bdp->is_oneChar = FALSE;
5214 bdp->pre_whitesp = 0;
5215 bdp->pre_whitesp_c = 0;
5216 bdp->end_char_vcols = 0;
5217#endif
5218 bdp->start_char_vcols = 0;
5219
5220 line = ml_get(lnum);
5221 pstart = line;
5222 prev_pstart = line;
5223 while (bdp->start_vcol < oap->start_vcol && *pstart)
5224 {
5225 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02005226 incr = lbr_chartabsize(line, pstart, (colnr_T)bdp->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 bdp->start_vcol += incr;
5228#ifdef FEAT_VISUALEXTRA
5229 if (vim_iswhite(*pstart))
5230 {
5231 bdp->pre_whitesp += incr;
5232 bdp->pre_whitesp_c++;
5233 }
5234 else
5235 {
5236 bdp->pre_whitesp = 0;
5237 bdp->pre_whitesp_c = 0;
5238 }
5239#endif
5240 prev_pstart = pstart;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005241 mb_ptr_adv(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 }
5243 bdp->start_char_vcols = incr;
5244 if (bdp->start_vcol < oap->start_vcol) /* line too short */
5245 {
5246 bdp->end_vcol = bdp->start_vcol;
5247#ifdef FEAT_VISUALEXTRA
5248 bdp->is_short = TRUE;
5249#endif
5250 if (!is_del || oap->op_type == OP_APPEND)
5251 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
5252 }
5253 else
5254 {
5255 /* notice: this converts partly selected Multibyte characters to
5256 * spaces, too. */
5257 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
5258 if (is_del && bdp->startspaces)
5259 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
5260 pend = pstart;
5261 bdp->end_vcol = bdp->start_vcol;
5262 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
5263 {
5264#ifdef FEAT_VISUALEXTRA
5265 bdp->is_oneChar = TRUE;
5266#endif
5267 if (oap->op_type == OP_INSERT)
5268 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5269 else if (oap->op_type == OP_APPEND)
5270 {
5271 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
5272 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5273 }
5274 else
5275 {
5276 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
5277 if (is_del && oap->op_type != OP_LSHIFT)
5278 {
5279 /* just putting the sum of those two into
5280 * bdp->startspaces doesn't work for Visual replace,
5281 * so we have to split the tab in two */
5282 bdp->startspaces = bdp->start_char_vcols
5283 - (bdp->start_vcol - oap->start_vcol);
5284 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5285 }
5286 }
5287 }
5288 else
5289 {
5290 prev_pend = pend;
5291 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
5292 {
5293 /* Count a tab for what it's worth (if list mode not on) */
5294 prev_pend = pend;
Bram Moolenaar1dc92332015-01-27 13:22:20 +01005295 incr = lbr_chartabsize_adv(line, &pend, (colnr_T)bdp->end_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 bdp->end_vcol += incr;
5297 }
5298 if (bdp->end_vcol <= oap->end_vcol
5299 && (!is_del
5300 || oap->op_type == OP_APPEND
5301 || oap->op_type == OP_REPLACE)) /* line too short */
5302 {
5303#ifdef FEAT_VISUALEXTRA
5304 bdp->is_short = TRUE;
5305#endif
5306 /* Alternative: include spaces to fill up the block.
5307 * Disadvantage: can lead to trailing spaces when the line is
5308 * short where the text is put */
5309 /* if (!is_del || oap->op_type == OP_APPEND) */
5310 if (oap->op_type == OP_APPEND || virtual_op)
5311 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00005312 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313 else
5314 bdp->endspaces = 0; /* replace doesn't add characters */
5315 }
5316 else if (bdp->end_vcol > oap->end_vcol)
5317 {
5318 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5319 if (!is_del && bdp->endspaces)
5320 {
5321 bdp->endspaces = incr - bdp->endspaces;
5322 if (pend != pstart)
5323 pend = prev_pend;
5324 }
5325 }
5326 }
5327#ifdef FEAT_VISUALEXTRA
5328 bdp->end_char_vcols = incr;
5329#endif
5330 if (is_del && bdp->startspaces)
5331 pstart = prev_pstart;
5332 bdp->textlen = (int)(pend - pstart);
5333 }
5334 bdp->textcol = (colnr_T) (pstart - line);
5335 bdp->textstart = pstart;
5336}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338/*
Bram Moolenaard79e5502016-01-10 22:13:02 +01005339 * Handle the add/subtract operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005341 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005342op_addsub(
5343 oparg_T *oap,
5344 linenr_T Prenum1, /* Amount of add/subtract */
5345 int g_cmd) /* was g<c-a>/g<c-x> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346{
Bram Moolenaard79e5502016-01-10 22:13:02 +01005347 pos_T pos;
5348 struct block_def bd;
5349 int change_cnt = 0;
5350 linenr_T amount = Prenum1;
5351
5352 if (!VIsual_active)
5353 {
5354 pos = curwin->w_cursor;
5355 if (u_save_cursor() == FAIL)
5356 return;
5357 change_cnt = do_addsub(oap->op_type, &pos, 0, amount);
5358 if (change_cnt)
5359 changed_lines(pos.lnum, 0, pos.lnum + 1, 0L);
5360 }
5361 else
5362 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005363 int one_change;
5364 int length;
5365 pos_T startpos;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005366
5367 if (u_save((linenr_T)(oap->start.lnum - 1),
5368 (linenr_T)(oap->end.lnum + 1)) == FAIL)
5369 return;
5370
5371 pos = oap->start;
5372 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
5373 {
5374 if (oap->block_mode) /* Visual block mode */
5375 {
5376 block_prep(oap, &bd, pos.lnum, FALSE);
5377 pos.col = bd.textcol;
5378 length = bd.textlen;
5379 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005380 else if (oap->motion_type == MLINE)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005381 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005382 curwin->w_cursor.col = 0;
5383 pos.col = 0;
5384 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5385 }
5386 else /* oap->motion_type == MCHAR */
5387 {
5388 if (!oap->inclusive)
5389 dec(&(oap->end));
5390 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5391 pos.col = 0;
5392 if (pos.lnum == oap->start.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005393 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005394 pos.col += oap->start.col;
5395 length -= oap->start.col;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005396 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005397 if (pos.lnum == oap->end.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005398 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005399 length = (int)STRLEN(ml_get(oap->end.lnum));
5400 if (oap->end.col >= length)
5401 oap->end.col = length - 1;
5402 length = oap->end.col - pos.col + 1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005403 }
5404 }
5405 one_change = do_addsub(oap->op_type, &pos, length, amount);
5406 if (one_change)
5407 {
5408 /* Remember the start position of the first change. */
5409 if (change_cnt == 0)
5410 startpos = curbuf->b_op_start;
5411 ++change_cnt;
5412 }
5413
5414#ifdef FEAT_NETBEANS_INTG
5415 if (netbeans_active() && one_change)
5416 {
5417 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
5418
5419 netbeans_removed(curbuf, pos.lnum, pos.col, (long)length);
5420 netbeans_inserted(curbuf, pos.lnum, pos.col,
5421 &ptr[pos.col], length);
5422 }
5423#endif
5424 if (g_cmd && one_change)
5425 amount += Prenum1;
5426 }
5427 if (change_cnt)
5428 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
5429
5430 if (!change_cnt && oap->is_VIsual)
5431 /* No change: need to remove the Visual selection */
5432 redraw_curbuf_later(INVERTED);
5433
5434 /* Set '[ mark if something changed. Keep the last end
5435 * position from do_addsub(). */
5436 if (change_cnt > 0)
5437 curbuf->b_op_start = startpos;
5438
5439 if (change_cnt > p_report)
5440 {
5441 if (change_cnt == 1)
5442 MSG(_("1 line changed"));
5443 else
5444 smsg((char_u *)_("%ld lines changed"), change_cnt);
5445 }
5446 }
5447}
5448
5449/*
5450 * Add or subtract 'Prenum1' from a number in a line
5451 * op_type is OP_NR_ADD or OP_NR_SUB
5452 *
5453 * Returns TRUE if some character was changed.
5454 */
5455 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005456do_addsub(
5457 int op_type,
5458 pos_T *pos,
5459 int length,
5460 linenr_T Prenum1)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005461{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462 int col;
5463 char_u *buf1;
5464 char_u buf2[NUMBUFLEN];
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005465 int pre; /* 'X'/'x': hex; '0': octal; 'B'/'b': bin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005467 uvarnumber_T n;
5468 uvarnumber_T oldn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 char_u *ptr;
5470 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 int todel;
5472 int dohex;
5473 int dooct;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005474 int dobin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 int doalp;
5476 int firstdigit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 int subtract;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005478 int negative = FALSE;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02005479 int was_positive = TRUE;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005480 int visual = VIsual_active;
Bram Moolenaar3ec32612015-07-12 15:02:38 +02005481 int did_change = FALSE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005482 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005483 int maxlen = 0;
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005484 pos_T startpos;
5485 pos_T endpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486
5487 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5488 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005489 dobin = (vim_strchr(curbuf->b_p_nf, 'b') != NULL); /* "Bin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5491
Bram Moolenaard79e5502016-01-10 22:13:02 +01005492 curwin->w_cursor = *pos;
5493 ptr = ml_get(pos->lnum);
5494 col = pos->col;
5495
5496 if (*ptr == NUL)
5497 goto theend;
5498
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 /*
5500 * First check if we are on a hexadecimal number, after the "0x".
5501 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005502 if (!VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005504 if (dobin)
5505 while (col > 0 && vim_isbdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005506 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005507 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005508#ifdef FEAT_MBYTE
5509 if (has_mbyte)
5510 col -= (*mb_head_off)(ptr, ptr + col);
5511#endif
5512 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005513
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005514 if (dohex)
5515 while (col > 0 && vim_isxdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005516 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005517 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005518#ifdef FEAT_MBYTE
5519 if (has_mbyte)
5520 col -= (*mb_head_off)(ptr, ptr + col);
5521#endif
5522 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005523
5524 if ( dobin
5525 && dohex
5526 && ! ((col > 0
5527 && (ptr[col] == 'X'
5528 || ptr[col] == 'x')
5529 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005530#ifdef FEAT_MBYTE
5531 && (!has_mbyte ||
5532 !(*mb_head_off)(ptr, ptr + col - 1))
5533#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005534 && vim_isxdigit(ptr[col + 1]))))
5535 {
5536
5537 /* In case of binary/hexadecimal pattern overlap match, rescan */
5538
Bram Moolenaard79e5502016-01-10 22:13:02 +01005539 col = pos->col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005540
5541 while (col > 0 && vim_isdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005542 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005543 col--;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005544#ifdef FEAT_MBYTE
5545 if (has_mbyte)
5546 col -= (*mb_head_off)(ptr, ptr + col);
5547#endif
5548 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005549 }
5550
5551 if (( dohex
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005552 && col > 0
5553 && (ptr[col] == 'X'
5554 || ptr[col] == 'x')
5555 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005556#ifdef FEAT_MBYTE
5557 && (!has_mbyte ||
5558 !(*mb_head_off)(ptr, ptr + col - 1))
5559#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005560 && vim_isxdigit(ptr[col + 1])) ||
5561 ( dobin
5562 && col > 0
5563 && (ptr[col] == 'B'
5564 || ptr[col] == 'b')
5565 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005566#ifdef FEAT_MBYTE
5567 && (!has_mbyte ||
5568 !(*mb_head_off)(ptr, ptr + col - 1))
5569#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005570 && vim_isbdigit(ptr[col + 1])))
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005571 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005572 /* Found hexadecimal or binary number, move to its start. */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005573 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005574#ifdef FEAT_MBYTE
5575 if (has_mbyte)
5576 col -= (*mb_head_off)(ptr, ptr + col);
5577#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005578 }
5579 else
5580 {
5581 /*
5582 * Search forward and then backward to find the start of number.
5583 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005584 col = pos->col;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005585
5586 while (ptr[col] != NUL
5587 && !vim_isdigit(ptr[col])
5588 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005589 col += MB_PTR2LEN(ptr + col);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005590
5591 while (col > 0
5592 && vim_isdigit(ptr[col - 1])
5593 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005594 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005595 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005596#ifdef FEAT_MBYTE
5597 if (has_mbyte)
5598 col -= (*mb_head_off)(ptr, ptr + col);
5599#endif
5600 }
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005601 }
5602 }
5603
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005604 if (visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005605 {
5606 while (ptr[col] != NUL && length > 0
5607 && !vim_isdigit(ptr[col])
5608 && !(doalp && ASCII_ISALPHA(ptr[col])))
5609 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005610 int mb_len = MB_PTR2LEN(ptr + col);
5611
5612 col += mb_len;
5613 length -= mb_len;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005614 }
5615
5616 if (length == 0)
5617 goto theend;
5618
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005619 if (col > pos->col && ptr[col - 1] == '-'
5620#ifdef FEAT_MBYTE
5621 && (!has_mbyte ||
5622 !(*mb_head_off)(ptr, ptr + col - 1))
5623#endif
5624 )
Bram Moolenaard79e5502016-01-10 22:13:02 +01005625 {
5626 negative = TRUE;
5627 was_positive = FALSE;
5628 }
5629 }
5630
5631 /*
5632 * If a number was found, and saving for undo works, replace the number.
5633 */
5634 firstdigit = ptr[col];
5635 if (!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5636 {
5637 beep_flush();
5638 goto theend;
5639 }
5640
5641 if (doalp && ASCII_ISALPHA(firstdigit))
5642 {
5643 /* decrement or increment alphabetic character */
5644 if (op_type == OP_NR_SUB)
5645 {
5646 if (CharOrd(firstdigit) < Prenum1)
5647 {
5648 if (isupper(firstdigit))
5649 firstdigit = 'A';
5650 else
5651 firstdigit = 'a';
5652 }
5653 else
5654#ifdef EBCDIC
5655 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5656#else
5657 firstdigit -= Prenum1;
5658#endif
5659 }
5660 else
5661 {
5662 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5663 {
5664 if (isupper(firstdigit))
5665 firstdigit = 'Z';
5666 else
5667 firstdigit = 'z';
5668 }
5669 else
5670#ifdef EBCDIC
5671 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5672#else
5673 firstdigit += Prenum1;
5674#endif
5675 }
5676 curwin->w_cursor.col = col;
5677 if (!did_change)
5678 startpos = curwin->w_cursor;
5679 did_change = TRUE;
5680 (void)del_char(FALSE);
5681 ins_char(firstdigit);
5682 endpos = curwin->w_cursor;
5683 curwin->w_cursor.col = col;
5684 }
5685 else
5686 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005687 if (col > 0 && ptr[col - 1] == '-'
5688#ifdef FEAT_MBYTE
5689 && (!has_mbyte ||
5690 !(*mb_head_off)(ptr, ptr + col - 1))
5691#endif
5692 && !visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005693 {
5694 /* negative number */
5695 --col;
5696 negative = TRUE;
5697 }
5698 /* get the number value (unsigned) */
5699 if (visual && VIsual_mode != 'V')
5700 maxlen = (curbuf->b_visual.vi_curswant == MAXCOL
5701 ? (int)STRLEN(ptr) - col
5702 : length);
5703
5704 vim_str2nr(ptr + col, &pre, &length,
5705 0 + (dobin ? STR2NR_BIN : 0)
5706 + (dooct ? STR2NR_OCT : 0)
5707 + (dohex ? STR2NR_HEX : 0),
5708 NULL, &n, maxlen);
5709
5710 /* ignore leading '-' for hex and octal and bin numbers */
5711 if (pre && negative)
5712 {
5713 ++col;
5714 --length;
5715 negative = FALSE;
5716 }
5717 /* add or subtract */
5718 subtract = FALSE;
5719 if (op_type == OP_NR_SUB)
5720 subtract ^= TRUE;
5721 if (negative)
5722 subtract ^= TRUE;
5723
5724 oldn = n;
5725 if (subtract)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005726 n -= (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005727 else
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005728 n += (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005729 /* handle wraparound for decimal numbers */
5730 if (!pre)
5731 {
5732 if (subtract)
5733 {
5734 if (n > oldn)
5735 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005736 n = 1 + (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005737 negative ^= TRUE;
5738 }
5739 }
5740 else
5741 {
5742 /* add */
5743 if (n < oldn)
5744 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005745 n = (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005746 negative ^= TRUE;
5747 }
5748 }
5749 if (n == 0)
5750 negative = FALSE;
5751 }
5752
5753 if (visual && !was_positive && !negative && col > 0)
5754 {
5755 /* need to remove the '-' */
5756 col--;
5757 length++;
5758 }
5759
5760 /*
5761 * Delete the old number.
5762 */
5763 curwin->w_cursor.col = col;
5764 if (!did_change)
5765 startpos = curwin->w_cursor;
5766 did_change = TRUE;
5767 todel = length;
5768 c = gchar_cursor();
5769 /*
5770 * Don't include the '-' in the length, only the length of the
5771 * part after it is kept the same.
5772 */
5773 if (c == '-')
5774 --length;
5775 while (todel-- > 0)
5776 {
5777 if (c < 0x100 && isalpha(c))
5778 {
5779 if (isupper(c))
5780 hexupper = TRUE;
5781 else
5782 hexupper = FALSE;
5783 }
5784 /* del_char() will mark line needing displaying */
5785 (void)del_char(FALSE);
5786 c = gchar_cursor();
5787 }
5788
5789 /*
5790 * Prepare the leading characters in buf1[].
5791 * When there are many leading zeros it could be very long.
5792 * Allocate a bit too much.
5793 */
5794 buf1 = alloc((unsigned)length + NUMBUFLEN);
5795 if (buf1 == NULL)
5796 goto theend;
5797 ptr = buf1;
Bram Moolenaardc633cf2016-04-23 14:33:19 +02005798 if (negative && (!visual || was_positive))
Bram Moolenaard79e5502016-01-10 22:13:02 +01005799 {
5800 *ptr++ = '-';
5801 }
5802 if (pre)
5803 {
5804 *ptr++ = '0';
5805 --length;
5806 }
5807 if (pre == 'b' || pre == 'B' ||
5808 pre == 'x' || pre == 'X')
5809 {
5810 *ptr++ = pre;
5811 --length;
5812 }
5813
5814 /*
5815 * Put the number characters in buf2[].
5816 */
5817 if (pre == 'b' || pre == 'B')
5818 {
5819 int i;
5820 int bit = 0;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005821 int bits = sizeof(uvarnumber_T) * 8;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005822
5823 /* leading zeros */
5824 for (bit = bits; bit > 0; bit--)
5825 if ((n >> (bit - 1)) & 0x1) break;
5826
5827 for (i = 0; bit > 0; bit--)
5828 buf2[i++] = ((n >> (bit - 1)) & 0x1) ? '1' : '0';
5829
5830 buf2[i] = '\0';
5831 }
5832 else if (pre == 0)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005833 vim_snprintf((char *)buf2, NUMBUFLEN, "%llu", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005834 else if (pre == '0')
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005835 vim_snprintf((char *)buf2, NUMBUFLEN, "%llo", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005836 else if (pre && hexupper)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005837 vim_snprintf((char *)buf2, NUMBUFLEN, "%llX", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005838 else
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005839 vim_snprintf((char *)buf2, NUMBUFLEN, "%llx", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005840 length -= (int)STRLEN(buf2);
5841
5842 /*
5843 * Adjust number of zeros to the new number of digits, so the
5844 * total length of the number remains the same.
5845 * Don't do this when
5846 * the result may look like an octal number.
5847 */
5848 if (firstdigit == '0' && !(dooct && pre == 0))
5849 while (length-- > 0)
5850 *ptr++ = '0';
5851 *ptr = NUL;
5852 STRCAT(buf1, buf2);
5853 ins_str(buf1); /* insert the new number */
5854 vim_free(buf1);
5855 endpos = curwin->w_cursor;
5856 if (did_change && curwin->w_cursor.col)
5857 --curwin->w_cursor.col;
5858 }
5859
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005860 if (did_change)
5861 {
5862 /* set the '[ and '] marks */
5863 curbuf->b_op_start = startpos;
5864 curbuf->b_op_end = endpos;
5865 if (curbuf->b_op_end.col > 0)
5866 --curbuf->b_op_end.col;
5867 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01005868
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005869theend:
5870 if (visual)
5871 curwin->w_cursor = save_cursor;
Bram Moolenaar8e081252016-03-21 23:13:32 +01005872 else if (did_change)
5873 curwin->w_set_curswant = TRUE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005874
Bram Moolenaard79e5502016-01-10 22:13:02 +01005875 return did_change;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876}
5877
5878#ifdef FEAT_VIMINFO
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005879
5880static yankreg_T *y_read_regs = NULL;
5881
5882#define REG_PREVIOUS 1
5883#define REG_EXEC 2
5884
5885/*
5886 * Prepare for reading viminfo registers when writing viminfo later.
5887 */
5888 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02005889prepare_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005890{
5891 y_read_regs = (yankreg_T *)alloc_clear(NUM_REGISTERS
5892 * (int)sizeof(yankreg_T));
5893}
5894
5895 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02005896finish_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005897{
5898 int i;
5899 int j;
5900
5901 if (y_read_regs != NULL)
5902 {
5903 for (i = 0; i < NUM_REGISTERS; ++i)
5904 if (y_read_regs[i].y_array != NULL)
5905 {
5906 for (j = 0; j < y_read_regs[i].y_size; j++)
5907 vim_free(y_read_regs[i].y_array[j]);
5908 vim_free(y_read_regs[i].y_array);
5909 }
5910 vim_free(y_read_regs);
5911 y_read_regs = NULL;
5912 }
5913}
5914
Bram Moolenaar071d4272004-06-13 20:20:40 +00005915 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005916read_viminfo_register(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917{
5918 int eof;
5919 int do_it = TRUE;
5920 int size;
5921 int limit;
5922 int i;
5923 int set_prev = FALSE;
5924 char_u *str;
5925 char_u **array = NULL;
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01005926 int new_type = MCHAR; /* init to shut up compiler */
5927 colnr_T new_width = 0; /* init to shut up compiler */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928
5929 /* We only get here (hopefully) if line[0] == '"' */
5930 str = virp->vir_line + 1;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005931
5932 /* If the line starts with "" this is the y_previous register. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 if (*str == '"')
5934 {
5935 set_prev = TRUE;
5936 str++;
5937 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00005938
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939 if (!ASCII_ISALNUM(*str) && *str != '-')
5940 {
5941 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5942 return TRUE; /* too many errors, pretend end-of-file */
5943 do_it = FALSE;
5944 }
5945 get_yank_register(*str++, FALSE);
5946 if (!force && y_current->y_array != NULL)
5947 do_it = FALSE;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005948
5949 if (*str == '@')
5950 {
5951 /* "x@: register x used for @@ */
5952 if (force || execreg_lastc == NUL)
5953 execreg_lastc = str[-1];
5954 }
5955
Bram Moolenaar071d4272004-06-13 20:20:40 +00005956 size = 0;
5957 limit = 100; /* Optimized for registers containing <= 100 lines */
5958 if (do_it)
5959 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01005960 /*
5961 * Build the new register in array[].
5962 * y_array is kept as-is until done.
5963 * The "do_it" flag is reset when something is wrong, in which case
5964 * array[] needs to be freed.
5965 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966 if (set_prev)
5967 y_previous = y_current;
Bram Moolenaare88b0032014-12-17 21:00:49 +01005968 array = (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
Bram Moolenaar42b94362009-05-26 16:12:37 +00005969 str = skipwhite(skiptowhite(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970 if (STRNCMP(str, "CHAR", 4) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01005971 new_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005972 else if (STRNCMP(str, "BLOCK", 5) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01005973 new_type = MBLOCK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005974 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01005975 new_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976 /* get the block width; if it's missing we get a zero, which is OK */
5977 str = skipwhite(skiptowhite(str));
Bram Moolenaare88b0032014-12-17 21:00:49 +01005978 new_width = getdigits(&str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 }
5980
5981 while (!(eof = viminfo_readline(virp))
5982 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
5983 {
5984 if (do_it)
5985 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01005986 if (size == limit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005987 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01005988 char_u **new_array = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005989 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
Bram Moolenaare88b0032014-12-17 21:00:49 +01005990
5991 if (new_array == NULL)
5992 {
5993 do_it = FALSE;
5994 break;
5995 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996 for (i = 0; i < limit; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01005997 new_array[i] = array[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998 vim_free(array);
Bram Moolenaare88b0032014-12-17 21:00:49 +01005999 array = new_array;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000 limit *= 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001 }
6002 str = viminfo_readstring(virp, 1, TRUE);
6003 if (str != NULL)
6004 array[size++] = str;
6005 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006006 /* error, don't store the result */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006007 do_it = FALSE;
6008 }
6009 }
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01006010
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011 if (do_it)
6012 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006013 /* free y_array[] */
6014 for (i = 0; i < y_current->y_size; i++)
6015 vim_free(y_current->y_array[i]);
6016 vim_free(y_current->y_array);
6017
6018 y_current->y_type = new_type;
6019 y_current->y_width = new_width;
6020 y_current->y_size = size;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006021 y_current->y_time_set = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006022 if (size == 0)
6023 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024 y_current->y_array = NULL;
6025 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006026 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006027 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006028 /* Move the lines from array[] to y_array[]. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006029 y_current->y_array =
6030 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
6031 for (i = 0; i < size; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006032 {
6033 if (y_current->y_array == NULL)
6034 vim_free(array[i]);
6035 else
6036 y_current->y_array[i] = array[i];
6037 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006040 else
6041 {
6042 /* Free array[] if it was filled. */
6043 for (i = 0; i < size; i++)
6044 vim_free(array[i]);
6045 }
6046 vim_free(array);
6047
Bram Moolenaar071d4272004-06-13 20:20:40 +00006048 return eof;
6049}
6050
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006051/*
6052 * Accept a new style register line from the viminfo, store it when it's new.
6053 */
6054 void
6055handle_viminfo_register(garray_T *values, int force)
6056{
6057 bval_T *vp = (bval_T *)values->ga_data;
6058 int flags;
6059 int name;
6060 int type;
6061 int linecount;
6062 int width;
6063 time_t timestamp;
6064 yankreg_T *y_ptr;
6065 int i;
6066
6067 /* Check the format:
6068 * |{bartype},{flags},{name},{type},
6069 * {linecount},{width},{timestamp},"line1","line2"
6070 */
6071 if (values->ga_len < 6
6072 || vp[0].bv_type != BVAL_NR
6073 || vp[1].bv_type != BVAL_NR
6074 || vp[2].bv_type != BVAL_NR
6075 || vp[3].bv_type != BVAL_NR
6076 || vp[4].bv_type != BVAL_NR
6077 || vp[5].bv_type != BVAL_NR)
6078 return;
6079 flags = vp[0].bv_nr;
6080 name = vp[1].bv_nr;
Bram Moolenaar67e37202016-06-14 21:32:28 +02006081 if (name < 0 || name >= NUM_REGISTERS)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006082 return;
6083 type = vp[2].bv_nr;
6084 if (type != MCHAR && type != MLINE && type != MBLOCK)
6085 return;
6086 linecount = vp[3].bv_nr;
6087 if (values->ga_len < 6 + linecount)
6088 return;
6089 width = vp[4].bv_nr;
6090 if (width < 0)
6091 return;
6092
6093 if (y_read_regs != NULL)
6094 /* Reading viminfo for merging and writing. Store the register
6095 * content, don't update the current registers. */
6096 y_ptr = &y_read_regs[name];
6097 else
6098 y_ptr = &y_regs[name];
6099
6100 /* Do not overwrite unless forced or the timestamp is newer. */
6101 timestamp = (time_t)vp[5].bv_nr;
6102 if (y_ptr->y_array != NULL && !force
6103 && (timestamp == 0 || y_ptr->y_time_set > timestamp))
6104 return;
6105
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02006106 if (y_ptr->y_array != NULL)
6107 for (i = 0; i < y_ptr->y_size; i++)
6108 vim_free(y_ptr->y_array[i]);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006109 vim_free(y_ptr->y_array);
6110
6111 if (y_read_regs == NULL)
6112 {
6113 if (flags & REG_PREVIOUS)
6114 y_previous = y_ptr;
6115 if ((flags & REG_EXEC) && (force || execreg_lastc == NUL))
6116 execreg_lastc = get_register_name(name);
6117 }
6118 y_ptr->y_type = type;
6119 y_ptr->y_width = width;
6120 y_ptr->y_size = linecount;
6121 y_ptr->y_time_set = timestamp;
6122 if (linecount == 0)
6123 y_ptr->y_array = NULL;
6124 else
6125 {
6126 y_ptr->y_array =
6127 (char_u **)alloc((unsigned)(linecount * sizeof(char_u *)));
6128 for (i = 0; i < linecount; i++)
6129 {
6130 if (vp[i + 6].bv_allocated)
6131 {
6132 y_ptr->y_array[i] = vp[i + 6].bv_string;
6133 vp[i + 6].bv_string = NULL;
6134 }
6135 else
6136 y_ptr->y_array[i] = vim_strsave(vp[i + 6].bv_string);
6137 }
6138 }
6139}
6140
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006142write_viminfo_registers(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006144 int i, j;
6145 char_u *type;
6146 char_u c;
6147 int num_lines;
6148 int max_num_lines;
6149 int max_kbyte;
6150 long len;
6151 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006152
Bram Moolenaar64404472010-06-26 06:24:45 +02006153 fputs(_("\n# Registers:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154
6155 /* Get '<' value, use old '"' value if '<' is not found. */
6156 max_num_lines = get_viminfo_parameter('<');
6157 if (max_num_lines < 0)
6158 max_num_lines = get_viminfo_parameter('"');
6159 if (max_num_lines == 0)
6160 return;
6161 max_kbyte = get_viminfo_parameter('s');
6162 if (max_kbyte == 0)
6163 return;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006164
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 for (i = 0; i < NUM_REGISTERS; i++)
6166 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167#ifdef FEAT_CLIPBOARD
6168 /* Skip '*'/'+' register, we don't want them back next time */
6169 if (i == STAR_REGISTER || i == PLUS_REGISTER)
6170 continue;
6171#endif
6172#ifdef FEAT_DND
6173 /* Neither do we want the '~' register */
6174 if (i == TILDE_REGISTER)
6175 continue;
6176#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006177 /* When reading viminfo for merging and writing: Use the register from
6178 * viminfo if it's newer. */
6179 if (y_read_regs != NULL
6180 && y_read_regs[i].y_array != NULL
6181 && (y_regs[i].y_array == NULL ||
6182 y_read_regs[i].y_time_set > y_regs[i].y_time_set))
6183 y_ptr = &y_read_regs[i];
6184 else if (y_regs[i].y_array == NULL)
6185 continue;
6186 else
6187 y_ptr = &y_regs[i];
6188
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006189 /* Skip empty registers. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006190 num_lines = y_ptr->y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006191 if (num_lines == 0
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006192 || (num_lines == 1 && y_ptr->y_type == MCHAR
6193 && *y_ptr->y_array[0] == NUL))
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006194 continue;
6195
Bram Moolenaar071d4272004-06-13 20:20:40 +00006196 if (max_kbyte > 0)
6197 {
6198 /* Skip register if there is more text than the maximum size. */
6199 len = 0;
6200 for (j = 0; j < num_lines; j++)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006201 len += (long)STRLEN(y_ptr->y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202 if (len > (long)max_kbyte * 1024L)
6203 continue;
6204 }
6205
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006206 switch (y_ptr->y_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006207 {
6208 case MLINE:
6209 type = (char_u *)"LINE";
6210 break;
6211 case MCHAR:
6212 type = (char_u *)"CHAR";
6213 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214 case MBLOCK:
6215 type = (char_u *)"BLOCK";
6216 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217 default:
6218 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006219 y_ptr->y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220 emsg(IObuff);
6221 type = (char_u *)"LINE";
6222 break;
6223 }
6224 if (y_previous == &y_regs[i])
6225 fprintf(fp, "\"");
6226 c = get_register_name(i);
Bram Moolenaar42b94362009-05-26 16:12:37 +00006227 fprintf(fp, "\"%c", c);
6228 if (c == execreg_lastc)
6229 fprintf(fp, "@");
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006230 fprintf(fp, "\t%s\t%d\n", type, (int)y_ptr->y_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006231
6232 /* If max_num_lines < 0, then we save ALL the lines in the register */
6233 if (max_num_lines > 0 && num_lines > max_num_lines)
6234 num_lines = max_num_lines;
6235 for (j = 0; j < num_lines; j++)
6236 {
6237 putc('\t', fp);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006238 viminfo_writestring(fp, y_ptr->y_array[j]);
6239 }
6240
6241 {
6242 int flags = 0;
6243 int remaining;
6244
6245 /* New style with a bar line. Format:
6246 * |{bartype},{flags},{name},{type},
6247 * {linecount},{width},{timestamp},"line1","line2"
6248 * flags: REG_PREVIOUS - register is y_previous
6249 * REG_EXEC - used for @@
6250 */
6251 if (y_previous == &y_regs[i])
6252 flags |= REG_PREVIOUS;
6253 if (c == execreg_lastc)
6254 flags |= REG_EXEC;
6255 fprintf(fp, "|%d,%d,%d,%d,%d,%d,%ld", BARTYPE_REGISTER, flags,
6256 i, y_ptr->y_type, num_lines, (int)y_ptr->y_width,
6257 (long)y_ptr->y_time_set);
6258 /* 11 chars for type/flags/name/type, 3 * 20 for numbers */
6259 remaining = LSIZE - 71;
6260 for (j = 0; j < num_lines; j++)
6261 {
6262 putc(',', fp);
6263 --remaining;
6264 remaining = barline_writestring(fp, y_ptr->y_array[j],
6265 remaining);
6266 }
6267 putc('\n', fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268 }
6269 }
6270}
6271#endif /* FEAT_VIMINFO */
6272
6273#if defined(FEAT_CLIPBOARD) || defined(PROTO)
6274/*
6275 * SELECTION / PRIMARY ('*')
6276 *
6277 * Text selection stuff that uses the GUI selection register '*'. When using a
6278 * GUI this may be text from another window, otherwise it is the last text we
6279 * had highlighted with VIsual mode. With mouse support, clicking the middle
6280 * button performs the paste, otherwise you will need to do <"*p>. "
6281 * If not under X, it is synonymous with the clipboard register '+'.
6282 *
6283 * X CLIPBOARD ('+')
6284 *
6285 * Text selection stuff that uses the GUI clipboard register '+'.
6286 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
6287 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
6288 * otherwise you will need to do <"+p>. "
6289 * If not under X, it is synonymous with the selection register '*'.
6290 */
6291
6292/*
6293 * Routine to export any final X selection we had to the environment
6294 * so that the text is still available after vim has exited. X selections
6295 * only exist while the owning application exists, so we write to the
6296 * permanent (while X runs) store CUT_BUFFER0.
6297 * Dump the CLIPBOARD selection if we own it (it's logically the more
6298 * 'permanent' of the two), otherwise the PRIMARY one.
6299 * For now, use a hard-coded sanity limit of 1Mb of data.
6300 */
Bram Moolenaara6b7a082016-08-10 20:53:05 +02006301#if (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006302 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006303x11_export_final_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304{
6305 Display *dpy;
6306 char_u *str = NULL;
6307 long_u len = 0;
6308 int motion_type = -1;
6309
6310# ifdef FEAT_GUI
6311 if (gui.in_use)
6312 dpy = X_DISPLAY;
6313 else
6314# endif
6315# ifdef FEAT_XCLIPBOARD
6316 dpy = xterm_dpy;
6317# else
6318 return;
6319# endif
6320
6321 /* Get selection to export */
6322 if (clip_plus.owned)
6323 motion_type = clip_convert_selection(&str, &len, &clip_plus);
6324 else if (clip_star.owned)
6325 motion_type = clip_convert_selection(&str, &len, &clip_star);
6326
6327 /* Check it's OK */
6328 if (dpy != NULL && str != NULL && motion_type >= 0
6329 && len < 1024*1024 && len > 0)
6330 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006331#ifdef FEAT_MBYTE
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006332 int ok = TRUE;
6333
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006334 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
6335 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
6336 * encoding conversion usually doesn't work, so keep the text as-is.
6337 */
6338 if (has_mbyte)
6339 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006340 vimconv_T vc;
6341
6342 vc.vc_type = CONV_NONE;
6343 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
6344 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01006345 int intlen = len;
6346 char_u *conv_str;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006347
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006348 vc.vc_fail = TRUE;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006349 conv_str = string_convert(&vc, str, &intlen);
6350 len = intlen;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006351 if (conv_str != NULL)
6352 {
6353 vim_free(str);
6354 str = conv_str;
6355 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006356 else
6357 {
6358 ok = FALSE;
6359 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006360 convert_setup(&vc, NULL, NULL);
6361 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006362 else
6363 {
6364 ok = FALSE;
6365 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006366 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006367
6368 /* Do not store the string if conversion failed. Better to use any
6369 * other selection than garbled text. */
6370 if (ok)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006371#endif
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006372 {
6373 XStoreBuffer(dpy, (char *)str, (int)len, 0);
6374 XFlush(dpy);
6375 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006376 }
6377
6378 vim_free(str);
6379}
6380#endif
6381
6382 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006383clip_free_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006384{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006385 yankreg_T *y_ptr = y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006386
6387 if (cbd == &clip_plus)
6388 y_current = &y_regs[PLUS_REGISTER];
6389 else
6390 y_current = &y_regs[STAR_REGISTER];
6391 free_yank_all();
6392 y_current->y_size = 0;
6393 y_current = y_ptr;
6394}
6395
6396/*
6397 * Get the selected text and put it in the gui selection register '*' or '+'.
6398 */
6399 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006400clip_get_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006402 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006403 pos_T old_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006404 pos_T old_visual;
6405 int old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406 colnr_T old_curswant;
6407 int old_set_curswant;
6408 pos_T old_op_start, old_op_end;
6409 oparg_T oa;
6410 cmdarg_T ca;
6411
6412 if (cbd->owned)
6413 {
6414 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
6415 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
6416 return;
6417
6418 /* Get the text between clip_star.start & clip_star.end */
6419 old_y_previous = y_previous;
6420 old_y_current = y_current;
6421 old_cursor = curwin->w_cursor;
6422 old_curswant = curwin->w_curswant;
6423 old_set_curswant = curwin->w_set_curswant;
6424 old_op_start = curbuf->b_op_start;
6425 old_op_end = curbuf->b_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006426 old_visual = VIsual;
6427 old_visual_mode = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428 clear_oparg(&oa);
6429 oa.regname = (cbd == &clip_plus ? '+' : '*');
6430 oa.op_type = OP_YANK;
6431 vim_memset(&ca, 0, sizeof(ca));
6432 ca.oap = &oa;
6433 ca.cmdchar = 'y';
6434 ca.count1 = 1;
6435 ca.retval = CA_NO_ADJ_OP_END;
6436 do_pending_operator(&ca, 0, TRUE);
6437 y_previous = old_y_previous;
6438 y_current = old_y_current;
6439 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006440 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006441 curwin->w_curswant = old_curswant;
6442 curwin->w_set_curswant = old_set_curswant;
6443 curbuf->b_op_start = old_op_start;
6444 curbuf->b_op_end = old_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006445 VIsual = old_visual;
6446 VIsual_mode = old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447 }
6448 else
6449 {
6450 clip_free_selection(cbd);
6451
6452 /* Try to get selected text from another window */
6453 clip_gen_request_selection(cbd);
6454 }
6455}
6456
Bram Moolenaard44347f2011-06-19 01:14:29 +02006457/*
6458 * Convert from the GUI selection string into the '*'/'+' register.
6459 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006460 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006461clip_yank_selection(
6462 int type,
6463 char_u *str,
6464 long len,
6465 VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006466{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006467 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468
6469 if (cbd == &clip_plus)
6470 y_ptr = &y_regs[PLUS_REGISTER];
6471 else
6472 y_ptr = &y_regs[STAR_REGISTER];
6473
6474 clip_free_selection(cbd);
6475
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006476 str_to_reg(y_ptr, type, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477}
6478
6479/*
6480 * Convert the '*'/'+' register into a GUI selection string returned in *str
6481 * with length *len.
6482 * Returns the motion type, or -1 for failure.
6483 */
6484 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006485clip_convert_selection(char_u **str, long_u *len, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006486{
6487 char_u *p;
6488 int lnum;
6489 int i, j;
6490 int_u eolsize;
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#ifdef USE_CRNL
6499 eolsize = 2;
6500#else
6501 eolsize = 1;
6502#endif
6503
6504 *str = NULL;
6505 *len = 0;
6506 if (y_ptr->y_array == NULL)
6507 return -1;
6508
6509 for (i = 0; i < y_ptr->y_size; i++)
6510 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
6511
6512 /*
6513 * Don't want newline character at end of last line if we're in MCHAR mode.
6514 */
6515 if (y_ptr->y_type == MCHAR && *len >= eolsize)
6516 *len -= eolsize;
6517
6518 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
6519 if (p == NULL)
6520 return -1;
6521 lnum = 0;
6522 for (i = 0, j = 0; i < (int)*len; i++, j++)
6523 {
6524 if (y_ptr->y_array[lnum][j] == '\n')
6525 p[i] = NUL;
6526 else if (y_ptr->y_array[lnum][j] == NUL)
6527 {
6528#ifdef USE_CRNL
6529 p[i++] = '\r';
6530#endif
6531#ifdef USE_CR
6532 p[i] = '\r';
6533#else
6534 p[i] = '\n';
6535#endif
6536 lnum++;
6537 j = -1;
6538 }
6539 else
6540 p[i] = y_ptr->y_array[lnum][j];
6541 }
6542 return y_ptr->y_type;
6543}
6544
6545
Bram Moolenaar071d4272004-06-13 20:20:40 +00006546/*
6547 * If we have written to a clipboard register, send the text to the clipboard.
6548 */
6549 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006550may_set_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551{
6552 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
6553 {
6554 clip_own_selection(&clip_star);
6555 clip_gen_set_selection(&clip_star);
6556 }
6557 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
6558 {
6559 clip_own_selection(&clip_plus);
6560 clip_gen_set_selection(&clip_plus);
6561 }
6562}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006563
6564#endif /* FEAT_CLIPBOARD || PROTO */
6565
6566
6567#if defined(FEAT_DND) || defined(PROTO)
6568/*
6569 * Replace the contents of the '~' register with str.
6570 */
6571 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006572dnd_yank_drag_data(char_u *str, long len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006573{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006574 yankreg_T *curr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006575
6576 curr = y_current;
6577 y_current = &y_regs[TILDE_REGISTER];
6578 free_yank_all();
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006579 str_to_reg(y_current, MCHAR, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580 y_current = curr;
6581}
6582#endif
6583
6584
6585#if defined(FEAT_EVAL) || defined(PROTO)
6586/*
6587 * Return the type of a register.
6588 * Used for getregtype()
6589 * Returns MAUTO for error.
6590 */
6591 char_u
Bram Moolenaar9b578142016-01-30 19:39:49 +01006592get_reg_type(int regname, long *reglen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006593{
6594 switch (regname)
6595 {
6596 case '%': /* file name */
6597 case '#': /* alternate file name */
6598 case '=': /* expression */
6599 case ':': /* last command line */
6600 case '/': /* last search-pattern */
6601 case '.': /* last inserted text */
6602#ifdef FEAT_SEARCHPATH
6603 case Ctrl_F: /* Filename under cursor */
6604 case Ctrl_P: /* Path under cursor, expand via "path" */
6605#endif
6606 case Ctrl_W: /* word under cursor */
6607 case Ctrl_A: /* WORD (mnemonic All) under cursor */
6608 case '_': /* black hole: always empty */
6609 return MCHAR;
6610 }
6611
6612#ifdef FEAT_CLIPBOARD
6613 regname = may_get_selection(regname);
6614#endif
6615
Bram Moolenaar32b92012014-01-14 12:33:36 +01006616 if (regname != NUL && !valid_yank_reg(regname, FALSE))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006617 return MAUTO;
Bram Moolenaar32b92012014-01-14 12:33:36 +01006618
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619 get_yank_register(regname, FALSE);
6620
6621 if (y_current->y_array != NULL)
6622 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006623 if (reglen != NULL && y_current->y_type == MBLOCK)
6624 *reglen = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006625 return y_current->y_type;
6626 }
6627 return MAUTO;
6628}
6629
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01006630static char_u *getreg_wrap_one_line(char_u *s, int flags);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006631
6632/*
6633 * When "flags" has GREG_LIST return a list with text "s".
6634 * Otherwise just return "s".
6635 */
6636 static char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006637getreg_wrap_one_line(char_u *s, int flags)
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006638{
6639 if (flags & GREG_LIST)
6640 {
6641 list_T *list = list_alloc();
6642
6643 if (list != NULL)
6644 {
6645 if (list_append_string(list, NULL, -1) == FAIL)
6646 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006647 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006648 return NULL;
6649 }
6650 list->lv_first->li_tv.vval.v_string = s;
6651 }
6652 return (char_u *)list;
6653 }
6654 return s;
6655}
6656
Bram Moolenaar071d4272004-06-13 20:20:40 +00006657/*
6658 * Return the contents of a register as a single allocated string.
6659 * Used for "@r" in expressions and for getreg().
6660 * Returns NULL for error.
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006661 * Flags:
6662 * GREG_NO_EXPR Do not allow expression register
6663 * GREG_EXPR_SRC For the expression register: return expression itself,
6664 * not the result of its evaluation.
6665 * GREG_LIST Return a list of lines in place of a single string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666 */
6667 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006668get_reg_contents(int regname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669{
6670 long i;
6671 char_u *retval;
6672 int allocated;
6673 long len;
6674
6675 /* Don't allow using an expression register inside an expression */
6676 if (regname == '=')
6677 {
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006678 if (flags & GREG_NO_EXPR)
6679 return NULL;
6680 if (flags & GREG_EXPR_SRC)
6681 return getreg_wrap_one_line(get_expr_line_src(), flags);
6682 return getreg_wrap_one_line(get_expr_line(), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006683 }
6684
6685 if (regname == '@') /* "@@" is used for unnamed register */
6686 regname = '"';
6687
6688 /* check for valid regname */
6689 if (regname != NUL && !valid_yank_reg(regname, FALSE))
6690 return NULL;
6691
6692#ifdef FEAT_CLIPBOARD
6693 regname = may_get_selection(regname);
6694#endif
6695
6696 if (get_spec_reg(regname, &retval, &allocated, FALSE))
6697 {
6698 if (retval == NULL)
6699 return NULL;
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006700 if (allocated)
6701 return getreg_wrap_one_line(retval, flags);
6702 return getreg_wrap_one_line(vim_strsave(retval), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006703 }
6704
6705 get_yank_register(regname, FALSE);
6706 if (y_current->y_array == NULL)
6707 return NULL;
6708
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006709 if (flags & GREG_LIST)
6710 {
6711 list_T *list = list_alloc();
6712 int error = FALSE;
6713
6714 if (list == NULL)
6715 return NULL;
6716 for (i = 0; i < y_current->y_size; ++i)
6717 if (list_append_string(list, y_current->y_array[i], -1) == FAIL)
6718 error = TRUE;
6719 if (error)
6720 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006721 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006722 return NULL;
6723 }
6724 return (char_u *)list;
6725 }
6726
Bram Moolenaar071d4272004-06-13 20:20:40 +00006727 /*
6728 * Compute length of resulting string.
6729 */
6730 len = 0;
6731 for (i = 0; i < y_current->y_size; ++i)
6732 {
6733 len += (long)STRLEN(y_current->y_array[i]);
6734 /*
6735 * Insert a newline between lines and after last line if
6736 * y_type is MLINE.
6737 */
6738 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6739 ++len;
6740 }
6741
6742 retval = lalloc(len + 1, TRUE);
6743
6744 /*
6745 * Copy the lines of the yank register into the string.
6746 */
6747 if (retval != NULL)
6748 {
6749 len = 0;
6750 for (i = 0; i < y_current->y_size; ++i)
6751 {
6752 STRCPY(retval + len, y_current->y_array[i]);
6753 len += (long)STRLEN(retval + len);
6754
6755 /*
6756 * Insert a NL between lines and after the last line if y_type is
6757 * MLINE.
6758 */
6759 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6760 retval[len++] = '\n';
6761 }
6762 retval[len] = NUL;
6763 }
6764
6765 return retval;
6766}
6767
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006768 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006769init_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006770 int name,
6771 yankreg_T **old_y_previous,
6772 yankreg_T **old_y_current,
6773 int must_append,
6774 int *yank_type UNUSED)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006775{
6776 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6777 {
6778 emsg_invreg(name);
6779 return FAIL;
6780 }
6781
6782 /* Don't want to change the current (unnamed) register */
6783 *old_y_previous = y_previous;
6784 *old_y_current = y_current;
6785
6786 get_yank_register(name, TRUE);
6787 if (!y_append && !must_append)
6788 free_yank_all();
6789 return OK;
6790}
6791
6792 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006793finish_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006794 int name,
6795 yankreg_T *old_y_previous,
6796 yankreg_T *old_y_current)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006797{
6798# ifdef FEAT_CLIPBOARD
6799 /* Send text of clipboard register to the clipboard. */
6800 may_set_selection();
6801# endif
6802
6803 /* ':let @" = "val"' should change the meaning of the "" register */
6804 if (name != '"')
6805 y_previous = old_y_previous;
6806 y_current = old_y_current;
6807}
6808
Bram Moolenaar071d4272004-06-13 20:20:40 +00006809/*
6810 * Store string "str" in register "name".
6811 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
6812 * If "must_append" is TRUE, always append to the register. Otherwise append
6813 * if "name" is an uppercase letter.
6814 * Note: "maxlen" and "must_append" don't work for the "/" register.
6815 * Careful: 'str' is modified, you may have to use a copy!
6816 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
6817 */
6818 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006819write_reg_contents(
6820 int name,
6821 char_u *str,
6822 int maxlen,
6823 int must_append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006824{
6825 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
6826}
6827
6828 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006829write_reg_contents_lst(
6830 int name,
6831 char_u **strings,
6832 int maxlen UNUSED,
6833 int must_append,
6834 int yank_type,
6835 long block_len)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006836{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006837 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006838
6839 if (name == '/'
6840#ifdef FEAT_EVAL
6841 || name == '='
6842#endif
6843 )
6844 {
6845 char_u *s;
6846
6847 if (strings[0] == NULL)
6848 s = (char_u *)"";
6849 else if (strings[1] != NULL)
6850 {
6851 EMSG(_("E883: search pattern and expression register may not "
6852 "contain two or more lines"));
6853 return;
6854 }
6855 else
6856 s = strings[0];
6857 write_reg_contents_ex(name, s, -1, must_append, yank_type, block_len);
6858 return;
6859 }
6860
6861 if (name == '_') /* black hole: nothing to do */
6862 return;
6863
6864 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
6865 &yank_type) == FAIL)
6866 return;
6867
6868 str_to_reg(y_current, yank_type, (char_u *) strings, -1, block_len, TRUE);
6869
6870 finish_write_reg(name, old_y_previous, old_y_current);
6871}
6872
6873 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006874write_reg_contents_ex(
6875 int name,
6876 char_u *str,
6877 int maxlen,
6878 int must_append,
6879 int yank_type,
6880 long block_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006881{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006882 yankreg_T *old_y_previous, *old_y_current;
6883 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006884
Bram Moolenaare7566042005-06-17 22:00:15 +00006885 if (maxlen >= 0)
6886 len = maxlen;
6887 else
6888 len = (long)STRLEN(str);
6889
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890 /* Special case: '/' search pattern */
6891 if (name == '/')
6892 {
6893 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
6894 return;
6895 }
6896
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01006897 if (name == '#')
6898 {
6899 buf_T *buf;
6900
6901 if (VIM_ISDIGIT(*str))
6902 {
6903 int num = atoi((char *)str);
6904
6905 buf = buflist_findnr(num);
6906 if (buf == NULL)
6907 EMSGN(_(e_nobufnr), (long)num);
6908 }
6909 else
6910 buf = buflist_findnr(buflist_findpat(str, str + STRLEN(str),
6911 TRUE, FALSE, FALSE));
6912 if (buf == NULL)
6913 return;
6914 curwin->w_alt_fnum = buf->b_fnum;
6915 return;
6916 }
6917
Bram Moolenaare7566042005-06-17 22:00:15 +00006918#ifdef FEAT_EVAL
6919 if (name == '=')
6920 {
6921 char_u *p, *s;
6922
6923 p = vim_strnsave(str, (int)len);
6924 if (p == NULL)
6925 return;
6926 if (must_append)
6927 {
6928 s = concat_str(get_expr_line_src(), p);
6929 vim_free(p);
6930 p = s;
Bram Moolenaare7566042005-06-17 22:00:15 +00006931 }
6932 set_expr_line(p);
6933 return;
6934 }
6935#endif
6936
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937 if (name == '_') /* black hole: nothing to do */
6938 return;
6939
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006940 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
6941 &yank_type) == FAIL)
6942 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006943
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006944 str_to_reg(y_current, yank_type, str, len, block_len, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006945
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006946 finish_write_reg(name, old_y_previous, old_y_current);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006947}
6948#endif /* FEAT_EVAL */
6949
6950#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6951/*
6952 * Put a string into a register. When the register is not empty, the string
6953 * is appended.
6954 */
6955 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006956str_to_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006957 yankreg_T *y_ptr, /* pointer to yank register */
6958 int yank_type, /* MCHAR, MLINE, MBLOCK, MAUTO */
6959 char_u *str, /* string to put in register */
6960 long len, /* length of string */
6961 long blocklen, /* width of Visual block */
6962 int str_list) /* TRUE if str is char_u ** */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006963{
Bram Moolenaard44347f2011-06-19 01:14:29 +02006964 int type; /* MCHAR, MLINE or MBLOCK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006965 int lnum;
6966 long start;
6967 long i;
6968 int extra;
6969 int newlines; /* number of lines added */
6970 int extraline = 0; /* extra line at the end */
6971 int append = FALSE; /* append to last line in register */
6972 char_u *s;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006973 char_u **ss;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974 char_u **pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975 long maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006976
Bram Moolenaarcde547a2009-11-17 11:43:06 +00006977 if (y_ptr->y_array == NULL) /* NULL means empty register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006978 y_ptr->y_size = 0;
6979
Bram Moolenaard44347f2011-06-19 01:14:29 +02006980 if (yank_type == MAUTO)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006981 type = ((str_list || (len > 0 && (str[len - 1] == NL
6982 || str[len - 1] == CAR)))
Bram Moolenaard44347f2011-06-19 01:14:29 +02006983 ? MLINE : MCHAR);
6984 else
6985 type = yank_type;
6986
Bram Moolenaar071d4272004-06-13 20:20:40 +00006987 /*
6988 * Count the number of lines within the string
6989 */
6990 newlines = 0;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006991 if (str_list)
6992 {
6993 for (ss = (char_u **) str; *ss != NULL; ++ss)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994 ++newlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006995 }
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006996 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006997 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006998 for (i = 0; i < len; i++)
6999 if (str[i] == '\n')
7000 ++newlines;
7001 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
7002 {
7003 extraline = 1;
7004 ++newlines; /* count extra newline at the end */
7005 }
7006 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
7007 {
7008 append = TRUE;
7009 --newlines; /* uncount newline when appending first line */
7010 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007011 }
7012
Bram Moolenaar659c94d2015-05-04 20:19:21 +02007013 /* Without any lines make the register empty. */
7014 if (y_ptr->y_size + newlines == 0)
7015 {
7016 vim_free(y_ptr->y_array);
7017 y_ptr->y_array = NULL;
7018 return;
7019 }
7020
Bram Moolenaar071d4272004-06-13 20:20:40 +00007021 /*
7022 * Allocate an array to hold the pointers to the new register lines.
7023 * If the register was not empty, move the existing lines to the new array.
7024 */
7025 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
7026 * sizeof(char_u *), TRUE);
7027 if (pp == NULL) /* out of memory */
7028 return;
7029 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
7030 pp[lnum] = y_ptr->y_array[lnum];
7031 vim_free(y_ptr->y_array);
7032 y_ptr->y_array = pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007033 maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007034
7035 /*
7036 * Find the end of each line and save it into the array.
7037 */
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007038 if (str_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007039 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007040 for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum)
7041 {
Bram Moolenaar121f9bd2014-04-29 15:55:43 +02007042 i = (long)STRLEN(*ss);
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007043 pp[lnum] = vim_strnsave(*ss, i);
7044 if (i > maxlen)
7045 maxlen = i;
7046 }
7047 }
7048 else
7049 {
7050 for (start = 0; start < len + extraline; start += i + 1)
7051 {
7052 for (i = start; i < len; ++i) /* find the end of the line */
7053 if (str[i] == '\n')
7054 break;
7055 i -= start; /* i is now length of line */
7056 if (i > maxlen)
7057 maxlen = i;
7058 if (append)
7059 {
7060 --lnum;
7061 extra = (int)STRLEN(y_ptr->y_array[lnum]);
7062 }
7063 else
7064 extra = 0;
7065 s = alloc((unsigned)(i + extra + 1));
7066 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007067 break;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007068 if (extra)
7069 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
7070 if (append)
7071 vim_free(y_ptr->y_array[lnum]);
7072 if (i)
7073 mch_memmove(s + extra, str + start, (size_t)i);
7074 extra += i;
7075 s[extra] = NUL;
7076 y_ptr->y_array[lnum++] = s;
7077 while (--extra >= 0)
7078 {
7079 if (*s == NUL)
7080 *s = '\n'; /* replace NUL with newline */
7081 ++s;
7082 }
7083 append = FALSE; /* only first line is appended */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007084 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085 }
7086 y_ptr->y_type = type;
7087 y_ptr->y_size = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007088 if (type == MBLOCK)
7089 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
7090 else
7091 y_ptr->y_width = 0;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007092#ifdef FEAT_VIMINFO
7093 y_ptr->y_time_set = vim_time();
7094#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095}
7096#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
7097
7098 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007099clear_oparg(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007100{
7101 vim_memset(oap, 0, sizeof(oparg_T));
7102}
7103
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007104static 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 +00007105
7106/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00007107 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108 *
7109 * "Words" are counted by looking for boundaries between non-space and
7110 * space characters. (it seems to produce results that match 'wc'.)
7111 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00007112 * Return value is byte count; word count for the line is added to "*wc".
7113 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007114 *
7115 * The function will only examine the first "limit" characters in the
7116 * line, stopping if it encounters an end-of-line (NUL byte). In that
7117 * case, eol_size will be added to the character count to account for
7118 * the size of the EOL character.
7119 */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007120 static varnumber_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01007121line_count_info(
7122 char_u *line,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007123 varnumber_T *wc,
7124 varnumber_T *cc,
7125 varnumber_T limit,
Bram Moolenaar9b578142016-01-30 19:39:49 +01007126 int eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007127{
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007128 varnumber_T i;
7129 varnumber_T words = 0;
7130 varnumber_T chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131 int is_word = 0;
7132
Bram Moolenaar88b1ba12012-06-29 13:34:19 +02007133 for (i = 0; i < limit && line[i] != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007134 {
7135 if (is_word)
7136 {
7137 if (vim_isspace(line[i]))
7138 {
7139 words++;
7140 is_word = 0;
7141 }
7142 }
7143 else if (!vim_isspace(line[i]))
7144 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007145 ++chars;
7146#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007147 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00007148#else
7149 ++i;
7150#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007151 }
7152
7153 if (is_word)
7154 words++;
7155 *wc += words;
7156
7157 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar1cb7e092011-08-10 12:11:01 +02007158 if (i < limit && line[i] == NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007159 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007160 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007161 chars += eol_size;
7162 }
7163 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007164 return i;
7165}
7166
7167/*
7168 * Give some info about the position of the cursor (for "g CTRL-G").
7169 * In Visual mode, give some info about the selected region. (In this case,
7170 * the *_count_cursor variables store running totals for the selection.)
Bram Moolenaared767a22016-01-03 22:49:16 +01007171 * When "dict" is not NULL store the info there instead of showing it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007172 */
7173 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007174cursor_pos_info(dict_T *dict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175{
7176 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007177 char_u buf1[50];
7178 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007179 linenr_T lnum;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007180 varnumber_T byte_count = 0;
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007181#ifdef FEAT_MBYTE
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007182 varnumber_T bom_count = 0;
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007183#endif
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007184 varnumber_T byte_count_cursor = 0;
7185 varnumber_T char_count = 0;
7186 varnumber_T char_count_cursor = 0;
7187 varnumber_T word_count = 0;
7188 varnumber_T word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007189 int eol_size;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007190 varnumber_T last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007191 long line_count_selected = 0;
7192 pos_T min_pos, max_pos;
7193 oparg_T oparg;
7194 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007195
7196 /*
7197 * Compute the length of the file in characters.
7198 */
7199 if (curbuf->b_ml.ml_flags & ML_EMPTY)
7200 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007201 if (dict == NULL)
7202 {
7203 MSG(_(no_lines_msg));
7204 return;
7205 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007206 }
7207 else
7208 {
7209 if (get_fileformat(curbuf) == EOL_DOS)
7210 eol_size = 2;
7211 else
7212 eol_size = 1;
7213
Bram Moolenaar071d4272004-06-13 20:20:40 +00007214 if (VIsual_active)
7215 {
7216 if (lt(VIsual, curwin->w_cursor))
7217 {
7218 min_pos = VIsual;
7219 max_pos = curwin->w_cursor;
7220 }
7221 else
7222 {
7223 min_pos = curwin->w_cursor;
7224 max_pos = VIsual;
7225 }
7226 if (*p_sel == 'e' && max_pos.col > 0)
7227 --max_pos.col;
7228
7229 if (VIsual_mode == Ctrl_V)
7230 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00007231#ifdef FEAT_LINEBREAK
7232 char_u * saved_sbr = p_sbr;
7233
7234 /* Make 'sbr' empty for a moment to get the correct size. */
7235 p_sbr = empty_option;
7236#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007237 oparg.is_VIsual = 1;
7238 oparg.block_mode = TRUE;
7239 oparg.op_type = OP_NOP;
7240 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007241 &oparg.start_vcol, &oparg.end_vcol);
Bram Moolenaar81d00072009-04-29 15:41:40 +00007242#ifdef FEAT_LINEBREAK
7243 p_sbr = saved_sbr;
7244#endif
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007245 if (curwin->w_curswant == MAXCOL)
7246 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247 /* Swap the start, end vcol if needed */
7248 if (oparg.end_vcol < oparg.start_vcol)
7249 {
7250 oparg.end_vcol += oparg.start_vcol;
7251 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
7252 oparg.end_vcol -= oparg.start_vcol;
7253 }
7254 }
7255 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
7256 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007257
7258 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
7259 {
7260 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007261 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007262 {
7263 ui_breakcheck();
7264 if (got_int)
7265 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007266 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007267 }
7268
Bram Moolenaar071d4272004-06-13 20:20:40 +00007269 /* Do extra processing for VIsual mode. */
7270 if (VIsual_active
7271 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
7272 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00007273 char_u *s = NULL;
7274 long len = 0L;
7275
Bram Moolenaar071d4272004-06-13 20:20:40 +00007276 switch (VIsual_mode)
7277 {
7278 case Ctrl_V:
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007279#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007280 virtual_op = virtual_active();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007281#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007282 block_prep(&oparg, &bd, lnum, 0);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007283#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007284 virtual_op = MAYBE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007285#endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00007286 s = bd.textstart;
7287 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007288 break;
7289 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00007290 s = ml_get(lnum);
7291 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007292 break;
7293 case 'v':
7294 {
7295 colnr_T start_col = (lnum == min_pos.lnum)
7296 ? min_pos.col : 0;
7297 colnr_T end_col = (lnum == max_pos.lnum)
7298 ? max_pos.col - start_col + 1 : MAXCOL;
7299
Bram Moolenaardef9e822004-12-31 20:58:58 +00007300 s = ml_get(lnum) + start_col;
7301 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007302 }
7303 break;
7304 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00007305 if (s != NULL)
7306 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00007307 byte_count_cursor += line_count_info(s, &word_count_cursor,
7308 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00007309 if (lnum == curbuf->b_ml.ml_line_count
7310 && !curbuf->b_p_eol
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007311 && (curbuf->b_p_bin || !curbuf->b_p_fixeol)
Bram Moolenaarec2dad62005-01-02 11:36:03 +00007312 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007313 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00007314 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007315 }
7316 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007317 {
7318 /* In non-visual mode, check for the line the cursor is on */
7319 if (lnum == curwin->w_cursor.lnum)
7320 {
7321 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007322 char_count_cursor += char_count;
7323 byte_count_cursor = byte_count +
7324 line_count_info(ml_get(lnum),
7325 &word_count_cursor, &char_count_cursor,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007326 (varnumber_T)(curwin->w_cursor.col + 1),
7327 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007328 }
7329 }
7330 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007331 byte_count += line_count_info(ml_get(lnum), &word_count,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007332 &char_count, (varnumber_T)MAXCOL,
7333 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007334 }
7335
7336 /* Correction for when last line doesn't have an EOL. */
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007337 if (!curbuf->b_p_eol && (curbuf->b_p_bin || !curbuf->b_p_fixeol))
Bram Moolenaar7c626922005-02-07 22:01:03 +00007338 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339
Bram Moolenaared767a22016-01-03 22:49:16 +01007340 if (dict == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007341 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007342 if (VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007343 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007344 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
7345 {
7346 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
7347 &max_pos.col);
7348 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
7349 (long)(oparg.end_vcol - oparg.start_vcol + 1));
7350 }
7351 else
7352 buf1[0] = NUL;
7353
7354 if (char_count_cursor == byte_count_cursor
7355 && char_count == byte_count)
7356 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007357 _("Selected %s%ld of %ld Lines; %lld of %lld Words; %lld of %lld Bytes"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007358 buf1, line_count_selected,
7359 (long)curbuf->b_ml.ml_line_count,
7360 word_count_cursor, word_count,
7361 byte_count_cursor, byte_count);
7362 else
7363 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007364 _("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 +01007365 buf1, line_count_selected,
7366 (long)curbuf->b_ml.ml_line_count,
7367 word_count_cursor, word_count,
7368 char_count_cursor, char_count,
7369 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007370 }
7371 else
Bram Moolenaared767a22016-01-03 22:49:16 +01007372 {
7373 p = ml_get_curline();
7374 validate_virtcol();
7375 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
7376 (int)curwin->w_virtcol + 1);
7377 col_print(buf2, sizeof(buf2), (int)STRLEN(p),
7378 linetabsize(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007379
Bram Moolenaared767a22016-01-03 22:49:16 +01007380 if (char_count_cursor == byte_count_cursor
7381 && char_count == byte_count)
7382 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007383 _("Col %s of %s; Line %ld of %ld; Word %lld of %lld; Byte %lld of %lld"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007384 (char *)buf1, (char *)buf2,
7385 (long)curwin->w_cursor.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007386 (long)curbuf->b_ml.ml_line_count,
7387 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00007388 byte_count_cursor, byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007389 else
7390 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007391 _("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 +01007392 (char *)buf1, (char *)buf2,
7393 (long)curwin->w_cursor.lnum,
Bram Moolenaar7c626922005-02-07 22:01:03 +00007394 (long)curbuf->b_ml.ml_line_count,
7395 word_count_cursor, word_count,
7396 char_count_cursor, char_count,
7397 byte_count_cursor, byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007398 }
7399 }
7400
Bram Moolenaared767a22016-01-03 22:49:16 +01007401#ifdef FEAT_MBYTE
7402 bom_count = bomb_size();
7403 if (bom_count > 0)
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007404 vim_snprintf((char *)IObuff + STRLEN(IObuff), IOSIZE,
7405 _("(+%ld for BOM)"), bom_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007406#endif
7407 if (dict == NULL)
7408 {
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007409 /* Don't shorten this message, the user asked for it. */
Bram Moolenaared767a22016-01-03 22:49:16 +01007410 p = p_shm;
7411 p_shm = (char_u *)"";
7412 msg(IObuff);
7413 p_shm = p;
7414 }
7415 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007416#if defined(FEAT_EVAL)
Bram Moolenaared767a22016-01-03 22:49:16 +01007417 if (dict != NULL)
7418 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007419 dict_add_nr_str(dict, "words", word_count, NULL);
7420 dict_add_nr_str(dict, "chars", char_count, NULL);
7421 dict_add_nr_str(dict, "bytes", byte_count
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007422# ifdef FEAT_MBYTE
7423 + bom_count
7424# endif
7425 , NULL);
7426 dict_add_nr_str(dict, VIsual_active ? "visual_bytes" : "cursor_bytes",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007427 byte_count_cursor, NULL);
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007428 dict_add_nr_str(dict, VIsual_active ? "visual_chars" : "cursor_chars",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007429 char_count_cursor, NULL);
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007430 dict_add_nr_str(dict, VIsual_active ? "visual_words" : "cursor_words",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007431 word_count_cursor, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007432 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007433#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007434}