blob: 9ca5198d2733efcde2c13d86d9dd50079e05cd23 [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)
186 if (opchars[i][0] == char1 && opchars[i][1] == char2)
187 break;
188 return i;
189}
190
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191/*
192 * Return TRUE if operator "op" always works on whole lines.
193 */
194 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100195op_on_lines(int op)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196{
197 return opchars[op][2];
198}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199
200/*
201 * Get first operator command character.
202 * Returns 'g' or 'z' if there is another command character.
203 */
204 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100205get_op_char(int optype)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206{
207 return opchars[optype][0];
208}
209
210/*
211 * Get second operator command character.
212 */
213 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100214get_extra_op_char(int optype)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215{
216 return opchars[optype][1];
217}
218
219/*
220 * op_shift - handle a shift operation
221 */
222 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100223op_shift(oparg_T *oap, int curs_top, int amount)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224{
225 long i;
226 int first_char;
227 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228 int block_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229
230 if (u_save((linenr_T)(oap->start.lnum - 1),
231 (linenr_T)(oap->end.lnum + 1)) == FAIL)
232 return;
233
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234 if (oap->block_mode)
235 block_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236
237 for (i = oap->line_count; --i >= 0; )
238 {
239 first_char = *ml_get_curline();
240 if (first_char == NUL) /* empty line */
241 curwin->w_cursor.col = 0;
242#ifdef FEAT_VISUALEXTRA
243 else if (oap->block_mode)
244 shift_block(oap, amount);
245#endif
246 else
247 /* Move the line right if it doesn't start with '#', 'smartindent'
248 * isn't set or 'cindent' isn't set or '#' isn't in 'cino'. */
249#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
250 if (first_char != '#' || !preprocs_left())
251#endif
252 {
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000253 shift_line(oap->op_type == OP_LSHIFT, p_sr, amount, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254 }
255 ++curwin->w_cursor.lnum;
256 }
257
258 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259 if (oap->block_mode)
260 {
261 curwin->w_cursor.lnum = oap->start.lnum;
262 curwin->w_cursor.col = block_col;
263 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100264 else if (curs_top) /* put cursor on first line, for ">>" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265 {
266 curwin->w_cursor.lnum = oap->start.lnum;
267 beginline(BL_SOL | BL_FIX); /* shift_line() may have set cursor.col */
268 }
269 else
270 --curwin->w_cursor.lnum; /* put cursor on last line, for ":>" */
271
Bram Moolenaar54b2bfa2017-01-02 14:57:08 +0100272#ifdef FEAT_FOLDING
273 /* The cursor line is not in a closed fold */
274 foldOpenCursor();
275#endif
276
277
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278 if (oap->line_count > p_report)
279 {
280 if (oap->op_type == OP_RSHIFT)
281 s = (char_u *)">";
282 else
283 s = (char_u *)"<";
284 if (oap->line_count == 1)
285 {
286 if (amount == 1)
287 sprintf((char *)IObuff, _("1 line %sed 1 time"), s);
288 else
289 sprintf((char *)IObuff, _("1 line %sed %d times"), s, amount);
290 }
291 else
292 {
293 if (amount == 1)
294 sprintf((char *)IObuff, _("%ld lines %sed 1 time"),
295 oap->line_count, s);
296 else
297 sprintf((char *)IObuff, _("%ld lines %sed %d times"),
298 oap->line_count, s, amount);
299 }
300 msg(IObuff);
301 }
302
303 /*
304 * Set "'[" and "']" marks.
305 */
306 curbuf->b_op_start = oap->start;
307 curbuf->b_op_end.lnum = oap->end.lnum;
308 curbuf->b_op_end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
309 if (curbuf->b_op_end.col > 0)
310 --curbuf->b_op_end.col;
311}
312
313/*
314 * shift the current line one shiftwidth left (if left != 0) or right
315 * leaves cursor on first blank in the line
316 */
317 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100318shift_line(
319 int left,
320 int round,
321 int amount,
322 int call_changed_bytes) /* call changed_bytes() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323{
324 int count;
325 int i, j;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100326 int p_sw = (int)get_sw_value(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327
328 count = get_indent(); /* get current indent */
329
330 if (round) /* round off indent */
331 {
332 i = count / p_sw; /* number of p_sw rounded down */
333 j = count % p_sw; /* extra spaces */
334 if (j && left) /* first remove extra spaces */
335 --amount;
336 if (left)
337 {
338 i -= amount;
339 if (i < 0)
340 i = 0;
341 }
342 else
343 i += amount;
344 count = i * p_sw;
345 }
346 else /* original vi indent */
347 {
348 if (left)
349 {
350 count -= p_sw * amount;
351 if (count < 0)
352 count = 0;
353 }
354 else
355 count += p_sw * amount;
356 }
357
358 /* Set new indent */
359#ifdef FEAT_VREPLACE
360 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000361 change_indent(INDENT_SET, count, FALSE, NUL, call_changed_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 else
363#endif
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000364 (void)set_indent(count, call_changed_bytes ? SIN_CHANGED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365}
366
367#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
368/*
369 * Shift one line of the current block one shiftwidth right or left.
370 * Leaves cursor on first character in block.
371 */
372 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100373shift_block(oparg_T *oap, int amount)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374{
375 int left = (oap->op_type == OP_LSHIFT);
376 int oldstate = State;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000377 int total;
378 char_u *newp, *oldp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379 int oldcol = curwin->w_cursor.col;
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +0100380 int p_sw = (int)get_sw_value(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 int p_ts = (int)curbuf->b_p_ts;
382 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383 int incr;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000384 colnr_T ws_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385 int i = 0, j = 0;
386 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387#ifdef FEAT_RIGHTLEFT
388 int old_p_ri = p_ri;
389
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200390 p_ri = 0; /* don't want revins in indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391#endif
392
393 State = INSERT; /* don't want REPLACE for State */
394 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
395 if (bd.is_short)
396 return;
397
398 /* total is number of screen columns to be inserted/removed */
Bram Moolenaarbae5a172017-08-06 15:42:06 +0200399 total = (int)((unsigned)amount * (unsigned)p_sw);
400 if ((total / p_sw) != amount)
401 return; /* multiplication overflow */
402
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403 oldp = ml_get_curline();
404
405 if (!left)
406 {
407 /*
408 * 1. Get start vcol
409 * 2. Total ws vcols
410 * 3. Divvy into TABs & spp
411 * 4. Construct new string
412 */
413 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
414 ws_vcol = bd.start_vcol - bd.pre_whitesp;
415 if (bd.startspaces)
416 {
417#ifdef FEAT_MBYTE
418 if (has_mbyte)
Bram Moolenaar20b4f462016-03-05 17:25:39 +0100419 {
420 if ((*mb_ptr2len)(bd.textstart) == 1)
421 ++bd.textstart;
422 else
423 {
424 ws_vcol = 0;
425 bd.startspaces = 0;
426 }
427 }
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000428 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429#endif
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000430 ++bd.textstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 }
Bram Moolenaar1c465442017-03-12 20:10:05 +0100432 for ( ; VIM_ISWHITE(*bd.textstart); )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 {
Bram Moolenaar597a4222014-06-25 14:39:50 +0200434 /* TODO: is passing bd.textstart for start of the line OK? */
435 incr = lbr_chartabsize_adv(bd.textstart, &bd.textstart,
436 (colnr_T)(bd.start_vcol));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437 total += incr;
438 bd.start_vcol += incr;
439 }
440 /* OK, now total=all the VWS reqd, and textstart points at the 1st
441 * non-ws char in the block. */
442 if (!curbuf->b_p_et)
443 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
444 if (i)
445 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
446 else
447 j = total;
448 /* if we're splitting a TAB, allow for it */
449 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
450 len = (int)STRLEN(bd.textstart) + 1;
451 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
452 if (newp == NULL)
453 return;
454 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
455 mch_memmove(newp, oldp, (size_t)bd.textcol);
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200456 vim_memset(newp + bd.textcol, TAB, (size_t)i);
457 vim_memset(newp + bd.textcol + i, ' ', (size_t)j);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 /* the end */
459 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
460 }
461 else /* left */
462 {
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000463 colnr_T destination_col; /* column to which text in block will
464 be shifted */
465 char_u *verbatim_copy_end; /* end of the part of the line which is
466 copied verbatim */
467 colnr_T verbatim_copy_width;/* the (displayed) width of this part
468 of line */
469 unsigned fill; /* nr of spaces that replace a TAB */
470 unsigned new_line_len; /* the length of the line after the
471 block shift */
472 size_t block_space_width;
473 size_t shift_amount;
474 char_u *non_white = bd.textstart;
475 colnr_T non_white_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000477 /*
478 * Firstly, let's find the first non-whitespace character that is
479 * displayed after the block's start column and the character's column
480 * number. Also, let's calculate the width of all the whitespace
481 * characters that are displayed in the block and precede the searched
482 * non-whitespace character.
483 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000485 /* If "bd.startspaces" is set, "bd.textstart" points to the character,
486 * the part of which is displayed at the block's beginning. Let's start
487 * searching from the next character. */
488 if (bd.startspaces)
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100489 MB_PTR_ADV(non_white);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000490
491 /* The character's column is in "bd.start_vcol". */
492 non_white_col = bd.start_vcol;
493
Bram Moolenaar1c465442017-03-12 20:10:05 +0100494 while (VIM_ISWHITE(*non_white))
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000495 {
Bram Moolenaar597a4222014-06-25 14:39:50 +0200496 incr = lbr_chartabsize_adv(bd.textstart, &non_white, non_white_col);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000497 non_white_col += incr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 }
499
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000500 block_space_width = non_white_col - oap->start_vcol;
501 /* We will shift by "total" or "block_space_width", whichever is less.
502 */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000503 shift_amount = (block_space_width < (size_t)total
504 ? block_space_width : (size_t)total);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000505
506 /* The column to which we will shift the text. */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000507 destination_col = (colnr_T)(non_white_col - shift_amount);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000508
509 /* Now let's find out how much of the beginning of the line we can
510 * reuse without modification. */
511 verbatim_copy_end = bd.textstart;
512 verbatim_copy_width = bd.start_vcol;
513
514 /* If "bd.startspaces" is set, "bd.textstart" points to the character
515 * preceding the block. We have to subtract its width to obtain its
516 * column number. */
517 if (bd.startspaces)
518 verbatim_copy_width -= bd.start_char_vcols;
519 while (verbatim_copy_width < destination_col)
520 {
Bram Moolenaar597a4222014-06-25 14:39:50 +0200521 char_u *line = verbatim_copy_end;
522
523 /* TODO: is passing verbatim_copy_end for start of the line OK? */
524 incr = lbr_chartabsize(line, verbatim_copy_end,
525 verbatim_copy_width);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000526 if (verbatim_copy_width + incr > destination_col)
527 break;
528 verbatim_copy_width += incr;
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100529 MB_PTR_ADV(verbatim_copy_end);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000530 }
531
532 /* If "destination_col" is different from the width of the initial
533 * part of the line that will be copied, it means we encountered a tab
534 * character, which we will have to partly replace with spaces. */
535 fill = destination_col - verbatim_copy_width;
536
537 /* The replacement line will consist of:
538 * - the beginning of the original line up to "verbatim_copy_end",
539 * - "fill" number of spaces,
540 * - the rest of the line, pointed to by non_white. */
541 new_line_len = (unsigned)(verbatim_copy_end - oldp)
542 + fill
543 + (unsigned)STRLEN(non_white) + 1;
544
545 newp = alloc_check(new_line_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 if (newp == NULL)
547 return;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000548 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp));
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200549 vim_memset(newp + (verbatim_copy_end - oldp), ' ', (size_t)fill);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000550 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 }
552 /* replace the line */
553 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
554 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
555 State = oldstate;
556 curwin->w_cursor.col = oldcol;
557#ifdef FEAT_RIGHTLEFT
558 p_ri = old_p_ri;
559#endif
560}
561#endif
562
563#ifdef FEAT_VISUALEXTRA
564/*
565 * Insert string "s" (b_insert ? before : after) block :AKelly
566 * Caller must prepare for undo.
567 */
568 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100569block_insert(
570 oparg_T *oap,
571 char_u *s,
572 int b_insert,
573 struct block_def *bdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574{
575 int p_ts;
576 int count = 0; /* extra spaces to replace a cut TAB */
577 int spaces = 0; /* non-zero if cutting a TAB */
578 colnr_T offset; /* pointer along new line */
579 unsigned s_len; /* STRLEN(s) */
580 char_u *newp, *oldp; /* new, old lines */
581 linenr_T lnum; /* loop var */
582 int oldstate = State;
583
584 State = INSERT; /* don't want REPLACE for State */
585 s_len = (unsigned)STRLEN(s);
586
587 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
588 {
589 block_prep(oap, bdp, lnum, TRUE);
590 if (bdp->is_short && b_insert)
591 continue; /* OP_INSERT, line ends before block start */
592
593 oldp = ml_get(lnum);
594
595 if (b_insert)
596 {
597 p_ts = bdp->start_char_vcols;
598 spaces = bdp->startspaces;
599 if (spaces != 0)
600 count = p_ts - 1; /* we're cutting a TAB */
601 offset = bdp->textcol;
602 }
603 else /* append */
604 {
605 p_ts = bdp->end_char_vcols;
606 if (!bdp->is_short) /* spaces = padding after block */
607 {
608 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
609 if (spaces != 0)
610 count = p_ts - 1; /* we're cutting a TAB */
611 offset = bdp->textcol + bdp->textlen - (spaces != 0);
612 }
613 else /* spaces = padding to block edge */
614 {
615 /* if $ used, just append to EOL (ie spaces==0) */
616 if (!bdp->is_MAX)
617 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
618 count = spaces;
619 offset = bdp->textcol + bdp->textlen;
620 }
621 }
622
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200623#ifdef FEAT_MBYTE
624 if (has_mbyte && spaces > 0)
625 {
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100626 int off;
627
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200628 /* Avoid starting halfway a multi-byte character. */
629 if (b_insert)
630 {
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100631 off = (*mb_head_off)(oldp, oldp + offset + spaces);
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200632 }
633 else
634 {
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100635 off = (*mb_off_next)(oldp, oldp + offset);
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200636 offset += off;
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200637 }
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100638 spaces -= off;
639 count -= off;
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200640 }
641#endif
642
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
644 if (newp == NULL)
645 continue;
646
647 /* copy up to shifted part */
648 mch_memmove(newp, oldp, (size_t)(offset));
649 oldp += offset;
650
651 /* insert pre-padding */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200652 vim_memset(newp + offset, ' ', (size_t)spaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653
654 /* copy the new text */
655 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
656 offset += s_len;
657
658 if (spaces && !bdp->is_short)
659 {
660 /* insert post-padding */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200661 vim_memset(newp + offset + spaces, ' ', (size_t)(p_ts - spaces));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 /* We're splitting a TAB, don't copy it. */
663 oldp++;
664 /* We allowed for that TAB, remember this now */
665 count++;
666 }
667
668 if (spaces > 0)
669 offset += count;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000670 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671
672 ml_replace(lnum, newp, FALSE);
673
674 if (lnum == oap->end.lnum)
675 {
676 /* Set "']" mark to the end of the block instead of the end of
677 * the insert in the first line. */
678 curbuf->b_op_end.lnum = oap->end.lnum;
679 curbuf->b_op_end.col = offset;
680 }
681 } /* for all lnum */
682
683 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
684
685 State = oldstate;
686}
687#endif
688
689#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
690/*
691 * op_reindent - handle reindenting a block of lines.
692 */
693 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100694op_reindent(oparg_T *oap, int (*how)(void))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695{
696 long i;
697 char_u *l;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200698 int amount;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 linenr_T first_changed = 0;
700 linenr_T last_changed = 0;
701 linenr_T start_lnum = curwin->w_cursor.lnum;
702
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000703 /* Don't even try when 'modifiable' is off. */
704 if (!curbuf->b_p_ma)
705 {
706 EMSG(_(e_modifiable));
707 return;
708 }
709
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 for (i = oap->line_count; --i >= 0 && !got_int; )
711 {
712 /* it's a slow thing to do, so give feedback so there's no worry that
713 * the computer's just hung. */
714
715 if (i > 1
716 && (i % 50 == 0 || i == oap->line_count - 1)
717 && oap->line_count > p_report)
718 smsg((char_u *)_("%ld lines to indent... "), i);
719
720 /*
721 * Be vi-compatible: For lisp indenting the first line is not
722 * indented, unless there is only one line.
723 */
724#ifdef FEAT_LISP
725 if (i != oap->line_count - 1 || oap->line_count == 1
726 || how != get_lisp_indent)
727#endif
728 {
729 l = skipwhite(ml_get_curline());
730 if (*l == NUL) /* empty or blank line */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200731 amount = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 else
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200733 amount = how(); /* get the indent for this line */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200735 if (amount >= 0 && set_indent(amount, SIN_UNDO))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 {
737 /* did change the indent, call changed_lines() later */
738 if (first_changed == 0)
739 first_changed = curwin->w_cursor.lnum;
740 last_changed = curwin->w_cursor.lnum;
741 }
742 }
743 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +0000744 curwin->w_cursor.col = 0; /* make sure it's valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 }
746
747 /* put cursor on first non-blank of indented line */
748 curwin->w_cursor.lnum = start_lnum;
749 beginline(BL_SOL | BL_FIX);
750
751 /* Mark changed lines so that they will be redrawn. When Visual
752 * highlighting was present, need to continue until the last line. When
753 * there is no change still need to remove the Visual highlighting. */
754 if (last_changed != 0)
755 changed_lines(first_changed, 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756 oap->is_VIsual ? start_lnum + oap->line_count :
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 last_changed + 1, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 else if (oap->is_VIsual)
759 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760
761 if (oap->line_count > p_report)
762 {
763 i = oap->line_count - (i + 1);
764 if (i == 1)
765 MSG(_("1 line indented "));
766 else
767 smsg((char_u *)_("%ld lines indented "), i);
768 }
769 /* set '[ and '] marks */
770 curbuf->b_op_start = oap->start;
771 curbuf->b_op_end = oap->end;
772}
773#endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
774
775#if defined(FEAT_EVAL) || defined(PROTO)
776/*
777 * Keep the last expression line here, for repeating.
778 */
779static char_u *expr_line = NULL;
780
781/*
782 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
783 * Returns '=' when OK, NUL otherwise.
784 */
785 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100786get_expr_register(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787{
788 char_u *new_line;
789
790 new_line = getcmdline('=', 0L, 0);
791 if (new_line == NULL)
792 return NUL;
793 if (*new_line == NUL) /* use previous line */
794 vim_free(new_line);
795 else
796 set_expr_line(new_line);
797 return '=';
798}
799
800/*
801 * Set the expression for the '=' register.
802 * Argument must be an allocated string.
803 */
804 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100805set_expr_line(char_u *new_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806{
807 vim_free(expr_line);
808 expr_line = new_line;
809}
810
811/*
812 * Get the result of the '=' register expression.
813 * Returns a pointer to allocated memory, or NULL for failure.
814 */
815 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100816get_expr_line(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817{
818 char_u *expr_copy;
819 char_u *rv;
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000820 static int nested = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821
822 if (expr_line == NULL)
823 return NULL;
824
825 /* Make a copy of the expression, because evaluating it may cause it to be
826 * changed. */
827 expr_copy = vim_strsave(expr_line);
828 if (expr_copy == NULL)
829 return NULL;
830
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000831 /* When we are invoked recursively limit the evaluation to 10 levels.
832 * Then return the string as-is. */
833 if (nested >= 10)
834 return expr_copy;
835
836 ++nested;
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000837 rv = eval_to_string(expr_copy, NULL, TRUE);
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000838 --nested;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 vim_free(expr_copy);
840 return rv;
841}
Bram Moolenaarde934d72005-05-22 22:09:40 +0000842
843/*
844 * Get the '=' register expression itself, without evaluating it.
845 */
846 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100847get_expr_line_src(void)
Bram Moolenaarde934d72005-05-22 22:09:40 +0000848{
849 if (expr_line == NULL)
850 return NULL;
851 return vim_strsave(expr_line);
852}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853#endif /* FEAT_EVAL */
854
855/*
856 * Check if 'regname' is a valid name of a yank register.
857 * Note: There is no check for 0 (default register), caller should do this
858 */
859 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100860valid_yank_reg(
861 int regname,
862 int writing) /* if TRUE check for writable registers */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863{
864 if ( (regname > 0 && ASCII_ISALNUM(regname))
865 || (!writing && vim_strchr((char_u *)
866#ifdef FEAT_EVAL
Bram Moolenaar3b3a9492015-01-27 18:44:16 +0100867 "/.%:="
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868#else
Bram Moolenaar3b3a9492015-01-27 18:44:16 +0100869 "/.%:"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870#endif
871 , regname) != NULL)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +0100872 || regname == '#'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 || regname == '"'
874 || regname == '-'
875 || regname == '_'
876#ifdef FEAT_CLIPBOARD
877 || regname == '*'
878 || regname == '+'
879#endif
880#ifdef FEAT_DND
881 || (!writing && regname == '~')
882#endif
883 )
884 return TRUE;
885 return FALSE;
886}
887
888/*
889 * Set y_current and y_append, according to the value of "regname".
890 * Cannot handle the '_' register.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000891 * Must only be called with a valid register name!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 *
893 * If regname is 0 and writing, use register 0
894 * If regname is 0 and reading, use previous register
895 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000896 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100897get_yank_register(int regname, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898{
899 int i;
900
901 y_append = FALSE;
902 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
903 {
904 y_current = y_previous;
905 return;
906 }
907 i = regname;
908 if (VIM_ISDIGIT(i))
909 i -= '0';
910 else if (ASCII_ISLOWER(i))
911 i = CharOrdLow(i) + 10;
912 else if (ASCII_ISUPPER(i))
913 {
914 i = CharOrdUp(i) + 10;
915 y_append = TRUE;
916 }
917 else if (regname == '-')
918 i = DELETION_REGISTER;
919#ifdef FEAT_CLIPBOARD
920 /* When selection is not available, use register 0 instead of '*' */
921 else if (clip_star.available && regname == '*')
922 i = STAR_REGISTER;
923 /* When clipboard is not available, use register 0 instead of '+' */
924 else if (clip_plus.available && regname == '+')
925 i = PLUS_REGISTER;
926#endif
927#ifdef FEAT_DND
928 else if (!writing && regname == '~')
929 i = TILDE_REGISTER;
930#endif
931 else /* not 0-9, a-z, A-Z or '-': use register 0 */
932 i = 0;
933 y_current = &(y_regs[i]);
934 if (writing) /* remember the register we write into for do_put() */
935 y_previous = y_current;
936}
937
Bram Moolenaar8299df92004-07-10 09:47:34 +0000938#if defined(FEAT_CLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939/*
940 * When "regname" is a clipboard register, obtain the selection. If it's not
941 * available return zero, otherwise return "regname".
942 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000943 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100944may_get_selection(int regname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945{
946 if (regname == '*')
947 {
948 if (!clip_star.available)
949 regname = 0;
950 else
951 clip_get_selection(&clip_star);
952 }
953 else if (regname == '+')
954 {
955 if (!clip_plus.available)
956 regname = 0;
957 else
958 clip_get_selection(&clip_plus);
959 }
960 return regname;
961}
962#endif
963
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964/*
965 * Obtain the contents of a "normal" register. The register is made empty.
966 * The returned pointer has allocated memory, use put_register() later.
967 */
968 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100969get_register(
970 int name,
971 int copy) /* make a copy, if FALSE make register empty. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +0200973 yankreg_T *reg;
974 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975
976#ifdef FEAT_CLIPBOARD
977 /* When Visual area changed, may have to update selection. Obtain the
978 * selection too. */
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000979 if (name == '*' && clip_star.available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200981 if (clip_isautosel_star())
982 clip_update_selection(&clip_star);
983 may_get_selection(name);
984 }
985 if (name == '+' && clip_plus.available)
986 {
987 if (clip_isautosel_plus())
988 clip_update_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 may_get_selection(name);
990 }
991#endif
992
993 get_yank_register(name, 0);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +0200994 reg = (yankreg_T *)alloc((unsigned)sizeof(yankreg_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 if (reg != NULL)
996 {
997 *reg = *y_current;
998 if (copy)
999 {
1000 /* If we run out of memory some or all of the lines are empty. */
1001 if (reg->y_size == 0)
1002 reg->y_array = NULL;
1003 else
1004 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
1005 * reg->y_size));
1006 if (reg->y_array != NULL)
1007 {
1008 for (i = 0; i < reg->y_size; ++i)
1009 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
1010 }
1011 }
1012 else
1013 y_current->y_array = NULL;
1014 }
1015 return (void *)reg;
1016}
1017
1018/*
Bram Moolenaar0a307462007-12-01 20:13:05 +00001019 * Put "reg" into register "name". Free any previous contents and "reg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 */
1021 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001022put_register(int name, void *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023{
1024 get_yank_register(name, 0);
1025 free_yank_all();
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001026 *y_current = *(yankreg_T *)reg;
Bram Moolenaar0a307462007-12-01 20:13:05 +00001027 vim_free(reg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001029#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 /* Send text written to clipboard register to the clipboard. */
1031 may_set_selection();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001032#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001034
1035 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001036free_register(void *reg)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001037{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001038 yankreg_T tmp;
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001039
1040 tmp = *y_current;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001041 *y_current = *(yankreg_T *)reg;
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001042 free_yank_all();
1043 vim_free(reg);
1044 *y_current = tmp;
1045}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046
1047#if defined(FEAT_MOUSE) || defined(PROTO)
1048/*
1049 * return TRUE if the current yank register has type MLINE
1050 */
1051 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001052yank_register_mline(int regname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053{
1054 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1055 return FALSE;
1056 if (regname == '_') /* black hole is always empty */
1057 return FALSE;
1058 get_yank_register(regname, FALSE);
1059 return (y_current->y_type == MLINE);
1060}
1061#endif
1062
1063/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001064 * Start or stop recording into a yank register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 *
Bram Moolenaard55de222007-05-06 13:38:48 +00001066 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 */
1068 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001069do_record(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070{
Bram Moolenaard55de222007-05-06 13:38:48 +00001071 char_u *p;
1072 static int regname;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001073 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaard55de222007-05-06 13:38:48 +00001074 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075
1076 if (Recording == FALSE) /* start recording */
1077 {
1078 /* registers 0-9, a-z and " are allowed */
1079 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1080 retval = FAIL;
1081 else
1082 {
Bram Moolenaara0ed84a2015-11-19 17:56:13 +01001083 Recording = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 showmode();
1085 regname = c;
1086 retval = OK;
1087 }
1088 }
1089 else /* stop recording */
1090 {
1091 /*
Bram Moolenaard55de222007-05-06 13:38:48 +00001092 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1093 * needs to be removed again to put it in a register. exec_reg then
1094 * adds the escaping back later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095 */
1096 Recording = FALSE;
1097 MSG("");
1098 p = get_recorded();
1099 if (p == NULL)
1100 retval = FAIL;
1101 else
1102 {
Bram Moolenaar81b85872007-03-04 20:22:01 +00001103 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1104 vim_unescape_csi(p);
1105
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 /*
1107 * We don't want to change the default register here, so save and
1108 * restore the current register name.
1109 */
1110 old_y_previous = y_previous;
1111 old_y_current = y_current;
1112
1113 retval = stuff_yank(regname, p);
1114
1115 y_previous = old_y_previous;
1116 y_current = old_y_current;
1117 }
1118 }
1119 return retval;
1120}
1121
1122/*
1123 * Stuff string "p" into yank register "regname" as a single line (append if
1124 * uppercase). "p" must have been alloced.
1125 *
1126 * return FAIL for failure, OK otherwise
1127 */
1128 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001129stuff_yank(int regname, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130{
1131 char_u *lp;
1132 char_u **pp;
1133
1134 /* check for read-only register */
1135 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1136 {
1137 vim_free(p);
1138 return FAIL;
1139 }
1140 if (regname == '_') /* black hole: don't do anything */
1141 {
1142 vim_free(p);
1143 return OK;
1144 }
1145 get_yank_register(regname, TRUE);
1146 if (y_append && y_current->y_array != NULL)
1147 {
1148 pp = &(y_current->y_array[y_current->y_size - 1]);
1149 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1150 if (lp == NULL)
1151 {
1152 vim_free(p);
1153 return FAIL;
1154 }
1155 STRCPY(lp, *pp);
1156 STRCAT(lp, p);
1157 vim_free(p);
1158 vim_free(*pp);
1159 *pp = lp;
1160 }
1161 else
1162 {
1163 free_yank_all();
1164 if ((y_current->y_array =
1165 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1166 {
1167 vim_free(p);
1168 return FAIL;
1169 }
1170 y_current->y_array[0] = p;
1171 y_current->y_size = 1;
1172 y_current->y_type = MCHAR; /* used to be MLINE, why? */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001173#ifdef FEAT_VIMINFO
1174 y_current->y_time_set = vim_time();
1175#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 }
1177 return OK;
1178}
1179
Bram Moolenaar42b94362009-05-26 16:12:37 +00001180static int execreg_lastc = NUL;
1181
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182/*
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001183 * Execute a yank register: copy it into the stuff buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 *
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001185 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 */
1187 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001188do_execreg(
1189 int regname,
1190 int colon, /* insert ':' before each line */
1191 int addcr, /* always add '\n' to end of line */
1192 int silent) /* set "silent" flag in typeahead buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 long i;
1195 char_u *p;
1196 int retval = OK;
1197 int remap;
1198
1199 if (regname == '@') /* repeat previous one */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001200 {
Bram Moolenaar42b94362009-05-26 16:12:37 +00001201 if (execreg_lastc == NUL)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001202 {
1203 EMSG(_("E748: No previously used register"));
1204 return FAIL;
1205 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001206 regname = execreg_lastc;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001207 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 /* check for valid regname */
1209 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001210 {
1211 emsg_invreg(regname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 return FAIL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001213 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001214 execreg_lastc = regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215
1216#ifdef FEAT_CLIPBOARD
1217 regname = may_get_selection(regname);
1218#endif
1219
1220 if (regname == '_') /* black hole: don't stuff anything */
1221 return OK;
1222
1223#ifdef FEAT_CMDHIST
1224 if (regname == ':') /* use last command line */
1225 {
1226 if (last_cmdline == NULL)
1227 {
1228 EMSG(_(e_nolastcmd));
1229 return FAIL;
1230 }
1231 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
1232 new_last_cmdline = NULL;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001233 /* Escape all control characters with a CTRL-V */
1234 p = vim_strsave_escaped_ext(last_cmdline,
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001235 (char_u *)"\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037", Ctrl_V, FALSE);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001236 if (p != NULL)
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001237 {
1238 /* When in Visual mode "'<,'>" will be prepended to the command.
1239 * Remove it when it's already there. */
1240 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001241 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001242 else
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001243 retval = put_in_typebuf(p, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001244 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001245 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246 }
1247#endif
1248#ifdef FEAT_EVAL
1249 else if (regname == '=')
1250 {
1251 p = get_expr_line();
1252 if (p == NULL)
1253 return FAIL;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001254 retval = put_in_typebuf(p, TRUE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 vim_free(p);
1256 }
1257#endif
1258 else if (regname == '.') /* use last inserted text */
1259 {
1260 p = get_last_insert_save();
1261 if (p == NULL)
1262 {
1263 EMSG(_(e_noinstext));
1264 return FAIL;
1265 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001266 retval = put_in_typebuf(p, FALSE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 vim_free(p);
1268 }
1269 else
1270 {
1271 get_yank_register(regname, FALSE);
1272 if (y_current->y_array == NULL)
1273 return FAIL;
1274
1275 /* Disallow remaping for ":@r". */
1276 remap = colon ? REMAP_NONE : REMAP_YES;
1277
1278 /*
1279 * Insert lines into typeahead buffer, from last one to first one.
1280 */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001281 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 for (i = y_current->y_size; --i >= 0; )
1283 {
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001284 char_u *escaped;
1285
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 /* insert NL between lines and after last line if type is MLINE */
1287 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1288 || addcr)
1289 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001290 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 return FAIL;
1292 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001293 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1294 if (escaped == NULL)
1295 return FAIL;
1296 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1297 vim_free(escaped);
1298 if (retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 return FAIL;
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001300 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 == FAIL)
1302 return FAIL;
1303 }
1304 Exec_reg = TRUE; /* disable the 'q' command */
1305 }
1306 return retval;
1307}
1308
1309/*
1310 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1311 * used only after other typeahead has been processed.
1312 */
1313 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001314put_reedit_in_typebuf(int silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315{
1316 char_u buf[3];
1317
1318 if (restart_edit != NUL)
1319 {
1320 if (restart_edit == 'V')
1321 {
1322 buf[0] = 'g';
1323 buf[1] = 'R';
1324 buf[2] = NUL;
1325 }
1326 else
1327 {
1328 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1329 buf[1] = NUL;
1330 }
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001331 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 restart_edit = NUL;
1333 }
1334}
1335
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001336/*
1337 * Insert register contents "s" into the typeahead buffer, so that it will be
1338 * executed again.
1339 * When "esc" is TRUE it is to be taken literally: Escape CSI characters and
1340 * no remapping.
1341 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001343put_in_typebuf(
1344 char_u *s,
1345 int esc,
1346 int colon, /* add ':' before the line */
1347 int silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348{
1349 int retval = OK;
1350
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001351 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 if (colon)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001353 retval = ins_typebuf((char_u *)"\n", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 if (retval == OK)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001355 {
1356 char_u *p;
1357
1358 if (esc)
1359 p = vim_strsave_escape_csi(s);
1360 else
1361 p = s;
1362 if (p == NULL)
1363 retval = FAIL;
1364 else
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001365 retval = ins_typebuf(p, esc ? REMAP_NONE : REMAP_YES,
1366 0, TRUE, silent);
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001367 if (esc)
1368 vim_free(p);
1369 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 if (colon && retval == OK)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001371 retval = ins_typebuf((char_u *)":", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 return retval;
1373}
1374
1375/*
1376 * Insert a yank register: copy it into the Read buffer.
1377 * Used by CTRL-R command and middle mouse button in insert mode.
1378 *
1379 * return FAIL for failure, OK otherwise
1380 */
1381 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001382insert_reg(
1383 int regname,
1384 int literally) /* insert literally, not as if typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385{
1386 long i;
1387 int retval = OK;
1388 char_u *arg;
1389 int allocated;
1390
1391 /*
1392 * It is possible to get into an endless loop by having CTRL-R a in
1393 * register a and then, in insert mode, doing CTRL-R a.
1394 * If you hit CTRL-C, the loop will be broken here.
1395 */
1396 ui_breakcheck();
1397 if (got_int)
1398 return FAIL;
1399
1400 /* check for valid regname */
1401 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1402 return FAIL;
1403
1404#ifdef FEAT_CLIPBOARD
1405 regname = may_get_selection(regname);
1406#endif
1407
1408 if (regname == '.') /* insert last inserted text */
1409 retval = stuff_inserted(NUL, 1L, TRUE);
1410 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1411 {
1412 if (arg == NULL)
1413 return FAIL;
1414 stuffescaped(arg, literally);
1415 if (allocated)
1416 vim_free(arg);
1417 }
1418 else /* name or number register */
1419 {
1420 get_yank_register(regname, FALSE);
1421 if (y_current->y_array == NULL)
1422 retval = FAIL;
1423 else
1424 {
1425 for (i = 0; i < y_current->y_size; ++i)
1426 {
1427 stuffescaped(y_current->y_array[i], literally);
1428 /*
1429 * Insert a newline between lines and after last line if
1430 * y_type is MLINE.
1431 */
1432 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1433 stuffcharReadbuff('\n');
1434 }
1435 }
1436 }
1437
1438 return retval;
1439}
1440
1441/*
1442 * Stuff a string into the typeahead buffer, such that edit() will insert it
1443 * literally ("literally" TRUE) or interpret is as typed characters.
1444 */
1445 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001446stuffescaped(char_u *arg, int literally)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447{
1448 int c;
1449 char_u *start;
1450
1451 while (*arg != NUL)
1452 {
1453 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1454 * stuff K_SPECIAL to get the effect of a special key when "literally"
1455 * is TRUE. */
1456 start = arg;
1457 while ((*arg >= ' '
1458#ifndef EBCDIC
1459 && *arg < DEL /* EBCDIC: chars above space are normal */
1460#endif
1461 )
1462 || (*arg == K_SPECIAL && !literally))
1463 ++arg;
1464 if (arg > start)
1465 stuffReadbuffLen(start, (long)(arg - start));
1466
1467 /* stuff a single special character */
1468 if (*arg != NUL)
1469 {
1470#ifdef FEAT_MBYTE
1471 if (has_mbyte)
Bram Moolenaar3b1c4852010-07-31 17:59:29 +02001472 c = mb_cptr2char_adv(&arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 else
1474#endif
1475 c = *arg++;
1476 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1477 stuffcharReadbuff(Ctrl_V);
1478 stuffcharReadbuff(c);
1479 }
1480 }
1481}
1482
1483/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001484 * If "regname" is a special register, return TRUE and store a pointer to its
1485 * value in "argp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 */
Bram Moolenaar8299df92004-07-10 09:47:34 +00001487 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001488get_spec_reg(
1489 int regname,
1490 char_u **argp,
1491 int *allocated, /* return: TRUE when value was allocated */
1492 int errmsg) /* give error message when failing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493{
1494 int cnt;
1495
1496 *argp = NULL;
1497 *allocated = FALSE;
1498 switch (regname)
1499 {
1500 case '%': /* file name */
1501 if (errmsg)
1502 check_fname(); /* will give emsg if not set */
1503 *argp = curbuf->b_fname;
1504 return TRUE;
1505
1506 case '#': /* alternate file name */
1507 *argp = getaltfname(errmsg); /* may give emsg if not set */
1508 return TRUE;
1509
1510#ifdef FEAT_EVAL
1511 case '=': /* result of expression */
1512 *argp = get_expr_line();
1513 *allocated = TRUE;
1514 return TRUE;
1515#endif
1516
1517 case ':': /* last command line */
1518 if (last_cmdline == NULL && errmsg)
1519 EMSG(_(e_nolastcmd));
1520 *argp = last_cmdline;
1521 return TRUE;
1522
1523 case '/': /* last search-pattern */
1524 if (last_search_pat() == NULL && errmsg)
1525 EMSG(_(e_noprevre));
1526 *argp = last_search_pat();
1527 return TRUE;
1528
1529 case '.': /* last inserted text */
1530 *argp = get_last_insert_save();
1531 *allocated = TRUE;
1532 if (*argp == NULL && errmsg)
1533 EMSG(_(e_noinstext));
1534 return TRUE;
1535
1536#ifdef FEAT_SEARCHPATH
1537 case Ctrl_F: /* Filename under cursor */
1538 case Ctrl_P: /* Path under cursor, expand via "path" */
1539 if (!errmsg)
1540 return FALSE;
1541 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001542 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 *allocated = TRUE;
1544 return TRUE;
1545#endif
1546
1547 case Ctrl_W: /* word under cursor */
1548 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1549 if (!errmsg)
1550 return FALSE;
1551 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1552 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1553 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1554 *allocated = TRUE;
1555 return TRUE;
1556
1557 case '_': /* black hole: always empty */
1558 *argp = (char_u *)"";
1559 return TRUE;
1560 }
1561
1562 return FALSE;
1563}
1564
1565/*
Bram Moolenaar8299df92004-07-10 09:47:34 +00001566 * Paste a yank register into the command line.
1567 * Only for non-special registers.
1568 * Used by CTRL-R command in command-line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 * insert_reg() can't be used here, because special characters from the
1570 * register contents will be interpreted as commands.
1571 *
1572 * return FAIL for failure, OK otherwise
1573 */
1574 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001575cmdline_paste_reg(
1576 int regname,
1577 int literally, /* Insert text literally instead of "as typed" */
1578 int remcr) /* don't add CR characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579{
1580 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581
1582 get_yank_register(regname, FALSE);
1583 if (y_current->y_array == NULL)
1584 return FAIL;
1585
1586 for (i = 0; i < y_current->y_size; ++i)
1587 {
1588 cmdline_paste_str(y_current->y_array[i], literally);
1589
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001590 /* Insert ^M between lines and after last line if type is MLINE.
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01001591 * Don't do this when "remcr" is TRUE. */
1592 if ((y_current->y_type == MLINE || i < y_current->y_size - 1) && !remcr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 cmdline_paste_str((char_u *)"\r", literally);
1594
1595 /* Check for CTRL-C, in case someone tries to paste a few thousand
1596 * lines and gets bored. */
1597 ui_breakcheck();
1598 if (got_int)
1599 return FAIL;
1600 }
1601 return OK;
1602}
1603
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604#if defined(FEAT_CLIPBOARD) || defined(PROTO)
1605/*
1606 * Adjust the register name pointed to with "rp" for the clipboard being
1607 * used always and the clipboard being available.
1608 */
1609 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001610adjust_clip_reg(int *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611{
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001612 /* If no reg. specified, and "unnamed" or "unnamedplus" is in 'clipboard',
1613 * use '*' or '+' reg, respectively. "unnamedplus" prevails. */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001614 if (*rp == 0 && (clip_unnamed != 0 || clip_unnamed_saved != 0))
1615 {
1616 if (clip_unnamed != 0)
1617 *rp = ((clip_unnamed & CLIP_UNNAMED_PLUS) && clip_plus.available)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001618 ? '+' : '*';
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001619 else
1620 *rp = ((clip_unnamed_saved & CLIP_UNNAMED_PLUS) && clip_plus.available)
1621 ? '+' : '*';
1622 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623 if (!clip_star.available && *rp == '*')
1624 *rp = 0;
1625 if (!clip_plus.available && *rp == '+')
1626 *rp = 0;
1627}
1628#endif
1629
1630/*
Bram Moolenaara1891842017-02-04 21:34:31 +01001631 * Shift the delete registers: "9 is cleared, "8 becomes "9, etc.
1632 */
1633 void
1634shift_delete_registers()
1635{
1636 int n;
1637
1638 y_current = &y_regs[9];
1639 free_yank_all(); /* free register nine */
1640 for (n = 9; n > 1; --n)
1641 y_regs[n] = y_regs[n - 1];
Bram Moolenaar18d90b92017-06-27 15:39:14 +02001642 y_current = &y_regs[1];
1643 if (!y_append)
1644 y_previous = y_current;
Bram Moolenaara1891842017-02-04 21:34:31 +01001645 y_regs[1].y_array = NULL; /* set register one to empty */
1646}
1647
1648/*
Bram Moolenaard04b7502010-07-08 22:27:55 +02001649 * Handle a delete operation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 *
Bram Moolenaard04b7502010-07-08 22:27:55 +02001651 * Return FAIL if undo failed, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 */
1653 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001654op_delete(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655{
1656 int n;
1657 linenr_T lnum;
1658 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 char_u *newp, *oldp;
1660 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1662 int did_yank = FALSE;
Bram Moolenaar7c821302012-09-05 14:18:45 +02001663 int orig_regname = oap->regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664
1665 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1666 return OK;
1667
1668 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1669 if (oap->empty)
1670 return u_save_cursor();
1671
1672 if (!curbuf->b_p_ma)
1673 {
1674 EMSG(_(e_modifiable));
1675 return FAIL;
1676 }
1677
1678#ifdef FEAT_CLIPBOARD
1679 adjust_clip_reg(&oap->regname);
1680#endif
1681
1682#ifdef FEAT_MBYTE
1683 if (has_mbyte)
1684 mb_adjust_opend(oap);
1685#endif
1686
Bram Moolenaard04b7502010-07-08 22:27:55 +02001687 /*
1688 * Imitate the strange Vi behaviour: If the delete spans more than one
1689 * line and motion_type == MCHAR and the result is a blank line, make the
1690 * delete linewise. Don't do this for the change command or Visual mode.
1691 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692 if ( oap->motion_type == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001694 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 && oap->line_count > 1
Bram Moolenaar64a72302012-01-10 13:46:22 +01001696 && oap->motion_force == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 && oap->op_type == OP_DELETE)
1698 {
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001699 ptr = ml_get(oap->end.lnum) + oap->end.col;
1700 if (*ptr != NUL)
1701 ptr += oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 ptr = skipwhite(ptr);
1703 if (*ptr == NUL && inindent(0))
1704 oap->motion_type = MLINE;
1705 }
1706
Bram Moolenaard04b7502010-07-08 22:27:55 +02001707 /*
1708 * Check for trying to delete (e.g. "D") in an empty line.
1709 * Note: For the change operator it is ok.
1710 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 if ( oap->motion_type == MCHAR
1712 && oap->line_count == 1
1713 && oap->op_type == OP_DELETE
1714 && *ml_get(oap->start.lnum) == NUL)
1715 {
1716 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001717 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 * 'cpoptions' (Vi compatible).
1719 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001720#ifdef FEAT_VIRTUALEDIT
1721 if (virtual_op)
1722 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1723 * marks as if it happened. */
1724 goto setmarks;
1725#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1727 beep_flush();
1728 return OK;
1729 }
1730
Bram Moolenaard04b7502010-07-08 22:27:55 +02001731 /*
1732 * Do a yank of whatever we're about to delete.
1733 * If a yank register was specified, put the deleted text into that
1734 * register. For the black hole register '_' don't yank anything.
1735 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 if (oap->regname != '_')
1737 {
1738 if (oap->regname != 0)
1739 {
1740 /* check for read-only register */
1741 if (!valid_yank_reg(oap->regname, TRUE))
1742 {
1743 beep_flush();
1744 return OK;
1745 }
1746 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1747 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1748 did_yank = TRUE;
1749 }
1750
1751 /*
1752 * Put deleted text into register 1 and shift number registers if the
1753 * delete contains a line break, or when a regname has been specified.
Bram Moolenaar7c821302012-09-05 14:18:45 +02001754 * Use the register name from before adjust_clip_reg() may have
1755 * changed it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 */
Bram Moolenaar7c821302012-09-05 14:18:45 +02001757 if (orig_regname != 0 || oap->motion_type == MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 || oap->line_count > 1 || oap->use_reg_one)
1759 {
Bram Moolenaara1891842017-02-04 21:34:31 +01001760 shift_delete_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 if (op_yank(oap, TRUE, FALSE) == OK)
1762 did_yank = TRUE;
1763 }
1764
Bram Moolenaar84298db2012-04-20 13:46:08 +02001765 /* Yank into small delete register when no named register specified
1766 * and the delete is within one line. */
1767 if ((
1768#ifdef FEAT_CLIPBOARD
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001769 ((clip_unnamed & CLIP_UNNAMED) && oap->regname == '*') ||
1770 ((clip_unnamed & CLIP_UNNAMED_PLUS) && oap->regname == '+') ||
Bram Moolenaar84298db2012-04-20 13:46:08 +02001771#endif
1772 oap->regname == 0) && oap->motion_type != MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 && oap->line_count == 1)
1774 {
1775 oap->regname = '-';
1776 get_yank_register(oap->regname, TRUE);
1777 if (op_yank(oap, TRUE, FALSE) == OK)
1778 did_yank = TRUE;
1779 oap->regname = 0;
1780 }
1781
1782 /*
1783 * If there's too much stuff to fit in the yank register, then get a
1784 * confirmation before doing the delete. This is crude, but simple.
1785 * And it avoids doing a delete of something we can't put back if we
1786 * want.
1787 */
1788 if (!did_yank)
1789 {
1790 int msg_silent_save = msg_silent;
1791
1792 msg_silent = 0; /* must display the prompt */
1793 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1794 msg_silent = msg_silent_save;
1795 if (n != 'y')
1796 {
1797 EMSG(_(e_abort));
1798 return FAIL;
1799 }
1800 }
1801 }
1802
Bram Moolenaard04b7502010-07-08 22:27:55 +02001803 /*
1804 * block mode delete
1805 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 if (oap->block_mode)
1807 {
1808 if (u_save((linenr_T)(oap->start.lnum - 1),
1809 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1810 return FAIL;
1811
1812 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1813 {
1814 block_prep(oap, &bd, lnum, TRUE);
1815 if (bd.textlen == 0) /* nothing to delete */
1816 continue;
1817
1818 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1819 if (lnum == curwin->w_cursor.lnum)
1820 {
1821 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1822# ifdef FEAT_VIRTUALEDIT
1823 curwin->w_cursor.coladd = 0;
1824# endif
1825 }
1826
1827 /* n == number of chars deleted
1828 * If we delete a TAB, it may be replaced by several characters.
1829 * Thus the number of characters may increase!
1830 */
1831 n = bd.textlen - bd.startspaces - bd.endspaces;
1832 oldp = ml_get(lnum);
1833 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1834 if (newp == NULL)
1835 continue;
1836 /* copy up to deleted part */
1837 mch_memmove(newp, oldp, (size_t)bd.textcol);
1838 /* insert spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02001839 vim_memset(newp + bd.textcol, ' ',
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 (size_t)(bd.startspaces + bd.endspaces));
1841 /* copy the part after the deleted part */
1842 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001843 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 /* replace the line */
1845 ml_replace(lnum, newp, FALSE);
1846 }
1847
1848 check_cursor_col();
1849 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1850 oap->end.lnum + 1, 0L);
1851 oap->line_count = 0; /* no lines deleted */
1852 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001853 else if (oap->motion_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 {
1855 if (oap->op_type == OP_CHANGE)
1856 {
1857 /* Delete the lines except the first one. Temporarily move the
1858 * cursor to the next line. Save the current line number, if the
1859 * last line is deleted it may be changed.
1860 */
1861 if (oap->line_count > 1)
1862 {
1863 lnum = curwin->w_cursor.lnum;
1864 ++curwin->w_cursor.lnum;
1865 del_lines((long)(oap->line_count - 1), TRUE);
1866 curwin->w_cursor.lnum = lnum;
1867 }
1868 if (u_save_cursor() == FAIL)
1869 return FAIL;
1870 if (curbuf->b_p_ai) /* don't delete indent */
1871 {
1872 beginline(BL_WHITE); /* cursor on first non-white */
1873 did_ai = TRUE; /* delete the indent when ESC hit */
1874 ai_col = curwin->w_cursor.col;
1875 }
1876 else
1877 beginline(0); /* cursor in column 0 */
1878 truncate_line(FALSE); /* delete the rest of the line */
1879 /* leave cursor past last char in line */
1880 if (oap->line_count > 1)
1881 u_clearline(); /* "U" command not possible after "2cc" */
1882 }
1883 else
1884 {
1885 del_lines(oap->line_count, TRUE);
1886 beginline(BL_WHITE | BL_FIX);
1887 u_clearline(); /* "U" command not possible after "dd" */
1888 }
1889 }
1890 else
1891 {
1892#ifdef FEAT_VIRTUALEDIT
1893 if (virtual_op)
1894 {
1895 int endcol = 0;
1896
1897 /* For virtualedit: break the tabs that are partly included. */
1898 if (gchar_pos(&oap->start) == '\t')
1899 {
1900 if (u_save_cursor() == FAIL) /* save first line for undo */
1901 return FAIL;
1902 if (oap->line_count == 1)
1903 endcol = getviscol2(oap->end.col, oap->end.coladd);
1904 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1905 oap->start = curwin->w_cursor;
1906 if (oap->line_count == 1)
1907 {
1908 coladvance(endcol);
1909 oap->end.col = curwin->w_cursor.col;
1910 oap->end.coladd = curwin->w_cursor.coladd;
1911 curwin->w_cursor = oap->start;
1912 }
1913 }
1914
1915 /* Break a tab only when it's included in the area. */
1916 if (gchar_pos(&oap->end) == '\t'
1917 && (int)oap->end.coladd < oap->inclusive)
1918 {
1919 /* save last line for undo */
1920 if (u_save((linenr_T)(oap->end.lnum - 1),
1921 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1922 return FAIL;
1923 curwin->w_cursor = oap->end;
1924 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1925 oap->end = curwin->w_cursor;
1926 curwin->w_cursor = oap->start;
1927 }
1928 }
1929#endif
1930
1931 if (oap->line_count == 1) /* delete characters within one line */
1932 {
1933 if (u_save_cursor() == FAIL) /* save line for undo */
1934 return FAIL;
1935
1936 /* if 'cpoptions' contains '$', display '$' at end of change */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001937 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 && oap->op_type == OP_CHANGE
1939 && oap->end.lnum == curwin->w_cursor.lnum
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001940 && !oap->is_VIsual)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 display_dollar(oap->end.col - !oap->inclusive);
1942
1943 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
1944
1945#ifdef FEAT_VIRTUALEDIT
1946 if (virtual_op)
1947 {
1948 /* fix up things for virtualedit-delete:
1949 * break the tabs which are going to get in our way
1950 */
1951 char_u *curline = ml_get_curline();
1952 int len = (int)STRLEN(curline);
1953
1954 if (oap->end.coladd != 0
1955 && (int)oap->end.col >= len - 1
1956 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
1957 n++;
1958 /* Delete at least one char (e.g, when on a control char). */
1959 if (n == 0 && oap->start.coladd != oap->end.coladd)
1960 n = 1;
1961
1962 /* When deleted a char in the line, reset coladd. */
1963 if (gchar_cursor() != NUL)
1964 curwin->w_cursor.coladd = 0;
1965 }
1966#endif
Bram Moolenaard009e862015-06-09 20:20:03 +02001967 (void)del_bytes((long)n, !virtual_op,
1968 oap->op_type == OP_DELETE && !oap->is_VIsual);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 }
1970 else /* delete characters between lines */
1971 {
1972 pos_T curpos;
1973
1974 /* save deleted and changed lines for undo */
1975 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
1976 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
1977 return FAIL;
1978
1979 truncate_line(TRUE); /* delete from cursor to end of line */
1980
1981 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
1982 ++curwin->w_cursor.lnum;
1983 del_lines((long)(oap->line_count - 2), FALSE);
1984
Bram Moolenaard009e862015-06-09 20:20:03 +02001985 /* delete from start of line until op_end */
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001986 n = (oap->end.col + 1 - !oap->inclusive);
Bram Moolenaard009e862015-06-09 20:20:03 +02001987 curwin->w_cursor.col = 0;
1988 (void)del_bytes((long)n, !virtual_op,
1989 oap->op_type == OP_DELETE && !oap->is_VIsual);
1990 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
1991 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 }
1993 }
1994
1995 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
1996
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001997#ifdef FEAT_VIRTUALEDIT
1998setmarks:
1999#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 if (oap->block_mode)
2001 {
2002 curbuf->b_op_end.lnum = oap->end.lnum;
2003 curbuf->b_op_end.col = oap->start.col;
2004 }
2005 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 curbuf->b_op_end = oap->start;
2007 curbuf->b_op_start = oap->start;
2008
2009 return OK;
2010}
2011
2012#ifdef FEAT_MBYTE
2013/*
2014 * Adjust end of operating area for ending on a multi-byte character.
2015 * Used for deletion.
2016 */
2017 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002018mb_adjust_opend(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019{
2020 char_u *p;
2021
2022 if (oap->inclusive)
2023 {
2024 p = ml_get(oap->end.lnum);
2025 oap->end.col += mb_tail_off(p, p + oap->end.col);
2026 }
2027}
2028#endif
2029
2030#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2031/*
2032 * Replace a whole area with one character.
2033 */
2034 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002035op_replace(oparg_T *oap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036{
2037 int n, numc;
2038#ifdef FEAT_MBYTE
2039 int num_chars;
2040#endif
2041 char_u *newp, *oldp;
2042 size_t oldlen;
2043 struct block_def bd;
Bram Moolenaard9820532013-11-04 01:41:17 +01002044 char_u *after_p = NULL;
2045 int had_ctrl_v_cr = (c == -1 || c == -2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046
2047 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2048 return OK; /* nothing to do */
2049
Bram Moolenaard9820532013-11-04 01:41:17 +01002050 if (had_ctrl_v_cr)
2051 c = (c == -1 ? '\r' : '\n');
2052
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053#ifdef FEAT_MBYTE
2054 if (has_mbyte)
2055 mb_adjust_opend(oap);
2056#endif
2057
2058 if (u_save((linenr_T)(oap->start.lnum - 1),
2059 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2060 return FAIL;
2061
2062 /*
2063 * block mode replace
2064 */
2065 if (oap->block_mode)
2066 {
2067 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2068 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2069 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002070 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2072 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2073 continue; /* nothing to replace */
2074
2075 /* n == number of extra chars required
2076 * If we split a TAB, it may be replaced by several characters.
2077 * Thus the number of characters may increase!
2078 */
2079#ifdef FEAT_VIRTUALEDIT
2080 /* If the range starts in virtual space, count the initial
2081 * coladd offset as part of "startspaces" */
2082 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2083 {
2084 pos_T vpos;
2085
Bram Moolenaara1381de2009-11-03 15:44:21 +00002086 vpos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 getvpos(&vpos, oap->start_vcol);
2088 bd.startspaces += vpos.coladd;
2089 n = bd.startspaces;
2090 }
2091 else
2092#endif
2093 /* allow for pre spaces */
2094 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2095
2096 /* allow for post spp */
2097 n += (bd.endspaces
2098#ifdef FEAT_VIRTUALEDIT
2099 && !bd.is_oneChar
2100#endif
2101 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2102 /* Figure out how many characters to replace. */
2103 numc = oap->end_vcol - oap->start_vcol + 1;
2104 if (bd.is_short && (!virtual_op || bd.is_MAX))
2105 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2106
2107#ifdef FEAT_MBYTE
2108 /* A double-wide character can be replaced only up to half the
2109 * times. */
2110 if ((*mb_char2cells)(c) > 1)
2111 {
2112 if ((numc & 1) && !bd.is_short)
2113 {
2114 ++bd.endspaces;
2115 ++n;
2116 }
2117 numc = numc / 2;
2118 }
2119
2120 /* Compute bytes needed, move character count to num_chars. */
2121 num_chars = numc;
2122 numc *= (*mb_char2len)(c);
2123#endif
2124 /* oldlen includes textlen, so don't double count */
2125 n += numc - bd.textlen;
2126
2127 oldp = ml_get_curline();
2128 oldlen = STRLEN(oldp);
2129 newp = alloc_check((unsigned)oldlen + 1 + n);
2130 if (newp == NULL)
2131 continue;
2132 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2133 /* copy up to deleted part */
2134 mch_memmove(newp, oldp, (size_t)bd.textcol);
2135 oldp += bd.textcol + bd.textlen;
2136 /* insert pre-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002137 vim_memset(newp + bd.textcol, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
Bram Moolenaard9820532013-11-04 01:41:17 +01002139 /* -1/-2 is used for entering CR literally. */
2140 if (had_ctrl_v_cr || (c != '\r' && c != '\n'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002142#ifdef FEAT_MBYTE
2143 if (has_mbyte)
2144 {
2145 n = (int)STRLEN(newp);
2146 while (--num_chars >= 0)
2147 n += (*mb_char2bytes)(c, newp + n);
2148 }
2149 else
2150#endif
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002151 vim_memset(newp + STRLEN(newp), c, (size_t)numc);
Bram Moolenaard9820532013-11-04 01:41:17 +01002152 if (!bd.is_short)
2153 {
2154 /* insert post-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002155 vim_memset(newp + STRLEN(newp), ' ', (size_t)bd.endspaces);
Bram Moolenaard9820532013-11-04 01:41:17 +01002156 /* copy the part after the changed part */
2157 STRMOVE(newp + STRLEN(newp), oldp);
2158 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 }
2160 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002162 /* Replacing with \r or \n means splitting the line. */
Bram Moolenaarefe06f42013-11-11 23:17:39 +01002163 after_p = alloc_check(
2164 (unsigned)(oldlen + 1 + n - STRLEN(newp)));
Bram Moolenaard9820532013-11-04 01:41:17 +01002165 if (after_p != NULL)
2166 STRMOVE(after_p, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 }
2168 /* replace the line */
2169 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
Bram Moolenaard9820532013-11-04 01:41:17 +01002170 if (after_p != NULL)
2171 {
2172 ml_append(curwin->w_cursor.lnum++, after_p, 0, FALSE);
2173 appended_lines_mark(curwin->w_cursor.lnum, 1L);
2174 oap->end.lnum++;
2175 vim_free(after_p);
2176 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 }
2178 }
2179 else
2180 {
2181 /*
2182 * MCHAR and MLINE motion replace.
2183 */
2184 if (oap->motion_type == MLINE)
2185 {
2186 oap->start.col = 0;
2187 curwin->w_cursor.col = 0;
2188 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2189 if (oap->end.col)
2190 --oap->end.col;
2191 }
2192 else if (!oap->inclusive)
2193 dec(&(oap->end));
2194
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002195 while (LTOREQ_POS(curwin->w_cursor, oap->end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 {
2197 n = gchar_cursor();
2198 if (n != NUL)
2199 {
2200#ifdef FEAT_MBYTE
2201 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2202 {
2203 /* This is slow, but it handles replacing a single-byte
2204 * with a multi-byte and the other way around. */
Bram Moolenaardb813952013-03-07 18:50:57 +01002205 if (curwin->w_cursor.lnum == oap->end.lnum)
2206 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 n = State;
2208 State = REPLACE;
2209 ins_char(c);
2210 State = n;
2211 /* Backup to the replaced character. */
2212 dec_cursor();
2213 }
2214 else
2215#endif
2216 {
2217#ifdef FEAT_VIRTUALEDIT
2218 if (n == TAB)
2219 {
2220 int end_vcol = 0;
2221
2222 if (curwin->w_cursor.lnum == oap->end.lnum)
2223 {
2224 /* oap->end has to be recalculated when
2225 * the tab breaks */
2226 end_vcol = getviscol2(oap->end.col,
2227 oap->end.coladd);
2228 }
2229 coladvance_force(getviscol());
2230 if (curwin->w_cursor.lnum == oap->end.lnum)
2231 getvpos(&oap->end, end_vcol);
2232 }
2233#endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002234 PCHAR(curwin->w_cursor, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 }
2236 }
2237#ifdef FEAT_VIRTUALEDIT
2238 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2239 {
2240 int virtcols = oap->end.coladd;
2241
2242 if (curwin->w_cursor.lnum == oap->start.lnum
2243 && oap->start.col == oap->end.col && oap->start.coladd)
2244 virtcols -= oap->start.coladd;
2245
2246 /* oap->end has been trimmed so it's effectively inclusive;
2247 * as a result an extra +1 must be counted so we don't
2248 * trample the NUL byte. */
2249 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2250 curwin->w_cursor.col -= (virtcols + 1);
2251 for (; virtcols >= 0; virtcols--)
2252 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002253 PCHAR(curwin->w_cursor, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 if (inc(&curwin->w_cursor) == -1)
2255 break;
2256 }
2257 }
2258#endif
2259
2260 /* Advance to next character, stop at the end of the file. */
2261 if (inc_cursor() == -1)
2262 break;
2263 }
2264 }
2265
2266 curwin->w_cursor = oap->start;
2267 check_cursor();
2268 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2269
2270 /* Set "'[" and "']" marks. */
2271 curbuf->b_op_start = oap->start;
2272 curbuf->b_op_end = oap->end;
2273
2274 return OK;
2275}
2276#endif
2277
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002278static int swapchars(int op_type, pos_T *pos, int length);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002279
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280/*
2281 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2282 */
2283 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002284op_tilde(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285{
2286 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 struct block_def bd;
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002288 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289
2290 if (u_save((linenr_T)(oap->start.lnum - 1),
2291 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2292 return;
2293
2294 pos = oap->start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 if (oap->block_mode) /* Visual block mode */
2296 {
2297 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2298 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002299 int one_change;
2300
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 block_prep(oap, &bd, pos.lnum, FALSE);
2302 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002303 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2304 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002305
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002306#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002307 if (netbeans_active() && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 {
2309 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2310
Bram Moolenaar009b2592004-10-24 19:18:58 +00002311 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2312 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002314 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002316#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 }
2318 if (did_change)
2319 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2320 }
2321 else /* not block mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 {
2323 if (oap->motion_type == MLINE)
2324 {
2325 oap->start.col = 0;
2326 pos.col = 0;
2327 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2328 if (oap->end.col)
2329 --oap->end.col;
2330 }
2331 else if (!oap->inclusive)
2332 dec(&(oap->end));
2333
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002334 if (pos.lnum == oap->end.lnum)
2335 did_change = swapchars(oap->op_type, &pos,
2336 oap->end.col - pos.col + 1);
2337 else
2338 for (;;)
2339 {
2340 did_change |= swapchars(oap->op_type, &pos,
2341 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2342 (int)STRLEN(ml_get_pos(&pos)));
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002343 if (LTOREQ_POS(oap->end, pos) || inc(&pos) == -1)
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002344 break;
2345 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 if (did_change)
2347 {
2348 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2349 0L);
2350#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002351 if (netbeans_active() && did_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 {
2353 char_u *ptr;
2354 int count;
2355
2356 pos = oap->start;
2357 while (pos.lnum < oap->end.lnum)
2358 {
2359 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002360 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002361 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002363 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 pos.col = 0;
2365 pos.lnum++;
2366 }
2367 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2368 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002369 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002371 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 }
2373#endif
2374 }
2375 }
2376
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 if (!did_change && oap->is_VIsual)
2378 /* No change: need to remove the Visual selection */
2379 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380
2381 /*
2382 * Set '[ and '] marks.
2383 */
2384 curbuf->b_op_start = oap->start;
2385 curbuf->b_op_end = oap->end;
2386
2387 if (oap->line_count > p_report)
2388 {
2389 if (oap->line_count == 1)
2390 MSG(_("1 line changed"));
2391 else
2392 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2393 }
2394}
2395
2396/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002397 * Invoke swapchar() on "length" bytes at position "pos".
2398 * "pos" is advanced to just after the changed characters.
2399 * "length" is rounded up to include the whole last multi-byte character.
2400 * Also works correctly when the number of bytes changes.
2401 * Returns TRUE if some character was changed.
2402 */
2403 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002404swapchars(int op_type, pos_T *pos, int length)
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002405{
2406 int todo;
2407 int did_change = 0;
2408
2409 for (todo = length; todo > 0; --todo)
2410 {
2411# ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002412 if (has_mbyte)
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002413 {
2414 int len = (*mb_ptr2len)(ml_get_pos(pos));
2415
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002416 /* we're counting bytes, not characters */
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002417 if (len > 0)
2418 todo -= len - 1;
2419 }
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002420# endif
2421 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002422 if (inc(pos) == -1) /* at end of file */
2423 break;
2424 }
2425 return did_change;
2426}
2427
2428/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 * If op_type == OP_UPPER: make uppercase,
2430 * if op_type == OP_LOWER: make lowercase,
2431 * if op_type == OP_ROT13: do rot13 encoding,
2432 * else swap case of character at 'pos'
2433 * returns TRUE when something actually changed.
2434 */
2435 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002436swapchar(int op_type, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437{
2438 int c;
2439 int nc;
2440
2441 c = gchar_pos(pos);
2442
2443 /* Only do rot13 encoding for ASCII characters. */
2444 if (c >= 0x80 && op_type == OP_ROT13)
2445 return FALSE;
2446
2447#ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002448 if (op_type == OP_UPPER && c == 0xdf
2449 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002450 {
2451 pos_T sp = curwin->w_cursor;
2452
2453 /* Special handling of German sharp s: change to "SS". */
2454 curwin->w_cursor = *pos;
2455 del_char(FALSE);
2456 ins_char('S');
2457 ins_char('S');
2458 curwin->w_cursor = sp;
2459 inc(pos);
2460 }
2461
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2463 return FALSE;
2464#endif
2465 nc = c;
2466 if (MB_ISLOWER(c))
2467 {
2468 if (op_type == OP_ROT13)
2469 nc = ROT13(c, 'a');
2470 else if (op_type != OP_LOWER)
2471 nc = MB_TOUPPER(c);
2472 }
2473 else if (MB_ISUPPER(c))
2474 {
2475 if (op_type == OP_ROT13)
2476 nc = ROT13(c, 'A');
2477 else if (op_type != OP_UPPER)
2478 nc = MB_TOLOWER(c);
2479 }
2480 if (nc != c)
2481 {
2482#ifdef FEAT_MBYTE
2483 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2484 {
2485 pos_T sp = curwin->w_cursor;
2486
2487 curwin->w_cursor = *pos;
Bram Moolenaard1cb65e2010-08-01 14:22:48 +02002488 /* don't use del_char(), it also removes composing chars */
2489 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 ins_char(nc);
2491 curwin->w_cursor = sp;
2492 }
2493 else
2494#endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002495 PCHAR(*pos, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 return TRUE;
2497 }
2498 return FALSE;
2499}
2500
2501#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2502/*
2503 * op_insert - Insert and append operators for Visual mode.
2504 */
2505 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002506op_insert(oparg_T *oap, long count1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507{
2508 long ins_len, pre_textlen = 0;
2509 char_u *firstline, *ins_text;
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002510 colnr_T ind_pre, ind_post;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511 struct block_def bd;
2512 int i;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002513 pos_T t1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514
2515 /* edit() changes this - record it for OP_APPEND */
2516 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2517
2518 /* vis block is still marked. Get rid of it now. */
2519 curwin->w_cursor.lnum = oap->start.lnum;
2520 update_screen(INVERTED);
2521
2522 if (oap->block_mode)
2523 {
2524#ifdef FEAT_VIRTUALEDIT
2525 /* When 'virtualedit' is used, need to insert the extra spaces before
2526 * doing block_prep(). When only "block" is used, virtual edit is
2527 * already disabled, but still need it when calling
2528 * coladvance_force(). */
2529 if (curwin->w_cursor.coladd > 0)
2530 {
2531 int old_ve_flags = ve_flags;
2532
2533 ve_flags = VE_ALL;
2534 if (u_save_cursor() == FAIL)
2535 return;
2536 coladvance_force(oap->op_type == OP_APPEND
2537 ? oap->end_vcol + 1 : getviscol());
2538 if (oap->op_type == OP_APPEND)
2539 --curwin->w_cursor.col;
2540 ve_flags = old_ve_flags;
2541 }
2542#endif
2543 /* Get the info about the block before entering the text */
2544 block_prep(oap, &bd, oap->start.lnum, TRUE);
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002545 /* Get indent information */
2546 ind_pre = (colnr_T)getwhitecols_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 firstline = ml_get(oap->start.lnum) + bd.textcol;
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002548
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 if (oap->op_type == OP_APPEND)
2550 firstline += bd.textlen;
2551 pre_textlen = (long)STRLEN(firstline);
2552 }
2553
2554 if (oap->op_type == OP_APPEND)
2555 {
2556 if (oap->block_mode
2557#ifdef FEAT_VIRTUALEDIT
2558 && curwin->w_cursor.coladd == 0
2559#endif
2560 )
2561 {
2562 /* Move the cursor to the character right of the block. */
2563 curwin->w_set_curswant = TRUE;
2564 while (*ml_get_cursor() != NUL
2565 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2566 ++curwin->w_cursor.col;
2567 if (bd.is_short && !bd.is_MAX)
2568 {
2569 /* First line was too short, make it longer and adjust the
2570 * values in "bd". */
2571 if (u_save_cursor() == FAIL)
2572 return;
2573 for (i = 0; i < bd.endspaces; ++i)
2574 ins_char(' ');
2575 bd.textlen += bd.endspaces;
2576 }
2577 }
2578 else
2579 {
2580 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002581 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582
2583 /* Works just like an 'i'nsert on the next character. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002584 if (!LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 && oap->start_vcol != oap->end_vcol)
2586 inc_cursor();
2587 }
2588 }
2589
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002590 t1 = oap->start;
Bram Moolenaar23fa81d2017-02-01 21:50:21 +01002591 (void)edit(NUL, FALSE, (linenr_T)count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002593 /* When a tab was inserted, and the characters in front of the tab
2594 * have been converted to a tab as well, the column of the cursor
2595 * might have actually been reduced, so need to adjust here. */
2596 if (t1.lnum == curbuf->b_op_start_orig.lnum
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002597 && LT_POS(curbuf->b_op_start_orig, t1))
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002598 oap->start = curbuf->b_op_start_orig;
2599
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002600 /* if indent kicked in, the firstline might have changed
2601 * but only do that, if the indent actually increased */
2602 ind_post = (colnr_T)getwhitecols_curline();
2603 if (curbuf->b_op_start.col > ind_pre && ind_post > ind_pre)
2604 {
2605 bd.textcol += ind_post - ind_pre;
2606 bd.start_vcol += ind_post - ind_pre;
2607 }
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002608 /* If user has moved off this line, we don't know what to do, so do
2609 * nothing.
2610 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2611 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 return;
2613
2614 if (oap->block_mode)
2615 {
2616 struct block_def bd2;
2617
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002618 /* The user may have moved the cursor before inserting something, try
2619 * to adjust the block for that. */
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002620 if (oap->start.lnum == curbuf->b_op_start_orig.lnum && !bd.is_MAX)
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002621 {
2622 if (oap->op_type == OP_INSERT
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002623 && oap->start.col
2624#ifdef FEAT_VIRTUALEDIT
2625 + oap->start.coladd
2626#endif
2627 != curbuf->b_op_start_orig.col
2628#ifdef FEAT_VIRTUALEDIT
2629 + curbuf->b_op_start_orig.coladd
2630#endif
2631 )
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002632 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002633 int t = getviscol2(curbuf->b_op_start_orig.col,
2634 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002635 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002636 pre_textlen -= t - oap->start_vcol;
2637 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002638 }
2639 else if (oap->op_type == OP_APPEND
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002640 && oap->end.col
2641#ifdef FEAT_VIRTUALEDIT
2642 + oap->end.coladd
2643#endif
2644 >= curbuf->b_op_start_orig.col
2645#ifdef FEAT_VIRTUALEDIT
2646 + curbuf->b_op_start_orig.coladd
2647#endif
2648 )
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002649 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002650 int t = getviscol2(curbuf->b_op_start_orig.col,
2651 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002652 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002653 /* reset pre_textlen to the value of OP_INSERT */
2654 pre_textlen += bd.textlen;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002655 pre_textlen -= t - oap->start_vcol;
2656 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002657 oap->op_type = OP_INSERT;
2658 }
2659 }
2660
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 /*
2662 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002663 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 * Don't do this when "$" used, end-of-line will have changed.
2665 */
2666 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2667 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2668 {
2669 if (oap->op_type == OP_APPEND)
2670 {
2671 pre_textlen += bd2.textlen - bd.textlen;
2672 if (bd2.endspaces)
2673 --bd2.textlen;
2674 }
2675 bd.textcol = bd2.textcol;
2676 bd.textlen = bd2.textlen;
2677 }
2678
2679 /*
2680 * Subsequent calls to ml_get() flush the firstline data - take a
2681 * copy of the required string.
2682 */
2683 firstline = ml_get(oap->start.lnum) + bd.textcol;
2684 if (oap->op_type == OP_APPEND)
2685 firstline += bd.textlen;
Bram Moolenaar5e4b9e92012-03-23 14:16:23 +01002686 if (pre_textlen >= 0
2687 && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 {
2689 ins_text = vim_strnsave(firstline, (int)ins_len);
2690 if (ins_text != NULL)
2691 {
2692 /* block handled here */
2693 if (u_save(oap->start.lnum,
2694 (linenr_T)(oap->end.lnum + 1)) == OK)
2695 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2696 &bd);
2697
2698 curwin->w_cursor.col = oap->start.col;
2699 check_cursor();
2700 vim_free(ins_text);
2701 }
2702 }
2703 }
2704}
2705#endif
2706
2707/*
2708 * op_change - handle a change operation
2709 *
2710 * return TRUE if edit() returns because of a CTRL-O command
2711 */
2712 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002713op_change(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714{
2715 colnr_T l;
2716 int retval;
2717#ifdef FEAT_VISUALEXTRA
2718 long offset;
2719 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002720 long ins_len;
2721 long pre_textlen = 0;
2722 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 char_u *firstline;
2724 char_u *ins_text, *newp, *oldp;
2725 struct block_def bd;
2726#endif
2727
2728 l = oap->start.col;
2729 if (oap->motion_type == MLINE)
2730 {
2731 l = 0;
2732#ifdef FEAT_SMARTINDENT
2733 if (!p_paste && curbuf->b_p_si
2734# ifdef FEAT_CINDENT
2735 && !curbuf->b_p_cin
2736# endif
2737 )
2738 can_si = TRUE; /* It's like opening a new line, do si */
2739#endif
2740 }
2741
2742 /* First delete the text in the region. In an empty buffer only need to
2743 * save for undo */
2744 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2745 {
2746 if (u_save_cursor() == FAIL)
2747 return FALSE;
2748 }
2749 else if (op_delete(oap) == FAIL)
2750 return FALSE;
2751
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002752 if ((l > curwin->w_cursor.col) && !LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753 && !virtual_op)
2754 inc_cursor();
2755
2756#ifdef FEAT_VISUALEXTRA
2757 /* check for still on same line (<CR> in inserted text meaningless) */
2758 /* skip blank lines too */
2759 if (oap->block_mode)
2760 {
2761# ifdef FEAT_VIRTUALEDIT
2762 /* Add spaces before getting the current line length. */
2763 if (virtual_op && (curwin->w_cursor.coladd > 0
2764 || gchar_cursor() == NUL))
2765 coladvance_force(getviscol());
2766# endif
Bram Moolenaar53241da2007-09-13 20:41:32 +00002767 firstline = ml_get(oap->start.lnum);
2768 pre_textlen = (long)STRLEN(firstline);
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002769 pre_indent = (long)getwhitecols(firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770 bd.textcol = curwin->w_cursor.col;
2771 }
2772#endif
2773
2774#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2775 if (oap->motion_type == MLINE)
2776 fix_indent();
2777#endif
2778
2779 retval = edit(NUL, FALSE, (linenr_T)1);
2780
2781#ifdef FEAT_VISUALEXTRA
2782 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002783 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002785 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002787 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002789 /* Auto-indenting may have changed the indent. If the cursor was past
2790 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002792 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 {
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002794 long new_indent = (long)getwhitecols(firstline);
Bram Moolenaar53241da2007-09-13 20:41:32 +00002795
2796 pre_textlen += new_indent - pre_indent;
2797 bd.textcol += new_indent - pre_indent;
2798 }
2799
2800 ins_len = (long)STRLEN(firstline) - pre_textlen;
2801 if (ins_len > 0)
2802 {
2803 /* Subsequent calls to ml_get() flush the firstline data - take a
2804 * copy of the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2806 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002807 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2809 linenr++)
2810 {
2811 block_prep(oap, &bd, linenr, TRUE);
2812 if (!bd.is_short || virtual_op)
2813 {
2814# ifdef FEAT_VIRTUALEDIT
2815 pos_T vpos;
2816
2817 /* If the block starts in virtual space, count the
2818 * initial coladd offset as part of "startspaces" */
2819 if (bd.is_short)
2820 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002821 vpos.lnum = linenr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 (void)getvpos(&vpos, oap->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 }
2824 else
2825 vpos.coladd = 0;
2826# endif
2827 oldp = ml_get(linenr);
2828 newp = alloc_check((unsigned)(STRLEN(oldp)
2829# ifdef FEAT_VIRTUALEDIT
2830 + vpos.coladd
2831# endif
2832 + ins_len + 1));
2833 if (newp == NULL)
2834 continue;
2835 /* copy up to block start */
2836 mch_memmove(newp, oldp, (size_t)bd.textcol);
2837 offset = bd.textcol;
2838# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002839 vim_memset(newp + offset, ' ', (size_t)vpos.coladd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 offset += vpos.coladd;
2841# endif
2842 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2843 offset += ins_len;
2844 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002845 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 ml_replace(linenr, newp, FALSE);
2847 }
2848 }
2849 check_cursor();
2850
2851 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2852 }
2853 vim_free(ins_text);
2854 }
2855 }
2856#endif
2857
2858 return retval;
2859}
2860
2861/*
2862 * set all the yank registers to empty (called from main())
2863 */
2864 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002865init_yank(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866{
2867 int i;
2868
2869 for (i = 0; i < NUM_REGISTERS; ++i)
2870 y_regs[i].y_array = NULL;
2871}
2872
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002873#if defined(EXITFREE) || defined(PROTO)
2874 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002875clear_registers(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002876{
2877 int i;
2878
2879 for (i = 0; i < NUM_REGISTERS; ++i)
2880 {
2881 y_current = &y_regs[i];
2882 if (y_current->y_array != NULL)
2883 free_yank_all();
2884 }
2885}
2886#endif
2887
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888/*
2889 * Free "n" lines from the current yank register.
2890 * Called for normal freeing and in case of error.
2891 */
2892 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002893free_yank(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894{
2895 if (y_current->y_array != NULL)
2896 {
2897 long i;
2898
2899 for (i = n; --i >= 0; )
2900 {
2901#ifdef AMIGA /* only for very slow machines */
2902 if ((i & 1023) == 1023) /* this may take a while */
2903 {
2904 /*
2905 * This message should never cause a hit-return message.
2906 * Overwrite this message with any next message.
2907 */
2908 ++no_wait_return;
2909 smsg((char_u *)_("freeing %ld lines"), i + 1);
2910 --no_wait_return;
2911 msg_didout = FALSE;
2912 msg_col = 0;
2913 }
2914#endif
2915 vim_free(y_current->y_array[i]);
2916 }
2917 vim_free(y_current->y_array);
2918 y_current->y_array = NULL;
2919#ifdef AMIGA
2920 if (n >= 1000)
2921 MSG("");
2922#endif
2923 }
2924}
2925
2926 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002927free_yank_all(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928{
2929 free_yank(y_current->y_size);
2930}
2931
2932/*
2933 * Yank the text between "oap->start" and "oap->end" into a yank register.
2934 * If we are to append (uppercase register), we first yank into a new yank
2935 * register and then concatenate the old and the new one (so we keep the old
2936 * one in case of out-of-memory).
2937 *
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02002938 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939 */
2940 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002941op_yank(oparg_T *oap, int deleting, int mess)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942{
2943 long y_idx; /* index in y_array[] */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002944 yankreg_T *curr; /* copy of y_current */
2945 yankreg_T newreg; /* new yank register when appending */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 char_u **new_ptr;
2947 linenr_T lnum; /* current line number */
2948 long j;
2949 int yanktype = oap->motion_type;
2950 long yanklines = oap->line_count;
2951 linenr_T yankendlnum = oap->end.lnum;
2952 char_u *p;
2953 char_u *pnew;
2954 struct block_def bd;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01002955#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01002956 int did_star = FALSE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01002957#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958
2959 /* check for read-only register */
2960 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
2961 {
2962 beep_flush();
2963 return FAIL;
2964 }
2965 if (oap->regname == '_') /* black hole: nothing to do */
2966 return OK;
2967
2968#ifdef FEAT_CLIPBOARD
2969 if (!clip_star.available && oap->regname == '*')
2970 oap->regname = 0;
2971 else if (!clip_plus.available && oap->regname == '+')
2972 oap->regname = 0;
2973#endif
2974
2975 if (!deleting) /* op_delete() already set y_current */
2976 get_yank_register(oap->regname, TRUE);
2977
2978 curr = y_current;
2979 /* append to existing contents */
2980 if (y_append && y_current->y_array != NULL)
2981 y_current = &newreg;
2982 else
2983 free_yank_all(); /* free previously yanked lines */
2984
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00002985 /*
2986 * If the cursor was in column 1 before and after the movement, and the
2987 * operator is not inclusive, the yank is always linewise.
2988 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 if ( oap->motion_type == MCHAR
2990 && oap->start.col == 0
2991 && !oap->inclusive
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00002993 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 && oap->end.col == 0
2995 && yanklines > 1)
2996 {
2997 yanktype = MLINE;
2998 --yankendlnum;
2999 --yanklines;
3000 }
3001
3002 y_current->y_size = yanklines;
3003 y_current->y_type = yanktype; /* set the yank register type */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004 y_current->y_width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
3006 yanklines), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 if (y_current->y_array == NULL)
3008 {
3009 y_current = curr;
3010 return FAIL;
3011 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003012#ifdef FEAT_VIMINFO
3013 y_current->y_time_set = vim_time();
3014#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015
3016 y_idx = 0;
3017 lnum = oap->start.lnum;
3018
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 if (oap->block_mode)
3020 {
3021 /* Visual block mode */
3022 y_current->y_type = MBLOCK; /* set the yank register type */
3023 y_current->y_width = oap->end_vcol - oap->start_vcol;
3024
3025 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
3026 y_current->y_width--;
3027 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028
3029 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
3030 {
3031 switch (y_current->y_type)
3032 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 case MBLOCK:
3034 block_prep(oap, &bd, lnum, FALSE);
3035 if (yank_copy_line(&bd, y_idx) == FAIL)
3036 goto fail;
3037 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038
3039 case MLINE:
3040 if ((y_current->y_array[y_idx] =
3041 vim_strsave(ml_get(lnum))) == NULL)
3042 goto fail;
3043 break;
3044
3045 case MCHAR:
3046 {
3047 colnr_T startcol = 0, endcol = MAXCOL;
3048#ifdef FEAT_VIRTUALEDIT
3049 int is_oneChar = FALSE;
3050 colnr_T cs, ce;
3051#endif
3052 p = ml_get(lnum);
3053 bd.startspaces = 0;
3054 bd.endspaces = 0;
3055
3056 if (lnum == oap->start.lnum)
3057 {
3058 startcol = oap->start.col;
3059#ifdef FEAT_VIRTUALEDIT
3060 if (virtual_op)
3061 {
3062 getvcol(curwin, &oap->start, &cs, NULL, &ce);
3063 if (ce != cs && oap->start.coladd > 0)
3064 {
3065 /* Part of a tab selected -- but don't
3066 * double-count it. */
3067 bd.startspaces = (ce - cs + 1)
3068 - oap->start.coladd;
3069 startcol++;
3070 }
3071 }
3072#endif
3073 }
3074
3075 if (lnum == oap->end.lnum)
3076 {
3077 endcol = oap->end.col;
3078#ifdef FEAT_VIRTUALEDIT
3079 if (virtual_op)
3080 {
3081 getvcol(curwin, &oap->end, &cs, NULL, &ce);
3082 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
3083# ifdef FEAT_MBYTE
3084 /* Don't add space for double-wide
3085 * char; endcol will be on last byte
3086 * of multi-byte char. */
3087 && (*mb_head_off)(p, p + endcol) == 0
3088# endif
3089 ))
3090 {
3091 if (oap->start.lnum == oap->end.lnum
3092 && oap->start.col == oap->end.col)
3093 {
3094 /* Special case: inside a single char */
3095 is_oneChar = TRUE;
3096 bd.startspaces = oap->end.coladd
3097 - oap->start.coladd + oap->inclusive;
3098 endcol = startcol;
3099 }
3100 else
3101 {
3102 bd.endspaces = oap->end.coladd
3103 + oap->inclusive;
3104 endcol -= oap->inclusive;
3105 }
3106 }
3107 }
3108#endif
3109 }
Bram Moolenaar18e00d22012-05-18 12:49:40 +02003110 if (endcol == MAXCOL)
3111 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 if (startcol > endcol
3113#ifdef FEAT_VIRTUALEDIT
3114 || is_oneChar
3115#endif
3116 )
3117 bd.textlen = 0;
3118 else
3119 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 bd.textlen = endcol - startcol + oap->inclusive;
3121 }
3122 bd.textstart = p + startcol;
3123 if (yank_copy_line(&bd, y_idx) == FAIL)
3124 goto fail;
3125 break;
3126 }
3127 /* NOTREACHED */
3128 }
3129 }
3130
3131 if (curr != y_current) /* append the new block to the old block */
3132 {
3133 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3134 (curr->y_size + y_current->y_size)), TRUE);
3135 if (new_ptr == NULL)
3136 goto fail;
3137 for (j = 0; j < curr->y_size; ++j)
3138 new_ptr[j] = curr->y_array[j];
3139 vim_free(curr->y_array);
3140 curr->y_array = new_ptr;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003141#ifdef FEAT_VIMINFO
3142 curr->y_time_set = vim_time();
3143#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144
3145 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3146 curr->y_type = MLINE;
3147
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003148 /* Concatenate the last line of the old block with the first line of
3149 * the new block, unless being Vi compatible. */
3150 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 {
3152 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3153 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3154 if (pnew == NULL)
3155 {
3156 y_idx = y_current->y_size - 1;
3157 goto fail;
3158 }
3159 STRCPY(pnew, curr->y_array[--j]);
3160 STRCAT(pnew, y_current->y_array[0]);
3161 vim_free(curr->y_array[j]);
3162 vim_free(y_current->y_array[0]);
3163 curr->y_array[j++] = pnew;
3164 y_idx = 1;
3165 }
3166 else
3167 y_idx = 0;
3168 while (y_idx < y_current->y_size)
3169 curr->y_array[j++] = y_current->y_array[y_idx++];
3170 curr->y_size = j;
3171 vim_free(y_current->y_array);
3172 y_current = curr;
3173 }
Bram Moolenaar7ec83432014-06-17 18:16:11 +02003174 if (curwin->w_p_rnu)
3175 redraw_later(SOME_VALID); /* cursor moved to start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 if (mess) /* Display message about yank? */
3177 {
3178 if (yanktype == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180 && yanklines == 1)
3181 yanklines = 0;
3182 /* Some versions of Vi use ">=" here, some don't... */
3183 if (yanklines > p_report)
3184 {
Bram Moolenaare45deb72017-07-16 17:56:16 +02003185 char namebuf[100];
3186
3187 if (oap->regname == NUL)
3188 *namebuf = NUL;
3189 else
3190 vim_snprintf(namebuf, sizeof(namebuf),
Bram Moolenaar60d0e972017-07-16 20:54:34 +02003191 _(" into \"%c"), oap->regname);
Bram Moolenaare45deb72017-07-16 17:56:16 +02003192
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 /* redisplay now, so message is not deleted */
3194 update_topline_redraw();
3195 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003196 {
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003197 if (oap->block_mode)
Bram Moolenaare45deb72017-07-16 17:56:16 +02003198 smsg((char_u *)_("block of 1 line yanked%s"), namebuf);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003199 else
Bram Moolenaare45deb72017-07-16 17:56:16 +02003200 smsg((char_u *)_("1 line yanked%s"), namebuf);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003201 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003202 else if (oap->block_mode)
Bram Moolenaare45deb72017-07-16 17:56:16 +02003203 smsg((char_u *)_("block of %ld lines yanked%s"),
3204 yanklines, namebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 else
Bram Moolenaare45deb72017-07-16 17:56:16 +02003206 smsg((char_u *)_("%ld lines yanked%s"), yanklines,
3207 namebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 }
3209 }
3210
3211 /*
3212 * Set "'[" and "']" marks.
3213 */
3214 curbuf->b_op_start = oap->start;
3215 curbuf->b_op_end = oap->end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003216 if (yanktype == MLINE && !oap->block_mode)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003217 {
3218 curbuf->b_op_start.col = 0;
3219 curbuf->b_op_end.col = MAXCOL;
3220 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221
3222#ifdef FEAT_CLIPBOARD
3223 /*
3224 * If we were yanking to the '*' register, send result to clipboard.
3225 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3226 * to the '*' register.
3227 */
3228 if (clip_star.available
3229 && (curr == &(y_regs[STAR_REGISTER])
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003230 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003231 && ((clip_unnamed | clip_unnamed_saved) & CLIP_UNNAMED))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 {
3233 if (curr != &(y_regs[STAR_REGISTER]))
3234 /* Copy the text from register 0 to the clipboard register. */
3235 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3236
3237 clip_own_selection(&clip_star);
3238 clip_gen_set_selection(&clip_star);
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003239# ifdef FEAT_X11
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003240 did_star = TRUE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003241# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 }
3243
3244# ifdef FEAT_X11
3245 /*
3246 * If we were yanking to the '+' register, send result to selection.
3247 * Also copy to the '*' register, in case auto-select is off.
3248 */
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003249 if (clip_plus.available
3250 && (curr == &(y_regs[PLUS_REGISTER])
3251 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003252 && ((clip_unnamed | clip_unnamed_saved) &
3253 CLIP_UNNAMED_PLUS))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254 {
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003255 if (curr != &(y_regs[PLUS_REGISTER]))
3256 /* Copy the text from register 0 to the clipboard register. */
3257 copy_yank_reg(&(y_regs[PLUS_REGISTER]));
3258
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 clip_own_selection(&clip_plus);
3260 clip_gen_set_selection(&clip_plus);
Bram Moolenaarc0885aa2012-07-10 16:49:23 +02003261 if (!clip_isautosel_star() && !did_star
3262 && curr == &(y_regs[PLUS_REGISTER]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263 {
3264 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3265 clip_own_selection(&clip_star);
3266 clip_gen_set_selection(&clip_star);
3267 }
3268 }
3269# endif
3270#endif
3271
3272 return OK;
3273
3274fail: /* free the allocated lines */
3275 free_yank(y_idx + 1);
3276 y_current = curr;
3277 return FAIL;
3278}
3279
3280 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003281yank_copy_line(struct block_def *bd, long y_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282{
3283 char_u *pnew;
3284
3285 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3286 == NULL)
3287 return FAIL;
3288 y_current->y_array[y_idx] = pnew;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003289 vim_memset(pnew, ' ', (size_t)bd->startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 pnew += bd->startspaces;
3291 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3292 pnew += bd->textlen;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003293 vim_memset(pnew, ' ', (size_t)bd->endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 pnew += bd->endspaces;
3295 *pnew = NUL;
3296 return OK;
3297}
3298
3299#ifdef FEAT_CLIPBOARD
3300/*
3301 * Make a copy of the y_current register to register "reg".
3302 */
3303 static void
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003304copy_yank_reg(yankreg_T *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003306 yankreg_T *curr = y_current;
3307 long j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308
3309 y_current = reg;
3310 free_yank_all();
3311 *y_current = *curr;
3312 y_current->y_array = (char_u **)lalloc_clear(
3313 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3314 if (y_current->y_array == NULL)
3315 y_current->y_size = 0;
3316 else
3317 for (j = 0; j < y_current->y_size; ++j)
3318 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3319 {
3320 free_yank(j);
3321 y_current->y_size = 0;
3322 break;
3323 }
3324 y_current = curr;
3325}
3326#endif
3327
3328/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003329 * Put contents of register "regname" into the text.
3330 * Caller must check "regname" to be valid!
3331 * "flags": PUT_FIXINDENT make indent look nice
3332 * PUT_CURSEND leave cursor after end of new text
3333 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334 */
3335 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003336do_put(
3337 int regname,
3338 int dir, /* BACKWARD for 'P', FORWARD for 'p' */
3339 long count,
3340 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341{
3342 char_u *ptr;
3343 char_u *newp, *oldp;
3344 int yanklen;
3345 int totlen = 0; /* init for gcc */
3346 linenr_T lnum;
3347 colnr_T col;
3348 long i; /* index in y_array[] */
3349 int y_type;
3350 long y_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 int oldlen;
3352 long y_width = 0;
3353 colnr_T vcol;
3354 int delcount;
3355 int incr = 0;
3356 long j;
3357 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358 char_u **y_array = NULL;
3359 long nr_lines = 0;
3360 pos_T new_cursor;
3361 int indent;
3362 int orig_indent = 0; /* init for gcc */
3363 int indent_diff = 0; /* init for gcc */
3364 int first_indent = TRUE;
3365 int lendiff = 0;
3366 pos_T old_pos;
3367 char_u *insert_string = NULL;
3368 int allocated = FALSE;
3369 long cnt;
3370
3371#ifdef FEAT_CLIPBOARD
3372 /* Adjust register name for "unnamed" in 'clipboard'. */
3373 adjust_clip_reg(&regname);
3374 (void)may_get_selection(regname);
3375#endif
3376
3377 if (flags & PUT_FIXINDENT)
3378 orig_indent = get_indent();
3379
3380 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3381 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3382
3383 /*
3384 * Using inserted text works differently, because the register includes
3385 * special characters (newlines, etc.).
3386 */
3387 if (regname == '.')
3388 {
Bram Moolenaarf8eb9c52017-01-02 17:31:24 +01003389 if (VIsual_active)
3390 stuffcharReadbuff(VIsual_mode);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3392 (count == -1 ? 'O' : 'i')), count, FALSE);
3393 /* Putting the text is done later, so can't really move the cursor to
3394 * the next character. Use "l" to simulate it. */
3395 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3396 stuffcharReadbuff('l');
3397 return;
3398 }
3399
3400 /*
3401 * For special registers '%' (file name), '#' (alternate file name) and
3402 * ':' (last command line), etc. we have to create a fake yank register.
3403 */
3404 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3405 {
3406 if (insert_string == NULL)
3407 return;
3408 }
3409
Bram Moolenaar27356ad2012-12-12 16:11:36 +01003410#ifdef FEAT_AUTOCMD
3411 /* Autocommands may be executed when saving lines for undo, which may make
3412 * y_array invalid. Start undo now to avoid that. */
3413 u_save(curwin->w_cursor.lnum, curwin->w_cursor.lnum + 1);
3414#endif
3415
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 if (insert_string != NULL)
3417 {
3418 y_type = MCHAR;
3419#ifdef FEAT_EVAL
3420 if (regname == '=')
3421 {
3422 /* For the = register we need to split the string at NL
Bram Moolenaara554a192011-09-21 17:33:53 +02003423 * characters.
3424 * Loop twice: count the number of lines and save them. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 for (;;)
3426 {
3427 y_size = 0;
3428 ptr = insert_string;
3429 while (ptr != NULL)
3430 {
3431 if (y_array != NULL)
3432 y_array[y_size] = ptr;
3433 ++y_size;
3434 ptr = vim_strchr(ptr, '\n');
3435 if (ptr != NULL)
3436 {
3437 if (y_array != NULL)
3438 *ptr = NUL;
3439 ++ptr;
Bram Moolenaara554a192011-09-21 17:33:53 +02003440 /* A trailing '\n' makes the register linewise. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 if (*ptr == NUL)
3442 {
3443 y_type = MLINE;
3444 break;
3445 }
3446 }
3447 }
3448 if (y_array != NULL)
3449 break;
3450 y_array = (char_u **)alloc((unsigned)
3451 (y_size * sizeof(char_u *)));
3452 if (y_array == NULL)
3453 goto end;
3454 }
3455 }
3456 else
3457#endif
3458 {
3459 y_size = 1; /* use fake one-line yank register */
3460 y_array = &insert_string;
3461 }
3462 }
3463 else
3464 {
3465 get_yank_register(regname, FALSE);
3466
3467 y_type = y_current->y_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 y_width = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 y_size = y_current->y_size;
3470 y_array = y_current->y_array;
3471 }
3472
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473 if (y_type == MLINE)
3474 {
3475 if (flags & PUT_LINE_SPLIT)
3476 {
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003477 char_u *p;
3478
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 /* "p" or "P" in Visual mode: split the lines to put the text in
3480 * between. */
3481 if (u_save_cursor() == FAIL)
3482 goto end;
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003483 p = ml_get_cursor();
3484 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003485 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003486 ptr = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 if (ptr == NULL)
3488 goto end;
3489 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3490 vim_free(ptr);
3491
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003492 oldp = ml_get_curline();
3493 p = oldp + curwin->w_cursor.col;
3494 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003495 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003496 ptr = vim_strnsave(oldp, p - oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497 if (ptr == NULL)
3498 goto end;
3499 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3500 ++nr_lines;
3501 dir = FORWARD;
3502 }
3503 if (flags & PUT_LINE_FORWARD)
3504 {
3505 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003506 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 dir = FORWARD;
3508 }
3509 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3510 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3511 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512
3513 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3514 y_type = MLINE;
3515
3516 if (y_size == 0 || y_array == NULL)
3517 {
3518 EMSG2(_("E353: Nothing in register %s"),
3519 regname == 0 ? (char_u *)"\"" : transchar(regname));
3520 goto end;
3521 }
3522
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 if (y_type == MBLOCK)
3524 {
3525 lnum = curwin->w_cursor.lnum + y_size + 1;
3526 if (lnum > curbuf->b_ml.ml_line_count)
3527 lnum = curbuf->b_ml.ml_line_count + 1;
3528 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3529 goto end;
3530 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003531 else if (y_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 {
3533 lnum = curwin->w_cursor.lnum;
3534#ifdef FEAT_FOLDING
3535 /* Correct line number for closed fold. Don't move the cursor yet,
3536 * u_save() uses it. */
3537 if (dir == BACKWARD)
3538 (void)hasFolding(lnum, &lnum, NULL);
3539 else
3540 (void)hasFolding(lnum, NULL, &lnum);
3541#endif
3542 if (dir == FORWARD)
3543 ++lnum;
Bram Moolenaar10315b12013-06-29 17:19:28 +02003544 /* In an empty buffer the empty line is going to be replaced, include
3545 * it in the saved lines. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003546 if ((BUFEMPTY() ? u_save(0, 2) : u_save(lnum - 1, lnum)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 goto end;
3548#ifdef FEAT_FOLDING
3549 if (dir == FORWARD)
3550 curwin->w_cursor.lnum = lnum - 1;
3551 else
3552 curwin->w_cursor.lnum = lnum;
3553 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3554#endif
3555 }
3556 else if (u_save_cursor() == FAIL)
3557 goto end;
3558
3559 yanklen = (int)STRLEN(y_array[0]);
3560
3561#ifdef FEAT_VIRTUALEDIT
3562 if (ve_flags == VE_ALL && y_type == MCHAR)
3563 {
3564 if (gchar_cursor() == TAB)
3565 {
3566 /* Don't need to insert spaces when "p" on the last position of a
3567 * tab or "P" on the first position. */
3568 if (dir == FORWARD
3569 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3570 : curwin->w_cursor.coladd > 0)
3571 coladvance_force(getviscol());
3572 else
3573 curwin->w_cursor.coladd = 0;
3574 }
3575 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3576 coladvance_force(getviscol() + (dir == FORWARD));
3577 }
3578#endif
3579
3580 lnum = curwin->w_cursor.lnum;
3581 col = curwin->w_cursor.col;
3582
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 /*
3584 * Block mode
3585 */
3586 if (y_type == MBLOCK)
3587 {
Bram Moolenaarc8129962017-01-22 20:04:51 +01003588 int c = gchar_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 colnr_T endcol2 = 0;
3590
3591 if (dir == FORWARD && c != NUL)
3592 {
3593#ifdef FEAT_VIRTUALEDIT
3594 if (ve_flags == VE_ALL)
3595 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3596 else
3597#endif
3598 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3599
3600#ifdef FEAT_MBYTE
3601 if (has_mbyte)
3602 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003603 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 else
3605#endif
3606#ifdef FEAT_VIRTUALEDIT
3607 if (c != TAB || ve_flags != VE_ALL)
3608#endif
3609 ++curwin->w_cursor.col;
3610 ++col;
3611 }
3612 else
3613 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3614
3615#ifdef FEAT_VIRTUALEDIT
3616 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003617 if (ve_flags == VE_ALL
3618 && (curwin->w_cursor.coladd > 0
3619 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 {
3621 if (dir == FORWARD && c == NUL)
3622 ++col;
3623 if (dir != FORWARD && c != NUL)
3624 ++curwin->w_cursor.col;
3625 if (c == TAB)
3626 {
3627 if (dir == BACKWARD && curwin->w_cursor.col)
3628 curwin->w_cursor.col--;
3629 if (dir == FORWARD && col - 1 == endcol2)
3630 curwin->w_cursor.col++;
3631 }
3632 }
3633 curwin->w_cursor.coladd = 0;
3634#endif
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003635 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 for (i = 0; i < y_size; ++i)
3637 {
3638 int spaces;
3639 char shortline;
3640
3641 bd.startspaces = 0;
3642 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 vcol = 0;
3644 delcount = 0;
3645
3646 /* add a new line */
3647 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3648 {
3649 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3650 (colnr_T)1, FALSE) == FAIL)
3651 break;
3652 ++nr_lines;
3653 }
3654 /* get the old line and advance to the position to insert at */
3655 oldp = ml_get_curline();
3656 oldlen = (int)STRLEN(oldp);
3657 for (ptr = oldp; vcol < col && *ptr; )
3658 {
3659 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02003660 incr = lbr_chartabsize_adv(oldp, &ptr, (colnr_T)vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 vcol += incr;
3662 }
3663 bd.textcol = (colnr_T)(ptr - oldp);
3664
3665 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3666
3667 if (vcol < col) /* line too short, padd with spaces */
3668 bd.startspaces = col - vcol;
3669 else if (vcol > col)
3670 {
3671 bd.endspaces = vcol - col;
3672 bd.startspaces = incr - bd.endspaces;
3673 --bd.textcol;
3674 delcount = 1;
3675#ifdef FEAT_MBYTE
3676 if (has_mbyte)
3677 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3678#endif
3679 if (oldp[bd.textcol] != TAB)
3680 {
3681 /* Only a Tab can be split into spaces. Other
3682 * characters will have to be moved to after the
3683 * block, causing misalignment. */
3684 delcount = 0;
3685 bd.endspaces = 0;
3686 }
3687 }
3688
3689 yanklen = (int)STRLEN(y_array[i]);
3690
3691 /* calculate number of spaces required to fill right side of block*/
3692 spaces = y_width + 1;
3693 for (j = 0; j < yanklen; j++)
Bram Moolenaar597a4222014-06-25 14:39:50 +02003694 spaces -= lbr_chartabsize(NULL, &y_array[i][j], 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 if (spaces < 0)
3696 spaces = 0;
3697
3698 /* insert the new text */
3699 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3700 newp = alloc_check((unsigned)totlen + oldlen + 1);
3701 if (newp == NULL)
3702 break;
3703 /* copy part up to cursor to new line */
3704 ptr = newp;
3705 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3706 ptr += bd.textcol;
3707 /* may insert some spaces before the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003708 vim_memset(ptr, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 ptr += bd.startspaces;
3710 /* insert the new text */
3711 for (j = 0; j < count; ++j)
3712 {
3713 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3714 ptr += yanklen;
3715
3716 /* insert block's trailing spaces only if there's text behind */
3717 if ((j < count - 1 || !shortline) && spaces)
3718 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003719 vim_memset(ptr, ' ', (size_t)spaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 ptr += spaces;
3721 }
3722 }
3723 /* may insert some spaces after the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003724 vim_memset(ptr, ' ', (size_t)bd.endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725 ptr += bd.endspaces;
3726 /* move the text after the cursor to the end of the line. */
3727 mch_memmove(ptr, oldp + bd.textcol + delcount,
3728 (size_t)(oldlen - bd.textcol - delcount + 1));
3729 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3730
3731 ++curwin->w_cursor.lnum;
3732 if (i == 0)
3733 curwin->w_cursor.col += bd.startspaces;
3734 }
3735
3736 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3737
3738 /* Set '[ mark. */
3739 curbuf->b_op_start = curwin->w_cursor;
3740 curbuf->b_op_start.lnum = lnum;
3741
3742 /* adjust '] mark */
3743 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3744 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003745# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003747# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 if (flags & PUT_CURSEND)
3749 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003750 colnr_T len;
3751
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 curwin->w_cursor = curbuf->b_op_end;
3753 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003754
3755 /* in Insert mode we might be after the NUL, correct for that */
3756 len = (colnr_T)STRLEN(ml_get_curline());
3757 if (curwin->w_cursor.col > len)
3758 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 }
3760 else
3761 curwin->w_cursor.lnum = lnum;
3762 }
3763 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 {
3765 /*
3766 * Character or Line mode
3767 */
3768 if (y_type == MCHAR)
3769 {
3770 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3771 * char */
3772 if (dir == FORWARD && gchar_cursor() != NUL)
3773 {
3774#ifdef FEAT_MBYTE
3775 if (has_mbyte)
3776 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003777 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778
3779 /* put it on the next of the multi-byte character. */
3780 col += bytelen;
3781 if (yanklen)
3782 {
3783 curwin->w_cursor.col += bytelen;
3784 curbuf->b_op_end.col += bytelen;
3785 }
3786 }
3787 else
3788#endif
3789 {
3790 ++col;
3791 if (yanklen)
3792 {
3793 ++curwin->w_cursor.col;
3794 ++curbuf->b_op_end.col;
3795 }
3796 }
3797 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 curbuf->b_op_start = curwin->w_cursor;
3799 }
3800 /*
3801 * Line mode: BACKWARD is the same as FORWARD on the previous line
3802 */
3803 else if (dir == BACKWARD)
3804 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003805 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806
3807 /*
3808 * simple case: insert into current line
3809 */
3810 if (y_type == MCHAR && y_size == 1)
3811 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003812 linenr_T end_lnum = 0; /* init for gcc */
Bram Moolenaar9957a102017-01-23 21:53:53 +01003813
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003814 if (VIsual_active)
3815 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003816 end_lnum = curbuf->b_visual.vi_end.lnum;
3817 if (end_lnum < curbuf->b_visual.vi_start.lnum)
3818 end_lnum = curbuf->b_visual.vi_start.lnum;
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003819 }
Bram Moolenaar9957a102017-01-23 21:53:53 +01003820
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003821 do {
3822 totlen = count * yanklen;
3823 if (totlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 {
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003825 oldp = ml_get(lnum);
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003826 if (VIsual_active && col > (int)STRLEN(oldp))
3827 {
3828 lnum++;
3829 continue;
3830 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003831 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3832 if (newp == NULL)
3833 goto end; /* alloc() gave an error message */
3834 mch_memmove(newp, oldp, (size_t)col);
3835 ptr = newp + col;
3836 for (i = 0; i < count; ++i)
3837 {
3838 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3839 ptr += yanklen;
3840 }
3841 STRMOVE(ptr, oldp + col);
3842 ml_replace(lnum, newp, FALSE);
3843 /* Place cursor on last putted char. */
3844 if (lnum == curwin->w_cursor.lnum)
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003845 {
3846 /* make sure curwin->w_virtcol is updated */
3847 changed_cline_bef_curs();
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003848 curwin->w_cursor.col += (colnr_T)(totlen - 1);
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003849 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003851 if (VIsual_active)
3852 lnum++;
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003853 } while (VIsual_active && lnum <= end_lnum);
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003854
Bram Moolenaar06e7ce12014-11-19 17:35:39 +01003855 if (VIsual_active) /* reset lnum to the last visual line */
3856 lnum--;
3857
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 curbuf->b_op_end = curwin->w_cursor;
3859 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3860 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3861 ++curwin->w_cursor.col;
3862 changed_bytes(lnum, col);
3863 }
3864 else
3865 {
3866 /*
3867 * Insert at least one line. When y_type is MCHAR, break the first
3868 * line in two.
3869 */
3870 for (cnt = 1; cnt <= count; ++cnt)
3871 {
3872 i = 0;
3873 if (y_type == MCHAR)
3874 {
3875 /*
3876 * Split the current line in two at the insert position.
3877 * First insert y_array[size - 1] in front of second line.
3878 * Then append y_array[0] to first line.
3879 */
3880 lnum = new_cursor.lnum;
3881 ptr = ml_get(lnum) + col;
3882 totlen = (int)STRLEN(y_array[y_size - 1]);
3883 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3884 if (newp == NULL)
3885 goto error;
3886 STRCPY(newp, y_array[y_size - 1]);
3887 STRCAT(newp, ptr);
3888 /* insert second line */
3889 ml_append(lnum, newp, (colnr_T)0, FALSE);
3890 vim_free(newp);
3891
3892 oldp = ml_get(lnum);
3893 newp = alloc_check((unsigned)(col + yanklen + 1));
3894 if (newp == NULL)
3895 goto error;
3896 /* copy first part of line */
3897 mch_memmove(newp, oldp, (size_t)col);
3898 /* append to first line */
3899 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3900 ml_replace(lnum, newp, FALSE);
3901
3902 curwin->w_cursor.lnum = lnum;
3903 i = 1;
3904 }
3905
3906 for (; i < y_size; ++i)
3907 {
3908 if ((y_type != MCHAR || i < y_size - 1)
3909 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3910 == FAIL)
3911 goto error;
3912 lnum++;
3913 ++nr_lines;
3914 if (flags & PUT_FIXINDENT)
3915 {
3916 old_pos = curwin->w_cursor;
3917 curwin->w_cursor.lnum = lnum;
3918 ptr = ml_get(lnum);
3919 if (cnt == count && i == y_size - 1)
3920 lendiff = (int)STRLEN(ptr);
3921#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3922 if (*ptr == '#' && preprocs_left())
3923 indent = 0; /* Leave # lines at start */
3924 else
3925#endif
3926 if (*ptr == NUL)
3927 indent = 0; /* Ignore empty lines */
3928 else if (first_indent)
3929 {
3930 indent_diff = orig_indent - get_indent();
3931 indent = orig_indent;
3932 first_indent = FALSE;
3933 }
3934 else if ((indent = get_indent() + indent_diff) < 0)
3935 indent = 0;
3936 (void)set_indent(indent, 0);
3937 curwin->w_cursor = old_pos;
3938 /* remember how many chars were removed */
3939 if (cnt == count && i == y_size - 1)
3940 lendiff -= (int)STRLEN(ml_get(lnum));
3941 }
3942 }
3943 }
3944
3945error:
3946 /* Adjust marks. */
3947 if (y_type == MLINE)
3948 {
3949 curbuf->b_op_start.col = 0;
3950 if (dir == FORWARD)
3951 curbuf->b_op_start.lnum++;
3952 }
Bram Moolenaar82faa252016-06-04 20:14:07 +02003953 /* Skip mark_adjust when adding lines after the last one, there
Bram Moolenaarf58a8472017-03-05 18:03:04 +01003954 * can't be marks there. But still needed in diff mode. */
Bram Moolenaar82faa252016-06-04 20:14:07 +02003955 if (curbuf->b_op_start.lnum + (y_type == MCHAR) - 1 + nr_lines
Bram Moolenaarf58a8472017-03-05 18:03:04 +01003956 < curbuf->b_ml.ml_line_count
3957#ifdef FEAT_DIFF
3958 || curwin->w_p_diff
3959#endif
3960 )
Bram Moolenaar82faa252016-06-04 20:14:07 +02003961 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962 (linenr_T)MAXLNUM, nr_lines, 0L);
3963
3964 /* note changed text for displaying and folding */
3965 if (y_type == MCHAR)
3966 changed_lines(curwin->w_cursor.lnum, col,
3967 curwin->w_cursor.lnum + 1, nr_lines);
3968 else
3969 changed_lines(curbuf->b_op_start.lnum, 0,
3970 curbuf->b_op_start.lnum, nr_lines);
3971
3972 /* put '] mark at last inserted character */
3973 curbuf->b_op_end.lnum = lnum;
3974 /* correct length for change in indent */
3975 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
3976 if (col > 1)
3977 curbuf->b_op_end.col = col - 1;
3978 else
3979 curbuf->b_op_end.col = 0;
3980
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003981 if (flags & PUT_CURSLINE)
3982 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003983 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003984 curwin->w_cursor.lnum = lnum;
3985 beginline(BL_WHITE | BL_FIX);
3986 }
3987 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 {
3989 /* put cursor after inserted text */
3990 if (y_type == MLINE)
3991 {
3992 if (lnum >= curbuf->b_ml.ml_line_count)
3993 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3994 else
3995 curwin->w_cursor.lnum = lnum + 1;
3996 curwin->w_cursor.col = 0;
3997 }
3998 else
3999 {
4000 curwin->w_cursor.lnum = lnum;
4001 curwin->w_cursor.col = col;
4002 }
4003 }
4004 else if (y_type == MLINE)
4005 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004006 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 curwin->w_cursor.col = 0;
4008 if (dir == FORWARD)
4009 ++curwin->w_cursor.lnum;
4010 beginline(BL_WHITE | BL_FIX);
4011 }
4012 else /* put cursor on first inserted character */
4013 curwin->w_cursor = new_cursor;
4014 }
4015 }
4016
4017 msgmore(nr_lines);
4018 curwin->w_set_curswant = TRUE;
4019
4020end:
4021 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004023 if (regname == '=')
4024 vim_free(y_array);
4025
Bram Moolenaar033d8882013-09-25 23:24:57 +02004026 VIsual_active = FALSE;
Bram Moolenaar033d8882013-09-25 23:24:57 +02004027
Bram Moolenaar677ee682005-01-27 14:41:15 +00004028 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004029 adjust_cursor_eol();
4030}
4031
4032/*
4033 * When the cursor is on the NUL past the end of the line and it should not be
4034 * there move it left.
4035 */
4036 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004037adjust_cursor_eol(void)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004038{
4039 if (curwin->w_cursor.col > 0
4040 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00004041#ifdef FEAT_VIRTUALEDIT
4042 && (ve_flags & VE_ONEMORE) == 0
4043#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 && !(restart_edit || (State & INSERT)))
4045 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00004046 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00004047 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004048
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049#ifdef FEAT_VIRTUALEDIT
4050 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00004051 {
4052 colnr_T scol, ecol;
4053
4054 /* Coladd is set to the width of the last character. */
4055 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4056 curwin->w_cursor.coladd = ecol - scol + 1;
4057 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058#endif
4059 }
4060}
4061
4062#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
4063/*
4064 * Return TRUE if lines starting with '#' should be left aligned.
4065 */
4066 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004067preprocs_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068{
4069 return
4070# ifdef FEAT_SMARTINDENT
4071# ifdef FEAT_CINDENT
4072 (curbuf->b_p_si && !curbuf->b_p_cin) ||
4073# else
4074 curbuf->b_p_si
4075# endif
4076# endif
4077# ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004078 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE)
4079 && curbuf->b_ind_hash_comment == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080# endif
4081 ;
4082}
4083#endif
4084
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004085/*
4086 * Return the character name of the register with the given number.
4087 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004089get_register_name(int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090{
4091 if (num == -1)
4092 return '"';
4093 else if (num < 10)
4094 return num + '0';
4095 else if (num == DELETION_REGISTER)
4096 return '-';
4097#ifdef FEAT_CLIPBOARD
4098 else if (num == STAR_REGISTER)
4099 return '*';
4100 else if (num == PLUS_REGISTER)
4101 return '+';
4102#endif
4103 else
4104 {
4105#ifdef EBCDIC
4106 int i;
4107
4108 /* EBCDIC is really braindead ... */
4109 i = 'a' + (num - 10);
4110 if (i > 'i')
4111 i += 7;
4112 if (i > 'r')
4113 i += 8;
4114 return i;
4115#else
4116 return num + 'a' - 10;
4117#endif
4118 }
4119}
4120
4121/*
4122 * ":dis" and ":registers": Display the contents of the yank registers.
4123 */
4124 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004125ex_display(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004127 int i, n;
4128 long j;
4129 char_u *p;
4130 yankreg_T *yb;
4131 int name;
4132 int attr;
4133 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004134#ifdef FEAT_MBYTE
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004135 int clen;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004136#else
4137# define clen 1
4138#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139
4140 if (arg != NULL && *arg == NUL)
4141 arg = NULL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01004142 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143
4144 /* Highlight title */
4145 MSG_PUTS_TITLE(_("\n--- Registers ---"));
4146 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
4147 {
4148 name = get_register_name(i);
Bram Moolenaar0818b872010-11-24 14:28:58 +01004149 if (arg != NULL && vim_strchr(arg, name) == NULL
4150#ifdef ONE_CLIPBOARD
4151 /* Star register and plus register contain the same thing. */
4152 && (name != '*' || vim_strchr(arg, '+') == NULL)
4153#endif
4154 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 continue; /* did not ask for this register */
4156
4157#ifdef FEAT_CLIPBOARD
4158 /* Adjust register name for "unnamed" in 'clipboard'.
4159 * When it's a clipboard register, fill it with the current contents
4160 * of the clipboard. */
4161 adjust_clip_reg(&name);
4162 (void)may_get_selection(name);
4163#endif
4164
4165 if (i == -1)
4166 {
4167 if (y_previous != NULL)
4168 yb = y_previous;
4169 else
4170 yb = &(y_regs[0]);
4171 }
4172 else
4173 yb = &(y_regs[i]);
Bram Moolenaarcde547a2009-11-17 11:43:06 +00004174
4175#ifdef FEAT_EVAL
4176 if (name == MB_TOLOWER(redir_reg)
4177 || (redir_reg == '"' && yb == y_previous))
4178 continue; /* do not list register being written to, the
4179 * pointer can be freed */
4180#endif
4181
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 if (yb->y_array != NULL)
4183 {
4184 msg_putchar('\n');
4185 msg_putchar('"');
4186 msg_putchar(name);
4187 MSG_PUTS(" ");
4188
4189 n = (int)Columns - 6;
4190 for (j = 0; j < yb->y_size && n > 1; ++j)
4191 {
4192 if (j)
4193 {
4194 MSG_PUTS_ATTR("^J", attr);
4195 n -= 2;
4196 }
4197 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4198 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004200 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004201#endif
4202 msg_outtrans_len(p, clen);
4203#ifdef FEAT_MBYTE
4204 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205#endif
4206 }
4207 }
4208 if (n > 1 && yb->y_type == MLINE)
4209 MSG_PUTS_ATTR("^J", attr);
4210 out_flush(); /* show one line at a time */
4211 }
4212 ui_breakcheck();
4213 }
4214
4215 /*
4216 * display last inserted text
4217 */
4218 if ((p = get_last_insert()) != NULL
4219 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4220 {
4221 MSG_PUTS("\n\". ");
4222 dis_msg(p, TRUE);
4223 }
4224
4225 /*
4226 * display last command line
4227 */
4228 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4229 && !got_int)
4230 {
4231 MSG_PUTS("\n\": ");
4232 dis_msg(last_cmdline, FALSE);
4233 }
4234
4235 /*
4236 * display current file name
4237 */
4238 if (curbuf->b_fname != NULL
4239 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4240 {
4241 MSG_PUTS("\n\"% ");
4242 dis_msg(curbuf->b_fname, FALSE);
4243 }
4244
4245 /*
4246 * display alternate file name
4247 */
4248 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4249 {
4250 char_u *fname;
4251 linenr_T dummy;
4252
4253 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4254 {
4255 MSG_PUTS("\n\"# ");
4256 dis_msg(fname, FALSE);
4257 }
4258 }
4259
4260 /*
4261 * display last search pattern
4262 */
4263 if (last_search_pat() != NULL
4264 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4265 {
4266 MSG_PUTS("\n\"/ ");
4267 dis_msg(last_search_pat(), FALSE);
4268 }
4269
4270#ifdef FEAT_EVAL
4271 /*
4272 * display last used expression
4273 */
4274 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4275 && !got_int)
4276 {
4277 MSG_PUTS("\n\"= ");
4278 dis_msg(expr_line, FALSE);
4279 }
4280#endif
4281}
4282
4283/*
4284 * display a string for do_dis()
4285 * truncate at end of screen line
4286 */
4287 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004288dis_msg(
4289 char_u *p,
4290 int skip_esc) /* if TRUE, ignore trailing ESC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291{
4292 int n;
4293#ifdef FEAT_MBYTE
4294 int l;
4295#endif
4296
4297 n = (int)Columns - 6;
4298 while (*p != NUL
4299 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4300 && (n -= ptr2cells(p)) >= 0)
4301 {
4302#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004303 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 {
4305 msg_outtrans_len(p, l);
4306 p += l;
4307 }
4308 else
4309#endif
4310 msg_outtrans_len(p++, 1);
4311 }
4312 ui_breakcheck();
4313}
4314
Bram Moolenaar81340392012-06-06 16:12:59 +02004315#if defined(FEAT_COMMENTS) || defined(PROTO)
4316/*
4317 * If "process" is TRUE and the line begins with a comment leader (possibly
4318 * after some white space), return a pointer to the text after it. Put a boolean
4319 * value indicating whether the line ends with an unclosed comment in
4320 * "is_comment".
4321 * line - line to be processed,
4322 * process - if FALSE, will only check whether the line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004323 * comment,
Bram Moolenaar81340392012-06-06 16:12:59 +02004324 * include_space - whether to also skip space following the comment leader,
4325 * is_comment - will indicate whether the current line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004326 * comment.
Bram Moolenaar81340392012-06-06 16:12:59 +02004327 */
Bram Moolenaar025a6b72017-03-12 20:37:21 +01004328 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004329skip_comment(
4330 char_u *line,
4331 int process,
4332 int include_space,
4333 int *is_comment)
Bram Moolenaar81340392012-06-06 16:12:59 +02004334{
4335 char_u *comment_flags = NULL;
4336 int lead_len;
4337 int leader_offset = get_last_leader_offset(line, &comment_flags);
4338
4339 *is_comment = FALSE;
4340 if (leader_offset != -1)
4341 {
4342 /* Let's check whether the line ends with an unclosed comment.
4343 * If the last comment leader has COM_END in flags, there's no comment.
4344 */
4345 while (*comment_flags)
4346 {
4347 if (*comment_flags == COM_END
4348 || *comment_flags == ':')
4349 break;
4350 ++comment_flags;
4351 }
4352 if (*comment_flags != COM_END)
4353 *is_comment = TRUE;
4354 }
4355
4356 if (process == FALSE)
4357 return line;
4358
4359 lead_len = get_leader_len(line, &comment_flags, FALSE, include_space);
4360
4361 if (lead_len == 0)
4362 return line;
4363
4364 /* Find:
Bram Moolenaar81340392012-06-06 16:12:59 +02004365 * - COM_END,
4366 * - colon,
4367 * whichever comes first.
4368 */
4369 while (*comment_flags)
4370 {
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004371 if (*comment_flags == COM_END
Bram Moolenaar81340392012-06-06 16:12:59 +02004372 || *comment_flags == ':')
4373 {
4374 break;
4375 }
4376 ++comment_flags;
4377 }
4378
4379 /* If we found a colon, it means that we are not processing a line
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004380 * starting with a closing part of a three-part comment. That's good,
4381 * because we don't want to remove those as this would be annoying.
Bram Moolenaar81340392012-06-06 16:12:59 +02004382 */
4383 if (*comment_flags == ':' || *comment_flags == NUL)
4384 line += lead_len;
4385
4386 return line;
4387}
4388#endif
4389
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390/*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004391 * Join 'count' lines (minimal 2) at cursor position.
4392 * When "save_undo" is TRUE save lines for undo first.
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004393 * Set "use_formatoptions" to FALSE when e.g. processing backspace and comment
4394 * leaders should not be removed.
4395 * When setmark is TRUE, sets the '[ and '] mark, else, the caller is expected
4396 * to set those marks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004398 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 */
4400 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004401do_join(
4402 long count,
4403 int insert_space,
4404 int save_undo,
4405 int use_formatoptions UNUSED,
4406 int setmark)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407{
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004408 char_u *curr = NULL;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004409 char_u *curr_start = NULL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004410 char_u *cend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 char_u *newp;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004412 char_u *spaces; /* number of spaces inserted before a line */
Bram Moolenaard43848c2010-07-14 14:28:26 +02004413 int endcurr1 = NUL;
4414 int endcurr2 = NUL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004415 int currsize = 0; /* size of the current line */
4416 int sumsize = 0; /* size of the long new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 linenr_T t;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004418 colnr_T col = 0;
4419 int ret = OK;
Bram Moolenaar81340392012-06-06 16:12:59 +02004420#if defined(FEAT_COMMENTS) || defined(PROTO)
Bram Moolenaar802053f2012-06-06 23:08:38 +02004421 int *comments = NULL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004422 int remove_comments = (use_formatoptions == TRUE)
4423 && has_format_option(FO_REMOVE_COMS);
4424 int prev_was_comment;
4425#endif
4426
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004428 if (save_undo && u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4429 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4430 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004432 /* Allocate an array to store the number of spaces inserted before each
4433 * line. We will use it to pre-compute the length of the new line and the
4434 * proper placement of each original line in the new one. */
4435 spaces = lalloc_clear((long_u)count, TRUE);
4436 if (spaces == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 return FAIL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004438#if defined(FEAT_COMMENTS) || defined(PROTO)
4439 if (remove_comments)
4440 {
4441 comments = (int *)lalloc_clear((long_u)count * sizeof(int), TRUE);
4442 if (comments == NULL)
4443 {
4444 vim_free(spaces);
4445 return FAIL;
4446 }
4447 }
4448#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449
4450 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004451 * Don't move anything, just compute the final line length
4452 * and setup the array of space strings lengths
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004454 for (t = 0; t < count; ++t)
4455 {
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004456 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t));
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004457 if (t == 0 && setmark)
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004458 {
4459 /* Set the '[ mark. */
4460 curwin->w_buffer->b_op_start.lnum = curwin->w_cursor.lnum;
4461 curwin->w_buffer->b_op_start.col = (colnr_T)STRLEN(curr);
4462 }
Bram Moolenaar81340392012-06-06 16:12:59 +02004463#if defined(FEAT_COMMENTS) || defined(PROTO)
4464 if (remove_comments)
4465 {
4466 /* We don't want to remove the comment leader if the
4467 * previous line is not a comment. */
4468 if (t > 0 && prev_was_comment)
4469 {
4470
4471 char_u *new_curr = skip_comment(curr, TRUE, insert_space,
4472 &prev_was_comment);
Bram Moolenaar27ba0882012-06-07 21:09:39 +02004473 comments[t] = (int)(new_curr - curr);
Bram Moolenaar81340392012-06-06 16:12:59 +02004474 curr = new_curr;
4475 }
4476 else
4477 curr = skip_comment(curr, FALSE, insert_space,
4478 &prev_was_comment);
4479 }
4480#endif
4481
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004482 if (insert_space && t > 0)
4483 {
4484 curr = skipwhite(curr);
4485 if (*curr != ')' && currsize != 0 && endcurr1 != TAB
4486#ifdef FEAT_MBYTE
4487 && (!has_format_option(FO_MBYTE_JOIN)
4488 || (mb_ptr2char(curr) < 0x100 && endcurr1 < 0x100))
4489 && (!has_format_option(FO_MBYTE_JOIN2)
4490 || mb_ptr2char(curr) < 0x100 || endcurr1 < 0x100)
4491#endif
4492 )
4493 {
4494 /* don't add a space if the line is ending in a space */
4495 if (endcurr1 == ' ')
4496 endcurr1 = endcurr2;
4497 else
4498 ++spaces[t];
4499 /* extra space when 'joinspaces' set and line ends in '.' */
4500 if ( p_js
4501 && (endcurr1 == '.'
4502 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4503 && (endcurr1 == '?' || endcurr1 == '!'))))
4504 ++spaces[t];
4505 }
4506 }
4507 currsize = (int)STRLEN(curr);
4508 sumsize += currsize + spaces[t];
4509 endcurr1 = endcurr2 = NUL;
4510 if (insert_space && currsize > 0)
4511 {
4512#ifdef FEAT_MBYTE
4513 if (has_mbyte)
4514 {
4515 cend = curr + currsize;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004516 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004517 endcurr1 = (*mb_ptr2char)(cend);
4518 if (cend > curr)
4519 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004520 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004521 endcurr2 = (*mb_ptr2char)(cend);
4522 }
4523 }
4524 else
4525#endif
4526 {
4527 endcurr1 = *(curr + currsize - 1);
4528 if (currsize > 1)
4529 endcurr2 = *(curr + currsize - 2);
4530 }
4531 }
4532 line_breakcheck();
4533 if (got_int)
4534 {
4535 ret = FAIL;
4536 goto theend;
4537 }
4538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004540 /* store the column position before last line */
4541 col = sumsize - currsize - spaces[count - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004543 /* allocate the space for the new line */
4544 newp = alloc_check((unsigned)(sumsize + 1));
4545 cend = newp + sumsize;
4546 *cend = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004548 /*
4549 * Move affected lines to the new long one.
4550 *
4551 * Move marks from each deleted line to the joined line, adjusting the
4552 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4553 * should not really be a problem.
4554 */
4555 for (t = count - 1; ; --t)
4556 {
4557 cend -= currsize;
4558 mch_memmove(cend, curr, (size_t)currsize);
4559 if (spaces[t] > 0)
4560 {
4561 cend -= spaces[t];
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02004562 vim_memset(cend, ' ', (size_t)(spaces[t]));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004563 }
4564 mark_col_adjust(curwin->w_cursor.lnum + t, (colnr_T)0, (linenr_T)-t,
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004565 (long)(cend - newp + spaces[t] - (curr - curr_start)));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004566 if (t == 0)
4567 break;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004568 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1));
Bram Moolenaar81340392012-06-06 16:12:59 +02004569#if defined(FEAT_COMMENTS) || defined(PROTO)
4570 if (remove_comments)
4571 curr += comments[t - 1];
4572#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004573 if (insert_space && t > 1)
4574 curr = skipwhite(curr);
4575 currsize = (int)STRLEN(curr);
4576 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4578
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004579 if (setmark)
4580 {
4581 /* Set the '] mark. */
4582 curwin->w_buffer->b_op_end.lnum = curwin->w_cursor.lnum;
4583 curwin->w_buffer->b_op_end.col = (colnr_T)STRLEN(newp);
4584 }
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004585
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 /* Only report the change in the first line here, del_lines() will report
4587 * the deleted line. */
4588 changed_lines(curwin->w_cursor.lnum, currsize,
4589 curwin->w_cursor.lnum + 1, 0L);
4590
4591 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004592 * Delete following lines. To do this we move the cursor there
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 * briefly, and then move it back. After del_lines() the cursor may
4594 * have moved up (last line deleted), so the current lnum is kept in t.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 */
4596 t = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597 ++curwin->w_cursor.lnum;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004598 del_lines(count - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 curwin->w_cursor.lnum = t;
4600
4601 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004602 * Set the cursor column:
4603 * Vi compatible: use the column of the first join
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004604 * vim: use the column of the last join
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004606 curwin->w_cursor.col =
4607 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 check_cursor_col();
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004609
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610#ifdef FEAT_VIRTUALEDIT
4611 curwin->w_cursor.coladd = 0;
4612#endif
4613 curwin->w_set_curswant = TRUE;
4614
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004615theend:
4616 vim_free(spaces);
Bram Moolenaar81340392012-06-06 16:12:59 +02004617#if defined(FEAT_COMMENTS) || defined(PROTO)
4618 if (remove_comments)
4619 vim_free(comments);
4620#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004621 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622}
4623
4624#ifdef FEAT_COMMENTS
4625/*
4626 * Return TRUE if the two comment leaders given are the same. "lnum" is
4627 * the first line. White-space is ignored. Note that the whole of
4628 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4629 */
4630 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004631same_leader(
4632 linenr_T lnum,
4633 int leader1_len,
4634 char_u *leader1_flags,
4635 int leader2_len,
4636 char_u *leader2_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637{
4638 int idx1 = 0, idx2 = 0;
4639 char_u *p;
4640 char_u *line1;
4641 char_u *line2;
4642
4643 if (leader1_len == 0)
4644 return (leader2_len == 0);
4645
4646 /*
4647 * If first leader has 'f' flag, the lines can be joined only if the
4648 * second line does not have a leader.
4649 * If first leader has 'e' flag, the lines can never be joined.
4650 * If fist leader has 's' flag, the lines can only be joined if there is
4651 * some text after it and the second line has the 'm' flag.
4652 */
4653 if (leader1_flags != NULL)
4654 {
4655 for (p = leader1_flags; *p && *p != ':'; ++p)
4656 {
4657 if (*p == COM_FIRST)
4658 return (leader2_len == 0);
4659 if (*p == COM_END)
4660 return FALSE;
4661 if (*p == COM_START)
4662 {
4663 if (*(ml_get(lnum) + leader1_len) == NUL)
4664 return FALSE;
4665 if (leader2_flags == NULL || leader2_len == 0)
4666 return FALSE;
4667 for (p = leader2_flags; *p && *p != ':'; ++p)
4668 if (*p == COM_MIDDLE)
4669 return TRUE;
4670 return FALSE;
4671 }
4672 }
4673 }
4674
4675 /*
4676 * Get current line and next line, compare the leaders.
4677 * The first line has to be saved, only one line can be locked at a time.
4678 */
4679 line1 = vim_strsave(ml_get(lnum));
4680 if (line1 != NULL)
4681 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004682 for (idx1 = 0; VIM_ISWHITE(line1[idx1]); ++idx1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683 ;
4684 line2 = ml_get(lnum + 1);
4685 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4686 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004687 if (!VIM_ISWHITE(line2[idx2]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 {
4689 if (line1[idx1++] != line2[idx2])
4690 break;
4691 }
4692 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004693 while (VIM_ISWHITE(line1[idx1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694 ++idx1;
4695 }
4696 vim_free(line1);
4697 }
4698 return (idx2 == leader2_len && idx1 == leader1_len);
4699}
4700#endif
4701
4702/*
Bram Moolenaar66accae2012-01-10 13:44:27 +01004703 * Implementation of the format operator 'gq'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 */
4705 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004706op_format(
4707 oparg_T *oap,
4708 int keep_cursor) /* keep cursor on same text char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709{
4710 long old_line_count = curbuf->b_ml.ml_line_count;
4711
4712 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4713 * can put it back there. */
4714 curwin->w_cursor = oap->cursor_start;
4715
4716 if (u_save((linenr_T)(oap->start.lnum - 1),
4717 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4718 return;
4719 curwin->w_cursor = oap->start;
4720
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 if (oap->is_VIsual)
4722 /* When there is no change: need to remove the Visual selection */
4723 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724
4725 /* Set '[ mark at the start of the formatted area */
4726 curbuf->b_op_start = oap->start;
4727
4728 /* For "gw" remember the cursor position and put it back below (adjusted
4729 * for joined and split lines). */
4730 if (keep_cursor)
4731 saved_cursor = oap->cursor_start;
4732
Bram Moolenaar81a82092008-03-12 16:27:00 +00004733 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734
4735 /*
4736 * Leave the cursor at the first non-blank of the last formatted line.
4737 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4738 * line, so "." will do the next lines.
4739 */
4740 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4741 ++curwin->w_cursor.lnum;
4742 beginline(BL_WHITE | BL_FIX);
4743 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4744 msgmore(old_line_count);
4745
4746 /* put '] mark on the end of the formatted area */
4747 curbuf->b_op_end = curwin->w_cursor;
4748
4749 if (keep_cursor)
4750 {
4751 curwin->w_cursor = saved_cursor;
4752 saved_cursor.lnum = 0;
4753 }
4754
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 if (oap->is_VIsual)
4756 {
4757 win_T *wp;
4758
4759 FOR_ALL_WINDOWS(wp)
4760 {
4761 if (wp->w_old_cursor_lnum != 0)
4762 {
4763 /* When lines have been inserted or deleted, adjust the end of
4764 * the Visual area to be redrawn. */
4765 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4766 wp->w_old_cursor_lnum += old_line_count;
4767 else
4768 wp->w_old_visual_lnum += old_line_count;
4769 }
4770 }
4771 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772}
4773
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004774#if defined(FEAT_EVAL) || defined(PROTO)
4775/*
4776 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4777 */
4778 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004779op_formatexpr(oparg_T *oap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004780{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004781 if (oap->is_VIsual)
4782 /* When there is no change: need to remove the Visual selection */
4783 redraw_curbuf_later(INVERTED);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004784
Bram Moolenaar700303e2010-07-11 17:35:50 +02004785 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0)
4786 /* As documented: when 'formatexpr' returns non-zero fall back to
4787 * internal formatting. */
4788 op_format(oap, FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004789}
4790
4791 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004792fex_format(
4793 linenr_T lnum,
4794 long count,
4795 int c) /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004796{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004797 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4798 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004799 int r;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004800 char_u *fex;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004801
4802 /*
4803 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004804 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004805 */
4806 set_vim_var_nr(VV_LNUM, lnum);
4807 set_vim_var_nr(VV_COUNT, count);
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004808 set_vim_var_char(c);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004809
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004810 /* Make a copy, the option could be changed while calling it. */
4811 fex = vim_strsave(curbuf->b_p_fex);
4812 if (fex == NULL)
4813 return 0;
4814
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004815 /*
4816 * Evaluate the function.
4817 */
4818 if (use_sandbox)
4819 ++sandbox;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004820 r = (int)eval_to_number(fex);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004821 if (use_sandbox)
4822 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004823
4824 set_vim_var_string(VV_CHAR, NULL, -1);
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004825 vim_free(fex);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004826
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004827 return r;
4828}
4829#endif
4830
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831/*
4832 * Format "line_count" lines, starting at the cursor position.
4833 * When "line_count" is negative, format until the end of the paragraph.
4834 * Lines after the cursor line are saved for undo, caller must have saved the
4835 * first line.
4836 */
4837 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004838format_lines(
4839 linenr_T line_count,
4840 int avoid_fex) /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841{
4842 int max_len;
4843 int is_not_par; /* current line not part of parag. */
4844 int next_is_not_par; /* next line not part of paragraph */
4845 int is_end_par; /* at end of paragraph */
4846 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4847 int next_is_start_par = FALSE;
4848#ifdef FEAT_COMMENTS
4849 int leader_len = 0; /* leader len of current line */
4850 int next_leader_len; /* leader len of next line */
4851 char_u *leader_flags = NULL; /* flags for leader of current line */
4852 char_u *next_leader_flags; /* flags for leader of next line */
4853 int do_comments; /* format comments */
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004854 int do_comments_list = 0; /* format comments with 'n' or '2' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855#endif
4856 int advance = TRUE;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004857 int second_indent = -1; /* indent for second line (comment
4858 * aware) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859 int do_second_indent;
4860 int do_number_indent;
4861 int do_trail_white;
4862 int first_par_line = TRUE;
4863 int smd_save;
4864 long count;
4865 int need_set_indent = TRUE; /* set indent of next paragraph */
4866 int force_format = FALSE;
4867 int old_State = State;
4868
4869 /* length of a line to force formatting: 3 * 'tw' */
4870 max_len = comp_textwidth(TRUE) * 3;
4871
4872 /* check for 'q', '2' and '1' in 'formatoptions' */
4873#ifdef FEAT_COMMENTS
4874 do_comments = has_format_option(FO_Q_COMS);
4875#endif
4876 do_second_indent = has_format_option(FO_Q_SECOND);
4877 do_number_indent = has_format_option(FO_Q_NUMBER);
4878 do_trail_white = has_format_option(FO_WHITE_PAR);
4879
4880 /*
4881 * Get info about the previous and current line.
4882 */
4883 if (curwin->w_cursor.lnum > 1)
4884 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4885#ifdef FEAT_COMMENTS
4886 , &leader_len, &leader_flags, do_comments
4887#endif
4888 );
4889 else
4890 is_not_par = TRUE;
4891 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4892#ifdef FEAT_COMMENTS
4893 , &next_leader_len, &next_leader_flags, do_comments
4894#endif
4895 );
4896 is_end_par = (is_not_par || next_is_not_par);
4897 if (!is_end_par && do_trail_white)
4898 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4899
4900 curwin->w_cursor.lnum--;
4901 for (count = line_count; count != 0 && !got_int; --count)
4902 {
4903 /*
4904 * Advance to next paragraph.
4905 */
4906 if (advance)
4907 {
4908 curwin->w_cursor.lnum++;
4909 prev_is_end_par = is_end_par;
4910 is_not_par = next_is_not_par;
4911#ifdef FEAT_COMMENTS
4912 leader_len = next_leader_len;
4913 leader_flags = next_leader_flags;
4914#endif
4915 }
4916
4917 /*
4918 * The last line to be formatted.
4919 */
4920 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4921 {
4922 next_is_not_par = TRUE;
4923#ifdef FEAT_COMMENTS
4924 next_leader_len = 0;
4925 next_leader_flags = NULL;
4926#endif
4927 }
4928 else
4929 {
4930 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4931#ifdef FEAT_COMMENTS
4932 , &next_leader_len, &next_leader_flags, do_comments
4933#endif
4934 );
4935 if (do_number_indent)
4936 next_is_start_par =
4937 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4938 }
4939 advance = TRUE;
4940 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4941 if (!is_end_par && do_trail_white)
4942 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4943
4944 /*
4945 * Skip lines that are not in a paragraph.
4946 */
4947 if (is_not_par)
4948 {
4949 if (line_count < 0)
4950 break;
4951 }
4952 else
4953 {
4954 /*
4955 * For the first line of a paragraph, check indent of second line.
4956 * Don't do this for comments and empty lines.
4957 */
4958 if (first_par_line
4959 && (do_second_indent || do_number_indent)
4960 && prev_is_end_par
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004961 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004963 if (do_second_indent && !LINEEMPTY(curwin->w_cursor.lnum + 1))
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004964 {
4965#ifdef FEAT_COMMENTS
4966 if (leader_len == 0 && next_leader_len == 0)
4967 {
4968 /* no comment found */
4969#endif
4970 second_indent =
4971 get_indent_lnum(curwin->w_cursor.lnum + 1);
4972#ifdef FEAT_COMMENTS
4973 }
4974 else
4975 {
4976 second_indent = next_leader_len;
4977 do_comments_list = 1;
4978 }
4979#endif
4980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 else if (do_number_indent)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004982 {
4983#ifdef FEAT_COMMENTS
4984 if (leader_len == 0 && next_leader_len == 0)
4985 {
4986 /* no comment found */
4987#endif
4988 second_indent =
4989 get_number_indent(curwin->w_cursor.lnum);
4990#ifdef FEAT_COMMENTS
4991 }
4992 else
4993 {
4994 /* get_number_indent() is now "comment aware"... */
4995 second_indent =
4996 get_number_indent(curwin->w_cursor.lnum);
4997 do_comments_list = 1;
4998 }
4999#endif
5000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 }
5002
5003 /*
5004 * When the comment leader changes, it's the end of the paragraph.
5005 */
5006 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
5007#ifdef FEAT_COMMENTS
5008 || !same_leader(curwin->w_cursor.lnum,
5009 leader_len, leader_flags,
5010 next_leader_len, next_leader_flags)
5011#endif
5012 )
5013 is_end_par = TRUE;
5014
5015 /*
5016 * If we have got to the end of a paragraph, or the line is
5017 * getting long, format it.
5018 */
5019 if (is_end_par || force_format)
5020 {
5021 if (need_set_indent)
5022 /* replace indent in first line with minimal number of
5023 * tabs and spaces, according to current options */
5024 (void)set_indent(get_indent(), SIN_CHANGED);
5025
5026 /* put cursor on last non-space */
5027 State = NORMAL; /* don't go past end-of-line */
5028 coladvance((colnr_T)MAXCOL);
5029 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
5030 dec_cursor();
5031
5032 /* do the formatting, without 'showmode' */
5033 State = INSERT; /* for open_line() */
5034 smd_save = p_smd;
5035 p_smd = FALSE;
5036 insertchar(NUL, INSCHAR_FORMAT
5037#ifdef FEAT_COMMENTS
5038 + (do_comments ? INSCHAR_DO_COM : 0)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005039 + (do_comments && do_comments_list
5040 ? INSCHAR_COM_LIST : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00005042 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 State = old_State;
5044 p_smd = smd_save;
5045 second_indent = -1;
5046 /* at end of par.: need to set indent of next par. */
5047 need_set_indent = is_end_par;
5048 if (is_end_par)
5049 {
5050 /* When called with a negative line count, break at the
5051 * end of the paragraph. */
5052 if (line_count < 0)
5053 break;
5054 first_par_line = TRUE;
5055 }
5056 force_format = FALSE;
5057 }
5058
5059 /*
5060 * When still in same paragraph, join the lines together. But
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005061 * first delete the leader from the second line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 */
5063 if (!is_end_par)
5064 {
5065 advance = FALSE;
5066 curwin->w_cursor.lnum++;
5067 curwin->w_cursor.col = 0;
5068 if (line_count < 0 && u_save_cursor() == FAIL)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02005069 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070#ifdef FEAT_COMMENTS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 if (next_leader_len > 0)
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005072 {
5073 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
5075 (long)-next_leader_len);
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005076 } else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077#endif
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005078 if (second_indent > 0) /* the "leader" for FO_Q_SECOND */
5079 {
Bram Moolenaare2e69e42017-09-02 20:30:35 +02005080 int indent = getwhitecols_curline();
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005081
5082 if (indent > 0)
5083 {
5084 (void)del_bytes(indent, FALSE, FALSE);
5085 mark_col_adjust(curwin->w_cursor.lnum,
5086 (colnr_T)0, 0L, (long)-indent);
Bram Moolenaar92c2db82013-11-02 23:59:35 +01005087 }
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005088 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 curwin->w_cursor.lnum--;
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02005090 if (do_join(2, TRUE, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 {
5092 beep_flush();
5093 break;
5094 }
5095 first_par_line = FALSE;
5096 /* If the line is getting long, format it next time */
5097 if (STRLEN(ml_get_curline()) > (size_t)max_len)
5098 force_format = TRUE;
5099 else
5100 force_format = FALSE;
5101 }
5102 }
5103 line_breakcheck();
5104 }
5105}
5106
5107/*
5108 * Return TRUE if line "lnum" ends in a white character.
5109 */
5110 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005111ends_in_white(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112{
5113 char_u *s = ml_get(lnum);
5114 size_t l;
5115
5116 if (*s == NUL)
5117 return FALSE;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005118 /* Don't use STRLEN() inside VIM_ISWHITE(), SAS/C complains: "macro
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 * invocation may call function multiple times". */
5120 l = STRLEN(s) - 1;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005121 return VIM_ISWHITE(s[l]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122}
5123
5124/*
5125 * Blank lines, and lines containing only the comment leader, are left
5126 * untouched by the formatting. The function returns TRUE in this
5127 * case. It also returns TRUE when a line starts with the end of a comment
5128 * ('e' in comment flags), so that this line is skipped, and not joined to the
5129 * previous line. A new paragraph starts after a blank line, or when the
5130 * comment leader changes -- webb.
5131 */
5132#ifdef FEAT_COMMENTS
5133 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005134fmt_check_par(
5135 linenr_T lnum,
5136 int *leader_len,
5137 char_u **leader_flags,
5138 int do_comments)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139{
5140 char_u *flags = NULL; /* init for GCC */
5141 char_u *ptr;
5142
5143 ptr = ml_get(lnum);
5144 if (do_comments)
Bram Moolenaar81340392012-06-06 16:12:59 +02005145 *leader_len = get_leader_len(ptr, leader_flags, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 else
5147 *leader_len = 0;
5148
5149 if (*leader_len > 0)
5150 {
5151 /*
5152 * Search for 'e' flag in comment leader flags.
5153 */
5154 flags = *leader_flags;
5155 while (*flags && *flags != ':' && *flags != COM_END)
5156 ++flags;
5157 }
5158
5159 return (*skipwhite(ptr + *leader_len) == NUL
5160 || (*leader_len > 0 && *flags == COM_END)
5161 || startPS(lnum, NUL, FALSE));
5162}
5163#else
5164 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005165fmt_check_par(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166{
5167 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
5168}
5169#endif
5170
5171/*
5172 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
5173 * previous line is in the same paragraph. Used for auto-formatting.
5174 */
5175 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005176paragraph_start(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177{
5178 char_u *p;
5179#ifdef FEAT_COMMENTS
5180 int leader_len = 0; /* leader len of current line */
5181 char_u *leader_flags = NULL; /* flags for leader of current line */
5182 int next_leader_len; /* leader len of next line */
5183 char_u *next_leader_flags; /* flags for leader of next line */
5184 int do_comments; /* format comments */
5185#endif
5186
5187 if (lnum <= 1)
5188 return TRUE; /* start of the file */
5189
5190 p = ml_get(lnum - 1);
5191 if (*p == NUL)
5192 return TRUE; /* after empty line */
5193
5194#ifdef FEAT_COMMENTS
5195 do_comments = has_format_option(FO_Q_COMS);
5196#endif
5197 if (fmt_check_par(lnum - 1
5198#ifdef FEAT_COMMENTS
5199 , &leader_len, &leader_flags, do_comments
5200#endif
5201 ))
5202 return TRUE; /* after non-paragraph line */
5203
5204 if (fmt_check_par(lnum
5205#ifdef FEAT_COMMENTS
5206 , &next_leader_len, &next_leader_flags, do_comments
5207#endif
5208 ))
5209 return TRUE; /* "lnum" is not a paragraph line */
5210
5211 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
5212 return TRUE; /* missing trailing space in previous line. */
5213
5214 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
5215 return TRUE; /* numbered item starts in "lnum". */
5216
5217#ifdef FEAT_COMMENTS
5218 if (!same_leader(lnum - 1, leader_len, leader_flags,
5219 next_leader_len, next_leader_flags))
5220 return TRUE; /* change of comment leader. */
5221#endif
5222
5223 return FALSE;
5224}
5225
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226/*
5227 * prepare a few things for block mode yank/delete/tilde
5228 *
5229 * for delete:
5230 * - textlen includes the first/last char to be (partly) deleted
5231 * - start/endspaces is the number of columns that are taken by the
5232 * first/last deleted char minus the number of columns that have to be
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +00005233 * deleted.
5234 * for yank and tilde:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 * - textlen includes the first/last char to be wholly yanked
5236 * - start/endspaces is the number of columns of the first/last yanked char
5237 * that are to be yanked.
5238 */
5239 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005240block_prep(
5241 oparg_T *oap,
5242 struct block_def *bdp,
5243 linenr_T lnum,
5244 int is_del)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245{
5246 int incr = 0;
5247 char_u *pend;
5248 char_u *pstart;
5249 char_u *line;
5250 char_u *prev_pstart;
5251 char_u *prev_pend;
5252
5253 bdp->startspaces = 0;
5254 bdp->endspaces = 0;
5255 bdp->textlen = 0;
5256 bdp->start_vcol = 0;
5257 bdp->end_vcol = 0;
5258#ifdef FEAT_VISUALEXTRA
5259 bdp->is_short = FALSE;
5260 bdp->is_oneChar = FALSE;
5261 bdp->pre_whitesp = 0;
5262 bdp->pre_whitesp_c = 0;
5263 bdp->end_char_vcols = 0;
5264#endif
5265 bdp->start_char_vcols = 0;
5266
5267 line = ml_get(lnum);
5268 pstart = line;
5269 prev_pstart = line;
5270 while (bdp->start_vcol < oap->start_vcol && *pstart)
5271 {
5272 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02005273 incr = lbr_chartabsize(line, pstart, (colnr_T)bdp->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 bdp->start_vcol += incr;
5275#ifdef FEAT_VISUALEXTRA
Bram Moolenaar1c465442017-03-12 20:10:05 +01005276 if (VIM_ISWHITE(*pstart))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 {
5278 bdp->pre_whitesp += incr;
5279 bdp->pre_whitesp_c++;
5280 }
5281 else
5282 {
5283 bdp->pre_whitesp = 0;
5284 bdp->pre_whitesp_c = 0;
5285 }
5286#endif
5287 prev_pstart = pstart;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005288 MB_PTR_ADV(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289 }
5290 bdp->start_char_vcols = incr;
5291 if (bdp->start_vcol < oap->start_vcol) /* line too short */
5292 {
5293 bdp->end_vcol = bdp->start_vcol;
5294#ifdef FEAT_VISUALEXTRA
5295 bdp->is_short = TRUE;
5296#endif
5297 if (!is_del || oap->op_type == OP_APPEND)
5298 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
5299 }
5300 else
5301 {
5302 /* notice: this converts partly selected Multibyte characters to
5303 * spaces, too. */
5304 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
5305 if (is_del && bdp->startspaces)
5306 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
5307 pend = pstart;
5308 bdp->end_vcol = bdp->start_vcol;
5309 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
5310 {
5311#ifdef FEAT_VISUALEXTRA
5312 bdp->is_oneChar = TRUE;
5313#endif
5314 if (oap->op_type == OP_INSERT)
5315 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5316 else if (oap->op_type == OP_APPEND)
5317 {
5318 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
5319 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5320 }
5321 else
5322 {
5323 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
5324 if (is_del && oap->op_type != OP_LSHIFT)
5325 {
5326 /* just putting the sum of those two into
5327 * bdp->startspaces doesn't work for Visual replace,
5328 * so we have to split the tab in two */
5329 bdp->startspaces = bdp->start_char_vcols
5330 - (bdp->start_vcol - oap->start_vcol);
5331 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5332 }
5333 }
5334 }
5335 else
5336 {
5337 prev_pend = pend;
5338 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
5339 {
5340 /* Count a tab for what it's worth (if list mode not on) */
5341 prev_pend = pend;
Bram Moolenaar1dc92332015-01-27 13:22:20 +01005342 incr = lbr_chartabsize_adv(line, &pend, (colnr_T)bdp->end_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005343 bdp->end_vcol += incr;
5344 }
5345 if (bdp->end_vcol <= oap->end_vcol
5346 && (!is_del
5347 || oap->op_type == OP_APPEND
5348 || oap->op_type == OP_REPLACE)) /* line too short */
5349 {
5350#ifdef FEAT_VISUALEXTRA
5351 bdp->is_short = TRUE;
5352#endif
5353 /* Alternative: include spaces to fill up the block.
5354 * Disadvantage: can lead to trailing spaces when the line is
5355 * short where the text is put */
5356 /* if (!is_del || oap->op_type == OP_APPEND) */
5357 if (oap->op_type == OP_APPEND || virtual_op)
5358 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00005359 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 else
5361 bdp->endspaces = 0; /* replace doesn't add characters */
5362 }
5363 else if (bdp->end_vcol > oap->end_vcol)
5364 {
5365 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5366 if (!is_del && bdp->endspaces)
5367 {
5368 bdp->endspaces = incr - bdp->endspaces;
5369 if (pend != pstart)
5370 pend = prev_pend;
5371 }
5372 }
5373 }
5374#ifdef FEAT_VISUALEXTRA
5375 bdp->end_char_vcols = incr;
5376#endif
5377 if (is_del && bdp->startspaces)
5378 pstart = prev_pstart;
5379 bdp->textlen = (int)(pend - pstart);
5380 }
5381 bdp->textcol = (colnr_T) (pstart - line);
5382 bdp->textstart = pstart;
5383}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385/*
Bram Moolenaard79e5502016-01-10 22:13:02 +01005386 * Handle the add/subtract operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005388 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005389op_addsub(
5390 oparg_T *oap,
5391 linenr_T Prenum1, /* Amount of add/subtract */
5392 int g_cmd) /* was g<c-a>/g<c-x> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393{
Bram Moolenaard79e5502016-01-10 22:13:02 +01005394 pos_T pos;
5395 struct block_def bd;
5396 int change_cnt = 0;
5397 linenr_T amount = Prenum1;
5398
5399 if (!VIsual_active)
5400 {
5401 pos = curwin->w_cursor;
5402 if (u_save_cursor() == FAIL)
5403 return;
5404 change_cnt = do_addsub(oap->op_type, &pos, 0, amount);
5405 if (change_cnt)
5406 changed_lines(pos.lnum, 0, pos.lnum + 1, 0L);
5407 }
5408 else
5409 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005410 int one_change;
5411 int length;
5412 pos_T startpos;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005413
5414 if (u_save((linenr_T)(oap->start.lnum - 1),
5415 (linenr_T)(oap->end.lnum + 1)) == FAIL)
5416 return;
5417
5418 pos = oap->start;
5419 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
5420 {
5421 if (oap->block_mode) /* Visual block mode */
5422 {
5423 block_prep(oap, &bd, pos.lnum, FALSE);
5424 pos.col = bd.textcol;
5425 length = bd.textlen;
5426 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005427 else if (oap->motion_type == MLINE)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005428 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005429 curwin->w_cursor.col = 0;
5430 pos.col = 0;
5431 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5432 }
5433 else /* oap->motion_type == MCHAR */
5434 {
5435 if (!oap->inclusive)
5436 dec(&(oap->end));
5437 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5438 pos.col = 0;
5439 if (pos.lnum == oap->start.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005440 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005441 pos.col += oap->start.col;
5442 length -= oap->start.col;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005443 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005444 if (pos.lnum == oap->end.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005445 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005446 length = (int)STRLEN(ml_get(oap->end.lnum));
5447 if (oap->end.col >= length)
5448 oap->end.col = length - 1;
5449 length = oap->end.col - pos.col + 1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005450 }
5451 }
5452 one_change = do_addsub(oap->op_type, &pos, length, amount);
5453 if (one_change)
5454 {
5455 /* Remember the start position of the first change. */
5456 if (change_cnt == 0)
5457 startpos = curbuf->b_op_start;
5458 ++change_cnt;
5459 }
5460
5461#ifdef FEAT_NETBEANS_INTG
5462 if (netbeans_active() && one_change)
5463 {
5464 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
5465
5466 netbeans_removed(curbuf, pos.lnum, pos.col, (long)length);
5467 netbeans_inserted(curbuf, pos.lnum, pos.col,
5468 &ptr[pos.col], length);
5469 }
5470#endif
5471 if (g_cmd && one_change)
5472 amount += Prenum1;
5473 }
5474 if (change_cnt)
5475 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
5476
5477 if (!change_cnt && oap->is_VIsual)
5478 /* No change: need to remove the Visual selection */
5479 redraw_curbuf_later(INVERTED);
5480
5481 /* Set '[ mark if something changed. Keep the last end
5482 * position from do_addsub(). */
5483 if (change_cnt > 0)
5484 curbuf->b_op_start = startpos;
5485
5486 if (change_cnt > p_report)
5487 {
5488 if (change_cnt == 1)
5489 MSG(_("1 line changed"));
5490 else
5491 smsg((char_u *)_("%ld lines changed"), change_cnt);
5492 }
5493 }
5494}
5495
5496/*
5497 * Add or subtract 'Prenum1' from a number in a line
5498 * op_type is OP_NR_ADD or OP_NR_SUB
5499 *
5500 * Returns TRUE if some character was changed.
5501 */
5502 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005503do_addsub(
5504 int op_type,
5505 pos_T *pos,
5506 int length,
5507 linenr_T Prenum1)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005508{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509 int col;
5510 char_u *buf1;
5511 char_u buf2[NUMBUFLEN];
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005512 int pre; /* 'X'/'x': hex; '0': octal; 'B'/'b': bin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005514 uvarnumber_T n;
5515 uvarnumber_T oldn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 char_u *ptr;
5517 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518 int todel;
5519 int dohex;
5520 int dooct;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005521 int dobin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 int doalp;
5523 int firstdigit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 int subtract;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005525 int negative = FALSE;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02005526 int was_positive = TRUE;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005527 int visual = VIsual_active;
Bram Moolenaar3ec32612015-07-12 15:02:38 +02005528 int did_change = FALSE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005529 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005530 int maxlen = 0;
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005531 pos_T startpos;
5532 pos_T endpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005533
5534 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5535 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005536 dobin = (vim_strchr(curbuf->b_p_nf, 'b') != NULL); /* "Bin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5538
Bram Moolenaard79e5502016-01-10 22:13:02 +01005539 curwin->w_cursor = *pos;
5540 ptr = ml_get(pos->lnum);
5541 col = pos->col;
5542
5543 if (*ptr == NUL)
5544 goto theend;
5545
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 /*
5547 * First check if we are on a hexadecimal number, after the "0x".
5548 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005549 if (!VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005551 if (dobin)
5552 while (col > 0 && vim_isbdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005553 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005554 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005555#ifdef FEAT_MBYTE
5556 if (has_mbyte)
5557 col -= (*mb_head_off)(ptr, ptr + col);
5558#endif
5559 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005560
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005561 if (dohex)
5562 while (col > 0 && vim_isxdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005563 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005564 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005565#ifdef FEAT_MBYTE
5566 if (has_mbyte)
5567 col -= (*mb_head_off)(ptr, ptr + col);
5568#endif
5569 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005570
5571 if ( dobin
5572 && dohex
5573 && ! ((col > 0
5574 && (ptr[col] == 'X'
5575 || ptr[col] == 'x')
5576 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005577#ifdef FEAT_MBYTE
5578 && (!has_mbyte ||
5579 !(*mb_head_off)(ptr, ptr + col - 1))
5580#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005581 && vim_isxdigit(ptr[col + 1]))))
5582 {
5583
5584 /* In case of binary/hexadecimal pattern overlap match, rescan */
5585
Bram Moolenaard79e5502016-01-10 22:13:02 +01005586 col = pos->col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005587
5588 while (col > 0 && vim_isdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005589 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005590 col--;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005591#ifdef FEAT_MBYTE
5592 if (has_mbyte)
5593 col -= (*mb_head_off)(ptr, ptr + col);
5594#endif
5595 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005596 }
5597
5598 if (( dohex
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005599 && col > 0
5600 && (ptr[col] == 'X'
5601 || ptr[col] == 'x')
5602 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005603#ifdef FEAT_MBYTE
5604 && (!has_mbyte ||
5605 !(*mb_head_off)(ptr, ptr + col - 1))
5606#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005607 && vim_isxdigit(ptr[col + 1])) ||
5608 ( dobin
5609 && col > 0
5610 && (ptr[col] == 'B'
5611 || ptr[col] == 'b')
5612 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005613#ifdef FEAT_MBYTE
5614 && (!has_mbyte ||
5615 !(*mb_head_off)(ptr, ptr + col - 1))
5616#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005617 && vim_isbdigit(ptr[col + 1])))
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005618 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005619 /* Found hexadecimal or binary number, move to its start. */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005620 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005621#ifdef FEAT_MBYTE
5622 if (has_mbyte)
5623 col -= (*mb_head_off)(ptr, ptr + col);
5624#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005625 }
5626 else
5627 {
5628 /*
5629 * Search forward and then backward to find the start of number.
5630 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005631 col = pos->col;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005632
5633 while (ptr[col] != NUL
5634 && !vim_isdigit(ptr[col])
5635 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005636 col += MB_PTR2LEN(ptr + col);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005637
5638 while (col > 0
5639 && vim_isdigit(ptr[col - 1])
5640 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005641 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005642 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005643#ifdef FEAT_MBYTE
5644 if (has_mbyte)
5645 col -= (*mb_head_off)(ptr, ptr + col);
5646#endif
5647 }
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005648 }
5649 }
5650
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005651 if (visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005652 {
5653 while (ptr[col] != NUL && length > 0
5654 && !vim_isdigit(ptr[col])
5655 && !(doalp && ASCII_ISALPHA(ptr[col])))
5656 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005657 int mb_len = MB_PTR2LEN(ptr + col);
5658
5659 col += mb_len;
5660 length -= mb_len;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005661 }
5662
5663 if (length == 0)
5664 goto theend;
5665
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005666 if (col > pos->col && ptr[col - 1] == '-'
5667#ifdef FEAT_MBYTE
5668 && (!has_mbyte ||
5669 !(*mb_head_off)(ptr, ptr + col - 1))
5670#endif
5671 )
Bram Moolenaard79e5502016-01-10 22:13:02 +01005672 {
5673 negative = TRUE;
5674 was_positive = FALSE;
5675 }
5676 }
5677
5678 /*
5679 * If a number was found, and saving for undo works, replace the number.
5680 */
5681 firstdigit = ptr[col];
5682 if (!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5683 {
5684 beep_flush();
5685 goto theend;
5686 }
5687
5688 if (doalp && ASCII_ISALPHA(firstdigit))
5689 {
5690 /* decrement or increment alphabetic character */
5691 if (op_type == OP_NR_SUB)
5692 {
5693 if (CharOrd(firstdigit) < Prenum1)
5694 {
5695 if (isupper(firstdigit))
5696 firstdigit = 'A';
5697 else
5698 firstdigit = 'a';
5699 }
5700 else
5701#ifdef EBCDIC
5702 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5703#else
5704 firstdigit -= Prenum1;
5705#endif
5706 }
5707 else
5708 {
5709 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5710 {
5711 if (isupper(firstdigit))
5712 firstdigit = 'Z';
5713 else
5714 firstdigit = 'z';
5715 }
5716 else
5717#ifdef EBCDIC
5718 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5719#else
5720 firstdigit += Prenum1;
5721#endif
5722 }
5723 curwin->w_cursor.col = col;
5724 if (!did_change)
5725 startpos = curwin->w_cursor;
5726 did_change = TRUE;
5727 (void)del_char(FALSE);
5728 ins_char(firstdigit);
5729 endpos = curwin->w_cursor;
5730 curwin->w_cursor.col = col;
5731 }
5732 else
5733 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005734 if (col > 0 && ptr[col - 1] == '-'
5735#ifdef FEAT_MBYTE
5736 && (!has_mbyte ||
5737 !(*mb_head_off)(ptr, ptr + col - 1))
5738#endif
5739 && !visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005740 {
5741 /* negative number */
5742 --col;
5743 negative = TRUE;
5744 }
5745 /* get the number value (unsigned) */
5746 if (visual && VIsual_mode != 'V')
5747 maxlen = (curbuf->b_visual.vi_curswant == MAXCOL
5748 ? (int)STRLEN(ptr) - col
5749 : length);
5750
5751 vim_str2nr(ptr + col, &pre, &length,
5752 0 + (dobin ? STR2NR_BIN : 0)
5753 + (dooct ? STR2NR_OCT : 0)
5754 + (dohex ? STR2NR_HEX : 0),
5755 NULL, &n, maxlen);
5756
5757 /* ignore leading '-' for hex and octal and bin numbers */
5758 if (pre && negative)
5759 {
5760 ++col;
5761 --length;
5762 negative = FALSE;
5763 }
5764 /* add or subtract */
5765 subtract = FALSE;
5766 if (op_type == OP_NR_SUB)
5767 subtract ^= TRUE;
5768 if (negative)
5769 subtract ^= TRUE;
5770
5771 oldn = n;
5772 if (subtract)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005773 n -= (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005774 else
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005775 n += (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005776 /* handle wraparound for decimal numbers */
5777 if (!pre)
5778 {
5779 if (subtract)
5780 {
5781 if (n > oldn)
5782 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005783 n = 1 + (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005784 negative ^= TRUE;
5785 }
5786 }
5787 else
5788 {
5789 /* add */
5790 if (n < oldn)
5791 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005792 n = (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005793 negative ^= TRUE;
5794 }
5795 }
5796 if (n == 0)
5797 negative = FALSE;
5798 }
5799
5800 if (visual && !was_positive && !negative && col > 0)
5801 {
5802 /* need to remove the '-' */
5803 col--;
5804 length++;
5805 }
5806
5807 /*
5808 * Delete the old number.
5809 */
5810 curwin->w_cursor.col = col;
5811 if (!did_change)
5812 startpos = curwin->w_cursor;
5813 did_change = TRUE;
5814 todel = length;
5815 c = gchar_cursor();
5816 /*
5817 * Don't include the '-' in the length, only the length of the
5818 * part after it is kept the same.
5819 */
5820 if (c == '-')
5821 --length;
5822 while (todel-- > 0)
5823 {
5824 if (c < 0x100 && isalpha(c))
5825 {
5826 if (isupper(c))
5827 hexupper = TRUE;
5828 else
5829 hexupper = FALSE;
5830 }
5831 /* del_char() will mark line needing displaying */
5832 (void)del_char(FALSE);
5833 c = gchar_cursor();
5834 }
5835
5836 /*
5837 * Prepare the leading characters in buf1[].
5838 * When there are many leading zeros it could be very long.
5839 * Allocate a bit too much.
5840 */
5841 buf1 = alloc((unsigned)length + NUMBUFLEN);
5842 if (buf1 == NULL)
5843 goto theend;
5844 ptr = buf1;
Bram Moolenaardc633cf2016-04-23 14:33:19 +02005845 if (negative && (!visual || was_positive))
Bram Moolenaard79e5502016-01-10 22:13:02 +01005846 {
5847 *ptr++ = '-';
5848 }
5849 if (pre)
5850 {
5851 *ptr++ = '0';
5852 --length;
5853 }
5854 if (pre == 'b' || pre == 'B' ||
5855 pre == 'x' || pre == 'X')
5856 {
5857 *ptr++ = pre;
5858 --length;
5859 }
5860
5861 /*
5862 * Put the number characters in buf2[].
5863 */
5864 if (pre == 'b' || pre == 'B')
5865 {
5866 int i;
5867 int bit = 0;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005868 int bits = sizeof(uvarnumber_T) * 8;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005869
5870 /* leading zeros */
5871 for (bit = bits; bit > 0; bit--)
5872 if ((n >> (bit - 1)) & 0x1) break;
5873
5874 for (i = 0; bit > 0; bit--)
5875 buf2[i++] = ((n >> (bit - 1)) & 0x1) ? '1' : '0';
5876
5877 buf2[i] = '\0';
5878 }
5879 else if (pre == 0)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005880 vim_snprintf((char *)buf2, NUMBUFLEN, "%llu", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005881 else if (pre == '0')
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005882 vim_snprintf((char *)buf2, NUMBUFLEN, "%llo", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005883 else if (pre && hexupper)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005884 vim_snprintf((char *)buf2, NUMBUFLEN, "%llX", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005885 else
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005886 vim_snprintf((char *)buf2, NUMBUFLEN, "%llx", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005887 length -= (int)STRLEN(buf2);
5888
5889 /*
5890 * Adjust number of zeros to the new number of digits, so the
5891 * total length of the number remains the same.
5892 * Don't do this when
5893 * the result may look like an octal number.
5894 */
5895 if (firstdigit == '0' && !(dooct && pre == 0))
5896 while (length-- > 0)
5897 *ptr++ = '0';
5898 *ptr = NUL;
5899 STRCAT(buf1, buf2);
5900 ins_str(buf1); /* insert the new number */
5901 vim_free(buf1);
5902 endpos = curwin->w_cursor;
5903 if (did_change && curwin->w_cursor.col)
5904 --curwin->w_cursor.col;
5905 }
5906
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005907 if (did_change)
5908 {
5909 /* set the '[ and '] marks */
5910 curbuf->b_op_start = startpos;
5911 curbuf->b_op_end = endpos;
5912 if (curbuf->b_op_end.col > 0)
5913 --curbuf->b_op_end.col;
5914 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01005915
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005916theend:
5917 if (visual)
5918 curwin->w_cursor = save_cursor;
Bram Moolenaar8e081252016-03-21 23:13:32 +01005919 else if (did_change)
5920 curwin->w_set_curswant = TRUE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005921
Bram Moolenaard79e5502016-01-10 22:13:02 +01005922 return did_change;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923}
5924
5925#ifdef FEAT_VIMINFO
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005926
5927static yankreg_T *y_read_regs = NULL;
5928
5929#define REG_PREVIOUS 1
5930#define REG_EXEC 2
5931
5932/*
5933 * Prepare for reading viminfo registers when writing viminfo later.
5934 */
5935 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02005936prepare_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005937{
5938 y_read_regs = (yankreg_T *)alloc_clear(NUM_REGISTERS
5939 * (int)sizeof(yankreg_T));
5940}
5941
5942 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02005943finish_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005944{
5945 int i;
5946 int j;
5947
5948 if (y_read_regs != NULL)
5949 {
5950 for (i = 0; i < NUM_REGISTERS; ++i)
5951 if (y_read_regs[i].y_array != NULL)
5952 {
5953 for (j = 0; j < y_read_regs[i].y_size; j++)
5954 vim_free(y_read_regs[i].y_array[j]);
5955 vim_free(y_read_regs[i].y_array);
5956 }
5957 vim_free(y_read_regs);
5958 y_read_regs = NULL;
5959 }
5960}
5961
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005963read_viminfo_register(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005964{
5965 int eof;
5966 int do_it = TRUE;
5967 int size;
5968 int limit;
5969 int i;
5970 int set_prev = FALSE;
5971 char_u *str;
5972 char_u **array = NULL;
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01005973 int new_type = MCHAR; /* init to shut up compiler */
5974 colnr_T new_width = 0; /* init to shut up compiler */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975
5976 /* We only get here (hopefully) if line[0] == '"' */
5977 str = virp->vir_line + 1;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005978
5979 /* If the line starts with "" this is the y_previous register. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005980 if (*str == '"')
5981 {
5982 set_prev = TRUE;
5983 str++;
5984 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00005985
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986 if (!ASCII_ISALNUM(*str) && *str != '-')
5987 {
5988 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5989 return TRUE; /* too many errors, pretend end-of-file */
5990 do_it = FALSE;
5991 }
5992 get_yank_register(*str++, FALSE);
5993 if (!force && y_current->y_array != NULL)
5994 do_it = FALSE;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005995
5996 if (*str == '@')
5997 {
5998 /* "x@: register x used for @@ */
5999 if (force || execreg_lastc == NUL)
6000 execreg_lastc = str[-1];
6001 }
6002
Bram Moolenaar071d4272004-06-13 20:20:40 +00006003 size = 0;
6004 limit = 100; /* Optimized for registers containing <= 100 lines */
6005 if (do_it)
6006 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006007 /*
6008 * Build the new register in array[].
6009 * y_array is kept as-is until done.
6010 * The "do_it" flag is reset when something is wrong, in which case
6011 * array[] needs to be freed.
6012 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013 if (set_prev)
6014 y_previous = y_current;
Bram Moolenaare88b0032014-12-17 21:00:49 +01006015 array = (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
Bram Moolenaar42b94362009-05-26 16:12:37 +00006016 str = skipwhite(skiptowhite(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006017 if (STRNCMP(str, "CHAR", 4) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006018 new_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019 else if (STRNCMP(str, "BLOCK", 5) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006020 new_type = MBLOCK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006021 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006022 new_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006023 /* get the block width; if it's missing we get a zero, which is OK */
6024 str = skipwhite(skiptowhite(str));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006025 new_width = getdigits(&str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026 }
6027
6028 while (!(eof = viminfo_readline(virp))
6029 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
6030 {
6031 if (do_it)
6032 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006033 if (size == limit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006034 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006035 char_u **new_array = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006036 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006037
6038 if (new_array == NULL)
6039 {
6040 do_it = FALSE;
6041 break;
6042 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043 for (i = 0; i < limit; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006044 new_array[i] = array[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006045 vim_free(array);
Bram Moolenaare88b0032014-12-17 21:00:49 +01006046 array = new_array;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006047 limit *= 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006048 }
6049 str = viminfo_readstring(virp, 1, TRUE);
6050 if (str != NULL)
6051 array[size++] = str;
6052 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006053 /* error, don't store the result */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054 do_it = FALSE;
6055 }
6056 }
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01006057
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058 if (do_it)
6059 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006060 /* free y_array[] */
6061 for (i = 0; i < y_current->y_size; i++)
6062 vim_free(y_current->y_array[i]);
6063 vim_free(y_current->y_array);
6064
6065 y_current->y_type = new_type;
6066 y_current->y_width = new_width;
6067 y_current->y_size = size;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006068 y_current->y_time_set = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006069 if (size == 0)
6070 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071 y_current->y_array = NULL;
6072 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006073 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006075 /* Move the lines from array[] to y_array[]. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006076 y_current->y_array =
6077 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
6078 for (i = 0; i < size; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006079 {
6080 if (y_current->y_array == NULL)
6081 vim_free(array[i]);
6082 else
6083 y_current->y_array[i] = array[i];
6084 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006086 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006087 else
6088 {
6089 /* Free array[] if it was filled. */
6090 for (i = 0; i < size; i++)
6091 vim_free(array[i]);
6092 }
6093 vim_free(array);
6094
Bram Moolenaar071d4272004-06-13 20:20:40 +00006095 return eof;
6096}
6097
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006098/*
6099 * Accept a new style register line from the viminfo, store it when it's new.
6100 */
6101 void
6102handle_viminfo_register(garray_T *values, int force)
6103{
6104 bval_T *vp = (bval_T *)values->ga_data;
6105 int flags;
6106 int name;
6107 int type;
6108 int linecount;
6109 int width;
6110 time_t timestamp;
6111 yankreg_T *y_ptr;
6112 int i;
6113
6114 /* Check the format:
6115 * |{bartype},{flags},{name},{type},
6116 * {linecount},{width},{timestamp},"line1","line2"
6117 */
6118 if (values->ga_len < 6
6119 || vp[0].bv_type != BVAL_NR
6120 || vp[1].bv_type != BVAL_NR
6121 || vp[2].bv_type != BVAL_NR
6122 || vp[3].bv_type != BVAL_NR
6123 || vp[4].bv_type != BVAL_NR
6124 || vp[5].bv_type != BVAL_NR)
6125 return;
6126 flags = vp[0].bv_nr;
6127 name = vp[1].bv_nr;
Bram Moolenaar67e37202016-06-14 21:32:28 +02006128 if (name < 0 || name >= NUM_REGISTERS)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006129 return;
6130 type = vp[2].bv_nr;
6131 if (type != MCHAR && type != MLINE && type != MBLOCK)
6132 return;
6133 linecount = vp[3].bv_nr;
6134 if (values->ga_len < 6 + linecount)
6135 return;
6136 width = vp[4].bv_nr;
6137 if (width < 0)
6138 return;
6139
6140 if (y_read_regs != NULL)
6141 /* Reading viminfo for merging and writing. Store the register
6142 * content, don't update the current registers. */
6143 y_ptr = &y_read_regs[name];
6144 else
6145 y_ptr = &y_regs[name];
6146
6147 /* Do not overwrite unless forced or the timestamp is newer. */
6148 timestamp = (time_t)vp[5].bv_nr;
6149 if (y_ptr->y_array != NULL && !force
6150 && (timestamp == 0 || y_ptr->y_time_set > timestamp))
6151 return;
6152
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02006153 if (y_ptr->y_array != NULL)
6154 for (i = 0; i < y_ptr->y_size; i++)
6155 vim_free(y_ptr->y_array[i]);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006156 vim_free(y_ptr->y_array);
6157
6158 if (y_read_regs == NULL)
6159 {
6160 if (flags & REG_PREVIOUS)
6161 y_previous = y_ptr;
6162 if ((flags & REG_EXEC) && (force || execreg_lastc == NUL))
6163 execreg_lastc = get_register_name(name);
6164 }
6165 y_ptr->y_type = type;
6166 y_ptr->y_width = width;
6167 y_ptr->y_size = linecount;
6168 y_ptr->y_time_set = timestamp;
6169 if (linecount == 0)
6170 y_ptr->y_array = NULL;
6171 else
6172 {
6173 y_ptr->y_array =
6174 (char_u **)alloc((unsigned)(linecount * sizeof(char_u *)));
6175 for (i = 0; i < linecount; i++)
6176 {
6177 if (vp[i + 6].bv_allocated)
6178 {
6179 y_ptr->y_array[i] = vp[i + 6].bv_string;
6180 vp[i + 6].bv_string = NULL;
6181 }
6182 else
6183 y_ptr->y_array[i] = vim_strsave(vp[i + 6].bv_string);
6184 }
6185 }
6186}
6187
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006189write_viminfo_registers(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006191 int i, j;
6192 char_u *type;
6193 char_u c;
6194 int num_lines;
6195 int max_num_lines;
6196 int max_kbyte;
6197 long len;
6198 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199
Bram Moolenaar64404472010-06-26 06:24:45 +02006200 fputs(_("\n# Registers:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006201
6202 /* Get '<' value, use old '"' value if '<' is not found. */
6203 max_num_lines = get_viminfo_parameter('<');
6204 if (max_num_lines < 0)
6205 max_num_lines = get_viminfo_parameter('"');
6206 if (max_num_lines == 0)
6207 return;
6208 max_kbyte = get_viminfo_parameter('s');
6209 if (max_kbyte == 0)
6210 return;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006211
Bram Moolenaar071d4272004-06-13 20:20:40 +00006212 for (i = 0; i < NUM_REGISTERS; i++)
6213 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214#ifdef FEAT_CLIPBOARD
6215 /* Skip '*'/'+' register, we don't want them back next time */
6216 if (i == STAR_REGISTER || i == PLUS_REGISTER)
6217 continue;
6218#endif
6219#ifdef FEAT_DND
6220 /* Neither do we want the '~' register */
6221 if (i == TILDE_REGISTER)
6222 continue;
6223#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006224 /* When reading viminfo for merging and writing: Use the register from
6225 * viminfo if it's newer. */
6226 if (y_read_regs != NULL
6227 && y_read_regs[i].y_array != NULL
6228 && (y_regs[i].y_array == NULL ||
6229 y_read_regs[i].y_time_set > y_regs[i].y_time_set))
6230 y_ptr = &y_read_regs[i];
6231 else if (y_regs[i].y_array == NULL)
6232 continue;
6233 else
6234 y_ptr = &y_regs[i];
6235
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006236 /* Skip empty registers. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006237 num_lines = y_ptr->y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006238 if (num_lines == 0
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006239 || (num_lines == 1 && y_ptr->y_type == MCHAR
6240 && *y_ptr->y_array[0] == NUL))
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006241 continue;
6242
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243 if (max_kbyte > 0)
6244 {
6245 /* Skip register if there is more text than the maximum size. */
6246 len = 0;
6247 for (j = 0; j < num_lines; j++)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006248 len += (long)STRLEN(y_ptr->y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 if (len > (long)max_kbyte * 1024L)
6250 continue;
6251 }
6252
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006253 switch (y_ptr->y_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254 {
6255 case MLINE:
6256 type = (char_u *)"LINE";
6257 break;
6258 case MCHAR:
6259 type = (char_u *)"CHAR";
6260 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006261 case MBLOCK:
6262 type = (char_u *)"BLOCK";
6263 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006264 default:
6265 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006266 y_ptr->y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267 emsg(IObuff);
6268 type = (char_u *)"LINE";
6269 break;
6270 }
6271 if (y_previous == &y_regs[i])
6272 fprintf(fp, "\"");
6273 c = get_register_name(i);
Bram Moolenaar42b94362009-05-26 16:12:37 +00006274 fprintf(fp, "\"%c", c);
6275 if (c == execreg_lastc)
6276 fprintf(fp, "@");
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006277 fprintf(fp, "\t%s\t%d\n", type, (int)y_ptr->y_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278
6279 /* If max_num_lines < 0, then we save ALL the lines in the register */
6280 if (max_num_lines > 0 && num_lines > max_num_lines)
6281 num_lines = max_num_lines;
6282 for (j = 0; j < num_lines; j++)
6283 {
6284 putc('\t', fp);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006285 viminfo_writestring(fp, y_ptr->y_array[j]);
6286 }
6287
6288 {
6289 int flags = 0;
6290 int remaining;
6291
6292 /* New style with a bar line. Format:
6293 * |{bartype},{flags},{name},{type},
6294 * {linecount},{width},{timestamp},"line1","line2"
6295 * flags: REG_PREVIOUS - register is y_previous
6296 * REG_EXEC - used for @@
6297 */
6298 if (y_previous == &y_regs[i])
6299 flags |= REG_PREVIOUS;
6300 if (c == execreg_lastc)
6301 flags |= REG_EXEC;
6302 fprintf(fp, "|%d,%d,%d,%d,%d,%d,%ld", BARTYPE_REGISTER, flags,
6303 i, y_ptr->y_type, num_lines, (int)y_ptr->y_width,
6304 (long)y_ptr->y_time_set);
6305 /* 11 chars for type/flags/name/type, 3 * 20 for numbers */
6306 remaining = LSIZE - 71;
6307 for (j = 0; j < num_lines; j++)
6308 {
6309 putc(',', fp);
6310 --remaining;
6311 remaining = barline_writestring(fp, y_ptr->y_array[j],
6312 remaining);
6313 }
6314 putc('\n', fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 }
6316 }
6317}
6318#endif /* FEAT_VIMINFO */
6319
6320#if defined(FEAT_CLIPBOARD) || defined(PROTO)
6321/*
6322 * SELECTION / PRIMARY ('*')
6323 *
6324 * Text selection stuff that uses the GUI selection register '*'. When using a
6325 * GUI this may be text from another window, otherwise it is the last text we
6326 * had highlighted with VIsual mode. With mouse support, clicking the middle
6327 * button performs the paste, otherwise you will need to do <"*p>. "
6328 * If not under X, it is synonymous with the clipboard register '+'.
6329 *
6330 * X CLIPBOARD ('+')
6331 *
6332 * Text selection stuff that uses the GUI clipboard register '+'.
6333 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
6334 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
6335 * otherwise you will need to do <"+p>. "
6336 * If not under X, it is synonymous with the selection register '*'.
6337 */
6338
6339/*
6340 * Routine to export any final X selection we had to the environment
Bram Moolenaarf58a8472017-03-05 18:03:04 +01006341 * so that the text is still available after Vim has exited. X selections
Bram Moolenaar071d4272004-06-13 20:20:40 +00006342 * only exist while the owning application exists, so we write to the
6343 * permanent (while X runs) store CUT_BUFFER0.
6344 * Dump the CLIPBOARD selection if we own it (it's logically the more
6345 * 'permanent' of the two), otherwise the PRIMARY one.
6346 * For now, use a hard-coded sanity limit of 1Mb of data.
6347 */
Bram Moolenaara6b7a082016-08-10 20:53:05 +02006348#if (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006350x11_export_final_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351{
6352 Display *dpy;
6353 char_u *str = NULL;
6354 long_u len = 0;
6355 int motion_type = -1;
6356
6357# ifdef FEAT_GUI
6358 if (gui.in_use)
6359 dpy = X_DISPLAY;
6360 else
6361# endif
6362# ifdef FEAT_XCLIPBOARD
6363 dpy = xterm_dpy;
6364# else
6365 return;
6366# endif
6367
6368 /* Get selection to export */
6369 if (clip_plus.owned)
6370 motion_type = clip_convert_selection(&str, &len, &clip_plus);
6371 else if (clip_star.owned)
6372 motion_type = clip_convert_selection(&str, &len, &clip_star);
6373
6374 /* Check it's OK */
6375 if (dpy != NULL && str != NULL && motion_type >= 0
6376 && len < 1024*1024 && len > 0)
6377 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006378#ifdef FEAT_MBYTE
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006379 int ok = TRUE;
6380
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006381 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
6382 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
6383 * encoding conversion usually doesn't work, so keep the text as-is.
6384 */
6385 if (has_mbyte)
6386 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006387 vimconv_T vc;
6388
6389 vc.vc_type = CONV_NONE;
6390 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
6391 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01006392 int intlen = len;
6393 char_u *conv_str;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006394
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006395 vc.vc_fail = TRUE;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006396 conv_str = string_convert(&vc, str, &intlen);
6397 len = intlen;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006398 if (conv_str != NULL)
6399 {
6400 vim_free(str);
6401 str = conv_str;
6402 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006403 else
6404 {
6405 ok = FALSE;
6406 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006407 convert_setup(&vc, NULL, NULL);
6408 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006409 else
6410 {
6411 ok = FALSE;
6412 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006413 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006414
6415 /* Do not store the string if conversion failed. Better to use any
6416 * other selection than garbled text. */
6417 if (ok)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006418#endif
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006419 {
6420 XStoreBuffer(dpy, (char *)str, (int)len, 0);
6421 XFlush(dpy);
6422 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423 }
6424
6425 vim_free(str);
6426}
6427#endif
6428
6429 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006430clip_free_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006432 yankreg_T *y_ptr = y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006433
6434 if (cbd == &clip_plus)
6435 y_current = &y_regs[PLUS_REGISTER];
6436 else
6437 y_current = &y_regs[STAR_REGISTER];
6438 free_yank_all();
6439 y_current->y_size = 0;
6440 y_current = y_ptr;
6441}
6442
6443/*
6444 * Get the selected text and put it in the gui selection register '*' or '+'.
6445 */
6446 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006447clip_get_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006449 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450 pos_T old_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451 pos_T old_visual;
6452 int old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 colnr_T old_curswant;
6454 int old_set_curswant;
6455 pos_T old_op_start, old_op_end;
6456 oparg_T oa;
6457 cmdarg_T ca;
6458
6459 if (cbd->owned)
6460 {
6461 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
6462 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
6463 return;
6464
6465 /* Get the text between clip_star.start & clip_star.end */
6466 old_y_previous = y_previous;
6467 old_y_current = y_current;
6468 old_cursor = curwin->w_cursor;
6469 old_curswant = curwin->w_curswant;
6470 old_set_curswant = curwin->w_set_curswant;
6471 old_op_start = curbuf->b_op_start;
6472 old_op_end = curbuf->b_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006473 old_visual = VIsual;
6474 old_visual_mode = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475 clear_oparg(&oa);
6476 oa.regname = (cbd == &clip_plus ? '+' : '*');
6477 oa.op_type = OP_YANK;
6478 vim_memset(&ca, 0, sizeof(ca));
6479 ca.oap = &oa;
6480 ca.cmdchar = 'y';
6481 ca.count1 = 1;
6482 ca.retval = CA_NO_ADJ_OP_END;
6483 do_pending_operator(&ca, 0, TRUE);
6484 y_previous = old_y_previous;
6485 y_current = old_y_current;
6486 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006487 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488 curwin->w_curswant = old_curswant;
6489 curwin->w_set_curswant = old_set_curswant;
6490 curbuf->b_op_start = old_op_start;
6491 curbuf->b_op_end = old_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006492 VIsual = old_visual;
6493 VIsual_mode = old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006494 }
Bram Moolenaar3fcfa352017-03-29 19:20:41 +02006495 else if (!is_clipboard_needs_update())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006496 {
6497 clip_free_selection(cbd);
6498
6499 /* Try to get selected text from another window */
6500 clip_gen_request_selection(cbd);
6501 }
6502}
6503
Bram Moolenaard44347f2011-06-19 01:14:29 +02006504/*
6505 * Convert from the GUI selection string into the '*'/'+' register.
6506 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006507 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006508clip_yank_selection(
6509 int type,
6510 char_u *str,
6511 long len,
6512 VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006513{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006514 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006515
6516 if (cbd == &clip_plus)
6517 y_ptr = &y_regs[PLUS_REGISTER];
6518 else
6519 y_ptr = &y_regs[STAR_REGISTER];
6520
6521 clip_free_selection(cbd);
6522
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006523 str_to_reg(y_ptr, type, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006524}
6525
6526/*
6527 * Convert the '*'/'+' register into a GUI selection string returned in *str
6528 * with length *len.
6529 * Returns the motion type, or -1 for failure.
6530 */
6531 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006532clip_convert_selection(char_u **str, long_u *len, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006533{
6534 char_u *p;
6535 int lnum;
6536 int i, j;
6537 int_u eolsize;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006538 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539
6540 if (cbd == &clip_plus)
6541 y_ptr = &y_regs[PLUS_REGISTER];
6542 else
6543 y_ptr = &y_regs[STAR_REGISTER];
6544
6545#ifdef USE_CRNL
6546 eolsize = 2;
6547#else
6548 eolsize = 1;
6549#endif
6550
6551 *str = NULL;
6552 *len = 0;
6553 if (y_ptr->y_array == NULL)
6554 return -1;
6555
6556 for (i = 0; i < y_ptr->y_size; i++)
6557 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
6558
6559 /*
6560 * Don't want newline character at end of last line if we're in MCHAR mode.
6561 */
6562 if (y_ptr->y_type == MCHAR && *len >= eolsize)
6563 *len -= eolsize;
6564
6565 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
6566 if (p == NULL)
6567 return -1;
6568 lnum = 0;
6569 for (i = 0, j = 0; i < (int)*len; i++, j++)
6570 {
6571 if (y_ptr->y_array[lnum][j] == '\n')
6572 p[i] = NUL;
6573 else if (y_ptr->y_array[lnum][j] == NUL)
6574 {
6575#ifdef USE_CRNL
6576 p[i++] = '\r';
6577#endif
6578#ifdef USE_CR
6579 p[i] = '\r';
6580#else
6581 p[i] = '\n';
6582#endif
6583 lnum++;
6584 j = -1;
6585 }
6586 else
6587 p[i] = y_ptr->y_array[lnum][j];
6588 }
6589 return y_ptr->y_type;
6590}
6591
6592
Bram Moolenaar071d4272004-06-13 20:20:40 +00006593/*
6594 * If we have written to a clipboard register, send the text to the clipboard.
6595 */
6596 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006597may_set_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006598{
6599 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
6600 {
6601 clip_own_selection(&clip_star);
6602 clip_gen_set_selection(&clip_star);
6603 }
6604 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
6605 {
6606 clip_own_selection(&clip_plus);
6607 clip_gen_set_selection(&clip_plus);
6608 }
6609}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006610
6611#endif /* FEAT_CLIPBOARD || PROTO */
6612
6613
6614#if defined(FEAT_DND) || defined(PROTO)
6615/*
6616 * Replace the contents of the '~' register with str.
6617 */
6618 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006619dnd_yank_drag_data(char_u *str, long len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006620{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006621 yankreg_T *curr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006622
6623 curr = y_current;
6624 y_current = &y_regs[TILDE_REGISTER];
6625 free_yank_all();
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006626 str_to_reg(y_current, MCHAR, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006627 y_current = curr;
6628}
6629#endif
6630
6631
6632#if defined(FEAT_EVAL) || defined(PROTO)
6633/*
6634 * Return the type of a register.
6635 * Used for getregtype()
6636 * Returns MAUTO for error.
6637 */
6638 char_u
Bram Moolenaar9b578142016-01-30 19:39:49 +01006639get_reg_type(int regname, long *reglen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006640{
6641 switch (regname)
6642 {
6643 case '%': /* file name */
6644 case '#': /* alternate file name */
6645 case '=': /* expression */
6646 case ':': /* last command line */
6647 case '/': /* last search-pattern */
6648 case '.': /* last inserted text */
6649#ifdef FEAT_SEARCHPATH
6650 case Ctrl_F: /* Filename under cursor */
6651 case Ctrl_P: /* Path under cursor, expand via "path" */
6652#endif
6653 case Ctrl_W: /* word under cursor */
6654 case Ctrl_A: /* WORD (mnemonic All) under cursor */
6655 case '_': /* black hole: always empty */
6656 return MCHAR;
6657 }
6658
6659#ifdef FEAT_CLIPBOARD
6660 regname = may_get_selection(regname);
6661#endif
6662
Bram Moolenaar32b92012014-01-14 12:33:36 +01006663 if (regname != NUL && !valid_yank_reg(regname, FALSE))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006664 return MAUTO;
Bram Moolenaar32b92012014-01-14 12:33:36 +01006665
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666 get_yank_register(regname, FALSE);
6667
6668 if (y_current->y_array != NULL)
6669 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006670 if (reglen != NULL && y_current->y_type == MBLOCK)
6671 *reglen = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672 return y_current->y_type;
6673 }
6674 return MAUTO;
6675}
6676
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01006677static char_u *getreg_wrap_one_line(char_u *s, int flags);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006678
6679/*
6680 * When "flags" has GREG_LIST return a list with text "s".
6681 * Otherwise just return "s".
6682 */
6683 static char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006684getreg_wrap_one_line(char_u *s, int flags)
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006685{
6686 if (flags & GREG_LIST)
6687 {
6688 list_T *list = list_alloc();
6689
6690 if (list != NULL)
6691 {
6692 if (list_append_string(list, NULL, -1) == FAIL)
6693 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006694 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006695 return NULL;
6696 }
6697 list->lv_first->li_tv.vval.v_string = s;
6698 }
6699 return (char_u *)list;
6700 }
6701 return s;
6702}
6703
Bram Moolenaar071d4272004-06-13 20:20:40 +00006704/*
6705 * Return the contents of a register as a single allocated string.
6706 * Used for "@r" in expressions and for getreg().
6707 * Returns NULL for error.
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006708 * Flags:
6709 * GREG_NO_EXPR Do not allow expression register
6710 * GREG_EXPR_SRC For the expression register: return expression itself,
6711 * not the result of its evaluation.
6712 * GREG_LIST Return a list of lines in place of a single string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006713 */
6714 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006715get_reg_contents(int regname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716{
6717 long i;
6718 char_u *retval;
6719 int allocated;
6720 long len;
6721
6722 /* Don't allow using an expression register inside an expression */
6723 if (regname == '=')
6724 {
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006725 if (flags & GREG_NO_EXPR)
6726 return NULL;
6727 if (flags & GREG_EXPR_SRC)
6728 return getreg_wrap_one_line(get_expr_line_src(), flags);
6729 return getreg_wrap_one_line(get_expr_line(), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006730 }
6731
6732 if (regname == '@') /* "@@" is used for unnamed register */
6733 regname = '"';
6734
6735 /* check for valid regname */
6736 if (regname != NUL && !valid_yank_reg(regname, FALSE))
6737 return NULL;
6738
6739#ifdef FEAT_CLIPBOARD
6740 regname = may_get_selection(regname);
6741#endif
6742
6743 if (get_spec_reg(regname, &retval, &allocated, FALSE))
6744 {
6745 if (retval == NULL)
6746 return NULL;
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006747 if (allocated)
6748 return getreg_wrap_one_line(retval, flags);
6749 return getreg_wrap_one_line(vim_strsave(retval), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006750 }
6751
6752 get_yank_register(regname, FALSE);
6753 if (y_current->y_array == NULL)
6754 return NULL;
6755
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006756 if (flags & GREG_LIST)
6757 {
6758 list_T *list = list_alloc();
6759 int error = FALSE;
6760
6761 if (list == NULL)
6762 return NULL;
6763 for (i = 0; i < y_current->y_size; ++i)
6764 if (list_append_string(list, y_current->y_array[i], -1) == FAIL)
6765 error = TRUE;
6766 if (error)
6767 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006768 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006769 return NULL;
6770 }
6771 return (char_u *)list;
6772 }
6773
Bram Moolenaar071d4272004-06-13 20:20:40 +00006774 /*
6775 * Compute length of resulting string.
6776 */
6777 len = 0;
6778 for (i = 0; i < y_current->y_size; ++i)
6779 {
6780 len += (long)STRLEN(y_current->y_array[i]);
6781 /*
6782 * Insert a newline between lines and after last line if
6783 * y_type is MLINE.
6784 */
6785 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6786 ++len;
6787 }
6788
6789 retval = lalloc(len + 1, TRUE);
6790
6791 /*
6792 * Copy the lines of the yank register into the string.
6793 */
6794 if (retval != NULL)
6795 {
6796 len = 0;
6797 for (i = 0; i < y_current->y_size; ++i)
6798 {
6799 STRCPY(retval + len, y_current->y_array[i]);
6800 len += (long)STRLEN(retval + len);
6801
6802 /*
6803 * Insert a NL between lines and after the last line if y_type is
6804 * MLINE.
6805 */
6806 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6807 retval[len++] = '\n';
6808 }
6809 retval[len] = NUL;
6810 }
6811
6812 return retval;
6813}
6814
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006815 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006816init_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006817 int name,
6818 yankreg_T **old_y_previous,
6819 yankreg_T **old_y_current,
6820 int must_append,
6821 int *yank_type UNUSED)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006822{
6823 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6824 {
6825 emsg_invreg(name);
6826 return FAIL;
6827 }
6828
6829 /* Don't want to change the current (unnamed) register */
6830 *old_y_previous = y_previous;
6831 *old_y_current = y_current;
6832
6833 get_yank_register(name, TRUE);
6834 if (!y_append && !must_append)
6835 free_yank_all();
6836 return OK;
6837}
6838
6839 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006840finish_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006841 int name,
6842 yankreg_T *old_y_previous,
6843 yankreg_T *old_y_current)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006844{
6845# ifdef FEAT_CLIPBOARD
6846 /* Send text of clipboard register to the clipboard. */
6847 may_set_selection();
6848# endif
6849
6850 /* ':let @" = "val"' should change the meaning of the "" register */
6851 if (name != '"')
6852 y_previous = old_y_previous;
6853 y_current = old_y_current;
6854}
6855
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856/*
6857 * Store string "str" in register "name".
6858 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
6859 * If "must_append" is TRUE, always append to the register. Otherwise append
6860 * if "name" is an uppercase letter.
6861 * Note: "maxlen" and "must_append" don't work for the "/" register.
6862 * Careful: 'str' is modified, you may have to use a copy!
6863 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
6864 */
6865 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006866write_reg_contents(
6867 int name,
6868 char_u *str,
6869 int maxlen,
6870 int must_append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006871{
6872 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
6873}
6874
6875 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006876write_reg_contents_lst(
6877 int name,
6878 char_u **strings,
6879 int maxlen UNUSED,
6880 int must_append,
6881 int yank_type,
6882 long block_len)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006883{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006884 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006885
6886 if (name == '/'
6887#ifdef FEAT_EVAL
6888 || name == '='
6889#endif
6890 )
6891 {
6892 char_u *s;
6893
6894 if (strings[0] == NULL)
6895 s = (char_u *)"";
6896 else if (strings[1] != NULL)
6897 {
6898 EMSG(_("E883: search pattern and expression register may not "
6899 "contain two or more lines"));
6900 return;
6901 }
6902 else
6903 s = strings[0];
6904 write_reg_contents_ex(name, s, -1, must_append, yank_type, block_len);
6905 return;
6906 }
6907
6908 if (name == '_') /* black hole: nothing to do */
6909 return;
6910
6911 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
6912 &yank_type) == FAIL)
6913 return;
6914
6915 str_to_reg(y_current, yank_type, (char_u *) strings, -1, block_len, TRUE);
6916
6917 finish_write_reg(name, old_y_previous, old_y_current);
6918}
6919
6920 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006921write_reg_contents_ex(
6922 int name,
6923 char_u *str,
6924 int maxlen,
6925 int must_append,
6926 int yank_type,
6927 long block_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006928{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006929 yankreg_T *old_y_previous, *old_y_current;
6930 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006931
Bram Moolenaare7566042005-06-17 22:00:15 +00006932 if (maxlen >= 0)
6933 len = maxlen;
6934 else
6935 len = (long)STRLEN(str);
6936
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937 /* Special case: '/' search pattern */
6938 if (name == '/')
6939 {
6940 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
6941 return;
6942 }
6943
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01006944 if (name == '#')
6945 {
6946 buf_T *buf;
6947
6948 if (VIM_ISDIGIT(*str))
6949 {
6950 int num = atoi((char *)str);
6951
6952 buf = buflist_findnr(num);
6953 if (buf == NULL)
6954 EMSGN(_(e_nobufnr), (long)num);
6955 }
6956 else
6957 buf = buflist_findnr(buflist_findpat(str, str + STRLEN(str),
6958 TRUE, FALSE, FALSE));
6959 if (buf == NULL)
6960 return;
6961 curwin->w_alt_fnum = buf->b_fnum;
6962 return;
6963 }
6964
Bram Moolenaare7566042005-06-17 22:00:15 +00006965#ifdef FEAT_EVAL
6966 if (name == '=')
6967 {
6968 char_u *p, *s;
6969
6970 p = vim_strnsave(str, (int)len);
6971 if (p == NULL)
6972 return;
6973 if (must_append)
6974 {
6975 s = concat_str(get_expr_line_src(), p);
6976 vim_free(p);
6977 p = s;
Bram Moolenaare7566042005-06-17 22:00:15 +00006978 }
6979 set_expr_line(p);
6980 return;
6981 }
6982#endif
6983
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984 if (name == '_') /* black hole: nothing to do */
6985 return;
6986
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006987 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
6988 &yank_type) == FAIL)
6989 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006990
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006991 str_to_reg(y_current, yank_type, str, len, block_len, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006992
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006993 finish_write_reg(name, old_y_previous, old_y_current);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994}
6995#endif /* FEAT_EVAL */
6996
6997#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6998/*
6999 * Put a string into a register. When the register is not empty, the string
7000 * is appended.
7001 */
7002 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007003str_to_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007004 yankreg_T *y_ptr, /* pointer to yank register */
7005 int yank_type, /* MCHAR, MLINE, MBLOCK, MAUTO */
7006 char_u *str, /* string to put in register */
7007 long len, /* length of string */
7008 long blocklen, /* width of Visual block */
7009 int str_list) /* TRUE if str is char_u ** */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007010{
Bram Moolenaard44347f2011-06-19 01:14:29 +02007011 int type; /* MCHAR, MLINE or MBLOCK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007012 int lnum;
7013 long start;
7014 long i;
7015 int extra;
7016 int newlines; /* number of lines added */
7017 int extraline = 0; /* extra line at the end */
7018 int append = FALSE; /* append to last line in register */
7019 char_u *s;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007020 char_u **ss;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007021 char_u **pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007022 long maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007023
Bram Moolenaarcde547a2009-11-17 11:43:06 +00007024 if (y_ptr->y_array == NULL) /* NULL means empty register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007025 y_ptr->y_size = 0;
7026
Bram Moolenaard44347f2011-06-19 01:14:29 +02007027 if (yank_type == MAUTO)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007028 type = ((str_list || (len > 0 && (str[len - 1] == NL
7029 || str[len - 1] == CAR)))
Bram Moolenaard44347f2011-06-19 01:14:29 +02007030 ? MLINE : MCHAR);
7031 else
7032 type = yank_type;
7033
Bram Moolenaar071d4272004-06-13 20:20:40 +00007034 /*
7035 * Count the number of lines within the string
7036 */
7037 newlines = 0;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007038 if (str_list)
7039 {
7040 for (ss = (char_u **) str; *ss != NULL; ++ss)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007041 ++newlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007042 }
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007043 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007044 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007045 for (i = 0; i < len; i++)
7046 if (str[i] == '\n')
7047 ++newlines;
7048 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
7049 {
7050 extraline = 1;
7051 ++newlines; /* count extra newline at the end */
7052 }
7053 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
7054 {
7055 append = TRUE;
7056 --newlines; /* uncount newline when appending first line */
7057 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007058 }
7059
Bram Moolenaar659c94d2015-05-04 20:19:21 +02007060 /* Without any lines make the register empty. */
7061 if (y_ptr->y_size + newlines == 0)
7062 {
7063 vim_free(y_ptr->y_array);
7064 y_ptr->y_array = NULL;
7065 return;
7066 }
7067
Bram Moolenaar071d4272004-06-13 20:20:40 +00007068 /*
7069 * Allocate an array to hold the pointers to the new register lines.
7070 * If the register was not empty, move the existing lines to the new array.
7071 */
7072 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
7073 * sizeof(char_u *), TRUE);
7074 if (pp == NULL) /* out of memory */
7075 return;
7076 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
7077 pp[lnum] = y_ptr->y_array[lnum];
7078 vim_free(y_ptr->y_array);
7079 y_ptr->y_array = pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080 maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007081
7082 /*
7083 * Find the end of each line and save it into the array.
7084 */
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007085 if (str_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007086 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007087 for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum)
7088 {
Bram Moolenaar121f9bd2014-04-29 15:55:43 +02007089 i = (long)STRLEN(*ss);
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007090 pp[lnum] = vim_strnsave(*ss, i);
7091 if (i > maxlen)
7092 maxlen = i;
7093 }
7094 }
7095 else
7096 {
7097 for (start = 0; start < len + extraline; start += i + 1)
7098 {
7099 for (i = start; i < len; ++i) /* find the end of the line */
7100 if (str[i] == '\n')
7101 break;
7102 i -= start; /* i is now length of line */
7103 if (i > maxlen)
7104 maxlen = i;
7105 if (append)
7106 {
7107 --lnum;
7108 extra = (int)STRLEN(y_ptr->y_array[lnum]);
7109 }
7110 else
7111 extra = 0;
7112 s = alloc((unsigned)(i + extra + 1));
7113 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007114 break;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007115 if (extra)
7116 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
7117 if (append)
7118 vim_free(y_ptr->y_array[lnum]);
7119 if (i)
7120 mch_memmove(s + extra, str + start, (size_t)i);
7121 extra += i;
7122 s[extra] = NUL;
7123 y_ptr->y_array[lnum++] = s;
7124 while (--extra >= 0)
7125 {
7126 if (*s == NUL)
7127 *s = '\n'; /* replace NUL with newline */
7128 ++s;
7129 }
7130 append = FALSE; /* only first line is appended */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007132 }
7133 y_ptr->y_type = type;
7134 y_ptr->y_size = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007135 if (type == MBLOCK)
7136 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
7137 else
7138 y_ptr->y_width = 0;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007139#ifdef FEAT_VIMINFO
7140 y_ptr->y_time_set = vim_time();
7141#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007142}
7143#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
7144
7145 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007146clear_oparg(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007147{
7148 vim_memset(oap, 0, sizeof(oparg_T));
7149}
7150
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007151static 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 +00007152
7153/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00007154 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007155 *
7156 * "Words" are counted by looking for boundaries between non-space and
7157 * space characters. (it seems to produce results that match 'wc'.)
7158 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00007159 * Return value is byte count; word count for the line is added to "*wc".
7160 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007161 *
7162 * The function will only examine the first "limit" characters in the
7163 * line, stopping if it encounters an end-of-line (NUL byte). In that
7164 * case, eol_size will be added to the character count to account for
7165 * the size of the EOL character.
7166 */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007167 static varnumber_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01007168line_count_info(
7169 char_u *line,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007170 varnumber_T *wc,
7171 varnumber_T *cc,
7172 varnumber_T limit,
Bram Moolenaar9b578142016-01-30 19:39:49 +01007173 int eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007174{
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007175 varnumber_T i;
7176 varnumber_T words = 0;
7177 varnumber_T chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007178 int is_word = 0;
7179
Bram Moolenaar88b1ba12012-06-29 13:34:19 +02007180 for (i = 0; i < limit && line[i] != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007181 {
7182 if (is_word)
7183 {
7184 if (vim_isspace(line[i]))
7185 {
7186 words++;
7187 is_word = 0;
7188 }
7189 }
7190 else if (!vim_isspace(line[i]))
7191 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007192 ++chars;
7193#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007194 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00007195#else
7196 ++i;
7197#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007198 }
7199
7200 if (is_word)
7201 words++;
7202 *wc += words;
7203
7204 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar1cb7e092011-08-10 12:11:01 +02007205 if (i < limit && line[i] == NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007206 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007207 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007208 chars += eol_size;
7209 }
7210 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007211 return i;
7212}
7213
7214/*
7215 * Give some info about the position of the cursor (for "g CTRL-G").
7216 * In Visual mode, give some info about the selected region. (In this case,
7217 * the *_count_cursor variables store running totals for the selection.)
Bram Moolenaared767a22016-01-03 22:49:16 +01007218 * When "dict" is not NULL store the info there instead of showing it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007219 */
7220 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007221cursor_pos_info(dict_T *dict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222{
7223 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007224 char_u buf1[50];
7225 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007226 linenr_T lnum;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007227 varnumber_T byte_count = 0;
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007228#ifdef FEAT_MBYTE
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007229 varnumber_T bom_count = 0;
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007230#endif
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007231 varnumber_T byte_count_cursor = 0;
7232 varnumber_T char_count = 0;
7233 varnumber_T char_count_cursor = 0;
7234 varnumber_T word_count = 0;
7235 varnumber_T word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007236 int eol_size;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007237 varnumber_T last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007238 long line_count_selected = 0;
7239 pos_T min_pos, max_pos;
7240 oparg_T oparg;
7241 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007242
7243 /*
7244 * Compute the length of the file in characters.
7245 */
7246 if (curbuf->b_ml.ml_flags & ML_EMPTY)
7247 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007248 if (dict == NULL)
7249 {
7250 MSG(_(no_lines_msg));
7251 return;
7252 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007253 }
7254 else
7255 {
7256 if (get_fileformat(curbuf) == EOL_DOS)
7257 eol_size = 2;
7258 else
7259 eol_size = 1;
7260
Bram Moolenaar071d4272004-06-13 20:20:40 +00007261 if (VIsual_active)
7262 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007263 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007264 {
7265 min_pos = VIsual;
7266 max_pos = curwin->w_cursor;
7267 }
7268 else
7269 {
7270 min_pos = curwin->w_cursor;
7271 max_pos = VIsual;
7272 }
7273 if (*p_sel == 'e' && max_pos.col > 0)
7274 --max_pos.col;
7275
7276 if (VIsual_mode == Ctrl_V)
7277 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00007278#ifdef FEAT_LINEBREAK
7279 char_u * saved_sbr = p_sbr;
7280
7281 /* Make 'sbr' empty for a moment to get the correct size. */
7282 p_sbr = empty_option;
7283#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007284 oparg.is_VIsual = 1;
7285 oparg.block_mode = TRUE;
7286 oparg.op_type = OP_NOP;
7287 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007288 &oparg.start_vcol, &oparg.end_vcol);
Bram Moolenaar81d00072009-04-29 15:41:40 +00007289#ifdef FEAT_LINEBREAK
7290 p_sbr = saved_sbr;
7291#endif
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007292 if (curwin->w_curswant == MAXCOL)
7293 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007294 /* Swap the start, end vcol if needed */
7295 if (oparg.end_vcol < oparg.start_vcol)
7296 {
7297 oparg.end_vcol += oparg.start_vcol;
7298 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
7299 oparg.end_vcol -= oparg.start_vcol;
7300 }
7301 }
7302 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
7303 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007304
7305 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
7306 {
7307 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007308 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007309 {
7310 ui_breakcheck();
7311 if (got_int)
7312 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007313 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007314 }
7315
Bram Moolenaar071d4272004-06-13 20:20:40 +00007316 /* Do extra processing for VIsual mode. */
7317 if (VIsual_active
7318 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
7319 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00007320 char_u *s = NULL;
7321 long len = 0L;
7322
Bram Moolenaar071d4272004-06-13 20:20:40 +00007323 switch (VIsual_mode)
7324 {
7325 case Ctrl_V:
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007326#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007327 virtual_op = virtual_active();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007328#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007329 block_prep(&oparg, &bd, lnum, 0);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007330#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007331 virtual_op = MAYBE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007332#endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00007333 s = bd.textstart;
7334 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007335 break;
7336 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00007337 s = ml_get(lnum);
7338 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339 break;
7340 case 'v':
7341 {
7342 colnr_T start_col = (lnum == min_pos.lnum)
7343 ? min_pos.col : 0;
7344 colnr_T end_col = (lnum == max_pos.lnum)
7345 ? max_pos.col - start_col + 1 : MAXCOL;
7346
Bram Moolenaardef9e822004-12-31 20:58:58 +00007347 s = ml_get(lnum) + start_col;
7348 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007349 }
7350 break;
7351 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00007352 if (s != NULL)
7353 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00007354 byte_count_cursor += line_count_info(s, &word_count_cursor,
7355 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00007356 if (lnum == curbuf->b_ml.ml_line_count
7357 && !curbuf->b_p_eol
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007358 && (curbuf->b_p_bin || !curbuf->b_p_fixeol)
Bram Moolenaarec2dad62005-01-02 11:36:03 +00007359 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007360 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00007361 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007362 }
7363 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007364 {
7365 /* In non-visual mode, check for the line the cursor is on */
7366 if (lnum == curwin->w_cursor.lnum)
7367 {
7368 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007369 char_count_cursor += char_count;
7370 byte_count_cursor = byte_count +
7371 line_count_info(ml_get(lnum),
7372 &word_count_cursor, &char_count_cursor,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007373 (varnumber_T)(curwin->w_cursor.col + 1),
7374 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007375 }
7376 }
7377 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007378 byte_count += line_count_info(ml_get(lnum), &word_count,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007379 &char_count, (varnumber_T)MAXCOL,
7380 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007381 }
7382
7383 /* Correction for when last line doesn't have an EOL. */
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007384 if (!curbuf->b_p_eol && (curbuf->b_p_bin || !curbuf->b_p_fixeol))
Bram Moolenaar7c626922005-02-07 22:01:03 +00007385 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007386
Bram Moolenaared767a22016-01-03 22:49:16 +01007387 if (dict == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007388 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007389 if (VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007390 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007391 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
7392 {
7393 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
7394 &max_pos.col);
7395 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
7396 (long)(oparg.end_vcol - oparg.start_vcol + 1));
7397 }
7398 else
7399 buf1[0] = NUL;
7400
7401 if (char_count_cursor == byte_count_cursor
7402 && char_count == byte_count)
7403 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007404 _("Selected %s%ld of %ld Lines; %lld of %lld Words; %lld of %lld Bytes"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007405 buf1, line_count_selected,
7406 (long)curbuf->b_ml.ml_line_count,
7407 word_count_cursor, word_count,
7408 byte_count_cursor, byte_count);
7409 else
7410 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007411 _("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 +01007412 buf1, line_count_selected,
7413 (long)curbuf->b_ml.ml_line_count,
7414 word_count_cursor, word_count,
7415 char_count_cursor, char_count,
7416 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007417 }
7418 else
Bram Moolenaared767a22016-01-03 22:49:16 +01007419 {
7420 p = ml_get_curline();
7421 validate_virtcol();
7422 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
7423 (int)curwin->w_virtcol + 1);
7424 col_print(buf2, sizeof(buf2), (int)STRLEN(p),
7425 linetabsize(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007426
Bram Moolenaared767a22016-01-03 22:49:16 +01007427 if (char_count_cursor == byte_count_cursor
7428 && char_count == byte_count)
7429 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007430 _("Col %s of %s; Line %ld of %ld; Word %lld of %lld; Byte %lld of %lld"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007431 (char *)buf1, (char *)buf2,
7432 (long)curwin->w_cursor.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007433 (long)curbuf->b_ml.ml_line_count,
7434 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00007435 byte_count_cursor, byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007436 else
7437 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007438 _("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 +01007439 (char *)buf1, (char *)buf2,
7440 (long)curwin->w_cursor.lnum,
Bram Moolenaar7c626922005-02-07 22:01:03 +00007441 (long)curbuf->b_ml.ml_line_count,
7442 word_count_cursor, word_count,
7443 char_count_cursor, char_count,
7444 byte_count_cursor, byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007445 }
7446 }
7447
Bram Moolenaared767a22016-01-03 22:49:16 +01007448#ifdef FEAT_MBYTE
7449 bom_count = bomb_size();
7450 if (bom_count > 0)
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007451 vim_snprintf((char *)IObuff + STRLEN(IObuff), IOSIZE,
7452 _("(+%ld for BOM)"), bom_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007453#endif
7454 if (dict == NULL)
7455 {
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007456 /* Don't shorten this message, the user asked for it. */
Bram Moolenaared767a22016-01-03 22:49:16 +01007457 p = p_shm;
7458 p_shm = (char_u *)"";
7459 msg(IObuff);
7460 p_shm = p;
7461 }
7462 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007463#if defined(FEAT_EVAL)
Bram Moolenaared767a22016-01-03 22:49:16 +01007464 if (dict != NULL)
7465 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007466 dict_add_nr_str(dict, "words", word_count, NULL);
7467 dict_add_nr_str(dict, "chars", char_count, NULL);
7468 dict_add_nr_str(dict, "bytes", byte_count
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007469# ifdef FEAT_MBYTE
7470 + bom_count
7471# endif
7472 , NULL);
7473 dict_add_nr_str(dict, VIsual_active ? "visual_bytes" : "cursor_bytes",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007474 byte_count_cursor, NULL);
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007475 dict_add_nr_str(dict, VIsual_active ? "visual_chars" : "cursor_chars",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007476 char_count_cursor, NULL);
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007477 dict_add_nr_str(dict, VIsual_active ? "visual_words" : "cursor_words",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007478 word_count_cursor, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007479 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007480#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007481}