blob: 1350d826413e788d2af115e241591148de9839c4 [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
902 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000903 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100904get_yank_register(int regname, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905{
906 int i;
907
908 y_append = FALSE;
909 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
910 {
911 y_current = y_previous;
912 return;
913 }
914 i = regname;
915 if (VIM_ISDIGIT(i))
916 i -= '0';
917 else if (ASCII_ISLOWER(i))
918 i = CharOrdLow(i) + 10;
919 else if (ASCII_ISUPPER(i))
920 {
921 i = CharOrdUp(i) + 10;
922 y_append = TRUE;
923 }
924 else if (regname == '-')
925 i = DELETION_REGISTER;
926#ifdef FEAT_CLIPBOARD
927 /* When selection is not available, use register 0 instead of '*' */
928 else if (clip_star.available && regname == '*')
929 i = STAR_REGISTER;
930 /* When clipboard is not available, use register 0 instead of '+' */
931 else if (clip_plus.available && regname == '+')
932 i = PLUS_REGISTER;
933#endif
934#ifdef FEAT_DND
935 else if (!writing && regname == '~')
936 i = TILDE_REGISTER;
937#endif
938 else /* not 0-9, a-z, A-Z or '-': use register 0 */
939 i = 0;
940 y_current = &(y_regs[i]);
941 if (writing) /* remember the register we write into for do_put() */
942 y_previous = y_current;
943}
944
Bram Moolenaar8299df92004-07-10 09:47:34 +0000945#if defined(FEAT_CLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946/*
947 * When "regname" is a clipboard register, obtain the selection. If it's not
948 * available return zero, otherwise return "regname".
949 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000950 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100951may_get_selection(int regname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952{
953 if (regname == '*')
954 {
955 if (!clip_star.available)
956 regname = 0;
957 else
958 clip_get_selection(&clip_star);
959 }
960 else if (regname == '+')
961 {
962 if (!clip_plus.available)
963 regname = 0;
964 else
965 clip_get_selection(&clip_plus);
966 }
967 return regname;
968}
969#endif
970
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971/*
972 * Obtain the contents of a "normal" register. The register is made empty.
973 * The returned pointer has allocated memory, use put_register() later.
974 */
975 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100976get_register(
977 int name,
978 int copy) /* make a copy, if FALSE make register empty. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +0200980 yankreg_T *reg;
981 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982
983#ifdef FEAT_CLIPBOARD
984 /* When Visual area changed, may have to update selection. Obtain the
985 * selection too. */
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000986 if (name == '*' && clip_star.available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200988 if (clip_isautosel_star())
989 clip_update_selection(&clip_star);
990 may_get_selection(name);
991 }
992 if (name == '+' && clip_plus.available)
993 {
994 if (clip_isautosel_plus())
995 clip_update_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 may_get_selection(name);
997 }
998#endif
999
1000 get_yank_register(name, 0);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001001 reg = (yankreg_T *)alloc((unsigned)sizeof(yankreg_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 if (reg != NULL)
1003 {
1004 *reg = *y_current;
1005 if (copy)
1006 {
1007 /* If we run out of memory some or all of the lines are empty. */
1008 if (reg->y_size == 0)
1009 reg->y_array = NULL;
1010 else
1011 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
1012 * reg->y_size));
1013 if (reg->y_array != NULL)
1014 {
1015 for (i = 0; i < reg->y_size; ++i)
1016 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
1017 }
1018 }
1019 else
1020 y_current->y_array = NULL;
1021 }
1022 return (void *)reg;
1023}
1024
1025/*
Bram Moolenaar0a307462007-12-01 20:13:05 +00001026 * Put "reg" into register "name". Free any previous contents and "reg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 */
1028 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001029put_register(int name, void *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030{
1031 get_yank_register(name, 0);
1032 free_yank_all();
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001033 *y_current = *(yankreg_T *)reg;
Bram Moolenaar0a307462007-12-01 20:13:05 +00001034 vim_free(reg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001036#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 /* Send text written to clipboard register to the clipboard. */
1038 may_set_selection();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001039#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001041
1042 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001043free_register(void *reg)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001044{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001045 yankreg_T tmp;
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001046
1047 tmp = *y_current;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001048 *y_current = *(yankreg_T *)reg;
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001049 free_yank_all();
1050 vim_free(reg);
1051 *y_current = tmp;
1052}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053
1054#if defined(FEAT_MOUSE) || defined(PROTO)
1055/*
1056 * return TRUE if the current yank register has type MLINE
1057 */
1058 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001059yank_register_mline(int regname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060{
1061 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1062 return FALSE;
1063 if (regname == '_') /* black hole is always empty */
1064 return FALSE;
1065 get_yank_register(regname, FALSE);
1066 return (y_current->y_type == MLINE);
1067}
1068#endif
1069
1070/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001071 * Start or stop recording into a yank register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 *
Bram Moolenaard55de222007-05-06 13:38:48 +00001073 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 */
1075 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001076do_record(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077{
Bram Moolenaard55de222007-05-06 13:38:48 +00001078 char_u *p;
1079 static int regname;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001080 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaard55de222007-05-06 13:38:48 +00001081 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082
1083 if (Recording == FALSE) /* start recording */
1084 {
1085 /* registers 0-9, a-z and " are allowed */
1086 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1087 retval = FAIL;
1088 else
1089 {
Bram Moolenaara0ed84a2015-11-19 17:56:13 +01001090 Recording = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 showmode();
1092 regname = c;
1093 retval = OK;
1094 }
1095 }
1096 else /* stop recording */
1097 {
1098 /*
Bram Moolenaard55de222007-05-06 13:38:48 +00001099 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1100 * needs to be removed again to put it in a register. exec_reg then
1101 * adds the escaping back later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 */
1103 Recording = FALSE;
1104 MSG("");
1105 p = get_recorded();
1106 if (p == NULL)
1107 retval = FAIL;
1108 else
1109 {
Bram Moolenaar81b85872007-03-04 20:22:01 +00001110 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1111 vim_unescape_csi(p);
1112
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 /*
1114 * We don't want to change the default register here, so save and
1115 * restore the current register name.
1116 */
1117 old_y_previous = y_previous;
1118 old_y_current = y_current;
1119
1120 retval = stuff_yank(regname, p);
1121
1122 y_previous = old_y_previous;
1123 y_current = old_y_current;
1124 }
1125 }
1126 return retval;
1127}
1128
1129/*
1130 * Stuff string "p" into yank register "regname" as a single line (append if
1131 * uppercase). "p" must have been alloced.
1132 *
1133 * return FAIL for failure, OK otherwise
1134 */
1135 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001136stuff_yank(int regname, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137{
1138 char_u *lp;
1139 char_u **pp;
1140
1141 /* check for read-only register */
1142 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1143 {
1144 vim_free(p);
1145 return FAIL;
1146 }
1147 if (regname == '_') /* black hole: don't do anything */
1148 {
1149 vim_free(p);
1150 return OK;
1151 }
1152 get_yank_register(regname, TRUE);
1153 if (y_append && y_current->y_array != NULL)
1154 {
1155 pp = &(y_current->y_array[y_current->y_size - 1]);
1156 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1157 if (lp == NULL)
1158 {
1159 vim_free(p);
1160 return FAIL;
1161 }
1162 STRCPY(lp, *pp);
1163 STRCAT(lp, p);
1164 vim_free(p);
1165 vim_free(*pp);
1166 *pp = lp;
1167 }
1168 else
1169 {
1170 free_yank_all();
1171 if ((y_current->y_array =
1172 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1173 {
1174 vim_free(p);
1175 return FAIL;
1176 }
1177 y_current->y_array[0] = p;
1178 y_current->y_size = 1;
1179 y_current->y_type = MCHAR; /* used to be MLINE, why? */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001180#ifdef FEAT_VIMINFO
1181 y_current->y_time_set = vim_time();
1182#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 }
1184 return OK;
1185}
1186
Bram Moolenaar42b94362009-05-26 16:12:37 +00001187static int execreg_lastc = NUL;
1188
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189/*
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001190 * Execute a yank register: copy it into the stuff buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 *
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001192 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 */
1194 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001195do_execreg(
1196 int regname,
1197 int colon, /* insert ':' before each line */
1198 int addcr, /* always add '\n' to end of line */
1199 int silent) /* set "silent" flag in typeahead buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 long i;
1202 char_u *p;
1203 int retval = OK;
1204 int remap;
1205
1206 if (regname == '@') /* repeat previous one */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001207 {
Bram Moolenaar42b94362009-05-26 16:12:37 +00001208 if (execreg_lastc == NUL)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001209 {
1210 EMSG(_("E748: No previously used register"));
1211 return FAIL;
1212 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001213 regname = execreg_lastc;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001214 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 /* check for valid regname */
1216 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001217 {
1218 emsg_invreg(regname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 return FAIL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001220 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001221 execreg_lastc = regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222
1223#ifdef FEAT_CLIPBOARD
1224 regname = may_get_selection(regname);
1225#endif
1226
1227 if (regname == '_') /* black hole: don't stuff anything */
1228 return OK;
1229
1230#ifdef FEAT_CMDHIST
1231 if (regname == ':') /* use last command line */
1232 {
1233 if (last_cmdline == NULL)
1234 {
1235 EMSG(_(e_nolastcmd));
1236 return FAIL;
1237 }
1238 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
1239 new_last_cmdline = NULL;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001240 /* Escape all control characters with a CTRL-V */
1241 p = vim_strsave_escaped_ext(last_cmdline,
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001242 (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 +00001243 if (p != NULL)
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001244 {
1245 /* When in Visual mode "'<,'>" will be prepended to the command.
1246 * Remove it when it's already there. */
1247 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001248 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001249 else
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001250 retval = put_in_typebuf(p, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001251 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001252 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 }
1254#endif
1255#ifdef FEAT_EVAL
1256 else if (regname == '=')
1257 {
1258 p = get_expr_line();
1259 if (p == NULL)
1260 return FAIL;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001261 retval = put_in_typebuf(p, TRUE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 vim_free(p);
1263 }
1264#endif
1265 else if (regname == '.') /* use last inserted text */
1266 {
1267 p = get_last_insert_save();
1268 if (p == NULL)
1269 {
1270 EMSG(_(e_noinstext));
1271 return FAIL;
1272 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001273 retval = put_in_typebuf(p, FALSE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 vim_free(p);
1275 }
1276 else
1277 {
1278 get_yank_register(regname, FALSE);
1279 if (y_current->y_array == NULL)
1280 return FAIL;
1281
1282 /* Disallow remaping for ":@r". */
1283 remap = colon ? REMAP_NONE : REMAP_YES;
1284
1285 /*
1286 * Insert lines into typeahead buffer, from last one to first one.
1287 */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001288 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 for (i = y_current->y_size; --i >= 0; )
1290 {
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001291 char_u *escaped;
1292
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 /* insert NL between lines and after last line if type is MLINE */
1294 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1295 || addcr)
1296 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001297 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 return FAIL;
1299 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001300 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1301 if (escaped == NULL)
1302 return FAIL;
1303 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1304 vim_free(escaped);
1305 if (retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 return FAIL;
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001307 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 == FAIL)
1309 return FAIL;
1310 }
1311 Exec_reg = TRUE; /* disable the 'q' command */
1312 }
1313 return retval;
1314}
1315
1316/*
1317 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1318 * used only after other typeahead has been processed.
1319 */
1320 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001321put_reedit_in_typebuf(int silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322{
1323 char_u buf[3];
1324
1325 if (restart_edit != NUL)
1326 {
1327 if (restart_edit == 'V')
1328 {
1329 buf[0] = 'g';
1330 buf[1] = 'R';
1331 buf[2] = NUL;
1332 }
1333 else
1334 {
1335 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1336 buf[1] = NUL;
1337 }
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001338 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 restart_edit = NUL;
1340 }
1341}
1342
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001343/*
1344 * Insert register contents "s" into the typeahead buffer, so that it will be
1345 * executed again.
1346 * When "esc" is TRUE it is to be taken literally: Escape CSI characters and
1347 * no remapping.
1348 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001350put_in_typebuf(
1351 char_u *s,
1352 int esc,
1353 int colon, /* add ':' before the line */
1354 int silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355{
1356 int retval = OK;
1357
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001358 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 if (colon)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001360 retval = ins_typebuf((char_u *)"\n", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 if (retval == OK)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001362 {
1363 char_u *p;
1364
1365 if (esc)
1366 p = vim_strsave_escape_csi(s);
1367 else
1368 p = s;
1369 if (p == NULL)
1370 retval = FAIL;
1371 else
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001372 retval = ins_typebuf(p, esc ? REMAP_NONE : REMAP_YES,
1373 0, TRUE, silent);
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001374 if (esc)
1375 vim_free(p);
1376 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 if (colon && retval == OK)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001378 retval = ins_typebuf((char_u *)":", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 return retval;
1380}
1381
1382/*
1383 * Insert a yank register: copy it into the Read buffer.
1384 * Used by CTRL-R command and middle mouse button in insert mode.
1385 *
1386 * return FAIL for failure, OK otherwise
1387 */
1388 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001389insert_reg(
1390 int regname,
1391 int literally) /* insert literally, not as if typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392{
1393 long i;
1394 int retval = OK;
1395 char_u *arg;
1396 int allocated;
1397
1398 /*
1399 * It is possible to get into an endless loop by having CTRL-R a in
1400 * register a and then, in insert mode, doing CTRL-R a.
1401 * If you hit CTRL-C, the loop will be broken here.
1402 */
1403 ui_breakcheck();
1404 if (got_int)
1405 return FAIL;
1406
1407 /* check for valid regname */
1408 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1409 return FAIL;
1410
1411#ifdef FEAT_CLIPBOARD
1412 regname = may_get_selection(regname);
1413#endif
1414
1415 if (regname == '.') /* insert last inserted text */
1416 retval = stuff_inserted(NUL, 1L, TRUE);
1417 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1418 {
1419 if (arg == NULL)
1420 return FAIL;
1421 stuffescaped(arg, literally);
1422 if (allocated)
1423 vim_free(arg);
1424 }
1425 else /* name or number register */
1426 {
1427 get_yank_register(regname, FALSE);
1428 if (y_current->y_array == NULL)
1429 retval = FAIL;
1430 else
1431 {
1432 for (i = 0; i < y_current->y_size; ++i)
1433 {
1434 stuffescaped(y_current->y_array[i], literally);
1435 /*
1436 * Insert a newline between lines and after last line if
1437 * y_type is MLINE.
1438 */
1439 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1440 stuffcharReadbuff('\n');
1441 }
1442 }
1443 }
1444
1445 return retval;
1446}
1447
1448/*
1449 * Stuff a string into the typeahead buffer, such that edit() will insert it
1450 * literally ("literally" TRUE) or interpret is as typed characters.
1451 */
1452 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001453stuffescaped(char_u *arg, int literally)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454{
1455 int c;
1456 char_u *start;
1457
1458 while (*arg != NUL)
1459 {
1460 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1461 * stuff K_SPECIAL to get the effect of a special key when "literally"
1462 * is TRUE. */
1463 start = arg;
1464 while ((*arg >= ' '
1465#ifndef EBCDIC
1466 && *arg < DEL /* EBCDIC: chars above space are normal */
1467#endif
1468 )
1469 || (*arg == K_SPECIAL && !literally))
1470 ++arg;
1471 if (arg > start)
1472 stuffReadbuffLen(start, (long)(arg - start));
1473
1474 /* stuff a single special character */
1475 if (*arg != NUL)
1476 {
1477#ifdef FEAT_MBYTE
1478 if (has_mbyte)
Bram Moolenaar3b1c4852010-07-31 17:59:29 +02001479 c = mb_cptr2char_adv(&arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 else
1481#endif
1482 c = *arg++;
1483 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1484 stuffcharReadbuff(Ctrl_V);
1485 stuffcharReadbuff(c);
1486 }
1487 }
1488}
1489
1490/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001491 * If "regname" is a special register, return TRUE and store a pointer to its
1492 * value in "argp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 */
Bram Moolenaar8299df92004-07-10 09:47:34 +00001494 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001495get_spec_reg(
1496 int regname,
1497 char_u **argp,
1498 int *allocated, /* return: TRUE when value was allocated */
1499 int errmsg) /* give error message when failing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500{
1501 int cnt;
1502
1503 *argp = NULL;
1504 *allocated = FALSE;
1505 switch (regname)
1506 {
1507 case '%': /* file name */
1508 if (errmsg)
1509 check_fname(); /* will give emsg if not set */
1510 *argp = curbuf->b_fname;
1511 return TRUE;
1512
1513 case '#': /* alternate file name */
1514 *argp = getaltfname(errmsg); /* may give emsg if not set */
1515 return TRUE;
1516
1517#ifdef FEAT_EVAL
1518 case '=': /* result of expression */
1519 *argp = get_expr_line();
1520 *allocated = TRUE;
1521 return TRUE;
1522#endif
1523
1524 case ':': /* last command line */
1525 if (last_cmdline == NULL && errmsg)
1526 EMSG(_(e_nolastcmd));
1527 *argp = last_cmdline;
1528 return TRUE;
1529
1530 case '/': /* last search-pattern */
1531 if (last_search_pat() == NULL && errmsg)
1532 EMSG(_(e_noprevre));
1533 *argp = last_search_pat();
1534 return TRUE;
1535
1536 case '.': /* last inserted text */
1537 *argp = get_last_insert_save();
1538 *allocated = TRUE;
1539 if (*argp == NULL && errmsg)
1540 EMSG(_(e_noinstext));
1541 return TRUE;
1542
1543#ifdef FEAT_SEARCHPATH
1544 case Ctrl_F: /* Filename under cursor */
1545 case Ctrl_P: /* Path under cursor, expand via "path" */
1546 if (!errmsg)
1547 return FALSE;
1548 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001549 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 *allocated = TRUE;
1551 return TRUE;
1552#endif
1553
1554 case Ctrl_W: /* word under cursor */
1555 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1556 if (!errmsg)
1557 return FALSE;
1558 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1559 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1560 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1561 *allocated = TRUE;
1562 return TRUE;
1563
1564 case '_': /* black hole: always empty */
1565 *argp = (char_u *)"";
1566 return TRUE;
1567 }
1568
1569 return FALSE;
1570}
1571
1572/*
Bram Moolenaar8299df92004-07-10 09:47:34 +00001573 * Paste a yank register into the command line.
1574 * Only for non-special registers.
1575 * Used by CTRL-R command in command-line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 * insert_reg() can't be used here, because special characters from the
1577 * register contents will be interpreted as commands.
1578 *
1579 * return FAIL for failure, OK otherwise
1580 */
1581 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001582cmdline_paste_reg(
1583 int regname,
1584 int literally, /* Insert text literally instead of "as typed" */
1585 int remcr) /* don't add CR characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586{
1587 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588
1589 get_yank_register(regname, FALSE);
1590 if (y_current->y_array == NULL)
1591 return FAIL;
1592
1593 for (i = 0; i < y_current->y_size; ++i)
1594 {
1595 cmdline_paste_str(y_current->y_array[i], literally);
1596
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001597 /* Insert ^M between lines and after last line if type is MLINE.
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01001598 * Don't do this when "remcr" is TRUE. */
1599 if ((y_current->y_type == MLINE || i < y_current->y_size - 1) && !remcr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 cmdline_paste_str((char_u *)"\r", literally);
1601
1602 /* Check for CTRL-C, in case someone tries to paste a few thousand
1603 * lines and gets bored. */
1604 ui_breakcheck();
1605 if (got_int)
1606 return FAIL;
1607 }
1608 return OK;
1609}
1610
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611#if defined(FEAT_CLIPBOARD) || defined(PROTO)
1612/*
1613 * Adjust the register name pointed to with "rp" for the clipboard being
1614 * used always and the clipboard being available.
1615 */
1616 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001617adjust_clip_reg(int *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618{
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001619 /* If no reg. specified, and "unnamed" or "unnamedplus" is in 'clipboard',
1620 * use '*' or '+' reg, respectively. "unnamedplus" prevails. */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001621 if (*rp == 0 && (clip_unnamed != 0 || clip_unnamed_saved != 0))
1622 {
1623 if (clip_unnamed != 0)
1624 *rp = ((clip_unnamed & CLIP_UNNAMED_PLUS) && clip_plus.available)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001625 ? '+' : '*';
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001626 else
1627 *rp = ((clip_unnamed_saved & CLIP_UNNAMED_PLUS) && clip_plus.available)
1628 ? '+' : '*';
1629 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 if (!clip_star.available && *rp == '*')
1631 *rp = 0;
1632 if (!clip_plus.available && *rp == '+')
1633 *rp = 0;
1634}
1635#endif
1636
1637/*
Bram Moolenaara1891842017-02-04 21:34:31 +01001638 * Shift the delete registers: "9 is cleared, "8 becomes "9, etc.
1639 */
1640 void
1641shift_delete_registers()
1642{
1643 int n;
1644
1645 y_current = &y_regs[9];
1646 free_yank_all(); /* free register nine */
1647 for (n = 9; n > 1; --n)
1648 y_regs[n] = y_regs[n - 1];
Bram Moolenaar18d90b92017-06-27 15:39:14 +02001649 y_current = &y_regs[1];
1650 if (!y_append)
1651 y_previous = y_current;
Bram Moolenaara1891842017-02-04 21:34:31 +01001652 y_regs[1].y_array = NULL; /* set register one to empty */
1653}
1654
Bram Moolenaaree219b02017-12-17 14:55:01 +01001655#ifdef FEAT_AUTOCMD
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001656 static void
1657yank_do_autocmd(oparg_T *oap, yankreg_T *reg)
1658{
1659 static int recursive = FALSE;
1660 dict_T *v_event;
1661 list_T *list;
1662 int n;
1663 char_u buf[NUMBUFLEN + 2];
1664 long reglen = 0;
1665
1666 if (recursive)
1667 return;
1668
1669 v_event = get_vim_var_dict(VV_EVENT);
1670
1671 list = list_alloc();
1672 for (n = 0; n < reg->y_size; n++)
1673 list_append_string(list, reg->y_array[n], -1);
1674 list->lv_lock = VAR_FIXED;
1675 dict_add_list(v_event, "regcontents", list);
1676
1677 buf[0] = (char_u)oap->regname;
1678 buf[1] = NUL;
1679 dict_add_nr_str(v_event, "regname", 0, buf);
1680
1681 buf[0] = get_op_char(oap->op_type);
1682 buf[1] = get_extra_op_char(oap->op_type);
1683 buf[2] = NUL;
1684 dict_add_nr_str(v_event, "operator", 0, buf);
1685
1686 buf[0] = NUL;
1687 buf[1] = NUL;
1688 switch (get_reg_type(oap->regname, &reglen))
1689 {
1690 case MLINE: buf[0] = 'V'; break;
1691 case MCHAR: buf[0] = 'v'; break;
1692 case MBLOCK:
1693 vim_snprintf((char *)buf, sizeof(buf), "%c%ld", Ctrl_V,
1694 reglen + 1);
1695 break;
1696 }
1697 dict_add_nr_str(v_event, "regtype", 0, buf);
1698
1699 /* Lock the dictionary and its keys */
1700 dict_set_items_ro(v_event);
1701
1702 recursive = TRUE;
1703 textlock++;
1704 apply_autocmds(EVENT_TEXTYANKPOST, NULL, NULL, FALSE, curbuf);
1705 textlock--;
1706 recursive = FALSE;
1707
1708 /* Empty the dictionary, v:event is still valid */
1709 dict_free_contents(v_event);
1710 hash_init(&v_event->dv_hashtab);
1711}
Bram Moolenaaree219b02017-12-17 14:55:01 +01001712#endif
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001713
Bram Moolenaara1891842017-02-04 21:34:31 +01001714/*
Bram Moolenaard04b7502010-07-08 22:27:55 +02001715 * Handle a delete operation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 *
Bram Moolenaard04b7502010-07-08 22:27:55 +02001717 * Return FAIL if undo failed, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 */
1719 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001720op_delete(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721{
1722 int n;
1723 linenr_T lnum;
1724 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 char_u *newp, *oldp;
1726 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1728 int did_yank = FALSE;
Bram Moolenaar7c821302012-09-05 14:18:45 +02001729 int orig_regname = oap->regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730
1731 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1732 return OK;
1733
1734 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1735 if (oap->empty)
1736 return u_save_cursor();
1737
1738 if (!curbuf->b_p_ma)
1739 {
1740 EMSG(_(e_modifiable));
1741 return FAIL;
1742 }
1743
1744#ifdef FEAT_CLIPBOARD
1745 adjust_clip_reg(&oap->regname);
1746#endif
1747
1748#ifdef FEAT_MBYTE
1749 if (has_mbyte)
1750 mb_adjust_opend(oap);
1751#endif
1752
Bram Moolenaard04b7502010-07-08 22:27:55 +02001753 /*
1754 * Imitate the strange Vi behaviour: If the delete spans more than one
1755 * line and motion_type == MCHAR and the result is a blank line, make the
1756 * delete linewise. Don't do this for the change command or Visual mode.
1757 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 if ( oap->motion_type == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001760 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 && oap->line_count > 1
Bram Moolenaar64a72302012-01-10 13:46:22 +01001762 && oap->motion_force == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 && oap->op_type == OP_DELETE)
1764 {
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001765 ptr = ml_get(oap->end.lnum) + oap->end.col;
1766 if (*ptr != NUL)
1767 ptr += oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 ptr = skipwhite(ptr);
1769 if (*ptr == NUL && inindent(0))
1770 oap->motion_type = MLINE;
1771 }
1772
Bram Moolenaard04b7502010-07-08 22:27:55 +02001773 /*
1774 * Check for trying to delete (e.g. "D") in an empty line.
1775 * Note: For the change operator it is ok.
1776 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 if ( oap->motion_type == MCHAR
1778 && oap->line_count == 1
1779 && oap->op_type == OP_DELETE
1780 && *ml_get(oap->start.lnum) == NUL)
1781 {
1782 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001783 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 * 'cpoptions' (Vi compatible).
1785 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001786#ifdef FEAT_VIRTUALEDIT
1787 if (virtual_op)
1788 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1789 * marks as if it happened. */
1790 goto setmarks;
1791#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1793 beep_flush();
1794 return OK;
1795 }
1796
Bram Moolenaard04b7502010-07-08 22:27:55 +02001797 /*
1798 * Do a yank of whatever we're about to delete.
1799 * If a yank register was specified, put the deleted text into that
1800 * register. For the black hole register '_' don't yank anything.
1801 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 if (oap->regname != '_')
1803 {
1804 if (oap->regname != 0)
1805 {
1806 /* check for read-only register */
1807 if (!valid_yank_reg(oap->regname, TRUE))
1808 {
1809 beep_flush();
1810 return OK;
1811 }
1812 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1813 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1814 did_yank = TRUE;
1815 }
1816
1817 /*
1818 * Put deleted text into register 1 and shift number registers if the
1819 * delete contains a line break, or when a regname has been specified.
Bram Moolenaar7c821302012-09-05 14:18:45 +02001820 * Use the register name from before adjust_clip_reg() may have
1821 * changed it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 */
Bram Moolenaar7c821302012-09-05 14:18:45 +02001823 if (orig_regname != 0 || oap->motion_type == MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 || oap->line_count > 1 || oap->use_reg_one)
1825 {
Bram Moolenaara1891842017-02-04 21:34:31 +01001826 shift_delete_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 if (op_yank(oap, TRUE, FALSE) == OK)
1828 did_yank = TRUE;
1829 }
1830
Bram Moolenaar84298db2012-04-20 13:46:08 +02001831 /* Yank into small delete register when no named register specified
1832 * and the delete is within one line. */
1833 if ((
1834#ifdef FEAT_CLIPBOARD
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001835 ((clip_unnamed & CLIP_UNNAMED) && oap->regname == '*') ||
1836 ((clip_unnamed & CLIP_UNNAMED_PLUS) && oap->regname == '+') ||
Bram Moolenaar84298db2012-04-20 13:46:08 +02001837#endif
1838 oap->regname == 0) && oap->motion_type != MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 && oap->line_count == 1)
1840 {
1841 oap->regname = '-';
1842 get_yank_register(oap->regname, TRUE);
1843 if (op_yank(oap, TRUE, FALSE) == OK)
1844 did_yank = TRUE;
1845 oap->regname = 0;
1846 }
1847
1848 /*
1849 * If there's too much stuff to fit in the yank register, then get a
1850 * confirmation before doing the delete. This is crude, but simple.
1851 * And it avoids doing a delete of something we can't put back if we
1852 * want.
1853 */
1854 if (!did_yank)
1855 {
1856 int msg_silent_save = msg_silent;
1857
1858 msg_silent = 0; /* must display the prompt */
1859 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1860 msg_silent = msg_silent_save;
1861 if (n != 'y')
1862 {
1863 EMSG(_(e_abort));
1864 return FAIL;
1865 }
1866 }
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001867
1868#ifdef FEAT_AUTOCMD
1869 if (did_yank && has_textyankpost())
1870 yank_do_autocmd(oap, y_current);
1871#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 }
1873
Bram Moolenaard04b7502010-07-08 22:27:55 +02001874 /*
1875 * block mode delete
1876 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 if (oap->block_mode)
1878 {
1879 if (u_save((linenr_T)(oap->start.lnum - 1),
1880 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1881 return FAIL;
1882
1883 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1884 {
1885 block_prep(oap, &bd, lnum, TRUE);
1886 if (bd.textlen == 0) /* nothing to delete */
1887 continue;
1888
1889 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1890 if (lnum == curwin->w_cursor.lnum)
1891 {
1892 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1893# ifdef FEAT_VIRTUALEDIT
1894 curwin->w_cursor.coladd = 0;
1895# endif
1896 }
1897
1898 /* n == number of chars deleted
1899 * If we delete a TAB, it may be replaced by several characters.
1900 * Thus the number of characters may increase!
1901 */
1902 n = bd.textlen - bd.startspaces - bd.endspaces;
1903 oldp = ml_get(lnum);
1904 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1905 if (newp == NULL)
1906 continue;
1907 /* copy up to deleted part */
1908 mch_memmove(newp, oldp, (size_t)bd.textcol);
1909 /* insert spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02001910 vim_memset(newp + bd.textcol, ' ',
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 (size_t)(bd.startspaces + bd.endspaces));
1912 /* copy the part after the deleted part */
1913 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001914 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 /* replace the line */
1916 ml_replace(lnum, newp, FALSE);
1917 }
1918
1919 check_cursor_col();
1920 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1921 oap->end.lnum + 1, 0L);
1922 oap->line_count = 0; /* no lines deleted */
1923 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001924 else if (oap->motion_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925 {
1926 if (oap->op_type == OP_CHANGE)
1927 {
1928 /* Delete the lines except the first one. Temporarily move the
1929 * cursor to the next line. Save the current line number, if the
1930 * last line is deleted it may be changed.
1931 */
1932 if (oap->line_count > 1)
1933 {
1934 lnum = curwin->w_cursor.lnum;
1935 ++curwin->w_cursor.lnum;
1936 del_lines((long)(oap->line_count - 1), TRUE);
1937 curwin->w_cursor.lnum = lnum;
1938 }
1939 if (u_save_cursor() == FAIL)
1940 return FAIL;
1941 if (curbuf->b_p_ai) /* don't delete indent */
1942 {
1943 beginline(BL_WHITE); /* cursor on first non-white */
1944 did_ai = TRUE; /* delete the indent when ESC hit */
1945 ai_col = curwin->w_cursor.col;
1946 }
1947 else
1948 beginline(0); /* cursor in column 0 */
1949 truncate_line(FALSE); /* delete the rest of the line */
1950 /* leave cursor past last char in line */
1951 if (oap->line_count > 1)
1952 u_clearline(); /* "U" command not possible after "2cc" */
1953 }
1954 else
1955 {
1956 del_lines(oap->line_count, TRUE);
1957 beginline(BL_WHITE | BL_FIX);
1958 u_clearline(); /* "U" command not possible after "dd" */
1959 }
1960 }
1961 else
1962 {
1963#ifdef FEAT_VIRTUALEDIT
1964 if (virtual_op)
1965 {
1966 int endcol = 0;
1967
1968 /* For virtualedit: break the tabs that are partly included. */
1969 if (gchar_pos(&oap->start) == '\t')
1970 {
1971 if (u_save_cursor() == FAIL) /* save first line for undo */
1972 return FAIL;
1973 if (oap->line_count == 1)
1974 endcol = getviscol2(oap->end.col, oap->end.coladd);
1975 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1976 oap->start = curwin->w_cursor;
1977 if (oap->line_count == 1)
1978 {
1979 coladvance(endcol);
1980 oap->end.col = curwin->w_cursor.col;
1981 oap->end.coladd = curwin->w_cursor.coladd;
1982 curwin->w_cursor = oap->start;
1983 }
1984 }
1985
1986 /* Break a tab only when it's included in the area. */
1987 if (gchar_pos(&oap->end) == '\t'
1988 && (int)oap->end.coladd < oap->inclusive)
1989 {
1990 /* save last line for undo */
1991 if (u_save((linenr_T)(oap->end.lnum - 1),
1992 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1993 return FAIL;
1994 curwin->w_cursor = oap->end;
1995 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1996 oap->end = curwin->w_cursor;
1997 curwin->w_cursor = oap->start;
1998 }
1999 }
2000#endif
2001
2002 if (oap->line_count == 1) /* delete characters within one line */
2003 {
2004 if (u_save_cursor() == FAIL) /* save line for undo */
2005 return FAIL;
2006
2007 /* if 'cpoptions' contains '$', display '$' at end of change */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002008 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 && oap->op_type == OP_CHANGE
2010 && oap->end.lnum == curwin->w_cursor.lnum
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002011 && !oap->is_VIsual)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 display_dollar(oap->end.col - !oap->inclusive);
2013
2014 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
2015
2016#ifdef FEAT_VIRTUALEDIT
2017 if (virtual_op)
2018 {
2019 /* fix up things for virtualedit-delete:
2020 * break the tabs which are going to get in our way
2021 */
2022 char_u *curline = ml_get_curline();
2023 int len = (int)STRLEN(curline);
2024
2025 if (oap->end.coladd != 0
2026 && (int)oap->end.col >= len - 1
2027 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
2028 n++;
2029 /* Delete at least one char (e.g, when on a control char). */
2030 if (n == 0 && oap->start.coladd != oap->end.coladd)
2031 n = 1;
2032
2033 /* When deleted a char in the line, reset coladd. */
2034 if (gchar_cursor() != NUL)
2035 curwin->w_cursor.coladd = 0;
2036 }
2037#endif
Bram Moolenaard009e862015-06-09 20:20:03 +02002038 (void)del_bytes((long)n, !virtual_op,
2039 oap->op_type == OP_DELETE && !oap->is_VIsual);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 }
2041 else /* delete characters between lines */
2042 {
2043 pos_T curpos;
2044
2045 /* save deleted and changed lines for undo */
2046 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
2047 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
2048 return FAIL;
2049
2050 truncate_line(TRUE); /* delete from cursor to end of line */
2051
2052 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
2053 ++curwin->w_cursor.lnum;
2054 del_lines((long)(oap->line_count - 2), FALSE);
2055
Bram Moolenaard009e862015-06-09 20:20:03 +02002056 /* delete from start of line until op_end */
Bram Moolenaar44286ca2011-07-15 17:51:34 +02002057 n = (oap->end.col + 1 - !oap->inclusive);
Bram Moolenaard009e862015-06-09 20:20:03 +02002058 curwin->w_cursor.col = 0;
2059 (void)del_bytes((long)n, !virtual_op,
2060 oap->op_type == OP_DELETE && !oap->is_VIsual);
2061 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
2062 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 }
2064 }
2065
2066 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
2067
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002068#ifdef FEAT_VIRTUALEDIT
2069setmarks:
2070#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 if (oap->block_mode)
2072 {
2073 curbuf->b_op_end.lnum = oap->end.lnum;
2074 curbuf->b_op_end.col = oap->start.col;
2075 }
2076 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 curbuf->b_op_end = oap->start;
2078 curbuf->b_op_start = oap->start;
2079
2080 return OK;
2081}
2082
2083#ifdef FEAT_MBYTE
2084/*
2085 * Adjust end of operating area for ending on a multi-byte character.
2086 * Used for deletion.
2087 */
2088 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002089mb_adjust_opend(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090{
2091 char_u *p;
2092
2093 if (oap->inclusive)
2094 {
2095 p = ml_get(oap->end.lnum);
2096 oap->end.col += mb_tail_off(p, p + oap->end.col);
2097 }
2098}
2099#endif
2100
2101#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2102/*
2103 * Replace a whole area with one character.
2104 */
2105 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002106op_replace(oparg_T *oap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107{
2108 int n, numc;
2109#ifdef FEAT_MBYTE
2110 int num_chars;
2111#endif
2112 char_u *newp, *oldp;
2113 size_t oldlen;
2114 struct block_def bd;
Bram Moolenaard9820532013-11-04 01:41:17 +01002115 char_u *after_p = NULL;
Bram Moolenaarf12519d2018-02-06 22:52:49 +01002116 int had_ctrl_v_cr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117
2118 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2119 return OK; /* nothing to do */
2120
Bram Moolenaarf12519d2018-02-06 22:52:49 +01002121 if (c == REPLACE_CR_NCHAR)
2122 {
2123 had_ctrl_v_cr = TRUE;
2124 c = CAR;
2125 }
2126 else if (c == REPLACE_NL_NCHAR)
2127 {
2128 had_ctrl_v_cr = TRUE;
2129 c = NL;
2130 }
Bram Moolenaard9820532013-11-04 01:41:17 +01002131
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132#ifdef FEAT_MBYTE
2133 if (has_mbyte)
2134 mb_adjust_opend(oap);
2135#endif
2136
2137 if (u_save((linenr_T)(oap->start.lnum - 1),
2138 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2139 return FAIL;
2140
2141 /*
2142 * block mode replace
2143 */
2144 if (oap->block_mode)
2145 {
2146 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2147 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2148 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002149 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2151 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2152 continue; /* nothing to replace */
2153
2154 /* n == number of extra chars required
2155 * If we split a TAB, it may be replaced by several characters.
2156 * Thus the number of characters may increase!
2157 */
2158#ifdef FEAT_VIRTUALEDIT
2159 /* If the range starts in virtual space, count the initial
2160 * coladd offset as part of "startspaces" */
2161 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2162 {
2163 pos_T vpos;
2164
Bram Moolenaara1381de2009-11-03 15:44:21 +00002165 vpos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 getvpos(&vpos, oap->start_vcol);
2167 bd.startspaces += vpos.coladd;
2168 n = bd.startspaces;
2169 }
2170 else
2171#endif
2172 /* allow for pre spaces */
2173 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2174
2175 /* allow for post spp */
2176 n += (bd.endspaces
2177#ifdef FEAT_VIRTUALEDIT
2178 && !bd.is_oneChar
2179#endif
2180 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2181 /* Figure out how many characters to replace. */
2182 numc = oap->end_vcol - oap->start_vcol + 1;
2183 if (bd.is_short && (!virtual_op || bd.is_MAX))
2184 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2185
2186#ifdef FEAT_MBYTE
2187 /* A double-wide character can be replaced only up to half the
2188 * times. */
2189 if ((*mb_char2cells)(c) > 1)
2190 {
2191 if ((numc & 1) && !bd.is_short)
2192 {
2193 ++bd.endspaces;
2194 ++n;
2195 }
2196 numc = numc / 2;
2197 }
2198
2199 /* Compute bytes needed, move character count to num_chars. */
2200 num_chars = numc;
2201 numc *= (*mb_char2len)(c);
2202#endif
2203 /* oldlen includes textlen, so don't double count */
2204 n += numc - bd.textlen;
2205
2206 oldp = ml_get_curline();
2207 oldlen = STRLEN(oldp);
2208 newp = alloc_check((unsigned)oldlen + 1 + n);
2209 if (newp == NULL)
2210 continue;
2211 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2212 /* copy up to deleted part */
2213 mch_memmove(newp, oldp, (size_t)bd.textcol);
2214 oldp += bd.textcol + bd.textlen;
2215 /* insert pre-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002216 vim_memset(newp + bd.textcol, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
Bram Moolenaarf12519d2018-02-06 22:52:49 +01002218 /* REPLACE_CR_NCHAR/REPLACE_NL_NCHAR is used for entering CR
2219 * literally. */
Bram Moolenaard9820532013-11-04 01:41:17 +01002220 if (had_ctrl_v_cr || (c != '\r' && c != '\n'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002222#ifdef FEAT_MBYTE
2223 if (has_mbyte)
2224 {
2225 n = (int)STRLEN(newp);
2226 while (--num_chars >= 0)
2227 n += (*mb_char2bytes)(c, newp + n);
2228 }
2229 else
2230#endif
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002231 vim_memset(newp + STRLEN(newp), c, (size_t)numc);
Bram Moolenaard9820532013-11-04 01:41:17 +01002232 if (!bd.is_short)
2233 {
2234 /* insert post-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002235 vim_memset(newp + STRLEN(newp), ' ', (size_t)bd.endspaces);
Bram Moolenaard9820532013-11-04 01:41:17 +01002236 /* copy the part after the changed part */
2237 STRMOVE(newp + STRLEN(newp), oldp);
2238 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 }
2240 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002242 /* Replacing with \r or \n means splitting the line. */
Bram Moolenaarefe06f42013-11-11 23:17:39 +01002243 after_p = alloc_check(
2244 (unsigned)(oldlen + 1 + n - STRLEN(newp)));
Bram Moolenaard9820532013-11-04 01:41:17 +01002245 if (after_p != NULL)
2246 STRMOVE(after_p, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 }
2248 /* replace the line */
2249 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
Bram Moolenaard9820532013-11-04 01:41:17 +01002250 if (after_p != NULL)
2251 {
2252 ml_append(curwin->w_cursor.lnum++, after_p, 0, FALSE);
2253 appended_lines_mark(curwin->w_cursor.lnum, 1L);
2254 oap->end.lnum++;
2255 vim_free(after_p);
2256 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257 }
2258 }
2259 else
2260 {
2261 /*
2262 * MCHAR and MLINE motion replace.
2263 */
2264 if (oap->motion_type == MLINE)
2265 {
2266 oap->start.col = 0;
2267 curwin->w_cursor.col = 0;
2268 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2269 if (oap->end.col)
2270 --oap->end.col;
2271 }
2272 else if (!oap->inclusive)
2273 dec(&(oap->end));
2274
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002275 while (LTOREQ_POS(curwin->w_cursor, oap->end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 {
2277 n = gchar_cursor();
2278 if (n != NUL)
2279 {
2280#ifdef FEAT_MBYTE
2281 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2282 {
2283 /* This is slow, but it handles replacing a single-byte
2284 * with a multi-byte and the other way around. */
Bram Moolenaardb813952013-03-07 18:50:57 +01002285 if (curwin->w_cursor.lnum == oap->end.lnum)
2286 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 n = State;
2288 State = REPLACE;
2289 ins_char(c);
2290 State = n;
2291 /* Backup to the replaced character. */
2292 dec_cursor();
2293 }
2294 else
2295#endif
2296 {
2297#ifdef FEAT_VIRTUALEDIT
2298 if (n == TAB)
2299 {
2300 int end_vcol = 0;
2301
2302 if (curwin->w_cursor.lnum == oap->end.lnum)
2303 {
2304 /* oap->end has to be recalculated when
2305 * the tab breaks */
2306 end_vcol = getviscol2(oap->end.col,
2307 oap->end.coladd);
2308 }
2309 coladvance_force(getviscol());
2310 if (curwin->w_cursor.lnum == oap->end.lnum)
2311 getvpos(&oap->end, end_vcol);
2312 }
2313#endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002314 PCHAR(curwin->w_cursor, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 }
2316 }
2317#ifdef FEAT_VIRTUALEDIT
2318 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2319 {
2320 int virtcols = oap->end.coladd;
2321
2322 if (curwin->w_cursor.lnum == oap->start.lnum
2323 && oap->start.col == oap->end.col && oap->start.coladd)
2324 virtcols -= oap->start.coladd;
2325
2326 /* oap->end has been trimmed so it's effectively inclusive;
2327 * as a result an extra +1 must be counted so we don't
2328 * trample the NUL byte. */
2329 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2330 curwin->w_cursor.col -= (virtcols + 1);
2331 for (; virtcols >= 0; virtcols--)
2332 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002333 PCHAR(curwin->w_cursor, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 if (inc(&curwin->w_cursor) == -1)
2335 break;
2336 }
2337 }
2338#endif
2339
2340 /* Advance to next character, stop at the end of the file. */
2341 if (inc_cursor() == -1)
2342 break;
2343 }
2344 }
2345
2346 curwin->w_cursor = oap->start;
2347 check_cursor();
2348 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2349
2350 /* Set "'[" and "']" marks. */
2351 curbuf->b_op_start = oap->start;
2352 curbuf->b_op_end = oap->end;
2353
2354 return OK;
2355}
2356#endif
2357
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002358static int swapchars(int op_type, pos_T *pos, int length);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002359
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360/*
2361 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2362 */
2363 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002364op_tilde(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365{
2366 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 struct block_def bd;
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002368 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369
2370 if (u_save((linenr_T)(oap->start.lnum - 1),
2371 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2372 return;
2373
2374 pos = oap->start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 if (oap->block_mode) /* Visual block mode */
2376 {
2377 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2378 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002379 int one_change;
2380
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 block_prep(oap, &bd, pos.lnum, FALSE);
2382 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002383 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2384 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002385
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002386#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002387 if (netbeans_active() && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 {
2389 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2390
Bram Moolenaar009b2592004-10-24 19:18:58 +00002391 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2392 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002394 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002396#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 }
2398 if (did_change)
2399 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2400 }
2401 else /* not block mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 {
2403 if (oap->motion_type == MLINE)
2404 {
2405 oap->start.col = 0;
2406 pos.col = 0;
2407 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2408 if (oap->end.col)
2409 --oap->end.col;
2410 }
2411 else if (!oap->inclusive)
2412 dec(&(oap->end));
2413
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002414 if (pos.lnum == oap->end.lnum)
2415 did_change = swapchars(oap->op_type, &pos,
2416 oap->end.col - pos.col + 1);
2417 else
2418 for (;;)
2419 {
2420 did_change |= swapchars(oap->op_type, &pos,
2421 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2422 (int)STRLEN(ml_get_pos(&pos)));
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002423 if (LTOREQ_POS(oap->end, pos) || inc(&pos) == -1)
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002424 break;
2425 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 if (did_change)
2427 {
2428 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2429 0L);
2430#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002431 if (netbeans_active() && did_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 {
2433 char_u *ptr;
2434 int count;
2435
2436 pos = oap->start;
2437 while (pos.lnum < oap->end.lnum)
2438 {
2439 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002440 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002441 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002443 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 pos.col = 0;
2445 pos.lnum++;
2446 }
2447 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2448 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002449 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002451 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 }
2453#endif
2454 }
2455 }
2456
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 if (!did_change && oap->is_VIsual)
2458 /* No change: need to remove the Visual selection */
2459 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460
2461 /*
2462 * Set '[ and '] marks.
2463 */
2464 curbuf->b_op_start = oap->start;
2465 curbuf->b_op_end = oap->end;
2466
2467 if (oap->line_count > p_report)
2468 {
2469 if (oap->line_count == 1)
2470 MSG(_("1 line changed"));
2471 else
2472 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2473 }
2474}
2475
2476/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002477 * Invoke swapchar() on "length" bytes at position "pos".
2478 * "pos" is advanced to just after the changed characters.
2479 * "length" is rounded up to include the whole last multi-byte character.
2480 * Also works correctly when the number of bytes changes.
2481 * Returns TRUE if some character was changed.
2482 */
2483 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002484swapchars(int op_type, pos_T *pos, int length)
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002485{
2486 int todo;
2487 int did_change = 0;
2488
2489 for (todo = length; todo > 0; --todo)
2490 {
2491# ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002492 if (has_mbyte)
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002493 {
2494 int len = (*mb_ptr2len)(ml_get_pos(pos));
2495
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002496 /* we're counting bytes, not characters */
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002497 if (len > 0)
2498 todo -= len - 1;
2499 }
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002500# endif
2501 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002502 if (inc(pos) == -1) /* at end of file */
2503 break;
2504 }
2505 return did_change;
2506}
2507
2508/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 * If op_type == OP_UPPER: make uppercase,
2510 * if op_type == OP_LOWER: make lowercase,
2511 * if op_type == OP_ROT13: do rot13 encoding,
2512 * else swap case of character at 'pos'
2513 * returns TRUE when something actually changed.
2514 */
2515 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002516swapchar(int op_type, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517{
2518 int c;
2519 int nc;
2520
2521 c = gchar_pos(pos);
2522
2523 /* Only do rot13 encoding for ASCII characters. */
2524 if (c >= 0x80 && op_type == OP_ROT13)
2525 return FALSE;
2526
2527#ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002528 if (op_type == OP_UPPER && c == 0xdf
2529 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002530 {
2531 pos_T sp = curwin->w_cursor;
2532
2533 /* Special handling of German sharp s: change to "SS". */
2534 curwin->w_cursor = *pos;
2535 del_char(FALSE);
2536 ins_char('S');
2537 ins_char('S');
2538 curwin->w_cursor = sp;
2539 inc(pos);
2540 }
2541
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2543 return FALSE;
2544#endif
2545 nc = c;
2546 if (MB_ISLOWER(c))
2547 {
2548 if (op_type == OP_ROT13)
2549 nc = ROT13(c, 'a');
2550 else if (op_type != OP_LOWER)
2551 nc = MB_TOUPPER(c);
2552 }
2553 else if (MB_ISUPPER(c))
2554 {
2555 if (op_type == OP_ROT13)
2556 nc = ROT13(c, 'A');
2557 else if (op_type != OP_UPPER)
2558 nc = MB_TOLOWER(c);
2559 }
2560 if (nc != c)
2561 {
2562#ifdef FEAT_MBYTE
2563 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2564 {
2565 pos_T sp = curwin->w_cursor;
2566
2567 curwin->w_cursor = *pos;
Bram Moolenaard1cb65e2010-08-01 14:22:48 +02002568 /* don't use del_char(), it also removes composing chars */
2569 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 ins_char(nc);
2571 curwin->w_cursor = sp;
2572 }
2573 else
2574#endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002575 PCHAR(*pos, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 return TRUE;
2577 }
2578 return FALSE;
2579}
2580
2581#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2582/*
2583 * op_insert - Insert and append operators for Visual mode.
2584 */
2585 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002586op_insert(oparg_T *oap, long count1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587{
2588 long ins_len, pre_textlen = 0;
2589 char_u *firstline, *ins_text;
Bram Moolenaar2254a8a2017-09-03 14:03:43 +02002590 colnr_T ind_pre = 0, ind_post;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 struct block_def bd;
2592 int i;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002593 pos_T t1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594
2595 /* edit() changes this - record it for OP_APPEND */
2596 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2597
2598 /* vis block is still marked. Get rid of it now. */
2599 curwin->w_cursor.lnum = oap->start.lnum;
2600 update_screen(INVERTED);
2601
2602 if (oap->block_mode)
2603 {
2604#ifdef FEAT_VIRTUALEDIT
2605 /* When 'virtualedit' is used, need to insert the extra spaces before
2606 * doing block_prep(). When only "block" is used, virtual edit is
2607 * already disabled, but still need it when calling
2608 * coladvance_force(). */
2609 if (curwin->w_cursor.coladd > 0)
2610 {
2611 int old_ve_flags = ve_flags;
2612
2613 ve_flags = VE_ALL;
2614 if (u_save_cursor() == FAIL)
2615 return;
2616 coladvance_force(oap->op_type == OP_APPEND
2617 ? oap->end_vcol + 1 : getviscol());
2618 if (oap->op_type == OP_APPEND)
2619 --curwin->w_cursor.col;
2620 ve_flags = old_ve_flags;
2621 }
2622#endif
2623 /* Get the info about the block before entering the text */
2624 block_prep(oap, &bd, oap->start.lnum, TRUE);
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002625 /* Get indent information */
2626 ind_pre = (colnr_T)getwhitecols_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 firstline = ml_get(oap->start.lnum) + bd.textcol;
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002628
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 if (oap->op_type == OP_APPEND)
2630 firstline += bd.textlen;
2631 pre_textlen = (long)STRLEN(firstline);
2632 }
2633
2634 if (oap->op_type == OP_APPEND)
2635 {
2636 if (oap->block_mode
2637#ifdef FEAT_VIRTUALEDIT
2638 && curwin->w_cursor.coladd == 0
2639#endif
2640 )
2641 {
2642 /* Move the cursor to the character right of the block. */
2643 curwin->w_set_curswant = TRUE;
2644 while (*ml_get_cursor() != NUL
2645 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2646 ++curwin->w_cursor.col;
2647 if (bd.is_short && !bd.is_MAX)
2648 {
2649 /* First line was too short, make it longer and adjust the
2650 * values in "bd". */
2651 if (u_save_cursor() == FAIL)
2652 return;
2653 for (i = 0; i < bd.endspaces; ++i)
2654 ins_char(' ');
2655 bd.textlen += bd.endspaces;
2656 }
2657 }
2658 else
2659 {
2660 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002661 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662
2663 /* Works just like an 'i'nsert on the next character. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002664 if (!LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 && oap->start_vcol != oap->end_vcol)
2666 inc_cursor();
2667 }
2668 }
2669
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002670 t1 = oap->start;
Bram Moolenaar23fa81d2017-02-01 21:50:21 +01002671 (void)edit(NUL, FALSE, (linenr_T)count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002673 /* When a tab was inserted, and the characters in front of the tab
2674 * have been converted to a tab as well, the column of the cursor
2675 * might have actually been reduced, so need to adjust here. */
2676 if (t1.lnum == curbuf->b_op_start_orig.lnum
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002677 && LT_POS(curbuf->b_op_start_orig, t1))
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002678 oap->start = curbuf->b_op_start_orig;
2679
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002680 /* If user has moved off this line, we don't know what to do, so do
2681 * nothing.
2682 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2683 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684 return;
2685
2686 if (oap->block_mode)
2687 {
2688 struct block_def bd2;
2689
Bram Moolenaar4ec86dd2017-09-02 23:28:54 +02002690 /* If indent kicked in, the firstline might have changed
2691 * but only do that, if the indent actually increased. */
2692 ind_post = (colnr_T)getwhitecols_curline();
2693 if (curbuf->b_op_start.col > ind_pre && ind_post > ind_pre)
2694 {
2695 bd.textcol += ind_post - ind_pre;
2696 bd.start_vcol += ind_post - ind_pre;
2697 }
2698
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002699 /* The user may have moved the cursor before inserting something, try
2700 * to adjust the block for that. */
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002701 if (oap->start.lnum == curbuf->b_op_start_orig.lnum && !bd.is_MAX)
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002702 {
2703 if (oap->op_type == OP_INSERT
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002704 && oap->start.col
2705#ifdef FEAT_VIRTUALEDIT
2706 + oap->start.coladd
2707#endif
2708 != curbuf->b_op_start_orig.col
2709#ifdef FEAT_VIRTUALEDIT
2710 + curbuf->b_op_start_orig.coladd
2711#endif
2712 )
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002713 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002714 int t = getviscol2(curbuf->b_op_start_orig.col,
2715 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002716 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002717 pre_textlen -= t - oap->start_vcol;
2718 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002719 }
2720 else if (oap->op_type == OP_APPEND
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002721 && oap->end.col
2722#ifdef FEAT_VIRTUALEDIT
2723 + oap->end.coladd
2724#endif
2725 >= curbuf->b_op_start_orig.col
2726#ifdef FEAT_VIRTUALEDIT
2727 + curbuf->b_op_start_orig.coladd
2728#endif
2729 )
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002730 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002731 int t = getviscol2(curbuf->b_op_start_orig.col,
2732 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002733 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002734 /* reset pre_textlen to the value of OP_INSERT */
2735 pre_textlen += bd.textlen;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002736 pre_textlen -= t - oap->start_vcol;
2737 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002738 oap->op_type = OP_INSERT;
2739 }
2740 }
2741
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 /*
2743 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002744 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 * Don't do this when "$" used, end-of-line will have changed.
2746 */
2747 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2748 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2749 {
2750 if (oap->op_type == OP_APPEND)
2751 {
2752 pre_textlen += bd2.textlen - bd.textlen;
2753 if (bd2.endspaces)
2754 --bd2.textlen;
2755 }
2756 bd.textcol = bd2.textcol;
2757 bd.textlen = bd2.textlen;
2758 }
2759
2760 /*
2761 * Subsequent calls to ml_get() flush the firstline data - take a
2762 * copy of the required string.
2763 */
2764 firstline = ml_get(oap->start.lnum) + bd.textcol;
2765 if (oap->op_type == OP_APPEND)
2766 firstline += bd.textlen;
Bram Moolenaar5e4b9e92012-03-23 14:16:23 +01002767 if (pre_textlen >= 0
2768 && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 {
2770 ins_text = vim_strnsave(firstline, (int)ins_len);
2771 if (ins_text != NULL)
2772 {
2773 /* block handled here */
2774 if (u_save(oap->start.lnum,
2775 (linenr_T)(oap->end.lnum + 1)) == OK)
2776 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2777 &bd);
2778
2779 curwin->w_cursor.col = oap->start.col;
2780 check_cursor();
2781 vim_free(ins_text);
2782 }
2783 }
2784 }
2785}
2786#endif
2787
2788/*
2789 * op_change - handle a change operation
2790 *
2791 * return TRUE if edit() returns because of a CTRL-O command
2792 */
2793 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002794op_change(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795{
2796 colnr_T l;
2797 int retval;
2798#ifdef FEAT_VISUALEXTRA
2799 long offset;
2800 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002801 long ins_len;
2802 long pre_textlen = 0;
2803 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 char_u *firstline;
2805 char_u *ins_text, *newp, *oldp;
2806 struct block_def bd;
2807#endif
2808
2809 l = oap->start.col;
2810 if (oap->motion_type == MLINE)
2811 {
2812 l = 0;
2813#ifdef FEAT_SMARTINDENT
2814 if (!p_paste && curbuf->b_p_si
2815# ifdef FEAT_CINDENT
2816 && !curbuf->b_p_cin
2817# endif
2818 )
2819 can_si = TRUE; /* It's like opening a new line, do si */
2820#endif
2821 }
2822
2823 /* First delete the text in the region. In an empty buffer only need to
2824 * save for undo */
2825 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2826 {
2827 if (u_save_cursor() == FAIL)
2828 return FALSE;
2829 }
2830 else if (op_delete(oap) == FAIL)
2831 return FALSE;
2832
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002833 if ((l > curwin->w_cursor.col) && !LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 && !virtual_op)
2835 inc_cursor();
2836
2837#ifdef FEAT_VISUALEXTRA
2838 /* check for still on same line (<CR> in inserted text meaningless) */
2839 /* skip blank lines too */
2840 if (oap->block_mode)
2841 {
2842# ifdef FEAT_VIRTUALEDIT
2843 /* Add spaces before getting the current line length. */
2844 if (virtual_op && (curwin->w_cursor.coladd > 0
2845 || gchar_cursor() == NUL))
2846 coladvance_force(getviscol());
2847# endif
Bram Moolenaar53241da2007-09-13 20:41:32 +00002848 firstline = ml_get(oap->start.lnum);
2849 pre_textlen = (long)STRLEN(firstline);
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002850 pre_indent = (long)getwhitecols(firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 bd.textcol = curwin->w_cursor.col;
2852 }
2853#endif
2854
2855#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2856 if (oap->motion_type == MLINE)
2857 fix_indent();
2858#endif
2859
2860 retval = edit(NUL, FALSE, (linenr_T)1);
2861
2862#ifdef FEAT_VISUALEXTRA
2863 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002864 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002866 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002868 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002870 /* Auto-indenting may have changed the indent. If the cursor was past
2871 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002873 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 {
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002875 long new_indent = (long)getwhitecols(firstline);
Bram Moolenaar53241da2007-09-13 20:41:32 +00002876
2877 pre_textlen += new_indent - pre_indent;
2878 bd.textcol += new_indent - pre_indent;
2879 }
2880
2881 ins_len = (long)STRLEN(firstline) - pre_textlen;
2882 if (ins_len > 0)
2883 {
2884 /* Subsequent calls to ml_get() flush the firstline data - take a
2885 * copy of the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2887 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002888 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2890 linenr++)
2891 {
2892 block_prep(oap, &bd, linenr, TRUE);
2893 if (!bd.is_short || virtual_op)
2894 {
2895# ifdef FEAT_VIRTUALEDIT
2896 pos_T vpos;
2897
2898 /* If the block starts in virtual space, count the
2899 * initial coladd offset as part of "startspaces" */
2900 if (bd.is_short)
2901 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002902 vpos.lnum = linenr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903 (void)getvpos(&vpos, oap->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 }
2905 else
2906 vpos.coladd = 0;
2907# endif
2908 oldp = ml_get(linenr);
2909 newp = alloc_check((unsigned)(STRLEN(oldp)
2910# ifdef FEAT_VIRTUALEDIT
2911 + vpos.coladd
2912# endif
2913 + ins_len + 1));
2914 if (newp == NULL)
2915 continue;
2916 /* copy up to block start */
2917 mch_memmove(newp, oldp, (size_t)bd.textcol);
2918 offset = bd.textcol;
2919# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002920 vim_memset(newp + offset, ' ', (size_t)vpos.coladd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 offset += vpos.coladd;
2922# endif
2923 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2924 offset += ins_len;
2925 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002926 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 ml_replace(linenr, newp, FALSE);
2928 }
2929 }
2930 check_cursor();
2931
2932 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2933 }
2934 vim_free(ins_text);
2935 }
2936 }
2937#endif
2938
2939 return retval;
2940}
2941
2942/*
2943 * set all the yank registers to empty (called from main())
2944 */
2945 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002946init_yank(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947{
2948 int i;
2949
2950 for (i = 0; i < NUM_REGISTERS; ++i)
2951 y_regs[i].y_array = NULL;
2952}
2953
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002954#if defined(EXITFREE) || defined(PROTO)
2955 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002956clear_registers(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002957{
2958 int i;
2959
2960 for (i = 0; i < NUM_REGISTERS; ++i)
2961 {
2962 y_current = &y_regs[i];
2963 if (y_current->y_array != NULL)
2964 free_yank_all();
2965 }
2966}
2967#endif
2968
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969/*
2970 * Free "n" lines from the current yank register.
2971 * Called for normal freeing and in case of error.
2972 */
2973 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002974free_yank(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975{
2976 if (y_current->y_array != NULL)
2977 {
2978 long i;
2979
2980 for (i = n; --i >= 0; )
2981 {
2982#ifdef AMIGA /* only for very slow machines */
2983 if ((i & 1023) == 1023) /* this may take a while */
2984 {
2985 /*
2986 * This message should never cause a hit-return message.
2987 * Overwrite this message with any next message.
2988 */
2989 ++no_wait_return;
2990 smsg((char_u *)_("freeing %ld lines"), i + 1);
2991 --no_wait_return;
2992 msg_didout = FALSE;
2993 msg_col = 0;
2994 }
2995#endif
2996 vim_free(y_current->y_array[i]);
2997 }
2998 vim_free(y_current->y_array);
2999 y_current->y_array = NULL;
3000#ifdef AMIGA
3001 if (n >= 1000)
3002 MSG("");
3003#endif
3004 }
3005}
3006
3007 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003008free_yank_all(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009{
3010 free_yank(y_current->y_size);
3011}
3012
3013/*
3014 * Yank the text between "oap->start" and "oap->end" into a yank register.
3015 * If we are to append (uppercase register), we first yank into a new yank
3016 * register and then concatenate the old and the new one (so we keep the old
3017 * one in case of out-of-memory).
3018 *
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02003019 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 */
3021 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003022op_yank(oparg_T *oap, int deleting, int mess)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023{
3024 long y_idx; /* index in y_array[] */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003025 yankreg_T *curr; /* copy of y_current */
3026 yankreg_T newreg; /* new yank register when appending */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 char_u **new_ptr;
3028 linenr_T lnum; /* current line number */
3029 long j;
3030 int yanktype = oap->motion_type;
3031 long yanklines = oap->line_count;
3032 linenr_T yankendlnum = oap->end.lnum;
3033 char_u *p;
3034 char_u *pnew;
3035 struct block_def bd;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003036#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003037 int did_star = FALSE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003038#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039
3040 /* check for read-only register */
3041 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
3042 {
3043 beep_flush();
3044 return FAIL;
3045 }
3046 if (oap->regname == '_') /* black hole: nothing to do */
3047 return OK;
3048
3049#ifdef FEAT_CLIPBOARD
3050 if (!clip_star.available && oap->regname == '*')
3051 oap->regname = 0;
3052 else if (!clip_plus.available && oap->regname == '+')
3053 oap->regname = 0;
3054#endif
3055
3056 if (!deleting) /* op_delete() already set y_current */
3057 get_yank_register(oap->regname, TRUE);
3058
3059 curr = y_current;
3060 /* append to existing contents */
3061 if (y_append && y_current->y_array != NULL)
3062 y_current = &newreg;
3063 else
3064 free_yank_all(); /* free previously yanked lines */
3065
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00003066 /*
3067 * If the cursor was in column 1 before and after the movement, and the
3068 * operator is not inclusive, the yank is always linewise.
3069 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070 if ( oap->motion_type == MCHAR
3071 && oap->start.col == 0
3072 && !oap->inclusive
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00003074 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 && oap->end.col == 0
3076 && yanklines > 1)
3077 {
3078 yanktype = MLINE;
3079 --yankendlnum;
3080 --yanklines;
3081 }
3082
3083 y_current->y_size = yanklines;
3084 y_current->y_type = yanktype; /* set the yank register type */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085 y_current->y_width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
3087 yanklines), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 if (y_current->y_array == NULL)
3089 {
3090 y_current = curr;
3091 return FAIL;
3092 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003093#ifdef FEAT_VIMINFO
3094 y_current->y_time_set = vim_time();
3095#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096
3097 y_idx = 0;
3098 lnum = oap->start.lnum;
3099
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 if (oap->block_mode)
3101 {
3102 /* Visual block mode */
3103 y_current->y_type = MBLOCK; /* set the yank register type */
3104 y_current->y_width = oap->end_vcol - oap->start_vcol;
3105
3106 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
3107 y_current->y_width--;
3108 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109
3110 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
3111 {
3112 switch (y_current->y_type)
3113 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 case MBLOCK:
3115 block_prep(oap, &bd, lnum, FALSE);
3116 if (yank_copy_line(&bd, y_idx) == FAIL)
3117 goto fail;
3118 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119
3120 case MLINE:
3121 if ((y_current->y_array[y_idx] =
3122 vim_strsave(ml_get(lnum))) == NULL)
3123 goto fail;
3124 break;
3125
3126 case MCHAR:
3127 {
3128 colnr_T startcol = 0, endcol = MAXCOL;
3129#ifdef FEAT_VIRTUALEDIT
3130 int is_oneChar = FALSE;
3131 colnr_T cs, ce;
3132#endif
3133 p = ml_get(lnum);
3134 bd.startspaces = 0;
3135 bd.endspaces = 0;
3136
3137 if (lnum == oap->start.lnum)
3138 {
3139 startcol = oap->start.col;
3140#ifdef FEAT_VIRTUALEDIT
3141 if (virtual_op)
3142 {
3143 getvcol(curwin, &oap->start, &cs, NULL, &ce);
3144 if (ce != cs && oap->start.coladd > 0)
3145 {
3146 /* Part of a tab selected -- but don't
3147 * double-count it. */
3148 bd.startspaces = (ce - cs + 1)
3149 - oap->start.coladd;
3150 startcol++;
3151 }
3152 }
3153#endif
3154 }
3155
3156 if (lnum == oap->end.lnum)
3157 {
3158 endcol = oap->end.col;
3159#ifdef FEAT_VIRTUALEDIT
3160 if (virtual_op)
3161 {
3162 getvcol(curwin, &oap->end, &cs, NULL, &ce);
3163 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
3164# ifdef FEAT_MBYTE
3165 /* Don't add space for double-wide
3166 * char; endcol will be on last byte
3167 * of multi-byte char. */
3168 && (*mb_head_off)(p, p + endcol) == 0
3169# endif
3170 ))
3171 {
3172 if (oap->start.lnum == oap->end.lnum
3173 && oap->start.col == oap->end.col)
3174 {
3175 /* Special case: inside a single char */
3176 is_oneChar = TRUE;
3177 bd.startspaces = oap->end.coladd
3178 - oap->start.coladd + oap->inclusive;
3179 endcol = startcol;
3180 }
3181 else
3182 {
3183 bd.endspaces = oap->end.coladd
3184 + oap->inclusive;
3185 endcol -= oap->inclusive;
3186 }
3187 }
3188 }
3189#endif
3190 }
Bram Moolenaar18e00d22012-05-18 12:49:40 +02003191 if (endcol == MAXCOL)
3192 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 if (startcol > endcol
3194#ifdef FEAT_VIRTUALEDIT
3195 || is_oneChar
3196#endif
3197 )
3198 bd.textlen = 0;
3199 else
3200 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 bd.textlen = endcol - startcol + oap->inclusive;
3202 }
3203 bd.textstart = p + startcol;
3204 if (yank_copy_line(&bd, y_idx) == FAIL)
3205 goto fail;
3206 break;
3207 }
3208 /* NOTREACHED */
3209 }
3210 }
3211
3212 if (curr != y_current) /* append the new block to the old block */
3213 {
3214 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3215 (curr->y_size + y_current->y_size)), TRUE);
3216 if (new_ptr == NULL)
3217 goto fail;
3218 for (j = 0; j < curr->y_size; ++j)
3219 new_ptr[j] = curr->y_array[j];
3220 vim_free(curr->y_array);
3221 curr->y_array = new_ptr;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003222#ifdef FEAT_VIMINFO
3223 curr->y_time_set = vim_time();
3224#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225
3226 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3227 curr->y_type = MLINE;
3228
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003229 /* Concatenate the last line of the old block with the first line of
3230 * the new block, unless being Vi compatible. */
3231 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 {
3233 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3234 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3235 if (pnew == NULL)
3236 {
3237 y_idx = y_current->y_size - 1;
3238 goto fail;
3239 }
3240 STRCPY(pnew, curr->y_array[--j]);
3241 STRCAT(pnew, y_current->y_array[0]);
3242 vim_free(curr->y_array[j]);
3243 vim_free(y_current->y_array[0]);
3244 curr->y_array[j++] = pnew;
3245 y_idx = 1;
3246 }
3247 else
3248 y_idx = 0;
3249 while (y_idx < y_current->y_size)
3250 curr->y_array[j++] = y_current->y_array[y_idx++];
3251 curr->y_size = j;
3252 vim_free(y_current->y_array);
3253 y_current = curr;
3254 }
Bram Moolenaar7ec83432014-06-17 18:16:11 +02003255 if (curwin->w_p_rnu)
3256 redraw_later(SOME_VALID); /* cursor moved to start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 if (mess) /* Display message about yank? */
3258 {
3259 if (yanktype == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261 && yanklines == 1)
3262 yanklines = 0;
3263 /* Some versions of Vi use ">=" here, some don't... */
3264 if (yanklines > p_report)
3265 {
Bram Moolenaare45deb72017-07-16 17:56:16 +02003266 char namebuf[100];
3267
3268 if (oap->regname == NUL)
3269 *namebuf = NUL;
3270 else
3271 vim_snprintf(namebuf, sizeof(namebuf),
Bram Moolenaar60d0e972017-07-16 20:54:34 +02003272 _(" into \"%c"), oap->regname);
Bram Moolenaare45deb72017-07-16 17:56:16 +02003273
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 /* redisplay now, so message is not deleted */
3275 update_topline_redraw();
3276 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003277 {
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003278 if (oap->block_mode)
Bram Moolenaare45deb72017-07-16 17:56:16 +02003279 smsg((char_u *)_("block of 1 line yanked%s"), namebuf);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003280 else
Bram Moolenaare45deb72017-07-16 17:56:16 +02003281 smsg((char_u *)_("1 line yanked%s"), namebuf);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003282 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003283 else if (oap->block_mode)
Bram Moolenaare45deb72017-07-16 17:56:16 +02003284 smsg((char_u *)_("block of %ld lines yanked%s"),
3285 yanklines, namebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286 else
Bram Moolenaare45deb72017-07-16 17:56:16 +02003287 smsg((char_u *)_("%ld lines yanked%s"), yanklines,
3288 namebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 }
3290 }
3291
3292 /*
3293 * Set "'[" and "']" marks.
3294 */
3295 curbuf->b_op_start = oap->start;
3296 curbuf->b_op_end = oap->end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003297 if (yanktype == MLINE && !oap->block_mode)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003298 {
3299 curbuf->b_op_start.col = 0;
3300 curbuf->b_op_end.col = MAXCOL;
3301 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302
3303#ifdef FEAT_CLIPBOARD
3304 /*
3305 * If we were yanking to the '*' register, send result to clipboard.
3306 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3307 * to the '*' register.
3308 */
3309 if (clip_star.available
3310 && (curr == &(y_regs[STAR_REGISTER])
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003311 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003312 && ((clip_unnamed | clip_unnamed_saved) & CLIP_UNNAMED))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 {
3314 if (curr != &(y_regs[STAR_REGISTER]))
3315 /* Copy the text from register 0 to the clipboard register. */
3316 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3317
3318 clip_own_selection(&clip_star);
3319 clip_gen_set_selection(&clip_star);
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003320# ifdef FEAT_X11
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003321 did_star = TRUE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003322# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 }
3324
3325# ifdef FEAT_X11
3326 /*
3327 * If we were yanking to the '+' register, send result to selection.
3328 * Also copy to the '*' register, in case auto-select is off.
3329 */
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003330 if (clip_plus.available
3331 && (curr == &(y_regs[PLUS_REGISTER])
3332 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003333 && ((clip_unnamed | clip_unnamed_saved) &
3334 CLIP_UNNAMED_PLUS))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335 {
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003336 if (curr != &(y_regs[PLUS_REGISTER]))
3337 /* Copy the text from register 0 to the clipboard register. */
3338 copy_yank_reg(&(y_regs[PLUS_REGISTER]));
3339
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 clip_own_selection(&clip_plus);
3341 clip_gen_set_selection(&clip_plus);
Bram Moolenaar8bfe07b2017-10-15 21:47:05 +02003342 if (!clip_isautosel_star() && !clip_isautosel_plus()
3343 && !did_star && curr == &(y_regs[PLUS_REGISTER]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 {
3345 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3346 clip_own_selection(&clip_star);
3347 clip_gen_set_selection(&clip_star);
3348 }
3349 }
3350# endif
3351#endif
3352
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01003353#ifdef FEAT_AUTOCMD
3354 if (!deleting && has_textyankpost())
3355 yank_do_autocmd(oap, y_current);
3356#endif
3357
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358 return OK;
3359
3360fail: /* free the allocated lines */
3361 free_yank(y_idx + 1);
3362 y_current = curr;
3363 return FAIL;
3364}
3365
3366 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003367yank_copy_line(struct block_def *bd, long y_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368{
3369 char_u *pnew;
3370
3371 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3372 == NULL)
3373 return FAIL;
3374 y_current->y_array[y_idx] = pnew;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003375 vim_memset(pnew, ' ', (size_t)bd->startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 pnew += bd->startspaces;
3377 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3378 pnew += bd->textlen;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003379 vim_memset(pnew, ' ', (size_t)bd->endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 pnew += bd->endspaces;
3381 *pnew = NUL;
3382 return OK;
3383}
3384
3385#ifdef FEAT_CLIPBOARD
3386/*
3387 * Make a copy of the y_current register to register "reg".
3388 */
3389 static void
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003390copy_yank_reg(yankreg_T *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003392 yankreg_T *curr = y_current;
3393 long j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394
3395 y_current = reg;
3396 free_yank_all();
3397 *y_current = *curr;
3398 y_current->y_array = (char_u **)lalloc_clear(
3399 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3400 if (y_current->y_array == NULL)
3401 y_current->y_size = 0;
3402 else
3403 for (j = 0; j < y_current->y_size; ++j)
3404 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3405 {
3406 free_yank(j);
3407 y_current->y_size = 0;
3408 break;
3409 }
3410 y_current = curr;
3411}
3412#endif
3413
3414/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003415 * Put contents of register "regname" into the text.
3416 * Caller must check "regname" to be valid!
3417 * "flags": PUT_FIXINDENT make indent look nice
3418 * PUT_CURSEND leave cursor after end of new text
3419 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 */
3421 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003422do_put(
3423 int regname,
3424 int dir, /* BACKWARD for 'P', FORWARD for 'p' */
3425 long count,
3426 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427{
3428 char_u *ptr;
3429 char_u *newp, *oldp;
3430 int yanklen;
3431 int totlen = 0; /* init for gcc */
3432 linenr_T lnum;
3433 colnr_T col;
3434 long i; /* index in y_array[] */
3435 int y_type;
3436 long y_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 int oldlen;
3438 long y_width = 0;
3439 colnr_T vcol;
3440 int delcount;
3441 int incr = 0;
3442 long j;
3443 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 char_u **y_array = NULL;
3445 long nr_lines = 0;
3446 pos_T new_cursor;
3447 int indent;
3448 int orig_indent = 0; /* init for gcc */
3449 int indent_diff = 0; /* init for gcc */
3450 int first_indent = TRUE;
3451 int lendiff = 0;
3452 pos_T old_pos;
3453 char_u *insert_string = NULL;
3454 int allocated = FALSE;
3455 long cnt;
3456
3457#ifdef FEAT_CLIPBOARD
3458 /* Adjust register name for "unnamed" in 'clipboard'. */
3459 adjust_clip_reg(&regname);
3460 (void)may_get_selection(regname);
3461#endif
3462
3463 if (flags & PUT_FIXINDENT)
3464 orig_indent = get_indent();
3465
3466 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3467 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3468
3469 /*
3470 * Using inserted text works differently, because the register includes
3471 * special characters (newlines, etc.).
3472 */
3473 if (regname == '.')
3474 {
Bram Moolenaarf8eb9c52017-01-02 17:31:24 +01003475 if (VIsual_active)
3476 stuffcharReadbuff(VIsual_mode);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3478 (count == -1 ? 'O' : 'i')), count, FALSE);
3479 /* Putting the text is done later, so can't really move the cursor to
3480 * the next character. Use "l" to simulate it. */
3481 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3482 stuffcharReadbuff('l');
3483 return;
3484 }
3485
3486 /*
3487 * For special registers '%' (file name), '#' (alternate file name) and
3488 * ':' (last command line), etc. we have to create a fake yank register.
3489 */
3490 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3491 {
3492 if (insert_string == NULL)
3493 return;
3494 }
3495
Bram Moolenaar27356ad2012-12-12 16:11:36 +01003496#ifdef FEAT_AUTOCMD
3497 /* Autocommands may be executed when saving lines for undo, which may make
3498 * y_array invalid. Start undo now to avoid that. */
3499 u_save(curwin->w_cursor.lnum, curwin->w_cursor.lnum + 1);
3500#endif
3501
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 if (insert_string != NULL)
3503 {
3504 y_type = MCHAR;
3505#ifdef FEAT_EVAL
3506 if (regname == '=')
3507 {
3508 /* For the = register we need to split the string at NL
Bram Moolenaara554a192011-09-21 17:33:53 +02003509 * characters.
3510 * Loop twice: count the number of lines and save them. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 for (;;)
3512 {
3513 y_size = 0;
3514 ptr = insert_string;
3515 while (ptr != NULL)
3516 {
3517 if (y_array != NULL)
3518 y_array[y_size] = ptr;
3519 ++y_size;
3520 ptr = vim_strchr(ptr, '\n');
3521 if (ptr != NULL)
3522 {
3523 if (y_array != NULL)
3524 *ptr = NUL;
3525 ++ptr;
Bram Moolenaara554a192011-09-21 17:33:53 +02003526 /* A trailing '\n' makes the register linewise. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527 if (*ptr == NUL)
3528 {
3529 y_type = MLINE;
3530 break;
3531 }
3532 }
3533 }
3534 if (y_array != NULL)
3535 break;
3536 y_array = (char_u **)alloc((unsigned)
3537 (y_size * sizeof(char_u *)));
3538 if (y_array == NULL)
3539 goto end;
3540 }
3541 }
3542 else
3543#endif
3544 {
3545 y_size = 1; /* use fake one-line yank register */
3546 y_array = &insert_string;
3547 }
3548 }
3549 else
3550 {
3551 get_yank_register(regname, FALSE);
3552
3553 y_type = y_current->y_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 y_width = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 y_size = y_current->y_size;
3556 y_array = y_current->y_array;
3557 }
3558
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 if (y_type == MLINE)
3560 {
3561 if (flags & PUT_LINE_SPLIT)
3562 {
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003563 char_u *p;
3564
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 /* "p" or "P" in Visual mode: split the lines to put the text in
3566 * between. */
3567 if (u_save_cursor() == FAIL)
3568 goto end;
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003569 p = ml_get_cursor();
3570 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003571 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003572 ptr = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 if (ptr == NULL)
3574 goto end;
3575 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3576 vim_free(ptr);
3577
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003578 oldp = ml_get_curline();
3579 p = oldp + curwin->w_cursor.col;
3580 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003581 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003582 ptr = vim_strnsave(oldp, p - oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 if (ptr == NULL)
3584 goto end;
3585 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3586 ++nr_lines;
3587 dir = FORWARD;
3588 }
3589 if (flags & PUT_LINE_FORWARD)
3590 {
3591 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003592 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 dir = FORWARD;
3594 }
3595 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3596 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3597 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598
3599 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3600 y_type = MLINE;
3601
3602 if (y_size == 0 || y_array == NULL)
3603 {
3604 EMSG2(_("E353: Nothing in register %s"),
3605 regname == 0 ? (char_u *)"\"" : transchar(regname));
3606 goto end;
3607 }
3608
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 if (y_type == MBLOCK)
3610 {
3611 lnum = curwin->w_cursor.lnum + y_size + 1;
3612 if (lnum > curbuf->b_ml.ml_line_count)
3613 lnum = curbuf->b_ml.ml_line_count + 1;
3614 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3615 goto end;
3616 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003617 else if (y_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 {
3619 lnum = curwin->w_cursor.lnum;
3620#ifdef FEAT_FOLDING
3621 /* Correct line number for closed fold. Don't move the cursor yet,
3622 * u_save() uses it. */
3623 if (dir == BACKWARD)
3624 (void)hasFolding(lnum, &lnum, NULL);
3625 else
3626 (void)hasFolding(lnum, NULL, &lnum);
3627#endif
3628 if (dir == FORWARD)
3629 ++lnum;
Bram Moolenaar10315b12013-06-29 17:19:28 +02003630 /* In an empty buffer the empty line is going to be replaced, include
3631 * it in the saved lines. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003632 if ((BUFEMPTY() ? u_save(0, 2) : u_save(lnum - 1, lnum)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 goto end;
3634#ifdef FEAT_FOLDING
3635 if (dir == FORWARD)
3636 curwin->w_cursor.lnum = lnum - 1;
3637 else
3638 curwin->w_cursor.lnum = lnum;
3639 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3640#endif
3641 }
3642 else if (u_save_cursor() == FAIL)
3643 goto end;
3644
3645 yanklen = (int)STRLEN(y_array[0]);
3646
3647#ifdef FEAT_VIRTUALEDIT
3648 if (ve_flags == VE_ALL && y_type == MCHAR)
3649 {
3650 if (gchar_cursor() == TAB)
3651 {
3652 /* Don't need to insert spaces when "p" on the last position of a
3653 * tab or "P" on the first position. */
3654 if (dir == FORWARD
3655 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3656 : curwin->w_cursor.coladd > 0)
3657 coladvance_force(getviscol());
3658 else
3659 curwin->w_cursor.coladd = 0;
3660 }
3661 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3662 coladvance_force(getviscol() + (dir == FORWARD));
3663 }
3664#endif
3665
3666 lnum = curwin->w_cursor.lnum;
3667 col = curwin->w_cursor.col;
3668
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 /*
3670 * Block mode
3671 */
3672 if (y_type == MBLOCK)
3673 {
Bram Moolenaarc8129962017-01-22 20:04:51 +01003674 int c = gchar_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 colnr_T endcol2 = 0;
3676
3677 if (dir == FORWARD && c != NUL)
3678 {
3679#ifdef FEAT_VIRTUALEDIT
3680 if (ve_flags == VE_ALL)
3681 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3682 else
3683#endif
3684 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3685
3686#ifdef FEAT_MBYTE
3687 if (has_mbyte)
3688 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003689 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 else
3691#endif
3692#ifdef FEAT_VIRTUALEDIT
3693 if (c != TAB || ve_flags != VE_ALL)
3694#endif
3695 ++curwin->w_cursor.col;
3696 ++col;
3697 }
3698 else
3699 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3700
3701#ifdef FEAT_VIRTUALEDIT
3702 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003703 if (ve_flags == VE_ALL
3704 && (curwin->w_cursor.coladd > 0
3705 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 {
3707 if (dir == FORWARD && c == NUL)
3708 ++col;
3709 if (dir != FORWARD && c != NUL)
3710 ++curwin->w_cursor.col;
3711 if (c == TAB)
3712 {
3713 if (dir == BACKWARD && curwin->w_cursor.col)
3714 curwin->w_cursor.col--;
3715 if (dir == FORWARD && col - 1 == endcol2)
3716 curwin->w_cursor.col++;
3717 }
3718 }
3719 curwin->w_cursor.coladd = 0;
3720#endif
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003721 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 for (i = 0; i < y_size; ++i)
3723 {
3724 int spaces;
3725 char shortline;
3726
3727 bd.startspaces = 0;
3728 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 vcol = 0;
3730 delcount = 0;
3731
3732 /* add a new line */
3733 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3734 {
3735 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3736 (colnr_T)1, FALSE) == FAIL)
3737 break;
3738 ++nr_lines;
3739 }
3740 /* get the old line and advance to the position to insert at */
3741 oldp = ml_get_curline();
3742 oldlen = (int)STRLEN(oldp);
3743 for (ptr = oldp; vcol < col && *ptr; )
3744 {
3745 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02003746 incr = lbr_chartabsize_adv(oldp, &ptr, (colnr_T)vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 vcol += incr;
3748 }
3749 bd.textcol = (colnr_T)(ptr - oldp);
3750
3751 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3752
3753 if (vcol < col) /* line too short, padd with spaces */
3754 bd.startspaces = col - vcol;
3755 else if (vcol > col)
3756 {
3757 bd.endspaces = vcol - col;
3758 bd.startspaces = incr - bd.endspaces;
3759 --bd.textcol;
3760 delcount = 1;
3761#ifdef FEAT_MBYTE
3762 if (has_mbyte)
3763 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3764#endif
3765 if (oldp[bd.textcol] != TAB)
3766 {
3767 /* Only a Tab can be split into spaces. Other
3768 * characters will have to be moved to after the
3769 * block, causing misalignment. */
3770 delcount = 0;
3771 bd.endspaces = 0;
3772 }
3773 }
3774
3775 yanklen = (int)STRLEN(y_array[i]);
3776
3777 /* calculate number of spaces required to fill right side of block*/
3778 spaces = y_width + 1;
3779 for (j = 0; j < yanklen; j++)
Bram Moolenaar597a4222014-06-25 14:39:50 +02003780 spaces -= lbr_chartabsize(NULL, &y_array[i][j], 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 if (spaces < 0)
3782 spaces = 0;
3783
3784 /* insert the new text */
3785 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3786 newp = alloc_check((unsigned)totlen + oldlen + 1);
3787 if (newp == NULL)
3788 break;
3789 /* copy part up to cursor to new line */
3790 ptr = newp;
3791 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3792 ptr += bd.textcol;
3793 /* may insert some spaces before the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003794 vim_memset(ptr, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 ptr += bd.startspaces;
3796 /* insert the new text */
3797 for (j = 0; j < count; ++j)
3798 {
3799 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3800 ptr += yanklen;
3801
3802 /* insert block's trailing spaces only if there's text behind */
3803 if ((j < count - 1 || !shortline) && spaces)
3804 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003805 vim_memset(ptr, ' ', (size_t)spaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 ptr += spaces;
3807 }
3808 }
3809 /* may insert some spaces after the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003810 vim_memset(ptr, ' ', (size_t)bd.endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 ptr += bd.endspaces;
3812 /* move the text after the cursor to the end of the line. */
3813 mch_memmove(ptr, oldp + bd.textcol + delcount,
3814 (size_t)(oldlen - bd.textcol - delcount + 1));
3815 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3816
3817 ++curwin->w_cursor.lnum;
3818 if (i == 0)
3819 curwin->w_cursor.col += bd.startspaces;
3820 }
3821
3822 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3823
3824 /* Set '[ mark. */
3825 curbuf->b_op_start = curwin->w_cursor;
3826 curbuf->b_op_start.lnum = lnum;
3827
3828 /* adjust '] mark */
3829 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3830 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003831# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003833# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 if (flags & PUT_CURSEND)
3835 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003836 colnr_T len;
3837
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838 curwin->w_cursor = curbuf->b_op_end;
3839 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003840
3841 /* in Insert mode we might be after the NUL, correct for that */
3842 len = (colnr_T)STRLEN(ml_get_curline());
3843 if (curwin->w_cursor.col > len)
3844 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 }
3846 else
3847 curwin->w_cursor.lnum = lnum;
3848 }
3849 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850 {
3851 /*
3852 * Character or Line mode
3853 */
3854 if (y_type == MCHAR)
3855 {
3856 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3857 * char */
3858 if (dir == FORWARD && gchar_cursor() != NUL)
3859 {
3860#ifdef FEAT_MBYTE
3861 if (has_mbyte)
3862 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003863 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864
3865 /* put it on the next of the multi-byte character. */
3866 col += bytelen;
3867 if (yanklen)
3868 {
3869 curwin->w_cursor.col += bytelen;
3870 curbuf->b_op_end.col += bytelen;
3871 }
3872 }
3873 else
3874#endif
3875 {
3876 ++col;
3877 if (yanklen)
3878 {
3879 ++curwin->w_cursor.col;
3880 ++curbuf->b_op_end.col;
3881 }
3882 }
3883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 curbuf->b_op_start = curwin->w_cursor;
3885 }
3886 /*
3887 * Line mode: BACKWARD is the same as FORWARD on the previous line
3888 */
3889 else if (dir == BACKWARD)
3890 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003891 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892
3893 /*
3894 * simple case: insert into current line
3895 */
3896 if (y_type == MCHAR && y_size == 1)
3897 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003898 linenr_T end_lnum = 0; /* init for gcc */
Bram Moolenaar9957a102017-01-23 21:53:53 +01003899
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003900 if (VIsual_active)
3901 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003902 end_lnum = curbuf->b_visual.vi_end.lnum;
3903 if (end_lnum < curbuf->b_visual.vi_start.lnum)
3904 end_lnum = curbuf->b_visual.vi_start.lnum;
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003905 }
Bram Moolenaar9957a102017-01-23 21:53:53 +01003906
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003907 do {
3908 totlen = count * yanklen;
3909 if (totlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 {
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003911 oldp = ml_get(lnum);
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003912 if (VIsual_active && col > (int)STRLEN(oldp))
3913 {
3914 lnum++;
3915 continue;
3916 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003917 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3918 if (newp == NULL)
3919 goto end; /* alloc() gave an error message */
3920 mch_memmove(newp, oldp, (size_t)col);
3921 ptr = newp + col;
3922 for (i = 0; i < count; ++i)
3923 {
3924 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3925 ptr += yanklen;
3926 }
3927 STRMOVE(ptr, oldp + col);
3928 ml_replace(lnum, newp, FALSE);
3929 /* Place cursor on last putted char. */
3930 if (lnum == curwin->w_cursor.lnum)
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003931 {
3932 /* make sure curwin->w_virtcol is updated */
3933 changed_cline_bef_curs();
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003934 curwin->w_cursor.col += (colnr_T)(totlen - 1);
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003935 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003937 if (VIsual_active)
3938 lnum++;
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003939 } while (VIsual_active && lnum <= end_lnum);
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003940
Bram Moolenaar06e7ce12014-11-19 17:35:39 +01003941 if (VIsual_active) /* reset lnum to the last visual line */
3942 lnum--;
3943
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 curbuf->b_op_end = curwin->w_cursor;
3945 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3946 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3947 ++curwin->w_cursor.col;
3948 changed_bytes(lnum, col);
3949 }
3950 else
3951 {
3952 /*
3953 * Insert at least one line. When y_type is MCHAR, break the first
3954 * line in two.
3955 */
3956 for (cnt = 1; cnt <= count; ++cnt)
3957 {
3958 i = 0;
3959 if (y_type == MCHAR)
3960 {
3961 /*
3962 * Split the current line in two at the insert position.
3963 * First insert y_array[size - 1] in front of second line.
3964 * Then append y_array[0] to first line.
3965 */
3966 lnum = new_cursor.lnum;
3967 ptr = ml_get(lnum) + col;
3968 totlen = (int)STRLEN(y_array[y_size - 1]);
3969 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3970 if (newp == NULL)
3971 goto error;
3972 STRCPY(newp, y_array[y_size - 1]);
3973 STRCAT(newp, ptr);
3974 /* insert second line */
3975 ml_append(lnum, newp, (colnr_T)0, FALSE);
3976 vim_free(newp);
3977
3978 oldp = ml_get(lnum);
3979 newp = alloc_check((unsigned)(col + yanklen + 1));
3980 if (newp == NULL)
3981 goto error;
3982 /* copy first part of line */
3983 mch_memmove(newp, oldp, (size_t)col);
3984 /* append to first line */
3985 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3986 ml_replace(lnum, newp, FALSE);
3987
3988 curwin->w_cursor.lnum = lnum;
3989 i = 1;
3990 }
3991
3992 for (; i < y_size; ++i)
3993 {
3994 if ((y_type != MCHAR || i < y_size - 1)
3995 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3996 == FAIL)
3997 goto error;
3998 lnum++;
3999 ++nr_lines;
4000 if (flags & PUT_FIXINDENT)
4001 {
4002 old_pos = curwin->w_cursor;
4003 curwin->w_cursor.lnum = lnum;
4004 ptr = ml_get(lnum);
4005 if (cnt == count && i == y_size - 1)
4006 lendiff = (int)STRLEN(ptr);
4007#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
4008 if (*ptr == '#' && preprocs_left())
4009 indent = 0; /* Leave # lines at start */
4010 else
4011#endif
4012 if (*ptr == NUL)
4013 indent = 0; /* Ignore empty lines */
4014 else if (first_indent)
4015 {
4016 indent_diff = orig_indent - get_indent();
4017 indent = orig_indent;
4018 first_indent = FALSE;
4019 }
4020 else if ((indent = get_indent() + indent_diff) < 0)
4021 indent = 0;
4022 (void)set_indent(indent, 0);
4023 curwin->w_cursor = old_pos;
4024 /* remember how many chars were removed */
4025 if (cnt == count && i == y_size - 1)
4026 lendiff -= (int)STRLEN(ml_get(lnum));
4027 }
4028 }
4029 }
4030
4031error:
4032 /* Adjust marks. */
4033 if (y_type == MLINE)
4034 {
4035 curbuf->b_op_start.col = 0;
4036 if (dir == FORWARD)
4037 curbuf->b_op_start.lnum++;
4038 }
Bram Moolenaar82faa252016-06-04 20:14:07 +02004039 /* Skip mark_adjust when adding lines after the last one, there
Bram Moolenaarf58a8472017-03-05 18:03:04 +01004040 * can't be marks there. But still needed in diff mode. */
Bram Moolenaar82faa252016-06-04 20:14:07 +02004041 if (curbuf->b_op_start.lnum + (y_type == MCHAR) - 1 + nr_lines
Bram Moolenaarf58a8472017-03-05 18:03:04 +01004042 < curbuf->b_ml.ml_line_count
4043#ifdef FEAT_DIFF
4044 || curwin->w_p_diff
4045#endif
4046 )
Bram Moolenaar82faa252016-06-04 20:14:07 +02004047 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 (linenr_T)MAXLNUM, nr_lines, 0L);
4049
4050 /* note changed text for displaying and folding */
4051 if (y_type == MCHAR)
4052 changed_lines(curwin->w_cursor.lnum, col,
4053 curwin->w_cursor.lnum + 1, nr_lines);
4054 else
4055 changed_lines(curbuf->b_op_start.lnum, 0,
4056 curbuf->b_op_start.lnum, nr_lines);
4057
4058 /* put '] mark at last inserted character */
4059 curbuf->b_op_end.lnum = lnum;
4060 /* correct length for change in indent */
4061 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
4062 if (col > 1)
4063 curbuf->b_op_end.col = col - 1;
4064 else
4065 curbuf->b_op_end.col = 0;
4066
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004067 if (flags & PUT_CURSLINE)
4068 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00004069 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004070 curwin->w_cursor.lnum = lnum;
4071 beginline(BL_WHITE | BL_FIX);
4072 }
4073 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 {
4075 /* put cursor after inserted text */
4076 if (y_type == MLINE)
4077 {
4078 if (lnum >= curbuf->b_ml.ml_line_count)
4079 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4080 else
4081 curwin->w_cursor.lnum = lnum + 1;
4082 curwin->w_cursor.col = 0;
4083 }
4084 else
4085 {
4086 curwin->w_cursor.lnum = lnum;
4087 curwin->w_cursor.col = col;
4088 }
4089 }
4090 else if (y_type == MLINE)
4091 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004092 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 curwin->w_cursor.col = 0;
4094 if (dir == FORWARD)
4095 ++curwin->w_cursor.lnum;
4096 beginline(BL_WHITE | BL_FIX);
4097 }
4098 else /* put cursor on first inserted character */
4099 curwin->w_cursor = new_cursor;
4100 }
4101 }
4102
4103 msgmore(nr_lines);
4104 curwin->w_set_curswant = TRUE;
4105
4106end:
4107 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004109 if (regname == '=')
4110 vim_free(y_array);
4111
Bram Moolenaar033d8882013-09-25 23:24:57 +02004112 VIsual_active = FALSE;
Bram Moolenaar033d8882013-09-25 23:24:57 +02004113
Bram Moolenaar677ee682005-01-27 14:41:15 +00004114 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004115 adjust_cursor_eol();
4116}
4117
4118/*
4119 * When the cursor is on the NUL past the end of the line and it should not be
4120 * there move it left.
4121 */
4122 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004123adjust_cursor_eol(void)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004124{
4125 if (curwin->w_cursor.col > 0
4126 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00004127#ifdef FEAT_VIRTUALEDIT
4128 && (ve_flags & VE_ONEMORE) == 0
4129#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 && !(restart_edit || (State & INSERT)))
4131 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00004132 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00004133 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004134
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135#ifdef FEAT_VIRTUALEDIT
4136 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00004137 {
4138 colnr_T scol, ecol;
4139
4140 /* Coladd is set to the width of the last character. */
4141 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4142 curwin->w_cursor.coladd = ecol - scol + 1;
4143 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144#endif
4145 }
4146}
4147
4148#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
4149/*
4150 * Return TRUE if lines starting with '#' should be left aligned.
4151 */
4152 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004153preprocs_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154{
4155 return
4156# ifdef FEAT_SMARTINDENT
4157# ifdef FEAT_CINDENT
4158 (curbuf->b_p_si && !curbuf->b_p_cin) ||
4159# else
4160 curbuf->b_p_si
4161# endif
4162# endif
4163# ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004164 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE)
4165 && curbuf->b_ind_hash_comment == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166# endif
4167 ;
4168}
4169#endif
4170
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004171/*
4172 * Return the character name of the register with the given number.
4173 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004175get_register_name(int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176{
4177 if (num == -1)
4178 return '"';
4179 else if (num < 10)
4180 return num + '0';
4181 else if (num == DELETION_REGISTER)
4182 return '-';
4183#ifdef FEAT_CLIPBOARD
4184 else if (num == STAR_REGISTER)
4185 return '*';
4186 else if (num == PLUS_REGISTER)
4187 return '+';
4188#endif
4189 else
4190 {
4191#ifdef EBCDIC
4192 int i;
4193
4194 /* EBCDIC is really braindead ... */
4195 i = 'a' + (num - 10);
4196 if (i > 'i')
4197 i += 7;
4198 if (i > 'r')
4199 i += 8;
4200 return i;
4201#else
4202 return num + 'a' - 10;
4203#endif
4204 }
4205}
4206
4207/*
4208 * ":dis" and ":registers": Display the contents of the yank registers.
4209 */
4210 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004211ex_display(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004212{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004213 int i, n;
4214 long j;
4215 char_u *p;
4216 yankreg_T *yb;
4217 int name;
4218 int attr;
4219 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004220#ifdef FEAT_MBYTE
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004221 int clen;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004222#else
4223# define clen 1
4224#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225
4226 if (arg != NULL && *arg == NUL)
4227 arg = NULL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01004228 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229
4230 /* Highlight title */
4231 MSG_PUTS_TITLE(_("\n--- Registers ---"));
4232 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
4233 {
4234 name = get_register_name(i);
Bram Moolenaar0818b872010-11-24 14:28:58 +01004235 if (arg != NULL && vim_strchr(arg, name) == NULL
4236#ifdef ONE_CLIPBOARD
4237 /* Star register and plus register contain the same thing. */
4238 && (name != '*' || vim_strchr(arg, '+') == NULL)
4239#endif
4240 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 continue; /* did not ask for this register */
4242
4243#ifdef FEAT_CLIPBOARD
4244 /* Adjust register name for "unnamed" in 'clipboard'.
4245 * When it's a clipboard register, fill it with the current contents
4246 * of the clipboard. */
4247 adjust_clip_reg(&name);
4248 (void)may_get_selection(name);
4249#endif
4250
4251 if (i == -1)
4252 {
4253 if (y_previous != NULL)
4254 yb = y_previous;
4255 else
4256 yb = &(y_regs[0]);
4257 }
4258 else
4259 yb = &(y_regs[i]);
Bram Moolenaarcde547a2009-11-17 11:43:06 +00004260
4261#ifdef FEAT_EVAL
4262 if (name == MB_TOLOWER(redir_reg)
4263 || (redir_reg == '"' && yb == y_previous))
4264 continue; /* do not list register being written to, the
4265 * pointer can be freed */
4266#endif
4267
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 if (yb->y_array != NULL)
4269 {
4270 msg_putchar('\n');
4271 msg_putchar('"');
4272 msg_putchar(name);
4273 MSG_PUTS(" ");
4274
4275 n = (int)Columns - 6;
4276 for (j = 0; j < yb->y_size && n > 1; ++j)
4277 {
4278 if (j)
4279 {
4280 MSG_PUTS_ATTR("^J", attr);
4281 n -= 2;
4282 }
4283 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4284 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004286 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004287#endif
4288 msg_outtrans_len(p, clen);
4289#ifdef FEAT_MBYTE
4290 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291#endif
4292 }
4293 }
4294 if (n > 1 && yb->y_type == MLINE)
4295 MSG_PUTS_ATTR("^J", attr);
4296 out_flush(); /* show one line at a time */
4297 }
4298 ui_breakcheck();
4299 }
4300
4301 /*
4302 * display last inserted text
4303 */
4304 if ((p = get_last_insert()) != NULL
4305 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4306 {
4307 MSG_PUTS("\n\". ");
4308 dis_msg(p, TRUE);
4309 }
4310
4311 /*
4312 * display last command line
4313 */
4314 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4315 && !got_int)
4316 {
4317 MSG_PUTS("\n\": ");
4318 dis_msg(last_cmdline, FALSE);
4319 }
4320
4321 /*
4322 * display current file name
4323 */
4324 if (curbuf->b_fname != NULL
4325 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4326 {
4327 MSG_PUTS("\n\"% ");
4328 dis_msg(curbuf->b_fname, FALSE);
4329 }
4330
4331 /*
4332 * display alternate file name
4333 */
4334 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4335 {
4336 char_u *fname;
4337 linenr_T dummy;
4338
4339 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4340 {
4341 MSG_PUTS("\n\"# ");
4342 dis_msg(fname, FALSE);
4343 }
4344 }
4345
4346 /*
4347 * display last search pattern
4348 */
4349 if (last_search_pat() != NULL
4350 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4351 {
4352 MSG_PUTS("\n\"/ ");
4353 dis_msg(last_search_pat(), FALSE);
4354 }
4355
4356#ifdef FEAT_EVAL
4357 /*
4358 * display last used expression
4359 */
4360 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4361 && !got_int)
4362 {
4363 MSG_PUTS("\n\"= ");
4364 dis_msg(expr_line, FALSE);
4365 }
4366#endif
4367}
4368
4369/*
4370 * display a string for do_dis()
4371 * truncate at end of screen line
4372 */
4373 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004374dis_msg(
4375 char_u *p,
4376 int skip_esc) /* if TRUE, ignore trailing ESC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377{
4378 int n;
4379#ifdef FEAT_MBYTE
4380 int l;
4381#endif
4382
4383 n = (int)Columns - 6;
4384 while (*p != NUL
4385 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4386 && (n -= ptr2cells(p)) >= 0)
4387 {
4388#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004389 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 {
4391 msg_outtrans_len(p, l);
4392 p += l;
4393 }
4394 else
4395#endif
4396 msg_outtrans_len(p++, 1);
4397 }
4398 ui_breakcheck();
4399}
4400
Bram Moolenaar81340392012-06-06 16:12:59 +02004401#if defined(FEAT_COMMENTS) || defined(PROTO)
4402/*
4403 * If "process" is TRUE and the line begins with a comment leader (possibly
4404 * after some white space), return a pointer to the text after it. Put a boolean
4405 * value indicating whether the line ends with an unclosed comment in
4406 * "is_comment".
4407 * line - line to be processed,
4408 * process - if FALSE, will only check whether the line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004409 * comment,
Bram Moolenaar81340392012-06-06 16:12:59 +02004410 * include_space - whether to also skip space following the comment leader,
4411 * is_comment - will indicate whether the current line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004412 * comment.
Bram Moolenaar81340392012-06-06 16:12:59 +02004413 */
Bram Moolenaar025a6b72017-03-12 20:37:21 +01004414 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004415skip_comment(
4416 char_u *line,
4417 int process,
4418 int include_space,
4419 int *is_comment)
Bram Moolenaar81340392012-06-06 16:12:59 +02004420{
4421 char_u *comment_flags = NULL;
4422 int lead_len;
4423 int leader_offset = get_last_leader_offset(line, &comment_flags);
4424
4425 *is_comment = FALSE;
4426 if (leader_offset != -1)
4427 {
4428 /* Let's check whether the line ends with an unclosed comment.
4429 * If the last comment leader has COM_END in flags, there's no comment.
4430 */
4431 while (*comment_flags)
4432 {
4433 if (*comment_flags == COM_END
4434 || *comment_flags == ':')
4435 break;
4436 ++comment_flags;
4437 }
4438 if (*comment_flags != COM_END)
4439 *is_comment = TRUE;
4440 }
4441
4442 if (process == FALSE)
4443 return line;
4444
4445 lead_len = get_leader_len(line, &comment_flags, FALSE, include_space);
4446
4447 if (lead_len == 0)
4448 return line;
4449
4450 /* Find:
Bram Moolenaar81340392012-06-06 16:12:59 +02004451 * - COM_END,
4452 * - colon,
4453 * whichever comes first.
4454 */
4455 while (*comment_flags)
4456 {
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004457 if (*comment_flags == COM_END
Bram Moolenaar81340392012-06-06 16:12:59 +02004458 || *comment_flags == ':')
4459 {
4460 break;
4461 }
4462 ++comment_flags;
4463 }
4464
4465 /* If we found a colon, it means that we are not processing a line
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004466 * starting with a closing part of a three-part comment. That's good,
4467 * because we don't want to remove those as this would be annoying.
Bram Moolenaar81340392012-06-06 16:12:59 +02004468 */
4469 if (*comment_flags == ':' || *comment_flags == NUL)
4470 line += lead_len;
4471
4472 return line;
4473}
4474#endif
4475
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476/*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004477 * Join 'count' lines (minimal 2) at cursor position.
4478 * When "save_undo" is TRUE save lines for undo first.
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004479 * Set "use_formatoptions" to FALSE when e.g. processing backspace and comment
4480 * leaders should not be removed.
4481 * When setmark is TRUE, sets the '[ and '] mark, else, the caller is expected
4482 * to set those marks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004484 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485 */
4486 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004487do_join(
4488 long count,
4489 int insert_space,
4490 int save_undo,
4491 int use_formatoptions UNUSED,
4492 int setmark)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493{
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004494 char_u *curr = NULL;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004495 char_u *curr_start = NULL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004496 char_u *cend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 char_u *newp;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004498 char_u *spaces; /* number of spaces inserted before a line */
Bram Moolenaard43848c2010-07-14 14:28:26 +02004499 int endcurr1 = NUL;
4500 int endcurr2 = NUL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004501 int currsize = 0; /* size of the current line */
4502 int sumsize = 0; /* size of the long new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 linenr_T t;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004504 colnr_T col = 0;
4505 int ret = OK;
Bram Moolenaar81340392012-06-06 16:12:59 +02004506#if defined(FEAT_COMMENTS) || defined(PROTO)
Bram Moolenaar802053f2012-06-06 23:08:38 +02004507 int *comments = NULL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004508 int remove_comments = (use_formatoptions == TRUE)
4509 && has_format_option(FO_REMOVE_COMS);
4510 int prev_was_comment;
4511#endif
4512
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004514 if (save_undo && u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4515 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4516 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004518 /* Allocate an array to store the number of spaces inserted before each
4519 * line. We will use it to pre-compute the length of the new line and the
4520 * proper placement of each original line in the new one. */
4521 spaces = lalloc_clear((long_u)count, TRUE);
4522 if (spaces == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 return FAIL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004524#if defined(FEAT_COMMENTS) || defined(PROTO)
4525 if (remove_comments)
4526 {
4527 comments = (int *)lalloc_clear((long_u)count * sizeof(int), TRUE);
4528 if (comments == NULL)
4529 {
4530 vim_free(spaces);
4531 return FAIL;
4532 }
4533 }
4534#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535
4536 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004537 * Don't move anything, just compute the final line length
4538 * and setup the array of space strings lengths
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004540 for (t = 0; t < count; ++t)
4541 {
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004542 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t));
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004543 if (t == 0 && setmark)
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004544 {
4545 /* Set the '[ mark. */
4546 curwin->w_buffer->b_op_start.lnum = curwin->w_cursor.lnum;
4547 curwin->w_buffer->b_op_start.col = (colnr_T)STRLEN(curr);
4548 }
Bram Moolenaar81340392012-06-06 16:12:59 +02004549#if defined(FEAT_COMMENTS) || defined(PROTO)
4550 if (remove_comments)
4551 {
4552 /* We don't want to remove the comment leader if the
4553 * previous line is not a comment. */
4554 if (t > 0 && prev_was_comment)
4555 {
4556
4557 char_u *new_curr = skip_comment(curr, TRUE, insert_space,
4558 &prev_was_comment);
Bram Moolenaar27ba0882012-06-07 21:09:39 +02004559 comments[t] = (int)(new_curr - curr);
Bram Moolenaar81340392012-06-06 16:12:59 +02004560 curr = new_curr;
4561 }
4562 else
4563 curr = skip_comment(curr, FALSE, insert_space,
4564 &prev_was_comment);
4565 }
4566#endif
4567
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004568 if (insert_space && t > 0)
4569 {
4570 curr = skipwhite(curr);
4571 if (*curr != ')' && currsize != 0 && endcurr1 != TAB
4572#ifdef FEAT_MBYTE
4573 && (!has_format_option(FO_MBYTE_JOIN)
4574 || (mb_ptr2char(curr) < 0x100 && endcurr1 < 0x100))
4575 && (!has_format_option(FO_MBYTE_JOIN2)
4576 || mb_ptr2char(curr) < 0x100 || endcurr1 < 0x100)
4577#endif
4578 )
4579 {
4580 /* don't add a space if the line is ending in a space */
4581 if (endcurr1 == ' ')
4582 endcurr1 = endcurr2;
4583 else
4584 ++spaces[t];
4585 /* extra space when 'joinspaces' set and line ends in '.' */
4586 if ( p_js
4587 && (endcurr1 == '.'
4588 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4589 && (endcurr1 == '?' || endcurr1 == '!'))))
4590 ++spaces[t];
4591 }
4592 }
4593 currsize = (int)STRLEN(curr);
4594 sumsize += currsize + spaces[t];
4595 endcurr1 = endcurr2 = NUL;
4596 if (insert_space && currsize > 0)
4597 {
4598#ifdef FEAT_MBYTE
4599 if (has_mbyte)
4600 {
4601 cend = curr + currsize;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004602 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004603 endcurr1 = (*mb_ptr2char)(cend);
4604 if (cend > curr)
4605 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004606 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004607 endcurr2 = (*mb_ptr2char)(cend);
4608 }
4609 }
4610 else
4611#endif
4612 {
4613 endcurr1 = *(curr + currsize - 1);
4614 if (currsize > 1)
4615 endcurr2 = *(curr + currsize - 2);
4616 }
4617 }
4618 line_breakcheck();
4619 if (got_int)
4620 {
4621 ret = FAIL;
4622 goto theend;
4623 }
4624 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004626 /* store the column position before last line */
4627 col = sumsize - currsize - spaces[count - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004629 /* allocate the space for the new line */
4630 newp = alloc_check((unsigned)(sumsize + 1));
4631 cend = newp + sumsize;
4632 *cend = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004634 /*
4635 * Move affected lines to the new long one.
4636 *
4637 * Move marks from each deleted line to the joined line, adjusting the
4638 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4639 * should not really be a problem.
4640 */
4641 for (t = count - 1; ; --t)
4642 {
4643 cend -= currsize;
4644 mch_memmove(cend, curr, (size_t)currsize);
4645 if (spaces[t] > 0)
4646 {
4647 cend -= spaces[t];
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02004648 vim_memset(cend, ' ', (size_t)(spaces[t]));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004649 }
4650 mark_col_adjust(curwin->w_cursor.lnum + t, (colnr_T)0, (linenr_T)-t,
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004651 (long)(cend - newp + spaces[t] - (curr - curr_start)));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004652 if (t == 0)
4653 break;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004654 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1));
Bram Moolenaar81340392012-06-06 16:12:59 +02004655#if defined(FEAT_COMMENTS) || defined(PROTO)
4656 if (remove_comments)
4657 curr += comments[t - 1];
4658#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004659 if (insert_space && t > 1)
4660 curr = skipwhite(curr);
4661 currsize = (int)STRLEN(curr);
4662 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4664
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004665 if (setmark)
4666 {
4667 /* Set the '] mark. */
4668 curwin->w_buffer->b_op_end.lnum = curwin->w_cursor.lnum;
4669 curwin->w_buffer->b_op_end.col = (colnr_T)STRLEN(newp);
4670 }
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004671
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672 /* Only report the change in the first line here, del_lines() will report
4673 * the deleted line. */
4674 changed_lines(curwin->w_cursor.lnum, currsize,
4675 curwin->w_cursor.lnum + 1, 0L);
4676
4677 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004678 * Delete following lines. To do this we move the cursor there
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 * briefly, and then move it back. After del_lines() the cursor may
4680 * have moved up (last line deleted), so the current lnum is kept in t.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 */
4682 t = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683 ++curwin->w_cursor.lnum;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004684 del_lines(count - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685 curwin->w_cursor.lnum = t;
4686
4687 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004688 * Set the cursor column:
4689 * Vi compatible: use the column of the first join
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004690 * vim: use the column of the last join
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004692 curwin->w_cursor.col =
4693 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694 check_cursor_col();
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004695
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696#ifdef FEAT_VIRTUALEDIT
4697 curwin->w_cursor.coladd = 0;
4698#endif
4699 curwin->w_set_curswant = TRUE;
4700
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004701theend:
4702 vim_free(spaces);
Bram Moolenaar81340392012-06-06 16:12:59 +02004703#if defined(FEAT_COMMENTS) || defined(PROTO)
4704 if (remove_comments)
4705 vim_free(comments);
4706#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004707 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708}
4709
4710#ifdef FEAT_COMMENTS
4711/*
4712 * Return TRUE if the two comment leaders given are the same. "lnum" is
4713 * the first line. White-space is ignored. Note that the whole of
4714 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4715 */
4716 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004717same_leader(
4718 linenr_T lnum,
4719 int leader1_len,
4720 char_u *leader1_flags,
4721 int leader2_len,
4722 char_u *leader2_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723{
4724 int idx1 = 0, idx2 = 0;
4725 char_u *p;
4726 char_u *line1;
4727 char_u *line2;
4728
4729 if (leader1_len == 0)
4730 return (leader2_len == 0);
4731
4732 /*
4733 * If first leader has 'f' flag, the lines can be joined only if the
4734 * second line does not have a leader.
4735 * If first leader has 'e' flag, the lines can never be joined.
4736 * If fist leader has 's' flag, the lines can only be joined if there is
4737 * some text after it and the second line has the 'm' flag.
4738 */
4739 if (leader1_flags != NULL)
4740 {
4741 for (p = leader1_flags; *p && *p != ':'; ++p)
4742 {
4743 if (*p == COM_FIRST)
4744 return (leader2_len == 0);
4745 if (*p == COM_END)
4746 return FALSE;
4747 if (*p == COM_START)
4748 {
4749 if (*(ml_get(lnum) + leader1_len) == NUL)
4750 return FALSE;
4751 if (leader2_flags == NULL || leader2_len == 0)
4752 return FALSE;
4753 for (p = leader2_flags; *p && *p != ':'; ++p)
4754 if (*p == COM_MIDDLE)
4755 return TRUE;
4756 return FALSE;
4757 }
4758 }
4759 }
4760
4761 /*
4762 * Get current line and next line, compare the leaders.
4763 * The first line has to be saved, only one line can be locked at a time.
4764 */
4765 line1 = vim_strsave(ml_get(lnum));
4766 if (line1 != NULL)
4767 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004768 for (idx1 = 0; VIM_ISWHITE(line1[idx1]); ++idx1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 ;
4770 line2 = ml_get(lnum + 1);
4771 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4772 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004773 if (!VIM_ISWHITE(line2[idx2]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 {
4775 if (line1[idx1++] != line2[idx2])
4776 break;
4777 }
4778 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004779 while (VIM_ISWHITE(line1[idx1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780 ++idx1;
4781 }
4782 vim_free(line1);
4783 }
4784 return (idx2 == leader2_len && idx1 == leader1_len);
4785}
4786#endif
4787
4788/*
Bram Moolenaar66accae2012-01-10 13:44:27 +01004789 * Implementation of the format operator 'gq'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 */
4791 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004792op_format(
4793 oparg_T *oap,
4794 int keep_cursor) /* keep cursor on same text char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795{
4796 long old_line_count = curbuf->b_ml.ml_line_count;
4797
4798 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4799 * can put it back there. */
4800 curwin->w_cursor = oap->cursor_start;
4801
4802 if (u_save((linenr_T)(oap->start.lnum - 1),
4803 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4804 return;
4805 curwin->w_cursor = oap->start;
4806
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 if (oap->is_VIsual)
4808 /* When there is no change: need to remove the Visual selection */
4809 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810
4811 /* Set '[ mark at the start of the formatted area */
4812 curbuf->b_op_start = oap->start;
4813
4814 /* For "gw" remember the cursor position and put it back below (adjusted
4815 * for joined and split lines). */
4816 if (keep_cursor)
4817 saved_cursor = oap->cursor_start;
4818
Bram Moolenaar81a82092008-03-12 16:27:00 +00004819 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820
4821 /*
4822 * Leave the cursor at the first non-blank of the last formatted line.
4823 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4824 * line, so "." will do the next lines.
4825 */
4826 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4827 ++curwin->w_cursor.lnum;
4828 beginline(BL_WHITE | BL_FIX);
4829 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4830 msgmore(old_line_count);
4831
4832 /* put '] mark on the end of the formatted area */
4833 curbuf->b_op_end = curwin->w_cursor;
4834
4835 if (keep_cursor)
4836 {
4837 curwin->w_cursor = saved_cursor;
4838 saved_cursor.lnum = 0;
4839 }
4840
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 if (oap->is_VIsual)
4842 {
4843 win_T *wp;
4844
4845 FOR_ALL_WINDOWS(wp)
4846 {
4847 if (wp->w_old_cursor_lnum != 0)
4848 {
4849 /* When lines have been inserted or deleted, adjust the end of
4850 * the Visual area to be redrawn. */
4851 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4852 wp->w_old_cursor_lnum += old_line_count;
4853 else
4854 wp->w_old_visual_lnum += old_line_count;
4855 }
4856 }
4857 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004858}
4859
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004860#if defined(FEAT_EVAL) || defined(PROTO)
4861/*
4862 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4863 */
4864 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004865op_formatexpr(oparg_T *oap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004866{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004867 if (oap->is_VIsual)
4868 /* When there is no change: need to remove the Visual selection */
4869 redraw_curbuf_later(INVERTED);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004870
Bram Moolenaar700303e2010-07-11 17:35:50 +02004871 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0)
4872 /* As documented: when 'formatexpr' returns non-zero fall back to
4873 * internal formatting. */
4874 op_format(oap, FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004875}
4876
4877 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004878fex_format(
4879 linenr_T lnum,
4880 long count,
4881 int c) /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004882{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004883 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4884 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004885 int r;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004886 char_u *fex;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004887
4888 /*
4889 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004890 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004891 */
4892 set_vim_var_nr(VV_LNUM, lnum);
4893 set_vim_var_nr(VV_COUNT, count);
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004894 set_vim_var_char(c);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004895
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004896 /* Make a copy, the option could be changed while calling it. */
4897 fex = vim_strsave(curbuf->b_p_fex);
4898 if (fex == NULL)
4899 return 0;
4900
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004901 /*
4902 * Evaluate the function.
4903 */
4904 if (use_sandbox)
4905 ++sandbox;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004906 r = (int)eval_to_number(fex);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004907 if (use_sandbox)
4908 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004909
4910 set_vim_var_string(VV_CHAR, NULL, -1);
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004911 vim_free(fex);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004912
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004913 return r;
4914}
4915#endif
4916
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917/*
4918 * Format "line_count" lines, starting at the cursor position.
4919 * When "line_count" is negative, format until the end of the paragraph.
4920 * Lines after the cursor line are saved for undo, caller must have saved the
4921 * first line.
4922 */
4923 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004924format_lines(
4925 linenr_T line_count,
4926 int avoid_fex) /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927{
4928 int max_len;
4929 int is_not_par; /* current line not part of parag. */
4930 int next_is_not_par; /* next line not part of paragraph */
4931 int is_end_par; /* at end of paragraph */
4932 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4933 int next_is_start_par = FALSE;
4934#ifdef FEAT_COMMENTS
4935 int leader_len = 0; /* leader len of current line */
4936 int next_leader_len; /* leader len of next line */
4937 char_u *leader_flags = NULL; /* flags for leader of current line */
4938 char_u *next_leader_flags; /* flags for leader of next line */
4939 int do_comments; /* format comments */
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004940 int do_comments_list = 0; /* format comments with 'n' or '2' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941#endif
4942 int advance = TRUE;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004943 int second_indent = -1; /* indent for second line (comment
4944 * aware) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 int do_second_indent;
4946 int do_number_indent;
4947 int do_trail_white;
4948 int first_par_line = TRUE;
4949 int smd_save;
4950 long count;
4951 int need_set_indent = TRUE; /* set indent of next paragraph */
4952 int force_format = FALSE;
4953 int old_State = State;
4954
4955 /* length of a line to force formatting: 3 * 'tw' */
4956 max_len = comp_textwidth(TRUE) * 3;
4957
4958 /* check for 'q', '2' and '1' in 'formatoptions' */
4959#ifdef FEAT_COMMENTS
4960 do_comments = has_format_option(FO_Q_COMS);
4961#endif
4962 do_second_indent = has_format_option(FO_Q_SECOND);
4963 do_number_indent = has_format_option(FO_Q_NUMBER);
4964 do_trail_white = has_format_option(FO_WHITE_PAR);
4965
4966 /*
4967 * Get info about the previous and current line.
4968 */
4969 if (curwin->w_cursor.lnum > 1)
4970 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4971#ifdef FEAT_COMMENTS
4972 , &leader_len, &leader_flags, do_comments
4973#endif
4974 );
4975 else
4976 is_not_par = TRUE;
4977 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4978#ifdef FEAT_COMMENTS
4979 , &next_leader_len, &next_leader_flags, do_comments
4980#endif
4981 );
4982 is_end_par = (is_not_par || next_is_not_par);
4983 if (!is_end_par && do_trail_white)
4984 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4985
4986 curwin->w_cursor.lnum--;
4987 for (count = line_count; count != 0 && !got_int; --count)
4988 {
4989 /*
4990 * Advance to next paragraph.
4991 */
4992 if (advance)
4993 {
4994 curwin->w_cursor.lnum++;
4995 prev_is_end_par = is_end_par;
4996 is_not_par = next_is_not_par;
4997#ifdef FEAT_COMMENTS
4998 leader_len = next_leader_len;
4999 leader_flags = next_leader_flags;
5000#endif
5001 }
5002
5003 /*
5004 * The last line to be formatted.
5005 */
5006 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
5007 {
5008 next_is_not_par = TRUE;
5009#ifdef FEAT_COMMENTS
5010 next_leader_len = 0;
5011 next_leader_flags = NULL;
5012#endif
5013 }
5014 else
5015 {
5016 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
5017#ifdef FEAT_COMMENTS
5018 , &next_leader_len, &next_leader_flags, do_comments
5019#endif
5020 );
5021 if (do_number_indent)
5022 next_is_start_par =
5023 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
5024 }
5025 advance = TRUE;
5026 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
5027 if (!is_end_par && do_trail_white)
5028 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
5029
5030 /*
5031 * Skip lines that are not in a paragraph.
5032 */
5033 if (is_not_par)
5034 {
5035 if (line_count < 0)
5036 break;
5037 }
5038 else
5039 {
5040 /*
5041 * For the first line of a paragraph, check indent of second line.
5042 * Don't do this for comments and empty lines.
5043 */
5044 if (first_par_line
5045 && (do_second_indent || do_number_indent)
5046 && prev_is_end_par
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005047 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005049 if (do_second_indent && !LINEEMPTY(curwin->w_cursor.lnum + 1))
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005050 {
5051#ifdef FEAT_COMMENTS
5052 if (leader_len == 0 && next_leader_len == 0)
5053 {
5054 /* no comment found */
5055#endif
5056 second_indent =
5057 get_indent_lnum(curwin->w_cursor.lnum + 1);
5058#ifdef FEAT_COMMENTS
5059 }
5060 else
5061 {
5062 second_indent = next_leader_len;
5063 do_comments_list = 1;
5064 }
5065#endif
5066 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 else if (do_number_indent)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005068 {
5069#ifdef FEAT_COMMENTS
5070 if (leader_len == 0 && next_leader_len == 0)
5071 {
5072 /* no comment found */
5073#endif
5074 second_indent =
5075 get_number_indent(curwin->w_cursor.lnum);
5076#ifdef FEAT_COMMENTS
5077 }
5078 else
5079 {
5080 /* get_number_indent() is now "comment aware"... */
5081 second_indent =
5082 get_number_indent(curwin->w_cursor.lnum);
5083 do_comments_list = 1;
5084 }
5085#endif
5086 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 }
5088
5089 /*
5090 * When the comment leader changes, it's the end of the paragraph.
5091 */
5092 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
5093#ifdef FEAT_COMMENTS
5094 || !same_leader(curwin->w_cursor.lnum,
5095 leader_len, leader_flags,
5096 next_leader_len, next_leader_flags)
5097#endif
5098 )
5099 is_end_par = TRUE;
5100
5101 /*
5102 * If we have got to the end of a paragraph, or the line is
5103 * getting long, format it.
5104 */
5105 if (is_end_par || force_format)
5106 {
5107 if (need_set_indent)
5108 /* replace indent in first line with minimal number of
5109 * tabs and spaces, according to current options */
5110 (void)set_indent(get_indent(), SIN_CHANGED);
5111
5112 /* put cursor on last non-space */
5113 State = NORMAL; /* don't go past end-of-line */
5114 coladvance((colnr_T)MAXCOL);
5115 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
5116 dec_cursor();
5117
5118 /* do the formatting, without 'showmode' */
5119 State = INSERT; /* for open_line() */
5120 smd_save = p_smd;
5121 p_smd = FALSE;
5122 insertchar(NUL, INSCHAR_FORMAT
5123#ifdef FEAT_COMMENTS
5124 + (do_comments ? INSCHAR_DO_COM : 0)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005125 + (do_comments && do_comments_list
5126 ? INSCHAR_COM_LIST : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00005128 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 State = old_State;
5130 p_smd = smd_save;
5131 second_indent = -1;
5132 /* at end of par.: need to set indent of next par. */
5133 need_set_indent = is_end_par;
5134 if (is_end_par)
5135 {
5136 /* When called with a negative line count, break at the
5137 * end of the paragraph. */
5138 if (line_count < 0)
5139 break;
5140 first_par_line = TRUE;
5141 }
5142 force_format = FALSE;
5143 }
5144
5145 /*
5146 * When still in same paragraph, join the lines together. But
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005147 * first delete the leader from the second line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 */
5149 if (!is_end_par)
5150 {
5151 advance = FALSE;
5152 curwin->w_cursor.lnum++;
5153 curwin->w_cursor.col = 0;
5154 if (line_count < 0 && u_save_cursor() == FAIL)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02005155 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156#ifdef FEAT_COMMENTS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 if (next_leader_len > 0)
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005158 {
5159 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
5161 (long)-next_leader_len);
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005162 } else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163#endif
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005164 if (second_indent > 0) /* the "leader" for FO_Q_SECOND */
5165 {
Bram Moolenaare2e69e42017-09-02 20:30:35 +02005166 int indent = getwhitecols_curline();
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005167
5168 if (indent > 0)
5169 {
5170 (void)del_bytes(indent, FALSE, FALSE);
5171 mark_col_adjust(curwin->w_cursor.lnum,
5172 (colnr_T)0, 0L, (long)-indent);
Bram Moolenaar92c2db82013-11-02 23:59:35 +01005173 }
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005174 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005175 curwin->w_cursor.lnum--;
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02005176 if (do_join(2, TRUE, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 {
5178 beep_flush();
5179 break;
5180 }
5181 first_par_line = FALSE;
5182 /* If the line is getting long, format it next time */
5183 if (STRLEN(ml_get_curline()) > (size_t)max_len)
5184 force_format = TRUE;
5185 else
5186 force_format = FALSE;
5187 }
5188 }
5189 line_breakcheck();
5190 }
5191}
5192
5193/*
5194 * Return TRUE if line "lnum" ends in a white character.
5195 */
5196 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005197ends_in_white(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198{
5199 char_u *s = ml_get(lnum);
5200 size_t l;
5201
5202 if (*s == NUL)
5203 return FALSE;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005204 /* Don't use STRLEN() inside VIM_ISWHITE(), SAS/C complains: "macro
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 * invocation may call function multiple times". */
5206 l = STRLEN(s) - 1;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005207 return VIM_ISWHITE(s[l]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208}
5209
5210/*
5211 * Blank lines, and lines containing only the comment leader, are left
5212 * untouched by the formatting. The function returns TRUE in this
5213 * case. It also returns TRUE when a line starts with the end of a comment
5214 * ('e' in comment flags), so that this line is skipped, and not joined to the
5215 * previous line. A new paragraph starts after a blank line, or when the
5216 * comment leader changes -- webb.
5217 */
5218#ifdef FEAT_COMMENTS
5219 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005220fmt_check_par(
5221 linenr_T lnum,
5222 int *leader_len,
5223 char_u **leader_flags,
5224 int do_comments)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225{
5226 char_u *flags = NULL; /* init for GCC */
5227 char_u *ptr;
5228
5229 ptr = ml_get(lnum);
5230 if (do_comments)
Bram Moolenaar81340392012-06-06 16:12:59 +02005231 *leader_len = get_leader_len(ptr, leader_flags, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 else
5233 *leader_len = 0;
5234
5235 if (*leader_len > 0)
5236 {
5237 /*
5238 * Search for 'e' flag in comment leader flags.
5239 */
5240 flags = *leader_flags;
5241 while (*flags && *flags != ':' && *flags != COM_END)
5242 ++flags;
5243 }
5244
5245 return (*skipwhite(ptr + *leader_len) == NUL
5246 || (*leader_len > 0 && *flags == COM_END)
5247 || startPS(lnum, NUL, FALSE));
5248}
5249#else
5250 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005251fmt_check_par(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252{
5253 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
5254}
5255#endif
5256
5257/*
5258 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
5259 * previous line is in the same paragraph. Used for auto-formatting.
5260 */
5261 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005262paragraph_start(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263{
5264 char_u *p;
5265#ifdef FEAT_COMMENTS
5266 int leader_len = 0; /* leader len of current line */
5267 char_u *leader_flags = NULL; /* flags for leader of current line */
5268 int next_leader_len; /* leader len of next line */
5269 char_u *next_leader_flags; /* flags for leader of next line */
5270 int do_comments; /* format comments */
5271#endif
5272
5273 if (lnum <= 1)
5274 return TRUE; /* start of the file */
5275
5276 p = ml_get(lnum - 1);
5277 if (*p == NUL)
5278 return TRUE; /* after empty line */
5279
5280#ifdef FEAT_COMMENTS
5281 do_comments = has_format_option(FO_Q_COMS);
5282#endif
5283 if (fmt_check_par(lnum - 1
5284#ifdef FEAT_COMMENTS
5285 , &leader_len, &leader_flags, do_comments
5286#endif
5287 ))
5288 return TRUE; /* after non-paragraph line */
5289
5290 if (fmt_check_par(lnum
5291#ifdef FEAT_COMMENTS
5292 , &next_leader_len, &next_leader_flags, do_comments
5293#endif
5294 ))
5295 return TRUE; /* "lnum" is not a paragraph line */
5296
5297 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
5298 return TRUE; /* missing trailing space in previous line. */
5299
5300 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
5301 return TRUE; /* numbered item starts in "lnum". */
5302
5303#ifdef FEAT_COMMENTS
5304 if (!same_leader(lnum - 1, leader_len, leader_flags,
5305 next_leader_len, next_leader_flags))
5306 return TRUE; /* change of comment leader. */
5307#endif
5308
5309 return FALSE;
5310}
5311
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312/*
5313 * prepare a few things for block mode yank/delete/tilde
5314 *
5315 * for delete:
5316 * - textlen includes the first/last char to be (partly) deleted
5317 * - start/endspaces is the number of columns that are taken by the
5318 * first/last deleted char minus the number of columns that have to be
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +00005319 * deleted.
5320 * for yank and tilde:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321 * - textlen includes the first/last char to be wholly yanked
5322 * - start/endspaces is the number of columns of the first/last yanked char
5323 * that are to be yanked.
5324 */
5325 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005326block_prep(
5327 oparg_T *oap,
5328 struct block_def *bdp,
5329 linenr_T lnum,
5330 int is_del)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331{
5332 int incr = 0;
5333 char_u *pend;
5334 char_u *pstart;
5335 char_u *line;
5336 char_u *prev_pstart;
5337 char_u *prev_pend;
5338
5339 bdp->startspaces = 0;
5340 bdp->endspaces = 0;
5341 bdp->textlen = 0;
5342 bdp->start_vcol = 0;
5343 bdp->end_vcol = 0;
5344#ifdef FEAT_VISUALEXTRA
5345 bdp->is_short = FALSE;
5346 bdp->is_oneChar = FALSE;
5347 bdp->pre_whitesp = 0;
5348 bdp->pre_whitesp_c = 0;
5349 bdp->end_char_vcols = 0;
5350#endif
5351 bdp->start_char_vcols = 0;
5352
5353 line = ml_get(lnum);
5354 pstart = line;
5355 prev_pstart = line;
5356 while (bdp->start_vcol < oap->start_vcol && *pstart)
5357 {
5358 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02005359 incr = lbr_chartabsize(line, pstart, (colnr_T)bdp->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 bdp->start_vcol += incr;
5361#ifdef FEAT_VISUALEXTRA
Bram Moolenaar1c465442017-03-12 20:10:05 +01005362 if (VIM_ISWHITE(*pstart))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 {
5364 bdp->pre_whitesp += incr;
5365 bdp->pre_whitesp_c++;
5366 }
5367 else
5368 {
5369 bdp->pre_whitesp = 0;
5370 bdp->pre_whitesp_c = 0;
5371 }
5372#endif
5373 prev_pstart = pstart;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005374 MB_PTR_ADV(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375 }
5376 bdp->start_char_vcols = incr;
5377 if (bdp->start_vcol < oap->start_vcol) /* line too short */
5378 {
5379 bdp->end_vcol = bdp->start_vcol;
5380#ifdef FEAT_VISUALEXTRA
5381 bdp->is_short = TRUE;
5382#endif
5383 if (!is_del || oap->op_type == OP_APPEND)
5384 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
5385 }
5386 else
5387 {
5388 /* notice: this converts partly selected Multibyte characters to
5389 * spaces, too. */
5390 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
5391 if (is_del && bdp->startspaces)
5392 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
5393 pend = pstart;
5394 bdp->end_vcol = bdp->start_vcol;
5395 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
5396 {
5397#ifdef FEAT_VISUALEXTRA
5398 bdp->is_oneChar = TRUE;
5399#endif
5400 if (oap->op_type == OP_INSERT)
5401 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5402 else if (oap->op_type == OP_APPEND)
5403 {
5404 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
5405 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5406 }
5407 else
5408 {
5409 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
5410 if (is_del && oap->op_type != OP_LSHIFT)
5411 {
5412 /* just putting the sum of those two into
5413 * bdp->startspaces doesn't work for Visual replace,
5414 * so we have to split the tab in two */
5415 bdp->startspaces = bdp->start_char_vcols
5416 - (bdp->start_vcol - oap->start_vcol);
5417 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5418 }
5419 }
5420 }
5421 else
5422 {
5423 prev_pend = pend;
5424 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
5425 {
5426 /* Count a tab for what it's worth (if list mode not on) */
5427 prev_pend = pend;
Bram Moolenaar1dc92332015-01-27 13:22:20 +01005428 incr = lbr_chartabsize_adv(line, &pend, (colnr_T)bdp->end_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 bdp->end_vcol += incr;
5430 }
5431 if (bdp->end_vcol <= oap->end_vcol
5432 && (!is_del
5433 || oap->op_type == OP_APPEND
5434 || oap->op_type == OP_REPLACE)) /* line too short */
5435 {
5436#ifdef FEAT_VISUALEXTRA
5437 bdp->is_short = TRUE;
5438#endif
5439 /* Alternative: include spaces to fill up the block.
5440 * Disadvantage: can lead to trailing spaces when the line is
5441 * short where the text is put */
5442 /* if (!is_del || oap->op_type == OP_APPEND) */
5443 if (oap->op_type == OP_APPEND || virtual_op)
5444 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00005445 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005446 else
5447 bdp->endspaces = 0; /* replace doesn't add characters */
5448 }
5449 else if (bdp->end_vcol > oap->end_vcol)
5450 {
5451 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5452 if (!is_del && bdp->endspaces)
5453 {
5454 bdp->endspaces = incr - bdp->endspaces;
5455 if (pend != pstart)
5456 pend = prev_pend;
5457 }
5458 }
5459 }
5460#ifdef FEAT_VISUALEXTRA
5461 bdp->end_char_vcols = incr;
5462#endif
5463 if (is_del && bdp->startspaces)
5464 pstart = prev_pstart;
5465 bdp->textlen = (int)(pend - pstart);
5466 }
5467 bdp->textcol = (colnr_T) (pstart - line);
5468 bdp->textstart = pstart;
5469}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471/*
Bram Moolenaard79e5502016-01-10 22:13:02 +01005472 * Handle the add/subtract operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005474 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005475op_addsub(
5476 oparg_T *oap,
5477 linenr_T Prenum1, /* Amount of add/subtract */
5478 int g_cmd) /* was g<c-a>/g<c-x> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479{
Bram Moolenaard79e5502016-01-10 22:13:02 +01005480 pos_T pos;
5481 struct block_def bd;
5482 int change_cnt = 0;
5483 linenr_T amount = Prenum1;
5484
5485 if (!VIsual_active)
5486 {
5487 pos = curwin->w_cursor;
5488 if (u_save_cursor() == FAIL)
5489 return;
5490 change_cnt = do_addsub(oap->op_type, &pos, 0, amount);
5491 if (change_cnt)
5492 changed_lines(pos.lnum, 0, pos.lnum + 1, 0L);
5493 }
5494 else
5495 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005496 int one_change;
5497 int length;
5498 pos_T startpos;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005499
5500 if (u_save((linenr_T)(oap->start.lnum - 1),
5501 (linenr_T)(oap->end.lnum + 1)) == FAIL)
5502 return;
5503
5504 pos = oap->start;
5505 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
5506 {
5507 if (oap->block_mode) /* Visual block mode */
5508 {
5509 block_prep(oap, &bd, pos.lnum, FALSE);
5510 pos.col = bd.textcol;
5511 length = bd.textlen;
5512 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005513 else if (oap->motion_type == MLINE)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005514 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005515 curwin->w_cursor.col = 0;
5516 pos.col = 0;
5517 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5518 }
5519 else /* oap->motion_type == MCHAR */
5520 {
Bram Moolenaar5fe6bdf2017-12-05 17:22:12 +01005521 if (pos.lnum == oap->start.lnum && !oap->inclusive)
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005522 dec(&(oap->end));
5523 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5524 pos.col = 0;
5525 if (pos.lnum == oap->start.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005526 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005527 pos.col += oap->start.col;
5528 length -= oap->start.col;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005529 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005530 if (pos.lnum == oap->end.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005531 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005532 length = (int)STRLEN(ml_get(oap->end.lnum));
5533 if (oap->end.col >= length)
5534 oap->end.col = length - 1;
5535 length = oap->end.col - pos.col + 1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005536 }
5537 }
5538 one_change = do_addsub(oap->op_type, &pos, length, amount);
5539 if (one_change)
5540 {
5541 /* Remember the start position of the first change. */
5542 if (change_cnt == 0)
5543 startpos = curbuf->b_op_start;
5544 ++change_cnt;
5545 }
5546
5547#ifdef FEAT_NETBEANS_INTG
5548 if (netbeans_active() && one_change)
5549 {
5550 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
5551
5552 netbeans_removed(curbuf, pos.lnum, pos.col, (long)length);
5553 netbeans_inserted(curbuf, pos.lnum, pos.col,
5554 &ptr[pos.col], length);
5555 }
5556#endif
5557 if (g_cmd && one_change)
5558 amount += Prenum1;
5559 }
5560 if (change_cnt)
5561 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
5562
5563 if (!change_cnt && oap->is_VIsual)
5564 /* No change: need to remove the Visual selection */
5565 redraw_curbuf_later(INVERTED);
5566
5567 /* Set '[ mark if something changed. Keep the last end
5568 * position from do_addsub(). */
5569 if (change_cnt > 0)
5570 curbuf->b_op_start = startpos;
5571
5572 if (change_cnt > p_report)
5573 {
5574 if (change_cnt == 1)
5575 MSG(_("1 line changed"));
5576 else
5577 smsg((char_u *)_("%ld lines changed"), change_cnt);
5578 }
5579 }
5580}
5581
5582/*
5583 * Add or subtract 'Prenum1' from a number in a line
5584 * op_type is OP_NR_ADD or OP_NR_SUB
5585 *
5586 * Returns TRUE if some character was changed.
5587 */
5588 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005589do_addsub(
5590 int op_type,
5591 pos_T *pos,
5592 int length,
5593 linenr_T Prenum1)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005594{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 int col;
5596 char_u *buf1;
5597 char_u buf2[NUMBUFLEN];
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005598 int pre; /* 'X'/'x': hex; '0': octal; 'B'/'b': bin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005599 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005600 uvarnumber_T n;
5601 uvarnumber_T oldn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 char_u *ptr;
5603 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005604 int todel;
5605 int dohex;
5606 int dooct;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005607 int dobin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608 int doalp;
5609 int firstdigit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 int subtract;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005611 int negative = FALSE;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02005612 int was_positive = TRUE;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005613 int visual = VIsual_active;
Bram Moolenaar3ec32612015-07-12 15:02:38 +02005614 int did_change = FALSE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005615 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005616 int maxlen = 0;
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005617 pos_T startpos;
5618 pos_T endpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619
5620 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5621 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005622 dobin = (vim_strchr(curbuf->b_p_nf, 'b') != NULL); /* "Bin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5624
Bram Moolenaard79e5502016-01-10 22:13:02 +01005625 curwin->w_cursor = *pos;
5626 ptr = ml_get(pos->lnum);
5627 col = pos->col;
5628
5629 if (*ptr == NUL)
5630 goto theend;
5631
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632 /*
5633 * First check if we are on a hexadecimal number, after the "0x".
5634 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005635 if (!VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005637 if (dobin)
5638 while (col > 0 && vim_isbdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005639 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005640 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005641#ifdef FEAT_MBYTE
5642 if (has_mbyte)
5643 col -= (*mb_head_off)(ptr, ptr + col);
5644#endif
5645 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005646
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005647 if (dohex)
5648 while (col > 0 && vim_isxdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005649 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005650 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005651#ifdef FEAT_MBYTE
5652 if (has_mbyte)
5653 col -= (*mb_head_off)(ptr, ptr + col);
5654#endif
5655 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005656
5657 if ( dobin
5658 && dohex
5659 && ! ((col > 0
5660 && (ptr[col] == 'X'
5661 || ptr[col] == 'x')
5662 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005663#ifdef FEAT_MBYTE
5664 && (!has_mbyte ||
5665 !(*mb_head_off)(ptr, ptr + col - 1))
5666#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005667 && vim_isxdigit(ptr[col + 1]))))
5668 {
5669
5670 /* In case of binary/hexadecimal pattern overlap match, rescan */
5671
Bram Moolenaard79e5502016-01-10 22:13:02 +01005672 col = pos->col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005673
5674 while (col > 0 && vim_isdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005675 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005676 col--;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005677#ifdef FEAT_MBYTE
5678 if (has_mbyte)
5679 col -= (*mb_head_off)(ptr, ptr + col);
5680#endif
5681 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005682 }
5683
5684 if (( dohex
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005685 && col > 0
5686 && (ptr[col] == 'X'
5687 || ptr[col] == 'x')
5688 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005689#ifdef FEAT_MBYTE
5690 && (!has_mbyte ||
5691 !(*mb_head_off)(ptr, ptr + col - 1))
5692#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005693 && vim_isxdigit(ptr[col + 1])) ||
5694 ( dobin
5695 && col > 0
5696 && (ptr[col] == 'B'
5697 || ptr[col] == 'b')
5698 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005699#ifdef FEAT_MBYTE
5700 && (!has_mbyte ||
5701 !(*mb_head_off)(ptr, ptr + col - 1))
5702#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005703 && vim_isbdigit(ptr[col + 1])))
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005704 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005705 /* Found hexadecimal or binary number, move to its start. */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005706 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005707#ifdef FEAT_MBYTE
5708 if (has_mbyte)
5709 col -= (*mb_head_off)(ptr, ptr + col);
5710#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005711 }
5712 else
5713 {
5714 /*
5715 * Search forward and then backward to find the start of number.
5716 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005717 col = pos->col;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005718
5719 while (ptr[col] != NUL
5720 && !vim_isdigit(ptr[col])
5721 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005722 col += MB_PTR2LEN(ptr + col);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005723
5724 while (col > 0
5725 && vim_isdigit(ptr[col - 1])
5726 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005727 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005728 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005729#ifdef FEAT_MBYTE
5730 if (has_mbyte)
5731 col -= (*mb_head_off)(ptr, ptr + col);
5732#endif
5733 }
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005734 }
5735 }
5736
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005737 if (visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005738 {
5739 while (ptr[col] != NUL && length > 0
5740 && !vim_isdigit(ptr[col])
5741 && !(doalp && ASCII_ISALPHA(ptr[col])))
5742 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005743 int mb_len = MB_PTR2LEN(ptr + col);
5744
5745 col += mb_len;
5746 length -= mb_len;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005747 }
5748
5749 if (length == 0)
5750 goto theend;
5751
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005752 if (col > pos->col && ptr[col - 1] == '-'
5753#ifdef FEAT_MBYTE
5754 && (!has_mbyte ||
5755 !(*mb_head_off)(ptr, ptr + col - 1))
5756#endif
5757 )
Bram Moolenaard79e5502016-01-10 22:13:02 +01005758 {
5759 negative = TRUE;
5760 was_positive = FALSE;
5761 }
5762 }
5763
5764 /*
5765 * If a number was found, and saving for undo works, replace the number.
5766 */
5767 firstdigit = ptr[col];
5768 if (!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5769 {
5770 beep_flush();
5771 goto theend;
5772 }
5773
5774 if (doalp && ASCII_ISALPHA(firstdigit))
5775 {
5776 /* decrement or increment alphabetic character */
5777 if (op_type == OP_NR_SUB)
5778 {
5779 if (CharOrd(firstdigit) < Prenum1)
5780 {
5781 if (isupper(firstdigit))
5782 firstdigit = 'A';
5783 else
5784 firstdigit = 'a';
5785 }
5786 else
5787#ifdef EBCDIC
5788 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5789#else
5790 firstdigit -= Prenum1;
5791#endif
5792 }
5793 else
5794 {
5795 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5796 {
5797 if (isupper(firstdigit))
5798 firstdigit = 'Z';
5799 else
5800 firstdigit = 'z';
5801 }
5802 else
5803#ifdef EBCDIC
5804 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5805#else
5806 firstdigit += Prenum1;
5807#endif
5808 }
5809 curwin->w_cursor.col = col;
5810 if (!did_change)
5811 startpos = curwin->w_cursor;
5812 did_change = TRUE;
5813 (void)del_char(FALSE);
5814 ins_char(firstdigit);
5815 endpos = curwin->w_cursor;
5816 curwin->w_cursor.col = col;
5817 }
5818 else
5819 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005820 if (col > 0 && ptr[col - 1] == '-'
5821#ifdef FEAT_MBYTE
5822 && (!has_mbyte ||
5823 !(*mb_head_off)(ptr, ptr + col - 1))
5824#endif
5825 && !visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005826 {
5827 /* negative number */
5828 --col;
5829 negative = TRUE;
5830 }
5831 /* get the number value (unsigned) */
5832 if (visual && VIsual_mode != 'V')
5833 maxlen = (curbuf->b_visual.vi_curswant == MAXCOL
5834 ? (int)STRLEN(ptr) - col
5835 : length);
5836
5837 vim_str2nr(ptr + col, &pre, &length,
5838 0 + (dobin ? STR2NR_BIN : 0)
5839 + (dooct ? STR2NR_OCT : 0)
5840 + (dohex ? STR2NR_HEX : 0),
5841 NULL, &n, maxlen);
5842
5843 /* ignore leading '-' for hex and octal and bin numbers */
5844 if (pre && negative)
5845 {
5846 ++col;
5847 --length;
5848 negative = FALSE;
5849 }
5850 /* add or subtract */
5851 subtract = FALSE;
5852 if (op_type == OP_NR_SUB)
5853 subtract ^= TRUE;
5854 if (negative)
5855 subtract ^= TRUE;
5856
5857 oldn = n;
5858 if (subtract)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005859 n -= (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005860 else
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005861 n += (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005862 /* handle wraparound for decimal numbers */
5863 if (!pre)
5864 {
5865 if (subtract)
5866 {
5867 if (n > oldn)
5868 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005869 n = 1 + (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005870 negative ^= TRUE;
5871 }
5872 }
5873 else
5874 {
5875 /* add */
5876 if (n < oldn)
5877 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005878 n = (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005879 negative ^= TRUE;
5880 }
5881 }
5882 if (n == 0)
5883 negative = FALSE;
5884 }
5885
5886 if (visual && !was_positive && !negative && col > 0)
5887 {
5888 /* need to remove the '-' */
5889 col--;
5890 length++;
5891 }
5892
5893 /*
5894 * Delete the old number.
5895 */
5896 curwin->w_cursor.col = col;
5897 if (!did_change)
5898 startpos = curwin->w_cursor;
5899 did_change = TRUE;
5900 todel = length;
5901 c = gchar_cursor();
5902 /*
5903 * Don't include the '-' in the length, only the length of the
5904 * part after it is kept the same.
5905 */
5906 if (c == '-')
5907 --length;
5908 while (todel-- > 0)
5909 {
5910 if (c < 0x100 && isalpha(c))
5911 {
5912 if (isupper(c))
5913 hexupper = TRUE;
5914 else
5915 hexupper = FALSE;
5916 }
5917 /* del_char() will mark line needing displaying */
5918 (void)del_char(FALSE);
5919 c = gchar_cursor();
5920 }
5921
5922 /*
5923 * Prepare the leading characters in buf1[].
5924 * When there are many leading zeros it could be very long.
5925 * Allocate a bit too much.
5926 */
5927 buf1 = alloc((unsigned)length + NUMBUFLEN);
5928 if (buf1 == NULL)
5929 goto theend;
5930 ptr = buf1;
Bram Moolenaardc633cf2016-04-23 14:33:19 +02005931 if (negative && (!visual || was_positive))
Bram Moolenaard79e5502016-01-10 22:13:02 +01005932 {
5933 *ptr++ = '-';
5934 }
5935 if (pre)
5936 {
5937 *ptr++ = '0';
5938 --length;
5939 }
5940 if (pre == 'b' || pre == 'B' ||
5941 pre == 'x' || pre == 'X')
5942 {
5943 *ptr++ = pre;
5944 --length;
5945 }
5946
5947 /*
5948 * Put the number characters in buf2[].
5949 */
5950 if (pre == 'b' || pre == 'B')
5951 {
5952 int i;
5953 int bit = 0;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005954 int bits = sizeof(uvarnumber_T) * 8;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005955
5956 /* leading zeros */
5957 for (bit = bits; bit > 0; bit--)
5958 if ((n >> (bit - 1)) & 0x1) break;
5959
5960 for (i = 0; bit > 0; bit--)
5961 buf2[i++] = ((n >> (bit - 1)) & 0x1) ? '1' : '0';
5962
5963 buf2[i] = '\0';
5964 }
5965 else if (pre == 0)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005966 vim_snprintf((char *)buf2, NUMBUFLEN, "%llu", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005967 else if (pre == '0')
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005968 vim_snprintf((char *)buf2, NUMBUFLEN, "%llo", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005969 else if (pre && hexupper)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005970 vim_snprintf((char *)buf2, NUMBUFLEN, "%llX", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005971 else
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005972 vim_snprintf((char *)buf2, NUMBUFLEN, "%llx", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005973 length -= (int)STRLEN(buf2);
5974
5975 /*
5976 * Adjust number of zeros to the new number of digits, so the
5977 * total length of the number remains the same.
5978 * Don't do this when
5979 * the result may look like an octal number.
5980 */
5981 if (firstdigit == '0' && !(dooct && pre == 0))
5982 while (length-- > 0)
5983 *ptr++ = '0';
5984 *ptr = NUL;
5985 STRCAT(buf1, buf2);
5986 ins_str(buf1); /* insert the new number */
5987 vim_free(buf1);
5988 endpos = curwin->w_cursor;
5989 if (did_change && curwin->w_cursor.col)
5990 --curwin->w_cursor.col;
5991 }
5992
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005993 if (did_change)
5994 {
5995 /* set the '[ and '] marks */
5996 curbuf->b_op_start = startpos;
5997 curbuf->b_op_end = endpos;
5998 if (curbuf->b_op_end.col > 0)
5999 --curbuf->b_op_end.col;
6000 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01006001
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01006002theend:
6003 if (visual)
6004 curwin->w_cursor = save_cursor;
Bram Moolenaar8e081252016-03-21 23:13:32 +01006005 else if (did_change)
6006 curwin->w_set_curswant = TRUE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01006007
Bram Moolenaard79e5502016-01-10 22:13:02 +01006008 return did_change;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006009}
6010
6011#ifdef FEAT_VIMINFO
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006012
6013static yankreg_T *y_read_regs = NULL;
6014
6015#define REG_PREVIOUS 1
6016#define REG_EXEC 2
6017
6018/*
6019 * Prepare for reading viminfo registers when writing viminfo later.
6020 */
6021 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02006022prepare_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006023{
6024 y_read_regs = (yankreg_T *)alloc_clear(NUM_REGISTERS
6025 * (int)sizeof(yankreg_T));
6026}
6027
6028 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02006029finish_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006030{
6031 int i;
6032 int j;
6033
6034 if (y_read_regs != NULL)
6035 {
6036 for (i = 0; i < NUM_REGISTERS; ++i)
6037 if (y_read_regs[i].y_array != NULL)
6038 {
6039 for (j = 0; j < y_read_regs[i].y_size; j++)
6040 vim_free(y_read_regs[i].y_array[j]);
6041 vim_free(y_read_regs[i].y_array);
6042 }
6043 vim_free(y_read_regs);
6044 y_read_regs = NULL;
6045 }
6046}
6047
Bram Moolenaar071d4272004-06-13 20:20:40 +00006048 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006049read_viminfo_register(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006050{
6051 int eof;
6052 int do_it = TRUE;
6053 int size;
6054 int limit;
6055 int i;
6056 int set_prev = FALSE;
6057 char_u *str;
6058 char_u **array = NULL;
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01006059 int new_type = MCHAR; /* init to shut up compiler */
6060 colnr_T new_width = 0; /* init to shut up compiler */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061
6062 /* We only get here (hopefully) if line[0] == '"' */
6063 str = virp->vir_line + 1;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006064
6065 /* If the line starts with "" this is the y_previous register. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006066 if (*str == '"')
6067 {
6068 set_prev = TRUE;
6069 str++;
6070 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00006071
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072 if (!ASCII_ISALNUM(*str) && *str != '-')
6073 {
6074 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
6075 return TRUE; /* too many errors, pretend end-of-file */
6076 do_it = FALSE;
6077 }
6078 get_yank_register(*str++, FALSE);
6079 if (!force && y_current->y_array != NULL)
6080 do_it = FALSE;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006081
6082 if (*str == '@')
6083 {
6084 /* "x@: register x used for @@ */
6085 if (force || execreg_lastc == NUL)
6086 execreg_lastc = str[-1];
6087 }
6088
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089 size = 0;
6090 limit = 100; /* Optimized for registers containing <= 100 lines */
6091 if (do_it)
6092 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006093 /*
6094 * Build the new register in array[].
6095 * y_array is kept as-is until done.
6096 * The "do_it" flag is reset when something is wrong, in which case
6097 * array[] needs to be freed.
6098 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099 if (set_prev)
6100 y_previous = y_current;
Bram Moolenaare88b0032014-12-17 21:00:49 +01006101 array = (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
Bram Moolenaar42b94362009-05-26 16:12:37 +00006102 str = skipwhite(skiptowhite(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103 if (STRNCMP(str, "CHAR", 4) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006104 new_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006105 else if (STRNCMP(str, "BLOCK", 5) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006106 new_type = MBLOCK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006108 new_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006109 /* get the block width; if it's missing we get a zero, which is OK */
6110 str = skipwhite(skiptowhite(str));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006111 new_width = getdigits(&str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006112 }
6113
6114 while (!(eof = viminfo_readline(virp))
6115 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
6116 {
6117 if (do_it)
6118 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006119 if (size == limit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006120 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006121 char_u **new_array = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006123
6124 if (new_array == NULL)
6125 {
6126 do_it = FALSE;
6127 break;
6128 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129 for (i = 0; i < limit; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006130 new_array[i] = array[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131 vim_free(array);
Bram Moolenaare88b0032014-12-17 21:00:49 +01006132 array = new_array;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133 limit *= 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134 }
6135 str = viminfo_readstring(virp, 1, TRUE);
6136 if (str != NULL)
6137 array[size++] = str;
6138 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006139 /* error, don't store the result */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140 do_it = FALSE;
6141 }
6142 }
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01006143
Bram Moolenaar071d4272004-06-13 20:20:40 +00006144 if (do_it)
6145 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006146 /* free y_array[] */
6147 for (i = 0; i < y_current->y_size; i++)
6148 vim_free(y_current->y_array[i]);
6149 vim_free(y_current->y_array);
6150
6151 y_current->y_type = new_type;
6152 y_current->y_width = new_width;
6153 y_current->y_size = size;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006154 y_current->y_time_set = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155 if (size == 0)
6156 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157 y_current->y_array = NULL;
6158 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006159 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006161 /* Move the lines from array[] to y_array[]. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162 y_current->y_array =
6163 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
6164 for (i = 0; i < size; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006165 {
6166 if (y_current->y_array == NULL)
6167 vim_free(array[i]);
6168 else
6169 y_current->y_array[i] = array[i];
6170 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006172 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006173 else
6174 {
6175 /* Free array[] if it was filled. */
6176 for (i = 0; i < size; i++)
6177 vim_free(array[i]);
6178 }
6179 vim_free(array);
6180
Bram Moolenaar071d4272004-06-13 20:20:40 +00006181 return eof;
6182}
6183
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006184/*
6185 * Accept a new style register line from the viminfo, store it when it's new.
6186 */
6187 void
6188handle_viminfo_register(garray_T *values, int force)
6189{
6190 bval_T *vp = (bval_T *)values->ga_data;
6191 int flags;
6192 int name;
6193 int type;
6194 int linecount;
6195 int width;
6196 time_t timestamp;
6197 yankreg_T *y_ptr;
6198 int i;
6199
6200 /* Check the format:
6201 * |{bartype},{flags},{name},{type},
6202 * {linecount},{width},{timestamp},"line1","line2"
6203 */
6204 if (values->ga_len < 6
6205 || vp[0].bv_type != BVAL_NR
6206 || vp[1].bv_type != BVAL_NR
6207 || vp[2].bv_type != BVAL_NR
6208 || vp[3].bv_type != BVAL_NR
6209 || vp[4].bv_type != BVAL_NR
6210 || vp[5].bv_type != BVAL_NR)
6211 return;
6212 flags = vp[0].bv_nr;
6213 name = vp[1].bv_nr;
Bram Moolenaar67e37202016-06-14 21:32:28 +02006214 if (name < 0 || name >= NUM_REGISTERS)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006215 return;
6216 type = vp[2].bv_nr;
6217 if (type != MCHAR && type != MLINE && type != MBLOCK)
6218 return;
6219 linecount = vp[3].bv_nr;
6220 if (values->ga_len < 6 + linecount)
6221 return;
6222 width = vp[4].bv_nr;
6223 if (width < 0)
6224 return;
6225
6226 if (y_read_regs != NULL)
6227 /* Reading viminfo for merging and writing. Store the register
6228 * content, don't update the current registers. */
6229 y_ptr = &y_read_regs[name];
6230 else
6231 y_ptr = &y_regs[name];
6232
6233 /* Do not overwrite unless forced or the timestamp is newer. */
6234 timestamp = (time_t)vp[5].bv_nr;
6235 if (y_ptr->y_array != NULL && !force
6236 && (timestamp == 0 || y_ptr->y_time_set > timestamp))
6237 return;
6238
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02006239 if (y_ptr->y_array != NULL)
6240 for (i = 0; i < y_ptr->y_size; i++)
6241 vim_free(y_ptr->y_array[i]);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006242 vim_free(y_ptr->y_array);
6243
6244 if (y_read_regs == NULL)
6245 {
6246 if (flags & REG_PREVIOUS)
6247 y_previous = y_ptr;
6248 if ((flags & REG_EXEC) && (force || execreg_lastc == NUL))
6249 execreg_lastc = get_register_name(name);
6250 }
6251 y_ptr->y_type = type;
6252 y_ptr->y_width = width;
6253 y_ptr->y_size = linecount;
6254 y_ptr->y_time_set = timestamp;
6255 if (linecount == 0)
6256 y_ptr->y_array = NULL;
6257 else
6258 {
6259 y_ptr->y_array =
6260 (char_u **)alloc((unsigned)(linecount * sizeof(char_u *)));
6261 for (i = 0; i < linecount; i++)
6262 {
6263 if (vp[i + 6].bv_allocated)
6264 {
6265 y_ptr->y_array[i] = vp[i + 6].bv_string;
6266 vp[i + 6].bv_string = NULL;
6267 }
6268 else
6269 y_ptr->y_array[i] = vim_strsave(vp[i + 6].bv_string);
6270 }
6271 }
6272}
6273
Bram Moolenaar071d4272004-06-13 20:20:40 +00006274 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006275write_viminfo_registers(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006277 int i, j;
6278 char_u *type;
6279 char_u c;
6280 int num_lines;
6281 int max_num_lines;
6282 int max_kbyte;
6283 long len;
6284 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285
Bram Moolenaar64404472010-06-26 06:24:45 +02006286 fputs(_("\n# Registers:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287
6288 /* Get '<' value, use old '"' value if '<' is not found. */
6289 max_num_lines = get_viminfo_parameter('<');
6290 if (max_num_lines < 0)
6291 max_num_lines = get_viminfo_parameter('"');
6292 if (max_num_lines == 0)
6293 return;
6294 max_kbyte = get_viminfo_parameter('s');
6295 if (max_kbyte == 0)
6296 return;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006297
Bram Moolenaar071d4272004-06-13 20:20:40 +00006298 for (i = 0; i < NUM_REGISTERS; i++)
6299 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006300#ifdef FEAT_CLIPBOARD
6301 /* Skip '*'/'+' register, we don't want them back next time */
6302 if (i == STAR_REGISTER || i == PLUS_REGISTER)
6303 continue;
6304#endif
6305#ifdef FEAT_DND
6306 /* Neither do we want the '~' register */
6307 if (i == TILDE_REGISTER)
6308 continue;
6309#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006310 /* When reading viminfo for merging and writing: Use the register from
6311 * viminfo if it's newer. */
6312 if (y_read_regs != NULL
6313 && y_read_regs[i].y_array != NULL
6314 && (y_regs[i].y_array == NULL ||
6315 y_read_regs[i].y_time_set > y_regs[i].y_time_set))
6316 y_ptr = &y_read_regs[i];
6317 else if (y_regs[i].y_array == NULL)
6318 continue;
6319 else
6320 y_ptr = &y_regs[i];
6321
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006322 /* Skip empty registers. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006323 num_lines = y_ptr->y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006324 if (num_lines == 0
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006325 || (num_lines == 1 && y_ptr->y_type == MCHAR
6326 && *y_ptr->y_array[0] == NUL))
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006327 continue;
6328
Bram Moolenaar071d4272004-06-13 20:20:40 +00006329 if (max_kbyte > 0)
6330 {
6331 /* Skip register if there is more text than the maximum size. */
6332 len = 0;
6333 for (j = 0; j < num_lines; j++)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006334 len += (long)STRLEN(y_ptr->y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 if (len > (long)max_kbyte * 1024L)
6336 continue;
6337 }
6338
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006339 switch (y_ptr->y_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340 {
6341 case MLINE:
6342 type = (char_u *)"LINE";
6343 break;
6344 case MCHAR:
6345 type = (char_u *)"CHAR";
6346 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347 case MBLOCK:
6348 type = (char_u *)"BLOCK";
6349 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006350 default:
6351 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006352 y_ptr->y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006353 emsg(IObuff);
6354 type = (char_u *)"LINE";
6355 break;
6356 }
6357 if (y_previous == &y_regs[i])
6358 fprintf(fp, "\"");
6359 c = get_register_name(i);
Bram Moolenaar42b94362009-05-26 16:12:37 +00006360 fprintf(fp, "\"%c", c);
6361 if (c == execreg_lastc)
6362 fprintf(fp, "@");
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006363 fprintf(fp, "\t%s\t%d\n", type, (int)y_ptr->y_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006364
6365 /* If max_num_lines < 0, then we save ALL the lines in the register */
6366 if (max_num_lines > 0 && num_lines > max_num_lines)
6367 num_lines = max_num_lines;
6368 for (j = 0; j < num_lines; j++)
6369 {
6370 putc('\t', fp);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006371 viminfo_writestring(fp, y_ptr->y_array[j]);
6372 }
6373
6374 {
6375 int flags = 0;
6376 int remaining;
6377
6378 /* New style with a bar line. Format:
6379 * |{bartype},{flags},{name},{type},
6380 * {linecount},{width},{timestamp},"line1","line2"
6381 * flags: REG_PREVIOUS - register is y_previous
Bram Moolenaarf12519d2018-02-06 22:52:49 +01006382 * REG_EXEC - used for @@
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006383 */
6384 if (y_previous == &y_regs[i])
6385 flags |= REG_PREVIOUS;
6386 if (c == execreg_lastc)
6387 flags |= REG_EXEC;
6388 fprintf(fp, "|%d,%d,%d,%d,%d,%d,%ld", BARTYPE_REGISTER, flags,
6389 i, y_ptr->y_type, num_lines, (int)y_ptr->y_width,
6390 (long)y_ptr->y_time_set);
6391 /* 11 chars for type/flags/name/type, 3 * 20 for numbers */
6392 remaining = LSIZE - 71;
6393 for (j = 0; j < num_lines; j++)
6394 {
6395 putc(',', fp);
6396 --remaining;
6397 remaining = barline_writestring(fp, y_ptr->y_array[j],
6398 remaining);
6399 }
6400 putc('\n', fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401 }
6402 }
6403}
6404#endif /* FEAT_VIMINFO */
6405
6406#if defined(FEAT_CLIPBOARD) || defined(PROTO)
6407/*
6408 * SELECTION / PRIMARY ('*')
6409 *
6410 * Text selection stuff that uses the GUI selection register '*'. When using a
6411 * GUI this may be text from another window, otherwise it is the last text we
6412 * had highlighted with VIsual mode. With mouse support, clicking the middle
6413 * button performs the paste, otherwise you will need to do <"*p>. "
6414 * If not under X, it is synonymous with the clipboard register '+'.
6415 *
6416 * X CLIPBOARD ('+')
6417 *
6418 * Text selection stuff that uses the GUI clipboard register '+'.
6419 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
6420 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
6421 * otherwise you will need to do <"+p>. "
6422 * If not under X, it is synonymous with the selection register '*'.
6423 */
6424
6425/*
6426 * Routine to export any final X selection we had to the environment
Bram Moolenaarf58a8472017-03-05 18:03:04 +01006427 * so that the text is still available after Vim has exited. X selections
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428 * only exist while the owning application exists, so we write to the
6429 * permanent (while X runs) store CUT_BUFFER0.
6430 * Dump the CLIPBOARD selection if we own it (it's logically the more
6431 * 'permanent' of the two), otherwise the PRIMARY one.
6432 * For now, use a hard-coded sanity limit of 1Mb of data.
6433 */
Bram Moolenaara6b7a082016-08-10 20:53:05 +02006434#if (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006435 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006436x11_export_final_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006437{
6438 Display *dpy;
6439 char_u *str = NULL;
6440 long_u len = 0;
6441 int motion_type = -1;
6442
6443# ifdef FEAT_GUI
6444 if (gui.in_use)
6445 dpy = X_DISPLAY;
6446 else
6447# endif
6448# ifdef FEAT_XCLIPBOARD
6449 dpy = xterm_dpy;
6450# else
6451 return;
6452# endif
6453
6454 /* Get selection to export */
6455 if (clip_plus.owned)
6456 motion_type = clip_convert_selection(&str, &len, &clip_plus);
6457 else if (clip_star.owned)
6458 motion_type = clip_convert_selection(&str, &len, &clip_star);
6459
6460 /* Check it's OK */
6461 if (dpy != NULL && str != NULL && motion_type >= 0
6462 && len < 1024*1024 && len > 0)
6463 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006464#ifdef FEAT_MBYTE
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006465 int ok = TRUE;
6466
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006467 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
6468 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
6469 * encoding conversion usually doesn't work, so keep the text as-is.
6470 */
6471 if (has_mbyte)
6472 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006473 vimconv_T vc;
6474
6475 vc.vc_type = CONV_NONE;
6476 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
6477 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01006478 int intlen = len;
6479 char_u *conv_str;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006480
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006481 vc.vc_fail = TRUE;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006482 conv_str = string_convert(&vc, str, &intlen);
6483 len = intlen;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006484 if (conv_str != NULL)
6485 {
6486 vim_free(str);
6487 str = conv_str;
6488 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006489 else
6490 {
6491 ok = FALSE;
6492 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006493 convert_setup(&vc, NULL, NULL);
6494 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006495 else
6496 {
6497 ok = FALSE;
6498 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006499 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006500
6501 /* Do not store the string if conversion failed. Better to use any
6502 * other selection than garbled text. */
6503 if (ok)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006504#endif
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006505 {
6506 XStoreBuffer(dpy, (char *)str, (int)len, 0);
6507 XFlush(dpy);
6508 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006509 }
6510
6511 vim_free(str);
6512}
6513#endif
6514
6515 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006516clip_free_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006517{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006518 yankreg_T *y_ptr = y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519
6520 if (cbd == &clip_plus)
6521 y_current = &y_regs[PLUS_REGISTER];
6522 else
6523 y_current = &y_regs[STAR_REGISTER];
6524 free_yank_all();
6525 y_current->y_size = 0;
6526 y_current = y_ptr;
6527}
6528
6529/*
6530 * Get the selected text and put it in the gui selection register '*' or '+'.
6531 */
6532 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006533clip_get_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006534{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006535 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006536 pos_T old_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006537 pos_T old_visual;
6538 int old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539 colnr_T old_curswant;
6540 int old_set_curswant;
6541 pos_T old_op_start, old_op_end;
6542 oparg_T oa;
6543 cmdarg_T ca;
6544
6545 if (cbd->owned)
6546 {
6547 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
6548 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
6549 return;
6550
6551 /* Get the text between clip_star.start & clip_star.end */
6552 old_y_previous = y_previous;
6553 old_y_current = y_current;
6554 old_cursor = curwin->w_cursor;
6555 old_curswant = curwin->w_curswant;
6556 old_set_curswant = curwin->w_set_curswant;
6557 old_op_start = curbuf->b_op_start;
6558 old_op_end = curbuf->b_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559 old_visual = VIsual;
6560 old_visual_mode = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006561 clear_oparg(&oa);
6562 oa.regname = (cbd == &clip_plus ? '+' : '*');
6563 oa.op_type = OP_YANK;
6564 vim_memset(&ca, 0, sizeof(ca));
6565 ca.oap = &oa;
6566 ca.cmdchar = 'y';
6567 ca.count1 = 1;
6568 ca.retval = CA_NO_ADJ_OP_END;
6569 do_pending_operator(&ca, 0, TRUE);
6570 y_previous = old_y_previous;
6571 y_current = old_y_current;
6572 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006573 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006574 curwin->w_curswant = old_curswant;
6575 curwin->w_set_curswant = old_set_curswant;
6576 curbuf->b_op_start = old_op_start;
6577 curbuf->b_op_end = old_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006578 VIsual = old_visual;
6579 VIsual_mode = old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580 }
Bram Moolenaar3fcfa352017-03-29 19:20:41 +02006581 else if (!is_clipboard_needs_update())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582 {
6583 clip_free_selection(cbd);
6584
6585 /* Try to get selected text from another window */
6586 clip_gen_request_selection(cbd);
6587 }
6588}
6589
Bram Moolenaard44347f2011-06-19 01:14:29 +02006590/*
6591 * Convert from the GUI selection string into the '*'/'+' register.
6592 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006593 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006594clip_yank_selection(
6595 int type,
6596 char_u *str,
6597 long len,
6598 VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006600 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006601
6602 if (cbd == &clip_plus)
6603 y_ptr = &y_regs[PLUS_REGISTER];
6604 else
6605 y_ptr = &y_regs[STAR_REGISTER];
6606
6607 clip_free_selection(cbd);
6608
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006609 str_to_reg(y_ptr, type, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006610}
6611
6612/*
6613 * Convert the '*'/'+' register into a GUI selection string returned in *str
6614 * with length *len.
6615 * Returns the motion type, or -1 for failure.
6616 */
6617 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006618clip_convert_selection(char_u **str, long_u *len, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619{
6620 char_u *p;
6621 int lnum;
6622 int i, j;
6623 int_u eolsize;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006624 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006625
6626 if (cbd == &clip_plus)
6627 y_ptr = &y_regs[PLUS_REGISTER];
6628 else
6629 y_ptr = &y_regs[STAR_REGISTER];
6630
6631#ifdef USE_CRNL
6632 eolsize = 2;
6633#else
6634 eolsize = 1;
6635#endif
6636
6637 *str = NULL;
6638 *len = 0;
6639 if (y_ptr->y_array == NULL)
6640 return -1;
6641
6642 for (i = 0; i < y_ptr->y_size; i++)
6643 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
6644
6645 /*
6646 * Don't want newline character at end of last line if we're in MCHAR mode.
6647 */
6648 if (y_ptr->y_type == MCHAR && *len >= eolsize)
6649 *len -= eolsize;
6650
6651 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
6652 if (p == NULL)
6653 return -1;
6654 lnum = 0;
6655 for (i = 0, j = 0; i < (int)*len; i++, j++)
6656 {
6657 if (y_ptr->y_array[lnum][j] == '\n')
6658 p[i] = NUL;
6659 else if (y_ptr->y_array[lnum][j] == NUL)
6660 {
6661#ifdef USE_CRNL
6662 p[i++] = '\r';
6663#endif
6664#ifdef USE_CR
6665 p[i] = '\r';
6666#else
6667 p[i] = '\n';
6668#endif
6669 lnum++;
6670 j = -1;
6671 }
6672 else
6673 p[i] = y_ptr->y_array[lnum][j];
6674 }
6675 return y_ptr->y_type;
6676}
6677
6678
Bram Moolenaar071d4272004-06-13 20:20:40 +00006679/*
6680 * If we have written to a clipboard register, send the text to the clipboard.
6681 */
6682 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006683may_set_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006684{
6685 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
6686 {
6687 clip_own_selection(&clip_star);
6688 clip_gen_set_selection(&clip_star);
6689 }
6690 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
6691 {
6692 clip_own_selection(&clip_plus);
6693 clip_gen_set_selection(&clip_plus);
6694 }
6695}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006696
6697#endif /* FEAT_CLIPBOARD || PROTO */
6698
6699
6700#if defined(FEAT_DND) || defined(PROTO)
6701/*
6702 * Replace the contents of the '~' register with str.
6703 */
6704 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006705dnd_yank_drag_data(char_u *str, long len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006706{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006707 yankreg_T *curr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006708
6709 curr = y_current;
6710 y_current = &y_regs[TILDE_REGISTER];
6711 free_yank_all();
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006712 str_to_reg(y_current, MCHAR, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006713 y_current = curr;
6714}
6715#endif
6716
6717
6718#if defined(FEAT_EVAL) || defined(PROTO)
6719/*
6720 * Return the type of a register.
6721 * Used for getregtype()
6722 * Returns MAUTO for error.
6723 */
6724 char_u
Bram Moolenaar9b578142016-01-30 19:39:49 +01006725get_reg_type(int regname, long *reglen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006726{
6727 switch (regname)
6728 {
6729 case '%': /* file name */
6730 case '#': /* alternate file name */
6731 case '=': /* expression */
6732 case ':': /* last command line */
6733 case '/': /* last search-pattern */
6734 case '.': /* last inserted text */
6735#ifdef FEAT_SEARCHPATH
6736 case Ctrl_F: /* Filename under cursor */
6737 case Ctrl_P: /* Path under cursor, expand via "path" */
6738#endif
6739 case Ctrl_W: /* word under cursor */
6740 case Ctrl_A: /* WORD (mnemonic All) under cursor */
6741 case '_': /* black hole: always empty */
6742 return MCHAR;
6743 }
6744
6745#ifdef FEAT_CLIPBOARD
6746 regname = may_get_selection(regname);
6747#endif
6748
Bram Moolenaar32b92012014-01-14 12:33:36 +01006749 if (regname != NUL && !valid_yank_reg(regname, FALSE))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006750 return MAUTO;
Bram Moolenaar32b92012014-01-14 12:33:36 +01006751
Bram Moolenaar071d4272004-06-13 20:20:40 +00006752 get_yank_register(regname, FALSE);
6753
6754 if (y_current->y_array != NULL)
6755 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006756 if (reglen != NULL && y_current->y_type == MBLOCK)
6757 *reglen = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758 return y_current->y_type;
6759 }
6760 return MAUTO;
6761}
6762
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01006763static char_u *getreg_wrap_one_line(char_u *s, int flags);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006764
6765/*
6766 * When "flags" has GREG_LIST return a list with text "s".
6767 * Otherwise just return "s".
6768 */
6769 static char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006770getreg_wrap_one_line(char_u *s, int flags)
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006771{
6772 if (flags & GREG_LIST)
6773 {
6774 list_T *list = list_alloc();
6775
6776 if (list != NULL)
6777 {
6778 if (list_append_string(list, NULL, -1) == FAIL)
6779 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006780 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006781 return NULL;
6782 }
6783 list->lv_first->li_tv.vval.v_string = s;
6784 }
6785 return (char_u *)list;
6786 }
6787 return s;
6788}
6789
Bram Moolenaar071d4272004-06-13 20:20:40 +00006790/*
6791 * Return the contents of a register as a single allocated string.
6792 * Used for "@r" in expressions and for getreg().
6793 * Returns NULL for error.
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006794 * Flags:
6795 * GREG_NO_EXPR Do not allow expression register
6796 * GREG_EXPR_SRC For the expression register: return expression itself,
6797 * not the result of its evaluation.
6798 * GREG_LIST Return a list of lines in place of a single string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006799 */
6800 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006801get_reg_contents(int regname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006802{
6803 long i;
6804 char_u *retval;
6805 int allocated;
6806 long len;
6807
6808 /* Don't allow using an expression register inside an expression */
6809 if (regname == '=')
6810 {
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006811 if (flags & GREG_NO_EXPR)
6812 return NULL;
6813 if (flags & GREG_EXPR_SRC)
6814 return getreg_wrap_one_line(get_expr_line_src(), flags);
6815 return getreg_wrap_one_line(get_expr_line(), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006816 }
6817
6818 if (regname == '@') /* "@@" is used for unnamed register */
6819 regname = '"';
6820
6821 /* check for valid regname */
6822 if (regname != NUL && !valid_yank_reg(regname, FALSE))
6823 return NULL;
6824
6825#ifdef FEAT_CLIPBOARD
6826 regname = may_get_selection(regname);
6827#endif
6828
6829 if (get_spec_reg(regname, &retval, &allocated, FALSE))
6830 {
6831 if (retval == NULL)
6832 return NULL;
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006833 if (allocated)
6834 return getreg_wrap_one_line(retval, flags);
6835 return getreg_wrap_one_line(vim_strsave(retval), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006836 }
6837
6838 get_yank_register(regname, FALSE);
6839 if (y_current->y_array == NULL)
6840 return NULL;
6841
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006842 if (flags & GREG_LIST)
6843 {
6844 list_T *list = list_alloc();
6845 int error = FALSE;
6846
6847 if (list == NULL)
6848 return NULL;
6849 for (i = 0; i < y_current->y_size; ++i)
6850 if (list_append_string(list, y_current->y_array[i], -1) == FAIL)
6851 error = TRUE;
6852 if (error)
6853 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006854 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006855 return NULL;
6856 }
6857 return (char_u *)list;
6858 }
6859
Bram Moolenaar071d4272004-06-13 20:20:40 +00006860 /*
6861 * Compute length of resulting string.
6862 */
6863 len = 0;
6864 for (i = 0; i < y_current->y_size; ++i)
6865 {
6866 len += (long)STRLEN(y_current->y_array[i]);
6867 /*
6868 * Insert a newline between lines and after last line if
6869 * y_type is MLINE.
6870 */
6871 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6872 ++len;
6873 }
6874
6875 retval = lalloc(len + 1, TRUE);
6876
6877 /*
6878 * Copy the lines of the yank register into the string.
6879 */
6880 if (retval != NULL)
6881 {
6882 len = 0;
6883 for (i = 0; i < y_current->y_size; ++i)
6884 {
6885 STRCPY(retval + len, y_current->y_array[i]);
6886 len += (long)STRLEN(retval + len);
6887
6888 /*
6889 * Insert a NL between lines and after the last line if y_type is
6890 * MLINE.
6891 */
6892 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6893 retval[len++] = '\n';
6894 }
6895 retval[len] = NUL;
6896 }
6897
6898 return retval;
6899}
6900
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006901 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006902init_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006903 int name,
6904 yankreg_T **old_y_previous,
6905 yankreg_T **old_y_current,
6906 int must_append,
6907 int *yank_type UNUSED)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006908{
6909 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6910 {
6911 emsg_invreg(name);
6912 return FAIL;
6913 }
6914
6915 /* Don't want to change the current (unnamed) register */
6916 *old_y_previous = y_previous;
6917 *old_y_current = y_current;
6918
6919 get_yank_register(name, TRUE);
6920 if (!y_append && !must_append)
6921 free_yank_all();
6922 return OK;
6923}
6924
6925 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006926finish_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006927 int name,
6928 yankreg_T *old_y_previous,
6929 yankreg_T *old_y_current)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006930{
6931# ifdef FEAT_CLIPBOARD
6932 /* Send text of clipboard register to the clipboard. */
6933 may_set_selection();
6934# endif
6935
6936 /* ':let @" = "val"' should change the meaning of the "" register */
6937 if (name != '"')
6938 y_previous = old_y_previous;
6939 y_current = old_y_current;
6940}
6941
Bram Moolenaar071d4272004-06-13 20:20:40 +00006942/*
6943 * Store string "str" in register "name".
6944 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
6945 * If "must_append" is TRUE, always append to the register. Otherwise append
6946 * if "name" is an uppercase letter.
6947 * Note: "maxlen" and "must_append" don't work for the "/" register.
6948 * Careful: 'str' is modified, you may have to use a copy!
6949 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
6950 */
6951 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006952write_reg_contents(
6953 int name,
6954 char_u *str,
6955 int maxlen,
6956 int must_append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006957{
6958 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
6959}
6960
6961 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006962write_reg_contents_lst(
6963 int name,
6964 char_u **strings,
6965 int maxlen UNUSED,
6966 int must_append,
6967 int yank_type,
6968 long block_len)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006969{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006970 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006971
6972 if (name == '/'
6973#ifdef FEAT_EVAL
6974 || name == '='
6975#endif
6976 )
6977 {
6978 char_u *s;
6979
6980 if (strings[0] == NULL)
6981 s = (char_u *)"";
6982 else if (strings[1] != NULL)
6983 {
6984 EMSG(_("E883: search pattern and expression register may not "
6985 "contain two or more lines"));
6986 return;
6987 }
6988 else
6989 s = strings[0];
6990 write_reg_contents_ex(name, s, -1, must_append, yank_type, block_len);
6991 return;
6992 }
6993
6994 if (name == '_') /* black hole: nothing to do */
6995 return;
6996
6997 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
6998 &yank_type) == FAIL)
6999 return;
7000
7001 str_to_reg(y_current, yank_type, (char_u *) strings, -1, block_len, TRUE);
7002
7003 finish_write_reg(name, old_y_previous, old_y_current);
7004}
7005
7006 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007007write_reg_contents_ex(
7008 int name,
7009 char_u *str,
7010 int maxlen,
7011 int must_append,
7012 int yank_type,
7013 long block_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007014{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007015 yankreg_T *old_y_previous, *old_y_current;
7016 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007017
Bram Moolenaare7566042005-06-17 22:00:15 +00007018 if (maxlen >= 0)
7019 len = maxlen;
7020 else
7021 len = (long)STRLEN(str);
7022
Bram Moolenaar071d4272004-06-13 20:20:40 +00007023 /* Special case: '/' search pattern */
7024 if (name == '/')
7025 {
7026 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
7027 return;
7028 }
7029
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01007030 if (name == '#')
7031 {
7032 buf_T *buf;
7033
7034 if (VIM_ISDIGIT(*str))
7035 {
7036 int num = atoi((char *)str);
7037
7038 buf = buflist_findnr(num);
7039 if (buf == NULL)
7040 EMSGN(_(e_nobufnr), (long)num);
7041 }
7042 else
7043 buf = buflist_findnr(buflist_findpat(str, str + STRLEN(str),
7044 TRUE, FALSE, FALSE));
7045 if (buf == NULL)
7046 return;
7047 curwin->w_alt_fnum = buf->b_fnum;
7048 return;
7049 }
7050
Bram Moolenaare7566042005-06-17 22:00:15 +00007051#ifdef FEAT_EVAL
7052 if (name == '=')
7053 {
7054 char_u *p, *s;
7055
7056 p = vim_strnsave(str, (int)len);
7057 if (p == NULL)
7058 return;
7059 if (must_append)
7060 {
7061 s = concat_str(get_expr_line_src(), p);
7062 vim_free(p);
7063 p = s;
Bram Moolenaare7566042005-06-17 22:00:15 +00007064 }
7065 set_expr_line(p);
7066 return;
7067 }
7068#endif
7069
Bram Moolenaar071d4272004-06-13 20:20:40 +00007070 if (name == '_') /* black hole: nothing to do */
7071 return;
7072
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007073 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
7074 &yank_type) == FAIL)
7075 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007076
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007077 str_to_reg(y_current, yank_type, str, len, block_len, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007079 finish_write_reg(name, old_y_previous, old_y_current);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080}
7081#endif /* FEAT_EVAL */
7082
7083#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
7084/*
7085 * Put a string into a register. When the register is not empty, the string
7086 * is appended.
7087 */
7088 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007089str_to_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007090 yankreg_T *y_ptr, /* pointer to yank register */
7091 int yank_type, /* MCHAR, MLINE, MBLOCK, MAUTO */
7092 char_u *str, /* string to put in register */
7093 long len, /* length of string */
7094 long blocklen, /* width of Visual block */
7095 int str_list) /* TRUE if str is char_u ** */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007096{
Bram Moolenaard44347f2011-06-19 01:14:29 +02007097 int type; /* MCHAR, MLINE or MBLOCK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007098 int lnum;
7099 long start;
7100 long i;
7101 int extra;
7102 int newlines; /* number of lines added */
7103 int extraline = 0; /* extra line at the end */
7104 int append = FALSE; /* append to last line in register */
7105 char_u *s;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007106 char_u **ss;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007107 char_u **pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108 long maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109
Bram Moolenaarcde547a2009-11-17 11:43:06 +00007110 if (y_ptr->y_array == NULL) /* NULL means empty register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007111 y_ptr->y_size = 0;
7112
Bram Moolenaard44347f2011-06-19 01:14:29 +02007113 if (yank_type == MAUTO)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007114 type = ((str_list || (len > 0 && (str[len - 1] == NL
7115 || str[len - 1] == CAR)))
Bram Moolenaard44347f2011-06-19 01:14:29 +02007116 ? MLINE : MCHAR);
7117 else
7118 type = yank_type;
7119
Bram Moolenaar071d4272004-06-13 20:20:40 +00007120 /*
7121 * Count the number of lines within the string
7122 */
7123 newlines = 0;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007124 if (str_list)
7125 {
7126 for (ss = (char_u **) str; *ss != NULL; ++ss)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007127 ++newlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007128 }
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007129 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007130 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007131 for (i = 0; i < len; i++)
7132 if (str[i] == '\n')
7133 ++newlines;
7134 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
7135 {
7136 extraline = 1;
7137 ++newlines; /* count extra newline at the end */
7138 }
7139 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
7140 {
7141 append = TRUE;
7142 --newlines; /* uncount newline when appending first line */
7143 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007144 }
7145
Bram Moolenaar659c94d2015-05-04 20:19:21 +02007146 /* Without any lines make the register empty. */
7147 if (y_ptr->y_size + newlines == 0)
7148 {
7149 vim_free(y_ptr->y_array);
7150 y_ptr->y_array = NULL;
7151 return;
7152 }
7153
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154 /*
7155 * Allocate an array to hold the pointers to the new register lines.
7156 * If the register was not empty, move the existing lines to the new array.
7157 */
7158 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
7159 * sizeof(char_u *), TRUE);
7160 if (pp == NULL) /* out of memory */
7161 return;
7162 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
7163 pp[lnum] = y_ptr->y_array[lnum];
7164 vim_free(y_ptr->y_array);
7165 y_ptr->y_array = pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007166 maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007167
7168 /*
7169 * Find the end of each line and save it into the array.
7170 */
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007171 if (str_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007172 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007173 for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum)
7174 {
Bram Moolenaar121f9bd2014-04-29 15:55:43 +02007175 i = (long)STRLEN(*ss);
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007176 pp[lnum] = vim_strnsave(*ss, i);
7177 if (i > maxlen)
7178 maxlen = i;
7179 }
7180 }
7181 else
7182 {
7183 for (start = 0; start < len + extraline; start += i + 1)
7184 {
7185 for (i = start; i < len; ++i) /* find the end of the line */
7186 if (str[i] == '\n')
7187 break;
7188 i -= start; /* i is now length of line */
7189 if (i > maxlen)
7190 maxlen = i;
7191 if (append)
7192 {
7193 --lnum;
7194 extra = (int)STRLEN(y_ptr->y_array[lnum]);
7195 }
7196 else
7197 extra = 0;
7198 s = alloc((unsigned)(i + extra + 1));
7199 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007200 break;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007201 if (extra)
7202 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
7203 if (append)
7204 vim_free(y_ptr->y_array[lnum]);
7205 if (i)
7206 mch_memmove(s + extra, str + start, (size_t)i);
7207 extra += i;
7208 s[extra] = NUL;
7209 y_ptr->y_array[lnum++] = s;
7210 while (--extra >= 0)
7211 {
7212 if (*s == NUL)
7213 *s = '\n'; /* replace NUL with newline */
7214 ++s;
7215 }
7216 append = FALSE; /* only first line is appended */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007217 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007218 }
7219 y_ptr->y_type = type;
7220 y_ptr->y_size = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007221 if (type == MBLOCK)
7222 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
7223 else
7224 y_ptr->y_width = 0;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007225#ifdef FEAT_VIMINFO
7226 y_ptr->y_time_set = vim_time();
7227#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007228}
7229#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
7230
7231 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007232clear_oparg(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007233{
7234 vim_memset(oap, 0, sizeof(oparg_T));
7235}
7236
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007237static 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 +00007238
7239/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00007240 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007241 *
7242 * "Words" are counted by looking for boundaries between non-space and
7243 * space characters. (it seems to produce results that match 'wc'.)
7244 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00007245 * Return value is byte count; word count for the line is added to "*wc".
7246 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247 *
7248 * The function will only examine the first "limit" characters in the
7249 * line, stopping if it encounters an end-of-line (NUL byte). In that
7250 * case, eol_size will be added to the character count to account for
7251 * the size of the EOL character.
7252 */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007253 static varnumber_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01007254line_count_info(
7255 char_u *line,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007256 varnumber_T *wc,
7257 varnumber_T *cc,
7258 varnumber_T limit,
Bram Moolenaar9b578142016-01-30 19:39:49 +01007259 int eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007260{
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007261 varnumber_T i;
7262 varnumber_T words = 0;
7263 varnumber_T chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007264 int is_word = 0;
7265
Bram Moolenaar88b1ba12012-06-29 13:34:19 +02007266 for (i = 0; i < limit && line[i] != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007267 {
7268 if (is_word)
7269 {
7270 if (vim_isspace(line[i]))
7271 {
7272 words++;
7273 is_word = 0;
7274 }
7275 }
7276 else if (!vim_isspace(line[i]))
7277 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007278 ++chars;
7279#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007280 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00007281#else
7282 ++i;
7283#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007284 }
7285
7286 if (is_word)
7287 words++;
7288 *wc += words;
7289
7290 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar1cb7e092011-08-10 12:11:01 +02007291 if (i < limit && line[i] == NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007292 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007293 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007294 chars += eol_size;
7295 }
7296 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007297 return i;
7298}
7299
7300/*
7301 * Give some info about the position of the cursor (for "g CTRL-G").
7302 * In Visual mode, give some info about the selected region. (In this case,
7303 * the *_count_cursor variables store running totals for the selection.)
Bram Moolenaared767a22016-01-03 22:49:16 +01007304 * When "dict" is not NULL store the info there instead of showing it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007305 */
7306 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007307cursor_pos_info(dict_T *dict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007308{
7309 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007310 char_u buf1[50];
7311 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007312 linenr_T lnum;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007313 varnumber_T byte_count = 0;
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007314#ifdef FEAT_MBYTE
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007315 varnumber_T bom_count = 0;
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007316#endif
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007317 varnumber_T byte_count_cursor = 0;
7318 varnumber_T char_count = 0;
7319 varnumber_T char_count_cursor = 0;
7320 varnumber_T word_count = 0;
7321 varnumber_T word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007322 int eol_size;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007323 varnumber_T last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007324 long line_count_selected = 0;
7325 pos_T min_pos, max_pos;
7326 oparg_T oparg;
7327 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007328
7329 /*
7330 * Compute the length of the file in characters.
7331 */
7332 if (curbuf->b_ml.ml_flags & ML_EMPTY)
7333 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007334 if (dict == NULL)
7335 {
7336 MSG(_(no_lines_msg));
7337 return;
7338 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339 }
7340 else
7341 {
7342 if (get_fileformat(curbuf) == EOL_DOS)
7343 eol_size = 2;
7344 else
7345 eol_size = 1;
7346
Bram Moolenaar071d4272004-06-13 20:20:40 +00007347 if (VIsual_active)
7348 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007349 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350 {
7351 min_pos = VIsual;
7352 max_pos = curwin->w_cursor;
7353 }
7354 else
7355 {
7356 min_pos = curwin->w_cursor;
7357 max_pos = VIsual;
7358 }
7359 if (*p_sel == 'e' && max_pos.col > 0)
7360 --max_pos.col;
7361
7362 if (VIsual_mode == Ctrl_V)
7363 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00007364#ifdef FEAT_LINEBREAK
7365 char_u * saved_sbr = p_sbr;
7366
7367 /* Make 'sbr' empty for a moment to get the correct size. */
7368 p_sbr = empty_option;
7369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007370 oparg.is_VIsual = 1;
7371 oparg.block_mode = TRUE;
7372 oparg.op_type = OP_NOP;
7373 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007374 &oparg.start_vcol, &oparg.end_vcol);
Bram Moolenaar81d00072009-04-29 15:41:40 +00007375#ifdef FEAT_LINEBREAK
7376 p_sbr = saved_sbr;
7377#endif
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007378 if (curwin->w_curswant == MAXCOL)
7379 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007380 /* Swap the start, end vcol if needed */
7381 if (oparg.end_vcol < oparg.start_vcol)
7382 {
7383 oparg.end_vcol += oparg.start_vcol;
7384 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
7385 oparg.end_vcol -= oparg.start_vcol;
7386 }
7387 }
7388 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
7389 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007390
7391 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
7392 {
7393 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007394 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007395 {
7396 ui_breakcheck();
7397 if (got_int)
7398 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007399 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007400 }
7401
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402 /* Do extra processing for VIsual mode. */
7403 if (VIsual_active
7404 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
7405 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00007406 char_u *s = NULL;
7407 long len = 0L;
7408
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409 switch (VIsual_mode)
7410 {
7411 case Ctrl_V:
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007412#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007413 virtual_op = virtual_active();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007414#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007415 block_prep(&oparg, &bd, lnum, 0);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007416#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007417 virtual_op = MAYBE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007418#endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00007419 s = bd.textstart;
7420 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007421 break;
7422 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00007423 s = ml_get(lnum);
7424 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007425 break;
7426 case 'v':
7427 {
7428 colnr_T start_col = (lnum == min_pos.lnum)
7429 ? min_pos.col : 0;
7430 colnr_T end_col = (lnum == max_pos.lnum)
7431 ? max_pos.col - start_col + 1 : MAXCOL;
7432
Bram Moolenaardef9e822004-12-31 20:58:58 +00007433 s = ml_get(lnum) + start_col;
7434 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007435 }
7436 break;
7437 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00007438 if (s != NULL)
7439 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00007440 byte_count_cursor += line_count_info(s, &word_count_cursor,
7441 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00007442 if (lnum == curbuf->b_ml.ml_line_count
7443 && !curbuf->b_p_eol
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007444 && (curbuf->b_p_bin || !curbuf->b_p_fixeol)
Bram Moolenaarec2dad62005-01-02 11:36:03 +00007445 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007446 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00007447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007448 }
7449 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007450 {
7451 /* In non-visual mode, check for the line the cursor is on */
7452 if (lnum == curwin->w_cursor.lnum)
7453 {
7454 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007455 char_count_cursor += char_count;
7456 byte_count_cursor = byte_count +
7457 line_count_info(ml_get(lnum),
7458 &word_count_cursor, &char_count_cursor,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007459 (varnumber_T)(curwin->w_cursor.col + 1),
7460 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007461 }
7462 }
7463 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007464 byte_count += line_count_info(ml_get(lnum), &word_count,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007465 &char_count, (varnumber_T)MAXCOL,
7466 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007467 }
7468
7469 /* Correction for when last line doesn't have an EOL. */
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007470 if (!curbuf->b_p_eol && (curbuf->b_p_bin || !curbuf->b_p_fixeol))
Bram Moolenaar7c626922005-02-07 22:01:03 +00007471 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007472
Bram Moolenaared767a22016-01-03 22:49:16 +01007473 if (dict == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007475 if (VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007476 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007477 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
7478 {
7479 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
7480 &max_pos.col);
7481 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
7482 (long)(oparg.end_vcol - oparg.start_vcol + 1));
7483 }
7484 else
7485 buf1[0] = NUL;
7486
7487 if (char_count_cursor == byte_count_cursor
7488 && char_count == byte_count)
7489 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007490 _("Selected %s%ld of %ld Lines; %lld of %lld Words; %lld of %lld Bytes"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007491 buf1, line_count_selected,
7492 (long)curbuf->b_ml.ml_line_count,
7493 word_count_cursor, word_count,
7494 byte_count_cursor, byte_count);
7495 else
7496 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007497 _("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 +01007498 buf1, line_count_selected,
7499 (long)curbuf->b_ml.ml_line_count,
7500 word_count_cursor, word_count,
7501 char_count_cursor, char_count,
7502 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007503 }
7504 else
Bram Moolenaared767a22016-01-03 22:49:16 +01007505 {
7506 p = ml_get_curline();
7507 validate_virtcol();
7508 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
7509 (int)curwin->w_virtcol + 1);
7510 col_print(buf2, sizeof(buf2), (int)STRLEN(p),
7511 linetabsize(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007512
Bram Moolenaared767a22016-01-03 22:49:16 +01007513 if (char_count_cursor == byte_count_cursor
7514 && char_count == byte_count)
7515 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007516 _("Col %s of %s; Line %ld of %ld; Word %lld of %lld; Byte %lld of %lld"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007517 (char *)buf1, (char *)buf2,
7518 (long)curwin->w_cursor.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007519 (long)curbuf->b_ml.ml_line_count,
7520 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00007521 byte_count_cursor, byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007522 else
7523 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007524 _("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 +01007525 (char *)buf1, (char *)buf2,
7526 (long)curwin->w_cursor.lnum,
Bram Moolenaar7c626922005-02-07 22:01:03 +00007527 (long)curbuf->b_ml.ml_line_count,
7528 word_count_cursor, word_count,
7529 char_count_cursor, char_count,
7530 byte_count_cursor, byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007531 }
7532 }
7533
Bram Moolenaared767a22016-01-03 22:49:16 +01007534#ifdef FEAT_MBYTE
7535 bom_count = bomb_size();
7536 if (bom_count > 0)
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007537 vim_snprintf((char *)IObuff + STRLEN(IObuff), IOSIZE,
7538 _("(+%ld for BOM)"), bom_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007539#endif
7540 if (dict == NULL)
7541 {
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007542 /* Don't shorten this message, the user asked for it. */
Bram Moolenaared767a22016-01-03 22:49:16 +01007543 p = p_shm;
7544 p_shm = (char_u *)"";
7545 msg(IObuff);
7546 p_shm = p;
7547 }
7548 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007549#if defined(FEAT_EVAL)
Bram Moolenaared767a22016-01-03 22:49:16 +01007550 if (dict != NULL)
7551 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007552 dict_add_nr_str(dict, "words", word_count, NULL);
7553 dict_add_nr_str(dict, "chars", char_count, NULL);
7554 dict_add_nr_str(dict, "bytes", byte_count
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007555# ifdef FEAT_MBYTE
7556 + bom_count
7557# endif
7558 , NULL);
7559 dict_add_nr_str(dict, VIsual_active ? "visual_bytes" : "cursor_bytes",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007560 byte_count_cursor, NULL);
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007561 dict_add_nr_str(dict, VIsual_active ? "visual_chars" : "cursor_chars",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007562 char_count_cursor, NULL);
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007563 dict_add_nr_str(dict, VIsual_active ? "visual_words" : "cursor_words",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007564 word_count_cursor, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007565 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007566#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007567}