blob: 0902b04797cf29697687b9e09262152b4b1ce9f1 [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 Moolenaarbaaa7e92016-01-29 22:47:03 +0100116static void block_prep(oparg_T *oap, struct block_def *, linenr_T, int);
117static int do_addsub(int op_type, pos_T *pos, int length, linenr_T Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +0200119static 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 +0000120#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100121static int ends_in_white(linenr_T lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122#ifdef FEAT_COMMENTS
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100123static int same_leader(linenr_T lnum, int, char_u *, int, char_u *);
124static int fmt_check_par(linenr_T, int *, char_u **, int do_comments);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125#else
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100126static int fmt_check_par(linenr_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127#endif
128
129/*
130 * The names of operators.
131 * IMPORTANT: Index must correspond with defines in vim.h!!!
132 * The third field indicates whether the operator always works on lines.
133 */
134static char opchars[][3] =
135{
136 {NUL, NUL, FALSE}, /* OP_NOP */
137 {'d', NUL, FALSE}, /* OP_DELETE */
138 {'y', NUL, FALSE}, /* OP_YANK */
139 {'c', NUL, FALSE}, /* OP_CHANGE */
140 {'<', NUL, TRUE}, /* OP_LSHIFT */
141 {'>', NUL, TRUE}, /* OP_RSHIFT */
142 {'!', NUL, TRUE}, /* OP_FILTER */
143 {'g', '~', FALSE}, /* OP_TILDE */
144 {'=', NUL, TRUE}, /* OP_INDENT */
145 {'g', 'q', TRUE}, /* OP_FORMAT */
146 {':', NUL, TRUE}, /* OP_COLON */
147 {'g', 'U', FALSE}, /* OP_UPPER */
148 {'g', 'u', FALSE}, /* OP_LOWER */
149 {'J', NUL, TRUE}, /* DO_JOIN */
150 {'g', 'J', TRUE}, /* DO_JOIN_NS */
151 {'g', '?', FALSE}, /* OP_ROT13 */
152 {'r', NUL, FALSE}, /* OP_REPLACE */
153 {'I', NUL, FALSE}, /* OP_INSERT */
154 {'A', NUL, FALSE}, /* OP_APPEND */
155 {'z', 'f', TRUE}, /* OP_FOLD */
156 {'z', 'o', TRUE}, /* OP_FOLDOPEN */
157 {'z', 'O', TRUE}, /* OP_FOLDOPENREC */
158 {'z', 'c', TRUE}, /* OP_FOLDCLOSE */
159 {'z', 'C', TRUE}, /* OP_FOLDCLOSEREC */
160 {'z', 'd', TRUE}, /* OP_FOLDDEL */
161 {'z', 'D', TRUE}, /* OP_FOLDDELREC */
162 {'g', 'w', TRUE}, /* OP_FORMAT2 */
Bram Moolenaar83c465c2005-12-16 21:53:56 +0000163 {'g', '@', FALSE}, /* OP_FUNCTION */
Bram Moolenaard79e5502016-01-10 22:13:02 +0100164 {Ctrl_A, NUL, FALSE}, /* OP_NR_ADD */
165 {Ctrl_X, NUL, FALSE}, /* OP_NR_SUB */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166};
167
168/*
169 * Translate a command name into an operator type.
170 * Must only be called with a valid operator name!
171 */
172 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100173get_op_type(int char1, int char2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174{
175 int i;
176
177 if (char1 == 'r') /* ignore second character */
178 return OP_REPLACE;
179 if (char1 == '~') /* when tilde is an operator */
180 return OP_TILDE;
Bram Moolenaard79e5502016-01-10 22:13:02 +0100181 if (char1 == 'g' && char2 == Ctrl_A) /* add */
182 return OP_NR_ADD;
183 if (char1 == 'g' && char2 == Ctrl_X) /* subtract */
184 return OP_NR_SUB;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185 for (i = 0; ; ++i)
Bram Moolenaar2efb3232017-12-19 12:27:23 +0100186 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187 if (opchars[i][0] == char1 && opchars[i][1] == char2)
188 break;
Bram Moolenaar2efb3232017-12-19 12:27:23 +0100189 if (i == (int)(sizeof(opchars) / sizeof(char [3]) - 1))
190 {
191 internal_error("get_op_type()");
192 break;
193 }
194 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195 return i;
196}
197
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198/*
199 * Return TRUE if operator "op" always works on whole lines.
200 */
201 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100202op_on_lines(int op)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203{
204 return opchars[op][2];
205}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206
207/*
208 * Get first operator command character.
209 * Returns 'g' or 'z' if there is another command character.
210 */
211 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100212get_op_char(int optype)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213{
214 return opchars[optype][0];
215}
216
217/*
218 * Get second operator command character.
219 */
220 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100221get_extra_op_char(int optype)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222{
223 return opchars[optype][1];
224}
225
226/*
227 * op_shift - handle a shift operation
228 */
229 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100230op_shift(oparg_T *oap, int curs_top, int amount)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231{
232 long i;
233 int first_char;
234 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 int block_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236
237 if (u_save((linenr_T)(oap->start.lnum - 1),
238 (linenr_T)(oap->end.lnum + 1)) == FAIL)
239 return;
240
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241 if (oap->block_mode)
242 block_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243
244 for (i = oap->line_count; --i >= 0; )
245 {
246 first_char = *ml_get_curline();
247 if (first_char == NUL) /* empty line */
248 curwin->w_cursor.col = 0;
249#ifdef FEAT_VISUALEXTRA
250 else if (oap->block_mode)
251 shift_block(oap, amount);
252#endif
253 else
254 /* Move the line right if it doesn't start with '#', 'smartindent'
255 * isn't set or 'cindent' isn't set or '#' isn't in 'cino'. */
256#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
257 if (first_char != '#' || !preprocs_left())
258#endif
259 {
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000260 shift_line(oap->op_type == OP_LSHIFT, p_sr, amount, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261 }
262 ++curwin->w_cursor.lnum;
263 }
264
265 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 if (oap->block_mode)
267 {
268 curwin->w_cursor.lnum = oap->start.lnum;
269 curwin->w_cursor.col = block_col;
270 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100271 else if (curs_top) /* put cursor on first line, for ">>" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272 {
273 curwin->w_cursor.lnum = oap->start.lnum;
274 beginline(BL_SOL | BL_FIX); /* shift_line() may have set cursor.col */
275 }
276 else
277 --curwin->w_cursor.lnum; /* put cursor on last line, for ":>" */
278
Bram Moolenaar54b2bfa2017-01-02 14:57:08 +0100279#ifdef FEAT_FOLDING
280 /* The cursor line is not in a closed fold */
281 foldOpenCursor();
282#endif
283
284
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285 if (oap->line_count > p_report)
286 {
287 if (oap->op_type == OP_RSHIFT)
288 s = (char_u *)">";
289 else
290 s = (char_u *)"<";
291 if (oap->line_count == 1)
292 {
293 if (amount == 1)
294 sprintf((char *)IObuff, _("1 line %sed 1 time"), s);
295 else
296 sprintf((char *)IObuff, _("1 line %sed %d times"), s, amount);
297 }
298 else
299 {
300 if (amount == 1)
301 sprintf((char *)IObuff, _("%ld lines %sed 1 time"),
302 oap->line_count, s);
303 else
304 sprintf((char *)IObuff, _("%ld lines %sed %d times"),
305 oap->line_count, s, amount);
306 }
307 msg(IObuff);
308 }
309
310 /*
311 * Set "'[" and "']" marks.
312 */
313 curbuf->b_op_start = oap->start;
314 curbuf->b_op_end.lnum = oap->end.lnum;
315 curbuf->b_op_end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
316 if (curbuf->b_op_end.col > 0)
317 --curbuf->b_op_end.col;
318}
319
320/*
321 * shift the current line one shiftwidth left (if left != 0) or right
322 * leaves cursor on first blank in the line
323 */
324 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100325shift_line(
326 int left,
327 int round,
328 int amount,
329 int call_changed_bytes) /* call changed_bytes() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330{
331 int count;
332 int i, j;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100333 int p_sw = (int)get_sw_value(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334
335 count = get_indent(); /* get current indent */
336
337 if (round) /* round off indent */
338 {
339 i = count / p_sw; /* number of p_sw rounded down */
340 j = count % p_sw; /* extra spaces */
341 if (j && left) /* first remove extra spaces */
342 --amount;
343 if (left)
344 {
345 i -= amount;
346 if (i < 0)
347 i = 0;
348 }
349 else
350 i += amount;
351 count = i * p_sw;
352 }
353 else /* original vi indent */
354 {
355 if (left)
356 {
357 count -= p_sw * amount;
358 if (count < 0)
359 count = 0;
360 }
361 else
362 count += p_sw * amount;
363 }
364
365 /* Set new indent */
366#ifdef FEAT_VREPLACE
367 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000368 change_indent(INDENT_SET, count, FALSE, NUL, call_changed_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369 else
370#endif
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000371 (void)set_indent(count, call_changed_bytes ? SIN_CHANGED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372}
373
374#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
375/*
376 * Shift one line of the current block one shiftwidth right or left.
377 * Leaves cursor on first character in block.
378 */
379 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100380shift_block(oparg_T *oap, int amount)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381{
382 int left = (oap->op_type == OP_LSHIFT);
383 int oldstate = State;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000384 int total;
385 char_u *newp, *oldp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 int oldcol = curwin->w_cursor.col;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100387 int p_sw = (int)get_sw_value(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 int p_ts = (int)curbuf->b_p_ts;
389 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390 int incr;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000391 colnr_T ws_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392 int i = 0, j = 0;
393 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394#ifdef FEAT_RIGHTLEFT
395 int old_p_ri = p_ri;
396
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200397 p_ri = 0; /* don't want revins in indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398#endif
399
400 State = INSERT; /* don't want REPLACE for State */
401 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
402 if (bd.is_short)
403 return;
404
405 /* total is number of screen columns to be inserted/removed */
Bram Moolenaarbae5a172017-08-06 15:42:06 +0200406 total = (int)((unsigned)amount * (unsigned)p_sw);
407 if ((total / p_sw) != amount)
408 return; /* multiplication overflow */
409
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 oldp = ml_get_curline();
411
412 if (!left)
413 {
414 /*
415 * 1. Get start vcol
416 * 2. Total ws vcols
417 * 3. Divvy into TABs & spp
418 * 4. Construct new string
419 */
420 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
421 ws_vcol = bd.start_vcol - bd.pre_whitesp;
422 if (bd.startspaces)
423 {
424#ifdef FEAT_MBYTE
425 if (has_mbyte)
Bram Moolenaar20b4f462016-03-05 17:25:39 +0100426 {
427 if ((*mb_ptr2len)(bd.textstart) == 1)
428 ++bd.textstart;
429 else
430 {
431 ws_vcol = 0;
432 bd.startspaces = 0;
433 }
434 }
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000435 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436#endif
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000437 ++bd.textstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 }
Bram Moolenaar1c465442017-03-12 20:10:05 +0100439 for ( ; VIM_ISWHITE(*bd.textstart); )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440 {
Bram Moolenaar597a4222014-06-25 14:39:50 +0200441 /* TODO: is passing bd.textstart for start of the line OK? */
442 incr = lbr_chartabsize_adv(bd.textstart, &bd.textstart,
443 (colnr_T)(bd.start_vcol));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444 total += incr;
445 bd.start_vcol += incr;
446 }
447 /* OK, now total=all the VWS reqd, and textstart points at the 1st
448 * non-ws char in the block. */
449 if (!curbuf->b_p_et)
450 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
451 if (i)
452 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
453 else
454 j = total;
455 /* if we're splitting a TAB, allow for it */
456 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
457 len = (int)STRLEN(bd.textstart) + 1;
458 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
459 if (newp == NULL)
460 return;
461 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
462 mch_memmove(newp, oldp, (size_t)bd.textcol);
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200463 vim_memset(newp + bd.textcol, TAB, (size_t)i);
464 vim_memset(newp + bd.textcol + i, ' ', (size_t)j);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465 /* the end */
466 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
467 }
468 else /* left */
469 {
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000470 colnr_T destination_col; /* column to which text in block will
471 be shifted */
472 char_u *verbatim_copy_end; /* end of the part of the line which is
473 copied verbatim */
474 colnr_T verbatim_copy_width;/* the (displayed) width of this part
475 of line */
476 unsigned fill; /* nr of spaces that replace a TAB */
477 unsigned new_line_len; /* the length of the line after the
478 block shift */
479 size_t block_space_width;
480 size_t shift_amount;
481 char_u *non_white = bd.textstart;
482 colnr_T non_white_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000484 /*
485 * Firstly, let's find the first non-whitespace character that is
486 * displayed after the block's start column and the character's column
487 * number. Also, let's calculate the width of all the whitespace
488 * characters that are displayed in the block and precede the searched
489 * non-whitespace character.
490 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000492 /* If "bd.startspaces" is set, "bd.textstart" points to the character,
493 * the part of which is displayed at the block's beginning. Let's start
494 * searching from the next character. */
495 if (bd.startspaces)
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100496 MB_PTR_ADV(non_white);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000497
498 /* The character's column is in "bd.start_vcol". */
499 non_white_col = bd.start_vcol;
500
Bram Moolenaar1c465442017-03-12 20:10:05 +0100501 while (VIM_ISWHITE(*non_white))
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000502 {
Bram Moolenaar597a4222014-06-25 14:39:50 +0200503 incr = lbr_chartabsize_adv(bd.textstart, &non_white, non_white_col);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000504 non_white_col += incr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 }
506
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000507 block_space_width = non_white_col - oap->start_vcol;
508 /* We will shift by "total" or "block_space_width", whichever is less.
509 */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000510 shift_amount = (block_space_width < (size_t)total
511 ? block_space_width : (size_t)total);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000512
513 /* The column to which we will shift the text. */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000514 destination_col = (colnr_T)(non_white_col - shift_amount);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000515
516 /* Now let's find out how much of the beginning of the line we can
517 * reuse without modification. */
518 verbatim_copy_end = bd.textstart;
519 verbatim_copy_width = bd.start_vcol;
520
521 /* If "bd.startspaces" is set, "bd.textstart" points to the character
522 * preceding the block. We have to subtract its width to obtain its
523 * column number. */
524 if (bd.startspaces)
525 verbatim_copy_width -= bd.start_char_vcols;
526 while (verbatim_copy_width < destination_col)
527 {
Bram Moolenaar597a4222014-06-25 14:39:50 +0200528 char_u *line = verbatim_copy_end;
529
530 /* TODO: is passing verbatim_copy_end for start of the line OK? */
531 incr = lbr_chartabsize(line, verbatim_copy_end,
532 verbatim_copy_width);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000533 if (verbatim_copy_width + incr > destination_col)
534 break;
535 verbatim_copy_width += incr;
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100536 MB_PTR_ADV(verbatim_copy_end);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000537 }
538
539 /* If "destination_col" is different from the width of the initial
540 * part of the line that will be copied, it means we encountered a tab
541 * character, which we will have to partly replace with spaces. */
542 fill = destination_col - verbatim_copy_width;
543
544 /* The replacement line will consist of:
545 * - the beginning of the original line up to "verbatim_copy_end",
546 * - "fill" number of spaces,
547 * - the rest of the line, pointed to by non_white. */
548 new_line_len = (unsigned)(verbatim_copy_end - oldp)
549 + fill
550 + (unsigned)STRLEN(non_white) + 1;
551
552 newp = alloc_check(new_line_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 if (newp == NULL)
554 return;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000555 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp));
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200556 vim_memset(newp + (verbatim_copy_end - oldp), ' ', (size_t)fill);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000557 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 }
559 /* replace the line */
560 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
561 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
562 State = oldstate;
563 curwin->w_cursor.col = oldcol;
564#ifdef FEAT_RIGHTLEFT
565 p_ri = old_p_ri;
566#endif
567}
568#endif
569
570#ifdef FEAT_VISUALEXTRA
571/*
572 * Insert string "s" (b_insert ? before : after) block :AKelly
573 * Caller must prepare for undo.
574 */
575 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100576block_insert(
577 oparg_T *oap,
578 char_u *s,
579 int b_insert,
580 struct block_def *bdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581{
582 int p_ts;
583 int count = 0; /* extra spaces to replace a cut TAB */
584 int spaces = 0; /* non-zero if cutting a TAB */
585 colnr_T offset; /* pointer along new line */
586 unsigned s_len; /* STRLEN(s) */
587 char_u *newp, *oldp; /* new, old lines */
588 linenr_T lnum; /* loop var */
589 int oldstate = State;
590
591 State = INSERT; /* don't want REPLACE for State */
592 s_len = (unsigned)STRLEN(s);
593
594 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
595 {
596 block_prep(oap, bdp, lnum, TRUE);
597 if (bdp->is_short && b_insert)
598 continue; /* OP_INSERT, line ends before block start */
599
600 oldp = ml_get(lnum);
601
602 if (b_insert)
603 {
604 p_ts = bdp->start_char_vcols;
605 spaces = bdp->startspaces;
606 if (spaces != 0)
607 count = p_ts - 1; /* we're cutting a TAB */
608 offset = bdp->textcol;
609 }
610 else /* append */
611 {
612 p_ts = bdp->end_char_vcols;
613 if (!bdp->is_short) /* spaces = padding after block */
614 {
615 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
616 if (spaces != 0)
617 count = p_ts - 1; /* we're cutting a TAB */
618 offset = bdp->textcol + bdp->textlen - (spaces != 0);
619 }
620 else /* spaces = padding to block edge */
621 {
622 /* if $ used, just append to EOL (ie spaces==0) */
623 if (!bdp->is_MAX)
624 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
625 count = spaces;
626 offset = bdp->textcol + bdp->textlen;
627 }
628 }
629
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200630#ifdef FEAT_MBYTE
631 if (has_mbyte && spaces > 0)
632 {
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100633 int off;
634
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200635 /* Avoid starting halfway a multi-byte character. */
636 if (b_insert)
637 {
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100638 off = (*mb_head_off)(oldp, oldp + offset + spaces);
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200639 }
640 else
641 {
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100642 off = (*mb_off_next)(oldp, oldp + offset);
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200643 offset += off;
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200644 }
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100645 spaces -= off;
646 count -= off;
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200647 }
648#endif
649
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
651 if (newp == NULL)
652 continue;
653
654 /* copy up to shifted part */
655 mch_memmove(newp, oldp, (size_t)(offset));
656 oldp += offset;
657
658 /* insert pre-padding */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200659 vim_memset(newp + offset, ' ', (size_t)spaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660
661 /* copy the new text */
662 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
663 offset += s_len;
664
665 if (spaces && !bdp->is_short)
666 {
667 /* insert post-padding */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200668 vim_memset(newp + offset + spaces, ' ', (size_t)(p_ts - spaces));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669 /* We're splitting a TAB, don't copy it. */
670 oldp++;
671 /* We allowed for that TAB, remember this now */
672 count++;
673 }
674
675 if (spaces > 0)
676 offset += count;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000677 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678
679 ml_replace(lnum, newp, FALSE);
680
681 if (lnum == oap->end.lnum)
682 {
683 /* Set "']" mark to the end of the block instead of the end of
684 * the insert in the first line. */
685 curbuf->b_op_end.lnum = oap->end.lnum;
686 curbuf->b_op_end.col = offset;
687 }
688 } /* for all lnum */
689
690 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
691
692 State = oldstate;
693}
694#endif
695
696#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
697/*
698 * op_reindent - handle reindenting a block of lines.
699 */
700 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100701op_reindent(oparg_T *oap, int (*how)(void))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702{
703 long i;
704 char_u *l;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200705 int amount;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 linenr_T first_changed = 0;
707 linenr_T last_changed = 0;
708 linenr_T start_lnum = curwin->w_cursor.lnum;
709
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000710 /* Don't even try when 'modifiable' is off. */
711 if (!curbuf->b_p_ma)
712 {
713 EMSG(_(e_modifiable));
714 return;
715 }
716
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 for (i = oap->line_count; --i >= 0 && !got_int; )
718 {
719 /* it's a slow thing to do, so give feedback so there's no worry that
720 * the computer's just hung. */
721
722 if (i > 1
723 && (i % 50 == 0 || i == oap->line_count - 1)
724 && oap->line_count > p_report)
725 smsg((char_u *)_("%ld lines to indent... "), i);
726
727 /*
728 * Be vi-compatible: For lisp indenting the first line is not
729 * indented, unless there is only one line.
730 */
731#ifdef FEAT_LISP
732 if (i != oap->line_count - 1 || oap->line_count == 1
733 || how != get_lisp_indent)
734#endif
735 {
736 l = skipwhite(ml_get_curline());
737 if (*l == NUL) /* empty or blank line */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200738 amount = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 else
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200740 amount = how(); /* get the indent for this line */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200742 if (amount >= 0 && set_indent(amount, SIN_UNDO))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 {
744 /* did change the indent, call changed_lines() later */
745 if (first_changed == 0)
746 first_changed = curwin->w_cursor.lnum;
747 last_changed = curwin->w_cursor.lnum;
748 }
749 }
750 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +0000751 curwin->w_cursor.col = 0; /* make sure it's valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 }
753
754 /* put cursor on first non-blank of indented line */
755 curwin->w_cursor.lnum = start_lnum;
756 beginline(BL_SOL | BL_FIX);
757
758 /* Mark changed lines so that they will be redrawn. When Visual
759 * highlighting was present, need to continue until the last line. When
760 * there is no change still need to remove the Visual highlighting. */
761 if (last_changed != 0)
762 changed_lines(first_changed, 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 oap->is_VIsual ? start_lnum + oap->line_count :
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 last_changed + 1, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 else if (oap->is_VIsual)
766 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767
768 if (oap->line_count > p_report)
769 {
770 i = oap->line_count - (i + 1);
771 if (i == 1)
772 MSG(_("1 line indented "));
773 else
774 smsg((char_u *)_("%ld lines indented "), i);
775 }
776 /* set '[ and '] marks */
777 curbuf->b_op_start = oap->start;
778 curbuf->b_op_end = oap->end;
779}
780#endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
781
782#if defined(FEAT_EVAL) || defined(PROTO)
783/*
784 * Keep the last expression line here, for repeating.
785 */
786static char_u *expr_line = NULL;
787
788/*
789 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
790 * Returns '=' when OK, NUL otherwise.
791 */
792 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100793get_expr_register(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794{
795 char_u *new_line;
796
797 new_line = getcmdline('=', 0L, 0);
798 if (new_line == NULL)
799 return NUL;
800 if (*new_line == NUL) /* use previous line */
801 vim_free(new_line);
802 else
803 set_expr_line(new_line);
804 return '=';
805}
806
807/*
808 * Set the expression for the '=' register.
809 * Argument must be an allocated string.
810 */
811 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100812set_expr_line(char_u *new_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813{
814 vim_free(expr_line);
815 expr_line = new_line;
816}
817
818/*
819 * Get the result of the '=' register expression.
820 * Returns a pointer to allocated memory, or NULL for failure.
821 */
822 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100823get_expr_line(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824{
825 char_u *expr_copy;
826 char_u *rv;
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000827 static int nested = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828
829 if (expr_line == NULL)
830 return NULL;
831
832 /* Make a copy of the expression, because evaluating it may cause it to be
833 * changed. */
834 expr_copy = vim_strsave(expr_line);
835 if (expr_copy == NULL)
836 return NULL;
837
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000838 /* When we are invoked recursively limit the evaluation to 10 levels.
839 * Then return the string as-is. */
840 if (nested >= 10)
841 return expr_copy;
842
843 ++nested;
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000844 rv = eval_to_string(expr_copy, NULL, TRUE);
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000845 --nested;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 vim_free(expr_copy);
847 return rv;
848}
Bram Moolenaarde934d72005-05-22 22:09:40 +0000849
850/*
851 * Get the '=' register expression itself, without evaluating it.
852 */
853 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100854get_expr_line_src(void)
Bram Moolenaarde934d72005-05-22 22:09:40 +0000855{
856 if (expr_line == NULL)
857 return NULL;
858 return vim_strsave(expr_line);
859}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860#endif /* FEAT_EVAL */
861
862/*
863 * Check if 'regname' is a valid name of a yank register.
864 * Note: There is no check for 0 (default register), caller should do this
865 */
866 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100867valid_yank_reg(
868 int regname,
869 int writing) /* if TRUE check for writable registers */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870{
871 if ( (regname > 0 && ASCII_ISALNUM(regname))
872 || (!writing && vim_strchr((char_u *)
873#ifdef FEAT_EVAL
Bram Moolenaar3b3a9492015-01-27 18:44:16 +0100874 "/.%:="
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875#else
Bram Moolenaar3b3a9492015-01-27 18:44:16 +0100876 "/.%:"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877#endif
878 , regname) != NULL)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +0100879 || regname == '#'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 || regname == '"'
881 || regname == '-'
882 || regname == '_'
883#ifdef FEAT_CLIPBOARD
884 || regname == '*'
885 || regname == '+'
886#endif
887#ifdef FEAT_DND
888 || (!writing && regname == '~')
889#endif
890 )
891 return TRUE;
892 return FALSE;
893}
894
895/*
896 * Set y_current and y_append, according to the value of "regname".
897 * Cannot handle the '_' register.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000898 * Must only be called with a valid register name!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 *
900 * If regname is 0 and writing, use register 0
901 * If regname is 0 and reading, use previous register
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100902 *
903 * Return TRUE when the register should be inserted literally (selection or
904 * clipboard).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 */
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100906 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100907get_yank_register(int regname, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908{
909 int i;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100910 int ret = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911
912 y_append = FALSE;
913 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
914 {
915 y_current = y_previous;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100916 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 }
918 i = regname;
919 if (VIM_ISDIGIT(i))
920 i -= '0';
921 else if (ASCII_ISLOWER(i))
922 i = CharOrdLow(i) + 10;
923 else if (ASCII_ISUPPER(i))
924 {
925 i = CharOrdUp(i) + 10;
926 y_append = TRUE;
927 }
928 else if (regname == '-')
929 i = DELETION_REGISTER;
930#ifdef FEAT_CLIPBOARD
931 /* When selection is not available, use register 0 instead of '*' */
932 else if (clip_star.available && regname == '*')
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100933 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 i = STAR_REGISTER;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100935 ret = TRUE;
936 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 /* When clipboard is not available, use register 0 instead of '+' */
938 else if (clip_plus.available && regname == '+')
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100939 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 i = PLUS_REGISTER;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100941 ret = TRUE;
942 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943#endif
944#ifdef FEAT_DND
945 else if (!writing && regname == '~')
946 i = TILDE_REGISTER;
947#endif
948 else /* not 0-9, a-z, A-Z or '-': use register 0 */
949 i = 0;
950 y_current = &(y_regs[i]);
951 if (writing) /* remember the register we write into for do_put() */
952 y_previous = y_current;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100953 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954}
955
Bram Moolenaar8299df92004-07-10 09:47:34 +0000956#if defined(FEAT_CLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957/*
958 * When "regname" is a clipboard register, obtain the selection. If it's not
959 * available return zero, otherwise return "regname".
960 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000961 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100962may_get_selection(int regname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963{
964 if (regname == '*')
965 {
966 if (!clip_star.available)
967 regname = 0;
968 else
969 clip_get_selection(&clip_star);
970 }
971 else if (regname == '+')
972 {
973 if (!clip_plus.available)
974 regname = 0;
975 else
976 clip_get_selection(&clip_plus);
977 }
978 return regname;
979}
980#endif
981
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982/*
983 * Obtain the contents of a "normal" register. The register is made empty.
984 * The returned pointer has allocated memory, use put_register() later.
985 */
986 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100987get_register(
988 int name,
989 int copy) /* make a copy, if FALSE make register empty. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +0200991 yankreg_T *reg;
992 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993
994#ifdef FEAT_CLIPBOARD
995 /* When Visual area changed, may have to update selection. Obtain the
996 * selection too. */
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000997 if (name == '*' && clip_star.available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200999 if (clip_isautosel_star())
1000 clip_update_selection(&clip_star);
1001 may_get_selection(name);
1002 }
1003 if (name == '+' && clip_plus.available)
1004 {
1005 if (clip_isautosel_plus())
1006 clip_update_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 may_get_selection(name);
1008 }
1009#endif
1010
1011 get_yank_register(name, 0);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001012 reg = (yankreg_T *)alloc((unsigned)sizeof(yankreg_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 if (reg != NULL)
1014 {
1015 *reg = *y_current;
1016 if (copy)
1017 {
1018 /* If we run out of memory some or all of the lines are empty. */
1019 if (reg->y_size == 0)
1020 reg->y_array = NULL;
1021 else
1022 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
1023 * reg->y_size));
1024 if (reg->y_array != NULL)
1025 {
1026 for (i = 0; i < reg->y_size; ++i)
1027 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
1028 }
1029 }
1030 else
1031 y_current->y_array = NULL;
1032 }
1033 return (void *)reg;
1034}
1035
1036/*
Bram Moolenaar0a307462007-12-01 20:13:05 +00001037 * Put "reg" into register "name". Free any previous contents and "reg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 */
1039 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001040put_register(int name, void *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041{
1042 get_yank_register(name, 0);
1043 free_yank_all();
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001044 *y_current = *(yankreg_T *)reg;
Bram Moolenaar0a307462007-12-01 20:13:05 +00001045 vim_free(reg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001047#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 /* Send text written to clipboard register to the clipboard. */
1049 may_set_selection();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001050#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001052
1053 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001054free_register(void *reg)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001055{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001056 yankreg_T tmp;
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001057
1058 tmp = *y_current;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001059 *y_current = *(yankreg_T *)reg;
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001060 free_yank_all();
1061 vim_free(reg);
1062 *y_current = tmp;
1063}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064
1065#if defined(FEAT_MOUSE) || defined(PROTO)
1066/*
1067 * return TRUE if the current yank register has type MLINE
1068 */
1069 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001070yank_register_mline(int regname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071{
1072 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1073 return FALSE;
1074 if (regname == '_') /* black hole is always empty */
1075 return FALSE;
1076 get_yank_register(regname, FALSE);
1077 return (y_current->y_type == MLINE);
1078}
1079#endif
1080
1081/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001082 * Start or stop recording into a yank register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 *
Bram Moolenaard55de222007-05-06 13:38:48 +00001084 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 */
1086 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001087do_record(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088{
Bram Moolenaard55de222007-05-06 13:38:48 +00001089 char_u *p;
1090 static int regname;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001091 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaard55de222007-05-06 13:38:48 +00001092 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093
1094 if (Recording == FALSE) /* start recording */
1095 {
Bram Moolenaar8c87a2b2018-04-10 13:15:47 +02001096 /* registers 0-9, a-z and " are allowed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1098 retval = FAIL;
1099 else
1100 {
Bram Moolenaara0ed84a2015-11-19 17:56:13 +01001101 Recording = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 showmode();
1103 regname = c;
1104 retval = OK;
1105 }
1106 }
1107 else /* stop recording */
1108 {
1109 /*
Bram Moolenaard55de222007-05-06 13:38:48 +00001110 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1111 * needs to be removed again to put it in a register. exec_reg then
1112 * adds the escaping back later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 */
1114 Recording = FALSE;
1115 MSG("");
1116 p = get_recorded();
1117 if (p == NULL)
1118 retval = FAIL;
1119 else
1120 {
Bram Moolenaar81b85872007-03-04 20:22:01 +00001121 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1122 vim_unescape_csi(p);
1123
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 /*
1125 * We don't want to change the default register here, so save and
1126 * restore the current register name.
1127 */
1128 old_y_previous = y_previous;
1129 old_y_current = y_current;
1130
1131 retval = stuff_yank(regname, p);
1132
1133 y_previous = old_y_previous;
1134 y_current = old_y_current;
1135 }
1136 }
1137 return retval;
1138}
1139
1140/*
1141 * Stuff string "p" into yank register "regname" as a single line (append if
1142 * uppercase). "p" must have been alloced.
1143 *
1144 * return FAIL for failure, OK otherwise
1145 */
1146 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001147stuff_yank(int regname, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148{
1149 char_u *lp;
1150 char_u **pp;
1151
1152 /* check for read-only register */
1153 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1154 {
1155 vim_free(p);
1156 return FAIL;
1157 }
1158 if (regname == '_') /* black hole: don't do anything */
1159 {
1160 vim_free(p);
1161 return OK;
1162 }
1163 get_yank_register(regname, TRUE);
1164 if (y_append && y_current->y_array != NULL)
1165 {
1166 pp = &(y_current->y_array[y_current->y_size - 1]);
1167 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1168 if (lp == NULL)
1169 {
1170 vim_free(p);
1171 return FAIL;
1172 }
1173 STRCPY(lp, *pp);
1174 STRCAT(lp, p);
1175 vim_free(p);
1176 vim_free(*pp);
1177 *pp = lp;
1178 }
1179 else
1180 {
1181 free_yank_all();
1182 if ((y_current->y_array =
1183 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1184 {
1185 vim_free(p);
1186 return FAIL;
1187 }
1188 y_current->y_array[0] = p;
1189 y_current->y_size = 1;
1190 y_current->y_type = MCHAR; /* used to be MLINE, why? */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001191#ifdef FEAT_VIMINFO
1192 y_current->y_time_set = vim_time();
1193#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 }
1195 return OK;
1196}
1197
Bram Moolenaar42b94362009-05-26 16:12:37 +00001198static int execreg_lastc = NUL;
1199
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200/*
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001201 * Execute a yank register: copy it into the stuff buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 *
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001203 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 */
1205 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001206do_execreg(
1207 int regname,
1208 int colon, /* insert ':' before each line */
1209 int addcr, /* always add '\n' to end of line */
1210 int silent) /* set "silent" flag in typeahead buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 long i;
1213 char_u *p;
1214 int retval = OK;
1215 int remap;
1216
1217 if (regname == '@') /* repeat previous one */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001218 {
Bram Moolenaar42b94362009-05-26 16:12:37 +00001219 if (execreg_lastc == NUL)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001220 {
1221 EMSG(_("E748: No previously used register"));
1222 return FAIL;
1223 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001224 regname = execreg_lastc;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001225 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 /* check for valid regname */
1227 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001228 {
1229 emsg_invreg(regname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 return FAIL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001231 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001232 execreg_lastc = regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233
1234#ifdef FEAT_CLIPBOARD
1235 regname = may_get_selection(regname);
1236#endif
1237
1238 if (regname == '_') /* black hole: don't stuff anything */
1239 return OK;
1240
1241#ifdef FEAT_CMDHIST
1242 if (regname == ':') /* use last command line */
1243 {
1244 if (last_cmdline == NULL)
1245 {
1246 EMSG(_(e_nolastcmd));
1247 return FAIL;
1248 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01001249 VIM_CLEAR(new_last_cmdline); /* don't keep the cmdline containing @: */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001250 /* Escape all control characters with a CTRL-V */
1251 p = vim_strsave_escaped_ext(last_cmdline,
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001252 (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 +00001253 if (p != NULL)
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001254 {
1255 /* When in Visual mode "'<,'>" will be prepended to the command.
1256 * Remove it when it's already there. */
1257 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001258 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001259 else
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001260 retval = put_in_typebuf(p, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001261 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001262 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 }
1264#endif
1265#ifdef FEAT_EVAL
1266 else if (regname == '=')
1267 {
1268 p = get_expr_line();
1269 if (p == NULL)
1270 return FAIL;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001271 retval = put_in_typebuf(p, TRUE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 vim_free(p);
1273 }
1274#endif
1275 else if (regname == '.') /* use last inserted text */
1276 {
1277 p = get_last_insert_save();
1278 if (p == NULL)
1279 {
1280 EMSG(_(e_noinstext));
1281 return FAIL;
1282 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001283 retval = put_in_typebuf(p, FALSE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 vim_free(p);
1285 }
1286 else
1287 {
1288 get_yank_register(regname, FALSE);
1289 if (y_current->y_array == NULL)
1290 return FAIL;
1291
1292 /* Disallow remaping for ":@r". */
1293 remap = colon ? REMAP_NONE : REMAP_YES;
1294
1295 /*
1296 * Insert lines into typeahead buffer, from last one to first one.
1297 */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001298 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 for (i = y_current->y_size; --i >= 0; )
1300 {
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001301 char_u *escaped;
1302
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 /* insert NL between lines and after last line if type is MLINE */
1304 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1305 || addcr)
1306 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001307 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 return FAIL;
1309 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001310 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1311 if (escaped == NULL)
1312 return FAIL;
1313 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1314 vim_free(escaped);
1315 if (retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 return FAIL;
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001317 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 == FAIL)
1319 return FAIL;
1320 }
1321 Exec_reg = TRUE; /* disable the 'q' command */
1322 }
1323 return retval;
1324}
1325
1326/*
1327 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1328 * used only after other typeahead has been processed.
1329 */
1330 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001331put_reedit_in_typebuf(int silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332{
1333 char_u buf[3];
1334
1335 if (restart_edit != NUL)
1336 {
1337 if (restart_edit == 'V')
1338 {
1339 buf[0] = 'g';
1340 buf[1] = 'R';
1341 buf[2] = NUL;
1342 }
1343 else
1344 {
1345 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1346 buf[1] = NUL;
1347 }
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001348 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 restart_edit = NUL;
1350 }
1351}
1352
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001353/*
1354 * Insert register contents "s" into the typeahead buffer, so that it will be
1355 * executed again.
1356 * When "esc" is TRUE it is to be taken literally: Escape CSI characters and
1357 * no remapping.
1358 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001360put_in_typebuf(
1361 char_u *s,
1362 int esc,
1363 int colon, /* add ':' before the line */
1364 int silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365{
1366 int retval = OK;
1367
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001368 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 if (colon)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001370 retval = ins_typebuf((char_u *)"\n", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 if (retval == OK)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001372 {
1373 char_u *p;
1374
1375 if (esc)
1376 p = vim_strsave_escape_csi(s);
1377 else
1378 p = s;
1379 if (p == NULL)
1380 retval = FAIL;
1381 else
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001382 retval = ins_typebuf(p, esc ? REMAP_NONE : REMAP_YES,
1383 0, TRUE, silent);
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001384 if (esc)
1385 vim_free(p);
1386 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 if (colon && retval == OK)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001388 retval = ins_typebuf((char_u *)":", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 return retval;
1390}
1391
1392/*
1393 * Insert a yank register: copy it into the Read buffer.
1394 * Used by CTRL-R command and middle mouse button in insert mode.
1395 *
1396 * return FAIL for failure, OK otherwise
1397 */
1398 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001399insert_reg(
1400 int regname,
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001401 int literally_arg) /* insert literally, not as if typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402{
1403 long i;
1404 int retval = OK;
1405 char_u *arg;
1406 int allocated;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001407 int literally = literally_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408
1409 /*
1410 * It is possible to get into an endless loop by having CTRL-R a in
1411 * register a and then, in insert mode, doing CTRL-R a.
1412 * If you hit CTRL-C, the loop will be broken here.
1413 */
1414 ui_breakcheck();
1415 if (got_int)
1416 return FAIL;
1417
1418 /* check for valid regname */
1419 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1420 return FAIL;
1421
1422#ifdef FEAT_CLIPBOARD
1423 regname = may_get_selection(regname);
1424#endif
1425
1426 if (regname == '.') /* insert last inserted text */
1427 retval = stuff_inserted(NUL, 1L, TRUE);
1428 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1429 {
1430 if (arg == NULL)
1431 return FAIL;
1432 stuffescaped(arg, literally);
1433 if (allocated)
1434 vim_free(arg);
1435 }
1436 else /* name or number register */
1437 {
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001438 if (get_yank_register(regname, FALSE))
1439 literally = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 if (y_current->y_array == NULL)
1441 retval = FAIL;
1442 else
1443 {
1444 for (i = 0; i < y_current->y_size; ++i)
1445 {
1446 stuffescaped(y_current->y_array[i], literally);
1447 /*
1448 * Insert a newline between lines and after last line if
1449 * y_type is MLINE.
1450 */
1451 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1452 stuffcharReadbuff('\n');
1453 }
1454 }
1455 }
1456
1457 return retval;
1458}
1459
1460/*
1461 * Stuff a string into the typeahead buffer, such that edit() will insert it
1462 * literally ("literally" TRUE) or interpret is as typed characters.
1463 */
1464 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001465stuffescaped(char_u *arg, int literally)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466{
1467 int c;
1468 char_u *start;
1469
1470 while (*arg != NUL)
1471 {
1472 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1473 * stuff K_SPECIAL to get the effect of a special key when "literally"
1474 * is TRUE. */
1475 start = arg;
1476 while ((*arg >= ' '
1477#ifndef EBCDIC
1478 && *arg < DEL /* EBCDIC: chars above space are normal */
1479#endif
1480 )
1481 || (*arg == K_SPECIAL && !literally))
1482 ++arg;
1483 if (arg > start)
1484 stuffReadbuffLen(start, (long)(arg - start));
1485
1486 /* stuff a single special character */
1487 if (*arg != NUL)
1488 {
1489#ifdef FEAT_MBYTE
1490 if (has_mbyte)
Bram Moolenaar3b1c4852010-07-31 17:59:29 +02001491 c = mb_cptr2char_adv(&arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 else
1493#endif
1494 c = *arg++;
1495 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1496 stuffcharReadbuff(Ctrl_V);
1497 stuffcharReadbuff(c);
1498 }
1499 }
1500}
1501
1502/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001503 * If "regname" is a special register, return TRUE and store a pointer to its
1504 * value in "argp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 */
Bram Moolenaar8299df92004-07-10 09:47:34 +00001506 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001507get_spec_reg(
1508 int regname,
1509 char_u **argp,
1510 int *allocated, /* return: TRUE when value was allocated */
1511 int errmsg) /* give error message when failing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512{
1513 int cnt;
1514
1515 *argp = NULL;
1516 *allocated = FALSE;
1517 switch (regname)
1518 {
1519 case '%': /* file name */
1520 if (errmsg)
1521 check_fname(); /* will give emsg if not set */
1522 *argp = curbuf->b_fname;
1523 return TRUE;
1524
1525 case '#': /* alternate file name */
1526 *argp = getaltfname(errmsg); /* may give emsg if not set */
1527 return TRUE;
1528
1529#ifdef FEAT_EVAL
1530 case '=': /* result of expression */
1531 *argp = get_expr_line();
1532 *allocated = TRUE;
1533 return TRUE;
1534#endif
1535
1536 case ':': /* last command line */
1537 if (last_cmdline == NULL && errmsg)
1538 EMSG(_(e_nolastcmd));
1539 *argp = last_cmdline;
1540 return TRUE;
1541
1542 case '/': /* last search-pattern */
1543 if (last_search_pat() == NULL && errmsg)
1544 EMSG(_(e_noprevre));
1545 *argp = last_search_pat();
1546 return TRUE;
1547
1548 case '.': /* last inserted text */
1549 *argp = get_last_insert_save();
1550 *allocated = TRUE;
1551 if (*argp == NULL && errmsg)
1552 EMSG(_(e_noinstext));
1553 return TRUE;
1554
1555#ifdef FEAT_SEARCHPATH
1556 case Ctrl_F: /* Filename under cursor */
1557 case Ctrl_P: /* Path under cursor, expand via "path" */
1558 if (!errmsg)
1559 return FALSE;
1560 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001561 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 *allocated = TRUE;
1563 return TRUE;
1564#endif
1565
1566 case Ctrl_W: /* word under cursor */
1567 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1568 if (!errmsg)
1569 return FALSE;
1570 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1571 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1572 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1573 *allocated = TRUE;
1574 return TRUE;
1575
1576 case '_': /* black hole: always empty */
1577 *argp = (char_u *)"";
1578 return TRUE;
1579 }
1580
1581 return FALSE;
1582}
1583
1584/*
Bram Moolenaar8299df92004-07-10 09:47:34 +00001585 * Paste a yank register into the command line.
1586 * Only for non-special registers.
1587 * Used by CTRL-R command in command-line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 * insert_reg() can't be used here, because special characters from the
1589 * register contents will be interpreted as commands.
1590 *
1591 * return FAIL for failure, OK otherwise
1592 */
1593 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001594cmdline_paste_reg(
1595 int regname,
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001596 int literally_arg, /* Insert text literally instead of "as typed" */
Bram Moolenaar9b578142016-01-30 19:39:49 +01001597 int remcr) /* don't add CR characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598{
1599 long i;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001600 int literally = literally_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001602 if (get_yank_register(regname, FALSE))
1603 literally = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 if (y_current->y_array == NULL)
1605 return FAIL;
1606
1607 for (i = 0; i < y_current->y_size; ++i)
1608 {
1609 cmdline_paste_str(y_current->y_array[i], literally);
1610
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001611 /* Insert ^M between lines and after last line if type is MLINE.
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01001612 * Don't do this when "remcr" is TRUE. */
1613 if ((y_current->y_type == MLINE || i < y_current->y_size - 1) && !remcr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 cmdline_paste_str((char_u *)"\r", literally);
1615
1616 /* Check for CTRL-C, in case someone tries to paste a few thousand
1617 * lines and gets bored. */
1618 ui_breakcheck();
1619 if (got_int)
1620 return FAIL;
1621 }
1622 return OK;
1623}
1624
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625#if defined(FEAT_CLIPBOARD) || defined(PROTO)
1626/*
1627 * Adjust the register name pointed to with "rp" for the clipboard being
1628 * used always and the clipboard being available.
1629 */
1630 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001631adjust_clip_reg(int *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632{
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001633 /* If no reg. specified, and "unnamed" or "unnamedplus" is in 'clipboard',
1634 * use '*' or '+' reg, respectively. "unnamedplus" prevails. */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001635 if (*rp == 0 && (clip_unnamed != 0 || clip_unnamed_saved != 0))
1636 {
1637 if (clip_unnamed != 0)
1638 *rp = ((clip_unnamed & CLIP_UNNAMED_PLUS) && clip_plus.available)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001639 ? '+' : '*';
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001640 else
1641 *rp = ((clip_unnamed_saved & CLIP_UNNAMED_PLUS) && clip_plus.available)
1642 ? '+' : '*';
1643 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 if (!clip_star.available && *rp == '*')
1645 *rp = 0;
1646 if (!clip_plus.available && *rp == '+')
1647 *rp = 0;
1648}
1649#endif
1650
1651/*
Bram Moolenaara1891842017-02-04 21:34:31 +01001652 * Shift the delete registers: "9 is cleared, "8 becomes "9, etc.
1653 */
1654 void
1655shift_delete_registers()
1656{
1657 int n;
1658
1659 y_current = &y_regs[9];
1660 free_yank_all(); /* free register nine */
1661 for (n = 9; n > 1; --n)
1662 y_regs[n] = y_regs[n - 1];
Bram Moolenaar18d90b92017-06-27 15:39:14 +02001663 y_current = &y_regs[1];
1664 if (!y_append)
1665 y_previous = y_current;
Bram Moolenaara1891842017-02-04 21:34:31 +01001666 y_regs[1].y_array = NULL; /* set register one to empty */
1667}
1668
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001669#if defined(FEAT_EVAL)
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001670 static void
1671yank_do_autocmd(oparg_T *oap, yankreg_T *reg)
1672{
1673 static int recursive = FALSE;
1674 dict_T *v_event;
1675 list_T *list;
1676 int n;
1677 char_u buf[NUMBUFLEN + 2];
1678 long reglen = 0;
1679
1680 if (recursive)
1681 return;
1682
1683 v_event = get_vim_var_dict(VV_EVENT);
1684
1685 list = list_alloc();
Bram Moolenaara0221df2018-02-11 15:07:22 +01001686 if (list == NULL)
1687 return;
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001688 for (n = 0; n < reg->y_size; n++)
1689 list_append_string(list, reg->y_array[n], -1);
1690 list->lv_lock = VAR_FIXED;
1691 dict_add_list(v_event, "regcontents", list);
1692
1693 buf[0] = (char_u)oap->regname;
1694 buf[1] = NUL;
1695 dict_add_nr_str(v_event, "regname", 0, buf);
1696
1697 buf[0] = get_op_char(oap->op_type);
1698 buf[1] = get_extra_op_char(oap->op_type);
1699 buf[2] = NUL;
1700 dict_add_nr_str(v_event, "operator", 0, buf);
1701
1702 buf[0] = NUL;
1703 buf[1] = NUL;
1704 switch (get_reg_type(oap->regname, &reglen))
1705 {
1706 case MLINE: buf[0] = 'V'; break;
1707 case MCHAR: buf[0] = 'v'; break;
1708 case MBLOCK:
1709 vim_snprintf((char *)buf, sizeof(buf), "%c%ld", Ctrl_V,
1710 reglen + 1);
1711 break;
1712 }
1713 dict_add_nr_str(v_event, "regtype", 0, buf);
1714
1715 /* Lock the dictionary and its keys */
1716 dict_set_items_ro(v_event);
1717
1718 recursive = TRUE;
1719 textlock++;
1720 apply_autocmds(EVENT_TEXTYANKPOST, NULL, NULL, FALSE, curbuf);
1721 textlock--;
1722 recursive = FALSE;
1723
1724 /* Empty the dictionary, v:event is still valid */
1725 dict_free_contents(v_event);
1726 hash_init(&v_event->dv_hashtab);
1727}
Bram Moolenaaree219b02017-12-17 14:55:01 +01001728#endif
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001729
Bram Moolenaara1891842017-02-04 21:34:31 +01001730/*
Bram Moolenaard04b7502010-07-08 22:27:55 +02001731 * Handle a delete operation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 *
Bram Moolenaard04b7502010-07-08 22:27:55 +02001733 * Return FAIL if undo failed, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 */
1735 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001736op_delete(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737{
1738 int n;
1739 linenr_T lnum;
1740 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 char_u *newp, *oldp;
1742 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1744 int did_yank = FALSE;
Bram Moolenaar7c821302012-09-05 14:18:45 +02001745 int orig_regname = oap->regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746
1747 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1748 return OK;
1749
1750 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1751 if (oap->empty)
1752 return u_save_cursor();
1753
1754 if (!curbuf->b_p_ma)
1755 {
1756 EMSG(_(e_modifiable));
1757 return FAIL;
1758 }
1759
1760#ifdef FEAT_CLIPBOARD
1761 adjust_clip_reg(&oap->regname);
1762#endif
1763
1764#ifdef FEAT_MBYTE
1765 if (has_mbyte)
1766 mb_adjust_opend(oap);
1767#endif
1768
Bram Moolenaard04b7502010-07-08 22:27:55 +02001769 /*
1770 * Imitate the strange Vi behaviour: If the delete spans more than one
1771 * line and motion_type == MCHAR and the result is a blank line, make the
1772 * delete linewise. Don't do this for the change command or Visual mode.
1773 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 if ( oap->motion_type == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001776 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 && oap->line_count > 1
Bram Moolenaar64a72302012-01-10 13:46:22 +01001778 && oap->motion_force == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 && oap->op_type == OP_DELETE)
1780 {
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001781 ptr = ml_get(oap->end.lnum) + oap->end.col;
1782 if (*ptr != NUL)
1783 ptr += oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 ptr = skipwhite(ptr);
1785 if (*ptr == NUL && inindent(0))
1786 oap->motion_type = MLINE;
1787 }
1788
Bram Moolenaard04b7502010-07-08 22:27:55 +02001789 /*
1790 * Check for trying to delete (e.g. "D") in an empty line.
1791 * Note: For the change operator it is ok.
1792 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 if ( oap->motion_type == MCHAR
1794 && oap->line_count == 1
1795 && oap->op_type == OP_DELETE
1796 && *ml_get(oap->start.lnum) == NUL)
1797 {
1798 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001799 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 * 'cpoptions' (Vi compatible).
1801 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001802#ifdef FEAT_VIRTUALEDIT
1803 if (virtual_op)
1804 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1805 * marks as if it happened. */
1806 goto setmarks;
1807#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1809 beep_flush();
1810 return OK;
1811 }
1812
Bram Moolenaard04b7502010-07-08 22:27:55 +02001813 /*
1814 * Do a yank of whatever we're about to delete.
1815 * If a yank register was specified, put the deleted text into that
1816 * register. For the black hole register '_' don't yank anything.
1817 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 if (oap->regname != '_')
1819 {
1820 if (oap->regname != 0)
1821 {
1822 /* check for read-only register */
1823 if (!valid_yank_reg(oap->regname, TRUE))
1824 {
1825 beep_flush();
1826 return OK;
1827 }
1828 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1829 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1830 did_yank = TRUE;
1831 }
1832
1833 /*
1834 * Put deleted text into register 1 and shift number registers if the
1835 * delete contains a line break, or when a regname has been specified.
Bram Moolenaar7c821302012-09-05 14:18:45 +02001836 * Use the register name from before adjust_clip_reg() may have
1837 * changed it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 */
Bram Moolenaar7c821302012-09-05 14:18:45 +02001839 if (orig_regname != 0 || oap->motion_type == MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 || oap->line_count > 1 || oap->use_reg_one)
1841 {
Bram Moolenaara1891842017-02-04 21:34:31 +01001842 shift_delete_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 if (op_yank(oap, TRUE, FALSE) == OK)
1844 did_yank = TRUE;
1845 }
1846
Bram Moolenaar84298db2012-04-20 13:46:08 +02001847 /* Yank into small delete register when no named register specified
1848 * and the delete is within one line. */
1849 if ((
1850#ifdef FEAT_CLIPBOARD
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001851 ((clip_unnamed & CLIP_UNNAMED) && oap->regname == '*') ||
1852 ((clip_unnamed & CLIP_UNNAMED_PLUS) && oap->regname == '+') ||
Bram Moolenaar84298db2012-04-20 13:46:08 +02001853#endif
1854 oap->regname == 0) && oap->motion_type != MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 && oap->line_count == 1)
1856 {
1857 oap->regname = '-';
1858 get_yank_register(oap->regname, TRUE);
1859 if (op_yank(oap, TRUE, FALSE) == OK)
1860 did_yank = TRUE;
1861 oap->regname = 0;
1862 }
1863
1864 /*
1865 * If there's too much stuff to fit in the yank register, then get a
1866 * confirmation before doing the delete. This is crude, but simple.
1867 * And it avoids doing a delete of something we can't put back if we
1868 * want.
1869 */
1870 if (!did_yank)
1871 {
1872 int msg_silent_save = msg_silent;
1873
1874 msg_silent = 0; /* must display the prompt */
1875 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1876 msg_silent = msg_silent_save;
1877 if (n != 'y')
1878 {
1879 EMSG(_(e_abort));
1880 return FAIL;
1881 }
1882 }
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001883
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001884#if defined(FEAT_EVAL)
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001885 if (did_yank && has_textyankpost())
1886 yank_do_autocmd(oap, y_current);
1887#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 }
1889
Bram Moolenaard04b7502010-07-08 22:27:55 +02001890 /*
1891 * block mode delete
1892 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 if (oap->block_mode)
1894 {
1895 if (u_save((linenr_T)(oap->start.lnum - 1),
1896 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1897 return FAIL;
1898
1899 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1900 {
1901 block_prep(oap, &bd, lnum, TRUE);
1902 if (bd.textlen == 0) /* nothing to delete */
1903 continue;
1904
1905 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1906 if (lnum == curwin->w_cursor.lnum)
1907 {
1908 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1909# ifdef FEAT_VIRTUALEDIT
1910 curwin->w_cursor.coladd = 0;
1911# endif
1912 }
1913
1914 /* n == number of chars deleted
1915 * If we delete a TAB, it may be replaced by several characters.
1916 * Thus the number of characters may increase!
1917 */
1918 n = bd.textlen - bd.startspaces - bd.endspaces;
1919 oldp = ml_get(lnum);
1920 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1921 if (newp == NULL)
1922 continue;
1923 /* copy up to deleted part */
1924 mch_memmove(newp, oldp, (size_t)bd.textcol);
1925 /* insert spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02001926 vim_memset(newp + bd.textcol, ' ',
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 (size_t)(bd.startspaces + bd.endspaces));
1928 /* copy the part after the deleted part */
1929 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001930 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 /* replace the line */
1932 ml_replace(lnum, newp, FALSE);
1933 }
1934
1935 check_cursor_col();
1936 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1937 oap->end.lnum + 1, 0L);
1938 oap->line_count = 0; /* no lines deleted */
1939 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001940 else if (oap->motion_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 {
1942 if (oap->op_type == OP_CHANGE)
1943 {
1944 /* Delete the lines except the first one. Temporarily move the
1945 * cursor to the next line. Save the current line number, if the
1946 * last line is deleted it may be changed.
1947 */
1948 if (oap->line_count > 1)
1949 {
1950 lnum = curwin->w_cursor.lnum;
1951 ++curwin->w_cursor.lnum;
1952 del_lines((long)(oap->line_count - 1), TRUE);
1953 curwin->w_cursor.lnum = lnum;
1954 }
1955 if (u_save_cursor() == FAIL)
1956 return FAIL;
1957 if (curbuf->b_p_ai) /* don't delete indent */
1958 {
1959 beginline(BL_WHITE); /* cursor on first non-white */
1960 did_ai = TRUE; /* delete the indent when ESC hit */
1961 ai_col = curwin->w_cursor.col;
1962 }
1963 else
1964 beginline(0); /* cursor in column 0 */
1965 truncate_line(FALSE); /* delete the rest of the line */
1966 /* leave cursor past last char in line */
1967 if (oap->line_count > 1)
1968 u_clearline(); /* "U" command not possible after "2cc" */
1969 }
1970 else
1971 {
1972 del_lines(oap->line_count, TRUE);
1973 beginline(BL_WHITE | BL_FIX);
1974 u_clearline(); /* "U" command not possible after "dd" */
1975 }
1976 }
1977 else
1978 {
1979#ifdef FEAT_VIRTUALEDIT
1980 if (virtual_op)
1981 {
1982 int endcol = 0;
1983
1984 /* For virtualedit: break the tabs that are partly included. */
1985 if (gchar_pos(&oap->start) == '\t')
1986 {
1987 if (u_save_cursor() == FAIL) /* save first line for undo */
1988 return FAIL;
1989 if (oap->line_count == 1)
1990 endcol = getviscol2(oap->end.col, oap->end.coladd);
1991 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1992 oap->start = curwin->w_cursor;
1993 if (oap->line_count == 1)
1994 {
1995 coladvance(endcol);
1996 oap->end.col = curwin->w_cursor.col;
1997 oap->end.coladd = curwin->w_cursor.coladd;
1998 curwin->w_cursor = oap->start;
1999 }
2000 }
2001
2002 /* Break a tab only when it's included in the area. */
2003 if (gchar_pos(&oap->end) == '\t'
2004 && (int)oap->end.coladd < oap->inclusive)
2005 {
2006 /* save last line for undo */
2007 if (u_save((linenr_T)(oap->end.lnum - 1),
2008 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2009 return FAIL;
2010 curwin->w_cursor = oap->end;
2011 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
2012 oap->end = curwin->w_cursor;
2013 curwin->w_cursor = oap->start;
2014 }
2015 }
2016#endif
2017
2018 if (oap->line_count == 1) /* delete characters within one line */
2019 {
2020 if (u_save_cursor() == FAIL) /* save line for undo */
2021 return FAIL;
2022
2023 /* if 'cpoptions' contains '$', display '$' at end of change */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002024 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 && oap->op_type == OP_CHANGE
2026 && oap->end.lnum == curwin->w_cursor.lnum
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002027 && !oap->is_VIsual)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 display_dollar(oap->end.col - !oap->inclusive);
2029
2030 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
2031
2032#ifdef FEAT_VIRTUALEDIT
2033 if (virtual_op)
2034 {
2035 /* fix up things for virtualedit-delete:
2036 * break the tabs which are going to get in our way
2037 */
2038 char_u *curline = ml_get_curline();
2039 int len = (int)STRLEN(curline);
2040
2041 if (oap->end.coladd != 0
2042 && (int)oap->end.col >= len - 1
2043 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
2044 n++;
2045 /* Delete at least one char (e.g, when on a control char). */
2046 if (n == 0 && oap->start.coladd != oap->end.coladd)
2047 n = 1;
2048
2049 /* When deleted a char in the line, reset coladd. */
2050 if (gchar_cursor() != NUL)
2051 curwin->w_cursor.coladd = 0;
2052 }
2053#endif
Bram Moolenaard009e862015-06-09 20:20:03 +02002054 (void)del_bytes((long)n, !virtual_op,
2055 oap->op_type == OP_DELETE && !oap->is_VIsual);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 }
2057 else /* delete characters between lines */
2058 {
2059 pos_T curpos;
2060
2061 /* save deleted and changed lines for undo */
2062 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
2063 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
2064 return FAIL;
2065
2066 truncate_line(TRUE); /* delete from cursor to end of line */
2067
2068 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
2069 ++curwin->w_cursor.lnum;
2070 del_lines((long)(oap->line_count - 2), FALSE);
2071
Bram Moolenaard009e862015-06-09 20:20:03 +02002072 /* delete from start of line until op_end */
Bram Moolenaar44286ca2011-07-15 17:51:34 +02002073 n = (oap->end.col + 1 - !oap->inclusive);
Bram Moolenaard009e862015-06-09 20:20:03 +02002074 curwin->w_cursor.col = 0;
2075 (void)del_bytes((long)n, !virtual_op,
2076 oap->op_type == OP_DELETE && !oap->is_VIsual);
2077 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
2078 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 }
2080 }
2081
2082 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
2083
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002084#ifdef FEAT_VIRTUALEDIT
2085setmarks:
2086#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 if (oap->block_mode)
2088 {
2089 curbuf->b_op_end.lnum = oap->end.lnum;
2090 curbuf->b_op_end.col = oap->start.col;
2091 }
2092 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 curbuf->b_op_end = oap->start;
2094 curbuf->b_op_start = oap->start;
2095
2096 return OK;
2097}
2098
2099#ifdef FEAT_MBYTE
2100/*
2101 * Adjust end of operating area for ending on a multi-byte character.
2102 * Used for deletion.
2103 */
2104 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002105mb_adjust_opend(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106{
2107 char_u *p;
2108
2109 if (oap->inclusive)
2110 {
2111 p = ml_get(oap->end.lnum);
2112 oap->end.col += mb_tail_off(p, p + oap->end.col);
2113 }
2114}
2115#endif
2116
2117#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2118/*
2119 * Replace a whole area with one character.
2120 */
2121 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002122op_replace(oparg_T *oap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123{
2124 int n, numc;
2125#ifdef FEAT_MBYTE
2126 int num_chars;
2127#endif
2128 char_u *newp, *oldp;
2129 size_t oldlen;
2130 struct block_def bd;
Bram Moolenaard9820532013-11-04 01:41:17 +01002131 char_u *after_p = NULL;
Bram Moolenaarf12519d2018-02-06 22:52:49 +01002132 int had_ctrl_v_cr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133
2134 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2135 return OK; /* nothing to do */
2136
Bram Moolenaarf12519d2018-02-06 22:52:49 +01002137 if (c == REPLACE_CR_NCHAR)
2138 {
2139 had_ctrl_v_cr = TRUE;
2140 c = CAR;
2141 }
2142 else if (c == REPLACE_NL_NCHAR)
2143 {
2144 had_ctrl_v_cr = TRUE;
2145 c = NL;
2146 }
Bram Moolenaard9820532013-11-04 01:41:17 +01002147
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148#ifdef FEAT_MBYTE
2149 if (has_mbyte)
2150 mb_adjust_opend(oap);
2151#endif
2152
2153 if (u_save((linenr_T)(oap->start.lnum - 1),
2154 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2155 return FAIL;
2156
2157 /*
2158 * block mode replace
2159 */
2160 if (oap->block_mode)
2161 {
2162 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2163 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2164 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002165 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2167 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2168 continue; /* nothing to replace */
2169
2170 /* n == number of extra chars required
2171 * If we split a TAB, it may be replaced by several characters.
2172 * Thus the number of characters may increase!
2173 */
2174#ifdef FEAT_VIRTUALEDIT
2175 /* If the range starts in virtual space, count the initial
2176 * coladd offset as part of "startspaces" */
2177 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2178 {
2179 pos_T vpos;
2180
Bram Moolenaara1381de2009-11-03 15:44:21 +00002181 vpos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 getvpos(&vpos, oap->start_vcol);
2183 bd.startspaces += vpos.coladd;
2184 n = bd.startspaces;
2185 }
2186 else
2187#endif
2188 /* allow for pre spaces */
2189 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2190
2191 /* allow for post spp */
2192 n += (bd.endspaces
2193#ifdef FEAT_VIRTUALEDIT
2194 && !bd.is_oneChar
2195#endif
2196 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2197 /* Figure out how many characters to replace. */
2198 numc = oap->end_vcol - oap->start_vcol + 1;
2199 if (bd.is_short && (!virtual_op || bd.is_MAX))
2200 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2201
2202#ifdef FEAT_MBYTE
2203 /* A double-wide character can be replaced only up to half the
2204 * times. */
2205 if ((*mb_char2cells)(c) > 1)
2206 {
2207 if ((numc & 1) && !bd.is_short)
2208 {
2209 ++bd.endspaces;
2210 ++n;
2211 }
2212 numc = numc / 2;
2213 }
2214
2215 /* Compute bytes needed, move character count to num_chars. */
2216 num_chars = numc;
2217 numc *= (*mb_char2len)(c);
2218#endif
2219 /* oldlen includes textlen, so don't double count */
2220 n += numc - bd.textlen;
2221
2222 oldp = ml_get_curline();
2223 oldlen = STRLEN(oldp);
2224 newp = alloc_check((unsigned)oldlen + 1 + n);
2225 if (newp == NULL)
2226 continue;
2227 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2228 /* copy up to deleted part */
2229 mch_memmove(newp, oldp, (size_t)bd.textcol);
2230 oldp += bd.textcol + bd.textlen;
2231 /* insert pre-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002232 vim_memset(newp + bd.textcol, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
Bram Moolenaarf12519d2018-02-06 22:52:49 +01002234 /* REPLACE_CR_NCHAR/REPLACE_NL_NCHAR is used for entering CR
2235 * literally. */
Bram Moolenaard9820532013-11-04 01:41:17 +01002236 if (had_ctrl_v_cr || (c != '\r' && c != '\n'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002238#ifdef FEAT_MBYTE
2239 if (has_mbyte)
2240 {
2241 n = (int)STRLEN(newp);
2242 while (--num_chars >= 0)
2243 n += (*mb_char2bytes)(c, newp + n);
2244 }
2245 else
2246#endif
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002247 vim_memset(newp + STRLEN(newp), c, (size_t)numc);
Bram Moolenaard9820532013-11-04 01:41:17 +01002248 if (!bd.is_short)
2249 {
2250 /* insert post-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002251 vim_memset(newp + STRLEN(newp), ' ', (size_t)bd.endspaces);
Bram Moolenaard9820532013-11-04 01:41:17 +01002252 /* copy the part after the changed part */
2253 STRMOVE(newp + STRLEN(newp), oldp);
2254 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 }
2256 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002258 /* Replacing with \r or \n means splitting the line. */
Bram Moolenaarefe06f42013-11-11 23:17:39 +01002259 after_p = alloc_check(
2260 (unsigned)(oldlen + 1 + n - STRLEN(newp)));
Bram Moolenaard9820532013-11-04 01:41:17 +01002261 if (after_p != NULL)
2262 STRMOVE(after_p, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 }
2264 /* replace the line */
2265 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
Bram Moolenaard9820532013-11-04 01:41:17 +01002266 if (after_p != NULL)
2267 {
2268 ml_append(curwin->w_cursor.lnum++, after_p, 0, FALSE);
2269 appended_lines_mark(curwin->w_cursor.lnum, 1L);
2270 oap->end.lnum++;
2271 vim_free(after_p);
2272 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 }
2274 }
2275 else
2276 {
2277 /*
2278 * MCHAR and MLINE motion replace.
2279 */
2280 if (oap->motion_type == MLINE)
2281 {
2282 oap->start.col = 0;
2283 curwin->w_cursor.col = 0;
2284 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2285 if (oap->end.col)
2286 --oap->end.col;
2287 }
2288 else if (!oap->inclusive)
2289 dec(&(oap->end));
2290
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002291 while (LTOREQ_POS(curwin->w_cursor, oap->end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 {
2293 n = gchar_cursor();
2294 if (n != NUL)
2295 {
2296#ifdef FEAT_MBYTE
2297 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2298 {
2299 /* This is slow, but it handles replacing a single-byte
2300 * with a multi-byte and the other way around. */
Bram Moolenaardb813952013-03-07 18:50:57 +01002301 if (curwin->w_cursor.lnum == oap->end.lnum)
2302 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 n = State;
2304 State = REPLACE;
2305 ins_char(c);
2306 State = n;
2307 /* Backup to the replaced character. */
2308 dec_cursor();
2309 }
2310 else
2311#endif
2312 {
2313#ifdef FEAT_VIRTUALEDIT
2314 if (n == TAB)
2315 {
2316 int end_vcol = 0;
2317
2318 if (curwin->w_cursor.lnum == oap->end.lnum)
2319 {
2320 /* oap->end has to be recalculated when
2321 * the tab breaks */
2322 end_vcol = getviscol2(oap->end.col,
2323 oap->end.coladd);
2324 }
2325 coladvance_force(getviscol());
2326 if (curwin->w_cursor.lnum == oap->end.lnum)
2327 getvpos(&oap->end, end_vcol);
2328 }
2329#endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002330 PCHAR(curwin->w_cursor, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 }
2332 }
2333#ifdef FEAT_VIRTUALEDIT
2334 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2335 {
2336 int virtcols = oap->end.coladd;
2337
2338 if (curwin->w_cursor.lnum == oap->start.lnum
2339 && oap->start.col == oap->end.col && oap->start.coladd)
2340 virtcols -= oap->start.coladd;
2341
2342 /* oap->end has been trimmed so it's effectively inclusive;
2343 * as a result an extra +1 must be counted so we don't
2344 * trample the NUL byte. */
2345 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2346 curwin->w_cursor.col -= (virtcols + 1);
2347 for (; virtcols >= 0; virtcols--)
2348 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002349 PCHAR(curwin->w_cursor, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 if (inc(&curwin->w_cursor) == -1)
2351 break;
2352 }
2353 }
2354#endif
2355
2356 /* Advance to next character, stop at the end of the file. */
2357 if (inc_cursor() == -1)
2358 break;
2359 }
2360 }
2361
2362 curwin->w_cursor = oap->start;
2363 check_cursor();
2364 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2365
2366 /* Set "'[" and "']" marks. */
2367 curbuf->b_op_start = oap->start;
2368 curbuf->b_op_end = oap->end;
2369
2370 return OK;
2371}
2372#endif
2373
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002374static int swapchars(int op_type, pos_T *pos, int length);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002375
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376/*
2377 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2378 */
2379 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002380op_tilde(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381{
2382 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 struct block_def bd;
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002384 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385
2386 if (u_save((linenr_T)(oap->start.lnum - 1),
2387 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2388 return;
2389
2390 pos = oap->start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 if (oap->block_mode) /* Visual block mode */
2392 {
2393 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2394 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002395 int one_change;
2396
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 block_prep(oap, &bd, pos.lnum, FALSE);
2398 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002399 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2400 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002401
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002402#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002403 if (netbeans_active() && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 {
2405 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2406
Bram Moolenaar009b2592004-10-24 19:18:58 +00002407 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2408 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002410 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002412#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 }
2414 if (did_change)
2415 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2416 }
2417 else /* not block mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 {
2419 if (oap->motion_type == MLINE)
2420 {
2421 oap->start.col = 0;
2422 pos.col = 0;
2423 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2424 if (oap->end.col)
2425 --oap->end.col;
2426 }
2427 else if (!oap->inclusive)
2428 dec(&(oap->end));
2429
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002430 if (pos.lnum == oap->end.lnum)
2431 did_change = swapchars(oap->op_type, &pos,
2432 oap->end.col - pos.col + 1);
2433 else
2434 for (;;)
2435 {
2436 did_change |= swapchars(oap->op_type, &pos,
2437 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2438 (int)STRLEN(ml_get_pos(&pos)));
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002439 if (LTOREQ_POS(oap->end, pos) || inc(&pos) == -1)
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002440 break;
2441 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 if (did_change)
2443 {
2444 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2445 0L);
2446#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002447 if (netbeans_active() && did_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 {
2449 char_u *ptr;
2450 int count;
2451
2452 pos = oap->start;
2453 while (pos.lnum < oap->end.lnum)
2454 {
2455 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002456 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002457 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002459 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 pos.col = 0;
2461 pos.lnum++;
2462 }
2463 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2464 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002465 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002467 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 }
2469#endif
2470 }
2471 }
2472
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 if (!did_change && oap->is_VIsual)
2474 /* No change: need to remove the Visual selection */
2475 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476
2477 /*
2478 * Set '[ and '] marks.
2479 */
2480 curbuf->b_op_start = oap->start;
2481 curbuf->b_op_end = oap->end;
2482
2483 if (oap->line_count > p_report)
2484 {
2485 if (oap->line_count == 1)
2486 MSG(_("1 line changed"));
2487 else
2488 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2489 }
2490}
2491
2492/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002493 * Invoke swapchar() on "length" bytes at position "pos".
2494 * "pos" is advanced to just after the changed characters.
2495 * "length" is rounded up to include the whole last multi-byte character.
2496 * Also works correctly when the number of bytes changes.
2497 * Returns TRUE if some character was changed.
2498 */
2499 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002500swapchars(int op_type, pos_T *pos, int length)
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002501{
2502 int todo;
2503 int did_change = 0;
2504
2505 for (todo = length; todo > 0; --todo)
2506 {
2507# ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002508 if (has_mbyte)
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002509 {
2510 int len = (*mb_ptr2len)(ml_get_pos(pos));
2511
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002512 /* we're counting bytes, not characters */
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002513 if (len > 0)
2514 todo -= len - 1;
2515 }
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002516# endif
2517 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002518 if (inc(pos) == -1) /* at end of file */
2519 break;
2520 }
2521 return did_change;
2522}
2523
2524/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525 * If op_type == OP_UPPER: make uppercase,
2526 * if op_type == OP_LOWER: make lowercase,
2527 * if op_type == OP_ROT13: do rot13 encoding,
2528 * else swap case of character at 'pos'
2529 * returns TRUE when something actually changed.
2530 */
2531 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002532swapchar(int op_type, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533{
2534 int c;
2535 int nc;
2536
2537 c = gchar_pos(pos);
2538
2539 /* Only do rot13 encoding for ASCII characters. */
2540 if (c >= 0x80 && op_type == OP_ROT13)
2541 return FALSE;
2542
2543#ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002544 if (op_type == OP_UPPER && c == 0xdf
2545 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002546 {
2547 pos_T sp = curwin->w_cursor;
2548
2549 /* Special handling of German sharp s: change to "SS". */
2550 curwin->w_cursor = *pos;
2551 del_char(FALSE);
2552 ins_char('S');
2553 ins_char('S');
2554 curwin->w_cursor = sp;
2555 inc(pos);
2556 }
2557
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2559 return FALSE;
2560#endif
2561 nc = c;
2562 if (MB_ISLOWER(c))
2563 {
2564 if (op_type == OP_ROT13)
2565 nc = ROT13(c, 'a');
2566 else if (op_type != OP_LOWER)
2567 nc = MB_TOUPPER(c);
2568 }
2569 else if (MB_ISUPPER(c))
2570 {
2571 if (op_type == OP_ROT13)
2572 nc = ROT13(c, 'A');
2573 else if (op_type != OP_UPPER)
2574 nc = MB_TOLOWER(c);
2575 }
2576 if (nc != c)
2577 {
2578#ifdef FEAT_MBYTE
2579 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2580 {
2581 pos_T sp = curwin->w_cursor;
2582
2583 curwin->w_cursor = *pos;
Bram Moolenaard1cb65e2010-08-01 14:22:48 +02002584 /* don't use del_char(), it also removes composing chars */
2585 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586 ins_char(nc);
2587 curwin->w_cursor = sp;
2588 }
2589 else
2590#endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002591 PCHAR(*pos, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 return TRUE;
2593 }
2594 return FALSE;
2595}
2596
2597#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2598/*
2599 * op_insert - Insert and append operators for Visual mode.
2600 */
2601 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002602op_insert(oparg_T *oap, long count1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603{
2604 long ins_len, pre_textlen = 0;
2605 char_u *firstline, *ins_text;
Bram Moolenaar2254a8a2017-09-03 14:03:43 +02002606 colnr_T ind_pre = 0, ind_post;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 struct block_def bd;
2608 int i;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002609 pos_T t1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610
2611 /* edit() changes this - record it for OP_APPEND */
2612 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2613
2614 /* vis block is still marked. Get rid of it now. */
2615 curwin->w_cursor.lnum = oap->start.lnum;
2616 update_screen(INVERTED);
2617
2618 if (oap->block_mode)
2619 {
2620#ifdef FEAT_VIRTUALEDIT
2621 /* When 'virtualedit' is used, need to insert the extra spaces before
2622 * doing block_prep(). When only "block" is used, virtual edit is
2623 * already disabled, but still need it when calling
2624 * coladvance_force(). */
2625 if (curwin->w_cursor.coladd > 0)
2626 {
2627 int old_ve_flags = ve_flags;
2628
2629 ve_flags = VE_ALL;
2630 if (u_save_cursor() == FAIL)
2631 return;
2632 coladvance_force(oap->op_type == OP_APPEND
2633 ? oap->end_vcol + 1 : getviscol());
2634 if (oap->op_type == OP_APPEND)
2635 --curwin->w_cursor.col;
2636 ve_flags = old_ve_flags;
2637 }
2638#endif
2639 /* Get the info about the block before entering the text */
2640 block_prep(oap, &bd, oap->start.lnum, TRUE);
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002641 /* Get indent information */
2642 ind_pre = (colnr_T)getwhitecols_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 firstline = ml_get(oap->start.lnum) + bd.textcol;
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002644
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 if (oap->op_type == OP_APPEND)
2646 firstline += bd.textlen;
2647 pre_textlen = (long)STRLEN(firstline);
2648 }
2649
2650 if (oap->op_type == OP_APPEND)
2651 {
2652 if (oap->block_mode
2653#ifdef FEAT_VIRTUALEDIT
2654 && curwin->w_cursor.coladd == 0
2655#endif
2656 )
2657 {
2658 /* Move the cursor to the character right of the block. */
2659 curwin->w_set_curswant = TRUE;
2660 while (*ml_get_cursor() != NUL
2661 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2662 ++curwin->w_cursor.col;
2663 if (bd.is_short && !bd.is_MAX)
2664 {
2665 /* First line was too short, make it longer and adjust the
2666 * values in "bd". */
2667 if (u_save_cursor() == FAIL)
2668 return;
2669 for (i = 0; i < bd.endspaces; ++i)
2670 ins_char(' ');
2671 bd.textlen += bd.endspaces;
2672 }
2673 }
2674 else
2675 {
2676 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002677 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678
2679 /* Works just like an 'i'nsert on the next character. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002680 if (!LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 && oap->start_vcol != oap->end_vcol)
2682 inc_cursor();
2683 }
2684 }
2685
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002686 t1 = oap->start;
Bram Moolenaar23fa81d2017-02-01 21:50:21 +01002687 (void)edit(NUL, FALSE, (linenr_T)count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002689 /* When a tab was inserted, and the characters in front of the tab
2690 * have been converted to a tab as well, the column of the cursor
2691 * might have actually been reduced, so need to adjust here. */
2692 if (t1.lnum == curbuf->b_op_start_orig.lnum
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002693 && LT_POS(curbuf->b_op_start_orig, t1))
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002694 oap->start = curbuf->b_op_start_orig;
2695
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002696 /* If user has moved off this line, we don't know what to do, so do
2697 * nothing.
2698 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2699 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 return;
2701
2702 if (oap->block_mode)
2703 {
2704 struct block_def bd2;
Bram Moolenaar8c87a2b2018-04-10 13:15:47 +02002705 int did_indent = FALSE;
Bram Moolenaar35e802e2018-04-30 17:21:03 +02002706 size_t len;
2707 int add;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708
Bram Moolenaar4ec86dd2017-09-02 23:28:54 +02002709 /* If indent kicked in, the firstline might have changed
2710 * but only do that, if the indent actually increased. */
2711 ind_post = (colnr_T)getwhitecols_curline();
2712 if (curbuf->b_op_start.col > ind_pre && ind_post > ind_pre)
2713 {
2714 bd.textcol += ind_post - ind_pre;
2715 bd.start_vcol += ind_post - ind_pre;
Bram Moolenaar8c87a2b2018-04-10 13:15:47 +02002716 did_indent = TRUE;
Bram Moolenaar4ec86dd2017-09-02 23:28:54 +02002717 }
2718
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002719 /* The user may have moved the cursor before inserting something, try
Bram Moolenaar8c87a2b2018-04-10 13:15:47 +02002720 * to adjust the block for that. But only do it, if the difference
2721 * does not come from indent kicking in. */
2722 if (oap->start.lnum == curbuf->b_op_start_orig.lnum
2723 && !bd.is_MAX && !did_indent)
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002724 {
2725 if (oap->op_type == OP_INSERT
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002726 && oap->start.col
2727#ifdef FEAT_VIRTUALEDIT
2728 + oap->start.coladd
2729#endif
2730 != curbuf->b_op_start_orig.col
2731#ifdef FEAT_VIRTUALEDIT
2732 + curbuf->b_op_start_orig.coladd
2733#endif
2734 )
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002735 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002736 int t = getviscol2(curbuf->b_op_start_orig.col,
2737 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002738 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002739 pre_textlen -= t - oap->start_vcol;
2740 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002741 }
2742 else if (oap->op_type == OP_APPEND
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002743 && oap->end.col
2744#ifdef FEAT_VIRTUALEDIT
2745 + oap->end.coladd
2746#endif
2747 >= curbuf->b_op_start_orig.col
2748#ifdef FEAT_VIRTUALEDIT
2749 + curbuf->b_op_start_orig.coladd
2750#endif
2751 )
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002752 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002753 int t = getviscol2(curbuf->b_op_start_orig.col,
2754 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002755 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002756 /* reset pre_textlen to the value of OP_INSERT */
2757 pre_textlen += bd.textlen;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002758 pre_textlen -= t - oap->start_vcol;
2759 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002760 oap->op_type = OP_INSERT;
2761 }
2762 }
2763
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 /*
2765 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002766 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767 * Don't do this when "$" used, end-of-line will have changed.
2768 */
2769 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2770 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2771 {
2772 if (oap->op_type == OP_APPEND)
2773 {
2774 pre_textlen += bd2.textlen - bd.textlen;
2775 if (bd2.endspaces)
2776 --bd2.textlen;
2777 }
2778 bd.textcol = bd2.textcol;
2779 bd.textlen = bd2.textlen;
2780 }
2781
2782 /*
2783 * Subsequent calls to ml_get() flush the firstline data - take a
2784 * copy of the required string.
2785 */
Bram Moolenaar35e802e2018-04-30 17:21:03 +02002786 firstline = ml_get(oap->start.lnum);
2787 len = STRLEN(firstline);
2788 add = bd.textcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 if (oap->op_type == OP_APPEND)
Bram Moolenaar35e802e2018-04-30 17:21:03 +02002790 add += bd.textlen;
2791 if ((size_t)add > len)
2792 firstline += len; // short line, point to the NUL
2793 else
2794 firstline += add;
Bram Moolenaar5e4b9e92012-03-23 14:16:23 +01002795 if (pre_textlen >= 0
2796 && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 {
2798 ins_text = vim_strnsave(firstline, (int)ins_len);
2799 if (ins_text != NULL)
2800 {
2801 /* block handled here */
2802 if (u_save(oap->start.lnum,
2803 (linenr_T)(oap->end.lnum + 1)) == OK)
2804 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2805 &bd);
2806
2807 curwin->w_cursor.col = oap->start.col;
2808 check_cursor();
2809 vim_free(ins_text);
2810 }
2811 }
2812 }
2813}
2814#endif
2815
2816/*
2817 * op_change - handle a change operation
2818 *
2819 * return TRUE if edit() returns because of a CTRL-O command
2820 */
2821 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002822op_change(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823{
2824 colnr_T l;
2825 int retval;
2826#ifdef FEAT_VISUALEXTRA
2827 long offset;
2828 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002829 long ins_len;
2830 long pre_textlen = 0;
2831 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 char_u *firstline;
2833 char_u *ins_text, *newp, *oldp;
2834 struct block_def bd;
2835#endif
2836
2837 l = oap->start.col;
2838 if (oap->motion_type == MLINE)
2839 {
2840 l = 0;
2841#ifdef FEAT_SMARTINDENT
2842 if (!p_paste && curbuf->b_p_si
2843# ifdef FEAT_CINDENT
2844 && !curbuf->b_p_cin
2845# endif
2846 )
2847 can_si = TRUE; /* It's like opening a new line, do si */
2848#endif
2849 }
2850
2851 /* First delete the text in the region. In an empty buffer only need to
2852 * save for undo */
2853 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2854 {
2855 if (u_save_cursor() == FAIL)
2856 return FALSE;
2857 }
2858 else if (op_delete(oap) == FAIL)
2859 return FALSE;
2860
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002861 if ((l > curwin->w_cursor.col) && !LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 && !virtual_op)
2863 inc_cursor();
2864
2865#ifdef FEAT_VISUALEXTRA
2866 /* check for still on same line (<CR> in inserted text meaningless) */
2867 /* skip blank lines too */
2868 if (oap->block_mode)
2869 {
2870# ifdef FEAT_VIRTUALEDIT
2871 /* Add spaces before getting the current line length. */
2872 if (virtual_op && (curwin->w_cursor.coladd > 0
2873 || gchar_cursor() == NUL))
2874 coladvance_force(getviscol());
2875# endif
Bram Moolenaar53241da2007-09-13 20:41:32 +00002876 firstline = ml_get(oap->start.lnum);
2877 pre_textlen = (long)STRLEN(firstline);
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002878 pre_indent = (long)getwhitecols(firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 bd.textcol = curwin->w_cursor.col;
2880 }
2881#endif
2882
2883#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2884 if (oap->motion_type == MLINE)
2885 fix_indent();
2886#endif
2887
2888 retval = edit(NUL, FALSE, (linenr_T)1);
2889
2890#ifdef FEAT_VISUALEXTRA
2891 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002892 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002894 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002896 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002898 /* Auto-indenting may have changed the indent. If the cursor was past
2899 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002901 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 {
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002903 long new_indent = (long)getwhitecols(firstline);
Bram Moolenaar53241da2007-09-13 20:41:32 +00002904
2905 pre_textlen += new_indent - pre_indent;
2906 bd.textcol += new_indent - pre_indent;
2907 }
2908
2909 ins_len = (long)STRLEN(firstline) - pre_textlen;
2910 if (ins_len > 0)
2911 {
2912 /* Subsequent calls to ml_get() flush the firstline data - take a
2913 * copy of the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2915 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002916 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2918 linenr++)
2919 {
2920 block_prep(oap, &bd, linenr, TRUE);
2921 if (!bd.is_short || virtual_op)
2922 {
2923# ifdef FEAT_VIRTUALEDIT
2924 pos_T vpos;
2925
2926 /* If the block starts in virtual space, count the
2927 * initial coladd offset as part of "startspaces" */
2928 if (bd.is_short)
2929 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002930 vpos.lnum = linenr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931 (void)getvpos(&vpos, oap->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 }
2933 else
2934 vpos.coladd = 0;
2935# endif
2936 oldp = ml_get(linenr);
2937 newp = alloc_check((unsigned)(STRLEN(oldp)
2938# ifdef FEAT_VIRTUALEDIT
2939 + vpos.coladd
2940# endif
2941 + ins_len + 1));
2942 if (newp == NULL)
2943 continue;
2944 /* copy up to block start */
2945 mch_memmove(newp, oldp, (size_t)bd.textcol);
2946 offset = bd.textcol;
2947# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002948 vim_memset(newp + offset, ' ', (size_t)vpos.coladd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 offset += vpos.coladd;
2950# endif
2951 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2952 offset += ins_len;
2953 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002954 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 ml_replace(linenr, newp, FALSE);
2956 }
2957 }
2958 check_cursor();
2959
2960 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2961 }
2962 vim_free(ins_text);
2963 }
2964 }
2965#endif
2966
2967 return retval;
2968}
2969
2970/*
2971 * set all the yank registers to empty (called from main())
2972 */
2973 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002974init_yank(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975{
2976 int i;
2977
2978 for (i = 0; i < NUM_REGISTERS; ++i)
2979 y_regs[i].y_array = NULL;
2980}
2981
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002982#if defined(EXITFREE) || defined(PROTO)
2983 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002984clear_registers(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002985{
2986 int i;
2987
2988 for (i = 0; i < NUM_REGISTERS; ++i)
2989 {
2990 y_current = &y_regs[i];
2991 if (y_current->y_array != NULL)
2992 free_yank_all();
2993 }
2994}
2995#endif
2996
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997/*
2998 * Free "n" lines from the current yank register.
2999 * Called for normal freeing and in case of error.
3000 */
3001 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003002free_yank(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003{
3004 if (y_current->y_array != NULL)
3005 {
3006 long i;
3007
3008 for (i = n; --i >= 0; )
3009 {
3010#ifdef AMIGA /* only for very slow machines */
3011 if ((i & 1023) == 1023) /* this may take a while */
3012 {
3013 /*
3014 * This message should never cause a hit-return message.
3015 * Overwrite this message with any next message.
3016 */
3017 ++no_wait_return;
3018 smsg((char_u *)_("freeing %ld lines"), i + 1);
3019 --no_wait_return;
3020 msg_didout = FALSE;
3021 msg_col = 0;
3022 }
3023#endif
3024 vim_free(y_current->y_array[i]);
3025 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01003026 VIM_CLEAR(y_current->y_array);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027#ifdef AMIGA
3028 if (n >= 1000)
3029 MSG("");
3030#endif
3031 }
3032}
3033
3034 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003035free_yank_all(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036{
3037 free_yank(y_current->y_size);
3038}
3039
3040/*
3041 * Yank the text between "oap->start" and "oap->end" into a yank register.
3042 * If we are to append (uppercase register), we first yank into a new yank
3043 * register and then concatenate the old and the new one (so we keep the old
3044 * one in case of out-of-memory).
3045 *
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02003046 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 */
3048 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003049op_yank(oparg_T *oap, int deleting, int mess)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050{
3051 long y_idx; /* index in y_array[] */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003052 yankreg_T *curr; /* copy of y_current */
3053 yankreg_T newreg; /* new yank register when appending */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 char_u **new_ptr;
3055 linenr_T lnum; /* current line number */
3056 long j;
3057 int yanktype = oap->motion_type;
3058 long yanklines = oap->line_count;
3059 linenr_T yankendlnum = oap->end.lnum;
3060 char_u *p;
3061 char_u *pnew;
3062 struct block_def bd;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003063#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003064 int did_star = FALSE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003065#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066
3067 /* check for read-only register */
3068 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
3069 {
3070 beep_flush();
3071 return FAIL;
3072 }
3073 if (oap->regname == '_') /* black hole: nothing to do */
3074 return OK;
3075
3076#ifdef FEAT_CLIPBOARD
3077 if (!clip_star.available && oap->regname == '*')
3078 oap->regname = 0;
3079 else if (!clip_plus.available && oap->regname == '+')
3080 oap->regname = 0;
3081#endif
3082
3083 if (!deleting) /* op_delete() already set y_current */
3084 get_yank_register(oap->regname, TRUE);
3085
3086 curr = y_current;
3087 /* append to existing contents */
3088 if (y_append && y_current->y_array != NULL)
3089 y_current = &newreg;
3090 else
3091 free_yank_all(); /* free previously yanked lines */
3092
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00003093 /*
3094 * If the cursor was in column 1 before and after the movement, and the
3095 * operator is not inclusive, the yank is always linewise.
3096 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097 if ( oap->motion_type == MCHAR
3098 && oap->start.col == 0
3099 && !oap->inclusive
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00003101 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102 && oap->end.col == 0
3103 && yanklines > 1)
3104 {
3105 yanktype = MLINE;
3106 --yankendlnum;
3107 --yanklines;
3108 }
3109
3110 y_current->y_size = yanklines;
3111 y_current->y_type = yanktype; /* set the yank register type */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 y_current->y_width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
3114 yanklines), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 if (y_current->y_array == NULL)
3116 {
3117 y_current = curr;
3118 return FAIL;
3119 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003120#ifdef FEAT_VIMINFO
3121 y_current->y_time_set = vim_time();
3122#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123
3124 y_idx = 0;
3125 lnum = oap->start.lnum;
3126
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 if (oap->block_mode)
3128 {
3129 /* Visual block mode */
3130 y_current->y_type = MBLOCK; /* set the yank register type */
3131 y_current->y_width = oap->end_vcol - oap->start_vcol;
3132
3133 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
3134 y_current->y_width--;
3135 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136
3137 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
3138 {
3139 switch (y_current->y_type)
3140 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 case MBLOCK:
3142 block_prep(oap, &bd, lnum, FALSE);
3143 if (yank_copy_line(&bd, y_idx) == FAIL)
3144 goto fail;
3145 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146
3147 case MLINE:
3148 if ((y_current->y_array[y_idx] =
3149 vim_strsave(ml_get(lnum))) == NULL)
3150 goto fail;
3151 break;
3152
3153 case MCHAR:
3154 {
3155 colnr_T startcol = 0, endcol = MAXCOL;
3156#ifdef FEAT_VIRTUALEDIT
3157 int is_oneChar = FALSE;
3158 colnr_T cs, ce;
3159#endif
3160 p = ml_get(lnum);
3161 bd.startspaces = 0;
3162 bd.endspaces = 0;
3163
3164 if (lnum == oap->start.lnum)
3165 {
3166 startcol = oap->start.col;
3167#ifdef FEAT_VIRTUALEDIT
3168 if (virtual_op)
3169 {
3170 getvcol(curwin, &oap->start, &cs, NULL, &ce);
3171 if (ce != cs && oap->start.coladd > 0)
3172 {
3173 /* Part of a tab selected -- but don't
3174 * double-count it. */
3175 bd.startspaces = (ce - cs + 1)
3176 - oap->start.coladd;
3177 startcol++;
3178 }
3179 }
3180#endif
3181 }
3182
3183 if (lnum == oap->end.lnum)
3184 {
3185 endcol = oap->end.col;
3186#ifdef FEAT_VIRTUALEDIT
3187 if (virtual_op)
3188 {
3189 getvcol(curwin, &oap->end, &cs, NULL, &ce);
3190 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
3191# ifdef FEAT_MBYTE
3192 /* Don't add space for double-wide
3193 * char; endcol will be on last byte
3194 * of multi-byte char. */
3195 && (*mb_head_off)(p, p + endcol) == 0
3196# endif
3197 ))
3198 {
3199 if (oap->start.lnum == oap->end.lnum
3200 && oap->start.col == oap->end.col)
3201 {
3202 /* Special case: inside a single char */
3203 is_oneChar = TRUE;
3204 bd.startspaces = oap->end.coladd
3205 - oap->start.coladd + oap->inclusive;
3206 endcol = startcol;
3207 }
3208 else
3209 {
3210 bd.endspaces = oap->end.coladd
3211 + oap->inclusive;
3212 endcol -= oap->inclusive;
3213 }
3214 }
3215 }
3216#endif
3217 }
Bram Moolenaar18e00d22012-05-18 12:49:40 +02003218 if (endcol == MAXCOL)
3219 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 if (startcol > endcol
3221#ifdef FEAT_VIRTUALEDIT
3222 || is_oneChar
3223#endif
3224 )
3225 bd.textlen = 0;
3226 else
3227 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228 bd.textlen = endcol - startcol + oap->inclusive;
3229 }
3230 bd.textstart = p + startcol;
3231 if (yank_copy_line(&bd, y_idx) == FAIL)
3232 goto fail;
3233 break;
3234 }
3235 /* NOTREACHED */
3236 }
3237 }
3238
3239 if (curr != y_current) /* append the new block to the old block */
3240 {
3241 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3242 (curr->y_size + y_current->y_size)), TRUE);
3243 if (new_ptr == NULL)
3244 goto fail;
3245 for (j = 0; j < curr->y_size; ++j)
3246 new_ptr[j] = curr->y_array[j];
3247 vim_free(curr->y_array);
3248 curr->y_array = new_ptr;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003249#ifdef FEAT_VIMINFO
3250 curr->y_time_set = vim_time();
3251#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252
3253 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3254 curr->y_type = MLINE;
3255
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003256 /* Concatenate the last line of the old block with the first line of
3257 * the new block, unless being Vi compatible. */
3258 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 {
3260 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3261 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3262 if (pnew == NULL)
3263 {
3264 y_idx = y_current->y_size - 1;
3265 goto fail;
3266 }
3267 STRCPY(pnew, curr->y_array[--j]);
3268 STRCAT(pnew, y_current->y_array[0]);
3269 vim_free(curr->y_array[j]);
3270 vim_free(y_current->y_array[0]);
3271 curr->y_array[j++] = pnew;
3272 y_idx = 1;
3273 }
3274 else
3275 y_idx = 0;
3276 while (y_idx < y_current->y_size)
3277 curr->y_array[j++] = y_current->y_array[y_idx++];
3278 curr->y_size = j;
3279 vim_free(y_current->y_array);
3280 y_current = curr;
3281 }
Bram Moolenaar7ec83432014-06-17 18:16:11 +02003282 if (curwin->w_p_rnu)
3283 redraw_later(SOME_VALID); /* cursor moved to start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 if (mess) /* Display message about yank? */
3285 {
3286 if (yanktype == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288 && yanklines == 1)
3289 yanklines = 0;
3290 /* Some versions of Vi use ">=" here, some don't... */
3291 if (yanklines > p_report)
3292 {
Bram Moolenaare45deb72017-07-16 17:56:16 +02003293 char namebuf[100];
3294
3295 if (oap->regname == NUL)
3296 *namebuf = NUL;
3297 else
3298 vim_snprintf(namebuf, sizeof(namebuf),
Bram Moolenaar60d0e972017-07-16 20:54:34 +02003299 _(" into \"%c"), oap->regname);
Bram Moolenaare45deb72017-07-16 17:56:16 +02003300
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 /* redisplay now, so message is not deleted */
3302 update_topline_redraw();
3303 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003304 {
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003305 if (oap->block_mode)
Bram Moolenaare45deb72017-07-16 17:56:16 +02003306 smsg((char_u *)_("block of 1 line yanked%s"), namebuf);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003307 else
Bram Moolenaare45deb72017-07-16 17:56:16 +02003308 smsg((char_u *)_("1 line yanked%s"), namebuf);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003309 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003310 else if (oap->block_mode)
Bram Moolenaare45deb72017-07-16 17:56:16 +02003311 smsg((char_u *)_("block of %ld lines yanked%s"),
3312 yanklines, namebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 else
Bram Moolenaare45deb72017-07-16 17:56:16 +02003314 smsg((char_u *)_("%ld lines yanked%s"), yanklines,
3315 namebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316 }
3317 }
3318
3319 /*
3320 * Set "'[" and "']" marks.
3321 */
3322 curbuf->b_op_start = oap->start;
3323 curbuf->b_op_end = oap->end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003324 if (yanktype == MLINE && !oap->block_mode)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003325 {
3326 curbuf->b_op_start.col = 0;
3327 curbuf->b_op_end.col = MAXCOL;
3328 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329
3330#ifdef FEAT_CLIPBOARD
3331 /*
3332 * If we were yanking to the '*' register, send result to clipboard.
3333 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3334 * to the '*' register.
3335 */
3336 if (clip_star.available
3337 && (curr == &(y_regs[STAR_REGISTER])
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003338 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003339 && ((clip_unnamed | clip_unnamed_saved) & CLIP_UNNAMED))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 {
3341 if (curr != &(y_regs[STAR_REGISTER]))
3342 /* Copy the text from register 0 to the clipboard register. */
3343 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3344
3345 clip_own_selection(&clip_star);
3346 clip_gen_set_selection(&clip_star);
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003347# ifdef FEAT_X11
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003348 did_star = TRUE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003349# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 }
3351
3352# ifdef FEAT_X11
3353 /*
3354 * If we were yanking to the '+' register, send result to selection.
3355 * Also copy to the '*' register, in case auto-select is off.
3356 */
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003357 if (clip_plus.available
3358 && (curr == &(y_regs[PLUS_REGISTER])
3359 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003360 && ((clip_unnamed | clip_unnamed_saved) &
3361 CLIP_UNNAMED_PLUS))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 {
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003363 if (curr != &(y_regs[PLUS_REGISTER]))
3364 /* Copy the text from register 0 to the clipboard register. */
3365 copy_yank_reg(&(y_regs[PLUS_REGISTER]));
3366
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 clip_own_selection(&clip_plus);
3368 clip_gen_set_selection(&clip_plus);
Bram Moolenaar8bfe07b2017-10-15 21:47:05 +02003369 if (!clip_isautosel_star() && !clip_isautosel_plus()
3370 && !did_star && curr == &(y_regs[PLUS_REGISTER]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 {
3372 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3373 clip_own_selection(&clip_star);
3374 clip_gen_set_selection(&clip_star);
3375 }
3376 }
3377# endif
3378#endif
3379
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003380#if defined(FEAT_EVAL)
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01003381 if (!deleting && has_textyankpost())
3382 yank_do_autocmd(oap, y_current);
3383#endif
3384
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 return OK;
3386
3387fail: /* free the allocated lines */
3388 free_yank(y_idx + 1);
3389 y_current = curr;
3390 return FAIL;
3391}
3392
3393 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003394yank_copy_line(struct block_def *bd, long y_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395{
3396 char_u *pnew;
3397
3398 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3399 == NULL)
3400 return FAIL;
3401 y_current->y_array[y_idx] = pnew;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003402 vim_memset(pnew, ' ', (size_t)bd->startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 pnew += bd->startspaces;
3404 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3405 pnew += bd->textlen;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003406 vim_memset(pnew, ' ', (size_t)bd->endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 pnew += bd->endspaces;
3408 *pnew = NUL;
3409 return OK;
3410}
3411
3412#ifdef FEAT_CLIPBOARD
3413/*
3414 * Make a copy of the y_current register to register "reg".
3415 */
3416 static void
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003417copy_yank_reg(yankreg_T *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003419 yankreg_T *curr = y_current;
3420 long j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421
3422 y_current = reg;
3423 free_yank_all();
3424 *y_current = *curr;
3425 y_current->y_array = (char_u **)lalloc_clear(
3426 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3427 if (y_current->y_array == NULL)
3428 y_current->y_size = 0;
3429 else
3430 for (j = 0; j < y_current->y_size; ++j)
3431 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3432 {
3433 free_yank(j);
3434 y_current->y_size = 0;
3435 break;
3436 }
3437 y_current = curr;
3438}
3439#endif
3440
3441/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003442 * Put contents of register "regname" into the text.
3443 * Caller must check "regname" to be valid!
3444 * "flags": PUT_FIXINDENT make indent look nice
3445 * PUT_CURSEND leave cursor after end of new text
3446 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 */
3448 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003449do_put(
3450 int regname,
3451 int dir, /* BACKWARD for 'P', FORWARD for 'p' */
3452 long count,
3453 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454{
3455 char_u *ptr;
3456 char_u *newp, *oldp;
3457 int yanklen;
3458 int totlen = 0; /* init for gcc */
3459 linenr_T lnum;
3460 colnr_T col;
3461 long i; /* index in y_array[] */
3462 int y_type;
3463 long y_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 int oldlen;
3465 long y_width = 0;
3466 colnr_T vcol;
3467 int delcount;
3468 int incr = 0;
3469 long j;
3470 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 char_u **y_array = NULL;
3472 long nr_lines = 0;
3473 pos_T new_cursor;
3474 int indent;
3475 int orig_indent = 0; /* init for gcc */
3476 int indent_diff = 0; /* init for gcc */
3477 int first_indent = TRUE;
3478 int lendiff = 0;
3479 pos_T old_pos;
3480 char_u *insert_string = NULL;
3481 int allocated = FALSE;
3482 long cnt;
3483
3484#ifdef FEAT_CLIPBOARD
3485 /* Adjust register name for "unnamed" in 'clipboard'. */
3486 adjust_clip_reg(&regname);
3487 (void)may_get_selection(regname);
3488#endif
3489
3490 if (flags & PUT_FIXINDENT)
3491 orig_indent = get_indent();
3492
3493 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3494 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3495
3496 /*
3497 * Using inserted text works differently, because the register includes
3498 * special characters (newlines, etc.).
3499 */
3500 if (regname == '.')
3501 {
Bram Moolenaarf8eb9c52017-01-02 17:31:24 +01003502 if (VIsual_active)
3503 stuffcharReadbuff(VIsual_mode);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3505 (count == -1 ? 'O' : 'i')), count, FALSE);
3506 /* Putting the text is done later, so can't really move the cursor to
3507 * the next character. Use "l" to simulate it. */
3508 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3509 stuffcharReadbuff('l');
3510 return;
3511 }
3512
3513 /*
3514 * For special registers '%' (file name), '#' (alternate file name) and
3515 * ':' (last command line), etc. we have to create a fake yank register.
3516 */
3517 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3518 {
3519 if (insert_string == NULL)
3520 return;
3521 }
3522
Bram Moolenaar27356ad2012-12-12 16:11:36 +01003523 /* Autocommands may be executed when saving lines for undo, which may make
3524 * y_array invalid. Start undo now to avoid that. */
3525 u_save(curwin->w_cursor.lnum, curwin->w_cursor.lnum + 1);
Bram Moolenaar27356ad2012-12-12 16:11:36 +01003526
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527 if (insert_string != NULL)
3528 {
3529 y_type = MCHAR;
3530#ifdef FEAT_EVAL
3531 if (regname == '=')
3532 {
3533 /* For the = register we need to split the string at NL
Bram Moolenaara554a192011-09-21 17:33:53 +02003534 * characters.
3535 * Loop twice: count the number of lines and save them. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536 for (;;)
3537 {
3538 y_size = 0;
3539 ptr = insert_string;
3540 while (ptr != NULL)
3541 {
3542 if (y_array != NULL)
3543 y_array[y_size] = ptr;
3544 ++y_size;
3545 ptr = vim_strchr(ptr, '\n');
3546 if (ptr != NULL)
3547 {
3548 if (y_array != NULL)
3549 *ptr = NUL;
3550 ++ptr;
Bram Moolenaara554a192011-09-21 17:33:53 +02003551 /* A trailing '\n' makes the register linewise. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 if (*ptr == NUL)
3553 {
3554 y_type = MLINE;
3555 break;
3556 }
3557 }
3558 }
3559 if (y_array != NULL)
3560 break;
3561 y_array = (char_u **)alloc((unsigned)
3562 (y_size * sizeof(char_u *)));
3563 if (y_array == NULL)
3564 goto end;
3565 }
3566 }
3567 else
3568#endif
3569 {
3570 y_size = 1; /* use fake one-line yank register */
3571 y_array = &insert_string;
3572 }
3573 }
3574 else
3575 {
3576 get_yank_register(regname, FALSE);
3577
3578 y_type = y_current->y_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579 y_width = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 y_size = y_current->y_size;
3581 y_array = y_current->y_array;
3582 }
3583
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 if (y_type == MLINE)
3585 {
3586 if (flags & PUT_LINE_SPLIT)
3587 {
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003588 char_u *p;
3589
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 /* "p" or "P" in Visual mode: split the lines to put the text in
3591 * between. */
3592 if (u_save_cursor() == FAIL)
3593 goto end;
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003594 p = ml_get_cursor();
3595 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003596 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003597 ptr = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 if (ptr == NULL)
3599 goto end;
3600 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3601 vim_free(ptr);
3602
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003603 oldp = ml_get_curline();
3604 p = oldp + curwin->w_cursor.col;
3605 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003606 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003607 ptr = vim_strnsave(oldp, p - oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 if (ptr == NULL)
3609 goto end;
3610 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3611 ++nr_lines;
3612 dir = FORWARD;
3613 }
3614 if (flags & PUT_LINE_FORWARD)
3615 {
3616 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003617 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 dir = FORWARD;
3619 }
3620 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3621 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3622 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623
3624 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3625 y_type = MLINE;
3626
3627 if (y_size == 0 || y_array == NULL)
3628 {
3629 EMSG2(_("E353: Nothing in register %s"),
3630 regname == 0 ? (char_u *)"\"" : transchar(regname));
3631 goto end;
3632 }
3633
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 if (y_type == MBLOCK)
3635 {
3636 lnum = curwin->w_cursor.lnum + y_size + 1;
3637 if (lnum > curbuf->b_ml.ml_line_count)
3638 lnum = curbuf->b_ml.ml_line_count + 1;
3639 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3640 goto end;
3641 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003642 else if (y_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 {
3644 lnum = curwin->w_cursor.lnum;
3645#ifdef FEAT_FOLDING
3646 /* Correct line number for closed fold. Don't move the cursor yet,
3647 * u_save() uses it. */
3648 if (dir == BACKWARD)
3649 (void)hasFolding(lnum, &lnum, NULL);
3650 else
3651 (void)hasFolding(lnum, NULL, &lnum);
3652#endif
3653 if (dir == FORWARD)
3654 ++lnum;
Bram Moolenaar10315b12013-06-29 17:19:28 +02003655 /* In an empty buffer the empty line is going to be replaced, include
3656 * it in the saved lines. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003657 if ((BUFEMPTY() ? u_save(0, 2) : u_save(lnum - 1, lnum)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 goto end;
3659#ifdef FEAT_FOLDING
3660 if (dir == FORWARD)
3661 curwin->w_cursor.lnum = lnum - 1;
3662 else
3663 curwin->w_cursor.lnum = lnum;
3664 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3665#endif
3666 }
3667 else if (u_save_cursor() == FAIL)
3668 goto end;
3669
3670 yanklen = (int)STRLEN(y_array[0]);
3671
3672#ifdef FEAT_VIRTUALEDIT
3673 if (ve_flags == VE_ALL && y_type == MCHAR)
3674 {
3675 if (gchar_cursor() == TAB)
3676 {
3677 /* Don't need to insert spaces when "p" on the last position of a
3678 * tab or "P" on the first position. */
3679 if (dir == FORWARD
3680 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3681 : curwin->w_cursor.coladd > 0)
3682 coladvance_force(getviscol());
3683 else
3684 curwin->w_cursor.coladd = 0;
3685 }
3686 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3687 coladvance_force(getviscol() + (dir == FORWARD));
3688 }
3689#endif
3690
3691 lnum = curwin->w_cursor.lnum;
3692 col = curwin->w_cursor.col;
3693
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 /*
3695 * Block mode
3696 */
3697 if (y_type == MBLOCK)
3698 {
Bram Moolenaarc8129962017-01-22 20:04:51 +01003699 int c = gchar_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 colnr_T endcol2 = 0;
3701
3702 if (dir == FORWARD && c != NUL)
3703 {
3704#ifdef FEAT_VIRTUALEDIT
3705 if (ve_flags == VE_ALL)
3706 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3707 else
3708#endif
3709 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3710
3711#ifdef FEAT_MBYTE
3712 if (has_mbyte)
3713 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003714 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 else
3716#endif
3717#ifdef FEAT_VIRTUALEDIT
3718 if (c != TAB || ve_flags != VE_ALL)
3719#endif
3720 ++curwin->w_cursor.col;
3721 ++col;
3722 }
3723 else
3724 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3725
3726#ifdef FEAT_VIRTUALEDIT
3727 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003728 if (ve_flags == VE_ALL
3729 && (curwin->w_cursor.coladd > 0
3730 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 {
3732 if (dir == FORWARD && c == NUL)
3733 ++col;
3734 if (dir != FORWARD && c != NUL)
3735 ++curwin->w_cursor.col;
3736 if (c == TAB)
3737 {
3738 if (dir == BACKWARD && curwin->w_cursor.col)
3739 curwin->w_cursor.col--;
3740 if (dir == FORWARD && col - 1 == endcol2)
3741 curwin->w_cursor.col++;
3742 }
3743 }
3744 curwin->w_cursor.coladd = 0;
3745#endif
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003746 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 for (i = 0; i < y_size; ++i)
3748 {
3749 int spaces;
3750 char shortline;
3751
3752 bd.startspaces = 0;
3753 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 vcol = 0;
3755 delcount = 0;
3756
3757 /* add a new line */
3758 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3759 {
3760 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3761 (colnr_T)1, FALSE) == FAIL)
3762 break;
3763 ++nr_lines;
3764 }
3765 /* get the old line and advance to the position to insert at */
3766 oldp = ml_get_curline();
3767 oldlen = (int)STRLEN(oldp);
3768 for (ptr = oldp; vcol < col && *ptr; )
3769 {
3770 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02003771 incr = lbr_chartabsize_adv(oldp, &ptr, (colnr_T)vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 vcol += incr;
3773 }
3774 bd.textcol = (colnr_T)(ptr - oldp);
3775
3776 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3777
3778 if (vcol < col) /* line too short, padd with spaces */
3779 bd.startspaces = col - vcol;
3780 else if (vcol > col)
3781 {
3782 bd.endspaces = vcol - col;
3783 bd.startspaces = incr - bd.endspaces;
3784 --bd.textcol;
3785 delcount = 1;
3786#ifdef FEAT_MBYTE
3787 if (has_mbyte)
3788 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3789#endif
3790 if (oldp[bd.textcol] != TAB)
3791 {
3792 /* Only a Tab can be split into spaces. Other
3793 * characters will have to be moved to after the
3794 * block, causing misalignment. */
3795 delcount = 0;
3796 bd.endspaces = 0;
3797 }
3798 }
3799
3800 yanklen = (int)STRLEN(y_array[i]);
3801
3802 /* calculate number of spaces required to fill right side of block*/
3803 spaces = y_width + 1;
3804 for (j = 0; j < yanklen; j++)
Bram Moolenaar597a4222014-06-25 14:39:50 +02003805 spaces -= lbr_chartabsize(NULL, &y_array[i][j], 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 if (spaces < 0)
3807 spaces = 0;
3808
3809 /* insert the new text */
3810 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3811 newp = alloc_check((unsigned)totlen + oldlen + 1);
3812 if (newp == NULL)
3813 break;
3814 /* copy part up to cursor to new line */
3815 ptr = newp;
3816 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3817 ptr += bd.textcol;
3818 /* may insert some spaces before the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003819 vim_memset(ptr, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 ptr += bd.startspaces;
3821 /* insert the new text */
3822 for (j = 0; j < count; ++j)
3823 {
3824 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3825 ptr += yanklen;
3826
3827 /* insert block's trailing spaces only if there's text behind */
3828 if ((j < count - 1 || !shortline) && spaces)
3829 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003830 vim_memset(ptr, ' ', (size_t)spaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 ptr += spaces;
3832 }
3833 }
3834 /* may insert some spaces after the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003835 vim_memset(ptr, ' ', (size_t)bd.endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 ptr += bd.endspaces;
3837 /* move the text after the cursor to the end of the line. */
3838 mch_memmove(ptr, oldp + bd.textcol + delcount,
3839 (size_t)(oldlen - bd.textcol - delcount + 1));
3840 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3841
3842 ++curwin->w_cursor.lnum;
3843 if (i == 0)
3844 curwin->w_cursor.col += bd.startspaces;
3845 }
3846
3847 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3848
3849 /* Set '[ mark. */
3850 curbuf->b_op_start = curwin->w_cursor;
3851 curbuf->b_op_start.lnum = lnum;
3852
3853 /* adjust '] mark */
3854 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3855 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003856# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003858# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 if (flags & PUT_CURSEND)
3860 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003861 colnr_T len;
3862
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863 curwin->w_cursor = curbuf->b_op_end;
3864 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003865
3866 /* in Insert mode we might be after the NUL, correct for that */
3867 len = (colnr_T)STRLEN(ml_get_curline());
3868 if (curwin->w_cursor.col > len)
3869 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870 }
3871 else
3872 curwin->w_cursor.lnum = lnum;
3873 }
3874 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 {
3876 /*
3877 * Character or Line mode
3878 */
3879 if (y_type == MCHAR)
3880 {
3881 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3882 * char */
3883 if (dir == FORWARD && gchar_cursor() != NUL)
3884 {
3885#ifdef FEAT_MBYTE
3886 if (has_mbyte)
3887 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003888 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889
3890 /* put it on the next of the multi-byte character. */
3891 col += bytelen;
3892 if (yanklen)
3893 {
3894 curwin->w_cursor.col += bytelen;
3895 curbuf->b_op_end.col += bytelen;
3896 }
3897 }
3898 else
3899#endif
3900 {
3901 ++col;
3902 if (yanklen)
3903 {
3904 ++curwin->w_cursor.col;
3905 ++curbuf->b_op_end.col;
3906 }
3907 }
3908 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 curbuf->b_op_start = curwin->w_cursor;
3910 }
3911 /*
3912 * Line mode: BACKWARD is the same as FORWARD on the previous line
3913 */
3914 else if (dir == BACKWARD)
3915 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003916 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917
3918 /*
3919 * simple case: insert into current line
3920 */
3921 if (y_type == MCHAR && y_size == 1)
3922 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003923 linenr_T end_lnum = 0; /* init for gcc */
Bram Moolenaar9957a102017-01-23 21:53:53 +01003924
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003925 if (VIsual_active)
3926 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003927 end_lnum = curbuf->b_visual.vi_end.lnum;
3928 if (end_lnum < curbuf->b_visual.vi_start.lnum)
3929 end_lnum = curbuf->b_visual.vi_start.lnum;
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003930 }
Bram Moolenaar9957a102017-01-23 21:53:53 +01003931
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003932 do {
3933 totlen = count * yanklen;
3934 if (totlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 {
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003936 oldp = ml_get(lnum);
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003937 if (VIsual_active && col > (int)STRLEN(oldp))
3938 {
3939 lnum++;
3940 continue;
3941 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003942 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3943 if (newp == NULL)
3944 goto end; /* alloc() gave an error message */
3945 mch_memmove(newp, oldp, (size_t)col);
3946 ptr = newp + col;
3947 for (i = 0; i < count; ++i)
3948 {
3949 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3950 ptr += yanklen;
3951 }
3952 STRMOVE(ptr, oldp + col);
3953 ml_replace(lnum, newp, FALSE);
3954 /* Place cursor on last putted char. */
3955 if (lnum == curwin->w_cursor.lnum)
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003956 {
3957 /* make sure curwin->w_virtcol is updated */
3958 changed_cline_bef_curs();
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003959 curwin->w_cursor.col += (colnr_T)(totlen - 1);
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003960 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003962 if (VIsual_active)
3963 lnum++;
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003964 } while (VIsual_active && lnum <= end_lnum);
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003965
Bram Moolenaar06e7ce12014-11-19 17:35:39 +01003966 if (VIsual_active) /* reset lnum to the last visual line */
3967 lnum--;
3968
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969 curbuf->b_op_end = curwin->w_cursor;
3970 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3971 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3972 ++curwin->w_cursor.col;
3973 changed_bytes(lnum, col);
3974 }
3975 else
3976 {
3977 /*
3978 * Insert at least one line. When y_type is MCHAR, break the first
3979 * line in two.
3980 */
3981 for (cnt = 1; cnt <= count; ++cnt)
3982 {
3983 i = 0;
3984 if (y_type == MCHAR)
3985 {
3986 /*
3987 * Split the current line in two at the insert position.
3988 * First insert y_array[size - 1] in front of second line.
3989 * Then append y_array[0] to first line.
3990 */
3991 lnum = new_cursor.lnum;
3992 ptr = ml_get(lnum) + col;
3993 totlen = (int)STRLEN(y_array[y_size - 1]);
3994 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3995 if (newp == NULL)
3996 goto error;
3997 STRCPY(newp, y_array[y_size - 1]);
3998 STRCAT(newp, ptr);
3999 /* insert second line */
4000 ml_append(lnum, newp, (colnr_T)0, FALSE);
4001 vim_free(newp);
4002
4003 oldp = ml_get(lnum);
4004 newp = alloc_check((unsigned)(col + yanklen + 1));
4005 if (newp == NULL)
4006 goto error;
4007 /* copy first part of line */
4008 mch_memmove(newp, oldp, (size_t)col);
4009 /* append to first line */
4010 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
4011 ml_replace(lnum, newp, FALSE);
4012
4013 curwin->w_cursor.lnum = lnum;
4014 i = 1;
4015 }
4016
4017 for (; i < y_size; ++i)
4018 {
4019 if ((y_type != MCHAR || i < y_size - 1)
4020 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
4021 == FAIL)
4022 goto error;
4023 lnum++;
4024 ++nr_lines;
4025 if (flags & PUT_FIXINDENT)
4026 {
4027 old_pos = curwin->w_cursor;
4028 curwin->w_cursor.lnum = lnum;
4029 ptr = ml_get(lnum);
4030 if (cnt == count && i == y_size - 1)
4031 lendiff = (int)STRLEN(ptr);
4032#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
4033 if (*ptr == '#' && preprocs_left())
4034 indent = 0; /* Leave # lines at start */
4035 else
4036#endif
4037 if (*ptr == NUL)
4038 indent = 0; /* Ignore empty lines */
4039 else if (first_indent)
4040 {
4041 indent_diff = orig_indent - get_indent();
4042 indent = orig_indent;
4043 first_indent = FALSE;
4044 }
4045 else if ((indent = get_indent() + indent_diff) < 0)
4046 indent = 0;
4047 (void)set_indent(indent, 0);
4048 curwin->w_cursor = old_pos;
4049 /* remember how many chars were removed */
4050 if (cnt == count && i == y_size - 1)
4051 lendiff -= (int)STRLEN(ml_get(lnum));
4052 }
4053 }
4054 }
4055
4056error:
4057 /* Adjust marks. */
4058 if (y_type == MLINE)
4059 {
4060 curbuf->b_op_start.col = 0;
4061 if (dir == FORWARD)
4062 curbuf->b_op_start.lnum++;
4063 }
Bram Moolenaar82faa252016-06-04 20:14:07 +02004064 /* Skip mark_adjust when adding lines after the last one, there
Bram Moolenaarf58a8472017-03-05 18:03:04 +01004065 * can't be marks there. But still needed in diff mode. */
Bram Moolenaar82faa252016-06-04 20:14:07 +02004066 if (curbuf->b_op_start.lnum + (y_type == MCHAR) - 1 + nr_lines
Bram Moolenaarf58a8472017-03-05 18:03:04 +01004067 < curbuf->b_ml.ml_line_count
4068#ifdef FEAT_DIFF
4069 || curwin->w_p_diff
4070#endif
4071 )
Bram Moolenaar82faa252016-06-04 20:14:07 +02004072 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 (linenr_T)MAXLNUM, nr_lines, 0L);
4074
4075 /* note changed text for displaying and folding */
4076 if (y_type == MCHAR)
4077 changed_lines(curwin->w_cursor.lnum, col,
4078 curwin->w_cursor.lnum + 1, nr_lines);
4079 else
4080 changed_lines(curbuf->b_op_start.lnum, 0,
4081 curbuf->b_op_start.lnum, nr_lines);
4082
4083 /* put '] mark at last inserted character */
4084 curbuf->b_op_end.lnum = lnum;
4085 /* correct length for change in indent */
4086 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
4087 if (col > 1)
4088 curbuf->b_op_end.col = col - 1;
4089 else
4090 curbuf->b_op_end.col = 0;
4091
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004092 if (flags & PUT_CURSLINE)
4093 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00004094 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004095 curwin->w_cursor.lnum = lnum;
4096 beginline(BL_WHITE | BL_FIX);
4097 }
4098 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 {
4100 /* put cursor after inserted text */
4101 if (y_type == MLINE)
4102 {
4103 if (lnum >= curbuf->b_ml.ml_line_count)
4104 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4105 else
4106 curwin->w_cursor.lnum = lnum + 1;
4107 curwin->w_cursor.col = 0;
4108 }
4109 else
4110 {
4111 curwin->w_cursor.lnum = lnum;
4112 curwin->w_cursor.col = col;
4113 }
4114 }
4115 else if (y_type == MLINE)
4116 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004117 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118 curwin->w_cursor.col = 0;
4119 if (dir == FORWARD)
4120 ++curwin->w_cursor.lnum;
4121 beginline(BL_WHITE | BL_FIX);
4122 }
4123 else /* put cursor on first inserted character */
4124 curwin->w_cursor = new_cursor;
4125 }
4126 }
4127
4128 msgmore(nr_lines);
4129 curwin->w_set_curswant = TRUE;
4130
4131end:
4132 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004134 if (regname == '=')
4135 vim_free(y_array);
4136
Bram Moolenaar033d8882013-09-25 23:24:57 +02004137 VIsual_active = FALSE;
Bram Moolenaar033d8882013-09-25 23:24:57 +02004138
Bram Moolenaar677ee682005-01-27 14:41:15 +00004139 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004140 adjust_cursor_eol();
4141}
4142
4143/*
4144 * When the cursor is on the NUL past the end of the line and it should not be
4145 * there move it left.
4146 */
4147 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004148adjust_cursor_eol(void)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004149{
4150 if (curwin->w_cursor.col > 0
4151 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00004152#ifdef FEAT_VIRTUALEDIT
4153 && (ve_flags & VE_ONEMORE) == 0
4154#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 && !(restart_edit || (State & INSERT)))
4156 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00004157 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00004158 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004159
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160#ifdef FEAT_VIRTUALEDIT
4161 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00004162 {
4163 colnr_T scol, ecol;
4164
4165 /* Coladd is set to the width of the last character. */
4166 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4167 curwin->w_cursor.coladd = ecol - scol + 1;
4168 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169#endif
4170 }
4171}
4172
4173#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
4174/*
4175 * Return TRUE if lines starting with '#' should be left aligned.
4176 */
4177 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004178preprocs_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179{
4180 return
4181# ifdef FEAT_SMARTINDENT
4182# ifdef FEAT_CINDENT
4183 (curbuf->b_p_si && !curbuf->b_p_cin) ||
4184# else
4185 curbuf->b_p_si
4186# endif
4187# endif
4188# ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004189 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE)
4190 && curbuf->b_ind_hash_comment == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191# endif
4192 ;
4193}
4194#endif
4195
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004196/*
4197 * Return the character name of the register with the given number.
4198 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004200get_register_name(int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201{
4202 if (num == -1)
4203 return '"';
4204 else if (num < 10)
4205 return num + '0';
4206 else if (num == DELETION_REGISTER)
4207 return '-';
4208#ifdef FEAT_CLIPBOARD
4209 else if (num == STAR_REGISTER)
4210 return '*';
4211 else if (num == PLUS_REGISTER)
4212 return '+';
4213#endif
4214 else
4215 {
4216#ifdef EBCDIC
4217 int i;
4218
4219 /* EBCDIC is really braindead ... */
4220 i = 'a' + (num - 10);
4221 if (i > 'i')
4222 i += 7;
4223 if (i > 'r')
4224 i += 8;
4225 return i;
4226#else
4227 return num + 'a' - 10;
4228#endif
4229 }
4230}
4231
4232/*
4233 * ":dis" and ":registers": Display the contents of the yank registers.
4234 */
4235 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004236ex_display(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004238 int i, n;
4239 long j;
4240 char_u *p;
4241 yankreg_T *yb;
4242 int name;
4243 int attr;
4244 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004245#ifdef FEAT_MBYTE
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004246 int clen;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004247#else
4248# define clen 1
4249#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250
4251 if (arg != NULL && *arg == NUL)
4252 arg = NULL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01004253 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254
4255 /* Highlight title */
4256 MSG_PUTS_TITLE(_("\n--- Registers ---"));
4257 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
4258 {
4259 name = get_register_name(i);
Bram Moolenaar0818b872010-11-24 14:28:58 +01004260 if (arg != NULL && vim_strchr(arg, name) == NULL
4261#ifdef ONE_CLIPBOARD
4262 /* Star register and plus register contain the same thing. */
4263 && (name != '*' || vim_strchr(arg, '+') == NULL)
4264#endif
4265 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266 continue; /* did not ask for this register */
4267
4268#ifdef FEAT_CLIPBOARD
4269 /* Adjust register name for "unnamed" in 'clipboard'.
4270 * When it's a clipboard register, fill it with the current contents
4271 * of the clipboard. */
4272 adjust_clip_reg(&name);
4273 (void)may_get_selection(name);
4274#endif
4275
4276 if (i == -1)
4277 {
4278 if (y_previous != NULL)
4279 yb = y_previous;
4280 else
4281 yb = &(y_regs[0]);
4282 }
4283 else
4284 yb = &(y_regs[i]);
Bram Moolenaarcde547a2009-11-17 11:43:06 +00004285
4286#ifdef FEAT_EVAL
4287 if (name == MB_TOLOWER(redir_reg)
4288 || (redir_reg == '"' && yb == y_previous))
4289 continue; /* do not list register being written to, the
4290 * pointer can be freed */
4291#endif
4292
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 if (yb->y_array != NULL)
4294 {
4295 msg_putchar('\n');
4296 msg_putchar('"');
4297 msg_putchar(name);
4298 MSG_PUTS(" ");
4299
4300 n = (int)Columns - 6;
4301 for (j = 0; j < yb->y_size && n > 1; ++j)
4302 {
4303 if (j)
4304 {
4305 MSG_PUTS_ATTR("^J", attr);
4306 n -= 2;
4307 }
4308 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4309 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004311 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004312#endif
4313 msg_outtrans_len(p, clen);
4314#ifdef FEAT_MBYTE
4315 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316#endif
4317 }
4318 }
4319 if (n > 1 && yb->y_type == MLINE)
4320 MSG_PUTS_ATTR("^J", attr);
4321 out_flush(); /* show one line at a time */
4322 }
4323 ui_breakcheck();
4324 }
4325
4326 /*
4327 * display last inserted text
4328 */
4329 if ((p = get_last_insert()) != NULL
4330 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4331 {
4332 MSG_PUTS("\n\". ");
4333 dis_msg(p, TRUE);
4334 }
4335
4336 /*
4337 * display last command line
4338 */
4339 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4340 && !got_int)
4341 {
4342 MSG_PUTS("\n\": ");
4343 dis_msg(last_cmdline, FALSE);
4344 }
4345
4346 /*
4347 * display current file name
4348 */
4349 if (curbuf->b_fname != NULL
4350 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4351 {
4352 MSG_PUTS("\n\"% ");
4353 dis_msg(curbuf->b_fname, FALSE);
4354 }
4355
4356 /*
4357 * display alternate file name
4358 */
4359 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4360 {
4361 char_u *fname;
4362 linenr_T dummy;
4363
4364 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4365 {
4366 MSG_PUTS("\n\"# ");
4367 dis_msg(fname, FALSE);
4368 }
4369 }
4370
4371 /*
4372 * display last search pattern
4373 */
4374 if (last_search_pat() != NULL
4375 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4376 {
4377 MSG_PUTS("\n\"/ ");
4378 dis_msg(last_search_pat(), FALSE);
4379 }
4380
4381#ifdef FEAT_EVAL
4382 /*
4383 * display last used expression
4384 */
4385 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4386 && !got_int)
4387 {
4388 MSG_PUTS("\n\"= ");
4389 dis_msg(expr_line, FALSE);
4390 }
4391#endif
4392}
4393
4394/*
4395 * display a string for do_dis()
4396 * truncate at end of screen line
4397 */
4398 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004399dis_msg(
4400 char_u *p,
4401 int skip_esc) /* if TRUE, ignore trailing ESC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402{
4403 int n;
4404#ifdef FEAT_MBYTE
4405 int l;
4406#endif
4407
4408 n = (int)Columns - 6;
4409 while (*p != NUL
4410 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4411 && (n -= ptr2cells(p)) >= 0)
4412 {
4413#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004414 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 {
4416 msg_outtrans_len(p, l);
4417 p += l;
4418 }
4419 else
4420#endif
4421 msg_outtrans_len(p++, 1);
4422 }
4423 ui_breakcheck();
4424}
4425
Bram Moolenaar81340392012-06-06 16:12:59 +02004426#if defined(FEAT_COMMENTS) || defined(PROTO)
4427/*
4428 * If "process" is TRUE and the line begins with a comment leader (possibly
4429 * after some white space), return a pointer to the text after it. Put a boolean
4430 * value indicating whether the line ends with an unclosed comment in
4431 * "is_comment".
4432 * line - line to be processed,
4433 * process - if FALSE, will only check whether the line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004434 * comment,
Bram Moolenaar81340392012-06-06 16:12:59 +02004435 * include_space - whether to also skip space following the comment leader,
4436 * is_comment - will indicate whether the current line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004437 * comment.
Bram Moolenaar81340392012-06-06 16:12:59 +02004438 */
Bram Moolenaar025a6b72017-03-12 20:37:21 +01004439 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004440skip_comment(
4441 char_u *line,
4442 int process,
4443 int include_space,
4444 int *is_comment)
Bram Moolenaar81340392012-06-06 16:12:59 +02004445{
4446 char_u *comment_flags = NULL;
4447 int lead_len;
4448 int leader_offset = get_last_leader_offset(line, &comment_flags);
4449
4450 *is_comment = FALSE;
4451 if (leader_offset != -1)
4452 {
4453 /* Let's check whether the line ends with an unclosed comment.
4454 * If the last comment leader has COM_END in flags, there's no comment.
4455 */
4456 while (*comment_flags)
4457 {
4458 if (*comment_flags == COM_END
4459 || *comment_flags == ':')
4460 break;
4461 ++comment_flags;
4462 }
4463 if (*comment_flags != COM_END)
4464 *is_comment = TRUE;
4465 }
4466
4467 if (process == FALSE)
4468 return line;
4469
4470 lead_len = get_leader_len(line, &comment_flags, FALSE, include_space);
4471
4472 if (lead_len == 0)
4473 return line;
4474
4475 /* Find:
Bram Moolenaar81340392012-06-06 16:12:59 +02004476 * - COM_END,
4477 * - colon,
4478 * whichever comes first.
4479 */
4480 while (*comment_flags)
4481 {
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004482 if (*comment_flags == COM_END
Bram Moolenaar81340392012-06-06 16:12:59 +02004483 || *comment_flags == ':')
4484 {
4485 break;
4486 }
4487 ++comment_flags;
4488 }
4489
4490 /* If we found a colon, it means that we are not processing a line
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004491 * starting with a closing part of a three-part comment. That's good,
4492 * because we don't want to remove those as this would be annoying.
Bram Moolenaar81340392012-06-06 16:12:59 +02004493 */
4494 if (*comment_flags == ':' || *comment_flags == NUL)
4495 line += lead_len;
4496
4497 return line;
4498}
4499#endif
4500
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501/*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004502 * Join 'count' lines (minimal 2) at cursor position.
4503 * When "save_undo" is TRUE save lines for undo first.
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004504 * Set "use_formatoptions" to FALSE when e.g. processing backspace and comment
4505 * leaders should not be removed.
4506 * When setmark is TRUE, sets the '[ and '] mark, else, the caller is expected
4507 * to set those marks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004509 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 */
4511 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004512do_join(
4513 long count,
4514 int insert_space,
4515 int save_undo,
4516 int use_formatoptions UNUSED,
4517 int setmark)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518{
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004519 char_u *curr = NULL;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004520 char_u *curr_start = NULL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004521 char_u *cend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 char_u *newp;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004523 char_u *spaces; /* number of spaces inserted before a line */
Bram Moolenaard43848c2010-07-14 14:28:26 +02004524 int endcurr1 = NUL;
4525 int endcurr2 = NUL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004526 int currsize = 0; /* size of the current line */
4527 int sumsize = 0; /* size of the long new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528 linenr_T t;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004529 colnr_T col = 0;
4530 int ret = OK;
Bram Moolenaar81340392012-06-06 16:12:59 +02004531#if defined(FEAT_COMMENTS) || defined(PROTO)
Bram Moolenaar802053f2012-06-06 23:08:38 +02004532 int *comments = NULL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004533 int remove_comments = (use_formatoptions == TRUE)
4534 && has_format_option(FO_REMOVE_COMS);
4535 int prev_was_comment;
4536#endif
4537
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004539 if (save_undo && u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4540 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4541 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004543 /* Allocate an array to store the number of spaces inserted before each
4544 * line. We will use it to pre-compute the length of the new line and the
4545 * proper placement of each original line in the new one. */
4546 spaces = lalloc_clear((long_u)count, TRUE);
4547 if (spaces == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548 return FAIL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004549#if defined(FEAT_COMMENTS) || defined(PROTO)
4550 if (remove_comments)
4551 {
4552 comments = (int *)lalloc_clear((long_u)count * sizeof(int), TRUE);
4553 if (comments == NULL)
4554 {
4555 vim_free(spaces);
4556 return FAIL;
4557 }
4558 }
4559#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560
4561 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004562 * Don't move anything, just compute the final line length
4563 * and setup the array of space strings lengths
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004565 for (t = 0; t < count; ++t)
4566 {
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004567 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t));
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004568 if (t == 0 && setmark)
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004569 {
4570 /* Set the '[ mark. */
4571 curwin->w_buffer->b_op_start.lnum = curwin->w_cursor.lnum;
4572 curwin->w_buffer->b_op_start.col = (colnr_T)STRLEN(curr);
4573 }
Bram Moolenaar81340392012-06-06 16:12:59 +02004574#if defined(FEAT_COMMENTS) || defined(PROTO)
4575 if (remove_comments)
4576 {
4577 /* We don't want to remove the comment leader if the
4578 * previous line is not a comment. */
4579 if (t > 0 && prev_was_comment)
4580 {
4581
4582 char_u *new_curr = skip_comment(curr, TRUE, insert_space,
4583 &prev_was_comment);
Bram Moolenaar27ba0882012-06-07 21:09:39 +02004584 comments[t] = (int)(new_curr - curr);
Bram Moolenaar81340392012-06-06 16:12:59 +02004585 curr = new_curr;
4586 }
4587 else
4588 curr = skip_comment(curr, FALSE, insert_space,
4589 &prev_was_comment);
4590 }
4591#endif
4592
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004593 if (insert_space && t > 0)
4594 {
4595 curr = skipwhite(curr);
4596 if (*curr != ')' && currsize != 0 && endcurr1 != TAB
4597#ifdef FEAT_MBYTE
4598 && (!has_format_option(FO_MBYTE_JOIN)
4599 || (mb_ptr2char(curr) < 0x100 && endcurr1 < 0x100))
4600 && (!has_format_option(FO_MBYTE_JOIN2)
4601 || mb_ptr2char(curr) < 0x100 || endcurr1 < 0x100)
4602#endif
4603 )
4604 {
4605 /* don't add a space if the line is ending in a space */
4606 if (endcurr1 == ' ')
4607 endcurr1 = endcurr2;
4608 else
4609 ++spaces[t];
4610 /* extra space when 'joinspaces' set and line ends in '.' */
4611 if ( p_js
4612 && (endcurr1 == '.'
4613 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4614 && (endcurr1 == '?' || endcurr1 == '!'))))
4615 ++spaces[t];
4616 }
4617 }
4618 currsize = (int)STRLEN(curr);
4619 sumsize += currsize + spaces[t];
4620 endcurr1 = endcurr2 = NUL;
4621 if (insert_space && currsize > 0)
4622 {
4623#ifdef FEAT_MBYTE
4624 if (has_mbyte)
4625 {
4626 cend = curr + currsize;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004627 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004628 endcurr1 = (*mb_ptr2char)(cend);
4629 if (cend > curr)
4630 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004631 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004632 endcurr2 = (*mb_ptr2char)(cend);
4633 }
4634 }
4635 else
4636#endif
4637 {
4638 endcurr1 = *(curr + currsize - 1);
4639 if (currsize > 1)
4640 endcurr2 = *(curr + currsize - 2);
4641 }
4642 }
4643 line_breakcheck();
4644 if (got_int)
4645 {
4646 ret = FAIL;
4647 goto theend;
4648 }
4649 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004651 /* store the column position before last line */
4652 col = sumsize - currsize - spaces[count - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004654 /* allocate the space for the new line */
4655 newp = alloc_check((unsigned)(sumsize + 1));
4656 cend = newp + sumsize;
4657 *cend = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004659 /*
4660 * Move affected lines to the new long one.
4661 *
4662 * Move marks from each deleted line to the joined line, adjusting the
4663 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4664 * should not really be a problem.
4665 */
4666 for (t = count - 1; ; --t)
4667 {
4668 cend -= currsize;
4669 mch_memmove(cend, curr, (size_t)currsize);
4670 if (spaces[t] > 0)
4671 {
4672 cend -= spaces[t];
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02004673 vim_memset(cend, ' ', (size_t)(spaces[t]));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004674 }
4675 mark_col_adjust(curwin->w_cursor.lnum + t, (colnr_T)0, (linenr_T)-t,
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004676 (long)(cend - newp + spaces[t] - (curr - curr_start)));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004677 if (t == 0)
4678 break;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004679 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1));
Bram Moolenaar81340392012-06-06 16:12:59 +02004680#if defined(FEAT_COMMENTS) || defined(PROTO)
4681 if (remove_comments)
4682 curr += comments[t - 1];
4683#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004684 if (insert_space && t > 1)
4685 curr = skipwhite(curr);
4686 currsize = (int)STRLEN(curr);
4687 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4689
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004690 if (setmark)
4691 {
4692 /* Set the '] mark. */
4693 curwin->w_buffer->b_op_end.lnum = curwin->w_cursor.lnum;
4694 curwin->w_buffer->b_op_end.col = (colnr_T)STRLEN(newp);
4695 }
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004696
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697 /* Only report the change in the first line here, del_lines() will report
4698 * the deleted line. */
4699 changed_lines(curwin->w_cursor.lnum, currsize,
4700 curwin->w_cursor.lnum + 1, 0L);
4701
4702 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004703 * Delete following lines. To do this we move the cursor there
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 * briefly, and then move it back. After del_lines() the cursor may
4705 * have moved up (last line deleted), so the current lnum is kept in t.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 */
4707 t = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 ++curwin->w_cursor.lnum;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004709 del_lines(count - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710 curwin->w_cursor.lnum = t;
4711
4712 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004713 * Set the cursor column:
4714 * Vi compatible: use the column of the first join
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004715 * vim: use the column of the last join
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004717 curwin->w_cursor.col =
4718 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 check_cursor_col();
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004720
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721#ifdef FEAT_VIRTUALEDIT
4722 curwin->w_cursor.coladd = 0;
4723#endif
4724 curwin->w_set_curswant = TRUE;
4725
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004726theend:
4727 vim_free(spaces);
Bram Moolenaar81340392012-06-06 16:12:59 +02004728#if defined(FEAT_COMMENTS) || defined(PROTO)
4729 if (remove_comments)
4730 vim_free(comments);
4731#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004732 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733}
4734
4735#ifdef FEAT_COMMENTS
4736/*
4737 * Return TRUE if the two comment leaders given are the same. "lnum" is
4738 * the first line. White-space is ignored. Note that the whole of
4739 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4740 */
4741 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004742same_leader(
4743 linenr_T lnum,
4744 int leader1_len,
4745 char_u *leader1_flags,
4746 int leader2_len,
4747 char_u *leader2_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748{
4749 int idx1 = 0, idx2 = 0;
4750 char_u *p;
4751 char_u *line1;
4752 char_u *line2;
4753
4754 if (leader1_len == 0)
4755 return (leader2_len == 0);
4756
4757 /*
4758 * If first leader has 'f' flag, the lines can be joined only if the
4759 * second line does not have a leader.
4760 * If first leader has 'e' flag, the lines can never be joined.
4761 * If fist leader has 's' flag, the lines can only be joined if there is
4762 * some text after it and the second line has the 'm' flag.
4763 */
4764 if (leader1_flags != NULL)
4765 {
4766 for (p = leader1_flags; *p && *p != ':'; ++p)
4767 {
4768 if (*p == COM_FIRST)
4769 return (leader2_len == 0);
4770 if (*p == COM_END)
4771 return FALSE;
4772 if (*p == COM_START)
4773 {
4774 if (*(ml_get(lnum) + leader1_len) == NUL)
4775 return FALSE;
4776 if (leader2_flags == NULL || leader2_len == 0)
4777 return FALSE;
4778 for (p = leader2_flags; *p && *p != ':'; ++p)
4779 if (*p == COM_MIDDLE)
4780 return TRUE;
4781 return FALSE;
4782 }
4783 }
4784 }
4785
4786 /*
4787 * Get current line and next line, compare the leaders.
4788 * The first line has to be saved, only one line can be locked at a time.
4789 */
4790 line1 = vim_strsave(ml_get(lnum));
4791 if (line1 != NULL)
4792 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004793 for (idx1 = 0; VIM_ISWHITE(line1[idx1]); ++idx1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794 ;
4795 line2 = ml_get(lnum + 1);
4796 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4797 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004798 if (!VIM_ISWHITE(line2[idx2]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 {
4800 if (line1[idx1++] != line2[idx2])
4801 break;
4802 }
4803 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004804 while (VIM_ISWHITE(line1[idx1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 ++idx1;
4806 }
4807 vim_free(line1);
4808 }
4809 return (idx2 == leader2_len && idx1 == leader1_len);
4810}
4811#endif
4812
4813/*
Bram Moolenaar66accae2012-01-10 13:44:27 +01004814 * Implementation of the format operator 'gq'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815 */
4816 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004817op_format(
4818 oparg_T *oap,
4819 int keep_cursor) /* keep cursor on same text char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820{
4821 long old_line_count = curbuf->b_ml.ml_line_count;
4822
4823 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4824 * can put it back there. */
4825 curwin->w_cursor = oap->cursor_start;
4826
4827 if (u_save((linenr_T)(oap->start.lnum - 1),
4828 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4829 return;
4830 curwin->w_cursor = oap->start;
4831
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 if (oap->is_VIsual)
4833 /* When there is no change: need to remove the Visual selection */
4834 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835
4836 /* Set '[ mark at the start of the formatted area */
4837 curbuf->b_op_start = oap->start;
4838
4839 /* For "gw" remember the cursor position and put it back below (adjusted
4840 * for joined and split lines). */
4841 if (keep_cursor)
4842 saved_cursor = oap->cursor_start;
4843
Bram Moolenaar81a82092008-03-12 16:27:00 +00004844 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845
4846 /*
4847 * Leave the cursor at the first non-blank of the last formatted line.
4848 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4849 * line, so "." will do the next lines.
4850 */
4851 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4852 ++curwin->w_cursor.lnum;
4853 beginline(BL_WHITE | BL_FIX);
4854 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4855 msgmore(old_line_count);
4856
4857 /* put '] mark on the end of the formatted area */
4858 curbuf->b_op_end = curwin->w_cursor;
4859
4860 if (keep_cursor)
4861 {
4862 curwin->w_cursor = saved_cursor;
4863 saved_cursor.lnum = 0;
4864 }
4865
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866 if (oap->is_VIsual)
4867 {
4868 win_T *wp;
4869
4870 FOR_ALL_WINDOWS(wp)
4871 {
4872 if (wp->w_old_cursor_lnum != 0)
4873 {
4874 /* When lines have been inserted or deleted, adjust the end of
4875 * the Visual area to be redrawn. */
4876 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4877 wp->w_old_cursor_lnum += old_line_count;
4878 else
4879 wp->w_old_visual_lnum += old_line_count;
4880 }
4881 }
4882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883}
4884
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004885#if defined(FEAT_EVAL) || defined(PROTO)
4886/*
4887 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4888 */
4889 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004890op_formatexpr(oparg_T *oap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004891{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004892 if (oap->is_VIsual)
4893 /* When there is no change: need to remove the Visual selection */
4894 redraw_curbuf_later(INVERTED);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004895
Bram Moolenaar700303e2010-07-11 17:35:50 +02004896 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0)
4897 /* As documented: when 'formatexpr' returns non-zero fall back to
4898 * internal formatting. */
4899 op_format(oap, FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004900}
4901
4902 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004903fex_format(
4904 linenr_T lnum,
4905 long count,
4906 int c) /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004907{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004908 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4909 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004910 int r;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004911 char_u *fex;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004912
4913 /*
4914 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004915 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004916 */
4917 set_vim_var_nr(VV_LNUM, lnum);
4918 set_vim_var_nr(VV_COUNT, count);
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004919 set_vim_var_char(c);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004920
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004921 /* Make a copy, the option could be changed while calling it. */
4922 fex = vim_strsave(curbuf->b_p_fex);
4923 if (fex == NULL)
4924 return 0;
4925
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004926 /*
4927 * Evaluate the function.
4928 */
4929 if (use_sandbox)
4930 ++sandbox;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004931 r = (int)eval_to_number(fex);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004932 if (use_sandbox)
4933 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004934
4935 set_vim_var_string(VV_CHAR, NULL, -1);
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004936 vim_free(fex);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004937
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004938 return r;
4939}
4940#endif
4941
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942/*
4943 * Format "line_count" lines, starting at the cursor position.
4944 * When "line_count" is negative, format until the end of the paragraph.
4945 * Lines after the cursor line are saved for undo, caller must have saved the
4946 * first line.
4947 */
4948 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004949format_lines(
4950 linenr_T line_count,
4951 int avoid_fex) /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952{
4953 int max_len;
4954 int is_not_par; /* current line not part of parag. */
4955 int next_is_not_par; /* next line not part of paragraph */
4956 int is_end_par; /* at end of paragraph */
4957 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4958 int next_is_start_par = FALSE;
4959#ifdef FEAT_COMMENTS
4960 int leader_len = 0; /* leader len of current line */
4961 int next_leader_len; /* leader len of next line */
4962 char_u *leader_flags = NULL; /* flags for leader of current line */
4963 char_u *next_leader_flags; /* flags for leader of next line */
4964 int do_comments; /* format comments */
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004965 int do_comments_list = 0; /* format comments with 'n' or '2' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966#endif
4967 int advance = TRUE;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004968 int second_indent = -1; /* indent for second line (comment
4969 * aware) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 int do_second_indent;
4971 int do_number_indent;
4972 int do_trail_white;
4973 int first_par_line = TRUE;
4974 int smd_save;
4975 long count;
4976 int need_set_indent = TRUE; /* set indent of next paragraph */
4977 int force_format = FALSE;
4978 int old_State = State;
4979
4980 /* length of a line to force formatting: 3 * 'tw' */
4981 max_len = comp_textwidth(TRUE) * 3;
4982
4983 /* check for 'q', '2' and '1' in 'formatoptions' */
4984#ifdef FEAT_COMMENTS
4985 do_comments = has_format_option(FO_Q_COMS);
4986#endif
4987 do_second_indent = has_format_option(FO_Q_SECOND);
4988 do_number_indent = has_format_option(FO_Q_NUMBER);
4989 do_trail_white = has_format_option(FO_WHITE_PAR);
4990
4991 /*
4992 * Get info about the previous and current line.
4993 */
4994 if (curwin->w_cursor.lnum > 1)
4995 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4996#ifdef FEAT_COMMENTS
4997 , &leader_len, &leader_flags, do_comments
4998#endif
4999 );
5000 else
5001 is_not_par = TRUE;
5002 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
5003#ifdef FEAT_COMMENTS
5004 , &next_leader_len, &next_leader_flags, do_comments
5005#endif
5006 );
5007 is_end_par = (is_not_par || next_is_not_par);
5008 if (!is_end_par && do_trail_white)
5009 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
5010
5011 curwin->w_cursor.lnum--;
5012 for (count = line_count; count != 0 && !got_int; --count)
5013 {
5014 /*
5015 * Advance to next paragraph.
5016 */
5017 if (advance)
5018 {
5019 curwin->w_cursor.lnum++;
5020 prev_is_end_par = is_end_par;
5021 is_not_par = next_is_not_par;
5022#ifdef FEAT_COMMENTS
5023 leader_len = next_leader_len;
5024 leader_flags = next_leader_flags;
5025#endif
5026 }
5027
5028 /*
5029 * The last line to be formatted.
5030 */
5031 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
5032 {
5033 next_is_not_par = TRUE;
5034#ifdef FEAT_COMMENTS
5035 next_leader_len = 0;
5036 next_leader_flags = NULL;
5037#endif
5038 }
5039 else
5040 {
5041 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
5042#ifdef FEAT_COMMENTS
5043 , &next_leader_len, &next_leader_flags, do_comments
5044#endif
5045 );
5046 if (do_number_indent)
5047 next_is_start_par =
5048 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
5049 }
5050 advance = TRUE;
5051 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
5052 if (!is_end_par && do_trail_white)
5053 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
5054
5055 /*
5056 * Skip lines that are not in a paragraph.
5057 */
5058 if (is_not_par)
5059 {
5060 if (line_count < 0)
5061 break;
5062 }
5063 else
5064 {
5065 /*
5066 * For the first line of a paragraph, check indent of second line.
5067 * Don't do this for comments and empty lines.
5068 */
5069 if (first_par_line
5070 && (do_second_indent || do_number_indent)
5071 && prev_is_end_par
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005072 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005074 if (do_second_indent && !LINEEMPTY(curwin->w_cursor.lnum + 1))
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005075 {
5076#ifdef FEAT_COMMENTS
5077 if (leader_len == 0 && next_leader_len == 0)
5078 {
5079 /* no comment found */
5080#endif
5081 second_indent =
5082 get_indent_lnum(curwin->w_cursor.lnum + 1);
5083#ifdef FEAT_COMMENTS
5084 }
5085 else
5086 {
5087 second_indent = next_leader_len;
5088 do_comments_list = 1;
5089 }
5090#endif
5091 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 else if (do_number_indent)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005093 {
5094#ifdef FEAT_COMMENTS
5095 if (leader_len == 0 && next_leader_len == 0)
5096 {
5097 /* no comment found */
5098#endif
5099 second_indent =
5100 get_number_indent(curwin->w_cursor.lnum);
5101#ifdef FEAT_COMMENTS
5102 }
5103 else
5104 {
5105 /* get_number_indent() is now "comment aware"... */
5106 second_indent =
5107 get_number_indent(curwin->w_cursor.lnum);
5108 do_comments_list = 1;
5109 }
5110#endif
5111 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 }
5113
5114 /*
5115 * When the comment leader changes, it's the end of the paragraph.
5116 */
5117 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
5118#ifdef FEAT_COMMENTS
5119 || !same_leader(curwin->w_cursor.lnum,
5120 leader_len, leader_flags,
5121 next_leader_len, next_leader_flags)
5122#endif
5123 )
5124 is_end_par = TRUE;
5125
5126 /*
5127 * If we have got to the end of a paragraph, or the line is
5128 * getting long, format it.
5129 */
5130 if (is_end_par || force_format)
5131 {
5132 if (need_set_indent)
5133 /* replace indent in first line with minimal number of
5134 * tabs and spaces, according to current options */
5135 (void)set_indent(get_indent(), SIN_CHANGED);
5136
5137 /* put cursor on last non-space */
5138 State = NORMAL; /* don't go past end-of-line */
5139 coladvance((colnr_T)MAXCOL);
5140 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
5141 dec_cursor();
5142
5143 /* do the formatting, without 'showmode' */
5144 State = INSERT; /* for open_line() */
5145 smd_save = p_smd;
5146 p_smd = FALSE;
5147 insertchar(NUL, INSCHAR_FORMAT
5148#ifdef FEAT_COMMENTS
5149 + (do_comments ? INSCHAR_DO_COM : 0)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005150 + (do_comments && do_comments_list
5151 ? INSCHAR_COM_LIST : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00005153 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 State = old_State;
5155 p_smd = smd_save;
5156 second_indent = -1;
5157 /* at end of par.: need to set indent of next par. */
5158 need_set_indent = is_end_par;
5159 if (is_end_par)
5160 {
5161 /* When called with a negative line count, break at the
5162 * end of the paragraph. */
5163 if (line_count < 0)
5164 break;
5165 first_par_line = TRUE;
5166 }
5167 force_format = FALSE;
5168 }
5169
5170 /*
5171 * When still in same paragraph, join the lines together. But
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005172 * first delete the leader from the second line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 */
5174 if (!is_end_par)
5175 {
5176 advance = FALSE;
5177 curwin->w_cursor.lnum++;
5178 curwin->w_cursor.col = 0;
5179 if (line_count < 0 && u_save_cursor() == FAIL)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02005180 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181#ifdef FEAT_COMMENTS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005182 if (next_leader_len > 0)
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005183 {
5184 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
5186 (long)-next_leader_len);
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005187 } else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188#endif
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005189 if (second_indent > 0) /* the "leader" for FO_Q_SECOND */
5190 {
Bram Moolenaare2e69e42017-09-02 20:30:35 +02005191 int indent = getwhitecols_curline();
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005192
5193 if (indent > 0)
5194 {
5195 (void)del_bytes(indent, FALSE, FALSE);
5196 mark_col_adjust(curwin->w_cursor.lnum,
5197 (colnr_T)0, 0L, (long)-indent);
Bram Moolenaar92c2db82013-11-02 23:59:35 +01005198 }
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005199 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200 curwin->w_cursor.lnum--;
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02005201 if (do_join(2, TRUE, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 {
5203 beep_flush();
5204 break;
5205 }
5206 first_par_line = FALSE;
5207 /* If the line is getting long, format it next time */
5208 if (STRLEN(ml_get_curline()) > (size_t)max_len)
5209 force_format = TRUE;
5210 else
5211 force_format = FALSE;
5212 }
5213 }
5214 line_breakcheck();
5215 }
5216}
5217
5218/*
5219 * Return TRUE if line "lnum" ends in a white character.
5220 */
5221 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005222ends_in_white(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223{
5224 char_u *s = ml_get(lnum);
5225 size_t l;
5226
5227 if (*s == NUL)
5228 return FALSE;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005229 /* Don't use STRLEN() inside VIM_ISWHITE(), SAS/C complains: "macro
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 * invocation may call function multiple times". */
5231 l = STRLEN(s) - 1;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005232 return VIM_ISWHITE(s[l]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233}
5234
5235/*
5236 * Blank lines, and lines containing only the comment leader, are left
5237 * untouched by the formatting. The function returns TRUE in this
5238 * case. It also returns TRUE when a line starts with the end of a comment
5239 * ('e' in comment flags), so that this line is skipped, and not joined to the
5240 * previous line. A new paragraph starts after a blank line, or when the
5241 * comment leader changes -- webb.
5242 */
5243#ifdef FEAT_COMMENTS
5244 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005245fmt_check_par(
5246 linenr_T lnum,
5247 int *leader_len,
5248 char_u **leader_flags,
5249 int do_comments)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250{
5251 char_u *flags = NULL; /* init for GCC */
5252 char_u *ptr;
5253
5254 ptr = ml_get(lnum);
5255 if (do_comments)
Bram Moolenaar81340392012-06-06 16:12:59 +02005256 *leader_len = get_leader_len(ptr, leader_flags, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257 else
5258 *leader_len = 0;
5259
5260 if (*leader_len > 0)
5261 {
5262 /*
5263 * Search for 'e' flag in comment leader flags.
5264 */
5265 flags = *leader_flags;
5266 while (*flags && *flags != ':' && *flags != COM_END)
5267 ++flags;
5268 }
5269
5270 return (*skipwhite(ptr + *leader_len) == NUL
5271 || (*leader_len > 0 && *flags == COM_END)
5272 || startPS(lnum, NUL, FALSE));
5273}
5274#else
5275 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005276fmt_check_par(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277{
5278 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
5279}
5280#endif
5281
5282/*
5283 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
5284 * previous line is in the same paragraph. Used for auto-formatting.
5285 */
5286 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005287paragraph_start(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288{
5289 char_u *p;
5290#ifdef FEAT_COMMENTS
5291 int leader_len = 0; /* leader len of current line */
5292 char_u *leader_flags = NULL; /* flags for leader of current line */
5293 int next_leader_len; /* leader len of next line */
5294 char_u *next_leader_flags; /* flags for leader of next line */
5295 int do_comments; /* format comments */
5296#endif
5297
5298 if (lnum <= 1)
5299 return TRUE; /* start of the file */
5300
5301 p = ml_get(lnum - 1);
5302 if (*p == NUL)
5303 return TRUE; /* after empty line */
5304
5305#ifdef FEAT_COMMENTS
5306 do_comments = has_format_option(FO_Q_COMS);
5307#endif
5308 if (fmt_check_par(lnum - 1
5309#ifdef FEAT_COMMENTS
5310 , &leader_len, &leader_flags, do_comments
5311#endif
5312 ))
5313 return TRUE; /* after non-paragraph line */
5314
5315 if (fmt_check_par(lnum
5316#ifdef FEAT_COMMENTS
5317 , &next_leader_len, &next_leader_flags, do_comments
5318#endif
5319 ))
5320 return TRUE; /* "lnum" is not a paragraph line */
5321
5322 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
5323 return TRUE; /* missing trailing space in previous line. */
5324
5325 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
5326 return TRUE; /* numbered item starts in "lnum". */
5327
5328#ifdef FEAT_COMMENTS
5329 if (!same_leader(lnum - 1, leader_len, leader_flags,
5330 next_leader_len, next_leader_flags))
5331 return TRUE; /* change of comment leader. */
5332#endif
5333
5334 return FALSE;
5335}
5336
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337/*
5338 * prepare a few things for block mode yank/delete/tilde
5339 *
5340 * for delete:
5341 * - textlen includes the first/last char to be (partly) deleted
5342 * - start/endspaces is the number of columns that are taken by the
5343 * first/last deleted char minus the number of columns that have to be
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +00005344 * deleted.
5345 * for yank and tilde:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346 * - textlen includes the first/last char to be wholly yanked
5347 * - start/endspaces is the number of columns of the first/last yanked char
5348 * that are to be yanked.
5349 */
5350 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005351block_prep(
5352 oparg_T *oap,
5353 struct block_def *bdp,
5354 linenr_T lnum,
5355 int is_del)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356{
5357 int incr = 0;
5358 char_u *pend;
5359 char_u *pstart;
5360 char_u *line;
5361 char_u *prev_pstart;
5362 char_u *prev_pend;
5363
5364 bdp->startspaces = 0;
5365 bdp->endspaces = 0;
5366 bdp->textlen = 0;
5367 bdp->start_vcol = 0;
5368 bdp->end_vcol = 0;
5369#ifdef FEAT_VISUALEXTRA
5370 bdp->is_short = FALSE;
5371 bdp->is_oneChar = FALSE;
5372 bdp->pre_whitesp = 0;
5373 bdp->pre_whitesp_c = 0;
5374 bdp->end_char_vcols = 0;
5375#endif
5376 bdp->start_char_vcols = 0;
5377
5378 line = ml_get(lnum);
5379 pstart = line;
5380 prev_pstart = line;
5381 while (bdp->start_vcol < oap->start_vcol && *pstart)
5382 {
5383 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02005384 incr = lbr_chartabsize(line, pstart, (colnr_T)bdp->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385 bdp->start_vcol += incr;
5386#ifdef FEAT_VISUALEXTRA
Bram Moolenaar1c465442017-03-12 20:10:05 +01005387 if (VIM_ISWHITE(*pstart))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 {
5389 bdp->pre_whitesp += incr;
5390 bdp->pre_whitesp_c++;
5391 }
5392 else
5393 {
5394 bdp->pre_whitesp = 0;
5395 bdp->pre_whitesp_c = 0;
5396 }
5397#endif
5398 prev_pstart = pstart;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005399 MB_PTR_ADV(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 }
5401 bdp->start_char_vcols = incr;
5402 if (bdp->start_vcol < oap->start_vcol) /* line too short */
5403 {
5404 bdp->end_vcol = bdp->start_vcol;
5405#ifdef FEAT_VISUALEXTRA
5406 bdp->is_short = TRUE;
5407#endif
5408 if (!is_del || oap->op_type == OP_APPEND)
5409 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
5410 }
5411 else
5412 {
5413 /* notice: this converts partly selected Multibyte characters to
5414 * spaces, too. */
5415 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
5416 if (is_del && bdp->startspaces)
5417 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
5418 pend = pstart;
5419 bdp->end_vcol = bdp->start_vcol;
5420 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
5421 {
5422#ifdef FEAT_VISUALEXTRA
5423 bdp->is_oneChar = TRUE;
5424#endif
5425 if (oap->op_type == OP_INSERT)
5426 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5427 else if (oap->op_type == OP_APPEND)
5428 {
5429 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
5430 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5431 }
5432 else
5433 {
5434 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
5435 if (is_del && oap->op_type != OP_LSHIFT)
5436 {
5437 /* just putting the sum of those two into
5438 * bdp->startspaces doesn't work for Visual replace,
5439 * so we have to split the tab in two */
5440 bdp->startspaces = bdp->start_char_vcols
5441 - (bdp->start_vcol - oap->start_vcol);
5442 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5443 }
5444 }
5445 }
5446 else
5447 {
5448 prev_pend = pend;
5449 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
5450 {
5451 /* Count a tab for what it's worth (if list mode not on) */
5452 prev_pend = pend;
Bram Moolenaar1dc92332015-01-27 13:22:20 +01005453 incr = lbr_chartabsize_adv(line, &pend, (colnr_T)bdp->end_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454 bdp->end_vcol += incr;
5455 }
5456 if (bdp->end_vcol <= oap->end_vcol
5457 && (!is_del
5458 || oap->op_type == OP_APPEND
5459 || oap->op_type == OP_REPLACE)) /* line too short */
5460 {
5461#ifdef FEAT_VISUALEXTRA
5462 bdp->is_short = TRUE;
5463#endif
5464 /* Alternative: include spaces to fill up the block.
5465 * Disadvantage: can lead to trailing spaces when the line is
5466 * short where the text is put */
5467 /* if (!is_del || oap->op_type == OP_APPEND) */
5468 if (oap->op_type == OP_APPEND || virtual_op)
5469 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00005470 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 else
5472 bdp->endspaces = 0; /* replace doesn't add characters */
5473 }
5474 else if (bdp->end_vcol > oap->end_vcol)
5475 {
5476 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5477 if (!is_del && bdp->endspaces)
5478 {
5479 bdp->endspaces = incr - bdp->endspaces;
5480 if (pend != pstart)
5481 pend = prev_pend;
5482 }
5483 }
5484 }
5485#ifdef FEAT_VISUALEXTRA
5486 bdp->end_char_vcols = incr;
5487#endif
5488 if (is_del && bdp->startspaces)
5489 pstart = prev_pstart;
5490 bdp->textlen = (int)(pend - pstart);
5491 }
5492 bdp->textcol = (colnr_T) (pstart - line);
5493 bdp->textstart = pstart;
5494}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496/*
Bram Moolenaard79e5502016-01-10 22:13:02 +01005497 * Handle the add/subtract operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005499 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005500op_addsub(
5501 oparg_T *oap,
5502 linenr_T Prenum1, /* Amount of add/subtract */
5503 int g_cmd) /* was g<c-a>/g<c-x> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504{
Bram Moolenaard79e5502016-01-10 22:13:02 +01005505 pos_T pos;
5506 struct block_def bd;
5507 int change_cnt = 0;
5508 linenr_T amount = Prenum1;
5509
5510 if (!VIsual_active)
5511 {
5512 pos = curwin->w_cursor;
5513 if (u_save_cursor() == FAIL)
5514 return;
5515 change_cnt = do_addsub(oap->op_type, &pos, 0, amount);
5516 if (change_cnt)
5517 changed_lines(pos.lnum, 0, pos.lnum + 1, 0L);
5518 }
5519 else
5520 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005521 int one_change;
5522 int length;
5523 pos_T startpos;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005524
5525 if (u_save((linenr_T)(oap->start.lnum - 1),
5526 (linenr_T)(oap->end.lnum + 1)) == FAIL)
5527 return;
5528
5529 pos = oap->start;
5530 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
5531 {
5532 if (oap->block_mode) /* Visual block mode */
5533 {
5534 block_prep(oap, &bd, pos.lnum, FALSE);
5535 pos.col = bd.textcol;
5536 length = bd.textlen;
5537 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005538 else if (oap->motion_type == MLINE)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005539 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005540 curwin->w_cursor.col = 0;
5541 pos.col = 0;
5542 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5543 }
5544 else /* oap->motion_type == MCHAR */
5545 {
Bram Moolenaar5fe6bdf2017-12-05 17:22:12 +01005546 if (pos.lnum == oap->start.lnum && !oap->inclusive)
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005547 dec(&(oap->end));
5548 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5549 pos.col = 0;
5550 if (pos.lnum == oap->start.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005551 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005552 pos.col += oap->start.col;
5553 length -= oap->start.col;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005554 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005555 if (pos.lnum == oap->end.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005556 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005557 length = (int)STRLEN(ml_get(oap->end.lnum));
5558 if (oap->end.col >= length)
5559 oap->end.col = length - 1;
5560 length = oap->end.col - pos.col + 1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005561 }
5562 }
5563 one_change = do_addsub(oap->op_type, &pos, length, amount);
5564 if (one_change)
5565 {
5566 /* Remember the start position of the first change. */
5567 if (change_cnt == 0)
5568 startpos = curbuf->b_op_start;
5569 ++change_cnt;
5570 }
5571
5572#ifdef FEAT_NETBEANS_INTG
5573 if (netbeans_active() && one_change)
5574 {
5575 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
5576
5577 netbeans_removed(curbuf, pos.lnum, pos.col, (long)length);
5578 netbeans_inserted(curbuf, pos.lnum, pos.col,
5579 &ptr[pos.col], length);
5580 }
5581#endif
5582 if (g_cmd && one_change)
5583 amount += Prenum1;
5584 }
5585 if (change_cnt)
5586 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
5587
5588 if (!change_cnt && oap->is_VIsual)
5589 /* No change: need to remove the Visual selection */
5590 redraw_curbuf_later(INVERTED);
5591
5592 /* Set '[ mark if something changed. Keep the last end
5593 * position from do_addsub(). */
5594 if (change_cnt > 0)
5595 curbuf->b_op_start = startpos;
5596
5597 if (change_cnt > p_report)
5598 {
5599 if (change_cnt == 1)
5600 MSG(_("1 line changed"));
5601 else
5602 smsg((char_u *)_("%ld lines changed"), change_cnt);
5603 }
5604 }
5605}
5606
5607/*
5608 * Add or subtract 'Prenum1' from a number in a line
5609 * op_type is OP_NR_ADD or OP_NR_SUB
5610 *
5611 * Returns TRUE if some character was changed.
5612 */
5613 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005614do_addsub(
5615 int op_type,
5616 pos_T *pos,
5617 int length,
5618 linenr_T Prenum1)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005619{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 int col;
5621 char_u *buf1;
5622 char_u buf2[NUMBUFLEN];
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005623 int pre; /* 'X'/'x': hex; '0': octal; 'B'/'b': bin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005625 uvarnumber_T n;
5626 uvarnumber_T oldn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 char_u *ptr;
5628 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629 int todel;
5630 int dohex;
5631 int dooct;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005632 int dobin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005633 int doalp;
5634 int firstdigit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005635 int subtract;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005636 int negative = FALSE;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02005637 int was_positive = TRUE;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005638 int visual = VIsual_active;
Bram Moolenaar3ec32612015-07-12 15:02:38 +02005639 int did_change = FALSE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005640 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005641 int maxlen = 0;
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005642 pos_T startpos;
5643 pos_T endpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005644
5645 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5646 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005647 dobin = (vim_strchr(curbuf->b_p_nf, 'b') != NULL); /* "Bin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005648 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5649
Bram Moolenaard79e5502016-01-10 22:13:02 +01005650 curwin->w_cursor = *pos;
5651 ptr = ml_get(pos->lnum);
5652 col = pos->col;
5653
5654 if (*ptr == NUL)
5655 goto theend;
5656
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657 /*
5658 * First check if we are on a hexadecimal number, after the "0x".
5659 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005660 if (!VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005661 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005662 if (dobin)
5663 while (col > 0 && vim_isbdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005664 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005665 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005666#ifdef FEAT_MBYTE
5667 if (has_mbyte)
5668 col -= (*mb_head_off)(ptr, ptr + col);
5669#endif
5670 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005671
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005672 if (dohex)
5673 while (col > 0 && vim_isxdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005674 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005675 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005676#ifdef FEAT_MBYTE
5677 if (has_mbyte)
5678 col -= (*mb_head_off)(ptr, ptr + col);
5679#endif
5680 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005681
5682 if ( dobin
5683 && dohex
5684 && ! ((col > 0
5685 && (ptr[col] == 'X'
5686 || ptr[col] == 'x')
5687 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005688#ifdef FEAT_MBYTE
5689 && (!has_mbyte ||
5690 !(*mb_head_off)(ptr, ptr + col - 1))
5691#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005692 && vim_isxdigit(ptr[col + 1]))))
5693 {
5694
5695 /* In case of binary/hexadecimal pattern overlap match, rescan */
5696
Bram Moolenaard79e5502016-01-10 22:13:02 +01005697 col = pos->col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005698
5699 while (col > 0 && vim_isdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005700 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005701 col--;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005702#ifdef FEAT_MBYTE
5703 if (has_mbyte)
5704 col -= (*mb_head_off)(ptr, ptr + col);
5705#endif
5706 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005707 }
5708
5709 if (( dohex
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005710 && col > 0
5711 && (ptr[col] == 'X'
5712 || ptr[col] == 'x')
5713 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005714#ifdef FEAT_MBYTE
5715 && (!has_mbyte ||
5716 !(*mb_head_off)(ptr, ptr + col - 1))
5717#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005718 && vim_isxdigit(ptr[col + 1])) ||
5719 ( dobin
5720 && col > 0
5721 && (ptr[col] == 'B'
5722 || ptr[col] == 'b')
5723 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005724#ifdef FEAT_MBYTE
5725 && (!has_mbyte ||
5726 !(*mb_head_off)(ptr, ptr + col - 1))
5727#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005728 && vim_isbdigit(ptr[col + 1])))
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005729 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005730 /* Found hexadecimal or binary number, move to its start. */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005731 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005732#ifdef FEAT_MBYTE
5733 if (has_mbyte)
5734 col -= (*mb_head_off)(ptr, ptr + col);
5735#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005736 }
5737 else
5738 {
5739 /*
5740 * Search forward and then backward to find the start of number.
5741 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005742 col = pos->col;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005743
5744 while (ptr[col] != NUL
5745 && !vim_isdigit(ptr[col])
5746 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005747 col += MB_PTR2LEN(ptr + col);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005748
5749 while (col > 0
5750 && vim_isdigit(ptr[col - 1])
5751 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005752 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005753 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005754#ifdef FEAT_MBYTE
5755 if (has_mbyte)
5756 col -= (*mb_head_off)(ptr, ptr + col);
5757#endif
5758 }
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005759 }
5760 }
5761
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005762 if (visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005763 {
5764 while (ptr[col] != NUL && length > 0
5765 && !vim_isdigit(ptr[col])
5766 && !(doalp && ASCII_ISALPHA(ptr[col])))
5767 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005768 int mb_len = MB_PTR2LEN(ptr + col);
5769
5770 col += mb_len;
5771 length -= mb_len;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005772 }
5773
5774 if (length == 0)
5775 goto theend;
5776
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005777 if (col > pos->col && ptr[col - 1] == '-'
5778#ifdef FEAT_MBYTE
5779 && (!has_mbyte ||
5780 !(*mb_head_off)(ptr, ptr + col - 1))
5781#endif
5782 )
Bram Moolenaard79e5502016-01-10 22:13:02 +01005783 {
5784 negative = TRUE;
5785 was_positive = FALSE;
5786 }
5787 }
5788
5789 /*
5790 * If a number was found, and saving for undo works, replace the number.
5791 */
5792 firstdigit = ptr[col];
5793 if (!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5794 {
5795 beep_flush();
5796 goto theend;
5797 }
5798
5799 if (doalp && ASCII_ISALPHA(firstdigit))
5800 {
5801 /* decrement or increment alphabetic character */
5802 if (op_type == OP_NR_SUB)
5803 {
5804 if (CharOrd(firstdigit) < Prenum1)
5805 {
5806 if (isupper(firstdigit))
5807 firstdigit = 'A';
5808 else
5809 firstdigit = 'a';
5810 }
5811 else
5812#ifdef EBCDIC
5813 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5814#else
5815 firstdigit -= Prenum1;
5816#endif
5817 }
5818 else
5819 {
5820 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5821 {
5822 if (isupper(firstdigit))
5823 firstdigit = 'Z';
5824 else
5825 firstdigit = 'z';
5826 }
5827 else
5828#ifdef EBCDIC
5829 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5830#else
5831 firstdigit += Prenum1;
5832#endif
5833 }
5834 curwin->w_cursor.col = col;
5835 if (!did_change)
5836 startpos = curwin->w_cursor;
5837 did_change = TRUE;
5838 (void)del_char(FALSE);
5839 ins_char(firstdigit);
5840 endpos = curwin->w_cursor;
5841 curwin->w_cursor.col = col;
5842 }
5843 else
5844 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005845 if (col > 0 && ptr[col - 1] == '-'
5846#ifdef FEAT_MBYTE
5847 && (!has_mbyte ||
5848 !(*mb_head_off)(ptr, ptr + col - 1))
5849#endif
5850 && !visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005851 {
5852 /* negative number */
5853 --col;
5854 negative = TRUE;
5855 }
5856 /* get the number value (unsigned) */
5857 if (visual && VIsual_mode != 'V')
5858 maxlen = (curbuf->b_visual.vi_curswant == MAXCOL
5859 ? (int)STRLEN(ptr) - col
5860 : length);
5861
5862 vim_str2nr(ptr + col, &pre, &length,
5863 0 + (dobin ? STR2NR_BIN : 0)
5864 + (dooct ? STR2NR_OCT : 0)
5865 + (dohex ? STR2NR_HEX : 0),
5866 NULL, &n, maxlen);
5867
5868 /* ignore leading '-' for hex and octal and bin numbers */
5869 if (pre && negative)
5870 {
5871 ++col;
5872 --length;
5873 negative = FALSE;
5874 }
5875 /* add or subtract */
5876 subtract = FALSE;
5877 if (op_type == OP_NR_SUB)
5878 subtract ^= TRUE;
5879 if (negative)
5880 subtract ^= TRUE;
5881
5882 oldn = n;
5883 if (subtract)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005884 n -= (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005885 else
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005886 n += (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005887 /* handle wraparound for decimal numbers */
5888 if (!pre)
5889 {
5890 if (subtract)
5891 {
5892 if (n > oldn)
5893 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005894 n = 1 + (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005895 negative ^= TRUE;
5896 }
5897 }
5898 else
5899 {
5900 /* add */
5901 if (n < oldn)
5902 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005903 n = (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005904 negative ^= TRUE;
5905 }
5906 }
5907 if (n == 0)
5908 negative = FALSE;
5909 }
5910
5911 if (visual && !was_positive && !negative && col > 0)
5912 {
5913 /* need to remove the '-' */
5914 col--;
5915 length++;
5916 }
5917
5918 /*
5919 * Delete the old number.
5920 */
5921 curwin->w_cursor.col = col;
5922 if (!did_change)
5923 startpos = curwin->w_cursor;
5924 did_change = TRUE;
5925 todel = length;
5926 c = gchar_cursor();
5927 /*
5928 * Don't include the '-' in the length, only the length of the
5929 * part after it is kept the same.
5930 */
5931 if (c == '-')
5932 --length;
5933 while (todel-- > 0)
5934 {
5935 if (c < 0x100 && isalpha(c))
5936 {
5937 if (isupper(c))
5938 hexupper = TRUE;
5939 else
5940 hexupper = FALSE;
5941 }
5942 /* del_char() will mark line needing displaying */
5943 (void)del_char(FALSE);
5944 c = gchar_cursor();
5945 }
5946
5947 /*
5948 * Prepare the leading characters in buf1[].
5949 * When there are many leading zeros it could be very long.
5950 * Allocate a bit too much.
5951 */
5952 buf1 = alloc((unsigned)length + NUMBUFLEN);
5953 if (buf1 == NULL)
5954 goto theend;
5955 ptr = buf1;
Bram Moolenaardc633cf2016-04-23 14:33:19 +02005956 if (negative && (!visual || was_positive))
Bram Moolenaard79e5502016-01-10 22:13:02 +01005957 {
5958 *ptr++ = '-';
5959 }
5960 if (pre)
5961 {
5962 *ptr++ = '0';
5963 --length;
5964 }
5965 if (pre == 'b' || pre == 'B' ||
5966 pre == 'x' || pre == 'X')
5967 {
5968 *ptr++ = pre;
5969 --length;
5970 }
5971
5972 /*
5973 * Put the number characters in buf2[].
5974 */
5975 if (pre == 'b' || pre == 'B')
5976 {
5977 int i;
5978 int bit = 0;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005979 int bits = sizeof(uvarnumber_T) * 8;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005980
5981 /* leading zeros */
5982 for (bit = bits; bit > 0; bit--)
5983 if ((n >> (bit - 1)) & 0x1) break;
5984
5985 for (i = 0; bit > 0; bit--)
5986 buf2[i++] = ((n >> (bit - 1)) & 0x1) ? '1' : '0';
5987
5988 buf2[i] = '\0';
5989 }
5990 else if (pre == 0)
Bram Moolenaarea391762018-04-08 13:07:22 +02005991 vim_snprintf((char *)buf2, NUMBUFLEN, "%llu",
5992 (long long unsigned)n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005993 else if (pre == '0')
Bram Moolenaarea391762018-04-08 13:07:22 +02005994 vim_snprintf((char *)buf2, NUMBUFLEN, "%llo",
5995 (long long unsigned)n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005996 else if (pre && hexupper)
Bram Moolenaarea391762018-04-08 13:07:22 +02005997 vim_snprintf((char *)buf2, NUMBUFLEN, "%llX",
5998 (long long unsigned)n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005999 else
Bram Moolenaarea391762018-04-08 13:07:22 +02006000 vim_snprintf((char *)buf2, NUMBUFLEN, "%llx",
6001 (long long unsigned)n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01006002 length -= (int)STRLEN(buf2);
6003
6004 /*
6005 * Adjust number of zeros to the new number of digits, so the
6006 * total length of the number remains the same.
6007 * Don't do this when
6008 * the result may look like an octal number.
6009 */
6010 if (firstdigit == '0' && !(dooct && pre == 0))
6011 while (length-- > 0)
6012 *ptr++ = '0';
6013 *ptr = NUL;
6014 STRCAT(buf1, buf2);
6015 ins_str(buf1); /* insert the new number */
6016 vim_free(buf1);
6017 endpos = curwin->w_cursor;
6018 if (did_change && curwin->w_cursor.col)
6019 --curwin->w_cursor.col;
6020 }
6021
Bram Moolenaara52dfae2016-01-10 20:21:57 +01006022 if (did_change)
6023 {
6024 /* set the '[ and '] marks */
6025 curbuf->b_op_start = startpos;
6026 curbuf->b_op_end = endpos;
6027 if (curbuf->b_op_end.col > 0)
6028 --curbuf->b_op_end.col;
6029 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01006030
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01006031theend:
6032 if (visual)
6033 curwin->w_cursor = save_cursor;
Bram Moolenaar8e081252016-03-21 23:13:32 +01006034 else if (did_change)
6035 curwin->w_set_curswant = TRUE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01006036
Bram Moolenaard79e5502016-01-10 22:13:02 +01006037 return did_change;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038}
6039
6040#ifdef FEAT_VIMINFO
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006041
6042static yankreg_T *y_read_regs = NULL;
6043
6044#define REG_PREVIOUS 1
6045#define REG_EXEC 2
6046
6047/*
6048 * Prepare for reading viminfo registers when writing viminfo later.
6049 */
6050 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02006051prepare_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006052{
6053 y_read_regs = (yankreg_T *)alloc_clear(NUM_REGISTERS
6054 * (int)sizeof(yankreg_T));
6055}
6056
6057 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02006058finish_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006059{
6060 int i;
6061 int j;
6062
6063 if (y_read_regs != NULL)
6064 {
6065 for (i = 0; i < NUM_REGISTERS; ++i)
6066 if (y_read_regs[i].y_array != NULL)
6067 {
6068 for (j = 0; j < y_read_regs[i].y_size; j++)
6069 vim_free(y_read_regs[i].y_array[j]);
6070 vim_free(y_read_regs[i].y_array);
6071 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01006072 VIM_CLEAR(y_read_regs);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006073 }
6074}
6075
Bram Moolenaar071d4272004-06-13 20:20:40 +00006076 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006077read_viminfo_register(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006078{
6079 int eof;
6080 int do_it = TRUE;
6081 int size;
6082 int limit;
6083 int i;
6084 int set_prev = FALSE;
6085 char_u *str;
6086 char_u **array = NULL;
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01006087 int new_type = MCHAR; /* init to shut up compiler */
6088 colnr_T new_width = 0; /* init to shut up compiler */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089
6090 /* We only get here (hopefully) if line[0] == '"' */
6091 str = virp->vir_line + 1;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006092
6093 /* If the line starts with "" this is the y_previous register. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006094 if (*str == '"')
6095 {
6096 set_prev = TRUE;
6097 str++;
6098 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00006099
Bram Moolenaar071d4272004-06-13 20:20:40 +00006100 if (!ASCII_ISALNUM(*str) && *str != '-')
6101 {
6102 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
6103 return TRUE; /* too many errors, pretend end-of-file */
6104 do_it = FALSE;
6105 }
6106 get_yank_register(*str++, FALSE);
6107 if (!force && y_current->y_array != NULL)
6108 do_it = FALSE;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006109
6110 if (*str == '@')
6111 {
6112 /* "x@: register x used for @@ */
6113 if (force || execreg_lastc == NUL)
6114 execreg_lastc = str[-1];
6115 }
6116
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117 size = 0;
6118 limit = 100; /* Optimized for registers containing <= 100 lines */
6119 if (do_it)
6120 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006121 /*
6122 * Build the new register in array[].
6123 * y_array is kept as-is until done.
6124 * The "do_it" flag is reset when something is wrong, in which case
6125 * array[] needs to be freed.
6126 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127 if (set_prev)
6128 y_previous = y_current;
Bram Moolenaare88b0032014-12-17 21:00:49 +01006129 array = (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
Bram Moolenaar42b94362009-05-26 16:12:37 +00006130 str = skipwhite(skiptowhite(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131 if (STRNCMP(str, "CHAR", 4) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006132 new_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133 else if (STRNCMP(str, "BLOCK", 5) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006134 new_type = MBLOCK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006135 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006136 new_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137 /* get the block width; if it's missing we get a zero, which is OK */
6138 str = skipwhite(skiptowhite(str));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006139 new_width = getdigits(&str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140 }
6141
6142 while (!(eof = viminfo_readline(virp))
6143 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
6144 {
6145 if (do_it)
6146 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006147 if (size == limit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006149 char_u **new_array = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006151
6152 if (new_array == NULL)
6153 {
6154 do_it = FALSE;
6155 break;
6156 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157 for (i = 0; i < limit; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006158 new_array[i] = array[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159 vim_free(array);
Bram Moolenaare88b0032014-12-17 21:00:49 +01006160 array = new_array;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161 limit *= 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162 }
6163 str = viminfo_readstring(virp, 1, TRUE);
6164 if (str != NULL)
6165 array[size++] = str;
6166 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006167 /* error, don't store the result */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006168 do_it = FALSE;
6169 }
6170 }
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01006171
Bram Moolenaar071d4272004-06-13 20:20:40 +00006172 if (do_it)
6173 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006174 /* free y_array[] */
6175 for (i = 0; i < y_current->y_size; i++)
6176 vim_free(y_current->y_array[i]);
6177 vim_free(y_current->y_array);
6178
6179 y_current->y_type = new_type;
6180 y_current->y_width = new_width;
6181 y_current->y_size = size;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006182 y_current->y_time_set = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006183 if (size == 0)
6184 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006185 y_current->y_array = NULL;
6186 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006187 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006189 /* Move the lines from array[] to y_array[]. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190 y_current->y_array =
6191 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
6192 for (i = 0; i < size; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006193 {
6194 if (y_current->y_array == NULL)
6195 vim_free(array[i]);
6196 else
6197 y_current->y_array[i] = array[i];
6198 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006200 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006201 else
6202 {
6203 /* Free array[] if it was filled. */
6204 for (i = 0; i < size; i++)
6205 vim_free(array[i]);
6206 }
6207 vim_free(array);
6208
Bram Moolenaar071d4272004-06-13 20:20:40 +00006209 return eof;
6210}
6211
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006212/*
6213 * Accept a new style register line from the viminfo, store it when it's new.
6214 */
6215 void
6216handle_viminfo_register(garray_T *values, int force)
6217{
6218 bval_T *vp = (bval_T *)values->ga_data;
6219 int flags;
6220 int name;
6221 int type;
6222 int linecount;
6223 int width;
6224 time_t timestamp;
6225 yankreg_T *y_ptr;
6226 int i;
6227
6228 /* Check the format:
6229 * |{bartype},{flags},{name},{type},
6230 * {linecount},{width},{timestamp},"line1","line2"
6231 */
6232 if (values->ga_len < 6
6233 || vp[0].bv_type != BVAL_NR
6234 || vp[1].bv_type != BVAL_NR
6235 || vp[2].bv_type != BVAL_NR
6236 || vp[3].bv_type != BVAL_NR
6237 || vp[4].bv_type != BVAL_NR
6238 || vp[5].bv_type != BVAL_NR)
6239 return;
6240 flags = vp[0].bv_nr;
6241 name = vp[1].bv_nr;
Bram Moolenaar67e37202016-06-14 21:32:28 +02006242 if (name < 0 || name >= NUM_REGISTERS)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006243 return;
6244 type = vp[2].bv_nr;
6245 if (type != MCHAR && type != MLINE && type != MBLOCK)
6246 return;
6247 linecount = vp[3].bv_nr;
6248 if (values->ga_len < 6 + linecount)
6249 return;
6250 width = vp[4].bv_nr;
6251 if (width < 0)
6252 return;
6253
6254 if (y_read_regs != NULL)
6255 /* Reading viminfo for merging and writing. Store the register
6256 * content, don't update the current registers. */
6257 y_ptr = &y_read_regs[name];
6258 else
6259 y_ptr = &y_regs[name];
6260
6261 /* Do not overwrite unless forced or the timestamp is newer. */
6262 timestamp = (time_t)vp[5].bv_nr;
6263 if (y_ptr->y_array != NULL && !force
6264 && (timestamp == 0 || y_ptr->y_time_set > timestamp))
6265 return;
6266
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02006267 if (y_ptr->y_array != NULL)
6268 for (i = 0; i < y_ptr->y_size; i++)
6269 vim_free(y_ptr->y_array[i]);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006270 vim_free(y_ptr->y_array);
6271
6272 if (y_read_regs == NULL)
6273 {
6274 if (flags & REG_PREVIOUS)
6275 y_previous = y_ptr;
6276 if ((flags & REG_EXEC) && (force || execreg_lastc == NUL))
6277 execreg_lastc = get_register_name(name);
6278 }
6279 y_ptr->y_type = type;
6280 y_ptr->y_width = width;
6281 y_ptr->y_size = linecount;
6282 y_ptr->y_time_set = timestamp;
6283 if (linecount == 0)
6284 y_ptr->y_array = NULL;
6285 else
6286 {
6287 y_ptr->y_array =
6288 (char_u **)alloc((unsigned)(linecount * sizeof(char_u *)));
6289 for (i = 0; i < linecount; i++)
6290 {
6291 if (vp[i + 6].bv_allocated)
6292 {
6293 y_ptr->y_array[i] = vp[i + 6].bv_string;
6294 vp[i + 6].bv_string = NULL;
6295 }
6296 else
6297 y_ptr->y_array[i] = vim_strsave(vp[i + 6].bv_string);
6298 }
6299 }
6300}
6301
Bram Moolenaar071d4272004-06-13 20:20:40 +00006302 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006303write_viminfo_registers(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006305 int i, j;
6306 char_u *type;
6307 char_u c;
6308 int num_lines;
6309 int max_num_lines;
6310 int max_kbyte;
6311 long len;
6312 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313
Bram Moolenaar64404472010-06-26 06:24:45 +02006314 fputs(_("\n# Registers:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315
6316 /* Get '<' value, use old '"' value if '<' is not found. */
6317 max_num_lines = get_viminfo_parameter('<');
6318 if (max_num_lines < 0)
6319 max_num_lines = get_viminfo_parameter('"');
6320 if (max_num_lines == 0)
6321 return;
6322 max_kbyte = get_viminfo_parameter('s');
6323 if (max_kbyte == 0)
6324 return;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006325
Bram Moolenaar071d4272004-06-13 20:20:40 +00006326 for (i = 0; i < NUM_REGISTERS; i++)
6327 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006328#ifdef FEAT_CLIPBOARD
6329 /* Skip '*'/'+' register, we don't want them back next time */
6330 if (i == STAR_REGISTER || i == PLUS_REGISTER)
6331 continue;
6332#endif
6333#ifdef FEAT_DND
6334 /* Neither do we want the '~' register */
6335 if (i == TILDE_REGISTER)
6336 continue;
6337#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006338 /* When reading viminfo for merging and writing: Use the register from
6339 * viminfo if it's newer. */
6340 if (y_read_regs != NULL
6341 && y_read_regs[i].y_array != NULL
6342 && (y_regs[i].y_array == NULL ||
6343 y_read_regs[i].y_time_set > y_regs[i].y_time_set))
6344 y_ptr = &y_read_regs[i];
6345 else if (y_regs[i].y_array == NULL)
6346 continue;
6347 else
6348 y_ptr = &y_regs[i];
6349
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006350 /* Skip empty registers. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006351 num_lines = y_ptr->y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006352 if (num_lines == 0
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006353 || (num_lines == 1 && y_ptr->y_type == MCHAR
6354 && *y_ptr->y_array[0] == NUL))
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006355 continue;
6356
Bram Moolenaar071d4272004-06-13 20:20:40 +00006357 if (max_kbyte > 0)
6358 {
6359 /* Skip register if there is more text than the maximum size. */
6360 len = 0;
6361 for (j = 0; j < num_lines; j++)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006362 len += (long)STRLEN(y_ptr->y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363 if (len > (long)max_kbyte * 1024L)
6364 continue;
6365 }
6366
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006367 switch (y_ptr->y_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368 {
6369 case MLINE:
6370 type = (char_u *)"LINE";
6371 break;
6372 case MCHAR:
6373 type = (char_u *)"CHAR";
6374 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375 case MBLOCK:
6376 type = (char_u *)"BLOCK";
6377 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006378 default:
6379 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006380 y_ptr->y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381 emsg(IObuff);
6382 type = (char_u *)"LINE";
6383 break;
6384 }
6385 if (y_previous == &y_regs[i])
6386 fprintf(fp, "\"");
6387 c = get_register_name(i);
Bram Moolenaar42b94362009-05-26 16:12:37 +00006388 fprintf(fp, "\"%c", c);
6389 if (c == execreg_lastc)
6390 fprintf(fp, "@");
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006391 fprintf(fp, "\t%s\t%d\n", type, (int)y_ptr->y_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006392
6393 /* If max_num_lines < 0, then we save ALL the lines in the register */
6394 if (max_num_lines > 0 && num_lines > max_num_lines)
6395 num_lines = max_num_lines;
6396 for (j = 0; j < num_lines; j++)
6397 {
6398 putc('\t', fp);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006399 viminfo_writestring(fp, y_ptr->y_array[j]);
6400 }
6401
6402 {
6403 int flags = 0;
6404 int remaining;
6405
6406 /* New style with a bar line. Format:
6407 * |{bartype},{flags},{name},{type},
6408 * {linecount},{width},{timestamp},"line1","line2"
6409 * flags: REG_PREVIOUS - register is y_previous
Bram Moolenaarf12519d2018-02-06 22:52:49 +01006410 * REG_EXEC - used for @@
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006411 */
6412 if (y_previous == &y_regs[i])
6413 flags |= REG_PREVIOUS;
6414 if (c == execreg_lastc)
6415 flags |= REG_EXEC;
6416 fprintf(fp, "|%d,%d,%d,%d,%d,%d,%ld", BARTYPE_REGISTER, flags,
6417 i, y_ptr->y_type, num_lines, (int)y_ptr->y_width,
6418 (long)y_ptr->y_time_set);
6419 /* 11 chars for type/flags/name/type, 3 * 20 for numbers */
6420 remaining = LSIZE - 71;
6421 for (j = 0; j < num_lines; j++)
6422 {
6423 putc(',', fp);
6424 --remaining;
6425 remaining = barline_writestring(fp, y_ptr->y_array[j],
6426 remaining);
6427 }
6428 putc('\n', fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429 }
6430 }
6431}
6432#endif /* FEAT_VIMINFO */
6433
6434#if defined(FEAT_CLIPBOARD) || defined(PROTO)
6435/*
6436 * SELECTION / PRIMARY ('*')
6437 *
6438 * Text selection stuff that uses the GUI selection register '*'. When using a
6439 * GUI this may be text from another window, otherwise it is the last text we
6440 * had highlighted with VIsual mode. With mouse support, clicking the middle
6441 * button performs the paste, otherwise you will need to do <"*p>. "
6442 * If not under X, it is synonymous with the clipboard register '+'.
6443 *
6444 * X CLIPBOARD ('+')
6445 *
6446 * Text selection stuff that uses the GUI clipboard register '+'.
6447 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
6448 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
6449 * otherwise you will need to do <"+p>. "
6450 * If not under X, it is synonymous with the selection register '*'.
6451 */
6452
6453/*
6454 * Routine to export any final X selection we had to the environment
Bram Moolenaarf58a8472017-03-05 18:03:04 +01006455 * so that the text is still available after Vim has exited. X selections
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456 * only exist while the owning application exists, so we write to the
6457 * permanent (while X runs) store CUT_BUFFER0.
6458 * Dump the CLIPBOARD selection if we own it (it's logically the more
6459 * 'permanent' of the two), otherwise the PRIMARY one.
6460 * For now, use a hard-coded sanity limit of 1Mb of data.
6461 */
Bram Moolenaara6b7a082016-08-10 20:53:05 +02006462#if (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006463 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006464x11_export_final_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006465{
6466 Display *dpy;
6467 char_u *str = NULL;
6468 long_u len = 0;
6469 int motion_type = -1;
6470
6471# ifdef FEAT_GUI
6472 if (gui.in_use)
6473 dpy = X_DISPLAY;
6474 else
6475# endif
6476# ifdef FEAT_XCLIPBOARD
6477 dpy = xterm_dpy;
6478# else
6479 return;
6480# endif
6481
6482 /* Get selection to export */
6483 if (clip_plus.owned)
6484 motion_type = clip_convert_selection(&str, &len, &clip_plus);
6485 else if (clip_star.owned)
6486 motion_type = clip_convert_selection(&str, &len, &clip_star);
6487
6488 /* Check it's OK */
6489 if (dpy != NULL && str != NULL && motion_type >= 0
6490 && len < 1024*1024 && len > 0)
6491 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006492#ifdef FEAT_MBYTE
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006493 int ok = TRUE;
6494
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006495 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
6496 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
6497 * encoding conversion usually doesn't work, so keep the text as-is.
6498 */
6499 if (has_mbyte)
6500 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006501 vimconv_T vc;
6502
6503 vc.vc_type = CONV_NONE;
6504 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
6505 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01006506 int intlen = len;
6507 char_u *conv_str;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006508
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006509 vc.vc_fail = TRUE;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006510 conv_str = string_convert(&vc, str, &intlen);
6511 len = intlen;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006512 if (conv_str != NULL)
6513 {
6514 vim_free(str);
6515 str = conv_str;
6516 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006517 else
6518 {
6519 ok = FALSE;
6520 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006521 convert_setup(&vc, NULL, NULL);
6522 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006523 else
6524 {
6525 ok = FALSE;
6526 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006527 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006528
6529 /* Do not store the string if conversion failed. Better to use any
6530 * other selection than garbled text. */
6531 if (ok)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006532#endif
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006533 {
6534 XStoreBuffer(dpy, (char *)str, (int)len, 0);
6535 XFlush(dpy);
6536 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006537 }
6538
6539 vim_free(str);
6540}
6541#endif
6542
6543 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006544clip_free_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006545{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006546 yankreg_T *y_ptr = y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006547
6548 if (cbd == &clip_plus)
6549 y_current = &y_regs[PLUS_REGISTER];
6550 else
6551 y_current = &y_regs[STAR_REGISTER];
6552 free_yank_all();
6553 y_current->y_size = 0;
6554 y_current = y_ptr;
6555}
6556
6557/*
6558 * Get the selected text and put it in the gui selection register '*' or '+'.
6559 */
6560 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006561clip_get_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006562{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006563 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006564 pos_T old_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006565 pos_T old_visual;
6566 int old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006567 colnr_T old_curswant;
6568 int old_set_curswant;
6569 pos_T old_op_start, old_op_end;
6570 oparg_T oa;
6571 cmdarg_T ca;
6572
6573 if (cbd->owned)
6574 {
6575 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
6576 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
6577 return;
6578
6579 /* Get the text between clip_star.start & clip_star.end */
6580 old_y_previous = y_previous;
6581 old_y_current = y_current;
6582 old_cursor = curwin->w_cursor;
6583 old_curswant = curwin->w_curswant;
6584 old_set_curswant = curwin->w_set_curswant;
6585 old_op_start = curbuf->b_op_start;
6586 old_op_end = curbuf->b_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587 old_visual = VIsual;
6588 old_visual_mode = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006589 clear_oparg(&oa);
6590 oa.regname = (cbd == &clip_plus ? '+' : '*');
6591 oa.op_type = OP_YANK;
6592 vim_memset(&ca, 0, sizeof(ca));
6593 ca.oap = &oa;
6594 ca.cmdchar = 'y';
6595 ca.count1 = 1;
6596 ca.retval = CA_NO_ADJ_OP_END;
6597 do_pending_operator(&ca, 0, TRUE);
6598 y_previous = old_y_previous;
6599 y_current = old_y_current;
6600 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006601 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006602 curwin->w_curswant = old_curswant;
6603 curwin->w_set_curswant = old_set_curswant;
6604 curbuf->b_op_start = old_op_start;
6605 curbuf->b_op_end = old_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006606 VIsual = old_visual;
6607 VIsual_mode = old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006608 }
Bram Moolenaar3fcfa352017-03-29 19:20:41 +02006609 else if (!is_clipboard_needs_update())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006610 {
6611 clip_free_selection(cbd);
6612
6613 /* Try to get selected text from another window */
6614 clip_gen_request_selection(cbd);
6615 }
6616}
6617
Bram Moolenaard44347f2011-06-19 01:14:29 +02006618/*
6619 * Convert from the GUI selection string into the '*'/'+' register.
6620 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006622clip_yank_selection(
6623 int type,
6624 char_u *str,
6625 long len,
6626 VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006627{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006628 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006629
6630 if (cbd == &clip_plus)
6631 y_ptr = &y_regs[PLUS_REGISTER];
6632 else
6633 y_ptr = &y_regs[STAR_REGISTER];
6634
6635 clip_free_selection(cbd);
6636
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006637 str_to_reg(y_ptr, type, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006638}
6639
6640/*
6641 * Convert the '*'/'+' register into a GUI selection string returned in *str
6642 * with length *len.
6643 * Returns the motion type, or -1 for failure.
6644 */
6645 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006646clip_convert_selection(char_u **str, long_u *len, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006647{
6648 char_u *p;
6649 int lnum;
6650 int i, j;
6651 int_u eolsize;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006652 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006653
6654 if (cbd == &clip_plus)
6655 y_ptr = &y_regs[PLUS_REGISTER];
6656 else
6657 y_ptr = &y_regs[STAR_REGISTER];
6658
6659#ifdef USE_CRNL
6660 eolsize = 2;
6661#else
6662 eolsize = 1;
6663#endif
6664
6665 *str = NULL;
6666 *len = 0;
6667 if (y_ptr->y_array == NULL)
6668 return -1;
6669
6670 for (i = 0; i < y_ptr->y_size; i++)
6671 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
6672
6673 /*
6674 * Don't want newline character at end of last line if we're in MCHAR mode.
6675 */
6676 if (y_ptr->y_type == MCHAR && *len >= eolsize)
6677 *len -= eolsize;
6678
6679 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
6680 if (p == NULL)
6681 return -1;
6682 lnum = 0;
6683 for (i = 0, j = 0; i < (int)*len; i++, j++)
6684 {
6685 if (y_ptr->y_array[lnum][j] == '\n')
6686 p[i] = NUL;
6687 else if (y_ptr->y_array[lnum][j] == NUL)
6688 {
6689#ifdef USE_CRNL
6690 p[i++] = '\r';
6691#endif
6692#ifdef USE_CR
6693 p[i] = '\r';
6694#else
6695 p[i] = '\n';
6696#endif
6697 lnum++;
6698 j = -1;
6699 }
6700 else
6701 p[i] = y_ptr->y_array[lnum][j];
6702 }
6703 return y_ptr->y_type;
6704}
6705
6706
Bram Moolenaar071d4272004-06-13 20:20:40 +00006707/*
6708 * If we have written to a clipboard register, send the text to the clipboard.
6709 */
6710 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006711may_set_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712{
6713 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
6714 {
6715 clip_own_selection(&clip_star);
6716 clip_gen_set_selection(&clip_star);
6717 }
6718 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
6719 {
6720 clip_own_selection(&clip_plus);
6721 clip_gen_set_selection(&clip_plus);
6722 }
6723}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006724
6725#endif /* FEAT_CLIPBOARD || PROTO */
6726
6727
6728#if defined(FEAT_DND) || defined(PROTO)
6729/*
6730 * Replace the contents of the '~' register with str.
6731 */
6732 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006733dnd_yank_drag_data(char_u *str, long len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006735 yankreg_T *curr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006736
6737 curr = y_current;
6738 y_current = &y_regs[TILDE_REGISTER];
6739 free_yank_all();
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006740 str_to_reg(y_current, MCHAR, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741 y_current = curr;
6742}
6743#endif
6744
6745
6746#if defined(FEAT_EVAL) || defined(PROTO)
6747/*
6748 * Return the type of a register.
6749 * Used for getregtype()
6750 * Returns MAUTO for error.
6751 */
6752 char_u
Bram Moolenaar9b578142016-01-30 19:39:49 +01006753get_reg_type(int regname, long *reglen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006754{
6755 switch (regname)
6756 {
6757 case '%': /* file name */
6758 case '#': /* alternate file name */
6759 case '=': /* expression */
6760 case ':': /* last command line */
6761 case '/': /* last search-pattern */
6762 case '.': /* last inserted text */
6763#ifdef FEAT_SEARCHPATH
6764 case Ctrl_F: /* Filename under cursor */
6765 case Ctrl_P: /* Path under cursor, expand via "path" */
6766#endif
6767 case Ctrl_W: /* word under cursor */
6768 case Ctrl_A: /* WORD (mnemonic All) under cursor */
6769 case '_': /* black hole: always empty */
6770 return MCHAR;
6771 }
6772
6773#ifdef FEAT_CLIPBOARD
6774 regname = may_get_selection(regname);
6775#endif
6776
Bram Moolenaar32b92012014-01-14 12:33:36 +01006777 if (regname != NUL && !valid_yank_reg(regname, FALSE))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006778 return MAUTO;
Bram Moolenaar32b92012014-01-14 12:33:36 +01006779
Bram Moolenaar071d4272004-06-13 20:20:40 +00006780 get_yank_register(regname, FALSE);
6781
6782 if (y_current->y_array != NULL)
6783 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006784 if (reglen != NULL && y_current->y_type == MBLOCK)
6785 *reglen = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006786 return y_current->y_type;
6787 }
6788 return MAUTO;
6789}
6790
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01006791static char_u *getreg_wrap_one_line(char_u *s, int flags);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006792
6793/*
6794 * When "flags" has GREG_LIST return a list with text "s".
6795 * Otherwise just return "s".
6796 */
6797 static char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006798getreg_wrap_one_line(char_u *s, int flags)
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006799{
6800 if (flags & GREG_LIST)
6801 {
6802 list_T *list = list_alloc();
6803
6804 if (list != NULL)
6805 {
6806 if (list_append_string(list, NULL, -1) == FAIL)
6807 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006808 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006809 return NULL;
6810 }
6811 list->lv_first->li_tv.vval.v_string = s;
6812 }
6813 return (char_u *)list;
6814 }
6815 return s;
6816}
6817
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818/*
6819 * Return the contents of a register as a single allocated string.
6820 * Used for "@r" in expressions and for getreg().
6821 * Returns NULL for error.
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006822 * Flags:
6823 * GREG_NO_EXPR Do not allow expression register
6824 * GREG_EXPR_SRC For the expression register: return expression itself,
6825 * not the result of its evaluation.
6826 * GREG_LIST Return a list of lines in place of a single string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006827 */
6828 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006829get_reg_contents(int regname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006830{
6831 long i;
6832 char_u *retval;
6833 int allocated;
6834 long len;
6835
6836 /* Don't allow using an expression register inside an expression */
6837 if (regname == '=')
6838 {
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006839 if (flags & GREG_NO_EXPR)
6840 return NULL;
6841 if (flags & GREG_EXPR_SRC)
6842 return getreg_wrap_one_line(get_expr_line_src(), flags);
6843 return getreg_wrap_one_line(get_expr_line(), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006844 }
6845
6846 if (regname == '@') /* "@@" is used for unnamed register */
6847 regname = '"';
6848
6849 /* check for valid regname */
6850 if (regname != NUL && !valid_yank_reg(regname, FALSE))
6851 return NULL;
6852
6853#ifdef FEAT_CLIPBOARD
6854 regname = may_get_selection(regname);
6855#endif
6856
6857 if (get_spec_reg(regname, &retval, &allocated, FALSE))
6858 {
6859 if (retval == NULL)
6860 return NULL;
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006861 if (allocated)
6862 return getreg_wrap_one_line(retval, flags);
6863 return getreg_wrap_one_line(vim_strsave(retval), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864 }
6865
6866 get_yank_register(regname, FALSE);
6867 if (y_current->y_array == NULL)
6868 return NULL;
6869
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006870 if (flags & GREG_LIST)
6871 {
6872 list_T *list = list_alloc();
6873 int error = FALSE;
6874
6875 if (list == NULL)
6876 return NULL;
6877 for (i = 0; i < y_current->y_size; ++i)
6878 if (list_append_string(list, y_current->y_array[i], -1) == FAIL)
6879 error = TRUE;
6880 if (error)
6881 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006882 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006883 return NULL;
6884 }
6885 return (char_u *)list;
6886 }
6887
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888 /*
6889 * Compute length of resulting string.
6890 */
6891 len = 0;
6892 for (i = 0; i < y_current->y_size; ++i)
6893 {
6894 len += (long)STRLEN(y_current->y_array[i]);
6895 /*
6896 * Insert a newline between lines and after last line if
6897 * y_type is MLINE.
6898 */
6899 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6900 ++len;
6901 }
6902
6903 retval = lalloc(len + 1, TRUE);
6904
6905 /*
6906 * Copy the lines of the yank register into the string.
6907 */
6908 if (retval != NULL)
6909 {
6910 len = 0;
6911 for (i = 0; i < y_current->y_size; ++i)
6912 {
6913 STRCPY(retval + len, y_current->y_array[i]);
6914 len += (long)STRLEN(retval + len);
6915
6916 /*
6917 * Insert a NL between lines and after the last line if y_type is
6918 * MLINE.
6919 */
6920 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6921 retval[len++] = '\n';
6922 }
6923 retval[len] = NUL;
6924 }
6925
6926 return retval;
6927}
6928
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006929 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006930init_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006931 int name,
6932 yankreg_T **old_y_previous,
6933 yankreg_T **old_y_current,
6934 int must_append,
6935 int *yank_type UNUSED)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006936{
6937 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6938 {
6939 emsg_invreg(name);
6940 return FAIL;
6941 }
6942
6943 /* Don't want to change the current (unnamed) register */
6944 *old_y_previous = y_previous;
6945 *old_y_current = y_current;
6946
6947 get_yank_register(name, TRUE);
6948 if (!y_append && !must_append)
6949 free_yank_all();
6950 return OK;
6951}
6952
6953 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006954finish_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006955 int name,
6956 yankreg_T *old_y_previous,
6957 yankreg_T *old_y_current)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006958{
6959# ifdef FEAT_CLIPBOARD
6960 /* Send text of clipboard register to the clipboard. */
6961 may_set_selection();
6962# endif
6963
6964 /* ':let @" = "val"' should change the meaning of the "" register */
6965 if (name != '"')
6966 y_previous = old_y_previous;
6967 y_current = old_y_current;
6968}
6969
Bram Moolenaar071d4272004-06-13 20:20:40 +00006970/*
6971 * Store string "str" in register "name".
6972 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
6973 * If "must_append" is TRUE, always append to the register. Otherwise append
6974 * if "name" is an uppercase letter.
6975 * Note: "maxlen" and "must_append" don't work for the "/" register.
6976 * Careful: 'str' is modified, you may have to use a copy!
6977 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
6978 */
6979 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006980write_reg_contents(
6981 int name,
6982 char_u *str,
6983 int maxlen,
6984 int must_append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006985{
6986 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
6987}
6988
6989 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006990write_reg_contents_lst(
6991 int name,
6992 char_u **strings,
6993 int maxlen UNUSED,
6994 int must_append,
6995 int yank_type,
6996 long block_len)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006997{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006998 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006999
7000 if (name == '/'
7001#ifdef FEAT_EVAL
7002 || name == '='
7003#endif
7004 )
7005 {
7006 char_u *s;
7007
7008 if (strings[0] == NULL)
7009 s = (char_u *)"";
7010 else if (strings[1] != NULL)
7011 {
7012 EMSG(_("E883: search pattern and expression register may not "
7013 "contain two or more lines"));
7014 return;
7015 }
7016 else
7017 s = strings[0];
7018 write_reg_contents_ex(name, s, -1, must_append, yank_type, block_len);
7019 return;
7020 }
7021
7022 if (name == '_') /* black hole: nothing to do */
7023 return;
7024
7025 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
7026 &yank_type) == FAIL)
7027 return;
7028
7029 str_to_reg(y_current, yank_type, (char_u *) strings, -1, block_len, TRUE);
7030
7031 finish_write_reg(name, old_y_previous, old_y_current);
7032}
7033
7034 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007035write_reg_contents_ex(
7036 int name,
7037 char_u *str,
7038 int maxlen,
7039 int must_append,
7040 int yank_type,
7041 long block_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007042{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007043 yankreg_T *old_y_previous, *old_y_current;
7044 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007045
Bram Moolenaare7566042005-06-17 22:00:15 +00007046 if (maxlen >= 0)
7047 len = maxlen;
7048 else
7049 len = (long)STRLEN(str);
7050
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051 /* Special case: '/' search pattern */
7052 if (name == '/')
7053 {
7054 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
7055 return;
7056 }
7057
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01007058 if (name == '#')
7059 {
7060 buf_T *buf;
7061
7062 if (VIM_ISDIGIT(*str))
7063 {
7064 int num = atoi((char *)str);
7065
7066 buf = buflist_findnr(num);
7067 if (buf == NULL)
7068 EMSGN(_(e_nobufnr), (long)num);
7069 }
7070 else
7071 buf = buflist_findnr(buflist_findpat(str, str + STRLEN(str),
7072 TRUE, FALSE, FALSE));
7073 if (buf == NULL)
7074 return;
7075 curwin->w_alt_fnum = buf->b_fnum;
7076 return;
7077 }
7078
Bram Moolenaare7566042005-06-17 22:00:15 +00007079#ifdef FEAT_EVAL
7080 if (name == '=')
7081 {
7082 char_u *p, *s;
7083
7084 p = vim_strnsave(str, (int)len);
7085 if (p == NULL)
7086 return;
7087 if (must_append)
7088 {
7089 s = concat_str(get_expr_line_src(), p);
7090 vim_free(p);
7091 p = s;
Bram Moolenaare7566042005-06-17 22:00:15 +00007092 }
7093 set_expr_line(p);
7094 return;
7095 }
7096#endif
7097
Bram Moolenaar071d4272004-06-13 20:20:40 +00007098 if (name == '_') /* black hole: nothing to do */
7099 return;
7100
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007101 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
7102 &yank_type) == FAIL)
7103 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007104
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007105 str_to_reg(y_current, yank_type, str, len, block_len, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007106
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007107 finish_write_reg(name, old_y_previous, old_y_current);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108}
7109#endif /* FEAT_EVAL */
7110
7111#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
7112/*
7113 * Put a string into a register. When the register is not empty, the string
7114 * is appended.
7115 */
7116 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007117str_to_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007118 yankreg_T *y_ptr, /* pointer to yank register */
7119 int yank_type, /* MCHAR, MLINE, MBLOCK, MAUTO */
7120 char_u *str, /* string to put in register */
7121 long len, /* length of string */
7122 long blocklen, /* width of Visual block */
7123 int str_list) /* TRUE if str is char_u ** */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007124{
Bram Moolenaard44347f2011-06-19 01:14:29 +02007125 int type; /* MCHAR, MLINE or MBLOCK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126 int lnum;
7127 long start;
7128 long i;
7129 int extra;
7130 int newlines; /* number of lines added */
7131 int extraline = 0; /* extra line at the end */
7132 int append = FALSE; /* append to last line in register */
7133 char_u *s;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007134 char_u **ss;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007135 char_u **pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007136 long maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007137
Bram Moolenaarcde547a2009-11-17 11:43:06 +00007138 if (y_ptr->y_array == NULL) /* NULL means empty register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007139 y_ptr->y_size = 0;
7140
Bram Moolenaard44347f2011-06-19 01:14:29 +02007141 if (yank_type == MAUTO)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007142 type = ((str_list || (len > 0 && (str[len - 1] == NL
7143 || str[len - 1] == CAR)))
Bram Moolenaard44347f2011-06-19 01:14:29 +02007144 ? MLINE : MCHAR);
7145 else
7146 type = yank_type;
7147
Bram Moolenaar071d4272004-06-13 20:20:40 +00007148 /*
7149 * Count the number of lines within the string
7150 */
7151 newlines = 0;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007152 if (str_list)
7153 {
7154 for (ss = (char_u **) str; *ss != NULL; ++ss)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007155 ++newlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007156 }
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007157 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007158 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007159 for (i = 0; i < len; i++)
7160 if (str[i] == '\n')
7161 ++newlines;
7162 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
7163 {
7164 extraline = 1;
7165 ++newlines; /* count extra newline at the end */
7166 }
7167 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
7168 {
7169 append = TRUE;
7170 --newlines; /* uncount newline when appending first line */
7171 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007172 }
7173
Bram Moolenaar659c94d2015-05-04 20:19:21 +02007174 /* Without any lines make the register empty. */
7175 if (y_ptr->y_size + newlines == 0)
7176 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01007177 VIM_CLEAR(y_ptr->y_array);
Bram Moolenaar659c94d2015-05-04 20:19:21 +02007178 return;
7179 }
7180
Bram Moolenaar071d4272004-06-13 20:20:40 +00007181 /*
7182 * Allocate an array to hold the pointers to the new register lines.
7183 * If the register was not empty, move the existing lines to the new array.
7184 */
7185 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
7186 * sizeof(char_u *), TRUE);
7187 if (pp == NULL) /* out of memory */
7188 return;
7189 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
7190 pp[lnum] = y_ptr->y_array[lnum];
7191 vim_free(y_ptr->y_array);
7192 y_ptr->y_array = pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007193 maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007194
7195 /*
7196 * Find the end of each line and save it into the array.
7197 */
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007198 if (str_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007199 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007200 for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum)
7201 {
Bram Moolenaar121f9bd2014-04-29 15:55:43 +02007202 i = (long)STRLEN(*ss);
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007203 pp[lnum] = vim_strnsave(*ss, i);
7204 if (i > maxlen)
7205 maxlen = i;
7206 }
7207 }
7208 else
7209 {
7210 for (start = 0; start < len + extraline; start += i + 1)
7211 {
7212 for (i = start; i < len; ++i) /* find the end of the line */
7213 if (str[i] == '\n')
7214 break;
7215 i -= start; /* i is now length of line */
7216 if (i > maxlen)
7217 maxlen = i;
7218 if (append)
7219 {
7220 --lnum;
7221 extra = (int)STRLEN(y_ptr->y_array[lnum]);
7222 }
7223 else
7224 extra = 0;
7225 s = alloc((unsigned)(i + extra + 1));
7226 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007227 break;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007228 if (extra)
7229 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
7230 if (append)
7231 vim_free(y_ptr->y_array[lnum]);
7232 if (i)
7233 mch_memmove(s + extra, str + start, (size_t)i);
7234 extra += i;
7235 s[extra] = NUL;
7236 y_ptr->y_array[lnum++] = s;
7237 while (--extra >= 0)
7238 {
7239 if (*s == NUL)
7240 *s = '\n'; /* replace NUL with newline */
7241 ++s;
7242 }
7243 append = FALSE; /* only first line is appended */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007244 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007245 }
7246 y_ptr->y_type = type;
7247 y_ptr->y_size = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007248 if (type == MBLOCK)
7249 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
7250 else
7251 y_ptr->y_width = 0;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007252#ifdef FEAT_VIMINFO
7253 y_ptr->y_time_set = vim_time();
7254#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007255}
7256#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
7257
7258 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007259clear_oparg(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007260{
7261 vim_memset(oap, 0, sizeof(oparg_T));
7262}
7263
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007264static 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 +00007265
7266/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00007267 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007268 *
7269 * "Words" are counted by looking for boundaries between non-space and
7270 * space characters. (it seems to produce results that match 'wc'.)
7271 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00007272 * Return value is byte count; word count for the line is added to "*wc".
7273 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007274 *
7275 * The function will only examine the first "limit" characters in the
7276 * line, stopping if it encounters an end-of-line (NUL byte). In that
7277 * case, eol_size will be added to the character count to account for
7278 * the size of the EOL character.
7279 */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007280 static varnumber_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01007281line_count_info(
7282 char_u *line,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007283 varnumber_T *wc,
7284 varnumber_T *cc,
7285 varnumber_T limit,
Bram Moolenaar9b578142016-01-30 19:39:49 +01007286 int eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007287{
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007288 varnumber_T i;
7289 varnumber_T words = 0;
7290 varnumber_T chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007291 int is_word = 0;
7292
Bram Moolenaar88b1ba12012-06-29 13:34:19 +02007293 for (i = 0; i < limit && line[i] != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007294 {
7295 if (is_word)
7296 {
7297 if (vim_isspace(line[i]))
7298 {
7299 words++;
7300 is_word = 0;
7301 }
7302 }
7303 else if (!vim_isspace(line[i]))
7304 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007305 ++chars;
7306#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007307 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00007308#else
7309 ++i;
7310#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007311 }
7312
7313 if (is_word)
7314 words++;
7315 *wc += words;
7316
7317 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar1cb7e092011-08-10 12:11:01 +02007318 if (i < limit && line[i] == NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007319 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007320 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007321 chars += eol_size;
7322 }
7323 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007324 return i;
7325}
7326
7327/*
7328 * Give some info about the position of the cursor (for "g CTRL-G").
7329 * In Visual mode, give some info about the selected region. (In this case,
7330 * the *_count_cursor variables store running totals for the selection.)
Bram Moolenaared767a22016-01-03 22:49:16 +01007331 * When "dict" is not NULL store the info there instead of showing it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007332 */
7333 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007334cursor_pos_info(dict_T *dict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007335{
7336 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007337 char_u buf1[50];
7338 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339 linenr_T lnum;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007340 varnumber_T byte_count = 0;
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007341#ifdef FEAT_MBYTE
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007342 varnumber_T bom_count = 0;
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007343#endif
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007344 varnumber_T byte_count_cursor = 0;
7345 varnumber_T char_count = 0;
7346 varnumber_T char_count_cursor = 0;
7347 varnumber_T word_count = 0;
7348 varnumber_T word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007349 int eol_size;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007350 varnumber_T last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007351 long line_count_selected = 0;
7352 pos_T min_pos, max_pos;
7353 oparg_T oparg;
7354 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007355
7356 /*
7357 * Compute the length of the file in characters.
7358 */
7359 if (curbuf->b_ml.ml_flags & ML_EMPTY)
7360 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007361 if (dict == NULL)
7362 {
7363 MSG(_(no_lines_msg));
7364 return;
7365 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007366 }
7367 else
7368 {
7369 if (get_fileformat(curbuf) == EOL_DOS)
7370 eol_size = 2;
7371 else
7372 eol_size = 1;
7373
Bram Moolenaar071d4272004-06-13 20:20:40 +00007374 if (VIsual_active)
7375 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007376 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007377 {
7378 min_pos = VIsual;
7379 max_pos = curwin->w_cursor;
7380 }
7381 else
7382 {
7383 min_pos = curwin->w_cursor;
7384 max_pos = VIsual;
7385 }
7386 if (*p_sel == 'e' && max_pos.col > 0)
7387 --max_pos.col;
7388
7389 if (VIsual_mode == Ctrl_V)
7390 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00007391#ifdef FEAT_LINEBREAK
7392 char_u * saved_sbr = p_sbr;
7393
7394 /* Make 'sbr' empty for a moment to get the correct size. */
7395 p_sbr = empty_option;
7396#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007397 oparg.is_VIsual = 1;
7398 oparg.block_mode = TRUE;
7399 oparg.op_type = OP_NOP;
7400 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007401 &oparg.start_vcol, &oparg.end_vcol);
Bram Moolenaar81d00072009-04-29 15:41:40 +00007402#ifdef FEAT_LINEBREAK
7403 p_sbr = saved_sbr;
7404#endif
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007405 if (curwin->w_curswant == MAXCOL)
7406 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007407 /* Swap the start, end vcol if needed */
7408 if (oparg.end_vcol < oparg.start_vcol)
7409 {
7410 oparg.end_vcol += oparg.start_vcol;
7411 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
7412 oparg.end_vcol -= oparg.start_vcol;
7413 }
7414 }
7415 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
7416 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007417
7418 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
7419 {
7420 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007421 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007422 {
7423 ui_breakcheck();
7424 if (got_int)
7425 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007426 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007427 }
7428
Bram Moolenaar071d4272004-06-13 20:20:40 +00007429 /* Do extra processing for VIsual mode. */
7430 if (VIsual_active
7431 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
7432 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00007433 char_u *s = NULL;
7434 long len = 0L;
7435
Bram Moolenaar071d4272004-06-13 20:20:40 +00007436 switch (VIsual_mode)
7437 {
7438 case Ctrl_V:
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007439#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007440 virtual_op = virtual_active();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007441#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007442 block_prep(&oparg, &bd, lnum, 0);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007443#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007444 virtual_op = MAYBE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007445#endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00007446 s = bd.textstart;
7447 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007448 break;
7449 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00007450 s = ml_get(lnum);
7451 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007452 break;
7453 case 'v':
7454 {
7455 colnr_T start_col = (lnum == min_pos.lnum)
7456 ? min_pos.col : 0;
7457 colnr_T end_col = (lnum == max_pos.lnum)
7458 ? max_pos.col - start_col + 1 : MAXCOL;
7459
Bram Moolenaardef9e822004-12-31 20:58:58 +00007460 s = ml_get(lnum) + start_col;
7461 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007462 }
7463 break;
7464 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00007465 if (s != NULL)
7466 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00007467 byte_count_cursor += line_count_info(s, &word_count_cursor,
7468 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00007469 if (lnum == curbuf->b_ml.ml_line_count
7470 && !curbuf->b_p_eol
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007471 && (curbuf->b_p_bin || !curbuf->b_p_fixeol)
Bram Moolenaarec2dad62005-01-02 11:36:03 +00007472 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007473 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00007474 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007475 }
7476 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007477 {
7478 /* In non-visual mode, check for the line the cursor is on */
7479 if (lnum == curwin->w_cursor.lnum)
7480 {
7481 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007482 char_count_cursor += char_count;
7483 byte_count_cursor = byte_count +
7484 line_count_info(ml_get(lnum),
7485 &word_count_cursor, &char_count_cursor,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007486 (varnumber_T)(curwin->w_cursor.col + 1),
7487 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007488 }
7489 }
7490 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007491 byte_count += line_count_info(ml_get(lnum), &word_count,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007492 &char_count, (varnumber_T)MAXCOL,
7493 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007494 }
7495
7496 /* Correction for when last line doesn't have an EOL. */
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007497 if (!curbuf->b_p_eol && (curbuf->b_p_bin || !curbuf->b_p_fixeol))
Bram Moolenaar7c626922005-02-07 22:01:03 +00007498 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007499
Bram Moolenaared767a22016-01-03 22:49:16 +01007500 if (dict == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007501 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007502 if (VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007503 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007504 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
7505 {
7506 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
7507 &max_pos.col);
7508 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
7509 (long)(oparg.end_vcol - oparg.start_vcol + 1));
7510 }
7511 else
7512 buf1[0] = NUL;
7513
7514 if (char_count_cursor == byte_count_cursor
7515 && char_count == byte_count)
7516 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007517 _("Selected %s%ld of %ld Lines; %lld of %lld Words; %lld of %lld Bytes"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007518 buf1, line_count_selected,
7519 (long)curbuf->b_ml.ml_line_count,
Bram Moolenaarea391762018-04-08 13:07:22 +02007520 (long long)word_count_cursor,
7521 (long long)word_count,
7522 (long long)byte_count_cursor,
7523 (long long)byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007524 else
7525 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007526 _("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 +01007527 buf1, line_count_selected,
7528 (long)curbuf->b_ml.ml_line_count,
Bram Moolenaarea391762018-04-08 13:07:22 +02007529 (long long)word_count_cursor,
7530 (long long)word_count,
7531 (long long)char_count_cursor,
7532 (long long)char_count,
7533 (long long)byte_count_cursor,
7534 (long long)byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007535 }
7536 else
Bram Moolenaared767a22016-01-03 22:49:16 +01007537 {
7538 p = ml_get_curline();
7539 validate_virtcol();
7540 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
7541 (int)curwin->w_virtcol + 1);
7542 col_print(buf2, sizeof(buf2), (int)STRLEN(p),
7543 linetabsize(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007544
Bram Moolenaared767a22016-01-03 22:49:16 +01007545 if (char_count_cursor == byte_count_cursor
7546 && char_count == byte_count)
7547 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007548 _("Col %s of %s; Line %ld of %ld; Word %lld of %lld; Byte %lld of %lld"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007549 (char *)buf1, (char *)buf2,
7550 (long)curwin->w_cursor.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007551 (long)curbuf->b_ml.ml_line_count,
Bram Moolenaarea391762018-04-08 13:07:22 +02007552 (long long)word_count_cursor, (long long)word_count,
7553 (long long)byte_count_cursor, (long long)byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007554 else
7555 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007556 _("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 +01007557 (char *)buf1, (char *)buf2,
7558 (long)curwin->w_cursor.lnum,
Bram Moolenaar7c626922005-02-07 22:01:03 +00007559 (long)curbuf->b_ml.ml_line_count,
Bram Moolenaarea391762018-04-08 13:07:22 +02007560 (long long)word_count_cursor, (long long)word_count,
7561 (long long)char_count_cursor, (long long)char_count,
7562 (long long)byte_count_cursor, (long long)byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007563 }
7564 }
7565
Bram Moolenaared767a22016-01-03 22:49:16 +01007566#ifdef FEAT_MBYTE
7567 bom_count = bomb_size();
7568 if (bom_count > 0)
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007569 vim_snprintf((char *)IObuff + STRLEN(IObuff), IOSIZE,
Bram Moolenaar672afb92018-04-08 16:34:22 +02007570 _("(+%lld for BOM)"), (long long)bom_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007571#endif
7572 if (dict == NULL)
7573 {
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007574 /* Don't shorten this message, the user asked for it. */
Bram Moolenaared767a22016-01-03 22:49:16 +01007575 p = p_shm;
7576 p_shm = (char_u *)"";
7577 msg(IObuff);
7578 p_shm = p;
7579 }
7580 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007581#if defined(FEAT_EVAL)
Bram Moolenaared767a22016-01-03 22:49:16 +01007582 if (dict != NULL)
7583 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007584 dict_add_nr_str(dict, "words", word_count, NULL);
7585 dict_add_nr_str(dict, "chars", char_count, NULL);
7586 dict_add_nr_str(dict, "bytes", byte_count
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007587# ifdef FEAT_MBYTE
7588 + bom_count
7589# endif
7590 , NULL);
7591 dict_add_nr_str(dict, VIsual_active ? "visual_bytes" : "cursor_bytes",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007592 byte_count_cursor, NULL);
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007593 dict_add_nr_str(dict, VIsual_active ? "visual_chars" : "cursor_chars",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007594 char_count_cursor, NULL);
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007595 dict_add_nr_str(dict, VIsual_active ? "visual_words" : "cursor_words",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007596 word_count_cursor, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007597 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007598#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007599}