blob: 1ecc67714d0ac55774159c630efb9c1a336d487a [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
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001648 static void
1649yank_do_autocmd(oparg_T *oap, yankreg_T *reg)
1650{
1651 static int recursive = FALSE;
1652 dict_T *v_event;
1653 list_T *list;
1654 int n;
1655 char_u buf[NUMBUFLEN + 2];
1656 long reglen = 0;
1657
1658 if (recursive)
1659 return;
1660
1661 v_event = get_vim_var_dict(VV_EVENT);
1662
1663 list = list_alloc();
1664 for (n = 0; n < reg->y_size; n++)
1665 list_append_string(list, reg->y_array[n], -1);
1666 list->lv_lock = VAR_FIXED;
1667 dict_add_list(v_event, "regcontents", list);
1668
1669 buf[0] = (char_u)oap->regname;
1670 buf[1] = NUL;
1671 dict_add_nr_str(v_event, "regname", 0, buf);
1672
1673 buf[0] = get_op_char(oap->op_type);
1674 buf[1] = get_extra_op_char(oap->op_type);
1675 buf[2] = NUL;
1676 dict_add_nr_str(v_event, "operator", 0, buf);
1677
1678 buf[0] = NUL;
1679 buf[1] = NUL;
1680 switch (get_reg_type(oap->regname, &reglen))
1681 {
1682 case MLINE: buf[0] = 'V'; break;
1683 case MCHAR: buf[0] = 'v'; break;
1684 case MBLOCK:
1685 vim_snprintf((char *)buf, sizeof(buf), "%c%ld", Ctrl_V,
1686 reglen + 1);
1687 break;
1688 }
1689 dict_add_nr_str(v_event, "regtype", 0, buf);
1690
1691 /* Lock the dictionary and its keys */
1692 dict_set_items_ro(v_event);
1693
1694 recursive = TRUE;
1695 textlock++;
1696 apply_autocmds(EVENT_TEXTYANKPOST, NULL, NULL, FALSE, curbuf);
1697 textlock--;
1698 recursive = FALSE;
1699
1700 /* Empty the dictionary, v:event is still valid */
1701 dict_free_contents(v_event);
1702 hash_init(&v_event->dv_hashtab);
1703}
1704
Bram Moolenaara1891842017-02-04 21:34:31 +01001705/*
Bram Moolenaard04b7502010-07-08 22:27:55 +02001706 * Handle a delete operation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 *
Bram Moolenaard04b7502010-07-08 22:27:55 +02001708 * Return FAIL if undo failed, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 */
1710 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001711op_delete(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712{
1713 int n;
1714 linenr_T lnum;
1715 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 char_u *newp, *oldp;
1717 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1719 int did_yank = FALSE;
Bram Moolenaar7c821302012-09-05 14:18:45 +02001720 int orig_regname = oap->regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721
1722 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1723 return OK;
1724
1725 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1726 if (oap->empty)
1727 return u_save_cursor();
1728
1729 if (!curbuf->b_p_ma)
1730 {
1731 EMSG(_(e_modifiable));
1732 return FAIL;
1733 }
1734
1735#ifdef FEAT_CLIPBOARD
1736 adjust_clip_reg(&oap->regname);
1737#endif
1738
1739#ifdef FEAT_MBYTE
1740 if (has_mbyte)
1741 mb_adjust_opend(oap);
1742#endif
1743
Bram Moolenaard04b7502010-07-08 22:27:55 +02001744 /*
1745 * Imitate the strange Vi behaviour: If the delete spans more than one
1746 * line and motion_type == MCHAR and the result is a blank line, make the
1747 * delete linewise. Don't do this for the change command or Visual mode.
1748 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 if ( oap->motion_type == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001751 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 && oap->line_count > 1
Bram Moolenaar64a72302012-01-10 13:46:22 +01001753 && oap->motion_force == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 && oap->op_type == OP_DELETE)
1755 {
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001756 ptr = ml_get(oap->end.lnum) + oap->end.col;
1757 if (*ptr != NUL)
1758 ptr += oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 ptr = skipwhite(ptr);
1760 if (*ptr == NUL && inindent(0))
1761 oap->motion_type = MLINE;
1762 }
1763
Bram Moolenaard04b7502010-07-08 22:27:55 +02001764 /*
1765 * Check for trying to delete (e.g. "D") in an empty line.
1766 * Note: For the change operator it is ok.
1767 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 if ( oap->motion_type == MCHAR
1769 && oap->line_count == 1
1770 && oap->op_type == OP_DELETE
1771 && *ml_get(oap->start.lnum) == NUL)
1772 {
1773 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001774 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 * 'cpoptions' (Vi compatible).
1776 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001777#ifdef FEAT_VIRTUALEDIT
1778 if (virtual_op)
1779 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1780 * marks as if it happened. */
1781 goto setmarks;
1782#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1784 beep_flush();
1785 return OK;
1786 }
1787
Bram Moolenaard04b7502010-07-08 22:27:55 +02001788 /*
1789 * Do a yank of whatever we're about to delete.
1790 * If a yank register was specified, put the deleted text into that
1791 * register. For the black hole register '_' don't yank anything.
1792 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 if (oap->regname != '_')
1794 {
1795 if (oap->regname != 0)
1796 {
1797 /* check for read-only register */
1798 if (!valid_yank_reg(oap->regname, TRUE))
1799 {
1800 beep_flush();
1801 return OK;
1802 }
1803 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1804 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1805 did_yank = TRUE;
1806 }
1807
1808 /*
1809 * Put deleted text into register 1 and shift number registers if the
1810 * delete contains a line break, or when a regname has been specified.
Bram Moolenaar7c821302012-09-05 14:18:45 +02001811 * Use the register name from before adjust_clip_reg() may have
1812 * changed it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 */
Bram Moolenaar7c821302012-09-05 14:18:45 +02001814 if (orig_regname != 0 || oap->motion_type == MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 || oap->line_count > 1 || oap->use_reg_one)
1816 {
Bram Moolenaara1891842017-02-04 21:34:31 +01001817 shift_delete_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 if (op_yank(oap, TRUE, FALSE) == OK)
1819 did_yank = TRUE;
1820 }
1821
Bram Moolenaar84298db2012-04-20 13:46:08 +02001822 /* Yank into small delete register when no named register specified
1823 * and the delete is within one line. */
1824 if ((
1825#ifdef FEAT_CLIPBOARD
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001826 ((clip_unnamed & CLIP_UNNAMED) && oap->regname == '*') ||
1827 ((clip_unnamed & CLIP_UNNAMED_PLUS) && oap->regname == '+') ||
Bram Moolenaar84298db2012-04-20 13:46:08 +02001828#endif
1829 oap->regname == 0) && oap->motion_type != MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 && oap->line_count == 1)
1831 {
1832 oap->regname = '-';
1833 get_yank_register(oap->regname, TRUE);
1834 if (op_yank(oap, TRUE, FALSE) == OK)
1835 did_yank = TRUE;
1836 oap->regname = 0;
1837 }
1838
1839 /*
1840 * If there's too much stuff to fit in the yank register, then get a
1841 * confirmation before doing the delete. This is crude, but simple.
1842 * And it avoids doing a delete of something we can't put back if we
1843 * want.
1844 */
1845 if (!did_yank)
1846 {
1847 int msg_silent_save = msg_silent;
1848
1849 msg_silent = 0; /* must display the prompt */
1850 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1851 msg_silent = msg_silent_save;
1852 if (n != 'y')
1853 {
1854 EMSG(_(e_abort));
1855 return FAIL;
1856 }
1857 }
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001858
1859#ifdef FEAT_AUTOCMD
1860 if (did_yank && has_textyankpost())
1861 yank_do_autocmd(oap, y_current);
1862#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 }
1864
Bram Moolenaard04b7502010-07-08 22:27:55 +02001865 /*
1866 * block mode delete
1867 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 if (oap->block_mode)
1869 {
1870 if (u_save((linenr_T)(oap->start.lnum - 1),
1871 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1872 return FAIL;
1873
1874 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1875 {
1876 block_prep(oap, &bd, lnum, TRUE);
1877 if (bd.textlen == 0) /* nothing to delete */
1878 continue;
1879
1880 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1881 if (lnum == curwin->w_cursor.lnum)
1882 {
1883 curwin->w_cursor.col = bd.textcol + bd.startspaces;
1884# ifdef FEAT_VIRTUALEDIT
1885 curwin->w_cursor.coladd = 0;
1886# endif
1887 }
1888
1889 /* n == number of chars deleted
1890 * If we delete a TAB, it may be replaced by several characters.
1891 * Thus the number of characters may increase!
1892 */
1893 n = bd.textlen - bd.startspaces - bd.endspaces;
1894 oldp = ml_get(lnum);
1895 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1896 if (newp == NULL)
1897 continue;
1898 /* copy up to deleted part */
1899 mch_memmove(newp, oldp, (size_t)bd.textcol);
1900 /* insert spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02001901 vim_memset(newp + bd.textcol, ' ',
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 (size_t)(bd.startspaces + bd.endspaces));
1903 /* copy the part after the deleted part */
1904 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001905 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 /* replace the line */
1907 ml_replace(lnum, newp, FALSE);
1908 }
1909
1910 check_cursor_col();
1911 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1912 oap->end.lnum + 1, 0L);
1913 oap->line_count = 0; /* no lines deleted */
1914 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001915 else if (oap->motion_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 {
1917 if (oap->op_type == OP_CHANGE)
1918 {
1919 /* Delete the lines except the first one. Temporarily move the
1920 * cursor to the next line. Save the current line number, if the
1921 * last line is deleted it may be changed.
1922 */
1923 if (oap->line_count > 1)
1924 {
1925 lnum = curwin->w_cursor.lnum;
1926 ++curwin->w_cursor.lnum;
1927 del_lines((long)(oap->line_count - 1), TRUE);
1928 curwin->w_cursor.lnum = lnum;
1929 }
1930 if (u_save_cursor() == FAIL)
1931 return FAIL;
1932 if (curbuf->b_p_ai) /* don't delete indent */
1933 {
1934 beginline(BL_WHITE); /* cursor on first non-white */
1935 did_ai = TRUE; /* delete the indent when ESC hit */
1936 ai_col = curwin->w_cursor.col;
1937 }
1938 else
1939 beginline(0); /* cursor in column 0 */
1940 truncate_line(FALSE); /* delete the rest of the line */
1941 /* leave cursor past last char in line */
1942 if (oap->line_count > 1)
1943 u_clearline(); /* "U" command not possible after "2cc" */
1944 }
1945 else
1946 {
1947 del_lines(oap->line_count, TRUE);
1948 beginline(BL_WHITE | BL_FIX);
1949 u_clearline(); /* "U" command not possible after "dd" */
1950 }
1951 }
1952 else
1953 {
1954#ifdef FEAT_VIRTUALEDIT
1955 if (virtual_op)
1956 {
1957 int endcol = 0;
1958
1959 /* For virtualedit: break the tabs that are partly included. */
1960 if (gchar_pos(&oap->start) == '\t')
1961 {
1962 if (u_save_cursor() == FAIL) /* save first line for undo */
1963 return FAIL;
1964 if (oap->line_count == 1)
1965 endcol = getviscol2(oap->end.col, oap->end.coladd);
1966 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1967 oap->start = curwin->w_cursor;
1968 if (oap->line_count == 1)
1969 {
1970 coladvance(endcol);
1971 oap->end.col = curwin->w_cursor.col;
1972 oap->end.coladd = curwin->w_cursor.coladd;
1973 curwin->w_cursor = oap->start;
1974 }
1975 }
1976
1977 /* Break a tab only when it's included in the area. */
1978 if (gchar_pos(&oap->end) == '\t'
1979 && (int)oap->end.coladd < oap->inclusive)
1980 {
1981 /* save last line for undo */
1982 if (u_save((linenr_T)(oap->end.lnum - 1),
1983 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1984 return FAIL;
1985 curwin->w_cursor = oap->end;
1986 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
1987 oap->end = curwin->w_cursor;
1988 curwin->w_cursor = oap->start;
1989 }
1990 }
1991#endif
1992
1993 if (oap->line_count == 1) /* delete characters within one line */
1994 {
1995 if (u_save_cursor() == FAIL) /* save line for undo */
1996 return FAIL;
1997
1998 /* if 'cpoptions' contains '$', display '$' at end of change */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001999 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 && oap->op_type == OP_CHANGE
2001 && oap->end.lnum == curwin->w_cursor.lnum
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002002 && !oap->is_VIsual)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 display_dollar(oap->end.col - !oap->inclusive);
2004
2005 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
2006
2007#ifdef FEAT_VIRTUALEDIT
2008 if (virtual_op)
2009 {
2010 /* fix up things for virtualedit-delete:
2011 * break the tabs which are going to get in our way
2012 */
2013 char_u *curline = ml_get_curline();
2014 int len = (int)STRLEN(curline);
2015
2016 if (oap->end.coladd != 0
2017 && (int)oap->end.col >= len - 1
2018 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
2019 n++;
2020 /* Delete at least one char (e.g, when on a control char). */
2021 if (n == 0 && oap->start.coladd != oap->end.coladd)
2022 n = 1;
2023
2024 /* When deleted a char in the line, reset coladd. */
2025 if (gchar_cursor() != NUL)
2026 curwin->w_cursor.coladd = 0;
2027 }
2028#endif
Bram Moolenaard009e862015-06-09 20:20:03 +02002029 (void)del_bytes((long)n, !virtual_op,
2030 oap->op_type == OP_DELETE && !oap->is_VIsual);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 }
2032 else /* delete characters between lines */
2033 {
2034 pos_T curpos;
2035
2036 /* save deleted and changed lines for undo */
2037 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
2038 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
2039 return FAIL;
2040
2041 truncate_line(TRUE); /* delete from cursor to end of line */
2042
2043 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
2044 ++curwin->w_cursor.lnum;
2045 del_lines((long)(oap->line_count - 2), FALSE);
2046
Bram Moolenaard009e862015-06-09 20:20:03 +02002047 /* delete from start of line until op_end */
Bram Moolenaar44286ca2011-07-15 17:51:34 +02002048 n = (oap->end.col + 1 - !oap->inclusive);
Bram Moolenaard009e862015-06-09 20:20:03 +02002049 curwin->w_cursor.col = 0;
2050 (void)del_bytes((long)n, !virtual_op,
2051 oap->op_type == OP_DELETE && !oap->is_VIsual);
2052 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
2053 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 }
2055 }
2056
2057 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
2058
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002059#ifdef FEAT_VIRTUALEDIT
2060setmarks:
2061#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 if (oap->block_mode)
2063 {
2064 curbuf->b_op_end.lnum = oap->end.lnum;
2065 curbuf->b_op_end.col = oap->start.col;
2066 }
2067 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 curbuf->b_op_end = oap->start;
2069 curbuf->b_op_start = oap->start;
2070
2071 return OK;
2072}
2073
2074#ifdef FEAT_MBYTE
2075/*
2076 * Adjust end of operating area for ending on a multi-byte character.
2077 * Used for deletion.
2078 */
2079 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002080mb_adjust_opend(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081{
2082 char_u *p;
2083
2084 if (oap->inclusive)
2085 {
2086 p = ml_get(oap->end.lnum);
2087 oap->end.col += mb_tail_off(p, p + oap->end.col);
2088 }
2089}
2090#endif
2091
2092#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2093/*
2094 * Replace a whole area with one character.
2095 */
2096 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002097op_replace(oparg_T *oap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098{
2099 int n, numc;
2100#ifdef FEAT_MBYTE
2101 int num_chars;
2102#endif
2103 char_u *newp, *oldp;
2104 size_t oldlen;
2105 struct block_def bd;
Bram Moolenaard9820532013-11-04 01:41:17 +01002106 char_u *after_p = NULL;
2107 int had_ctrl_v_cr = (c == -1 || c == -2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108
2109 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2110 return OK; /* nothing to do */
2111
Bram Moolenaard9820532013-11-04 01:41:17 +01002112 if (had_ctrl_v_cr)
2113 c = (c == -1 ? '\r' : '\n');
2114
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115#ifdef FEAT_MBYTE
2116 if (has_mbyte)
2117 mb_adjust_opend(oap);
2118#endif
2119
2120 if (u_save((linenr_T)(oap->start.lnum - 1),
2121 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2122 return FAIL;
2123
2124 /*
2125 * block mode replace
2126 */
2127 if (oap->block_mode)
2128 {
2129 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2130 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2131 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002132 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2134 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2135 continue; /* nothing to replace */
2136
2137 /* n == number of extra chars required
2138 * If we split a TAB, it may be replaced by several characters.
2139 * Thus the number of characters may increase!
2140 */
2141#ifdef FEAT_VIRTUALEDIT
2142 /* If the range starts in virtual space, count the initial
2143 * coladd offset as part of "startspaces" */
2144 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2145 {
2146 pos_T vpos;
2147
Bram Moolenaara1381de2009-11-03 15:44:21 +00002148 vpos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 getvpos(&vpos, oap->start_vcol);
2150 bd.startspaces += vpos.coladd;
2151 n = bd.startspaces;
2152 }
2153 else
2154#endif
2155 /* allow for pre spaces */
2156 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2157
2158 /* allow for post spp */
2159 n += (bd.endspaces
2160#ifdef FEAT_VIRTUALEDIT
2161 && !bd.is_oneChar
2162#endif
2163 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2164 /* Figure out how many characters to replace. */
2165 numc = oap->end_vcol - oap->start_vcol + 1;
2166 if (bd.is_short && (!virtual_op || bd.is_MAX))
2167 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2168
2169#ifdef FEAT_MBYTE
2170 /* A double-wide character can be replaced only up to half the
2171 * times. */
2172 if ((*mb_char2cells)(c) > 1)
2173 {
2174 if ((numc & 1) && !bd.is_short)
2175 {
2176 ++bd.endspaces;
2177 ++n;
2178 }
2179 numc = numc / 2;
2180 }
2181
2182 /* Compute bytes needed, move character count to num_chars. */
2183 num_chars = numc;
2184 numc *= (*mb_char2len)(c);
2185#endif
2186 /* oldlen includes textlen, so don't double count */
2187 n += numc - bd.textlen;
2188
2189 oldp = ml_get_curline();
2190 oldlen = STRLEN(oldp);
2191 newp = alloc_check((unsigned)oldlen + 1 + n);
2192 if (newp == NULL)
2193 continue;
2194 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2195 /* copy up to deleted part */
2196 mch_memmove(newp, oldp, (size_t)bd.textcol);
2197 oldp += bd.textcol + bd.textlen;
2198 /* insert pre-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002199 vim_memset(newp + bd.textcol, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
Bram Moolenaard9820532013-11-04 01:41:17 +01002201 /* -1/-2 is used for entering CR literally. */
2202 if (had_ctrl_v_cr || (c != '\r' && c != '\n'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002204#ifdef FEAT_MBYTE
2205 if (has_mbyte)
2206 {
2207 n = (int)STRLEN(newp);
2208 while (--num_chars >= 0)
2209 n += (*mb_char2bytes)(c, newp + n);
2210 }
2211 else
2212#endif
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002213 vim_memset(newp + STRLEN(newp), c, (size_t)numc);
Bram Moolenaard9820532013-11-04 01:41:17 +01002214 if (!bd.is_short)
2215 {
2216 /* insert post-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002217 vim_memset(newp + STRLEN(newp), ' ', (size_t)bd.endspaces);
Bram Moolenaard9820532013-11-04 01:41:17 +01002218 /* copy the part after the changed part */
2219 STRMOVE(newp + STRLEN(newp), oldp);
2220 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 }
2222 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002224 /* Replacing with \r or \n means splitting the line. */
Bram Moolenaarefe06f42013-11-11 23:17:39 +01002225 after_p = alloc_check(
2226 (unsigned)(oldlen + 1 + n - STRLEN(newp)));
Bram Moolenaard9820532013-11-04 01:41:17 +01002227 if (after_p != NULL)
2228 STRMOVE(after_p, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 }
2230 /* replace the line */
2231 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
Bram Moolenaard9820532013-11-04 01:41:17 +01002232 if (after_p != NULL)
2233 {
2234 ml_append(curwin->w_cursor.lnum++, after_p, 0, FALSE);
2235 appended_lines_mark(curwin->w_cursor.lnum, 1L);
2236 oap->end.lnum++;
2237 vim_free(after_p);
2238 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 }
2240 }
2241 else
2242 {
2243 /*
2244 * MCHAR and MLINE motion replace.
2245 */
2246 if (oap->motion_type == MLINE)
2247 {
2248 oap->start.col = 0;
2249 curwin->w_cursor.col = 0;
2250 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2251 if (oap->end.col)
2252 --oap->end.col;
2253 }
2254 else if (!oap->inclusive)
2255 dec(&(oap->end));
2256
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002257 while (LTOREQ_POS(curwin->w_cursor, oap->end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 {
2259 n = gchar_cursor();
2260 if (n != NUL)
2261 {
2262#ifdef FEAT_MBYTE
2263 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2264 {
2265 /* This is slow, but it handles replacing a single-byte
2266 * with a multi-byte and the other way around. */
Bram Moolenaardb813952013-03-07 18:50:57 +01002267 if (curwin->w_cursor.lnum == oap->end.lnum)
2268 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 n = State;
2270 State = REPLACE;
2271 ins_char(c);
2272 State = n;
2273 /* Backup to the replaced character. */
2274 dec_cursor();
2275 }
2276 else
2277#endif
2278 {
2279#ifdef FEAT_VIRTUALEDIT
2280 if (n == TAB)
2281 {
2282 int end_vcol = 0;
2283
2284 if (curwin->w_cursor.lnum == oap->end.lnum)
2285 {
2286 /* oap->end has to be recalculated when
2287 * the tab breaks */
2288 end_vcol = getviscol2(oap->end.col,
2289 oap->end.coladd);
2290 }
2291 coladvance_force(getviscol());
2292 if (curwin->w_cursor.lnum == oap->end.lnum)
2293 getvpos(&oap->end, end_vcol);
2294 }
2295#endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002296 PCHAR(curwin->w_cursor, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297 }
2298 }
2299#ifdef FEAT_VIRTUALEDIT
2300 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2301 {
2302 int virtcols = oap->end.coladd;
2303
2304 if (curwin->w_cursor.lnum == oap->start.lnum
2305 && oap->start.col == oap->end.col && oap->start.coladd)
2306 virtcols -= oap->start.coladd;
2307
2308 /* oap->end has been trimmed so it's effectively inclusive;
2309 * as a result an extra +1 must be counted so we don't
2310 * trample the NUL byte. */
2311 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2312 curwin->w_cursor.col -= (virtcols + 1);
2313 for (; virtcols >= 0; virtcols--)
2314 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002315 PCHAR(curwin->w_cursor, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 if (inc(&curwin->w_cursor) == -1)
2317 break;
2318 }
2319 }
2320#endif
2321
2322 /* Advance to next character, stop at the end of the file. */
2323 if (inc_cursor() == -1)
2324 break;
2325 }
2326 }
2327
2328 curwin->w_cursor = oap->start;
2329 check_cursor();
2330 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2331
2332 /* Set "'[" and "']" marks. */
2333 curbuf->b_op_start = oap->start;
2334 curbuf->b_op_end = oap->end;
2335
2336 return OK;
2337}
2338#endif
2339
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002340static int swapchars(int op_type, pos_T *pos, int length);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002341
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342/*
2343 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2344 */
2345 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002346op_tilde(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347{
2348 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 struct block_def bd;
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002350 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351
2352 if (u_save((linenr_T)(oap->start.lnum - 1),
2353 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2354 return;
2355
2356 pos = oap->start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 if (oap->block_mode) /* Visual block mode */
2358 {
2359 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2360 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002361 int one_change;
2362
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 block_prep(oap, &bd, pos.lnum, FALSE);
2364 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002365 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2366 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002367
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002368#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002369 if (netbeans_active() && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 {
2371 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2372
Bram Moolenaar009b2592004-10-24 19:18:58 +00002373 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2374 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002376 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002378#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 }
2380 if (did_change)
2381 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2382 }
2383 else /* not block mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 {
2385 if (oap->motion_type == MLINE)
2386 {
2387 oap->start.col = 0;
2388 pos.col = 0;
2389 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2390 if (oap->end.col)
2391 --oap->end.col;
2392 }
2393 else if (!oap->inclusive)
2394 dec(&(oap->end));
2395
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002396 if (pos.lnum == oap->end.lnum)
2397 did_change = swapchars(oap->op_type, &pos,
2398 oap->end.col - pos.col + 1);
2399 else
2400 for (;;)
2401 {
2402 did_change |= swapchars(oap->op_type, &pos,
2403 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2404 (int)STRLEN(ml_get_pos(&pos)));
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002405 if (LTOREQ_POS(oap->end, pos) || inc(&pos) == -1)
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002406 break;
2407 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 if (did_change)
2409 {
2410 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2411 0L);
2412#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002413 if (netbeans_active() && did_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 {
2415 char_u *ptr;
2416 int count;
2417
2418 pos = oap->start;
2419 while (pos.lnum < oap->end.lnum)
2420 {
2421 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002422 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002423 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002425 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 pos.col = 0;
2427 pos.lnum++;
2428 }
2429 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2430 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002431 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002433 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 }
2435#endif
2436 }
2437 }
2438
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 if (!did_change && oap->is_VIsual)
2440 /* No change: need to remove the Visual selection */
2441 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442
2443 /*
2444 * Set '[ and '] marks.
2445 */
2446 curbuf->b_op_start = oap->start;
2447 curbuf->b_op_end = oap->end;
2448
2449 if (oap->line_count > p_report)
2450 {
2451 if (oap->line_count == 1)
2452 MSG(_("1 line changed"));
2453 else
2454 smsg((char_u *)_("%ld lines changed"), oap->line_count);
2455 }
2456}
2457
2458/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002459 * Invoke swapchar() on "length" bytes at position "pos".
2460 * "pos" is advanced to just after the changed characters.
2461 * "length" is rounded up to include the whole last multi-byte character.
2462 * Also works correctly when the number of bytes changes.
2463 * Returns TRUE if some character was changed.
2464 */
2465 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002466swapchars(int op_type, pos_T *pos, int length)
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002467{
2468 int todo;
2469 int did_change = 0;
2470
2471 for (todo = length; todo > 0; --todo)
2472 {
2473# ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002474 if (has_mbyte)
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002475 {
2476 int len = (*mb_ptr2len)(ml_get_pos(pos));
2477
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002478 /* we're counting bytes, not characters */
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002479 if (len > 0)
2480 todo -= len - 1;
2481 }
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002482# endif
2483 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002484 if (inc(pos) == -1) /* at end of file */
2485 break;
2486 }
2487 return did_change;
2488}
2489
2490/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 * If op_type == OP_UPPER: make uppercase,
2492 * if op_type == OP_LOWER: make lowercase,
2493 * if op_type == OP_ROT13: do rot13 encoding,
2494 * else swap case of character at 'pos'
2495 * returns TRUE when something actually changed.
2496 */
2497 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002498swapchar(int op_type, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499{
2500 int c;
2501 int nc;
2502
2503 c = gchar_pos(pos);
2504
2505 /* Only do rot13 encoding for ASCII characters. */
2506 if (c >= 0x80 && op_type == OP_ROT13)
2507 return FALSE;
2508
2509#ifdef FEAT_MBYTE
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002510 if (op_type == OP_UPPER && c == 0xdf
2511 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002512 {
2513 pos_T sp = curwin->w_cursor;
2514
2515 /* Special handling of German sharp s: change to "SS". */
2516 curwin->w_cursor = *pos;
2517 del_char(FALSE);
2518 ins_char('S');
2519 ins_char('S');
2520 curwin->w_cursor = sp;
2521 inc(pos);
2522 }
2523
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2525 return FALSE;
2526#endif
2527 nc = c;
2528 if (MB_ISLOWER(c))
2529 {
2530 if (op_type == OP_ROT13)
2531 nc = ROT13(c, 'a');
2532 else if (op_type != OP_LOWER)
2533 nc = MB_TOUPPER(c);
2534 }
2535 else if (MB_ISUPPER(c))
2536 {
2537 if (op_type == OP_ROT13)
2538 nc = ROT13(c, 'A');
2539 else if (op_type != OP_UPPER)
2540 nc = MB_TOLOWER(c);
2541 }
2542 if (nc != c)
2543 {
2544#ifdef FEAT_MBYTE
2545 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2546 {
2547 pos_T sp = curwin->w_cursor;
2548
2549 curwin->w_cursor = *pos;
Bram Moolenaard1cb65e2010-08-01 14:22:48 +02002550 /* don't use del_char(), it also removes composing chars */
2551 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 ins_char(nc);
2553 curwin->w_cursor = sp;
2554 }
2555 else
2556#endif
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002557 PCHAR(*pos, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 return TRUE;
2559 }
2560 return FALSE;
2561}
2562
2563#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
2564/*
2565 * op_insert - Insert and append operators for Visual mode.
2566 */
2567 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002568op_insert(oparg_T *oap, long count1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569{
2570 long ins_len, pre_textlen = 0;
2571 char_u *firstline, *ins_text;
Bram Moolenaar2254a8a2017-09-03 14:03:43 +02002572 colnr_T ind_pre = 0, ind_post;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 struct block_def bd;
2574 int i;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002575 pos_T t1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576
2577 /* edit() changes this - record it for OP_APPEND */
2578 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2579
2580 /* vis block is still marked. Get rid of it now. */
2581 curwin->w_cursor.lnum = oap->start.lnum;
2582 update_screen(INVERTED);
2583
2584 if (oap->block_mode)
2585 {
2586#ifdef FEAT_VIRTUALEDIT
2587 /* When 'virtualedit' is used, need to insert the extra spaces before
2588 * doing block_prep(). When only "block" is used, virtual edit is
2589 * already disabled, but still need it when calling
2590 * coladvance_force(). */
2591 if (curwin->w_cursor.coladd > 0)
2592 {
2593 int old_ve_flags = ve_flags;
2594
2595 ve_flags = VE_ALL;
2596 if (u_save_cursor() == FAIL)
2597 return;
2598 coladvance_force(oap->op_type == OP_APPEND
2599 ? oap->end_vcol + 1 : getviscol());
2600 if (oap->op_type == OP_APPEND)
2601 --curwin->w_cursor.col;
2602 ve_flags = old_ve_flags;
2603 }
2604#endif
2605 /* Get the info about the block before entering the text */
2606 block_prep(oap, &bd, oap->start.lnum, TRUE);
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002607 /* Get indent information */
2608 ind_pre = (colnr_T)getwhitecols_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 firstline = ml_get(oap->start.lnum) + bd.textcol;
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002610
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 if (oap->op_type == OP_APPEND)
2612 firstline += bd.textlen;
2613 pre_textlen = (long)STRLEN(firstline);
2614 }
2615
2616 if (oap->op_type == OP_APPEND)
2617 {
2618 if (oap->block_mode
2619#ifdef FEAT_VIRTUALEDIT
2620 && curwin->w_cursor.coladd == 0
2621#endif
2622 )
2623 {
2624 /* Move the cursor to the character right of the block. */
2625 curwin->w_set_curswant = TRUE;
2626 while (*ml_get_cursor() != NUL
2627 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2628 ++curwin->w_cursor.col;
2629 if (bd.is_short && !bd.is_MAX)
2630 {
2631 /* First line was too short, make it longer and adjust the
2632 * values in "bd". */
2633 if (u_save_cursor() == FAIL)
2634 return;
2635 for (i = 0; i < bd.endspaces; ++i)
2636 ins_char(' ');
2637 bd.textlen += bd.endspaces;
2638 }
2639 }
2640 else
2641 {
2642 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002643 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644
2645 /* Works just like an 'i'nsert on the next character. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002646 if (!LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 && oap->start_vcol != oap->end_vcol)
2648 inc_cursor();
2649 }
2650 }
2651
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002652 t1 = oap->start;
Bram Moolenaar23fa81d2017-02-01 21:50:21 +01002653 (void)edit(NUL, FALSE, (linenr_T)count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002655 /* When a tab was inserted, and the characters in front of the tab
2656 * have been converted to a tab as well, the column of the cursor
2657 * might have actually been reduced, so need to adjust here. */
2658 if (t1.lnum == curbuf->b_op_start_orig.lnum
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002659 && LT_POS(curbuf->b_op_start_orig, t1))
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002660 oap->start = curbuf->b_op_start_orig;
2661
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002662 /* If user has moved off this line, we don't know what to do, so do
2663 * nothing.
2664 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2665 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 return;
2667
2668 if (oap->block_mode)
2669 {
2670 struct block_def bd2;
2671
Bram Moolenaar4ec86dd2017-09-02 23:28:54 +02002672 /* If indent kicked in, the firstline might have changed
2673 * but only do that, if the indent actually increased. */
2674 ind_post = (colnr_T)getwhitecols_curline();
2675 if (curbuf->b_op_start.col > ind_pre && ind_post > ind_pre)
2676 {
2677 bd.textcol += ind_post - ind_pre;
2678 bd.start_vcol += ind_post - ind_pre;
2679 }
2680
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002681 /* The user may have moved the cursor before inserting something, try
2682 * to adjust the block for that. */
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002683 if (oap->start.lnum == curbuf->b_op_start_orig.lnum && !bd.is_MAX)
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002684 {
2685 if (oap->op_type == OP_INSERT
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002686 && oap->start.col
2687#ifdef FEAT_VIRTUALEDIT
2688 + oap->start.coladd
2689#endif
2690 != curbuf->b_op_start_orig.col
2691#ifdef FEAT_VIRTUALEDIT
2692 + curbuf->b_op_start_orig.coladd
2693#endif
2694 )
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002695 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002696 int t = getviscol2(curbuf->b_op_start_orig.col,
2697 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002698 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002699 pre_textlen -= t - oap->start_vcol;
2700 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002701 }
2702 else if (oap->op_type == OP_APPEND
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002703 && oap->end.col
2704#ifdef FEAT_VIRTUALEDIT
2705 + oap->end.coladd
2706#endif
2707 >= curbuf->b_op_start_orig.col
2708#ifdef FEAT_VIRTUALEDIT
2709 + curbuf->b_op_start_orig.coladd
2710#endif
2711 )
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002712 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002713 int t = getviscol2(curbuf->b_op_start_orig.col,
2714 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002715 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002716 /* reset pre_textlen to the value of OP_INSERT */
2717 pre_textlen += bd.textlen;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002718 pre_textlen -= t - oap->start_vcol;
2719 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002720 oap->op_type = OP_INSERT;
2721 }
2722 }
2723
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 /*
2725 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002726 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 * Don't do this when "$" used, end-of-line will have changed.
2728 */
2729 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2730 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2731 {
2732 if (oap->op_type == OP_APPEND)
2733 {
2734 pre_textlen += bd2.textlen - bd.textlen;
2735 if (bd2.endspaces)
2736 --bd2.textlen;
2737 }
2738 bd.textcol = bd2.textcol;
2739 bd.textlen = bd2.textlen;
2740 }
2741
2742 /*
2743 * Subsequent calls to ml_get() flush the firstline data - take a
2744 * copy of the required string.
2745 */
2746 firstline = ml_get(oap->start.lnum) + bd.textcol;
2747 if (oap->op_type == OP_APPEND)
2748 firstline += bd.textlen;
Bram Moolenaar5e4b9e92012-03-23 14:16:23 +01002749 if (pre_textlen >= 0
2750 && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 {
2752 ins_text = vim_strnsave(firstline, (int)ins_len);
2753 if (ins_text != NULL)
2754 {
2755 /* block handled here */
2756 if (u_save(oap->start.lnum,
2757 (linenr_T)(oap->end.lnum + 1)) == OK)
2758 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2759 &bd);
2760
2761 curwin->w_cursor.col = oap->start.col;
2762 check_cursor();
2763 vim_free(ins_text);
2764 }
2765 }
2766 }
2767}
2768#endif
2769
2770/*
2771 * op_change - handle a change operation
2772 *
2773 * return TRUE if edit() returns because of a CTRL-O command
2774 */
2775 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002776op_change(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777{
2778 colnr_T l;
2779 int retval;
2780#ifdef FEAT_VISUALEXTRA
2781 long offset;
2782 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002783 long ins_len;
2784 long pre_textlen = 0;
2785 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 char_u *firstline;
2787 char_u *ins_text, *newp, *oldp;
2788 struct block_def bd;
2789#endif
2790
2791 l = oap->start.col;
2792 if (oap->motion_type == MLINE)
2793 {
2794 l = 0;
2795#ifdef FEAT_SMARTINDENT
2796 if (!p_paste && curbuf->b_p_si
2797# ifdef FEAT_CINDENT
2798 && !curbuf->b_p_cin
2799# endif
2800 )
2801 can_si = TRUE; /* It's like opening a new line, do si */
2802#endif
2803 }
2804
2805 /* First delete the text in the region. In an empty buffer only need to
2806 * save for undo */
2807 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2808 {
2809 if (u_save_cursor() == FAIL)
2810 return FALSE;
2811 }
2812 else if (op_delete(oap) == FAIL)
2813 return FALSE;
2814
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002815 if ((l > curwin->w_cursor.col) && !LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 && !virtual_op)
2817 inc_cursor();
2818
2819#ifdef FEAT_VISUALEXTRA
2820 /* check for still on same line (<CR> in inserted text meaningless) */
2821 /* skip blank lines too */
2822 if (oap->block_mode)
2823 {
2824# ifdef FEAT_VIRTUALEDIT
2825 /* Add spaces before getting the current line length. */
2826 if (virtual_op && (curwin->w_cursor.coladd > 0
2827 || gchar_cursor() == NUL))
2828 coladvance_force(getviscol());
2829# endif
Bram Moolenaar53241da2007-09-13 20:41:32 +00002830 firstline = ml_get(oap->start.lnum);
2831 pre_textlen = (long)STRLEN(firstline);
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002832 pre_indent = (long)getwhitecols(firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 bd.textcol = curwin->w_cursor.col;
2834 }
2835#endif
2836
2837#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2838 if (oap->motion_type == MLINE)
2839 fix_indent();
2840#endif
2841
2842 retval = edit(NUL, FALSE, (linenr_T)1);
2843
2844#ifdef FEAT_VISUALEXTRA
2845 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002846 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002848 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002850 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002852 /* Auto-indenting may have changed the indent. If the cursor was past
2853 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002855 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856 {
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002857 long new_indent = (long)getwhitecols(firstline);
Bram Moolenaar53241da2007-09-13 20:41:32 +00002858
2859 pre_textlen += new_indent - pre_indent;
2860 bd.textcol += new_indent - pre_indent;
2861 }
2862
2863 ins_len = (long)STRLEN(firstline) - pre_textlen;
2864 if (ins_len > 0)
2865 {
2866 /* Subsequent calls to ml_get() flush the firstline data - take a
2867 * copy of the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2869 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002870 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2872 linenr++)
2873 {
2874 block_prep(oap, &bd, linenr, TRUE);
2875 if (!bd.is_short || virtual_op)
2876 {
2877# ifdef FEAT_VIRTUALEDIT
2878 pos_T vpos;
2879
2880 /* If the block starts in virtual space, count the
2881 * initial coladd offset as part of "startspaces" */
2882 if (bd.is_short)
2883 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002884 vpos.lnum = linenr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 (void)getvpos(&vpos, oap->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 }
2887 else
2888 vpos.coladd = 0;
2889# endif
2890 oldp = ml_get(linenr);
2891 newp = alloc_check((unsigned)(STRLEN(oldp)
2892# ifdef FEAT_VIRTUALEDIT
2893 + vpos.coladd
2894# endif
2895 + ins_len + 1));
2896 if (newp == NULL)
2897 continue;
2898 /* copy up to block start */
2899 mch_memmove(newp, oldp, (size_t)bd.textcol);
2900 offset = bd.textcol;
2901# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002902 vim_memset(newp + offset, ' ', (size_t)vpos.coladd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903 offset += vpos.coladd;
2904# endif
2905 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2906 offset += ins_len;
2907 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002908 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 ml_replace(linenr, newp, FALSE);
2910 }
2911 }
2912 check_cursor();
2913
2914 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2915 }
2916 vim_free(ins_text);
2917 }
2918 }
2919#endif
2920
2921 return retval;
2922}
2923
2924/*
2925 * set all the yank registers to empty (called from main())
2926 */
2927 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002928init_yank(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929{
2930 int i;
2931
2932 for (i = 0; i < NUM_REGISTERS; ++i)
2933 y_regs[i].y_array = NULL;
2934}
2935
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002936#if defined(EXITFREE) || defined(PROTO)
2937 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002938clear_registers(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002939{
2940 int i;
2941
2942 for (i = 0; i < NUM_REGISTERS; ++i)
2943 {
2944 y_current = &y_regs[i];
2945 if (y_current->y_array != NULL)
2946 free_yank_all();
2947 }
2948}
2949#endif
2950
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951/*
2952 * Free "n" lines from the current yank register.
2953 * Called for normal freeing and in case of error.
2954 */
2955 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002956free_yank(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957{
2958 if (y_current->y_array != NULL)
2959 {
2960 long i;
2961
2962 for (i = n; --i >= 0; )
2963 {
2964#ifdef AMIGA /* only for very slow machines */
2965 if ((i & 1023) == 1023) /* this may take a while */
2966 {
2967 /*
2968 * This message should never cause a hit-return message.
2969 * Overwrite this message with any next message.
2970 */
2971 ++no_wait_return;
2972 smsg((char_u *)_("freeing %ld lines"), i + 1);
2973 --no_wait_return;
2974 msg_didout = FALSE;
2975 msg_col = 0;
2976 }
2977#endif
2978 vim_free(y_current->y_array[i]);
2979 }
2980 vim_free(y_current->y_array);
2981 y_current->y_array = NULL;
2982#ifdef AMIGA
2983 if (n >= 1000)
2984 MSG("");
2985#endif
2986 }
2987}
2988
2989 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002990free_yank_all(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991{
2992 free_yank(y_current->y_size);
2993}
2994
2995/*
2996 * Yank the text between "oap->start" and "oap->end" into a yank register.
2997 * If we are to append (uppercase register), we first yank into a new yank
2998 * register and then concatenate the old and the new one (so we keep the old
2999 * one in case of out-of-memory).
3000 *
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02003001 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 */
3003 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003004op_yank(oparg_T *oap, int deleting, int mess)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005{
3006 long y_idx; /* index in y_array[] */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003007 yankreg_T *curr; /* copy of y_current */
3008 yankreg_T newreg; /* new yank register when appending */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 char_u **new_ptr;
3010 linenr_T lnum; /* current line number */
3011 long j;
3012 int yanktype = oap->motion_type;
3013 long yanklines = oap->line_count;
3014 linenr_T yankendlnum = oap->end.lnum;
3015 char_u *p;
3016 char_u *pnew;
3017 struct block_def bd;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003018#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003019 int did_star = FALSE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003020#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021
3022 /* check for read-only register */
3023 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
3024 {
3025 beep_flush();
3026 return FAIL;
3027 }
3028 if (oap->regname == '_') /* black hole: nothing to do */
3029 return OK;
3030
3031#ifdef FEAT_CLIPBOARD
3032 if (!clip_star.available && oap->regname == '*')
3033 oap->regname = 0;
3034 else if (!clip_plus.available && oap->regname == '+')
3035 oap->regname = 0;
3036#endif
3037
3038 if (!deleting) /* op_delete() already set y_current */
3039 get_yank_register(oap->regname, TRUE);
3040
3041 curr = y_current;
3042 /* append to existing contents */
3043 if (y_append && y_current->y_array != NULL)
3044 y_current = &newreg;
3045 else
3046 free_yank_all(); /* free previously yanked lines */
3047
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00003048 /*
3049 * If the cursor was in column 1 before and after the movement, and the
3050 * operator is not inclusive, the yank is always linewise.
3051 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 if ( oap->motion_type == MCHAR
3053 && oap->start.col == 0
3054 && !oap->inclusive
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00003056 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 && oap->end.col == 0
3058 && yanklines > 1)
3059 {
3060 yanktype = MLINE;
3061 --yankendlnum;
3062 --yanklines;
3063 }
3064
3065 y_current->y_size = yanklines;
3066 y_current->y_type = yanktype; /* set the yank register type */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067 y_current->y_width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
3069 yanklines), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070 if (y_current->y_array == NULL)
3071 {
3072 y_current = curr;
3073 return FAIL;
3074 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003075#ifdef FEAT_VIMINFO
3076 y_current->y_time_set = vim_time();
3077#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078
3079 y_idx = 0;
3080 lnum = oap->start.lnum;
3081
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 if (oap->block_mode)
3083 {
3084 /* Visual block mode */
3085 y_current->y_type = MBLOCK; /* set the yank register type */
3086 y_current->y_width = oap->end_vcol - oap->start_vcol;
3087
3088 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
3089 y_current->y_width--;
3090 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091
3092 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
3093 {
3094 switch (y_current->y_type)
3095 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096 case MBLOCK:
3097 block_prep(oap, &bd, lnum, FALSE);
3098 if (yank_copy_line(&bd, y_idx) == FAIL)
3099 goto fail;
3100 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101
3102 case MLINE:
3103 if ((y_current->y_array[y_idx] =
3104 vim_strsave(ml_get(lnum))) == NULL)
3105 goto fail;
3106 break;
3107
3108 case MCHAR:
3109 {
3110 colnr_T startcol = 0, endcol = MAXCOL;
3111#ifdef FEAT_VIRTUALEDIT
3112 int is_oneChar = FALSE;
3113 colnr_T cs, ce;
3114#endif
3115 p = ml_get(lnum);
3116 bd.startspaces = 0;
3117 bd.endspaces = 0;
3118
3119 if (lnum == oap->start.lnum)
3120 {
3121 startcol = oap->start.col;
3122#ifdef FEAT_VIRTUALEDIT
3123 if (virtual_op)
3124 {
3125 getvcol(curwin, &oap->start, &cs, NULL, &ce);
3126 if (ce != cs && oap->start.coladd > 0)
3127 {
3128 /* Part of a tab selected -- but don't
3129 * double-count it. */
3130 bd.startspaces = (ce - cs + 1)
3131 - oap->start.coladd;
3132 startcol++;
3133 }
3134 }
3135#endif
3136 }
3137
3138 if (lnum == oap->end.lnum)
3139 {
3140 endcol = oap->end.col;
3141#ifdef FEAT_VIRTUALEDIT
3142 if (virtual_op)
3143 {
3144 getvcol(curwin, &oap->end, &cs, NULL, &ce);
3145 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
3146# ifdef FEAT_MBYTE
3147 /* Don't add space for double-wide
3148 * char; endcol will be on last byte
3149 * of multi-byte char. */
3150 && (*mb_head_off)(p, p + endcol) == 0
3151# endif
3152 ))
3153 {
3154 if (oap->start.lnum == oap->end.lnum
3155 && oap->start.col == oap->end.col)
3156 {
3157 /* Special case: inside a single char */
3158 is_oneChar = TRUE;
3159 bd.startspaces = oap->end.coladd
3160 - oap->start.coladd + oap->inclusive;
3161 endcol = startcol;
3162 }
3163 else
3164 {
3165 bd.endspaces = oap->end.coladd
3166 + oap->inclusive;
3167 endcol -= oap->inclusive;
3168 }
3169 }
3170 }
3171#endif
3172 }
Bram Moolenaar18e00d22012-05-18 12:49:40 +02003173 if (endcol == MAXCOL)
3174 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 if (startcol > endcol
3176#ifdef FEAT_VIRTUALEDIT
3177 || is_oneChar
3178#endif
3179 )
3180 bd.textlen = 0;
3181 else
3182 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 bd.textlen = endcol - startcol + oap->inclusive;
3184 }
3185 bd.textstart = p + startcol;
3186 if (yank_copy_line(&bd, y_idx) == FAIL)
3187 goto fail;
3188 break;
3189 }
3190 /* NOTREACHED */
3191 }
3192 }
3193
3194 if (curr != y_current) /* append the new block to the old block */
3195 {
3196 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3197 (curr->y_size + y_current->y_size)), TRUE);
3198 if (new_ptr == NULL)
3199 goto fail;
3200 for (j = 0; j < curr->y_size; ++j)
3201 new_ptr[j] = curr->y_array[j];
3202 vim_free(curr->y_array);
3203 curr->y_array = new_ptr;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003204#ifdef FEAT_VIMINFO
3205 curr->y_time_set = vim_time();
3206#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003207
3208 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3209 curr->y_type = MLINE;
3210
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003211 /* Concatenate the last line of the old block with the first line of
3212 * the new block, unless being Vi compatible. */
3213 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214 {
3215 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3216 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3217 if (pnew == NULL)
3218 {
3219 y_idx = y_current->y_size - 1;
3220 goto fail;
3221 }
3222 STRCPY(pnew, curr->y_array[--j]);
3223 STRCAT(pnew, y_current->y_array[0]);
3224 vim_free(curr->y_array[j]);
3225 vim_free(y_current->y_array[0]);
3226 curr->y_array[j++] = pnew;
3227 y_idx = 1;
3228 }
3229 else
3230 y_idx = 0;
3231 while (y_idx < y_current->y_size)
3232 curr->y_array[j++] = y_current->y_array[y_idx++];
3233 curr->y_size = j;
3234 vim_free(y_current->y_array);
3235 y_current = curr;
3236 }
Bram Moolenaar7ec83432014-06-17 18:16:11 +02003237 if (curwin->w_p_rnu)
3238 redraw_later(SOME_VALID); /* cursor moved to start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 if (mess) /* Display message about yank? */
3240 {
3241 if (yanktype == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 && yanklines == 1)
3244 yanklines = 0;
3245 /* Some versions of Vi use ">=" here, some don't... */
3246 if (yanklines > p_report)
3247 {
Bram Moolenaare45deb72017-07-16 17:56:16 +02003248 char namebuf[100];
3249
3250 if (oap->regname == NUL)
3251 *namebuf = NUL;
3252 else
3253 vim_snprintf(namebuf, sizeof(namebuf),
Bram Moolenaar60d0e972017-07-16 20:54:34 +02003254 _(" into \"%c"), oap->regname);
Bram Moolenaare45deb72017-07-16 17:56:16 +02003255
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 /* redisplay now, so message is not deleted */
3257 update_topline_redraw();
3258 if (yanklines == 1)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003259 {
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003260 if (oap->block_mode)
Bram Moolenaare45deb72017-07-16 17:56:16 +02003261 smsg((char_u *)_("block of 1 line yanked%s"), namebuf);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003262 else
Bram Moolenaare45deb72017-07-16 17:56:16 +02003263 smsg((char_u *)_("1 line yanked%s"), namebuf);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003264 }
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003265 else if (oap->block_mode)
Bram Moolenaare45deb72017-07-16 17:56:16 +02003266 smsg((char_u *)_("block of %ld lines yanked%s"),
3267 yanklines, namebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268 else
Bram Moolenaare45deb72017-07-16 17:56:16 +02003269 smsg((char_u *)_("%ld lines yanked%s"), yanklines,
3270 namebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 }
3272 }
3273
3274 /*
3275 * Set "'[" and "']" marks.
3276 */
3277 curbuf->b_op_start = oap->start;
3278 curbuf->b_op_end = oap->end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003279 if (yanktype == MLINE && !oap->block_mode)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003280 {
3281 curbuf->b_op_start.col = 0;
3282 curbuf->b_op_end.col = MAXCOL;
3283 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284
3285#ifdef FEAT_CLIPBOARD
3286 /*
3287 * If we were yanking to the '*' register, send result to clipboard.
3288 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3289 * to the '*' register.
3290 */
3291 if (clip_star.available
3292 && (curr == &(y_regs[STAR_REGISTER])
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003293 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003294 && ((clip_unnamed | clip_unnamed_saved) & CLIP_UNNAMED))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 {
3296 if (curr != &(y_regs[STAR_REGISTER]))
3297 /* Copy the text from register 0 to the clipboard register. */
3298 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3299
3300 clip_own_selection(&clip_star);
3301 clip_gen_set_selection(&clip_star);
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003302# ifdef FEAT_X11
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003303 did_star = TRUE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003304# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305 }
3306
3307# ifdef FEAT_X11
3308 /*
3309 * If we were yanking to the '+' register, send result to selection.
3310 * Also copy to the '*' register, in case auto-select is off.
3311 */
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003312 if (clip_plus.available
3313 && (curr == &(y_regs[PLUS_REGISTER])
3314 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003315 && ((clip_unnamed | clip_unnamed_saved) &
3316 CLIP_UNNAMED_PLUS))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 {
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003318 if (curr != &(y_regs[PLUS_REGISTER]))
3319 /* Copy the text from register 0 to the clipboard register. */
3320 copy_yank_reg(&(y_regs[PLUS_REGISTER]));
3321
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322 clip_own_selection(&clip_plus);
3323 clip_gen_set_selection(&clip_plus);
Bram Moolenaar8bfe07b2017-10-15 21:47:05 +02003324 if (!clip_isautosel_star() && !clip_isautosel_plus()
3325 && !did_star && curr == &(y_regs[PLUS_REGISTER]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 {
3327 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3328 clip_own_selection(&clip_star);
3329 clip_gen_set_selection(&clip_star);
3330 }
3331 }
3332# endif
3333#endif
3334
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01003335#ifdef FEAT_AUTOCMD
3336 if (!deleting && has_textyankpost())
3337 yank_do_autocmd(oap, y_current);
3338#endif
3339
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 return OK;
3341
3342fail: /* free the allocated lines */
3343 free_yank(y_idx + 1);
3344 y_current = curr;
3345 return FAIL;
3346}
3347
3348 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003349yank_copy_line(struct block_def *bd, long y_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350{
3351 char_u *pnew;
3352
3353 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3354 == NULL)
3355 return FAIL;
3356 y_current->y_array[y_idx] = pnew;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003357 vim_memset(pnew, ' ', (size_t)bd->startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358 pnew += bd->startspaces;
3359 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3360 pnew += bd->textlen;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003361 vim_memset(pnew, ' ', (size_t)bd->endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 pnew += bd->endspaces;
3363 *pnew = NUL;
3364 return OK;
3365}
3366
3367#ifdef FEAT_CLIPBOARD
3368/*
3369 * Make a copy of the y_current register to register "reg".
3370 */
3371 static void
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003372copy_yank_reg(yankreg_T *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003374 yankreg_T *curr = y_current;
3375 long j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376
3377 y_current = reg;
3378 free_yank_all();
3379 *y_current = *curr;
3380 y_current->y_array = (char_u **)lalloc_clear(
3381 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3382 if (y_current->y_array == NULL)
3383 y_current->y_size = 0;
3384 else
3385 for (j = 0; j < y_current->y_size; ++j)
3386 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3387 {
3388 free_yank(j);
3389 y_current->y_size = 0;
3390 break;
3391 }
3392 y_current = curr;
3393}
3394#endif
3395
3396/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003397 * Put contents of register "regname" into the text.
3398 * Caller must check "regname" to be valid!
3399 * "flags": PUT_FIXINDENT make indent look nice
3400 * PUT_CURSEND leave cursor after end of new text
3401 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 */
3403 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003404do_put(
3405 int regname,
3406 int dir, /* BACKWARD for 'P', FORWARD for 'p' */
3407 long count,
3408 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409{
3410 char_u *ptr;
3411 char_u *newp, *oldp;
3412 int yanklen;
3413 int totlen = 0; /* init for gcc */
3414 linenr_T lnum;
3415 colnr_T col;
3416 long i; /* index in y_array[] */
3417 int y_type;
3418 long y_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419 int oldlen;
3420 long y_width = 0;
3421 colnr_T vcol;
3422 int delcount;
3423 int incr = 0;
3424 long j;
3425 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426 char_u **y_array = NULL;
3427 long nr_lines = 0;
3428 pos_T new_cursor;
3429 int indent;
3430 int orig_indent = 0; /* init for gcc */
3431 int indent_diff = 0; /* init for gcc */
3432 int first_indent = TRUE;
3433 int lendiff = 0;
3434 pos_T old_pos;
3435 char_u *insert_string = NULL;
3436 int allocated = FALSE;
3437 long cnt;
3438
3439#ifdef FEAT_CLIPBOARD
3440 /* Adjust register name for "unnamed" in 'clipboard'. */
3441 adjust_clip_reg(&regname);
3442 (void)may_get_selection(regname);
3443#endif
3444
3445 if (flags & PUT_FIXINDENT)
3446 orig_indent = get_indent();
3447
3448 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3449 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3450
3451 /*
3452 * Using inserted text works differently, because the register includes
3453 * special characters (newlines, etc.).
3454 */
3455 if (regname == '.')
3456 {
Bram Moolenaarf8eb9c52017-01-02 17:31:24 +01003457 if (VIsual_active)
3458 stuffcharReadbuff(VIsual_mode);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3460 (count == -1 ? 'O' : 'i')), count, FALSE);
3461 /* Putting the text is done later, so can't really move the cursor to
3462 * the next character. Use "l" to simulate it. */
3463 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3464 stuffcharReadbuff('l');
3465 return;
3466 }
3467
3468 /*
3469 * For special registers '%' (file name), '#' (alternate file name) and
3470 * ':' (last command line), etc. we have to create a fake yank register.
3471 */
3472 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3473 {
3474 if (insert_string == NULL)
3475 return;
3476 }
3477
Bram Moolenaar27356ad2012-12-12 16:11:36 +01003478#ifdef FEAT_AUTOCMD
3479 /* Autocommands may be executed when saving lines for undo, which may make
3480 * y_array invalid. Start undo now to avoid that. */
3481 u_save(curwin->w_cursor.lnum, curwin->w_cursor.lnum + 1);
3482#endif
3483
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484 if (insert_string != NULL)
3485 {
3486 y_type = MCHAR;
3487#ifdef FEAT_EVAL
3488 if (regname == '=')
3489 {
3490 /* For the = register we need to split the string at NL
Bram Moolenaara554a192011-09-21 17:33:53 +02003491 * characters.
3492 * Loop twice: count the number of lines and save them. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 for (;;)
3494 {
3495 y_size = 0;
3496 ptr = insert_string;
3497 while (ptr != NULL)
3498 {
3499 if (y_array != NULL)
3500 y_array[y_size] = ptr;
3501 ++y_size;
3502 ptr = vim_strchr(ptr, '\n');
3503 if (ptr != NULL)
3504 {
3505 if (y_array != NULL)
3506 *ptr = NUL;
3507 ++ptr;
Bram Moolenaara554a192011-09-21 17:33:53 +02003508 /* A trailing '\n' makes the register linewise. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 if (*ptr == NUL)
3510 {
3511 y_type = MLINE;
3512 break;
3513 }
3514 }
3515 }
3516 if (y_array != NULL)
3517 break;
3518 y_array = (char_u **)alloc((unsigned)
3519 (y_size * sizeof(char_u *)));
3520 if (y_array == NULL)
3521 goto end;
3522 }
3523 }
3524 else
3525#endif
3526 {
3527 y_size = 1; /* use fake one-line yank register */
3528 y_array = &insert_string;
3529 }
3530 }
3531 else
3532 {
3533 get_yank_register(regname, FALSE);
3534
3535 y_type = y_current->y_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536 y_width = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 y_size = y_current->y_size;
3538 y_array = y_current->y_array;
3539 }
3540
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 if (y_type == MLINE)
3542 {
3543 if (flags & PUT_LINE_SPLIT)
3544 {
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003545 char_u *p;
3546
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 /* "p" or "P" in Visual mode: split the lines to put the text in
3548 * between. */
3549 if (u_save_cursor() == FAIL)
3550 goto end;
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003551 p = ml_get_cursor();
3552 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003553 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003554 ptr = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 if (ptr == NULL)
3556 goto end;
3557 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3558 vim_free(ptr);
3559
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003560 oldp = ml_get_curline();
3561 p = oldp + curwin->w_cursor.col;
3562 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003563 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003564 ptr = vim_strnsave(oldp, p - oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 if (ptr == NULL)
3566 goto end;
3567 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3568 ++nr_lines;
3569 dir = FORWARD;
3570 }
3571 if (flags & PUT_LINE_FORWARD)
3572 {
3573 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003574 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575 dir = FORWARD;
3576 }
3577 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3578 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3579 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580
3581 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3582 y_type = MLINE;
3583
3584 if (y_size == 0 || y_array == NULL)
3585 {
3586 EMSG2(_("E353: Nothing in register %s"),
3587 regname == 0 ? (char_u *)"\"" : transchar(regname));
3588 goto end;
3589 }
3590
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 if (y_type == MBLOCK)
3592 {
3593 lnum = curwin->w_cursor.lnum + y_size + 1;
3594 if (lnum > curbuf->b_ml.ml_line_count)
3595 lnum = curbuf->b_ml.ml_line_count + 1;
3596 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3597 goto end;
3598 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003599 else if (y_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 {
3601 lnum = curwin->w_cursor.lnum;
3602#ifdef FEAT_FOLDING
3603 /* Correct line number for closed fold. Don't move the cursor yet,
3604 * u_save() uses it. */
3605 if (dir == BACKWARD)
3606 (void)hasFolding(lnum, &lnum, NULL);
3607 else
3608 (void)hasFolding(lnum, NULL, &lnum);
3609#endif
3610 if (dir == FORWARD)
3611 ++lnum;
Bram Moolenaar10315b12013-06-29 17:19:28 +02003612 /* In an empty buffer the empty line is going to be replaced, include
3613 * it in the saved lines. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003614 if ((BUFEMPTY() ? u_save(0, 2) : u_save(lnum - 1, lnum)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615 goto end;
3616#ifdef FEAT_FOLDING
3617 if (dir == FORWARD)
3618 curwin->w_cursor.lnum = lnum - 1;
3619 else
3620 curwin->w_cursor.lnum = lnum;
3621 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3622#endif
3623 }
3624 else if (u_save_cursor() == FAIL)
3625 goto end;
3626
3627 yanklen = (int)STRLEN(y_array[0]);
3628
3629#ifdef FEAT_VIRTUALEDIT
3630 if (ve_flags == VE_ALL && y_type == MCHAR)
3631 {
3632 if (gchar_cursor() == TAB)
3633 {
3634 /* Don't need to insert spaces when "p" on the last position of a
3635 * tab or "P" on the first position. */
3636 if (dir == FORWARD
3637 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3638 : curwin->w_cursor.coladd > 0)
3639 coladvance_force(getviscol());
3640 else
3641 curwin->w_cursor.coladd = 0;
3642 }
3643 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3644 coladvance_force(getviscol() + (dir == FORWARD));
3645 }
3646#endif
3647
3648 lnum = curwin->w_cursor.lnum;
3649 col = curwin->w_cursor.col;
3650
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 /*
3652 * Block mode
3653 */
3654 if (y_type == MBLOCK)
3655 {
Bram Moolenaarc8129962017-01-22 20:04:51 +01003656 int c = gchar_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 colnr_T endcol2 = 0;
3658
3659 if (dir == FORWARD && c != NUL)
3660 {
3661#ifdef FEAT_VIRTUALEDIT
3662 if (ve_flags == VE_ALL)
3663 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3664 else
3665#endif
3666 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3667
3668#ifdef FEAT_MBYTE
3669 if (has_mbyte)
3670 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003671 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 else
3673#endif
3674#ifdef FEAT_VIRTUALEDIT
3675 if (c != TAB || ve_flags != VE_ALL)
3676#endif
3677 ++curwin->w_cursor.col;
3678 ++col;
3679 }
3680 else
3681 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3682
3683#ifdef FEAT_VIRTUALEDIT
3684 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003685 if (ve_flags == VE_ALL
3686 && (curwin->w_cursor.coladd > 0
3687 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 {
3689 if (dir == FORWARD && c == NUL)
3690 ++col;
3691 if (dir != FORWARD && c != NUL)
3692 ++curwin->w_cursor.col;
3693 if (c == TAB)
3694 {
3695 if (dir == BACKWARD && curwin->w_cursor.col)
3696 curwin->w_cursor.col--;
3697 if (dir == FORWARD && col - 1 == endcol2)
3698 curwin->w_cursor.col++;
3699 }
3700 }
3701 curwin->w_cursor.coladd = 0;
3702#endif
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003703 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 for (i = 0; i < y_size; ++i)
3705 {
3706 int spaces;
3707 char shortline;
3708
3709 bd.startspaces = 0;
3710 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 vcol = 0;
3712 delcount = 0;
3713
3714 /* add a new line */
3715 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3716 {
3717 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3718 (colnr_T)1, FALSE) == FAIL)
3719 break;
3720 ++nr_lines;
3721 }
3722 /* get the old line and advance to the position to insert at */
3723 oldp = ml_get_curline();
3724 oldlen = (int)STRLEN(oldp);
3725 for (ptr = oldp; vcol < col && *ptr; )
3726 {
3727 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02003728 incr = lbr_chartabsize_adv(oldp, &ptr, (colnr_T)vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 vcol += incr;
3730 }
3731 bd.textcol = (colnr_T)(ptr - oldp);
3732
3733 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3734
3735 if (vcol < col) /* line too short, padd with spaces */
3736 bd.startspaces = col - vcol;
3737 else if (vcol > col)
3738 {
3739 bd.endspaces = vcol - col;
3740 bd.startspaces = incr - bd.endspaces;
3741 --bd.textcol;
3742 delcount = 1;
3743#ifdef FEAT_MBYTE
3744 if (has_mbyte)
3745 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
3746#endif
3747 if (oldp[bd.textcol] != TAB)
3748 {
3749 /* Only a Tab can be split into spaces. Other
3750 * characters will have to be moved to after the
3751 * block, causing misalignment. */
3752 delcount = 0;
3753 bd.endspaces = 0;
3754 }
3755 }
3756
3757 yanklen = (int)STRLEN(y_array[i]);
3758
3759 /* calculate number of spaces required to fill right side of block*/
3760 spaces = y_width + 1;
3761 for (j = 0; j < yanklen; j++)
Bram Moolenaar597a4222014-06-25 14:39:50 +02003762 spaces -= lbr_chartabsize(NULL, &y_array[i][j], 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 if (spaces < 0)
3764 spaces = 0;
3765
3766 /* insert the new text */
3767 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3768 newp = alloc_check((unsigned)totlen + oldlen + 1);
3769 if (newp == NULL)
3770 break;
3771 /* copy part up to cursor to new line */
3772 ptr = newp;
3773 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3774 ptr += bd.textcol;
3775 /* may insert some spaces before the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003776 vim_memset(ptr, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 ptr += bd.startspaces;
3778 /* insert the new text */
3779 for (j = 0; j < count; ++j)
3780 {
3781 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3782 ptr += yanklen;
3783
3784 /* insert block's trailing spaces only if there's text behind */
3785 if ((j < count - 1 || !shortline) && spaces)
3786 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003787 vim_memset(ptr, ' ', (size_t)spaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788 ptr += spaces;
3789 }
3790 }
3791 /* may insert some spaces after the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003792 vim_memset(ptr, ' ', (size_t)bd.endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 ptr += bd.endspaces;
3794 /* move the text after the cursor to the end of the line. */
3795 mch_memmove(ptr, oldp + bd.textcol + delcount,
3796 (size_t)(oldlen - bd.textcol - delcount + 1));
3797 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3798
3799 ++curwin->w_cursor.lnum;
3800 if (i == 0)
3801 curwin->w_cursor.col += bd.startspaces;
3802 }
3803
3804 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3805
3806 /* Set '[ mark. */
3807 curbuf->b_op_start = curwin->w_cursor;
3808 curbuf->b_op_start.lnum = lnum;
3809
3810 /* adjust '] mark */
3811 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3812 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003813# ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 curbuf->b_op_end.coladd = 0;
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00003815# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 if (flags & PUT_CURSEND)
3817 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003818 colnr_T len;
3819
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 curwin->w_cursor = curbuf->b_op_end;
3821 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003822
3823 /* in Insert mode we might be after the NUL, correct for that */
3824 len = (colnr_T)STRLEN(ml_get_curline());
3825 if (curwin->w_cursor.col > len)
3826 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 }
3828 else
3829 curwin->w_cursor.lnum = lnum;
3830 }
3831 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 {
3833 /*
3834 * Character or Line mode
3835 */
3836 if (y_type == MCHAR)
3837 {
3838 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3839 * char */
3840 if (dir == FORWARD && gchar_cursor() != NUL)
3841 {
3842#ifdef FEAT_MBYTE
3843 if (has_mbyte)
3844 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003845 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846
3847 /* put it on the next of the multi-byte character. */
3848 col += bytelen;
3849 if (yanklen)
3850 {
3851 curwin->w_cursor.col += bytelen;
3852 curbuf->b_op_end.col += bytelen;
3853 }
3854 }
3855 else
3856#endif
3857 {
3858 ++col;
3859 if (yanklen)
3860 {
3861 ++curwin->w_cursor.col;
3862 ++curbuf->b_op_end.col;
3863 }
3864 }
3865 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 curbuf->b_op_start = curwin->w_cursor;
3867 }
3868 /*
3869 * Line mode: BACKWARD is the same as FORWARD on the previous line
3870 */
3871 else if (dir == BACKWARD)
3872 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003873 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874
3875 /*
3876 * simple case: insert into current line
3877 */
3878 if (y_type == MCHAR && y_size == 1)
3879 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003880 linenr_T end_lnum = 0; /* init for gcc */
Bram Moolenaar9957a102017-01-23 21:53:53 +01003881
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003882 if (VIsual_active)
3883 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003884 end_lnum = curbuf->b_visual.vi_end.lnum;
3885 if (end_lnum < curbuf->b_visual.vi_start.lnum)
3886 end_lnum = curbuf->b_visual.vi_start.lnum;
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003887 }
Bram Moolenaar9957a102017-01-23 21:53:53 +01003888
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003889 do {
3890 totlen = count * yanklen;
3891 if (totlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 {
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003893 oldp = ml_get(lnum);
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003894 if (VIsual_active && col > (int)STRLEN(oldp))
3895 {
3896 lnum++;
3897 continue;
3898 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003899 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3900 if (newp == NULL)
3901 goto end; /* alloc() gave an error message */
3902 mch_memmove(newp, oldp, (size_t)col);
3903 ptr = newp + col;
3904 for (i = 0; i < count; ++i)
3905 {
3906 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3907 ptr += yanklen;
3908 }
3909 STRMOVE(ptr, oldp + col);
3910 ml_replace(lnum, newp, FALSE);
3911 /* Place cursor on last putted char. */
3912 if (lnum == curwin->w_cursor.lnum)
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003913 {
3914 /* make sure curwin->w_virtcol is updated */
3915 changed_cline_bef_curs();
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003916 curwin->w_cursor.col += (colnr_T)(totlen - 1);
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003917 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003919 if (VIsual_active)
3920 lnum++;
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003921 } while (VIsual_active && lnum <= end_lnum);
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003922
Bram Moolenaar06e7ce12014-11-19 17:35:39 +01003923 if (VIsual_active) /* reset lnum to the last visual line */
3924 lnum--;
3925
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 curbuf->b_op_end = curwin->w_cursor;
3927 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3928 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3929 ++curwin->w_cursor.col;
3930 changed_bytes(lnum, col);
3931 }
3932 else
3933 {
3934 /*
3935 * Insert at least one line. When y_type is MCHAR, break the first
3936 * line in two.
3937 */
3938 for (cnt = 1; cnt <= count; ++cnt)
3939 {
3940 i = 0;
3941 if (y_type == MCHAR)
3942 {
3943 /*
3944 * Split the current line in two at the insert position.
3945 * First insert y_array[size - 1] in front of second line.
3946 * Then append y_array[0] to first line.
3947 */
3948 lnum = new_cursor.lnum;
3949 ptr = ml_get(lnum) + col;
3950 totlen = (int)STRLEN(y_array[y_size - 1]);
3951 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3952 if (newp == NULL)
3953 goto error;
3954 STRCPY(newp, y_array[y_size - 1]);
3955 STRCAT(newp, ptr);
3956 /* insert second line */
3957 ml_append(lnum, newp, (colnr_T)0, FALSE);
3958 vim_free(newp);
3959
3960 oldp = ml_get(lnum);
3961 newp = alloc_check((unsigned)(col + yanklen + 1));
3962 if (newp == NULL)
3963 goto error;
3964 /* copy first part of line */
3965 mch_memmove(newp, oldp, (size_t)col);
3966 /* append to first line */
3967 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3968 ml_replace(lnum, newp, FALSE);
3969
3970 curwin->w_cursor.lnum = lnum;
3971 i = 1;
3972 }
3973
3974 for (; i < y_size; ++i)
3975 {
3976 if ((y_type != MCHAR || i < y_size - 1)
3977 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3978 == FAIL)
3979 goto error;
3980 lnum++;
3981 ++nr_lines;
3982 if (flags & PUT_FIXINDENT)
3983 {
3984 old_pos = curwin->w_cursor;
3985 curwin->w_cursor.lnum = lnum;
3986 ptr = ml_get(lnum);
3987 if (cnt == count && i == y_size - 1)
3988 lendiff = (int)STRLEN(ptr);
3989#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3990 if (*ptr == '#' && preprocs_left())
3991 indent = 0; /* Leave # lines at start */
3992 else
3993#endif
3994 if (*ptr == NUL)
3995 indent = 0; /* Ignore empty lines */
3996 else if (first_indent)
3997 {
3998 indent_diff = orig_indent - get_indent();
3999 indent = orig_indent;
4000 first_indent = FALSE;
4001 }
4002 else if ((indent = get_indent() + indent_diff) < 0)
4003 indent = 0;
4004 (void)set_indent(indent, 0);
4005 curwin->w_cursor = old_pos;
4006 /* remember how many chars were removed */
4007 if (cnt == count && i == y_size - 1)
4008 lendiff -= (int)STRLEN(ml_get(lnum));
4009 }
4010 }
4011 }
4012
4013error:
4014 /* Adjust marks. */
4015 if (y_type == MLINE)
4016 {
4017 curbuf->b_op_start.col = 0;
4018 if (dir == FORWARD)
4019 curbuf->b_op_start.lnum++;
4020 }
Bram Moolenaar82faa252016-06-04 20:14:07 +02004021 /* Skip mark_adjust when adding lines after the last one, there
Bram Moolenaarf58a8472017-03-05 18:03:04 +01004022 * can't be marks there. But still needed in diff mode. */
Bram Moolenaar82faa252016-06-04 20:14:07 +02004023 if (curbuf->b_op_start.lnum + (y_type == MCHAR) - 1 + nr_lines
Bram Moolenaarf58a8472017-03-05 18:03:04 +01004024 < curbuf->b_ml.ml_line_count
4025#ifdef FEAT_DIFF
4026 || curwin->w_p_diff
4027#endif
4028 )
Bram Moolenaar82faa252016-06-04 20:14:07 +02004029 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 (linenr_T)MAXLNUM, nr_lines, 0L);
4031
4032 /* note changed text for displaying and folding */
4033 if (y_type == MCHAR)
4034 changed_lines(curwin->w_cursor.lnum, col,
4035 curwin->w_cursor.lnum + 1, nr_lines);
4036 else
4037 changed_lines(curbuf->b_op_start.lnum, 0,
4038 curbuf->b_op_start.lnum, nr_lines);
4039
4040 /* put '] mark at last inserted character */
4041 curbuf->b_op_end.lnum = lnum;
4042 /* correct length for change in indent */
4043 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
4044 if (col > 1)
4045 curbuf->b_op_end.col = col - 1;
4046 else
4047 curbuf->b_op_end.col = 0;
4048
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004049 if (flags & PUT_CURSLINE)
4050 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00004051 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004052 curwin->w_cursor.lnum = lnum;
4053 beginline(BL_WHITE | BL_FIX);
4054 }
4055 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 {
4057 /* put cursor after inserted text */
4058 if (y_type == MLINE)
4059 {
4060 if (lnum >= curbuf->b_ml.ml_line_count)
4061 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4062 else
4063 curwin->w_cursor.lnum = lnum + 1;
4064 curwin->w_cursor.col = 0;
4065 }
4066 else
4067 {
4068 curwin->w_cursor.lnum = lnum;
4069 curwin->w_cursor.col = col;
4070 }
4071 }
4072 else if (y_type == MLINE)
4073 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004074 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 curwin->w_cursor.col = 0;
4076 if (dir == FORWARD)
4077 ++curwin->w_cursor.lnum;
4078 beginline(BL_WHITE | BL_FIX);
4079 }
4080 else /* put cursor on first inserted character */
4081 curwin->w_cursor = new_cursor;
4082 }
4083 }
4084
4085 msgmore(nr_lines);
4086 curwin->w_set_curswant = TRUE;
4087
4088end:
4089 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004091 if (regname == '=')
4092 vim_free(y_array);
4093
Bram Moolenaar033d8882013-09-25 23:24:57 +02004094 VIsual_active = FALSE;
Bram Moolenaar033d8882013-09-25 23:24:57 +02004095
Bram Moolenaar677ee682005-01-27 14:41:15 +00004096 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004097 adjust_cursor_eol();
4098}
4099
4100/*
4101 * When the cursor is on the NUL past the end of the line and it should not be
4102 * there move it left.
4103 */
4104 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004105adjust_cursor_eol(void)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004106{
4107 if (curwin->w_cursor.col > 0
4108 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00004109#ifdef FEAT_VIRTUALEDIT
4110 && (ve_flags & VE_ONEMORE) == 0
4111#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 && !(restart_edit || (State & INSERT)))
4113 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00004114 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00004115 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004116
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117#ifdef FEAT_VIRTUALEDIT
4118 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00004119 {
4120 colnr_T scol, ecol;
4121
4122 /* Coladd is set to the width of the last character. */
4123 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4124 curwin->w_cursor.coladd = ecol - scol + 1;
4125 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126#endif
4127 }
4128}
4129
4130#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
4131/*
4132 * Return TRUE if lines starting with '#' should be left aligned.
4133 */
4134 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004135preprocs_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136{
4137 return
4138# ifdef FEAT_SMARTINDENT
4139# ifdef FEAT_CINDENT
4140 (curbuf->b_p_si && !curbuf->b_p_cin) ||
4141# else
4142 curbuf->b_p_si
4143# endif
4144# endif
4145# ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004146 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE)
4147 && curbuf->b_ind_hash_comment == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148# endif
4149 ;
4150}
4151#endif
4152
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004153/*
4154 * Return the character name of the register with the given number.
4155 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004157get_register_name(int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158{
4159 if (num == -1)
4160 return '"';
4161 else if (num < 10)
4162 return num + '0';
4163 else if (num == DELETION_REGISTER)
4164 return '-';
4165#ifdef FEAT_CLIPBOARD
4166 else if (num == STAR_REGISTER)
4167 return '*';
4168 else if (num == PLUS_REGISTER)
4169 return '+';
4170#endif
4171 else
4172 {
4173#ifdef EBCDIC
4174 int i;
4175
4176 /* EBCDIC is really braindead ... */
4177 i = 'a' + (num - 10);
4178 if (i > 'i')
4179 i += 7;
4180 if (i > 'r')
4181 i += 8;
4182 return i;
4183#else
4184 return num + 'a' - 10;
4185#endif
4186 }
4187}
4188
4189/*
4190 * ":dis" and ":registers": Display the contents of the yank registers.
4191 */
4192 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004193ex_display(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004195 int i, n;
4196 long j;
4197 char_u *p;
4198 yankreg_T *yb;
4199 int name;
4200 int attr;
4201 char_u *arg = eap->arg;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004202#ifdef FEAT_MBYTE
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004203 int clen;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004204#else
4205# define clen 1
4206#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207
4208 if (arg != NULL && *arg == NUL)
4209 arg = NULL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01004210 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211
4212 /* Highlight title */
4213 MSG_PUTS_TITLE(_("\n--- Registers ---"));
4214 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
4215 {
4216 name = get_register_name(i);
Bram Moolenaar0818b872010-11-24 14:28:58 +01004217 if (arg != NULL && vim_strchr(arg, name) == NULL
4218#ifdef ONE_CLIPBOARD
4219 /* Star register and plus register contain the same thing. */
4220 && (name != '*' || vim_strchr(arg, '+') == NULL)
4221#endif
4222 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 continue; /* did not ask for this register */
4224
4225#ifdef FEAT_CLIPBOARD
4226 /* Adjust register name for "unnamed" in 'clipboard'.
4227 * When it's a clipboard register, fill it with the current contents
4228 * of the clipboard. */
4229 adjust_clip_reg(&name);
4230 (void)may_get_selection(name);
4231#endif
4232
4233 if (i == -1)
4234 {
4235 if (y_previous != NULL)
4236 yb = y_previous;
4237 else
4238 yb = &(y_regs[0]);
4239 }
4240 else
4241 yb = &(y_regs[i]);
Bram Moolenaarcde547a2009-11-17 11:43:06 +00004242
4243#ifdef FEAT_EVAL
4244 if (name == MB_TOLOWER(redir_reg)
4245 || (redir_reg == '"' && yb == y_previous))
4246 continue; /* do not list register being written to, the
4247 * pointer can be freed */
4248#endif
4249
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 if (yb->y_array != NULL)
4251 {
4252 msg_putchar('\n');
4253 msg_putchar('"');
4254 msg_putchar(name);
4255 MSG_PUTS(" ");
4256
4257 n = (int)Columns - 6;
4258 for (j = 0; j < yb->y_size && n > 1; ++j)
4259 {
4260 if (j)
4261 {
4262 MSG_PUTS_ATTR("^J", attr);
4263 n -= 2;
4264 }
4265 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4266 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004268 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004269#endif
4270 msg_outtrans_len(p, clen);
4271#ifdef FEAT_MBYTE
4272 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273#endif
4274 }
4275 }
4276 if (n > 1 && yb->y_type == MLINE)
4277 MSG_PUTS_ATTR("^J", attr);
4278 out_flush(); /* show one line at a time */
4279 }
4280 ui_breakcheck();
4281 }
4282
4283 /*
4284 * display last inserted text
4285 */
4286 if ((p = get_last_insert()) != NULL
4287 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4288 {
4289 MSG_PUTS("\n\". ");
4290 dis_msg(p, TRUE);
4291 }
4292
4293 /*
4294 * display last command line
4295 */
4296 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4297 && !got_int)
4298 {
4299 MSG_PUTS("\n\": ");
4300 dis_msg(last_cmdline, FALSE);
4301 }
4302
4303 /*
4304 * display current file name
4305 */
4306 if (curbuf->b_fname != NULL
4307 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4308 {
4309 MSG_PUTS("\n\"% ");
4310 dis_msg(curbuf->b_fname, FALSE);
4311 }
4312
4313 /*
4314 * display alternate file name
4315 */
4316 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4317 {
4318 char_u *fname;
4319 linenr_T dummy;
4320
4321 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4322 {
4323 MSG_PUTS("\n\"# ");
4324 dis_msg(fname, FALSE);
4325 }
4326 }
4327
4328 /*
4329 * display last search pattern
4330 */
4331 if (last_search_pat() != NULL
4332 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4333 {
4334 MSG_PUTS("\n\"/ ");
4335 dis_msg(last_search_pat(), FALSE);
4336 }
4337
4338#ifdef FEAT_EVAL
4339 /*
4340 * display last used expression
4341 */
4342 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4343 && !got_int)
4344 {
4345 MSG_PUTS("\n\"= ");
4346 dis_msg(expr_line, FALSE);
4347 }
4348#endif
4349}
4350
4351/*
4352 * display a string for do_dis()
4353 * truncate at end of screen line
4354 */
4355 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004356dis_msg(
4357 char_u *p,
4358 int skip_esc) /* if TRUE, ignore trailing ESC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359{
4360 int n;
4361#ifdef FEAT_MBYTE
4362 int l;
4363#endif
4364
4365 n = (int)Columns - 6;
4366 while (*p != NUL
4367 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4368 && (n -= ptr2cells(p)) >= 0)
4369 {
4370#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004371 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 {
4373 msg_outtrans_len(p, l);
4374 p += l;
4375 }
4376 else
4377#endif
4378 msg_outtrans_len(p++, 1);
4379 }
4380 ui_breakcheck();
4381}
4382
Bram Moolenaar81340392012-06-06 16:12:59 +02004383#if defined(FEAT_COMMENTS) || defined(PROTO)
4384/*
4385 * If "process" is TRUE and the line begins with a comment leader (possibly
4386 * after some white space), return a pointer to the text after it. Put a boolean
4387 * value indicating whether the line ends with an unclosed comment in
4388 * "is_comment".
4389 * line - line to be processed,
4390 * process - if FALSE, will only check whether the line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004391 * comment,
Bram Moolenaar81340392012-06-06 16:12:59 +02004392 * include_space - whether to also skip space following the comment leader,
4393 * is_comment - will indicate whether the current line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004394 * comment.
Bram Moolenaar81340392012-06-06 16:12:59 +02004395 */
Bram Moolenaar025a6b72017-03-12 20:37:21 +01004396 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004397skip_comment(
4398 char_u *line,
4399 int process,
4400 int include_space,
4401 int *is_comment)
Bram Moolenaar81340392012-06-06 16:12:59 +02004402{
4403 char_u *comment_flags = NULL;
4404 int lead_len;
4405 int leader_offset = get_last_leader_offset(line, &comment_flags);
4406
4407 *is_comment = FALSE;
4408 if (leader_offset != -1)
4409 {
4410 /* Let's check whether the line ends with an unclosed comment.
4411 * If the last comment leader has COM_END in flags, there's no comment.
4412 */
4413 while (*comment_flags)
4414 {
4415 if (*comment_flags == COM_END
4416 || *comment_flags == ':')
4417 break;
4418 ++comment_flags;
4419 }
4420 if (*comment_flags != COM_END)
4421 *is_comment = TRUE;
4422 }
4423
4424 if (process == FALSE)
4425 return line;
4426
4427 lead_len = get_leader_len(line, &comment_flags, FALSE, include_space);
4428
4429 if (lead_len == 0)
4430 return line;
4431
4432 /* Find:
Bram Moolenaar81340392012-06-06 16:12:59 +02004433 * - COM_END,
4434 * - colon,
4435 * whichever comes first.
4436 */
4437 while (*comment_flags)
4438 {
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004439 if (*comment_flags == COM_END
Bram Moolenaar81340392012-06-06 16:12:59 +02004440 || *comment_flags == ':')
4441 {
4442 break;
4443 }
4444 ++comment_flags;
4445 }
4446
4447 /* If we found a colon, it means that we are not processing a line
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004448 * starting with a closing part of a three-part comment. That's good,
4449 * because we don't want to remove those as this would be annoying.
Bram Moolenaar81340392012-06-06 16:12:59 +02004450 */
4451 if (*comment_flags == ':' || *comment_flags == NUL)
4452 line += lead_len;
4453
4454 return line;
4455}
4456#endif
4457
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458/*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004459 * Join 'count' lines (minimal 2) at cursor position.
4460 * When "save_undo" is TRUE save lines for undo first.
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004461 * Set "use_formatoptions" to FALSE when e.g. processing backspace and comment
4462 * leaders should not be removed.
4463 * When setmark is TRUE, sets the '[ and '] mark, else, the caller is expected
4464 * to set those marks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004466 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 */
4468 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004469do_join(
4470 long count,
4471 int insert_space,
4472 int save_undo,
4473 int use_formatoptions UNUSED,
4474 int setmark)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475{
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004476 char_u *curr = NULL;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004477 char_u *curr_start = NULL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004478 char_u *cend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 char_u *newp;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004480 char_u *spaces; /* number of spaces inserted before a line */
Bram Moolenaard43848c2010-07-14 14:28:26 +02004481 int endcurr1 = NUL;
4482 int endcurr2 = NUL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004483 int currsize = 0; /* size of the current line */
4484 int sumsize = 0; /* size of the long new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485 linenr_T t;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004486 colnr_T col = 0;
4487 int ret = OK;
Bram Moolenaar81340392012-06-06 16:12:59 +02004488#if defined(FEAT_COMMENTS) || defined(PROTO)
Bram Moolenaar802053f2012-06-06 23:08:38 +02004489 int *comments = NULL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004490 int remove_comments = (use_formatoptions == TRUE)
4491 && has_format_option(FO_REMOVE_COMS);
4492 int prev_was_comment;
4493#endif
4494
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004496 if (save_undo && u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4497 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4498 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004500 /* Allocate an array to store the number of spaces inserted before each
4501 * line. We will use it to pre-compute the length of the new line and the
4502 * proper placement of each original line in the new one. */
4503 spaces = lalloc_clear((long_u)count, TRUE);
4504 if (spaces == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 return FAIL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004506#if defined(FEAT_COMMENTS) || defined(PROTO)
4507 if (remove_comments)
4508 {
4509 comments = (int *)lalloc_clear((long_u)count * sizeof(int), TRUE);
4510 if (comments == NULL)
4511 {
4512 vim_free(spaces);
4513 return FAIL;
4514 }
4515 }
4516#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517
4518 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004519 * Don't move anything, just compute the final line length
4520 * and setup the array of space strings lengths
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004522 for (t = 0; t < count; ++t)
4523 {
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004524 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t));
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004525 if (t == 0 && setmark)
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004526 {
4527 /* Set the '[ mark. */
4528 curwin->w_buffer->b_op_start.lnum = curwin->w_cursor.lnum;
4529 curwin->w_buffer->b_op_start.col = (colnr_T)STRLEN(curr);
4530 }
Bram Moolenaar81340392012-06-06 16:12:59 +02004531#if defined(FEAT_COMMENTS) || defined(PROTO)
4532 if (remove_comments)
4533 {
4534 /* We don't want to remove the comment leader if the
4535 * previous line is not a comment. */
4536 if (t > 0 && prev_was_comment)
4537 {
4538
4539 char_u *new_curr = skip_comment(curr, TRUE, insert_space,
4540 &prev_was_comment);
Bram Moolenaar27ba0882012-06-07 21:09:39 +02004541 comments[t] = (int)(new_curr - curr);
Bram Moolenaar81340392012-06-06 16:12:59 +02004542 curr = new_curr;
4543 }
4544 else
4545 curr = skip_comment(curr, FALSE, insert_space,
4546 &prev_was_comment);
4547 }
4548#endif
4549
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004550 if (insert_space && t > 0)
4551 {
4552 curr = skipwhite(curr);
4553 if (*curr != ')' && currsize != 0 && endcurr1 != TAB
4554#ifdef FEAT_MBYTE
4555 && (!has_format_option(FO_MBYTE_JOIN)
4556 || (mb_ptr2char(curr) < 0x100 && endcurr1 < 0x100))
4557 && (!has_format_option(FO_MBYTE_JOIN2)
4558 || mb_ptr2char(curr) < 0x100 || endcurr1 < 0x100)
4559#endif
4560 )
4561 {
4562 /* don't add a space if the line is ending in a space */
4563 if (endcurr1 == ' ')
4564 endcurr1 = endcurr2;
4565 else
4566 ++spaces[t];
4567 /* extra space when 'joinspaces' set and line ends in '.' */
4568 if ( p_js
4569 && (endcurr1 == '.'
4570 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4571 && (endcurr1 == '?' || endcurr1 == '!'))))
4572 ++spaces[t];
4573 }
4574 }
4575 currsize = (int)STRLEN(curr);
4576 sumsize += currsize + spaces[t];
4577 endcurr1 = endcurr2 = NUL;
4578 if (insert_space && currsize > 0)
4579 {
4580#ifdef FEAT_MBYTE
4581 if (has_mbyte)
4582 {
4583 cend = curr + currsize;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004584 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004585 endcurr1 = (*mb_ptr2char)(cend);
4586 if (cend > curr)
4587 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004588 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004589 endcurr2 = (*mb_ptr2char)(cend);
4590 }
4591 }
4592 else
4593#endif
4594 {
4595 endcurr1 = *(curr + currsize - 1);
4596 if (currsize > 1)
4597 endcurr2 = *(curr + currsize - 2);
4598 }
4599 }
4600 line_breakcheck();
4601 if (got_int)
4602 {
4603 ret = FAIL;
4604 goto theend;
4605 }
4606 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004608 /* store the column position before last line */
4609 col = sumsize - currsize - spaces[count - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004611 /* allocate the space for the new line */
4612 newp = alloc_check((unsigned)(sumsize + 1));
4613 cend = newp + sumsize;
4614 *cend = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004616 /*
4617 * Move affected lines to the new long one.
4618 *
4619 * Move marks from each deleted line to the joined line, adjusting the
4620 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4621 * should not really be a problem.
4622 */
4623 for (t = count - 1; ; --t)
4624 {
4625 cend -= currsize;
4626 mch_memmove(cend, curr, (size_t)currsize);
4627 if (spaces[t] > 0)
4628 {
4629 cend -= spaces[t];
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02004630 vim_memset(cend, ' ', (size_t)(spaces[t]));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004631 }
4632 mark_col_adjust(curwin->w_cursor.lnum + t, (colnr_T)0, (linenr_T)-t,
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004633 (long)(cend - newp + spaces[t] - (curr - curr_start)));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004634 if (t == 0)
4635 break;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004636 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1));
Bram Moolenaar81340392012-06-06 16:12:59 +02004637#if defined(FEAT_COMMENTS) || defined(PROTO)
4638 if (remove_comments)
4639 curr += comments[t - 1];
4640#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004641 if (insert_space && t > 1)
4642 curr = skipwhite(curr);
4643 currsize = (int)STRLEN(curr);
4644 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4646
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004647 if (setmark)
4648 {
4649 /* Set the '] mark. */
4650 curwin->w_buffer->b_op_end.lnum = curwin->w_cursor.lnum;
4651 curwin->w_buffer->b_op_end.col = (colnr_T)STRLEN(newp);
4652 }
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004653
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 /* Only report the change in the first line here, del_lines() will report
4655 * the deleted line. */
4656 changed_lines(curwin->w_cursor.lnum, currsize,
4657 curwin->w_cursor.lnum + 1, 0L);
4658
4659 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004660 * Delete following lines. To do this we move the cursor there
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 * briefly, and then move it back. After del_lines() the cursor may
4662 * have moved up (last line deleted), so the current lnum is kept in t.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 */
4664 t = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 ++curwin->w_cursor.lnum;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004666 del_lines(count - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 curwin->w_cursor.lnum = t;
4668
4669 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004670 * Set the cursor column:
4671 * Vi compatible: use the column of the first join
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004672 * vim: use the column of the last join
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004674 curwin->w_cursor.col =
4675 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676 check_cursor_col();
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004677
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678#ifdef FEAT_VIRTUALEDIT
4679 curwin->w_cursor.coladd = 0;
4680#endif
4681 curwin->w_set_curswant = TRUE;
4682
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004683theend:
4684 vim_free(spaces);
Bram Moolenaar81340392012-06-06 16:12:59 +02004685#if defined(FEAT_COMMENTS) || defined(PROTO)
4686 if (remove_comments)
4687 vim_free(comments);
4688#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004689 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690}
4691
4692#ifdef FEAT_COMMENTS
4693/*
4694 * Return TRUE if the two comment leaders given are the same. "lnum" is
4695 * the first line. White-space is ignored. Note that the whole of
4696 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4697 */
4698 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004699same_leader(
4700 linenr_T lnum,
4701 int leader1_len,
4702 char_u *leader1_flags,
4703 int leader2_len,
4704 char_u *leader2_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705{
4706 int idx1 = 0, idx2 = 0;
4707 char_u *p;
4708 char_u *line1;
4709 char_u *line2;
4710
4711 if (leader1_len == 0)
4712 return (leader2_len == 0);
4713
4714 /*
4715 * If first leader has 'f' flag, the lines can be joined only if the
4716 * second line does not have a leader.
4717 * If first leader has 'e' flag, the lines can never be joined.
4718 * If fist leader has 's' flag, the lines can only be joined if there is
4719 * some text after it and the second line has the 'm' flag.
4720 */
4721 if (leader1_flags != NULL)
4722 {
4723 for (p = leader1_flags; *p && *p != ':'; ++p)
4724 {
4725 if (*p == COM_FIRST)
4726 return (leader2_len == 0);
4727 if (*p == COM_END)
4728 return FALSE;
4729 if (*p == COM_START)
4730 {
4731 if (*(ml_get(lnum) + leader1_len) == NUL)
4732 return FALSE;
4733 if (leader2_flags == NULL || leader2_len == 0)
4734 return FALSE;
4735 for (p = leader2_flags; *p && *p != ':'; ++p)
4736 if (*p == COM_MIDDLE)
4737 return TRUE;
4738 return FALSE;
4739 }
4740 }
4741 }
4742
4743 /*
4744 * Get current line and next line, compare the leaders.
4745 * The first line has to be saved, only one line can be locked at a time.
4746 */
4747 line1 = vim_strsave(ml_get(lnum));
4748 if (line1 != NULL)
4749 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004750 for (idx1 = 0; VIM_ISWHITE(line1[idx1]); ++idx1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751 ;
4752 line2 = ml_get(lnum + 1);
4753 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4754 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004755 if (!VIM_ISWHITE(line2[idx2]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 {
4757 if (line1[idx1++] != line2[idx2])
4758 break;
4759 }
4760 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004761 while (VIM_ISWHITE(line1[idx1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 ++idx1;
4763 }
4764 vim_free(line1);
4765 }
4766 return (idx2 == leader2_len && idx1 == leader1_len);
4767}
4768#endif
4769
4770/*
Bram Moolenaar66accae2012-01-10 13:44:27 +01004771 * Implementation of the format operator 'gq'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 */
4773 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004774op_format(
4775 oparg_T *oap,
4776 int keep_cursor) /* keep cursor on same text char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777{
4778 long old_line_count = curbuf->b_ml.ml_line_count;
4779
4780 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4781 * can put it back there. */
4782 curwin->w_cursor = oap->cursor_start;
4783
4784 if (u_save((linenr_T)(oap->start.lnum - 1),
4785 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4786 return;
4787 curwin->w_cursor = oap->start;
4788
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 if (oap->is_VIsual)
4790 /* When there is no change: need to remove the Visual selection */
4791 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792
4793 /* Set '[ mark at the start of the formatted area */
4794 curbuf->b_op_start = oap->start;
4795
4796 /* For "gw" remember the cursor position and put it back below (adjusted
4797 * for joined and split lines). */
4798 if (keep_cursor)
4799 saved_cursor = oap->cursor_start;
4800
Bram Moolenaar81a82092008-03-12 16:27:00 +00004801 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802
4803 /*
4804 * Leave the cursor at the first non-blank of the last formatted line.
4805 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4806 * line, so "." will do the next lines.
4807 */
4808 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4809 ++curwin->w_cursor.lnum;
4810 beginline(BL_WHITE | BL_FIX);
4811 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4812 msgmore(old_line_count);
4813
4814 /* put '] mark on the end of the formatted area */
4815 curbuf->b_op_end = curwin->w_cursor;
4816
4817 if (keep_cursor)
4818 {
4819 curwin->w_cursor = saved_cursor;
4820 saved_cursor.lnum = 0;
4821 }
4822
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 if (oap->is_VIsual)
4824 {
4825 win_T *wp;
4826
4827 FOR_ALL_WINDOWS(wp)
4828 {
4829 if (wp->w_old_cursor_lnum != 0)
4830 {
4831 /* When lines have been inserted or deleted, adjust the end of
4832 * the Visual area to be redrawn. */
4833 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4834 wp->w_old_cursor_lnum += old_line_count;
4835 else
4836 wp->w_old_visual_lnum += old_line_count;
4837 }
4838 }
4839 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840}
4841
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004842#if defined(FEAT_EVAL) || defined(PROTO)
4843/*
4844 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4845 */
4846 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004847op_formatexpr(oparg_T *oap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004848{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004849 if (oap->is_VIsual)
4850 /* When there is no change: need to remove the Visual selection */
4851 redraw_curbuf_later(INVERTED);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004852
Bram Moolenaar700303e2010-07-11 17:35:50 +02004853 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0)
4854 /* As documented: when 'formatexpr' returns non-zero fall back to
4855 * internal formatting. */
4856 op_format(oap, FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004857}
4858
4859 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004860fex_format(
4861 linenr_T lnum,
4862 long count,
4863 int c) /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004864{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004865 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4866 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004867 int r;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004868 char_u *fex;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004869
4870 /*
4871 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004872 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004873 */
4874 set_vim_var_nr(VV_LNUM, lnum);
4875 set_vim_var_nr(VV_COUNT, count);
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004876 set_vim_var_char(c);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004877
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004878 /* Make a copy, the option could be changed while calling it. */
4879 fex = vim_strsave(curbuf->b_p_fex);
4880 if (fex == NULL)
4881 return 0;
4882
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004883 /*
4884 * Evaluate the function.
4885 */
4886 if (use_sandbox)
4887 ++sandbox;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004888 r = (int)eval_to_number(fex);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004889 if (use_sandbox)
4890 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004891
4892 set_vim_var_string(VV_CHAR, NULL, -1);
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004893 vim_free(fex);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004894
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004895 return r;
4896}
4897#endif
4898
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899/*
4900 * Format "line_count" lines, starting at the cursor position.
4901 * When "line_count" is negative, format until the end of the paragraph.
4902 * Lines after the cursor line are saved for undo, caller must have saved the
4903 * first line.
4904 */
4905 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004906format_lines(
4907 linenr_T line_count,
4908 int avoid_fex) /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909{
4910 int max_len;
4911 int is_not_par; /* current line not part of parag. */
4912 int next_is_not_par; /* next line not part of paragraph */
4913 int is_end_par; /* at end of paragraph */
4914 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4915 int next_is_start_par = FALSE;
4916#ifdef FEAT_COMMENTS
4917 int leader_len = 0; /* leader len of current line */
4918 int next_leader_len; /* leader len of next line */
4919 char_u *leader_flags = NULL; /* flags for leader of current line */
4920 char_u *next_leader_flags; /* flags for leader of next line */
4921 int do_comments; /* format comments */
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004922 int do_comments_list = 0; /* format comments with 'n' or '2' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923#endif
4924 int advance = TRUE;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004925 int second_indent = -1; /* indent for second line (comment
4926 * aware) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 int do_second_indent;
4928 int do_number_indent;
4929 int do_trail_white;
4930 int first_par_line = TRUE;
4931 int smd_save;
4932 long count;
4933 int need_set_indent = TRUE; /* set indent of next paragraph */
4934 int force_format = FALSE;
4935 int old_State = State;
4936
4937 /* length of a line to force formatting: 3 * 'tw' */
4938 max_len = comp_textwidth(TRUE) * 3;
4939
4940 /* check for 'q', '2' and '1' in 'formatoptions' */
4941#ifdef FEAT_COMMENTS
4942 do_comments = has_format_option(FO_Q_COMS);
4943#endif
4944 do_second_indent = has_format_option(FO_Q_SECOND);
4945 do_number_indent = has_format_option(FO_Q_NUMBER);
4946 do_trail_white = has_format_option(FO_WHITE_PAR);
4947
4948 /*
4949 * Get info about the previous and current line.
4950 */
4951 if (curwin->w_cursor.lnum > 1)
4952 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4953#ifdef FEAT_COMMENTS
4954 , &leader_len, &leader_flags, do_comments
4955#endif
4956 );
4957 else
4958 is_not_par = TRUE;
4959 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4960#ifdef FEAT_COMMENTS
4961 , &next_leader_len, &next_leader_flags, do_comments
4962#endif
4963 );
4964 is_end_par = (is_not_par || next_is_not_par);
4965 if (!is_end_par && do_trail_white)
4966 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4967
4968 curwin->w_cursor.lnum--;
4969 for (count = line_count; count != 0 && !got_int; --count)
4970 {
4971 /*
4972 * Advance to next paragraph.
4973 */
4974 if (advance)
4975 {
4976 curwin->w_cursor.lnum++;
4977 prev_is_end_par = is_end_par;
4978 is_not_par = next_is_not_par;
4979#ifdef FEAT_COMMENTS
4980 leader_len = next_leader_len;
4981 leader_flags = next_leader_flags;
4982#endif
4983 }
4984
4985 /*
4986 * The last line to be formatted.
4987 */
4988 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4989 {
4990 next_is_not_par = TRUE;
4991#ifdef FEAT_COMMENTS
4992 next_leader_len = 0;
4993 next_leader_flags = NULL;
4994#endif
4995 }
4996 else
4997 {
4998 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4999#ifdef FEAT_COMMENTS
5000 , &next_leader_len, &next_leader_flags, do_comments
5001#endif
5002 );
5003 if (do_number_indent)
5004 next_is_start_par =
5005 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
5006 }
5007 advance = TRUE;
5008 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
5009 if (!is_end_par && do_trail_white)
5010 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
5011
5012 /*
5013 * Skip lines that are not in a paragraph.
5014 */
5015 if (is_not_par)
5016 {
5017 if (line_count < 0)
5018 break;
5019 }
5020 else
5021 {
5022 /*
5023 * For the first line of a paragraph, check indent of second line.
5024 * Don't do this for comments and empty lines.
5025 */
5026 if (first_par_line
5027 && (do_second_indent || do_number_indent)
5028 && prev_is_end_par
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005029 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005031 if (do_second_indent && !LINEEMPTY(curwin->w_cursor.lnum + 1))
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005032 {
5033#ifdef FEAT_COMMENTS
5034 if (leader_len == 0 && next_leader_len == 0)
5035 {
5036 /* no comment found */
5037#endif
5038 second_indent =
5039 get_indent_lnum(curwin->w_cursor.lnum + 1);
5040#ifdef FEAT_COMMENTS
5041 }
5042 else
5043 {
5044 second_indent = next_leader_len;
5045 do_comments_list = 1;
5046 }
5047#endif
5048 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 else if (do_number_indent)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005050 {
5051#ifdef FEAT_COMMENTS
5052 if (leader_len == 0 && next_leader_len == 0)
5053 {
5054 /* no comment found */
5055#endif
5056 second_indent =
5057 get_number_indent(curwin->w_cursor.lnum);
5058#ifdef FEAT_COMMENTS
5059 }
5060 else
5061 {
5062 /* get_number_indent() is now "comment aware"... */
5063 second_indent =
5064 get_number_indent(curwin->w_cursor.lnum);
5065 do_comments_list = 1;
5066 }
5067#endif
5068 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 }
5070
5071 /*
5072 * When the comment leader changes, it's the end of the paragraph.
5073 */
5074 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
5075#ifdef FEAT_COMMENTS
5076 || !same_leader(curwin->w_cursor.lnum,
5077 leader_len, leader_flags,
5078 next_leader_len, next_leader_flags)
5079#endif
5080 )
5081 is_end_par = TRUE;
5082
5083 /*
5084 * If we have got to the end of a paragraph, or the line is
5085 * getting long, format it.
5086 */
5087 if (is_end_par || force_format)
5088 {
5089 if (need_set_indent)
5090 /* replace indent in first line with minimal number of
5091 * tabs and spaces, according to current options */
5092 (void)set_indent(get_indent(), SIN_CHANGED);
5093
5094 /* put cursor on last non-space */
5095 State = NORMAL; /* don't go past end-of-line */
5096 coladvance((colnr_T)MAXCOL);
5097 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
5098 dec_cursor();
5099
5100 /* do the formatting, without 'showmode' */
5101 State = INSERT; /* for open_line() */
5102 smd_save = p_smd;
5103 p_smd = FALSE;
5104 insertchar(NUL, INSCHAR_FORMAT
5105#ifdef FEAT_COMMENTS
5106 + (do_comments ? INSCHAR_DO_COM : 0)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005107 + (do_comments && do_comments_list
5108 ? INSCHAR_COM_LIST : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00005110 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 State = old_State;
5112 p_smd = smd_save;
5113 second_indent = -1;
5114 /* at end of par.: need to set indent of next par. */
5115 need_set_indent = is_end_par;
5116 if (is_end_par)
5117 {
5118 /* When called with a negative line count, break at the
5119 * end of the paragraph. */
5120 if (line_count < 0)
5121 break;
5122 first_par_line = TRUE;
5123 }
5124 force_format = FALSE;
5125 }
5126
5127 /*
5128 * When still in same paragraph, join the lines together. But
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005129 * first delete the leader from the second line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 */
5131 if (!is_end_par)
5132 {
5133 advance = FALSE;
5134 curwin->w_cursor.lnum++;
5135 curwin->w_cursor.col = 0;
5136 if (line_count < 0 && u_save_cursor() == FAIL)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02005137 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138#ifdef FEAT_COMMENTS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 if (next_leader_len > 0)
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005140 {
5141 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
5143 (long)-next_leader_len);
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005144 } else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145#endif
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005146 if (second_indent > 0) /* the "leader" for FO_Q_SECOND */
5147 {
Bram Moolenaare2e69e42017-09-02 20:30:35 +02005148 int indent = getwhitecols_curline();
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005149
5150 if (indent > 0)
5151 {
5152 (void)del_bytes(indent, FALSE, FALSE);
5153 mark_col_adjust(curwin->w_cursor.lnum,
5154 (colnr_T)0, 0L, (long)-indent);
Bram Moolenaar92c2db82013-11-02 23:59:35 +01005155 }
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005156 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 curwin->w_cursor.lnum--;
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02005158 if (do_join(2, TRUE, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159 {
5160 beep_flush();
5161 break;
5162 }
5163 first_par_line = FALSE;
5164 /* If the line is getting long, format it next time */
5165 if (STRLEN(ml_get_curline()) > (size_t)max_len)
5166 force_format = TRUE;
5167 else
5168 force_format = FALSE;
5169 }
5170 }
5171 line_breakcheck();
5172 }
5173}
5174
5175/*
5176 * Return TRUE if line "lnum" ends in a white character.
5177 */
5178 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005179ends_in_white(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180{
5181 char_u *s = ml_get(lnum);
5182 size_t l;
5183
5184 if (*s == NUL)
5185 return FALSE;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005186 /* Don't use STRLEN() inside VIM_ISWHITE(), SAS/C complains: "macro
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187 * invocation may call function multiple times". */
5188 l = STRLEN(s) - 1;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005189 return VIM_ISWHITE(s[l]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190}
5191
5192/*
5193 * Blank lines, and lines containing only the comment leader, are left
5194 * untouched by the formatting. The function returns TRUE in this
5195 * case. It also returns TRUE when a line starts with the end of a comment
5196 * ('e' in comment flags), so that this line is skipped, and not joined to the
5197 * previous line. A new paragraph starts after a blank line, or when the
5198 * comment leader changes -- webb.
5199 */
5200#ifdef FEAT_COMMENTS
5201 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005202fmt_check_par(
5203 linenr_T lnum,
5204 int *leader_len,
5205 char_u **leader_flags,
5206 int do_comments)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207{
5208 char_u *flags = NULL; /* init for GCC */
5209 char_u *ptr;
5210
5211 ptr = ml_get(lnum);
5212 if (do_comments)
Bram Moolenaar81340392012-06-06 16:12:59 +02005213 *leader_len = get_leader_len(ptr, leader_flags, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214 else
5215 *leader_len = 0;
5216
5217 if (*leader_len > 0)
5218 {
5219 /*
5220 * Search for 'e' flag in comment leader flags.
5221 */
5222 flags = *leader_flags;
5223 while (*flags && *flags != ':' && *flags != COM_END)
5224 ++flags;
5225 }
5226
5227 return (*skipwhite(ptr + *leader_len) == NUL
5228 || (*leader_len > 0 && *flags == COM_END)
5229 || startPS(lnum, NUL, FALSE));
5230}
5231#else
5232 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005233fmt_check_par(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234{
5235 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
5236}
5237#endif
5238
5239/*
5240 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
5241 * previous line is in the same paragraph. Used for auto-formatting.
5242 */
5243 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005244paragraph_start(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245{
5246 char_u *p;
5247#ifdef FEAT_COMMENTS
5248 int leader_len = 0; /* leader len of current line */
5249 char_u *leader_flags = NULL; /* flags for leader of current line */
5250 int next_leader_len; /* leader len of next line */
5251 char_u *next_leader_flags; /* flags for leader of next line */
5252 int do_comments; /* format comments */
5253#endif
5254
5255 if (lnum <= 1)
5256 return TRUE; /* start of the file */
5257
5258 p = ml_get(lnum - 1);
5259 if (*p == NUL)
5260 return TRUE; /* after empty line */
5261
5262#ifdef FEAT_COMMENTS
5263 do_comments = has_format_option(FO_Q_COMS);
5264#endif
5265 if (fmt_check_par(lnum - 1
5266#ifdef FEAT_COMMENTS
5267 , &leader_len, &leader_flags, do_comments
5268#endif
5269 ))
5270 return TRUE; /* after non-paragraph line */
5271
5272 if (fmt_check_par(lnum
5273#ifdef FEAT_COMMENTS
5274 , &next_leader_len, &next_leader_flags, do_comments
5275#endif
5276 ))
5277 return TRUE; /* "lnum" is not a paragraph line */
5278
5279 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
5280 return TRUE; /* missing trailing space in previous line. */
5281
5282 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
5283 return TRUE; /* numbered item starts in "lnum". */
5284
5285#ifdef FEAT_COMMENTS
5286 if (!same_leader(lnum - 1, leader_len, leader_flags,
5287 next_leader_len, next_leader_flags))
5288 return TRUE; /* change of comment leader. */
5289#endif
5290
5291 return FALSE;
5292}
5293
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294/*
5295 * prepare a few things for block mode yank/delete/tilde
5296 *
5297 * for delete:
5298 * - textlen includes the first/last char to be (partly) deleted
5299 * - start/endspaces is the number of columns that are taken by the
5300 * first/last deleted char minus the number of columns that have to be
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +00005301 * deleted.
5302 * for yank and tilde:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 * - textlen includes the first/last char to be wholly yanked
5304 * - start/endspaces is the number of columns of the first/last yanked char
5305 * that are to be yanked.
5306 */
5307 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005308block_prep(
5309 oparg_T *oap,
5310 struct block_def *bdp,
5311 linenr_T lnum,
5312 int is_del)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313{
5314 int incr = 0;
5315 char_u *pend;
5316 char_u *pstart;
5317 char_u *line;
5318 char_u *prev_pstart;
5319 char_u *prev_pend;
5320
5321 bdp->startspaces = 0;
5322 bdp->endspaces = 0;
5323 bdp->textlen = 0;
5324 bdp->start_vcol = 0;
5325 bdp->end_vcol = 0;
5326#ifdef FEAT_VISUALEXTRA
5327 bdp->is_short = FALSE;
5328 bdp->is_oneChar = FALSE;
5329 bdp->pre_whitesp = 0;
5330 bdp->pre_whitesp_c = 0;
5331 bdp->end_char_vcols = 0;
5332#endif
5333 bdp->start_char_vcols = 0;
5334
5335 line = ml_get(lnum);
5336 pstart = line;
5337 prev_pstart = line;
5338 while (bdp->start_vcol < oap->start_vcol && *pstart)
5339 {
5340 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02005341 incr = lbr_chartabsize(line, pstart, (colnr_T)bdp->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 bdp->start_vcol += incr;
5343#ifdef FEAT_VISUALEXTRA
Bram Moolenaar1c465442017-03-12 20:10:05 +01005344 if (VIM_ISWHITE(*pstart))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 {
5346 bdp->pre_whitesp += incr;
5347 bdp->pre_whitesp_c++;
5348 }
5349 else
5350 {
5351 bdp->pre_whitesp = 0;
5352 bdp->pre_whitesp_c = 0;
5353 }
5354#endif
5355 prev_pstart = pstart;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005356 MB_PTR_ADV(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 }
5358 bdp->start_char_vcols = incr;
5359 if (bdp->start_vcol < oap->start_vcol) /* line too short */
5360 {
5361 bdp->end_vcol = bdp->start_vcol;
5362#ifdef FEAT_VISUALEXTRA
5363 bdp->is_short = TRUE;
5364#endif
5365 if (!is_del || oap->op_type == OP_APPEND)
5366 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
5367 }
5368 else
5369 {
5370 /* notice: this converts partly selected Multibyte characters to
5371 * spaces, too. */
5372 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
5373 if (is_del && bdp->startspaces)
5374 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
5375 pend = pstart;
5376 bdp->end_vcol = bdp->start_vcol;
5377 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
5378 {
5379#ifdef FEAT_VISUALEXTRA
5380 bdp->is_oneChar = TRUE;
5381#endif
5382 if (oap->op_type == OP_INSERT)
5383 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5384 else if (oap->op_type == OP_APPEND)
5385 {
5386 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
5387 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5388 }
5389 else
5390 {
5391 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
5392 if (is_del && oap->op_type != OP_LSHIFT)
5393 {
5394 /* just putting the sum of those two into
5395 * bdp->startspaces doesn't work for Visual replace,
5396 * so we have to split the tab in two */
5397 bdp->startspaces = bdp->start_char_vcols
5398 - (bdp->start_vcol - oap->start_vcol);
5399 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5400 }
5401 }
5402 }
5403 else
5404 {
5405 prev_pend = pend;
5406 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
5407 {
5408 /* Count a tab for what it's worth (if list mode not on) */
5409 prev_pend = pend;
Bram Moolenaar1dc92332015-01-27 13:22:20 +01005410 incr = lbr_chartabsize_adv(line, &pend, (colnr_T)bdp->end_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411 bdp->end_vcol += incr;
5412 }
5413 if (bdp->end_vcol <= oap->end_vcol
5414 && (!is_del
5415 || oap->op_type == OP_APPEND
5416 || oap->op_type == OP_REPLACE)) /* line too short */
5417 {
5418#ifdef FEAT_VISUALEXTRA
5419 bdp->is_short = TRUE;
5420#endif
5421 /* Alternative: include spaces to fill up the block.
5422 * Disadvantage: can lead to trailing spaces when the line is
5423 * short where the text is put */
5424 /* if (!is_del || oap->op_type == OP_APPEND) */
5425 if (oap->op_type == OP_APPEND || virtual_op)
5426 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00005427 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 else
5429 bdp->endspaces = 0; /* replace doesn't add characters */
5430 }
5431 else if (bdp->end_vcol > oap->end_vcol)
5432 {
5433 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5434 if (!is_del && bdp->endspaces)
5435 {
5436 bdp->endspaces = incr - bdp->endspaces;
5437 if (pend != pstart)
5438 pend = prev_pend;
5439 }
5440 }
5441 }
5442#ifdef FEAT_VISUALEXTRA
5443 bdp->end_char_vcols = incr;
5444#endif
5445 if (is_del && bdp->startspaces)
5446 pstart = prev_pstart;
5447 bdp->textlen = (int)(pend - pstart);
5448 }
5449 bdp->textcol = (colnr_T) (pstart - line);
5450 bdp->textstart = pstart;
5451}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453/*
Bram Moolenaard79e5502016-01-10 22:13:02 +01005454 * Handle the add/subtract operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005456 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005457op_addsub(
5458 oparg_T *oap,
5459 linenr_T Prenum1, /* Amount of add/subtract */
5460 int g_cmd) /* was g<c-a>/g<c-x> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461{
Bram Moolenaard79e5502016-01-10 22:13:02 +01005462 pos_T pos;
5463 struct block_def bd;
5464 int change_cnt = 0;
5465 linenr_T amount = Prenum1;
5466
5467 if (!VIsual_active)
5468 {
5469 pos = curwin->w_cursor;
5470 if (u_save_cursor() == FAIL)
5471 return;
5472 change_cnt = do_addsub(oap->op_type, &pos, 0, amount);
5473 if (change_cnt)
5474 changed_lines(pos.lnum, 0, pos.lnum + 1, 0L);
5475 }
5476 else
5477 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005478 int one_change;
5479 int length;
5480 pos_T startpos;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005481
5482 if (u_save((linenr_T)(oap->start.lnum - 1),
5483 (linenr_T)(oap->end.lnum + 1)) == FAIL)
5484 return;
5485
5486 pos = oap->start;
5487 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
5488 {
5489 if (oap->block_mode) /* Visual block mode */
5490 {
5491 block_prep(oap, &bd, pos.lnum, FALSE);
5492 pos.col = bd.textcol;
5493 length = bd.textlen;
5494 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005495 else if (oap->motion_type == MLINE)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005496 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005497 curwin->w_cursor.col = 0;
5498 pos.col = 0;
5499 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5500 }
5501 else /* oap->motion_type == MCHAR */
5502 {
Bram Moolenaar5fe6bdf2017-12-05 17:22:12 +01005503 if (pos.lnum == oap->start.lnum && !oap->inclusive)
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005504 dec(&(oap->end));
5505 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5506 pos.col = 0;
5507 if (pos.lnum == oap->start.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005508 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005509 pos.col += oap->start.col;
5510 length -= oap->start.col;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005511 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005512 if (pos.lnum == oap->end.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005513 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005514 length = (int)STRLEN(ml_get(oap->end.lnum));
5515 if (oap->end.col >= length)
5516 oap->end.col = length - 1;
5517 length = oap->end.col - pos.col + 1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005518 }
5519 }
5520 one_change = do_addsub(oap->op_type, &pos, length, amount);
5521 if (one_change)
5522 {
5523 /* Remember the start position of the first change. */
5524 if (change_cnt == 0)
5525 startpos = curbuf->b_op_start;
5526 ++change_cnt;
5527 }
5528
5529#ifdef FEAT_NETBEANS_INTG
5530 if (netbeans_active() && one_change)
5531 {
5532 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
5533
5534 netbeans_removed(curbuf, pos.lnum, pos.col, (long)length);
5535 netbeans_inserted(curbuf, pos.lnum, pos.col,
5536 &ptr[pos.col], length);
5537 }
5538#endif
5539 if (g_cmd && one_change)
5540 amount += Prenum1;
5541 }
5542 if (change_cnt)
5543 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
5544
5545 if (!change_cnt && oap->is_VIsual)
5546 /* No change: need to remove the Visual selection */
5547 redraw_curbuf_later(INVERTED);
5548
5549 /* Set '[ mark if something changed. Keep the last end
5550 * position from do_addsub(). */
5551 if (change_cnt > 0)
5552 curbuf->b_op_start = startpos;
5553
5554 if (change_cnt > p_report)
5555 {
5556 if (change_cnt == 1)
5557 MSG(_("1 line changed"));
5558 else
5559 smsg((char_u *)_("%ld lines changed"), change_cnt);
5560 }
5561 }
5562}
5563
5564/*
5565 * Add or subtract 'Prenum1' from a number in a line
5566 * op_type is OP_NR_ADD or OP_NR_SUB
5567 *
5568 * Returns TRUE if some character was changed.
5569 */
5570 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005571do_addsub(
5572 int op_type,
5573 pos_T *pos,
5574 int length,
5575 linenr_T Prenum1)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005576{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005577 int col;
5578 char_u *buf1;
5579 char_u buf2[NUMBUFLEN];
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005580 int pre; /* 'X'/'x': hex; '0': octal; 'B'/'b': bin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005582 uvarnumber_T n;
5583 uvarnumber_T oldn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584 char_u *ptr;
5585 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586 int todel;
5587 int dohex;
5588 int dooct;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005589 int dobin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 int doalp;
5591 int firstdigit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 int subtract;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005593 int negative = FALSE;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02005594 int was_positive = TRUE;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005595 int visual = VIsual_active;
Bram Moolenaar3ec32612015-07-12 15:02:38 +02005596 int did_change = FALSE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005597 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005598 int maxlen = 0;
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005599 pos_T startpos;
5600 pos_T endpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601
5602 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5603 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005604 dobin = (vim_strchr(curbuf->b_p_nf, 'b') != NULL); /* "Bin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5606
Bram Moolenaard79e5502016-01-10 22:13:02 +01005607 curwin->w_cursor = *pos;
5608 ptr = ml_get(pos->lnum);
5609 col = pos->col;
5610
5611 if (*ptr == NUL)
5612 goto theend;
5613
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 /*
5615 * First check if we are on a hexadecimal number, after the "0x".
5616 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005617 if (!VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005619 if (dobin)
5620 while (col > 0 && vim_isbdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005621 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005622 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005623#ifdef FEAT_MBYTE
5624 if (has_mbyte)
5625 col -= (*mb_head_off)(ptr, ptr + col);
5626#endif
5627 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005628
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005629 if (dohex)
5630 while (col > 0 && vim_isxdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005631 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005632 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005633#ifdef FEAT_MBYTE
5634 if (has_mbyte)
5635 col -= (*mb_head_off)(ptr, ptr + col);
5636#endif
5637 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005638
5639 if ( dobin
5640 && dohex
5641 && ! ((col > 0
5642 && (ptr[col] == 'X'
5643 || ptr[col] == 'x')
5644 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005645#ifdef FEAT_MBYTE
5646 && (!has_mbyte ||
5647 !(*mb_head_off)(ptr, ptr + col - 1))
5648#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005649 && vim_isxdigit(ptr[col + 1]))))
5650 {
5651
5652 /* In case of binary/hexadecimal pattern overlap match, rescan */
5653
Bram Moolenaard79e5502016-01-10 22:13:02 +01005654 col = pos->col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005655
5656 while (col > 0 && vim_isdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005657 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005658 col--;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005659#ifdef FEAT_MBYTE
5660 if (has_mbyte)
5661 col -= (*mb_head_off)(ptr, ptr + col);
5662#endif
5663 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005664 }
5665
5666 if (( dohex
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005667 && col > 0
5668 && (ptr[col] == 'X'
5669 || ptr[col] == 'x')
5670 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005671#ifdef FEAT_MBYTE
5672 && (!has_mbyte ||
5673 !(*mb_head_off)(ptr, ptr + col - 1))
5674#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005675 && vim_isxdigit(ptr[col + 1])) ||
5676 ( dobin
5677 && col > 0
5678 && (ptr[col] == 'B'
5679 || ptr[col] == 'b')
5680 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005681#ifdef FEAT_MBYTE
5682 && (!has_mbyte ||
5683 !(*mb_head_off)(ptr, ptr + col - 1))
5684#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005685 && vim_isbdigit(ptr[col + 1])))
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005686 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005687 /* Found hexadecimal or binary number, move to its start. */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005688 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005689#ifdef FEAT_MBYTE
5690 if (has_mbyte)
5691 col -= (*mb_head_off)(ptr, ptr + col);
5692#endif
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005693 }
5694 else
5695 {
5696 /*
5697 * Search forward and then backward to find the start of number.
5698 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005699 col = pos->col;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005700
5701 while (ptr[col] != NUL
5702 && !vim_isdigit(ptr[col])
5703 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005704 col += MB_PTR2LEN(ptr + col);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005705
5706 while (col > 0
5707 && vim_isdigit(ptr[col - 1])
5708 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005709 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005710 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005711#ifdef FEAT_MBYTE
5712 if (has_mbyte)
5713 col -= (*mb_head_off)(ptr, ptr + col);
5714#endif
5715 }
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005716 }
5717 }
5718
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005719 if (visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005720 {
5721 while (ptr[col] != NUL && length > 0
5722 && !vim_isdigit(ptr[col])
5723 && !(doalp && ASCII_ISALPHA(ptr[col])))
5724 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005725 int mb_len = MB_PTR2LEN(ptr + col);
5726
5727 col += mb_len;
5728 length -= mb_len;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005729 }
5730
5731 if (length == 0)
5732 goto theend;
5733
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005734 if (col > pos->col && ptr[col - 1] == '-'
5735#ifdef FEAT_MBYTE
5736 && (!has_mbyte ||
5737 !(*mb_head_off)(ptr, ptr + col - 1))
5738#endif
5739 )
Bram Moolenaard79e5502016-01-10 22:13:02 +01005740 {
5741 negative = TRUE;
5742 was_positive = FALSE;
5743 }
5744 }
5745
5746 /*
5747 * If a number was found, and saving for undo works, replace the number.
5748 */
5749 firstdigit = ptr[col];
5750 if (!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5751 {
5752 beep_flush();
5753 goto theend;
5754 }
5755
5756 if (doalp && ASCII_ISALPHA(firstdigit))
5757 {
5758 /* decrement or increment alphabetic character */
5759 if (op_type == OP_NR_SUB)
5760 {
5761 if (CharOrd(firstdigit) < Prenum1)
5762 {
5763 if (isupper(firstdigit))
5764 firstdigit = 'A';
5765 else
5766 firstdigit = 'a';
5767 }
5768 else
5769#ifdef EBCDIC
5770 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5771#else
5772 firstdigit -= Prenum1;
5773#endif
5774 }
5775 else
5776 {
5777 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5778 {
5779 if (isupper(firstdigit))
5780 firstdigit = 'Z';
5781 else
5782 firstdigit = 'z';
5783 }
5784 else
5785#ifdef EBCDIC
5786 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5787#else
5788 firstdigit += Prenum1;
5789#endif
5790 }
5791 curwin->w_cursor.col = col;
5792 if (!did_change)
5793 startpos = curwin->w_cursor;
5794 did_change = TRUE;
5795 (void)del_char(FALSE);
5796 ins_char(firstdigit);
5797 endpos = curwin->w_cursor;
5798 curwin->w_cursor.col = col;
5799 }
5800 else
5801 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005802 if (col > 0 && ptr[col - 1] == '-'
5803#ifdef FEAT_MBYTE
5804 && (!has_mbyte ||
5805 !(*mb_head_off)(ptr, ptr + col - 1))
5806#endif
5807 && !visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005808 {
5809 /* negative number */
5810 --col;
5811 negative = TRUE;
5812 }
5813 /* get the number value (unsigned) */
5814 if (visual && VIsual_mode != 'V')
5815 maxlen = (curbuf->b_visual.vi_curswant == MAXCOL
5816 ? (int)STRLEN(ptr) - col
5817 : length);
5818
5819 vim_str2nr(ptr + col, &pre, &length,
5820 0 + (dobin ? STR2NR_BIN : 0)
5821 + (dooct ? STR2NR_OCT : 0)
5822 + (dohex ? STR2NR_HEX : 0),
5823 NULL, &n, maxlen);
5824
5825 /* ignore leading '-' for hex and octal and bin numbers */
5826 if (pre && negative)
5827 {
5828 ++col;
5829 --length;
5830 negative = FALSE;
5831 }
5832 /* add or subtract */
5833 subtract = FALSE;
5834 if (op_type == OP_NR_SUB)
5835 subtract ^= TRUE;
5836 if (negative)
5837 subtract ^= TRUE;
5838
5839 oldn = n;
5840 if (subtract)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005841 n -= (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005842 else
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005843 n += (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005844 /* handle wraparound for decimal numbers */
5845 if (!pre)
5846 {
5847 if (subtract)
5848 {
5849 if (n > oldn)
5850 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005851 n = 1 + (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005852 negative ^= TRUE;
5853 }
5854 }
5855 else
5856 {
5857 /* add */
5858 if (n < oldn)
5859 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005860 n = (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005861 negative ^= TRUE;
5862 }
5863 }
5864 if (n == 0)
5865 negative = FALSE;
5866 }
5867
5868 if (visual && !was_positive && !negative && col > 0)
5869 {
5870 /* need to remove the '-' */
5871 col--;
5872 length++;
5873 }
5874
5875 /*
5876 * Delete the old number.
5877 */
5878 curwin->w_cursor.col = col;
5879 if (!did_change)
5880 startpos = curwin->w_cursor;
5881 did_change = TRUE;
5882 todel = length;
5883 c = gchar_cursor();
5884 /*
5885 * Don't include the '-' in the length, only the length of the
5886 * part after it is kept the same.
5887 */
5888 if (c == '-')
5889 --length;
5890 while (todel-- > 0)
5891 {
5892 if (c < 0x100 && isalpha(c))
5893 {
5894 if (isupper(c))
5895 hexupper = TRUE;
5896 else
5897 hexupper = FALSE;
5898 }
5899 /* del_char() will mark line needing displaying */
5900 (void)del_char(FALSE);
5901 c = gchar_cursor();
5902 }
5903
5904 /*
5905 * Prepare the leading characters in buf1[].
5906 * When there are many leading zeros it could be very long.
5907 * Allocate a bit too much.
5908 */
5909 buf1 = alloc((unsigned)length + NUMBUFLEN);
5910 if (buf1 == NULL)
5911 goto theend;
5912 ptr = buf1;
Bram Moolenaardc633cf2016-04-23 14:33:19 +02005913 if (negative && (!visual || was_positive))
Bram Moolenaard79e5502016-01-10 22:13:02 +01005914 {
5915 *ptr++ = '-';
5916 }
5917 if (pre)
5918 {
5919 *ptr++ = '0';
5920 --length;
5921 }
5922 if (pre == 'b' || pre == 'B' ||
5923 pre == 'x' || pre == 'X')
5924 {
5925 *ptr++ = pre;
5926 --length;
5927 }
5928
5929 /*
5930 * Put the number characters in buf2[].
5931 */
5932 if (pre == 'b' || pre == 'B')
5933 {
5934 int i;
5935 int bit = 0;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005936 int bits = sizeof(uvarnumber_T) * 8;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005937
5938 /* leading zeros */
5939 for (bit = bits; bit > 0; bit--)
5940 if ((n >> (bit - 1)) & 0x1) break;
5941
5942 for (i = 0; bit > 0; bit--)
5943 buf2[i++] = ((n >> (bit - 1)) & 0x1) ? '1' : '0';
5944
5945 buf2[i] = '\0';
5946 }
5947 else if (pre == 0)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005948 vim_snprintf((char *)buf2, NUMBUFLEN, "%llu", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005949 else if (pre == '0')
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005950 vim_snprintf((char *)buf2, NUMBUFLEN, "%llo", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005951 else if (pre && hexupper)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005952 vim_snprintf((char *)buf2, NUMBUFLEN, "%llX", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005953 else
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005954 vim_snprintf((char *)buf2, NUMBUFLEN, "%llx", n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005955 length -= (int)STRLEN(buf2);
5956
5957 /*
5958 * Adjust number of zeros to the new number of digits, so the
5959 * total length of the number remains the same.
5960 * Don't do this when
5961 * the result may look like an octal number.
5962 */
5963 if (firstdigit == '0' && !(dooct && pre == 0))
5964 while (length-- > 0)
5965 *ptr++ = '0';
5966 *ptr = NUL;
5967 STRCAT(buf1, buf2);
5968 ins_str(buf1); /* insert the new number */
5969 vim_free(buf1);
5970 endpos = curwin->w_cursor;
5971 if (did_change && curwin->w_cursor.col)
5972 --curwin->w_cursor.col;
5973 }
5974
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005975 if (did_change)
5976 {
5977 /* set the '[ and '] marks */
5978 curbuf->b_op_start = startpos;
5979 curbuf->b_op_end = endpos;
5980 if (curbuf->b_op_end.col > 0)
5981 --curbuf->b_op_end.col;
5982 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01005983
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005984theend:
5985 if (visual)
5986 curwin->w_cursor = save_cursor;
Bram Moolenaar8e081252016-03-21 23:13:32 +01005987 else if (did_change)
5988 curwin->w_set_curswant = TRUE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005989
Bram Moolenaard79e5502016-01-10 22:13:02 +01005990 return did_change;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991}
5992
5993#ifdef FEAT_VIMINFO
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005994
5995static yankreg_T *y_read_regs = NULL;
5996
5997#define REG_PREVIOUS 1
5998#define REG_EXEC 2
5999
6000/*
6001 * Prepare for reading viminfo registers when writing viminfo later.
6002 */
6003 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02006004prepare_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006005{
6006 y_read_regs = (yankreg_T *)alloc_clear(NUM_REGISTERS
6007 * (int)sizeof(yankreg_T));
6008}
6009
6010 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02006011finish_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006012{
6013 int i;
6014 int j;
6015
6016 if (y_read_regs != NULL)
6017 {
6018 for (i = 0; i < NUM_REGISTERS; ++i)
6019 if (y_read_regs[i].y_array != NULL)
6020 {
6021 for (j = 0; j < y_read_regs[i].y_size; j++)
6022 vim_free(y_read_regs[i].y_array[j]);
6023 vim_free(y_read_regs[i].y_array);
6024 }
6025 vim_free(y_read_regs);
6026 y_read_regs = NULL;
6027 }
6028}
6029
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006031read_viminfo_register(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032{
6033 int eof;
6034 int do_it = TRUE;
6035 int size;
6036 int limit;
6037 int i;
6038 int set_prev = FALSE;
6039 char_u *str;
6040 char_u **array = NULL;
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01006041 int new_type = MCHAR; /* init to shut up compiler */
6042 colnr_T new_width = 0; /* init to shut up compiler */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043
6044 /* We only get here (hopefully) if line[0] == '"' */
6045 str = virp->vir_line + 1;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006046
6047 /* If the line starts with "" this is the y_previous register. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006048 if (*str == '"')
6049 {
6050 set_prev = TRUE;
6051 str++;
6052 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00006053
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054 if (!ASCII_ISALNUM(*str) && *str != '-')
6055 {
6056 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
6057 return TRUE; /* too many errors, pretend end-of-file */
6058 do_it = FALSE;
6059 }
6060 get_yank_register(*str++, FALSE);
6061 if (!force && y_current->y_array != NULL)
6062 do_it = FALSE;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006063
6064 if (*str == '@')
6065 {
6066 /* "x@: register x used for @@ */
6067 if (force || execreg_lastc == NUL)
6068 execreg_lastc = str[-1];
6069 }
6070
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071 size = 0;
6072 limit = 100; /* Optimized for registers containing <= 100 lines */
6073 if (do_it)
6074 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006075 /*
6076 * Build the new register in array[].
6077 * y_array is kept as-is until done.
6078 * The "do_it" flag is reset when something is wrong, in which case
6079 * array[] needs to be freed.
6080 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081 if (set_prev)
6082 y_previous = y_current;
Bram Moolenaare88b0032014-12-17 21:00:49 +01006083 array = (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
Bram Moolenaar42b94362009-05-26 16:12:37 +00006084 str = skipwhite(skiptowhite(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085 if (STRNCMP(str, "CHAR", 4) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006086 new_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087 else if (STRNCMP(str, "BLOCK", 5) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006088 new_type = MBLOCK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006090 new_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006091 /* get the block width; if it's missing we get a zero, which is OK */
6092 str = skipwhite(skiptowhite(str));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006093 new_width = getdigits(&str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006094 }
6095
6096 while (!(eof = viminfo_readline(virp))
6097 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
6098 {
6099 if (do_it)
6100 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006101 if (size == limit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006103 char_u **new_array = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006104 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006105
6106 if (new_array == NULL)
6107 {
6108 do_it = FALSE;
6109 break;
6110 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006111 for (i = 0; i < limit; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006112 new_array[i] = array[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113 vim_free(array);
Bram Moolenaare88b0032014-12-17 21:00:49 +01006114 array = new_array;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115 limit *= 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116 }
6117 str = viminfo_readstring(virp, 1, TRUE);
6118 if (str != NULL)
6119 array[size++] = str;
6120 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006121 /* error, don't store the result */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122 do_it = FALSE;
6123 }
6124 }
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01006125
Bram Moolenaar071d4272004-06-13 20:20:40 +00006126 if (do_it)
6127 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006128 /* free y_array[] */
6129 for (i = 0; i < y_current->y_size; i++)
6130 vim_free(y_current->y_array[i]);
6131 vim_free(y_current->y_array);
6132
6133 y_current->y_type = new_type;
6134 y_current->y_width = new_width;
6135 y_current->y_size = size;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006136 y_current->y_time_set = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137 if (size == 0)
6138 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139 y_current->y_array = NULL;
6140 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006141 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006142 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006143 /* Move the lines from array[] to y_array[]. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006144 y_current->y_array =
6145 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
6146 for (i = 0; i < size; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006147 {
6148 if (y_current->y_array == NULL)
6149 vim_free(array[i]);
6150 else
6151 y_current->y_array[i] = array[i];
6152 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006153 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006155 else
6156 {
6157 /* Free array[] if it was filled. */
6158 for (i = 0; i < size; i++)
6159 vim_free(array[i]);
6160 }
6161 vim_free(array);
6162
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163 return eof;
6164}
6165
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006166/*
6167 * Accept a new style register line from the viminfo, store it when it's new.
6168 */
6169 void
6170handle_viminfo_register(garray_T *values, int force)
6171{
6172 bval_T *vp = (bval_T *)values->ga_data;
6173 int flags;
6174 int name;
6175 int type;
6176 int linecount;
6177 int width;
6178 time_t timestamp;
6179 yankreg_T *y_ptr;
6180 int i;
6181
6182 /* Check the format:
6183 * |{bartype},{flags},{name},{type},
6184 * {linecount},{width},{timestamp},"line1","line2"
6185 */
6186 if (values->ga_len < 6
6187 || vp[0].bv_type != BVAL_NR
6188 || vp[1].bv_type != BVAL_NR
6189 || vp[2].bv_type != BVAL_NR
6190 || vp[3].bv_type != BVAL_NR
6191 || vp[4].bv_type != BVAL_NR
6192 || vp[5].bv_type != BVAL_NR)
6193 return;
6194 flags = vp[0].bv_nr;
6195 name = vp[1].bv_nr;
Bram Moolenaar67e37202016-06-14 21:32:28 +02006196 if (name < 0 || name >= NUM_REGISTERS)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006197 return;
6198 type = vp[2].bv_nr;
6199 if (type != MCHAR && type != MLINE && type != MBLOCK)
6200 return;
6201 linecount = vp[3].bv_nr;
6202 if (values->ga_len < 6 + linecount)
6203 return;
6204 width = vp[4].bv_nr;
6205 if (width < 0)
6206 return;
6207
6208 if (y_read_regs != NULL)
6209 /* Reading viminfo for merging and writing. Store the register
6210 * content, don't update the current registers. */
6211 y_ptr = &y_read_regs[name];
6212 else
6213 y_ptr = &y_regs[name];
6214
6215 /* Do not overwrite unless forced or the timestamp is newer. */
6216 timestamp = (time_t)vp[5].bv_nr;
6217 if (y_ptr->y_array != NULL && !force
6218 && (timestamp == 0 || y_ptr->y_time_set > timestamp))
6219 return;
6220
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02006221 if (y_ptr->y_array != NULL)
6222 for (i = 0; i < y_ptr->y_size; i++)
6223 vim_free(y_ptr->y_array[i]);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006224 vim_free(y_ptr->y_array);
6225
6226 if (y_read_regs == NULL)
6227 {
6228 if (flags & REG_PREVIOUS)
6229 y_previous = y_ptr;
6230 if ((flags & REG_EXEC) && (force || execreg_lastc == NUL))
6231 execreg_lastc = get_register_name(name);
6232 }
6233 y_ptr->y_type = type;
6234 y_ptr->y_width = width;
6235 y_ptr->y_size = linecount;
6236 y_ptr->y_time_set = timestamp;
6237 if (linecount == 0)
6238 y_ptr->y_array = NULL;
6239 else
6240 {
6241 y_ptr->y_array =
6242 (char_u **)alloc((unsigned)(linecount * sizeof(char_u *)));
6243 for (i = 0; i < linecount; i++)
6244 {
6245 if (vp[i + 6].bv_allocated)
6246 {
6247 y_ptr->y_array[i] = vp[i + 6].bv_string;
6248 vp[i + 6].bv_string = NULL;
6249 }
6250 else
6251 y_ptr->y_array[i] = vim_strsave(vp[i + 6].bv_string);
6252 }
6253 }
6254}
6255
Bram Moolenaar071d4272004-06-13 20:20:40 +00006256 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006257write_viminfo_registers(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006258{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006259 int i, j;
6260 char_u *type;
6261 char_u c;
6262 int num_lines;
6263 int max_num_lines;
6264 int max_kbyte;
6265 long len;
6266 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267
Bram Moolenaar64404472010-06-26 06:24:45 +02006268 fputs(_("\n# Registers:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269
6270 /* Get '<' value, use old '"' value if '<' is not found. */
6271 max_num_lines = get_viminfo_parameter('<');
6272 if (max_num_lines < 0)
6273 max_num_lines = get_viminfo_parameter('"');
6274 if (max_num_lines == 0)
6275 return;
6276 max_kbyte = get_viminfo_parameter('s');
6277 if (max_kbyte == 0)
6278 return;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006279
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280 for (i = 0; i < NUM_REGISTERS; i++)
6281 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006282#ifdef FEAT_CLIPBOARD
6283 /* Skip '*'/'+' register, we don't want them back next time */
6284 if (i == STAR_REGISTER || i == PLUS_REGISTER)
6285 continue;
6286#endif
6287#ifdef FEAT_DND
6288 /* Neither do we want the '~' register */
6289 if (i == TILDE_REGISTER)
6290 continue;
6291#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006292 /* When reading viminfo for merging and writing: Use the register from
6293 * viminfo if it's newer. */
6294 if (y_read_regs != NULL
6295 && y_read_regs[i].y_array != NULL
6296 && (y_regs[i].y_array == NULL ||
6297 y_read_regs[i].y_time_set > y_regs[i].y_time_set))
6298 y_ptr = &y_read_regs[i];
6299 else if (y_regs[i].y_array == NULL)
6300 continue;
6301 else
6302 y_ptr = &y_regs[i];
6303
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006304 /* Skip empty registers. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006305 num_lines = y_ptr->y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006306 if (num_lines == 0
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006307 || (num_lines == 1 && y_ptr->y_type == MCHAR
6308 && *y_ptr->y_array[0] == NUL))
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006309 continue;
6310
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311 if (max_kbyte > 0)
6312 {
6313 /* Skip register if there is more text than the maximum size. */
6314 len = 0;
6315 for (j = 0; j < num_lines; j++)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006316 len += (long)STRLEN(y_ptr->y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317 if (len > (long)max_kbyte * 1024L)
6318 continue;
6319 }
6320
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006321 switch (y_ptr->y_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006322 {
6323 case MLINE:
6324 type = (char_u *)"LINE";
6325 break;
6326 case MCHAR:
6327 type = (char_u *)"CHAR";
6328 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006329 case MBLOCK:
6330 type = (char_u *)"BLOCK";
6331 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332 default:
6333 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006334 y_ptr->y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 emsg(IObuff);
6336 type = (char_u *)"LINE";
6337 break;
6338 }
6339 if (y_previous == &y_regs[i])
6340 fprintf(fp, "\"");
6341 c = get_register_name(i);
Bram Moolenaar42b94362009-05-26 16:12:37 +00006342 fprintf(fp, "\"%c", c);
6343 if (c == execreg_lastc)
6344 fprintf(fp, "@");
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006345 fprintf(fp, "\t%s\t%d\n", type, (int)y_ptr->y_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006346
6347 /* If max_num_lines < 0, then we save ALL the lines in the register */
6348 if (max_num_lines > 0 && num_lines > max_num_lines)
6349 num_lines = max_num_lines;
6350 for (j = 0; j < num_lines; j++)
6351 {
6352 putc('\t', fp);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006353 viminfo_writestring(fp, y_ptr->y_array[j]);
6354 }
6355
6356 {
6357 int flags = 0;
6358 int remaining;
6359
6360 /* New style with a bar line. Format:
6361 * |{bartype},{flags},{name},{type},
6362 * {linecount},{width},{timestamp},"line1","line2"
6363 * flags: REG_PREVIOUS - register is y_previous
6364 * REG_EXEC - used for @@
6365 */
6366 if (y_previous == &y_regs[i])
6367 flags |= REG_PREVIOUS;
6368 if (c == execreg_lastc)
6369 flags |= REG_EXEC;
6370 fprintf(fp, "|%d,%d,%d,%d,%d,%d,%ld", BARTYPE_REGISTER, flags,
6371 i, y_ptr->y_type, num_lines, (int)y_ptr->y_width,
6372 (long)y_ptr->y_time_set);
6373 /* 11 chars for type/flags/name/type, 3 * 20 for numbers */
6374 remaining = LSIZE - 71;
6375 for (j = 0; j < num_lines; j++)
6376 {
6377 putc(',', fp);
6378 --remaining;
6379 remaining = barline_writestring(fp, y_ptr->y_array[j],
6380 remaining);
6381 }
6382 putc('\n', fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006383 }
6384 }
6385}
6386#endif /* FEAT_VIMINFO */
6387
6388#if defined(FEAT_CLIPBOARD) || defined(PROTO)
6389/*
6390 * SELECTION / PRIMARY ('*')
6391 *
6392 * Text selection stuff that uses the GUI selection register '*'. When using a
6393 * GUI this may be text from another window, otherwise it is the last text we
6394 * had highlighted with VIsual mode. With mouse support, clicking the middle
6395 * button performs the paste, otherwise you will need to do <"*p>. "
6396 * If not under X, it is synonymous with the clipboard register '+'.
6397 *
6398 * X CLIPBOARD ('+')
6399 *
6400 * Text selection stuff that uses the GUI clipboard register '+'.
6401 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
6402 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
6403 * otherwise you will need to do <"+p>. "
6404 * If not under X, it is synonymous with the selection register '*'.
6405 */
6406
6407/*
6408 * Routine to export any final X selection we had to the environment
Bram Moolenaarf58a8472017-03-05 18:03:04 +01006409 * so that the text is still available after Vim has exited. X selections
Bram Moolenaar071d4272004-06-13 20:20:40 +00006410 * only exist while the owning application exists, so we write to the
6411 * permanent (while X runs) store CUT_BUFFER0.
6412 * Dump the CLIPBOARD selection if we own it (it's logically the more
6413 * 'permanent' of the two), otherwise the PRIMARY one.
6414 * For now, use a hard-coded sanity limit of 1Mb of data.
6415 */
Bram Moolenaara6b7a082016-08-10 20:53:05 +02006416#if (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006417 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006418x11_export_final_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419{
6420 Display *dpy;
6421 char_u *str = NULL;
6422 long_u len = 0;
6423 int motion_type = -1;
6424
6425# ifdef FEAT_GUI
6426 if (gui.in_use)
6427 dpy = X_DISPLAY;
6428 else
6429# endif
6430# ifdef FEAT_XCLIPBOARD
6431 dpy = xterm_dpy;
6432# else
6433 return;
6434# endif
6435
6436 /* Get selection to export */
6437 if (clip_plus.owned)
6438 motion_type = clip_convert_selection(&str, &len, &clip_plus);
6439 else if (clip_star.owned)
6440 motion_type = clip_convert_selection(&str, &len, &clip_star);
6441
6442 /* Check it's OK */
6443 if (dpy != NULL && str != NULL && motion_type >= 0
6444 && len < 1024*1024 && len > 0)
6445 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006446#ifdef FEAT_MBYTE
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006447 int ok = TRUE;
6448
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006449 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
6450 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
6451 * encoding conversion usually doesn't work, so keep the text as-is.
6452 */
6453 if (has_mbyte)
6454 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006455 vimconv_T vc;
6456
6457 vc.vc_type = CONV_NONE;
6458 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
6459 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01006460 int intlen = len;
6461 char_u *conv_str;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006462
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006463 vc.vc_fail = TRUE;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006464 conv_str = string_convert(&vc, str, &intlen);
6465 len = intlen;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006466 if (conv_str != NULL)
6467 {
6468 vim_free(str);
6469 str = conv_str;
6470 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006471 else
6472 {
6473 ok = FALSE;
6474 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006475 convert_setup(&vc, NULL, NULL);
6476 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006477 else
6478 {
6479 ok = FALSE;
6480 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006481 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006482
6483 /* Do not store the string if conversion failed. Better to use any
6484 * other selection than garbled text. */
6485 if (ok)
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006486#endif
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006487 {
6488 XStoreBuffer(dpy, (char *)str, (int)len, 0);
6489 XFlush(dpy);
6490 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006491 }
6492
6493 vim_free(str);
6494}
6495#endif
6496
6497 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006498clip_free_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006499{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006500 yankreg_T *y_ptr = y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501
6502 if (cbd == &clip_plus)
6503 y_current = &y_regs[PLUS_REGISTER];
6504 else
6505 y_current = &y_regs[STAR_REGISTER];
6506 free_yank_all();
6507 y_current->y_size = 0;
6508 y_current = y_ptr;
6509}
6510
6511/*
6512 * Get the selected text and put it in the gui selection register '*' or '+'.
6513 */
6514 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006515clip_get_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006517 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006518 pos_T old_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519 pos_T old_visual;
6520 int old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006521 colnr_T old_curswant;
6522 int old_set_curswant;
6523 pos_T old_op_start, old_op_end;
6524 oparg_T oa;
6525 cmdarg_T ca;
6526
6527 if (cbd->owned)
6528 {
6529 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
6530 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
6531 return;
6532
6533 /* Get the text between clip_star.start & clip_star.end */
6534 old_y_previous = y_previous;
6535 old_y_current = y_current;
6536 old_cursor = curwin->w_cursor;
6537 old_curswant = curwin->w_curswant;
6538 old_set_curswant = curwin->w_set_curswant;
6539 old_op_start = curbuf->b_op_start;
6540 old_op_end = curbuf->b_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006541 old_visual = VIsual;
6542 old_visual_mode = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006543 clear_oparg(&oa);
6544 oa.regname = (cbd == &clip_plus ? '+' : '*');
6545 oa.op_type = OP_YANK;
6546 vim_memset(&ca, 0, sizeof(ca));
6547 ca.oap = &oa;
6548 ca.cmdchar = 'y';
6549 ca.count1 = 1;
6550 ca.retval = CA_NO_ADJ_OP_END;
6551 do_pending_operator(&ca, 0, TRUE);
6552 y_previous = old_y_previous;
6553 y_current = old_y_current;
6554 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006555 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556 curwin->w_curswant = old_curswant;
6557 curwin->w_set_curswant = old_set_curswant;
6558 curbuf->b_op_start = old_op_start;
6559 curbuf->b_op_end = old_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006560 VIsual = old_visual;
6561 VIsual_mode = old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006562 }
Bram Moolenaar3fcfa352017-03-29 19:20:41 +02006563 else if (!is_clipboard_needs_update())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006564 {
6565 clip_free_selection(cbd);
6566
6567 /* Try to get selected text from another window */
6568 clip_gen_request_selection(cbd);
6569 }
6570}
6571
Bram Moolenaard44347f2011-06-19 01:14:29 +02006572/*
6573 * Convert from the GUI selection string into the '*'/'+' register.
6574 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006575 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006576clip_yank_selection(
6577 int type,
6578 char_u *str,
6579 long len,
6580 VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006581{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006582 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006583
6584 if (cbd == &clip_plus)
6585 y_ptr = &y_regs[PLUS_REGISTER];
6586 else
6587 y_ptr = &y_regs[STAR_REGISTER];
6588
6589 clip_free_selection(cbd);
6590
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006591 str_to_reg(y_ptr, type, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006592}
6593
6594/*
6595 * Convert the '*'/'+' register into a GUI selection string returned in *str
6596 * with length *len.
6597 * Returns the motion type, or -1 for failure.
6598 */
6599 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006600clip_convert_selection(char_u **str, long_u *len, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006601{
6602 char_u *p;
6603 int lnum;
6604 int i, j;
6605 int_u eolsize;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006606 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006607
6608 if (cbd == &clip_plus)
6609 y_ptr = &y_regs[PLUS_REGISTER];
6610 else
6611 y_ptr = &y_regs[STAR_REGISTER];
6612
6613#ifdef USE_CRNL
6614 eolsize = 2;
6615#else
6616 eolsize = 1;
6617#endif
6618
6619 *str = NULL;
6620 *len = 0;
6621 if (y_ptr->y_array == NULL)
6622 return -1;
6623
6624 for (i = 0; i < y_ptr->y_size; i++)
6625 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
6626
6627 /*
6628 * Don't want newline character at end of last line if we're in MCHAR mode.
6629 */
6630 if (y_ptr->y_type == MCHAR && *len >= eolsize)
6631 *len -= eolsize;
6632
6633 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
6634 if (p == NULL)
6635 return -1;
6636 lnum = 0;
6637 for (i = 0, j = 0; i < (int)*len; i++, j++)
6638 {
6639 if (y_ptr->y_array[lnum][j] == '\n')
6640 p[i] = NUL;
6641 else if (y_ptr->y_array[lnum][j] == NUL)
6642 {
6643#ifdef USE_CRNL
6644 p[i++] = '\r';
6645#endif
6646#ifdef USE_CR
6647 p[i] = '\r';
6648#else
6649 p[i] = '\n';
6650#endif
6651 lnum++;
6652 j = -1;
6653 }
6654 else
6655 p[i] = y_ptr->y_array[lnum][j];
6656 }
6657 return y_ptr->y_type;
6658}
6659
6660
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661/*
6662 * If we have written to a clipboard register, send the text to the clipboard.
6663 */
6664 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006665may_set_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666{
6667 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
6668 {
6669 clip_own_selection(&clip_star);
6670 clip_gen_set_selection(&clip_star);
6671 }
6672 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
6673 {
6674 clip_own_selection(&clip_plus);
6675 clip_gen_set_selection(&clip_plus);
6676 }
6677}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006678
6679#endif /* FEAT_CLIPBOARD || PROTO */
6680
6681
6682#if defined(FEAT_DND) || defined(PROTO)
6683/*
6684 * Replace the contents of the '~' register with str.
6685 */
6686 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006687dnd_yank_drag_data(char_u *str, long len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006688{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006689 yankreg_T *curr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006690
6691 curr = y_current;
6692 y_current = &y_regs[TILDE_REGISTER];
6693 free_yank_all();
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006694 str_to_reg(y_current, MCHAR, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006695 y_current = curr;
6696}
6697#endif
6698
6699
6700#if defined(FEAT_EVAL) || defined(PROTO)
6701/*
6702 * Return the type of a register.
6703 * Used for getregtype()
6704 * Returns MAUTO for error.
6705 */
6706 char_u
Bram Moolenaar9b578142016-01-30 19:39:49 +01006707get_reg_type(int regname, long *reglen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006708{
6709 switch (regname)
6710 {
6711 case '%': /* file name */
6712 case '#': /* alternate file name */
6713 case '=': /* expression */
6714 case ':': /* last command line */
6715 case '/': /* last search-pattern */
6716 case '.': /* last inserted text */
6717#ifdef FEAT_SEARCHPATH
6718 case Ctrl_F: /* Filename under cursor */
6719 case Ctrl_P: /* Path under cursor, expand via "path" */
6720#endif
6721 case Ctrl_W: /* word under cursor */
6722 case Ctrl_A: /* WORD (mnemonic All) under cursor */
6723 case '_': /* black hole: always empty */
6724 return MCHAR;
6725 }
6726
6727#ifdef FEAT_CLIPBOARD
6728 regname = may_get_selection(regname);
6729#endif
6730
Bram Moolenaar32b92012014-01-14 12:33:36 +01006731 if (regname != NUL && !valid_yank_reg(regname, FALSE))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006732 return MAUTO;
Bram Moolenaar32b92012014-01-14 12:33:36 +01006733
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734 get_yank_register(regname, FALSE);
6735
6736 if (y_current->y_array != NULL)
6737 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738 if (reglen != NULL && y_current->y_type == MBLOCK)
6739 *reglen = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740 return y_current->y_type;
6741 }
6742 return MAUTO;
6743}
6744
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01006745static char_u *getreg_wrap_one_line(char_u *s, int flags);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006746
6747/*
6748 * When "flags" has GREG_LIST return a list with text "s".
6749 * Otherwise just return "s".
6750 */
6751 static char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006752getreg_wrap_one_line(char_u *s, int flags)
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006753{
6754 if (flags & GREG_LIST)
6755 {
6756 list_T *list = list_alloc();
6757
6758 if (list != NULL)
6759 {
6760 if (list_append_string(list, NULL, -1) == FAIL)
6761 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006762 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006763 return NULL;
6764 }
6765 list->lv_first->li_tv.vval.v_string = s;
6766 }
6767 return (char_u *)list;
6768 }
6769 return s;
6770}
6771
Bram Moolenaar071d4272004-06-13 20:20:40 +00006772/*
6773 * Return the contents of a register as a single allocated string.
6774 * Used for "@r" in expressions and for getreg().
6775 * Returns NULL for error.
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006776 * Flags:
6777 * GREG_NO_EXPR Do not allow expression register
6778 * GREG_EXPR_SRC For the expression register: return expression itself,
6779 * not the result of its evaluation.
6780 * GREG_LIST Return a list of lines in place of a single string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006781 */
6782 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006783get_reg_contents(int regname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006784{
6785 long i;
6786 char_u *retval;
6787 int allocated;
6788 long len;
6789
6790 /* Don't allow using an expression register inside an expression */
6791 if (regname == '=')
6792 {
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006793 if (flags & GREG_NO_EXPR)
6794 return NULL;
6795 if (flags & GREG_EXPR_SRC)
6796 return getreg_wrap_one_line(get_expr_line_src(), flags);
6797 return getreg_wrap_one_line(get_expr_line(), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798 }
6799
6800 if (regname == '@') /* "@@" is used for unnamed register */
6801 regname = '"';
6802
6803 /* check for valid regname */
6804 if (regname != NUL && !valid_yank_reg(regname, FALSE))
6805 return NULL;
6806
6807#ifdef FEAT_CLIPBOARD
6808 regname = may_get_selection(regname);
6809#endif
6810
6811 if (get_spec_reg(regname, &retval, &allocated, FALSE))
6812 {
6813 if (retval == NULL)
6814 return NULL;
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006815 if (allocated)
6816 return getreg_wrap_one_line(retval, flags);
6817 return getreg_wrap_one_line(vim_strsave(retval), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818 }
6819
6820 get_yank_register(regname, FALSE);
6821 if (y_current->y_array == NULL)
6822 return NULL;
6823
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006824 if (flags & GREG_LIST)
6825 {
6826 list_T *list = list_alloc();
6827 int error = FALSE;
6828
6829 if (list == NULL)
6830 return NULL;
6831 for (i = 0; i < y_current->y_size; ++i)
6832 if (list_append_string(list, y_current->y_array[i], -1) == FAIL)
6833 error = TRUE;
6834 if (error)
6835 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006836 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006837 return NULL;
6838 }
6839 return (char_u *)list;
6840 }
6841
Bram Moolenaar071d4272004-06-13 20:20:40 +00006842 /*
6843 * Compute length of resulting string.
6844 */
6845 len = 0;
6846 for (i = 0; i < y_current->y_size; ++i)
6847 {
6848 len += (long)STRLEN(y_current->y_array[i]);
6849 /*
6850 * Insert a newline between lines and after last line if
6851 * y_type is MLINE.
6852 */
6853 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6854 ++len;
6855 }
6856
6857 retval = lalloc(len + 1, TRUE);
6858
6859 /*
6860 * Copy the lines of the yank register into the string.
6861 */
6862 if (retval != NULL)
6863 {
6864 len = 0;
6865 for (i = 0; i < y_current->y_size; ++i)
6866 {
6867 STRCPY(retval + len, y_current->y_array[i]);
6868 len += (long)STRLEN(retval + len);
6869
6870 /*
6871 * Insert a NL between lines and after the last line if y_type is
6872 * MLINE.
6873 */
6874 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6875 retval[len++] = '\n';
6876 }
6877 retval[len] = NUL;
6878 }
6879
6880 return retval;
6881}
6882
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006883 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006884init_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006885 int name,
6886 yankreg_T **old_y_previous,
6887 yankreg_T **old_y_current,
6888 int must_append,
6889 int *yank_type UNUSED)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006890{
6891 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6892 {
6893 emsg_invreg(name);
6894 return FAIL;
6895 }
6896
6897 /* Don't want to change the current (unnamed) register */
6898 *old_y_previous = y_previous;
6899 *old_y_current = y_current;
6900
6901 get_yank_register(name, TRUE);
6902 if (!y_append && !must_append)
6903 free_yank_all();
6904 return OK;
6905}
6906
6907 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006908finish_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006909 int name,
6910 yankreg_T *old_y_previous,
6911 yankreg_T *old_y_current)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006912{
6913# ifdef FEAT_CLIPBOARD
6914 /* Send text of clipboard register to the clipboard. */
6915 may_set_selection();
6916# endif
6917
6918 /* ':let @" = "val"' should change the meaning of the "" register */
6919 if (name != '"')
6920 y_previous = old_y_previous;
6921 y_current = old_y_current;
6922}
6923
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924/*
6925 * Store string "str" in register "name".
6926 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
6927 * If "must_append" is TRUE, always append to the register. Otherwise append
6928 * if "name" is an uppercase letter.
6929 * Note: "maxlen" and "must_append" don't work for the "/" register.
6930 * Careful: 'str' is modified, you may have to use a copy!
6931 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
6932 */
6933 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006934write_reg_contents(
6935 int name,
6936 char_u *str,
6937 int maxlen,
6938 int must_append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939{
6940 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
6941}
6942
6943 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006944write_reg_contents_lst(
6945 int name,
6946 char_u **strings,
6947 int maxlen UNUSED,
6948 int must_append,
6949 int yank_type,
6950 long block_len)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006951{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006952 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006953
6954 if (name == '/'
6955#ifdef FEAT_EVAL
6956 || name == '='
6957#endif
6958 )
6959 {
6960 char_u *s;
6961
6962 if (strings[0] == NULL)
6963 s = (char_u *)"";
6964 else if (strings[1] != NULL)
6965 {
6966 EMSG(_("E883: search pattern and expression register may not "
6967 "contain two or more lines"));
6968 return;
6969 }
6970 else
6971 s = strings[0];
6972 write_reg_contents_ex(name, s, -1, must_append, yank_type, block_len);
6973 return;
6974 }
6975
6976 if (name == '_') /* black hole: nothing to do */
6977 return;
6978
6979 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
6980 &yank_type) == FAIL)
6981 return;
6982
6983 str_to_reg(y_current, yank_type, (char_u *) strings, -1, block_len, TRUE);
6984
6985 finish_write_reg(name, old_y_previous, old_y_current);
6986}
6987
6988 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006989write_reg_contents_ex(
6990 int name,
6991 char_u *str,
6992 int maxlen,
6993 int must_append,
6994 int yank_type,
6995 long block_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006997 yankreg_T *old_y_previous, *old_y_current;
6998 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999
Bram Moolenaare7566042005-06-17 22:00:15 +00007000 if (maxlen >= 0)
7001 len = maxlen;
7002 else
7003 len = (long)STRLEN(str);
7004
Bram Moolenaar071d4272004-06-13 20:20:40 +00007005 /* Special case: '/' search pattern */
7006 if (name == '/')
7007 {
7008 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
7009 return;
7010 }
7011
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01007012 if (name == '#')
7013 {
7014 buf_T *buf;
7015
7016 if (VIM_ISDIGIT(*str))
7017 {
7018 int num = atoi((char *)str);
7019
7020 buf = buflist_findnr(num);
7021 if (buf == NULL)
7022 EMSGN(_(e_nobufnr), (long)num);
7023 }
7024 else
7025 buf = buflist_findnr(buflist_findpat(str, str + STRLEN(str),
7026 TRUE, FALSE, FALSE));
7027 if (buf == NULL)
7028 return;
7029 curwin->w_alt_fnum = buf->b_fnum;
7030 return;
7031 }
7032
Bram Moolenaare7566042005-06-17 22:00:15 +00007033#ifdef FEAT_EVAL
7034 if (name == '=')
7035 {
7036 char_u *p, *s;
7037
7038 p = vim_strnsave(str, (int)len);
7039 if (p == NULL)
7040 return;
7041 if (must_append)
7042 {
7043 s = concat_str(get_expr_line_src(), p);
7044 vim_free(p);
7045 p = s;
Bram Moolenaare7566042005-06-17 22:00:15 +00007046 }
7047 set_expr_line(p);
7048 return;
7049 }
7050#endif
7051
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052 if (name == '_') /* black hole: nothing to do */
7053 return;
7054
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007055 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
7056 &yank_type) == FAIL)
7057 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007058
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007059 str_to_reg(y_current, yank_type, str, len, block_len, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007061 finish_write_reg(name, old_y_previous, old_y_current);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007062}
7063#endif /* FEAT_EVAL */
7064
7065#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
7066/*
7067 * Put a string into a register. When the register is not empty, the string
7068 * is appended.
7069 */
7070 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007071str_to_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007072 yankreg_T *y_ptr, /* pointer to yank register */
7073 int yank_type, /* MCHAR, MLINE, MBLOCK, MAUTO */
7074 char_u *str, /* string to put in register */
7075 long len, /* length of string */
7076 long blocklen, /* width of Visual block */
7077 int str_list) /* TRUE if str is char_u ** */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078{
Bram Moolenaard44347f2011-06-19 01:14:29 +02007079 int type; /* MCHAR, MLINE or MBLOCK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080 int lnum;
7081 long start;
7082 long i;
7083 int extra;
7084 int newlines; /* number of lines added */
7085 int extraline = 0; /* extra line at the end */
7086 int append = FALSE; /* append to last line in register */
7087 char_u *s;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007088 char_u **ss;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007089 char_u **pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090 long maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091
Bram Moolenaarcde547a2009-11-17 11:43:06 +00007092 if (y_ptr->y_array == NULL) /* NULL means empty register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093 y_ptr->y_size = 0;
7094
Bram Moolenaard44347f2011-06-19 01:14:29 +02007095 if (yank_type == MAUTO)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007096 type = ((str_list || (len > 0 && (str[len - 1] == NL
7097 || str[len - 1] == CAR)))
Bram Moolenaard44347f2011-06-19 01:14:29 +02007098 ? MLINE : MCHAR);
7099 else
7100 type = yank_type;
7101
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102 /*
7103 * Count the number of lines within the string
7104 */
7105 newlines = 0;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007106 if (str_list)
7107 {
7108 for (ss = (char_u **) str; *ss != NULL; ++ss)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109 ++newlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007110 }
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007111 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007112 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007113 for (i = 0; i < len; i++)
7114 if (str[i] == '\n')
7115 ++newlines;
7116 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
7117 {
7118 extraline = 1;
7119 ++newlines; /* count extra newline at the end */
7120 }
7121 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
7122 {
7123 append = TRUE;
7124 --newlines; /* uncount newline when appending first line */
7125 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126 }
7127
Bram Moolenaar659c94d2015-05-04 20:19:21 +02007128 /* Without any lines make the register empty. */
7129 if (y_ptr->y_size + newlines == 0)
7130 {
7131 vim_free(y_ptr->y_array);
7132 y_ptr->y_array = NULL;
7133 return;
7134 }
7135
Bram Moolenaar071d4272004-06-13 20:20:40 +00007136 /*
7137 * Allocate an array to hold the pointers to the new register lines.
7138 * If the register was not empty, move the existing lines to the new array.
7139 */
7140 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
7141 * sizeof(char_u *), TRUE);
7142 if (pp == NULL) /* out of memory */
7143 return;
7144 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
7145 pp[lnum] = y_ptr->y_array[lnum];
7146 vim_free(y_ptr->y_array);
7147 y_ptr->y_array = pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007148 maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007149
7150 /*
7151 * Find the end of each line and save it into the array.
7152 */
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007153 if (str_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007155 for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum)
7156 {
Bram Moolenaar121f9bd2014-04-29 15:55:43 +02007157 i = (long)STRLEN(*ss);
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007158 pp[lnum] = vim_strnsave(*ss, i);
7159 if (i > maxlen)
7160 maxlen = i;
7161 }
7162 }
7163 else
7164 {
7165 for (start = 0; start < len + extraline; start += i + 1)
7166 {
7167 for (i = start; i < len; ++i) /* find the end of the line */
7168 if (str[i] == '\n')
7169 break;
7170 i -= start; /* i is now length of line */
7171 if (i > maxlen)
7172 maxlen = i;
7173 if (append)
7174 {
7175 --lnum;
7176 extra = (int)STRLEN(y_ptr->y_array[lnum]);
7177 }
7178 else
7179 extra = 0;
7180 s = alloc((unsigned)(i + extra + 1));
7181 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007182 break;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007183 if (extra)
7184 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
7185 if (append)
7186 vim_free(y_ptr->y_array[lnum]);
7187 if (i)
7188 mch_memmove(s + extra, str + start, (size_t)i);
7189 extra += i;
7190 s[extra] = NUL;
7191 y_ptr->y_array[lnum++] = s;
7192 while (--extra >= 0)
7193 {
7194 if (*s == NUL)
7195 *s = '\n'; /* replace NUL with newline */
7196 ++s;
7197 }
7198 append = FALSE; /* only first line is appended */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007199 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007200 }
7201 y_ptr->y_type = type;
7202 y_ptr->y_size = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203 if (type == MBLOCK)
7204 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
7205 else
7206 y_ptr->y_width = 0;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007207#ifdef FEAT_VIMINFO
7208 y_ptr->y_time_set = vim_time();
7209#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007210}
7211#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
7212
7213 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007214clear_oparg(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007215{
7216 vim_memset(oap, 0, sizeof(oparg_T));
7217}
7218
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007219static 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 +00007220
7221/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00007222 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007223 *
7224 * "Words" are counted by looking for boundaries between non-space and
7225 * space characters. (it seems to produce results that match 'wc'.)
7226 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00007227 * Return value is byte count; word count for the line is added to "*wc".
7228 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007229 *
7230 * The function will only examine the first "limit" characters in the
7231 * line, stopping if it encounters an end-of-line (NUL byte). In that
7232 * case, eol_size will be added to the character count to account for
7233 * the size of the EOL character.
7234 */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007235 static varnumber_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01007236line_count_info(
7237 char_u *line,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007238 varnumber_T *wc,
7239 varnumber_T *cc,
7240 varnumber_T limit,
Bram Moolenaar9b578142016-01-30 19:39:49 +01007241 int eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007242{
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007243 varnumber_T i;
7244 varnumber_T words = 0;
7245 varnumber_T chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007246 int is_word = 0;
7247
Bram Moolenaar88b1ba12012-06-29 13:34:19 +02007248 for (i = 0; i < limit && line[i] != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007249 {
7250 if (is_word)
7251 {
7252 if (vim_isspace(line[i]))
7253 {
7254 words++;
7255 is_word = 0;
7256 }
7257 }
7258 else if (!vim_isspace(line[i]))
7259 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007260 ++chars;
7261#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007262 i += (*mb_ptr2len)(line + i);
Bram Moolenaar7c626922005-02-07 22:01:03 +00007263#else
7264 ++i;
7265#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007266 }
7267
7268 if (is_word)
7269 words++;
7270 *wc += words;
7271
7272 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar1cb7e092011-08-10 12:11:01 +02007273 if (i < limit && line[i] == NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007274 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007275 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007276 chars += eol_size;
7277 }
7278 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007279 return i;
7280}
7281
7282/*
7283 * Give some info about the position of the cursor (for "g CTRL-G").
7284 * In Visual mode, give some info about the selected region. (In this case,
7285 * the *_count_cursor variables store running totals for the selection.)
Bram Moolenaared767a22016-01-03 22:49:16 +01007286 * When "dict" is not NULL store the info there instead of showing it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007287 */
7288 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007289cursor_pos_info(dict_T *dict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007290{
7291 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007292 char_u buf1[50];
7293 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007294 linenr_T lnum;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007295 varnumber_T byte_count = 0;
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007296#ifdef FEAT_MBYTE
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007297 varnumber_T bom_count = 0;
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007298#endif
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007299 varnumber_T byte_count_cursor = 0;
7300 varnumber_T char_count = 0;
7301 varnumber_T char_count_cursor = 0;
7302 varnumber_T word_count = 0;
7303 varnumber_T word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007304 int eol_size;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007305 varnumber_T last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007306 long line_count_selected = 0;
7307 pos_T min_pos, max_pos;
7308 oparg_T oparg;
7309 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007310
7311 /*
7312 * Compute the length of the file in characters.
7313 */
7314 if (curbuf->b_ml.ml_flags & ML_EMPTY)
7315 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007316 if (dict == NULL)
7317 {
7318 MSG(_(no_lines_msg));
7319 return;
7320 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007321 }
7322 else
7323 {
7324 if (get_fileformat(curbuf) == EOL_DOS)
7325 eol_size = 2;
7326 else
7327 eol_size = 1;
7328
Bram Moolenaar071d4272004-06-13 20:20:40 +00007329 if (VIsual_active)
7330 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007331 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007332 {
7333 min_pos = VIsual;
7334 max_pos = curwin->w_cursor;
7335 }
7336 else
7337 {
7338 min_pos = curwin->w_cursor;
7339 max_pos = VIsual;
7340 }
7341 if (*p_sel == 'e' && max_pos.col > 0)
7342 --max_pos.col;
7343
7344 if (VIsual_mode == Ctrl_V)
7345 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00007346#ifdef FEAT_LINEBREAK
7347 char_u * saved_sbr = p_sbr;
7348
7349 /* Make 'sbr' empty for a moment to get the correct size. */
7350 p_sbr = empty_option;
7351#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007352 oparg.is_VIsual = 1;
7353 oparg.block_mode = TRUE;
7354 oparg.op_type = OP_NOP;
7355 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007356 &oparg.start_vcol, &oparg.end_vcol);
Bram Moolenaar81d00072009-04-29 15:41:40 +00007357#ifdef FEAT_LINEBREAK
7358 p_sbr = saved_sbr;
7359#endif
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007360 if (curwin->w_curswant == MAXCOL)
7361 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007362 /* Swap the start, end vcol if needed */
7363 if (oparg.end_vcol < oparg.start_vcol)
7364 {
7365 oparg.end_vcol += oparg.start_vcol;
7366 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
7367 oparg.end_vcol -= oparg.start_vcol;
7368 }
7369 }
7370 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
7371 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007372
7373 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
7374 {
7375 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007376 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007377 {
7378 ui_breakcheck();
7379 if (got_int)
7380 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007381 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007382 }
7383
Bram Moolenaar071d4272004-06-13 20:20:40 +00007384 /* Do extra processing for VIsual mode. */
7385 if (VIsual_active
7386 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
7387 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00007388 char_u *s = NULL;
7389 long len = 0L;
7390
Bram Moolenaar071d4272004-06-13 20:20:40 +00007391 switch (VIsual_mode)
7392 {
7393 case Ctrl_V:
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007394#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007395 virtual_op = virtual_active();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007396#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007397 block_prep(&oparg, &bd, lnum, 0);
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007398#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007399 virtual_op = MAYBE;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007400#endif
Bram Moolenaardef9e822004-12-31 20:58:58 +00007401 s = bd.textstart;
7402 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007403 break;
7404 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00007405 s = ml_get(lnum);
7406 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007407 break;
7408 case 'v':
7409 {
7410 colnr_T start_col = (lnum == min_pos.lnum)
7411 ? min_pos.col : 0;
7412 colnr_T end_col = (lnum == max_pos.lnum)
7413 ? max_pos.col - start_col + 1 : MAXCOL;
7414
Bram Moolenaardef9e822004-12-31 20:58:58 +00007415 s = ml_get(lnum) + start_col;
7416 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007417 }
7418 break;
7419 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00007420 if (s != NULL)
7421 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00007422 byte_count_cursor += line_count_info(s, &word_count_cursor,
7423 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00007424 if (lnum == curbuf->b_ml.ml_line_count
7425 && !curbuf->b_p_eol
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007426 && (curbuf->b_p_bin || !curbuf->b_p_fixeol)
Bram Moolenaarec2dad62005-01-02 11:36:03 +00007427 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007428 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00007429 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007430 }
7431 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007432 {
7433 /* In non-visual mode, check for the line the cursor is on */
7434 if (lnum == curwin->w_cursor.lnum)
7435 {
7436 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007437 char_count_cursor += char_count;
7438 byte_count_cursor = byte_count +
7439 line_count_info(ml_get(lnum),
7440 &word_count_cursor, &char_count_cursor,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007441 (varnumber_T)(curwin->w_cursor.col + 1),
7442 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007443 }
7444 }
7445 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007446 byte_count += line_count_info(ml_get(lnum), &word_count,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007447 &char_count, (varnumber_T)MAXCOL,
7448 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007449 }
7450
7451 /* Correction for when last line doesn't have an EOL. */
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007452 if (!curbuf->b_p_eol && (curbuf->b_p_bin || !curbuf->b_p_fixeol))
Bram Moolenaar7c626922005-02-07 22:01:03 +00007453 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007454
Bram Moolenaared767a22016-01-03 22:49:16 +01007455 if (dict == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007456 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007457 if (VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007458 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007459 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
7460 {
7461 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
7462 &max_pos.col);
7463 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
7464 (long)(oparg.end_vcol - oparg.start_vcol + 1));
7465 }
7466 else
7467 buf1[0] = NUL;
7468
7469 if (char_count_cursor == byte_count_cursor
7470 && char_count == byte_count)
7471 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007472 _("Selected %s%ld of %ld Lines; %lld of %lld Words; %lld of %lld Bytes"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007473 buf1, line_count_selected,
7474 (long)curbuf->b_ml.ml_line_count,
7475 word_count_cursor, word_count,
7476 byte_count_cursor, byte_count);
7477 else
7478 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007479 _("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 +01007480 buf1, line_count_selected,
7481 (long)curbuf->b_ml.ml_line_count,
7482 word_count_cursor, word_count,
7483 char_count_cursor, char_count,
7484 byte_count_cursor, byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007485 }
7486 else
Bram Moolenaared767a22016-01-03 22:49:16 +01007487 {
7488 p = ml_get_curline();
7489 validate_virtcol();
7490 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
7491 (int)curwin->w_virtcol + 1);
7492 col_print(buf2, sizeof(buf2), (int)STRLEN(p),
7493 linetabsize(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007494
Bram Moolenaared767a22016-01-03 22:49:16 +01007495 if (char_count_cursor == byte_count_cursor
7496 && char_count == byte_count)
7497 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007498 _("Col %s of %s; Line %ld of %ld; Word %lld of %lld; Byte %lld of %lld"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007499 (char *)buf1, (char *)buf2,
7500 (long)curwin->w_cursor.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007501 (long)curbuf->b_ml.ml_line_count,
7502 word_count_cursor, word_count,
Bram Moolenaar7c626922005-02-07 22:01:03 +00007503 byte_count_cursor, byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007504 else
7505 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007506 _("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 +01007507 (char *)buf1, (char *)buf2,
7508 (long)curwin->w_cursor.lnum,
Bram Moolenaar7c626922005-02-07 22:01:03 +00007509 (long)curbuf->b_ml.ml_line_count,
7510 word_count_cursor, word_count,
7511 char_count_cursor, char_count,
7512 byte_count_cursor, byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007513 }
7514 }
7515
Bram Moolenaared767a22016-01-03 22:49:16 +01007516#ifdef FEAT_MBYTE
7517 bom_count = bomb_size();
7518 if (bom_count > 0)
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007519 vim_snprintf((char *)IObuff + STRLEN(IObuff), IOSIZE,
7520 _("(+%ld for BOM)"), bom_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007521#endif
7522 if (dict == NULL)
7523 {
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007524 /* Don't shorten this message, the user asked for it. */
Bram Moolenaared767a22016-01-03 22:49:16 +01007525 p = p_shm;
7526 p_shm = (char_u *)"";
7527 msg(IObuff);
7528 p_shm = p;
7529 }
7530 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007531#if defined(FEAT_EVAL)
Bram Moolenaared767a22016-01-03 22:49:16 +01007532 if (dict != NULL)
7533 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007534 dict_add_nr_str(dict, "words", word_count, NULL);
7535 dict_add_nr_str(dict, "chars", char_count, NULL);
7536 dict_add_nr_str(dict, "bytes", byte_count
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007537# ifdef FEAT_MBYTE
7538 + bom_count
7539# endif
7540 , NULL);
7541 dict_add_nr_str(dict, VIsual_active ? "visual_bytes" : "cursor_bytes",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007542 byte_count_cursor, NULL);
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007543 dict_add_nr_str(dict, VIsual_active ? "visual_chars" : "cursor_chars",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007544 char_count_cursor, NULL);
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007545 dict_add_nr_str(dict, VIsual_active ? "visual_words" : "cursor_words",
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007546 word_count_cursor, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007547 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007548#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007549}