blob: 0adb2bcc9b9aff508071035f0c2778a0543ee5e9 [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 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000085 int is_short; /* TRUE if line is too short to fit in block */
86 int is_MAX; /* TRUE if curswant==MAXCOL when starting */
87 int is_oneChar; /* TRUE if block within one character */
88 int pre_whitesp; /* screen cols of ws before block */
89 int pre_whitesp_c; /* chars of ws before block */
90 colnr_T end_char_vcols; /* number of vcols of post-block char */
Bram Moolenaar071d4272004-06-13 20:20:40 +000091 colnr_T start_char_vcols; /* number of vcols of pre-block char */
92};
93
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010094static void shift_block(oparg_T *oap, int amount);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010095static int stuff_yank(int, char_u *);
96static void put_reedit_in_typebuf(int silent);
97static int put_in_typebuf(char_u *s, int esc, int colon,
98 int silent);
99static void stuffescaped(char_u *arg, int literally);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100100static void mb_adjust_opend(oparg_T *oap);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100101static void free_yank_all(void);
102static int yank_copy_line(struct block_def *bd, long y_idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103#ifdef FEAT_CLIPBOARD
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +0200104static void copy_yank_reg(yankreg_T *reg);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100105static void may_set_selection(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100107static void dis_msg(char_u *p, int skip_esc);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100108static void block_prep(oparg_T *oap, struct block_def *, linenr_T, int);
109static int do_addsub(int op_type, pos_T *pos, int length, linenr_T Prenum1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +0200111static 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 +0000112#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100113static int ends_in_white(linenr_T lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114#ifdef FEAT_COMMENTS
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100115static int fmt_check_par(linenr_T, int *, char_u **, int do_comments);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116#else
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100117static int fmt_check_par(linenr_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118#endif
119
Bram Moolenaarf2732452018-06-03 14:47:35 +0200120// Flags for third item in "opchars".
121#define OPF_LINES 1 // operator always works on lines
122#define OPF_CHANGE 2 // operator changes text
123
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124/*
125 * The names of operators.
126 * IMPORTANT: Index must correspond with defines in vim.h!!!
Bram Moolenaarf2732452018-06-03 14:47:35 +0200127 * The third field holds OPF_ flags.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128 */
129static char opchars[][3] =
130{
Bram Moolenaarf2732452018-06-03 14:47:35 +0200131 {NUL, NUL, 0}, // OP_NOP
132 {'d', NUL, OPF_CHANGE}, // OP_DELETE
133 {'y', NUL, 0}, // OP_YANK
134 {'c', NUL, OPF_CHANGE}, // OP_CHANGE
135 {'<', NUL, OPF_LINES | OPF_CHANGE}, // OP_LSHIFT
136 {'>', NUL, OPF_LINES | OPF_CHANGE}, // OP_RSHIFT
137 {'!', NUL, OPF_LINES | OPF_CHANGE}, // OP_FILTER
138 {'g', '~', OPF_CHANGE}, // OP_TILDE
139 {'=', NUL, OPF_LINES | OPF_CHANGE}, // OP_INDENT
140 {'g', 'q', OPF_LINES | OPF_CHANGE}, // OP_FORMAT
141 {':', NUL, OPF_LINES}, // OP_COLON
142 {'g', 'U', OPF_CHANGE}, // OP_UPPER
143 {'g', 'u', OPF_CHANGE}, // OP_LOWER
144 {'J', NUL, OPF_LINES | OPF_CHANGE}, // DO_JOIN
145 {'g', 'J', OPF_LINES | OPF_CHANGE}, // DO_JOIN_NS
146 {'g', '?', OPF_CHANGE}, // OP_ROT13
147 {'r', NUL, OPF_CHANGE}, // OP_REPLACE
148 {'I', NUL, OPF_CHANGE}, // OP_INSERT
149 {'A', NUL, OPF_CHANGE}, // OP_APPEND
150 {'z', 'f', OPF_LINES}, // OP_FOLD
151 {'z', 'o', OPF_LINES}, // OP_FOLDOPEN
152 {'z', 'O', OPF_LINES}, // OP_FOLDOPENREC
153 {'z', 'c', OPF_LINES}, // OP_FOLDCLOSE
154 {'z', 'C', OPF_LINES}, // OP_FOLDCLOSEREC
155 {'z', 'd', OPF_LINES}, // OP_FOLDDEL
156 {'z', 'D', OPF_LINES}, // OP_FOLDDELREC
157 {'g', 'w', OPF_LINES | OPF_CHANGE}, // OP_FORMAT2
158 {'g', '@', OPF_CHANGE}, // OP_FUNCTION
159 {Ctrl_A, NUL, OPF_CHANGE}, // OP_NR_ADD
160 {Ctrl_X, NUL, OPF_CHANGE}, // OP_NR_SUB
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161};
162
163/*
164 * Translate a command name into an operator type.
165 * Must only be called with a valid operator name!
166 */
167 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100168get_op_type(int char1, int char2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169{
170 int i;
171
172 if (char1 == 'r') /* ignore second character */
173 return OP_REPLACE;
174 if (char1 == '~') /* when tilde is an operator */
175 return OP_TILDE;
Bram Moolenaard79e5502016-01-10 22:13:02 +0100176 if (char1 == 'g' && char2 == Ctrl_A) /* add */
177 return OP_NR_ADD;
178 if (char1 == 'g' && char2 == Ctrl_X) /* subtract */
179 return OP_NR_SUB;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180 for (i = 0; ; ++i)
Bram Moolenaar2efb3232017-12-19 12:27:23 +0100181 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 if (opchars[i][0] == char1 && opchars[i][1] == char2)
183 break;
Bram Moolenaar2efb3232017-12-19 12:27:23 +0100184 if (i == (int)(sizeof(opchars) / sizeof(char [3]) - 1))
185 {
186 internal_error("get_op_type()");
187 break;
188 }
189 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190 return i;
191}
192
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193/*
194 * Return TRUE if operator "op" always works on whole lines.
195 */
196 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100197op_on_lines(int op)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198{
Bram Moolenaarf2732452018-06-03 14:47:35 +0200199 return opchars[op][2] & OPF_LINES;
200}
201
Bram Moolenaar113e1072019-01-20 15:30:40 +0100202#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaarf2732452018-06-03 14:47:35 +0200203/*
204 * Return TRUE if operator "op" changes text.
205 */
206 int
207op_is_change(int op)
208{
209 return opchars[op][2] & OPF_CHANGE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100211#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212
213/*
214 * Get first operator command character.
215 * Returns 'g' or 'z' if there is another command character.
216 */
217 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100218get_op_char(int optype)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219{
220 return opchars[optype][0];
221}
222
223/*
224 * Get second operator command character.
225 */
226 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100227get_extra_op_char(int optype)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228{
229 return opchars[optype][1];
230}
231
232/*
233 * op_shift - handle a shift operation
234 */
235 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100236op_shift(oparg_T *oap, int curs_top, int amount)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237{
238 long i;
239 int first_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240 int block_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241
242 if (u_save((linenr_T)(oap->start.lnum - 1),
243 (linenr_T)(oap->end.lnum + 1)) == FAIL)
244 return;
245
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246 if (oap->block_mode)
247 block_col = curwin->w_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248
249 for (i = oap->line_count; --i >= 0; )
250 {
251 first_char = *ml_get_curline();
252 if (first_char == NUL) /* empty line */
253 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254 else if (oap->block_mode)
255 shift_block(oap, amount);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256 else
257 /* Move the line right if it doesn't start with '#', 'smartindent'
258 * isn't set or 'cindent' isn't set or '#' isn't in 'cino'. */
259#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
260 if (first_char != '#' || !preprocs_left())
261#endif
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000262 shift_line(oap->op_type == OP_LSHIFT, p_sr, amount, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263 ++curwin->w_cursor.lnum;
264 }
265
266 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267 if (oap->block_mode)
268 {
269 curwin->w_cursor.lnum = oap->start.lnum;
270 curwin->w_cursor.col = block_col;
271 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +0100272 else if (curs_top) /* put cursor on first line, for ">>" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 {
274 curwin->w_cursor.lnum = oap->start.lnum;
275 beginline(BL_SOL | BL_FIX); /* shift_line() may have set cursor.col */
276 }
277 else
278 --curwin->w_cursor.lnum; /* put cursor on last line, for ":>" */
279
Bram Moolenaar54b2bfa2017-01-02 14:57:08 +0100280#ifdef FEAT_FOLDING
281 /* The cursor line is not in a closed fold */
282 foldOpenCursor();
283#endif
284
285
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286 if (oap->line_count > p_report)
287 {
Bram Moolenaarda6e8912018-08-21 15:12:14 +0200288 char *op;
289 char *msg_line_single;
290 char *msg_line_plural;
291
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292 if (oap->op_type == OP_RSHIFT)
Bram Moolenaarda6e8912018-08-21 15:12:14 +0200293 op = ">";
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 else
Bram Moolenaarda6e8912018-08-21 15:12:14 +0200295 op = "<";
296 msg_line_single = NGETTEXT("%ld line %sed %d time",
297 "%ld line %sed %d times", amount);
298 msg_line_plural = NGETTEXT("%ld lines %sed %d time",
299 "%ld lines %sed %d times", amount);
300 vim_snprintf((char *)IObuff, IOSIZE,
301 NGETTEXT(msg_line_single, msg_line_plural, oap->line_count),
302 oap->line_count, op, amount);
Bram Moolenaar32526b32019-01-19 17:43:09 +0100303 msg((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304 }
305
306 /*
307 * Set "'[" and "']" marks.
308 */
309 curbuf->b_op_start = oap->start;
310 curbuf->b_op_end.lnum = oap->end.lnum;
311 curbuf->b_op_end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
312 if (curbuf->b_op_end.col > 0)
313 --curbuf->b_op_end.col;
314}
315
316/*
Bram Moolenaar870ba5f2019-01-11 14:37:20 +0100317 * Shift the current line one shiftwidth left (if left != 0) or right
318 * leaves cursor on first blank in the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319 */
320 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100321shift_line(
322 int left,
323 int round,
324 int amount,
325 int call_changed_bytes) /* call changed_bytes() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326{
327 int count;
328 int i, j;
Bram Moolenaarf9514162018-11-22 03:08:29 +0100329 int p_sw = (int)get_sw_value_indent(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330
331 count = get_indent(); /* get current indent */
332
333 if (round) /* round off indent */
334 {
335 i = count / p_sw; /* number of p_sw rounded down */
336 j = count % p_sw; /* extra spaces */
337 if (j && left) /* first remove extra spaces */
338 --amount;
339 if (left)
340 {
341 i -= amount;
342 if (i < 0)
343 i = 0;
344 }
345 else
346 i += amount;
347 count = i * p_sw;
348 }
349 else /* original vi indent */
350 {
351 if (left)
352 {
353 count -= p_sw * amount;
354 if (count < 0)
355 count = 0;
356 }
357 else
358 count += p_sw * amount;
359 }
360
361 /* Set new indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 if (State & VREPLACE_FLAG)
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000363 change_indent(INDENT_SET, count, FALSE, NUL, call_changed_bytes);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 else
Bram Moolenaar21b17e72008-01-16 19:03:13 +0000365 (void)set_indent(count, call_changed_bytes ? SIN_CHANGED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366}
367
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368/*
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 Moolenaarf9514162018-11-22 03:08:29 +0100380 int p_sw = (int)get_sw_value_indent(curbuf);
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200381#ifdef FEAT_VARTABS
382 int *p_vts = curbuf->b_p_vts_array;
383#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384 int p_ts = (int)curbuf->b_p_ts;
385 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 int incr;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000387 colnr_T ws_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 int i = 0, j = 0;
389 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390#ifdef FEAT_RIGHTLEFT
391 int old_p_ri = p_ri;
392
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200393 p_ri = 0; /* don't want revins in indent */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394#endif
395
396 State = INSERT; /* don't want REPLACE for State */
397 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
398 if (bd.is_short)
399 return;
400
401 /* total is number of screen columns to be inserted/removed */
Bram Moolenaarbae5a172017-08-06 15:42:06 +0200402 total = (int)((unsigned)amount * (unsigned)p_sw);
403 if ((total / p_sw) != amount)
404 return; /* multiplication overflow */
405
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 oldp = ml_get_curline();
407
408 if (!left)
409 {
410 /*
411 * 1. Get start vcol
412 * 2. Total ws vcols
413 * 3. Divvy into TABs & spp
414 * 4. Construct new string
415 */
416 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
417 ws_vcol = bd.start_vcol - bd.pre_whitesp;
418 if (bd.startspaces)
419 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420 if (has_mbyte)
Bram Moolenaar20b4f462016-03-05 17:25:39 +0100421 {
422 if ((*mb_ptr2len)(bd.textstart) == 1)
423 ++bd.textstart;
424 else
425 {
426 ws_vcol = 0;
427 bd.startspaces = 0;
428 }
429 }
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000430 else
Bram Moolenaarbe1138b2009-11-11 16:22:28 +0000431 ++bd.textstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432 }
Bram Moolenaar1c465442017-03-12 20:10:05 +0100433 for ( ; VIM_ISWHITE(*bd.textstart); )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434 {
Bram Moolenaar597a4222014-06-25 14:39:50 +0200435 /* TODO: is passing bd.textstart for start of the line OK? */
436 incr = lbr_chartabsize_adv(bd.textstart, &bd.textstart,
437 (colnr_T)(bd.start_vcol));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 total += incr;
439 bd.start_vcol += incr;
440 }
441 /* OK, now total=all the VWS reqd, and textstart points at the 1st
442 * non-ws char in the block. */
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200443#ifdef FEAT_VARTABS
444 if (!curbuf->b_p_et)
445 tabstop_fromto(ws_vcol, ws_vcol + total, p_ts, p_vts, &i, &j);
446 else
447 j = total;
448#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 if (!curbuf->b_p_et)
450 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
451 if (i)
452 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
453 else
454 j = total;
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200455#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456 /* if we're splitting a TAB, allow for it */
457 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
458 len = (int)STRLEN(bd.textstart) + 1;
Bram Moolenaar964b3742019-05-24 18:54:09 +0200459 newp = alloc(bd.textcol + i + j + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 if (newp == NULL)
461 return;
462 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
463 mch_memmove(newp, oldp, (size_t)bd.textcol);
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200464 vim_memset(newp + bd.textcol, TAB, (size_t)i);
465 vim_memset(newp + bd.textcol + i, ' ', (size_t)j);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466 /* the end */
467 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
468 }
469 else /* left */
470 {
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000471 colnr_T destination_col; /* column to which text in block will
472 be shifted */
473 char_u *verbatim_copy_end; /* end of the part of the line which is
474 copied verbatim */
475 colnr_T verbatim_copy_width;/* the (displayed) width of this part
476 of line */
477 unsigned fill; /* nr of spaces that replace a TAB */
478 unsigned new_line_len; /* the length of the line after the
479 block shift */
480 size_t block_space_width;
481 size_t shift_amount;
482 char_u *non_white = bd.textstart;
483 colnr_T non_white_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000485 /*
486 * Firstly, let's find the first non-whitespace character that is
487 * displayed after the block's start column and the character's column
488 * number. Also, let's calculate the width of all the whitespace
489 * characters that are displayed in the block and precede the searched
490 * non-whitespace character.
491 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000493 /* If "bd.startspaces" is set, "bd.textstart" points to the character,
494 * the part of which is displayed at the block's beginning. Let's start
495 * searching from the next character. */
496 if (bd.startspaces)
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100497 MB_PTR_ADV(non_white);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000498
499 /* The character's column is in "bd.start_vcol". */
500 non_white_col = bd.start_vcol;
501
Bram Moolenaar1c465442017-03-12 20:10:05 +0100502 while (VIM_ISWHITE(*non_white))
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000503 {
Bram Moolenaar597a4222014-06-25 14:39:50 +0200504 incr = lbr_chartabsize_adv(bd.textstart, &non_white, non_white_col);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000505 non_white_col += incr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 }
507
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000508 block_space_width = non_white_col - oap->start_vcol;
509 /* We will shift by "total" or "block_space_width", whichever is less.
510 */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000511 shift_amount = (block_space_width < (size_t)total
512 ? block_space_width : (size_t)total);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000513
514 /* The column to which we will shift the text. */
Bram Moolenaar92a990b2009-04-22 15:45:05 +0000515 destination_col = (colnr_T)(non_white_col - shift_amount);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000516
517 /* Now let's find out how much of the beginning of the line we can
518 * reuse without modification. */
519 verbatim_copy_end = bd.textstart;
520 verbatim_copy_width = bd.start_vcol;
521
522 /* If "bd.startspaces" is set, "bd.textstart" points to the character
523 * preceding the block. We have to subtract its width to obtain its
524 * column number. */
525 if (bd.startspaces)
526 verbatim_copy_width -= bd.start_char_vcols;
527 while (verbatim_copy_width < destination_col)
528 {
Bram Moolenaar597a4222014-06-25 14:39:50 +0200529 char_u *line = verbatim_copy_end;
530
531 /* TODO: is passing verbatim_copy_end for start of the line OK? */
532 incr = lbr_chartabsize(line, verbatim_copy_end,
533 verbatim_copy_width);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000534 if (verbatim_copy_width + incr > destination_col)
535 break;
536 verbatim_copy_width += incr;
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100537 MB_PTR_ADV(verbatim_copy_end);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000538 }
539
540 /* If "destination_col" is different from the width of the initial
541 * part of the line that will be copied, it means we encountered a tab
542 * character, which we will have to partly replace with spaces. */
543 fill = destination_col - verbatim_copy_width;
544
545 /* The replacement line will consist of:
546 * - the beginning of the original line up to "verbatim_copy_end",
547 * - "fill" number of spaces,
548 * - the rest of the line, pointed to by non_white. */
549 new_line_len = (unsigned)(verbatim_copy_end - oldp)
550 + fill
551 + (unsigned)STRLEN(non_white) + 1;
552
Bram Moolenaar964b3742019-05-24 18:54:09 +0200553 newp = alloc(new_line_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 if (newp == NULL)
555 return;
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000556 mch_memmove(newp, oldp, (size_t)(verbatim_copy_end - oldp));
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200557 vim_memset(newp + (verbatim_copy_end - oldp), ' ', (size_t)fill);
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +0000558 STRMOVE(newp + (verbatim_copy_end - oldp) + fill, non_white);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 }
560 /* replace the line */
561 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
562 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
563 State = oldstate;
564 curwin->w_cursor.col = oldcol;
565#ifdef FEAT_RIGHTLEFT
566 p_ri = old_p_ri;
567#endif
568}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570/*
571 * Insert string "s" (b_insert ? before : after) block :AKelly
572 * Caller must prepare for undo.
573 */
574 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100575block_insert(
576 oparg_T *oap,
577 char_u *s,
578 int b_insert,
579 struct block_def *bdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580{
581 int p_ts;
582 int count = 0; /* extra spaces to replace a cut TAB */
583 int spaces = 0; /* non-zero if cutting a TAB */
584 colnr_T offset; /* pointer along new line */
585 unsigned s_len; /* STRLEN(s) */
586 char_u *newp, *oldp; /* new, old lines */
587 linenr_T lnum; /* loop var */
588 int oldstate = State;
589
590 State = INSERT; /* don't want REPLACE for State */
591 s_len = (unsigned)STRLEN(s);
592
593 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
594 {
595 block_prep(oap, bdp, lnum, TRUE);
596 if (bdp->is_short && b_insert)
597 continue; /* OP_INSERT, line ends before block start */
598
599 oldp = ml_get(lnum);
600
601 if (b_insert)
602 {
603 p_ts = bdp->start_char_vcols;
604 spaces = bdp->startspaces;
605 if (spaces != 0)
606 count = p_ts - 1; /* we're cutting a TAB */
607 offset = bdp->textcol;
608 }
609 else /* append */
610 {
611 p_ts = bdp->end_char_vcols;
612 if (!bdp->is_short) /* spaces = padding after block */
613 {
614 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
615 if (spaces != 0)
616 count = p_ts - 1; /* we're cutting a TAB */
617 offset = bdp->textcol + bdp->textlen - (spaces != 0);
618 }
619 else /* spaces = padding to block edge */
620 {
621 /* if $ used, just append to EOL (ie spaces==0) */
622 if (!bdp->is_MAX)
623 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
624 count = spaces;
625 offset = bdp->textcol + bdp->textlen;
626 }
627 }
628
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200629 if (has_mbyte && spaces > 0)
630 {
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100631 int off;
632
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200633 /* Avoid starting halfway a multi-byte character. */
634 if (b_insert)
635 {
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100636 off = (*mb_head_off)(oldp, oldp + offset + spaces);
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200637 }
638 else
639 {
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100640 off = (*mb_off_next)(oldp, oldp + offset);
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200641 offset += off;
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200642 }
Bram Moolenaarfc3f23b2014-12-17 18:35:42 +0100643 spaces -= off;
644 count -= off;
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200645 }
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +0200646
Bram Moolenaar964b3742019-05-24 18:54:09 +0200647 newp = alloc(STRLEN(oldp) + s_len + count + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648 if (newp == NULL)
649 continue;
650
651 /* copy up to shifted part */
652 mch_memmove(newp, oldp, (size_t)(offset));
653 oldp += offset;
654
655 /* insert pre-padding */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200656 vim_memset(newp + offset, ' ', (size_t)spaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657
658 /* copy the new text */
659 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
660 offset += s_len;
661
662 if (spaces && !bdp->is_short)
663 {
664 /* insert post-padding */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +0200665 vim_memset(newp + offset + spaces, ' ', (size_t)(p_ts - spaces));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 /* We're splitting a TAB, don't copy it. */
667 oldp++;
668 /* We allowed for that TAB, remember this now */
669 count++;
670 }
671
672 if (spaces > 0)
673 offset += count;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000674 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675
676 ml_replace(lnum, newp, FALSE);
677
678 if (lnum == oap->end.lnum)
679 {
680 /* Set "']" mark to the end of the block instead of the end of
681 * the insert in the first line. */
682 curbuf->b_op_end.lnum = oap->end.lnum;
683 curbuf->b_op_end.col = offset;
684 }
685 } /* for all lnum */
686
687 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
688
689 State = oldstate;
690}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691
692#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
693/*
694 * op_reindent - handle reindenting a block of lines.
695 */
696 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100697op_reindent(oparg_T *oap, int (*how)(void))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698{
699 long i;
700 char_u *l;
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200701 int amount;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 linenr_T first_changed = 0;
703 linenr_T last_changed = 0;
704 linenr_T start_lnum = curwin->w_cursor.lnum;
705
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000706 /* Don't even try when 'modifiable' is off. */
707 if (!curbuf->b_p_ma)
708 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100709 emsg(_(e_modifiable));
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000710 return;
711 }
712
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 for (i = oap->line_count; --i >= 0 && !got_int; )
714 {
715 /* it's a slow thing to do, so give feedback so there's no worry that
716 * the computer's just hung. */
717
718 if (i > 1
719 && (i % 50 == 0 || i == oap->line_count - 1)
720 && oap->line_count > p_report)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100721 smsg(_("%ld lines to indent... "), i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722
723 /*
724 * Be vi-compatible: For lisp indenting the first line is not
725 * indented, unless there is only one line.
726 */
727#ifdef FEAT_LISP
728 if (i != oap->line_count - 1 || oap->line_count == 1
729 || how != get_lisp_indent)
730#endif
731 {
732 l = skipwhite(ml_get_curline());
733 if (*l == NUL) /* empty or blank line */
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200734 amount = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 else
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200736 amount = how(); /* get the indent for this line */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737
Bram Moolenaarf7bb86d2015-07-28 21:17:36 +0200738 if (amount >= 0 && set_indent(amount, SIN_UNDO))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 {
740 /* did change the indent, call changed_lines() later */
741 if (first_changed == 0)
742 first_changed = curwin->w_cursor.lnum;
743 last_changed = curwin->w_cursor.lnum;
744 }
745 }
746 ++curwin->w_cursor.lnum;
Bram Moolenaarddfc9782008-02-25 20:55:22 +0000747 curwin->w_cursor.col = 0; /* make sure it's valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 }
749
750 /* put cursor on first non-blank of indented line */
751 curwin->w_cursor.lnum = start_lnum;
752 beginline(BL_SOL | BL_FIX);
753
754 /* Mark changed lines so that they will be redrawn. When Visual
755 * highlighting was present, need to continue until the last line. When
756 * there is no change still need to remove the Visual highlighting. */
757 if (last_changed != 0)
758 changed_lines(first_changed, 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 oap->is_VIsual ? start_lnum + oap->line_count :
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 last_changed + 1, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 else if (oap->is_VIsual)
762 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763
764 if (oap->line_count > p_report)
765 {
766 i = oap->line_count - (i + 1);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100767 smsg(NGETTEXT("%ld line indented ",
Bram Moolenaarda6e8912018-08-21 15:12:14 +0200768 "%ld lines indented ", i), i);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 }
770 /* set '[ and '] marks */
771 curbuf->b_op_start = oap->start;
772 curbuf->b_op_end = oap->end;
773}
774#endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
775
776#if defined(FEAT_EVAL) || defined(PROTO)
777/*
778 * Keep the last expression line here, for repeating.
779 */
780static char_u *expr_line = NULL;
781
782/*
783 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
784 * Returns '=' when OK, NUL otherwise.
785 */
786 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100787get_expr_register(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788{
789 char_u *new_line;
790
791 new_line = getcmdline('=', 0L, 0);
792 if (new_line == NULL)
793 return NUL;
794 if (*new_line == NUL) /* use previous line */
795 vim_free(new_line);
796 else
797 set_expr_line(new_line);
798 return '=';
799}
800
801/*
802 * Set the expression for the '=' register.
803 * Argument must be an allocated string.
804 */
805 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100806set_expr_line(char_u *new_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807{
808 vim_free(expr_line);
809 expr_line = new_line;
810}
811
812/*
813 * Get the result of the '=' register expression.
814 * Returns a pointer to allocated memory, or NULL for failure.
815 */
816 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100817get_expr_line(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818{
819 char_u *expr_copy;
820 char_u *rv;
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000821 static int nested = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822
823 if (expr_line == NULL)
824 return NULL;
825
826 /* Make a copy of the expression, because evaluating it may cause it to be
827 * changed. */
828 expr_copy = vim_strsave(expr_line);
829 if (expr_copy == NULL)
830 return NULL;
831
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000832 /* When we are invoked recursively limit the evaluation to 10 levels.
833 * Then return the string as-is. */
834 if (nested >= 10)
835 return expr_copy;
836
837 ++nested;
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000838 rv = eval_to_string(expr_copy, NULL, TRUE);
Bram Moolenaar21bffa72006-10-06 21:33:16 +0000839 --nested;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 vim_free(expr_copy);
841 return rv;
842}
Bram Moolenaarde934d72005-05-22 22:09:40 +0000843
844/*
845 * Get the '=' register expression itself, without evaluating it.
846 */
847 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100848get_expr_line_src(void)
Bram Moolenaarde934d72005-05-22 22:09:40 +0000849{
850 if (expr_line == NULL)
851 return NULL;
852 return vim_strsave(expr_line);
853}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854#endif /* FEAT_EVAL */
855
856/*
857 * Check if 'regname' is a valid name of a yank register.
858 * Note: There is no check for 0 (default register), caller should do this
859 */
860 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100861valid_yank_reg(
862 int regname,
863 int writing) /* if TRUE check for writable registers */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864{
865 if ( (regname > 0 && ASCII_ISALNUM(regname))
866 || (!writing && vim_strchr((char_u *)
867#ifdef FEAT_EVAL
Bram Moolenaar3b3a9492015-01-27 18:44:16 +0100868 "/.%:="
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869#else
Bram Moolenaar3b3a9492015-01-27 18:44:16 +0100870 "/.%:"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871#endif
872 , regname) != NULL)
Bram Moolenaar3b3a9492015-01-27 18:44:16 +0100873 || regname == '#'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 || regname == '"'
875 || regname == '-'
876 || regname == '_'
877#ifdef FEAT_CLIPBOARD
878 || regname == '*'
879 || regname == '+'
880#endif
881#ifdef FEAT_DND
882 || (!writing && regname == '~')
883#endif
884 )
885 return TRUE;
886 return FALSE;
887}
888
889/*
890 * Set y_current and y_append, according to the value of "regname".
891 * Cannot handle the '_' register.
Bram Moolenaar677ee682005-01-27 14:41:15 +0000892 * Must only be called with a valid register name!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 *
894 * If regname is 0 and writing, use register 0
895 * If regname is 0 and reading, use previous register
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100896 *
897 * Return TRUE when the register should be inserted literally (selection or
898 * clipboard).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 */
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100900 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100901get_yank_register(int regname, int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902{
903 int i;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100904 int ret = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905
906 y_append = FALSE;
907 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
908 {
909 y_current = y_previous;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100910 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 }
912 i = regname;
913 if (VIM_ISDIGIT(i))
914 i -= '0';
915 else if (ASCII_ISLOWER(i))
916 i = CharOrdLow(i) + 10;
917 else if (ASCII_ISUPPER(i))
918 {
919 i = CharOrdUp(i) + 10;
920 y_append = TRUE;
921 }
922 else if (regname == '-')
923 i = DELETION_REGISTER;
924#ifdef FEAT_CLIPBOARD
925 /* When selection is not available, use register 0 instead of '*' */
926 else if (clip_star.available && regname == '*')
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100927 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928 i = STAR_REGISTER;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100929 ret = TRUE;
930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 /* When clipboard is not available, use register 0 instead of '+' */
932 else if (clip_plus.available && regname == '+')
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100933 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 i = PLUS_REGISTER;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100935 ret = TRUE;
936 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937#endif
938#ifdef FEAT_DND
939 else if (!writing && regname == '~')
940 i = TILDE_REGISTER;
941#endif
942 else /* not 0-9, a-z, A-Z or '-': use register 0 */
943 i = 0;
944 y_current = &(y_regs[i]);
945 if (writing) /* remember the register we write into for do_put() */
946 y_previous = y_current;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +0100947 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948}
949
Bram Moolenaar8299df92004-07-10 09:47:34 +0000950#if defined(FEAT_CLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951/*
952 * When "regname" is a clipboard register, obtain the selection. If it's not
953 * available return zero, otherwise return "regname".
954 */
Bram Moolenaar8299df92004-07-10 09:47:34 +0000955 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100956may_get_selection(int regname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957{
958 if (regname == '*')
959 {
960 if (!clip_star.available)
961 regname = 0;
962 else
963 clip_get_selection(&clip_star);
964 }
965 else if (regname == '+')
966 {
967 if (!clip_plus.available)
968 regname = 0;
969 else
970 clip_get_selection(&clip_plus);
971 }
972 return regname;
973}
974#endif
975
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976/*
977 * Obtain the contents of a "normal" register. The register is made empty.
978 * The returned pointer has allocated memory, use put_register() later.
979 */
980 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100981get_register(
982 int name,
983 int copy) /* make a copy, if FALSE make register empty. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +0200985 yankreg_T *reg;
986 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987
988#ifdef FEAT_CLIPBOARD
989 /* When Visual area changed, may have to update selection. Obtain the
990 * selection too. */
Bram Moolenaarcdfd3e42007-11-08 09:35:50 +0000991 if (name == '*' && clip_star.available)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 {
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200993 if (clip_isautosel_star())
994 clip_update_selection(&clip_star);
995 may_get_selection(name);
996 }
997 if (name == '+' && clip_plus.available)
998 {
999 if (clip_isautosel_plus())
1000 clip_update_selection(&clip_plus);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 may_get_selection(name);
1002 }
1003#endif
1004
1005 get_yank_register(name, 0);
Bram Moolenaar964b3742019-05-24 18:54:09 +02001006 reg = (yankreg_T *)alloc(sizeof(yankreg_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 if (reg != NULL)
1008 {
1009 *reg = *y_current;
1010 if (copy)
1011 {
1012 /* If we run out of memory some or all of the lines are empty. */
1013 if (reg->y_size == 0)
1014 reg->y_array = NULL;
1015 else
Bram Moolenaar964b3742019-05-24 18:54:09 +02001016 reg->y_array = (char_u **)alloc(sizeof(char_u *) * reg->y_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017 if (reg->y_array != NULL)
1018 {
1019 for (i = 0; i < reg->y_size; ++i)
1020 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
1021 }
1022 }
1023 else
1024 y_current->y_array = NULL;
1025 }
1026 return (void *)reg;
1027}
1028
1029/*
Bram Moolenaar0a307462007-12-01 20:13:05 +00001030 * Put "reg" into register "name". Free any previous contents and "reg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 */
1032 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001033put_register(int name, void *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034{
1035 get_yank_register(name, 0);
1036 free_yank_all();
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001037 *y_current = *(yankreg_T *)reg;
Bram Moolenaar0a307462007-12-01 20:13:05 +00001038 vim_free(reg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001040#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041 /* Send text written to clipboard register to the clipboard. */
1042 may_set_selection();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001043#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001045
Bram Moolenaar113e1072019-01-20 15:30:40 +01001046#if (defined(FEAT_CLIPBOARD) && defined(FEAT_X11) && defined(USE_SYSTEM)) \
1047 || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001048 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001049free_register(void *reg)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001050{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001051 yankreg_T tmp;
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001052
1053 tmp = *y_current;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001054 *y_current = *(yankreg_T *)reg;
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001055 free_yank_all();
1056 vim_free(reg);
1057 *y_current = tmp;
1058}
Bram Moolenaar113e1072019-01-20 15:30:40 +01001059#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060
1061#if defined(FEAT_MOUSE) || defined(PROTO)
1062/*
1063 * return TRUE if the current yank register has type MLINE
1064 */
1065 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001066yank_register_mline(int regname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067{
1068 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1069 return FALSE;
1070 if (regname == '_') /* black hole is always empty */
1071 return FALSE;
1072 get_yank_register(regname, FALSE);
1073 return (y_current->y_type == MLINE);
1074}
1075#endif
1076
1077/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001078 * Start or stop recording into a yank register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 *
Bram Moolenaard55de222007-05-06 13:38:48 +00001080 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 */
1082 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001083do_record(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084{
Bram Moolenaard55de222007-05-06 13:38:48 +00001085 char_u *p;
1086 static int regname;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001087 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaard55de222007-05-06 13:38:48 +00001088 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001090 if (reg_recording == 0) /* start recording */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 {
Bram Moolenaar8c87a2b2018-04-10 13:15:47 +02001092 /* registers 0-9, a-z and " are allowed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1094 retval = FAIL;
1095 else
1096 {
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001097 reg_recording = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 showmode();
1099 regname = c;
1100 retval = OK;
1101 }
1102 }
1103 else /* stop recording */
1104 {
1105 /*
Bram Moolenaard55de222007-05-06 13:38:48 +00001106 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1107 * needs to be removed again to put it in a register. exec_reg then
1108 * adds the escaping back later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 */
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001110 reg_recording = 0;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001111 msg("");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112 p = get_recorded();
1113 if (p == NULL)
1114 retval = FAIL;
1115 else
1116 {
Bram Moolenaar81b85872007-03-04 20:22:01 +00001117 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1118 vim_unescape_csi(p);
1119
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 /*
1121 * We don't want to change the default register here, so save and
1122 * restore the current register name.
1123 */
1124 old_y_previous = y_previous;
1125 old_y_current = y_current;
1126
1127 retval = stuff_yank(regname, p);
1128
1129 y_previous = old_y_previous;
1130 y_current = old_y_current;
1131 }
1132 }
1133 return retval;
1134}
1135
1136/*
1137 * Stuff string "p" into yank register "regname" as a single line (append if
1138 * uppercase). "p" must have been alloced.
1139 *
1140 * return FAIL for failure, OK otherwise
1141 */
1142 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001143stuff_yank(int regname, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144{
1145 char_u *lp;
1146 char_u **pp;
1147
1148 /* check for read-only register */
1149 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1150 {
1151 vim_free(p);
1152 return FAIL;
1153 }
1154 if (regname == '_') /* black hole: don't do anything */
1155 {
1156 vim_free(p);
1157 return OK;
1158 }
1159 get_yank_register(regname, TRUE);
1160 if (y_append && y_current->y_array != NULL)
1161 {
1162 pp = &(y_current->y_array[y_current->y_size - 1]);
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02001163 lp = alloc(STRLEN(*pp) + STRLEN(p) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 if (lp == NULL)
1165 {
1166 vim_free(p);
1167 return FAIL;
1168 }
1169 STRCPY(lp, *pp);
1170 STRCAT(lp, p);
1171 vim_free(p);
1172 vim_free(*pp);
1173 *pp = lp;
1174 }
1175 else
1176 {
1177 free_yank_all();
1178 if ((y_current->y_array =
Bram Moolenaar964b3742019-05-24 18:54:09 +02001179 (char_u **)alloc(sizeof(char_u *))) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 {
1181 vim_free(p);
1182 return FAIL;
1183 }
1184 y_current->y_array[0] = p;
1185 y_current->y_size = 1;
1186 y_current->y_type = MCHAR; /* used to be MLINE, why? */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001187#ifdef FEAT_VIMINFO
1188 y_current->y_time_set = vim_time();
1189#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 }
1191 return OK;
1192}
1193
Bram Moolenaar42b94362009-05-26 16:12:37 +00001194static int execreg_lastc = NUL;
1195
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196/*
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001197 * Execute a yank register: copy it into the stuff buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 *
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001199 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 */
1201 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001202do_execreg(
1203 int regname,
1204 int colon, /* insert ':' before each line */
1205 int addcr, /* always add '\n' to end of line */
1206 int silent) /* set "silent" flag in typeahead buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 long i;
1209 char_u *p;
1210 int retval = OK;
1211 int remap;
1212
Bram Moolenaar80e737c2019-05-17 19:56:34 +02001213 // repeat previous one
1214 if (regname == '@')
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001215 {
Bram Moolenaar42b94362009-05-26 16:12:37 +00001216 if (execreg_lastc == NUL)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001217 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001218 emsg(_("E748: No previously used register"));
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001219 return FAIL;
1220 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001221 regname = execreg_lastc;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001222 }
Bram Moolenaar80e737c2019-05-17 19:56:34 +02001223 // check for valid regname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001225 {
1226 emsg_invreg(regname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 return FAIL;
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001228 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00001229 execreg_lastc = regname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230
1231#ifdef FEAT_CLIPBOARD
1232 regname = may_get_selection(regname);
1233#endif
1234
Bram Moolenaar80e737c2019-05-17 19:56:34 +02001235 // black hole: don't stuff anything
1236 if (regname == '_')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 return OK;
1238
1239#ifdef FEAT_CMDHIST
Bram Moolenaar80e737c2019-05-17 19:56:34 +02001240 // use last command line
1241 if (regname == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 {
1243 if (last_cmdline == NULL)
1244 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001245 emsg(_(e_nolastcmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246 return FAIL;
1247 }
Bram Moolenaarfd731b02019-03-09 11:23:58 +01001248 // don't keep the cmdline containing @:
1249 VIM_CLEAR(new_last_cmdline);
1250 // Escape all control characters with a CTRL-V
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001251 p = vim_strsave_escaped_ext(last_cmdline,
Bram Moolenaarfd731b02019-03-09 11:23:58 +01001252 (char_u *)"\001\002\003\004\005\006\007"
1253 "\010\011\012\013\014\015\016\017"
1254 "\020\021\022\023\024\025\026\027"
1255 "\030\031\032\033\034\035\036\037",
1256 Ctrl_V, FALSE);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001257 if (p != NULL)
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001258 {
1259 /* When in Visual mode "'<,'>" will be prepended to the command.
1260 * Remove it when it's already there. */
1261 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001262 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001263 else
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001264 retval = put_in_typebuf(p, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001265 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001266 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 }
1268#endif
1269#ifdef FEAT_EVAL
1270 else if (regname == '=')
1271 {
1272 p = get_expr_line();
1273 if (p == NULL)
1274 return FAIL;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001275 retval = put_in_typebuf(p, TRUE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 vim_free(p);
1277 }
1278#endif
1279 else if (regname == '.') /* use last inserted text */
1280 {
1281 p = get_last_insert_save();
1282 if (p == NULL)
1283 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001284 emsg(_(e_noinstext));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 return FAIL;
1286 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001287 retval = put_in_typebuf(p, FALSE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 vim_free(p);
1289 }
1290 else
1291 {
1292 get_yank_register(regname, FALSE);
1293 if (y_current->y_array == NULL)
1294 return FAIL;
1295
1296 /* Disallow remaping for ":@r". */
1297 remap = colon ? REMAP_NONE : REMAP_YES;
1298
1299 /*
1300 * Insert lines into typeahead buffer, from last one to first one.
1301 */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001302 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 for (i = y_current->y_size; --i >= 0; )
1304 {
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001305 char_u *escaped;
1306
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 /* insert NL between lines and after last line if type is MLINE */
1308 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1309 || addcr)
1310 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001311 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 return FAIL;
1313 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001314 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1315 if (escaped == NULL)
1316 return FAIL;
1317 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1318 vim_free(escaped);
1319 if (retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 return FAIL;
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001321 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 == FAIL)
1323 return FAIL;
1324 }
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001325 reg_executing = regname == 0 ? '"' : regname; // disable "q" command
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 }
1327 return retval;
1328}
1329
1330/*
1331 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1332 * used only after other typeahead has been processed.
1333 */
1334 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001335put_reedit_in_typebuf(int silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336{
1337 char_u buf[3];
1338
1339 if (restart_edit != NUL)
1340 {
1341 if (restart_edit == 'V')
1342 {
1343 buf[0] = 'g';
1344 buf[1] = 'R';
1345 buf[2] = NUL;
1346 }
1347 else
1348 {
1349 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1350 buf[1] = NUL;
1351 }
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001352 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 restart_edit = NUL;
1354 }
1355}
1356
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001357/*
1358 * Insert register contents "s" into the typeahead buffer, so that it will be
1359 * executed again.
1360 * When "esc" is TRUE it is to be taken literally: Escape CSI characters and
1361 * no remapping.
1362 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001364put_in_typebuf(
1365 char_u *s,
1366 int esc,
1367 int colon, /* add ':' before the line */
1368 int silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369{
1370 int retval = OK;
1371
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001372 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 if (colon)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001374 retval = ins_typebuf((char_u *)"\n", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 if (retval == OK)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001376 {
1377 char_u *p;
1378
1379 if (esc)
1380 p = vim_strsave_escape_csi(s);
1381 else
1382 p = s;
1383 if (p == NULL)
1384 retval = FAIL;
1385 else
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001386 retval = ins_typebuf(p, esc ? REMAP_NONE : REMAP_YES,
1387 0, TRUE, silent);
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001388 if (esc)
1389 vim_free(p);
1390 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 if (colon && retval == OK)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001392 retval = ins_typebuf((char_u *)":", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 return retval;
1394}
1395
1396/*
1397 * Insert a yank register: copy it into the Read buffer.
1398 * Used by CTRL-R command and middle mouse button in insert mode.
1399 *
1400 * return FAIL for failure, OK otherwise
1401 */
1402 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001403insert_reg(
1404 int regname,
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001405 int literally_arg) /* insert literally, not as if typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406{
1407 long i;
1408 int retval = OK;
1409 char_u *arg;
1410 int allocated;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001411 int literally = literally_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412
1413 /*
1414 * It is possible to get into an endless loop by having CTRL-R a in
1415 * register a and then, in insert mode, doing CTRL-R a.
1416 * If you hit CTRL-C, the loop will be broken here.
1417 */
1418 ui_breakcheck();
1419 if (got_int)
1420 return FAIL;
1421
1422 /* check for valid regname */
1423 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1424 return FAIL;
1425
1426#ifdef FEAT_CLIPBOARD
1427 regname = may_get_selection(regname);
1428#endif
1429
1430 if (regname == '.') /* insert last inserted text */
1431 retval = stuff_inserted(NUL, 1L, TRUE);
1432 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1433 {
1434 if (arg == NULL)
1435 return FAIL;
1436 stuffescaped(arg, literally);
1437 if (allocated)
1438 vim_free(arg);
1439 }
1440 else /* name or number register */
1441 {
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001442 if (get_yank_register(regname, FALSE))
1443 literally = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 if (y_current->y_array == NULL)
1445 retval = FAIL;
1446 else
1447 {
1448 for (i = 0; i < y_current->y_size; ++i)
1449 {
1450 stuffescaped(y_current->y_array[i], literally);
1451 /*
1452 * Insert a newline between lines and after last line if
1453 * y_type is MLINE.
1454 */
1455 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1456 stuffcharReadbuff('\n');
1457 }
1458 }
1459 }
1460
1461 return retval;
1462}
1463
1464/*
1465 * Stuff a string into the typeahead buffer, such that edit() will insert it
1466 * literally ("literally" TRUE) or interpret is as typed characters.
1467 */
1468 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001469stuffescaped(char_u *arg, int literally)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470{
1471 int c;
1472 char_u *start;
1473
1474 while (*arg != NUL)
1475 {
1476 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1477 * stuff K_SPECIAL to get the effect of a special key when "literally"
1478 * is TRUE. */
1479 start = arg;
1480 while ((*arg >= ' '
1481#ifndef EBCDIC
1482 && *arg < DEL /* EBCDIC: chars above space are normal */
1483#endif
1484 )
1485 || (*arg == K_SPECIAL && !literally))
1486 ++arg;
1487 if (arg > start)
1488 stuffReadbuffLen(start, (long)(arg - start));
1489
1490 /* stuff a single special character */
1491 if (*arg != NUL)
1492 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 if (has_mbyte)
Bram Moolenaar3b1c4852010-07-31 17:59:29 +02001494 c = mb_cptr2char_adv(&arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 c = *arg++;
1497 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1498 stuffcharReadbuff(Ctrl_V);
1499 stuffcharReadbuff(c);
1500 }
1501 }
1502}
1503
1504/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001505 * If "regname" is a special register, return TRUE and store a pointer to its
1506 * value in "argp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 */
Bram Moolenaar8299df92004-07-10 09:47:34 +00001508 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001509get_spec_reg(
1510 int regname,
1511 char_u **argp,
1512 int *allocated, /* return: TRUE when value was allocated */
1513 int errmsg) /* give error message when failing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514{
1515 int cnt;
1516
1517 *argp = NULL;
1518 *allocated = FALSE;
1519 switch (regname)
1520 {
1521 case '%': /* file name */
1522 if (errmsg)
1523 check_fname(); /* will give emsg if not set */
1524 *argp = curbuf->b_fname;
1525 return TRUE;
1526
1527 case '#': /* alternate file name */
1528 *argp = getaltfname(errmsg); /* may give emsg if not set */
1529 return TRUE;
1530
1531#ifdef FEAT_EVAL
1532 case '=': /* result of expression */
1533 *argp = get_expr_line();
1534 *allocated = TRUE;
1535 return TRUE;
1536#endif
1537
1538 case ':': /* last command line */
1539 if (last_cmdline == NULL && errmsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001540 emsg(_(e_nolastcmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 *argp = last_cmdline;
1542 return TRUE;
1543
1544 case '/': /* last search-pattern */
1545 if (last_search_pat() == NULL && errmsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001546 emsg(_(e_noprevre));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 *argp = last_search_pat();
1548 return TRUE;
1549
1550 case '.': /* last inserted text */
1551 *argp = get_last_insert_save();
1552 *allocated = TRUE;
1553 if (*argp == NULL && errmsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001554 emsg(_(e_noinstext));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 return TRUE;
1556
1557#ifdef FEAT_SEARCHPATH
1558 case Ctrl_F: /* Filename under cursor */
1559 case Ctrl_P: /* Path under cursor, expand via "path" */
1560 if (!errmsg)
1561 return FALSE;
1562 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001563 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 *allocated = TRUE;
1565 return TRUE;
1566#endif
1567
1568 case Ctrl_W: /* word under cursor */
1569 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1570 if (!errmsg)
1571 return FALSE;
1572 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1573 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1574 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1575 *allocated = TRUE;
1576 return TRUE;
1577
Bram Moolenaare2c8d832018-05-01 19:24:03 +02001578 case Ctrl_L: /* Line under cursor */
1579 if (!errmsg)
1580 return FALSE;
1581
1582 *argp = ml_get_buf(curwin->w_buffer,
1583 curwin->w_cursor.lnum, FALSE);
1584 return TRUE;
1585
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 case '_': /* black hole: always empty */
1587 *argp = (char_u *)"";
1588 return TRUE;
1589 }
1590
1591 return FALSE;
1592}
1593
1594/*
Bram Moolenaar8299df92004-07-10 09:47:34 +00001595 * Paste a yank register into the command line.
1596 * Only for non-special registers.
1597 * Used by CTRL-R command in command-line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 * insert_reg() can't be used here, because special characters from the
1599 * register contents will be interpreted as commands.
1600 *
1601 * return FAIL for failure, OK otherwise
1602 */
1603 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001604cmdline_paste_reg(
1605 int regname,
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001606 int literally_arg, /* Insert text literally instead of "as typed" */
Bram Moolenaar9b578142016-01-30 19:39:49 +01001607 int remcr) /* don't add CR characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608{
1609 long i;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001610 int literally = literally_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001612 if (get_yank_register(regname, FALSE))
1613 literally = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 if (y_current->y_array == NULL)
1615 return FAIL;
1616
1617 for (i = 0; i < y_current->y_size; ++i)
1618 {
1619 cmdline_paste_str(y_current->y_array[i], literally);
1620
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001621 /* Insert ^M between lines and after last line if type is MLINE.
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01001622 * Don't do this when "remcr" is TRUE. */
1623 if ((y_current->y_type == MLINE || i < y_current->y_size - 1) && !remcr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 cmdline_paste_str((char_u *)"\r", literally);
1625
1626 /* Check for CTRL-C, in case someone tries to paste a few thousand
1627 * lines and gets bored. */
1628 ui_breakcheck();
1629 if (got_int)
1630 return FAIL;
1631 }
1632 return OK;
1633}
1634
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635#if defined(FEAT_CLIPBOARD) || defined(PROTO)
1636/*
1637 * Adjust the register name pointed to with "rp" for the clipboard being
1638 * used always and the clipboard being available.
1639 */
1640 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001641adjust_clip_reg(int *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642{
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001643 /* If no reg. specified, and "unnamed" or "unnamedplus" is in 'clipboard',
1644 * use '*' or '+' reg, respectively. "unnamedplus" prevails. */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001645 if (*rp == 0 && (clip_unnamed != 0 || clip_unnamed_saved != 0))
1646 {
1647 if (clip_unnamed != 0)
1648 *rp = ((clip_unnamed & CLIP_UNNAMED_PLUS) && clip_plus.available)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001649 ? '+' : '*';
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001650 else
1651 *rp = ((clip_unnamed_saved & CLIP_UNNAMED_PLUS) && clip_plus.available)
1652 ? '+' : '*';
1653 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 if (!clip_star.available && *rp == '*')
1655 *rp = 0;
1656 if (!clip_plus.available && *rp == '+')
1657 *rp = 0;
1658}
1659#endif
1660
1661/*
Bram Moolenaara1891842017-02-04 21:34:31 +01001662 * Shift the delete registers: "9 is cleared, "8 becomes "9, etc.
1663 */
1664 void
1665shift_delete_registers()
1666{
1667 int n;
1668
1669 y_current = &y_regs[9];
1670 free_yank_all(); /* free register nine */
1671 for (n = 9; n > 1; --n)
1672 y_regs[n] = y_regs[n - 1];
Bram Moolenaar18d90b92017-06-27 15:39:14 +02001673 y_current = &y_regs[1];
1674 if (!y_append)
1675 y_previous = y_current;
Bram Moolenaara1891842017-02-04 21:34:31 +01001676 y_regs[1].y_array = NULL; /* set register one to empty */
1677}
1678
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001679#if defined(FEAT_EVAL)
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001680 static void
1681yank_do_autocmd(oparg_T *oap, yankreg_T *reg)
1682{
1683 static int recursive = FALSE;
1684 dict_T *v_event;
1685 list_T *list;
1686 int n;
1687 char_u buf[NUMBUFLEN + 2];
1688 long reglen = 0;
1689
1690 if (recursive)
1691 return;
1692
1693 v_event = get_vim_var_dict(VV_EVENT);
1694
1695 list = list_alloc();
Bram Moolenaara0221df2018-02-11 15:07:22 +01001696 if (list == NULL)
1697 return;
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001698 for (n = 0; n < reg->y_size; n++)
1699 list_append_string(list, reg->y_array[n], -1);
1700 list->lv_lock = VAR_FIXED;
1701 dict_add_list(v_event, "regcontents", list);
1702
1703 buf[0] = (char_u)oap->regname;
1704 buf[1] = NUL;
Bram Moolenaare0be1672018-07-08 16:50:37 +02001705 dict_add_string(v_event, "regname", buf);
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001706
1707 buf[0] = get_op_char(oap->op_type);
1708 buf[1] = get_extra_op_char(oap->op_type);
1709 buf[2] = NUL;
Bram Moolenaare0be1672018-07-08 16:50:37 +02001710 dict_add_string(v_event, "operator", buf);
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001711
1712 buf[0] = NUL;
1713 buf[1] = NUL;
1714 switch (get_reg_type(oap->regname, &reglen))
1715 {
1716 case MLINE: buf[0] = 'V'; break;
1717 case MCHAR: buf[0] = 'v'; break;
1718 case MBLOCK:
1719 vim_snprintf((char *)buf, sizeof(buf), "%c%ld", Ctrl_V,
1720 reglen + 1);
1721 break;
1722 }
Bram Moolenaare0be1672018-07-08 16:50:37 +02001723 dict_add_string(v_event, "regtype", buf);
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001724
1725 /* Lock the dictionary and its keys */
1726 dict_set_items_ro(v_event);
1727
1728 recursive = TRUE;
1729 textlock++;
1730 apply_autocmds(EVENT_TEXTYANKPOST, NULL, NULL, FALSE, curbuf);
1731 textlock--;
1732 recursive = FALSE;
1733
1734 /* Empty the dictionary, v:event is still valid */
1735 dict_free_contents(v_event);
1736 hash_init(&v_event->dv_hashtab);
1737}
Bram Moolenaaree219b02017-12-17 14:55:01 +01001738#endif
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001739
Bram Moolenaara1891842017-02-04 21:34:31 +01001740/*
Bram Moolenaard04b7502010-07-08 22:27:55 +02001741 * Handle a delete operation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 *
Bram Moolenaard04b7502010-07-08 22:27:55 +02001743 * Return FAIL if undo failed, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 */
1745 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001746op_delete(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747{
1748 int n;
1749 linenr_T lnum;
1750 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 char_u *newp, *oldp;
1752 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1754 int did_yank = FALSE;
1755
1756 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1757 return OK;
1758
1759 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1760 if (oap->empty)
1761 return u_save_cursor();
1762
1763 if (!curbuf->b_p_ma)
1764 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001765 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 return FAIL;
1767 }
1768
1769#ifdef FEAT_CLIPBOARD
1770 adjust_clip_reg(&oap->regname);
1771#endif
1772
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 if (has_mbyte)
1774 mb_adjust_opend(oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775
Bram Moolenaard04b7502010-07-08 22:27:55 +02001776 /*
1777 * Imitate the strange Vi behaviour: If the delete spans more than one
1778 * line and motion_type == MCHAR and the result is a blank line, make the
1779 * delete linewise. Don't do this for the change command or Visual mode.
1780 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 if ( oap->motion_type == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001783 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 && oap->line_count > 1
Bram Moolenaar64a72302012-01-10 13:46:22 +01001785 && oap->motion_force == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 && oap->op_type == OP_DELETE)
1787 {
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001788 ptr = ml_get(oap->end.lnum) + oap->end.col;
1789 if (*ptr != NUL)
1790 ptr += oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791 ptr = skipwhite(ptr);
1792 if (*ptr == NUL && inindent(0))
1793 oap->motion_type = MLINE;
1794 }
1795
Bram Moolenaard04b7502010-07-08 22:27:55 +02001796 /*
1797 * Check for trying to delete (e.g. "D") in an empty line.
1798 * Note: For the change operator it is ok.
1799 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 if ( oap->motion_type == MCHAR
1801 && oap->line_count == 1
1802 && oap->op_type == OP_DELETE
1803 && *ml_get(oap->start.lnum) == NUL)
1804 {
1805 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001806 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 * 'cpoptions' (Vi compatible).
1808 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001809 if (virtual_op)
1810 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1811 * marks as if it happened. */
1812 goto setmarks;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1814 beep_flush();
1815 return OK;
1816 }
1817
Bram Moolenaard04b7502010-07-08 22:27:55 +02001818 /*
1819 * Do a yank of whatever we're about to delete.
1820 * If a yank register was specified, put the deleted text into that
1821 * register. For the black hole register '_' don't yank anything.
1822 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 if (oap->regname != '_')
1824 {
1825 if (oap->regname != 0)
1826 {
1827 /* check for read-only register */
1828 if (!valid_yank_reg(oap->regname, TRUE))
1829 {
1830 beep_flush();
1831 return OK;
1832 }
1833 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1834 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1835 did_yank = TRUE;
1836 }
1837
1838 /*
1839 * Put deleted text into register 1 and shift number registers if the
Bram Moolenaar9d7fdd42019-03-08 09:50:52 +01001840 * delete contains a line break, or when using a specific operator (Vi
1841 * compatible)
Bram Moolenaar7c821302012-09-05 14:18:45 +02001842 * Use the register name from before adjust_clip_reg() may have
1843 * changed it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 */
Bram Moolenaar9d7fdd42019-03-08 09:50:52 +01001845 if (oap->motion_type == MLINE || oap->line_count > 1
1846 || oap->use_reg_one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 {
Bram Moolenaara1891842017-02-04 21:34:31 +01001848 shift_delete_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 if (op_yank(oap, TRUE, FALSE) == OK)
1850 did_yank = TRUE;
1851 }
1852
Bram Moolenaar84298db2012-04-20 13:46:08 +02001853 /* Yank into small delete register when no named register specified
1854 * and the delete is within one line. */
1855 if ((
1856#ifdef FEAT_CLIPBOARD
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001857 ((clip_unnamed & CLIP_UNNAMED) && oap->regname == '*') ||
1858 ((clip_unnamed & CLIP_UNNAMED_PLUS) && oap->regname == '+') ||
Bram Moolenaar84298db2012-04-20 13:46:08 +02001859#endif
1860 oap->regname == 0) && oap->motion_type != MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 && oap->line_count == 1)
1862 {
1863 oap->regname = '-';
1864 get_yank_register(oap->regname, TRUE);
1865 if (op_yank(oap, TRUE, FALSE) == OK)
1866 did_yank = TRUE;
1867 oap->regname = 0;
1868 }
1869
1870 /*
1871 * If there's too much stuff to fit in the yank register, then get a
1872 * confirmation before doing the delete. This is crude, but simple.
1873 * And it avoids doing a delete of something we can't put back if we
1874 * want.
1875 */
1876 if (!did_yank)
1877 {
1878 int msg_silent_save = msg_silent;
1879
1880 msg_silent = 0; /* must display the prompt */
1881 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1882 msg_silent = msg_silent_save;
1883 if (n != 'y')
1884 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001885 emsg(_(e_abort));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 return FAIL;
1887 }
1888 }
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001889
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001890#if defined(FEAT_EVAL)
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001891 if (did_yank && has_textyankpost())
1892 yank_do_autocmd(oap, y_current);
1893#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 }
1895
Bram Moolenaard04b7502010-07-08 22:27:55 +02001896 /*
1897 * block mode delete
1898 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 if (oap->block_mode)
1900 {
1901 if (u_save((linenr_T)(oap->start.lnum - 1),
1902 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1903 return FAIL;
1904
1905 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1906 {
1907 block_prep(oap, &bd, lnum, TRUE);
1908 if (bd.textlen == 0) /* nothing to delete */
1909 continue;
1910
1911 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1912 if (lnum == curwin->w_cursor.lnum)
1913 {
1914 curwin->w_cursor.col = bd.textcol + bd.startspaces;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 }
1917
Bram Moolenaar8055d172019-05-17 22:57:26 +02001918 // "n" == number of chars deleted
1919 // If we delete a TAB, it may be replaced by several characters.
1920 // Thus the number of characters may increase!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 n = bd.textlen - bd.startspaces - bd.endspaces;
1922 oldp = ml_get(lnum);
Bram Moolenaar964b3742019-05-24 18:54:09 +02001923 newp = alloc(STRLEN(oldp) + 1 - n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 if (newp == NULL)
1925 continue;
1926 /* copy up to deleted part */
1927 mch_memmove(newp, oldp, (size_t)bd.textcol);
1928 /* insert spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02001929 vim_memset(newp + bd.textcol, ' ',
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 (size_t)(bd.startspaces + bd.endspaces));
1931 /* copy the part after the deleted part */
1932 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001933 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 /* replace the line */
1935 ml_replace(lnum, newp, FALSE);
Bram Moolenaar8055d172019-05-17 22:57:26 +02001936
1937#ifdef FEAT_TEXT_PROP
1938 if (curbuf->b_has_textprop && n != 0)
Bram Moolenaarf3333b02019-05-19 22:53:40 +02001939 adjust_prop_columns(lnum, bd.textcol, -n, 0);
Bram Moolenaar8055d172019-05-17 22:57:26 +02001940#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 }
1942
1943 check_cursor_col();
1944 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1945 oap->end.lnum + 1, 0L);
1946 oap->line_count = 0; /* no lines deleted */
1947 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001948 else if (oap->motion_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 {
1950 if (oap->op_type == OP_CHANGE)
1951 {
1952 /* Delete the lines except the first one. Temporarily move the
1953 * cursor to the next line. Save the current line number, if the
1954 * last line is deleted it may be changed.
1955 */
1956 if (oap->line_count > 1)
1957 {
1958 lnum = curwin->w_cursor.lnum;
1959 ++curwin->w_cursor.lnum;
1960 del_lines((long)(oap->line_count - 1), TRUE);
1961 curwin->w_cursor.lnum = lnum;
1962 }
1963 if (u_save_cursor() == FAIL)
1964 return FAIL;
1965 if (curbuf->b_p_ai) /* don't delete indent */
1966 {
1967 beginline(BL_WHITE); /* cursor on first non-white */
1968 did_ai = TRUE; /* delete the indent when ESC hit */
1969 ai_col = curwin->w_cursor.col;
1970 }
1971 else
1972 beginline(0); /* cursor in column 0 */
1973 truncate_line(FALSE); /* delete the rest of the line */
1974 /* leave cursor past last char in line */
1975 if (oap->line_count > 1)
1976 u_clearline(); /* "U" command not possible after "2cc" */
1977 }
1978 else
1979 {
1980 del_lines(oap->line_count, TRUE);
1981 beginline(BL_WHITE | BL_FIX);
1982 u_clearline(); /* "U" command not possible after "dd" */
1983 }
1984 }
1985 else
1986 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 if (virtual_op)
1988 {
1989 int endcol = 0;
1990
1991 /* For virtualedit: break the tabs that are partly included. */
1992 if (gchar_pos(&oap->start) == '\t')
1993 {
1994 if (u_save_cursor() == FAIL) /* save first line for undo */
1995 return FAIL;
1996 if (oap->line_count == 1)
1997 endcol = getviscol2(oap->end.col, oap->end.coladd);
1998 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1999 oap->start = curwin->w_cursor;
2000 if (oap->line_count == 1)
2001 {
2002 coladvance(endcol);
2003 oap->end.col = curwin->w_cursor.col;
2004 oap->end.coladd = curwin->w_cursor.coladd;
2005 curwin->w_cursor = oap->start;
2006 }
2007 }
2008
2009 /* Break a tab only when it's included in the area. */
2010 if (gchar_pos(&oap->end) == '\t'
2011 && (int)oap->end.coladd < oap->inclusive)
2012 {
2013 /* save last line for undo */
2014 if (u_save((linenr_T)(oap->end.lnum - 1),
2015 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2016 return FAIL;
2017 curwin->w_cursor = oap->end;
2018 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
2019 oap->end = curwin->w_cursor;
2020 curwin->w_cursor = oap->start;
2021 }
2022 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023
2024 if (oap->line_count == 1) /* delete characters within one line */
2025 {
2026 if (u_save_cursor() == FAIL) /* save line for undo */
2027 return FAIL;
2028
2029 /* if 'cpoptions' contains '$', display '$' at end of change */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002030 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 && oap->op_type == OP_CHANGE
2032 && oap->end.lnum == curwin->w_cursor.lnum
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002033 && !oap->is_VIsual)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 display_dollar(oap->end.col - !oap->inclusive);
2035
2036 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
2037
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 if (virtual_op)
2039 {
2040 /* fix up things for virtualedit-delete:
2041 * break the tabs which are going to get in our way
2042 */
2043 char_u *curline = ml_get_curline();
2044 int len = (int)STRLEN(curline);
2045
2046 if (oap->end.coladd != 0
2047 && (int)oap->end.col >= len - 1
2048 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
2049 n++;
2050 /* Delete at least one char (e.g, when on a control char). */
2051 if (n == 0 && oap->start.coladd != oap->end.coladd)
2052 n = 1;
2053
2054 /* When deleted a char in the line, reset coladd. */
2055 if (gchar_cursor() != NUL)
2056 curwin->w_cursor.coladd = 0;
2057 }
Bram Moolenaard009e862015-06-09 20:20:03 +02002058 (void)del_bytes((long)n, !virtual_op,
2059 oap->op_type == OP_DELETE && !oap->is_VIsual);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 }
2061 else /* delete characters between lines */
2062 {
2063 pos_T curpos;
2064
2065 /* save deleted and changed lines for undo */
2066 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
2067 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
2068 return FAIL;
2069
2070 truncate_line(TRUE); /* delete from cursor to end of line */
2071
2072 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
2073 ++curwin->w_cursor.lnum;
2074 del_lines((long)(oap->line_count - 2), FALSE);
2075
Bram Moolenaard009e862015-06-09 20:20:03 +02002076 /* delete from start of line until op_end */
Bram Moolenaar44286ca2011-07-15 17:51:34 +02002077 n = (oap->end.col + 1 - !oap->inclusive);
Bram Moolenaard009e862015-06-09 20:20:03 +02002078 curwin->w_cursor.col = 0;
2079 (void)del_bytes((long)n, !virtual_op,
2080 oap->op_type == OP_DELETE && !oap->is_VIsual);
2081 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
2082 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 }
2084 }
2085
2086 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
2087
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002088setmarks:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 if (oap->block_mode)
2090 {
2091 curbuf->b_op_end.lnum = oap->end.lnum;
2092 curbuf->b_op_end.col = oap->start.col;
2093 }
2094 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 curbuf->b_op_end = oap->start;
2096 curbuf->b_op_start = oap->start;
2097
2098 return OK;
2099}
2100
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101/*
2102 * Adjust end of operating area for ending on a multi-byte character.
2103 * Used for deletion.
2104 */
2105 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002106mb_adjust_opend(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107{
2108 char_u *p;
2109
2110 if (oap->inclusive)
2111 {
2112 p = ml_get(oap->end.lnum);
2113 oap->end.col += mb_tail_off(p, p + oap->end.col);
2114 }
2115}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116
Bram Moolenaar630afe82018-06-28 19:26:28 +02002117/*
2118 * Replace the character under the cursor with "c".
2119 * This takes care of multi-byte characters.
2120 */
2121 static void
2122replace_character(int c)
2123{
2124 int n = State;
2125
2126 State = REPLACE;
2127 ins_char(c);
2128 State = n;
2129 /* Backup to the replaced character. */
2130 dec_cursor();
2131}
2132
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133/*
2134 * Replace a whole area with one character.
2135 */
2136 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002137op_replace(oparg_T *oap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138{
2139 int n, numc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 int num_chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 char_u *newp, *oldp;
2142 size_t oldlen;
2143 struct block_def bd;
Bram Moolenaard9820532013-11-04 01:41:17 +01002144 char_u *after_p = NULL;
Bram Moolenaarf12519d2018-02-06 22:52:49 +01002145 int had_ctrl_v_cr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146
2147 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2148 return OK; /* nothing to do */
2149
Bram Moolenaarf12519d2018-02-06 22:52:49 +01002150 if (c == REPLACE_CR_NCHAR)
2151 {
2152 had_ctrl_v_cr = TRUE;
2153 c = CAR;
2154 }
2155 else if (c == REPLACE_NL_NCHAR)
2156 {
2157 had_ctrl_v_cr = TRUE;
2158 c = NL;
2159 }
Bram Moolenaard9820532013-11-04 01:41:17 +01002160
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 if (has_mbyte)
2162 mb_adjust_opend(oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163
2164 if (u_save((linenr_T)(oap->start.lnum - 1),
2165 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2166 return FAIL;
2167
2168 /*
2169 * block mode replace
2170 */
2171 if (oap->block_mode)
2172 {
2173 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2174 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2175 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002176 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2178 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2179 continue; /* nothing to replace */
2180
2181 /* n == number of extra chars required
2182 * If we split a TAB, it may be replaced by several characters.
2183 * Thus the number of characters may increase!
2184 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 /* If the range starts in virtual space, count the initial
2186 * coladd offset as part of "startspaces" */
2187 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2188 {
2189 pos_T vpos;
2190
Bram Moolenaara1381de2009-11-03 15:44:21 +00002191 vpos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 getvpos(&vpos, oap->start_vcol);
2193 bd.startspaces += vpos.coladd;
2194 n = bd.startspaces;
2195 }
2196 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 /* allow for pre spaces */
2198 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2199
2200 /* allow for post spp */
2201 n += (bd.endspaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 && !bd.is_oneChar
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2204 /* Figure out how many characters to replace. */
2205 numc = oap->end_vcol - oap->start_vcol + 1;
2206 if (bd.is_short && (!virtual_op || bd.is_MAX))
2207 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2208
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 /* A double-wide character can be replaced only up to half the
2210 * times. */
2211 if ((*mb_char2cells)(c) > 1)
2212 {
2213 if ((numc & 1) && !bd.is_short)
2214 {
2215 ++bd.endspaces;
2216 ++n;
2217 }
2218 numc = numc / 2;
2219 }
2220
2221 /* Compute bytes needed, move character count to num_chars. */
2222 num_chars = numc;
2223 numc *= (*mb_char2len)(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 /* oldlen includes textlen, so don't double count */
2225 n += numc - bd.textlen;
2226
2227 oldp = ml_get_curline();
2228 oldlen = STRLEN(oldp);
Bram Moolenaar964b3742019-05-24 18:54:09 +02002229 newp = alloc(oldlen + 1 + n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 if (newp == NULL)
2231 continue;
2232 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2233 /* copy up to deleted part */
2234 mch_memmove(newp, oldp, (size_t)bd.textcol);
2235 oldp += bd.textcol + bd.textlen;
2236 /* insert pre-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002237 vim_memset(newp + bd.textcol, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
Bram Moolenaarf12519d2018-02-06 22:52:49 +01002239 /* REPLACE_CR_NCHAR/REPLACE_NL_NCHAR is used for entering CR
2240 * literally. */
Bram Moolenaard9820532013-11-04 01:41:17 +01002241 if (had_ctrl_v_cr || (c != '\r' && c != '\n'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002243 if (has_mbyte)
2244 {
2245 n = (int)STRLEN(newp);
2246 while (--num_chars >= 0)
2247 n += (*mb_char2bytes)(c, newp + n);
2248 }
2249 else
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002250 vim_memset(newp + STRLEN(newp), c, (size_t)numc);
Bram Moolenaard9820532013-11-04 01:41:17 +01002251 if (!bd.is_short)
2252 {
2253 /* insert post-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002254 vim_memset(newp + STRLEN(newp), ' ', (size_t)bd.endspaces);
Bram Moolenaard9820532013-11-04 01:41:17 +01002255 /* copy the part after the changed part */
2256 STRMOVE(newp + STRLEN(newp), oldp);
2257 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 }
2259 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002261 /* Replacing with \r or \n means splitting the line. */
Bram Moolenaar964b3742019-05-24 18:54:09 +02002262 after_p = alloc(oldlen + 1 + n - STRLEN(newp));
Bram Moolenaard9820532013-11-04 01:41:17 +01002263 if (after_p != NULL)
2264 STRMOVE(after_p, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 }
2266 /* replace the line */
2267 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
Bram Moolenaard9820532013-11-04 01:41:17 +01002268 if (after_p != NULL)
2269 {
2270 ml_append(curwin->w_cursor.lnum++, after_p, 0, FALSE);
2271 appended_lines_mark(curwin->w_cursor.lnum, 1L);
2272 oap->end.lnum++;
2273 vim_free(after_p);
2274 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 }
2276 }
2277 else
2278 {
2279 /*
2280 * MCHAR and MLINE motion replace.
2281 */
2282 if (oap->motion_type == MLINE)
2283 {
2284 oap->start.col = 0;
2285 curwin->w_cursor.col = 0;
2286 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2287 if (oap->end.col)
2288 --oap->end.col;
2289 }
2290 else if (!oap->inclusive)
2291 dec(&(oap->end));
2292
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002293 while (LTOREQ_POS(curwin->w_cursor, oap->end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 {
2295 n = gchar_cursor();
2296 if (n != NUL)
2297 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2299 {
2300 /* This is slow, but it handles replacing a single-byte
2301 * with a multi-byte and the other way around. */
Bram Moolenaardb813952013-03-07 18:50:57 +01002302 if (curwin->w_cursor.lnum == oap->end.lnum)
2303 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
Bram Moolenaar630afe82018-06-28 19:26:28 +02002304 replace_character(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 }
2306 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 if (n == TAB)
2309 {
2310 int end_vcol = 0;
2311
2312 if (curwin->w_cursor.lnum == oap->end.lnum)
2313 {
2314 /* oap->end has to be recalculated when
2315 * the tab breaks */
2316 end_vcol = getviscol2(oap->end.col,
2317 oap->end.coladd);
2318 }
2319 coladvance_force(getviscol());
2320 if (curwin->w_cursor.lnum == oap->end.lnum)
2321 getvpos(&oap->end, end_vcol);
2322 }
Bram Moolenaar630afe82018-06-28 19:26:28 +02002323 PBYTE(curwin->w_cursor, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 }
2325 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2327 {
2328 int virtcols = oap->end.coladd;
2329
2330 if (curwin->w_cursor.lnum == oap->start.lnum
2331 && oap->start.col == oap->end.col && oap->start.coladd)
2332 virtcols -= oap->start.coladd;
2333
2334 /* oap->end has been trimmed so it's effectively inclusive;
2335 * as a result an extra +1 must be counted so we don't
2336 * trample the NUL byte. */
2337 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2338 curwin->w_cursor.col -= (virtcols + 1);
2339 for (; virtcols >= 0; virtcols--)
2340 {
Bram Moolenaar630afe82018-06-28 19:26:28 +02002341 if ((*mb_char2len)(c) > 1)
2342 replace_character(c);
2343 else
Bram Moolenaar630afe82018-06-28 19:26:28 +02002344 PBYTE(curwin->w_cursor, c);
2345 if (inc(&curwin->w_cursor) == -1)
2346 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347 }
2348 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349
2350 /* Advance to next character, stop at the end of the file. */
2351 if (inc_cursor() == -1)
2352 break;
2353 }
2354 }
2355
2356 curwin->w_cursor = oap->start;
2357 check_cursor();
2358 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2359
2360 /* Set "'[" and "']" marks. */
2361 curbuf->b_op_start = oap->start;
2362 curbuf->b_op_end = oap->end;
2363
2364 return OK;
2365}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002367static int swapchars(int op_type, pos_T *pos, int length);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002368
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369/*
2370 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2371 */
2372 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002373op_tilde(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374{
2375 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 struct block_def bd;
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002377 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378
2379 if (u_save((linenr_T)(oap->start.lnum - 1),
2380 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2381 return;
2382
2383 pos = oap->start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 if (oap->block_mode) /* Visual block mode */
2385 {
2386 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2387 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002388 int one_change;
2389
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390 block_prep(oap, &bd, pos.lnum, FALSE);
2391 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002392 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2393 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002394
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002395#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002396 if (netbeans_active() && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 {
2398 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2399
Bram Moolenaar009b2592004-10-24 19:18:58 +00002400 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2401 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002403 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002405#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 }
2407 if (did_change)
2408 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2409 }
2410 else /* not block mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 {
2412 if (oap->motion_type == MLINE)
2413 {
2414 oap->start.col = 0;
2415 pos.col = 0;
2416 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2417 if (oap->end.col)
2418 --oap->end.col;
2419 }
2420 else if (!oap->inclusive)
2421 dec(&(oap->end));
2422
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002423 if (pos.lnum == oap->end.lnum)
2424 did_change = swapchars(oap->op_type, &pos,
2425 oap->end.col - pos.col + 1);
2426 else
2427 for (;;)
2428 {
2429 did_change |= swapchars(oap->op_type, &pos,
2430 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2431 (int)STRLEN(ml_get_pos(&pos)));
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002432 if (LTOREQ_POS(oap->end, pos) || inc(&pos) == -1)
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002433 break;
2434 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 if (did_change)
2436 {
2437 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2438 0L);
2439#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002440 if (netbeans_active() && did_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 {
2442 char_u *ptr;
2443 int count;
2444
2445 pos = oap->start;
2446 while (pos.lnum < oap->end.lnum)
2447 {
2448 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002449 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002450 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002452 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 pos.col = 0;
2454 pos.lnum++;
2455 }
2456 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2457 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002458 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002460 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 }
2462#endif
2463 }
2464 }
2465
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 if (!did_change && oap->is_VIsual)
2467 /* No change: need to remove the Visual selection */
2468 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469
2470 /*
2471 * Set '[ and '] marks.
2472 */
2473 curbuf->b_op_start = oap->start;
2474 curbuf->b_op_end = oap->end;
2475
2476 if (oap->line_count > p_report)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002477 smsg(NGETTEXT("%ld line changed", "%ld lines changed",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02002478 oap->line_count), oap->line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479}
2480
2481/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002482 * Invoke swapchar() on "length" bytes at position "pos".
2483 * "pos" is advanced to just after the changed characters.
2484 * "length" is rounded up to include the whole last multi-byte character.
2485 * Also works correctly when the number of bytes changes.
2486 * Returns TRUE if some character was changed.
2487 */
2488 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002489swapchars(int op_type, pos_T *pos, int length)
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002490{
2491 int todo;
2492 int did_change = 0;
2493
2494 for (todo = length; todo > 0; --todo)
2495 {
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002496 if (has_mbyte)
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002497 {
2498 int len = (*mb_ptr2len)(ml_get_pos(pos));
2499
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002500 /* we're counting bytes, not characters */
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002501 if (len > 0)
2502 todo -= len - 1;
2503 }
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002504 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002505 if (inc(pos) == -1) /* at end of file */
2506 break;
2507 }
2508 return did_change;
2509}
2510
2511/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 * If op_type == OP_UPPER: make uppercase,
2513 * if op_type == OP_LOWER: make lowercase,
2514 * if op_type == OP_ROT13: do rot13 encoding,
2515 * else swap case of character at 'pos'
2516 * returns TRUE when something actually changed.
2517 */
2518 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002519swapchar(int op_type, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520{
2521 int c;
2522 int nc;
2523
2524 c = gchar_pos(pos);
2525
2526 /* Only do rot13 encoding for ASCII characters. */
2527 if (c >= 0x80 && op_type == OP_ROT13)
2528 return FALSE;
2529
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002530 if (op_type == OP_UPPER && c == 0xdf
2531 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002532 {
2533 pos_T sp = curwin->w_cursor;
2534
2535 /* Special handling of German sharp s: change to "SS". */
2536 curwin->w_cursor = *pos;
2537 del_char(FALSE);
2538 ins_char('S');
2539 ins_char('S');
2540 curwin->w_cursor = sp;
2541 inc(pos);
2542 }
2543
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2545 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 nc = c;
2547 if (MB_ISLOWER(c))
2548 {
2549 if (op_type == OP_ROT13)
2550 nc = ROT13(c, 'a');
2551 else if (op_type != OP_LOWER)
2552 nc = MB_TOUPPER(c);
2553 }
2554 else if (MB_ISUPPER(c))
2555 {
2556 if (op_type == OP_ROT13)
2557 nc = ROT13(c, 'A');
2558 else if (op_type != OP_UPPER)
2559 nc = MB_TOLOWER(c);
2560 }
2561 if (nc != c)
2562 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2564 {
2565 pos_T sp = curwin->w_cursor;
2566
2567 curwin->w_cursor = *pos;
Bram Moolenaard1cb65e2010-08-01 14:22:48 +02002568 /* don't use del_char(), it also removes composing chars */
2569 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 ins_char(nc);
2571 curwin->w_cursor = sp;
2572 }
2573 else
Bram Moolenaar630afe82018-06-28 19:26:28 +02002574 PBYTE(*pos, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 return TRUE;
2576 }
2577 return FALSE;
2578}
2579
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580/*
2581 * op_insert - Insert and append operators for Visual mode.
2582 */
2583 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002584op_insert(oparg_T *oap, long count1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585{
2586 long ins_len, pre_textlen = 0;
2587 char_u *firstline, *ins_text;
Bram Moolenaar2254a8a2017-09-03 14:03:43 +02002588 colnr_T ind_pre = 0, ind_post;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 struct block_def bd;
2590 int i;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002591 pos_T t1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592
2593 /* edit() changes this - record it for OP_APPEND */
2594 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2595
2596 /* vis block is still marked. Get rid of it now. */
2597 curwin->w_cursor.lnum = oap->start.lnum;
2598 update_screen(INVERTED);
2599
2600 if (oap->block_mode)
2601 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 /* When 'virtualedit' is used, need to insert the extra spaces before
2603 * doing block_prep(). When only "block" is used, virtual edit is
2604 * already disabled, but still need it when calling
2605 * coladvance_force(). */
2606 if (curwin->w_cursor.coladd > 0)
2607 {
2608 int old_ve_flags = ve_flags;
2609
2610 ve_flags = VE_ALL;
2611 if (u_save_cursor() == FAIL)
2612 return;
2613 coladvance_force(oap->op_type == OP_APPEND
2614 ? oap->end_vcol + 1 : getviscol());
2615 if (oap->op_type == OP_APPEND)
2616 --curwin->w_cursor.col;
2617 ve_flags = old_ve_flags;
2618 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 /* Get the info about the block before entering the text */
2620 block_prep(oap, &bd, oap->start.lnum, TRUE);
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002621 /* Get indent information */
2622 ind_pre = (colnr_T)getwhitecols_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 firstline = ml_get(oap->start.lnum) + bd.textcol;
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002624
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625 if (oap->op_type == OP_APPEND)
2626 firstline += bd.textlen;
2627 pre_textlen = (long)STRLEN(firstline);
2628 }
2629
2630 if (oap->op_type == OP_APPEND)
2631 {
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002632 if (oap->block_mode && curwin->w_cursor.coladd == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 {
2634 /* Move the cursor to the character right of the block. */
2635 curwin->w_set_curswant = TRUE;
2636 while (*ml_get_cursor() != NUL
2637 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2638 ++curwin->w_cursor.col;
2639 if (bd.is_short && !bd.is_MAX)
2640 {
2641 /* First line was too short, make it longer and adjust the
2642 * values in "bd". */
2643 if (u_save_cursor() == FAIL)
2644 return;
2645 for (i = 0; i < bd.endspaces; ++i)
2646 ins_char(' ');
2647 bd.textlen += bd.endspaces;
2648 }
2649 }
2650 else
2651 {
2652 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002653 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654
2655 /* Works just like an 'i'nsert on the next character. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002656 if (!LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 && oap->start_vcol != oap->end_vcol)
2658 inc_cursor();
2659 }
2660 }
2661
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002662 t1 = oap->start;
Bram Moolenaar23fa81d2017-02-01 21:50:21 +01002663 (void)edit(NUL, FALSE, (linenr_T)count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002665 /* When a tab was inserted, and the characters in front of the tab
2666 * have been converted to a tab as well, the column of the cursor
2667 * might have actually been reduced, so need to adjust here. */
2668 if (t1.lnum == curbuf->b_op_start_orig.lnum
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002669 && LT_POS(curbuf->b_op_start_orig, t1))
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002670 oap->start = curbuf->b_op_start_orig;
2671
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002672 /* If user has moved off this line, we don't know what to do, so do
2673 * nothing.
2674 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2675 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676 return;
2677
2678 if (oap->block_mode)
2679 {
2680 struct block_def bd2;
Bram Moolenaar8c87a2b2018-04-10 13:15:47 +02002681 int did_indent = FALSE;
Bram Moolenaar35e802e2018-04-30 17:21:03 +02002682 size_t len;
2683 int add;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684
Bram Moolenaar4ec86dd2017-09-02 23:28:54 +02002685 /* If indent kicked in, the firstline might have changed
2686 * but only do that, if the indent actually increased. */
2687 ind_post = (colnr_T)getwhitecols_curline();
2688 if (curbuf->b_op_start.col > ind_pre && ind_post > ind_pre)
2689 {
2690 bd.textcol += ind_post - ind_pre;
2691 bd.start_vcol += ind_post - ind_pre;
Bram Moolenaar8c87a2b2018-04-10 13:15:47 +02002692 did_indent = TRUE;
Bram Moolenaar4ec86dd2017-09-02 23:28:54 +02002693 }
2694
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002695 /* The user may have moved the cursor before inserting something, try
Bram Moolenaar8c87a2b2018-04-10 13:15:47 +02002696 * to adjust the block for that. But only do it, if the difference
2697 * does not come from indent kicking in. */
2698 if (oap->start.lnum == curbuf->b_op_start_orig.lnum
2699 && !bd.is_MAX && !did_indent)
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002700 {
2701 if (oap->op_type == OP_INSERT
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002702 && oap->start.col + oap->start.coladd
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002703 != curbuf->b_op_start_orig.col
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002704 + curbuf->b_op_start_orig.coladd)
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002705 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002706 int t = getviscol2(curbuf->b_op_start_orig.col,
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002707 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002708 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002709 pre_textlen -= t - oap->start_vcol;
2710 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002711 }
2712 else if (oap->op_type == OP_APPEND
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002713 && oap->end.col + oap->end.coladd
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002714 >= curbuf->b_op_start_orig.col
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002715 + curbuf->b_op_start_orig.coladd)
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002716 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002717 int t = getviscol2(curbuf->b_op_start_orig.col,
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002718 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002719 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002720 /* reset pre_textlen to the value of OP_INSERT */
2721 pre_textlen += bd.textlen;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002722 pre_textlen -= t - oap->start_vcol;
2723 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002724 oap->op_type = OP_INSERT;
2725 }
2726 }
2727
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 /*
2729 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002730 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 * Don't do this when "$" used, end-of-line will have changed.
2732 */
2733 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2734 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2735 {
2736 if (oap->op_type == OP_APPEND)
2737 {
2738 pre_textlen += bd2.textlen - bd.textlen;
2739 if (bd2.endspaces)
2740 --bd2.textlen;
2741 }
2742 bd.textcol = bd2.textcol;
2743 bd.textlen = bd2.textlen;
2744 }
2745
2746 /*
2747 * Subsequent calls to ml_get() flush the firstline data - take a
2748 * copy of the required string.
2749 */
Bram Moolenaar35e802e2018-04-30 17:21:03 +02002750 firstline = ml_get(oap->start.lnum);
2751 len = STRLEN(firstline);
2752 add = bd.textcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753 if (oap->op_type == OP_APPEND)
Bram Moolenaar35e802e2018-04-30 17:21:03 +02002754 add += bd.textlen;
2755 if ((size_t)add > len)
2756 firstline += len; // short line, point to the NUL
2757 else
2758 firstline += add;
Bram Moolenaar5e4b9e92012-03-23 14:16:23 +01002759 if (pre_textlen >= 0
2760 && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 {
2762 ins_text = vim_strnsave(firstline, (int)ins_len);
2763 if (ins_text != NULL)
2764 {
2765 /* block handled here */
2766 if (u_save(oap->start.lnum,
2767 (linenr_T)(oap->end.lnum + 1)) == OK)
2768 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2769 &bd);
2770
2771 curwin->w_cursor.col = oap->start.col;
2772 check_cursor();
2773 vim_free(ins_text);
2774 }
2775 }
2776 }
2777}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778
2779/*
2780 * op_change - handle a change operation
2781 *
2782 * return TRUE if edit() returns because of a CTRL-O command
2783 */
2784 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002785op_change(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786{
2787 colnr_T l;
2788 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 long offset;
2790 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002791 long ins_len;
2792 long pre_textlen = 0;
2793 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 char_u *firstline;
2795 char_u *ins_text, *newp, *oldp;
2796 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797
2798 l = oap->start.col;
2799 if (oap->motion_type == MLINE)
2800 {
2801 l = 0;
2802#ifdef FEAT_SMARTINDENT
2803 if (!p_paste && curbuf->b_p_si
2804# ifdef FEAT_CINDENT
2805 && !curbuf->b_p_cin
2806# endif
2807 )
2808 can_si = TRUE; /* It's like opening a new line, do si */
2809#endif
2810 }
2811
2812 /* First delete the text in the region. In an empty buffer only need to
2813 * save for undo */
2814 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2815 {
2816 if (u_save_cursor() == FAIL)
2817 return FALSE;
2818 }
2819 else if (op_delete(oap) == FAIL)
2820 return FALSE;
2821
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002822 if ((l > curwin->w_cursor.col) && !LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 && !virtual_op)
2824 inc_cursor();
2825
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 /* check for still on same line (<CR> in inserted text meaningless) */
2827 /* skip blank lines too */
2828 if (oap->block_mode)
2829 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 /* Add spaces before getting the current line length. */
2831 if (virtual_op && (curwin->w_cursor.coladd > 0
2832 || gchar_cursor() == NUL))
2833 coladvance_force(getviscol());
Bram Moolenaar53241da2007-09-13 20:41:32 +00002834 firstline = ml_get(oap->start.lnum);
2835 pre_textlen = (long)STRLEN(firstline);
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002836 pre_indent = (long)getwhitecols(firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 bd.textcol = curwin->w_cursor.col;
2838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839
2840#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2841 if (oap->motion_type == MLINE)
2842 fix_indent();
2843#endif
2844
2845 retval = edit(NUL, FALSE, (linenr_T)1);
2846
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002848 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002850 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002852 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002854 /* Auto-indenting may have changed the indent. If the cursor was past
2855 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002857 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 {
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002859 long new_indent = (long)getwhitecols(firstline);
Bram Moolenaar53241da2007-09-13 20:41:32 +00002860
2861 pre_textlen += new_indent - pre_indent;
2862 bd.textcol += new_indent - pre_indent;
2863 }
2864
2865 ins_len = (long)STRLEN(firstline) - pre_textlen;
2866 if (ins_len > 0)
2867 {
2868 /* Subsequent calls to ml_get() flush the firstline data - take a
2869 * copy of the inserted text. */
Bram Moolenaar964b3742019-05-24 18:54:09 +02002870 if ((ins_text = alloc(ins_len + 1)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002872 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2874 linenr++)
2875 {
2876 block_prep(oap, &bd, linenr, TRUE);
2877 if (!bd.is_short || virtual_op)
2878 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 pos_T vpos;
2880
2881 /* If the block starts in virtual space, count the
2882 * initial coladd offset as part of "startspaces" */
2883 if (bd.is_short)
2884 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002885 vpos.lnum = linenr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 (void)getvpos(&vpos, oap->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 }
2888 else
2889 vpos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 oldp = ml_get(linenr);
Bram Moolenaar964b3742019-05-24 18:54:09 +02002891 newp = alloc(STRLEN(oldp) + vpos.coladd + ins_len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892 if (newp == NULL)
2893 continue;
2894 /* copy up to block start */
2895 mch_memmove(newp, oldp, (size_t)bd.textcol);
2896 offset = bd.textcol;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002897 vim_memset(newp + offset, ' ', (size_t)vpos.coladd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 offset += vpos.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2900 offset += ins_len;
2901 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002902 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903 ml_replace(linenr, newp, FALSE);
2904 }
2905 }
2906 check_cursor();
2907
2908 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2909 }
2910 vim_free(ins_text);
2911 }
2912 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913
2914 return retval;
2915}
2916
2917/*
2918 * set all the yank registers to empty (called from main())
2919 */
2920 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002921init_yank(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922{
2923 int i;
2924
2925 for (i = 0; i < NUM_REGISTERS; ++i)
2926 y_regs[i].y_array = NULL;
2927}
2928
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002929#if defined(EXITFREE) || defined(PROTO)
2930 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002931clear_registers(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002932{
2933 int i;
2934
2935 for (i = 0; i < NUM_REGISTERS; ++i)
2936 {
2937 y_current = &y_regs[i];
2938 if (y_current->y_array != NULL)
2939 free_yank_all();
2940 }
2941}
2942#endif
2943
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944/*
2945 * Free "n" lines from the current yank register.
2946 * Called for normal freeing and in case of error.
2947 */
2948 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002949free_yank(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950{
2951 if (y_current->y_array != NULL)
2952 {
2953 long i;
2954
2955 for (i = n; --i >= 0; )
2956 {
2957#ifdef AMIGA /* only for very slow machines */
2958 if ((i & 1023) == 1023) /* this may take a while */
2959 {
2960 /*
2961 * This message should never cause a hit-return message.
2962 * Overwrite this message with any next message.
2963 */
2964 ++no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002965 smsg(_("freeing %ld lines"), i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 --no_wait_return;
2967 msg_didout = FALSE;
2968 msg_col = 0;
2969 }
2970#endif
2971 vim_free(y_current->y_array[i]);
2972 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01002973 VIM_CLEAR(y_current->y_array);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974#ifdef AMIGA
2975 if (n >= 1000)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002976 msg("");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977#endif
2978 }
2979}
2980
2981 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002982free_yank_all(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983{
2984 free_yank(y_current->y_size);
2985}
2986
2987/*
2988 * Yank the text between "oap->start" and "oap->end" into a yank register.
2989 * If we are to append (uppercase register), we first yank into a new yank
2990 * register and then concatenate the old and the new one (so we keep the old
2991 * one in case of out-of-memory).
2992 *
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02002993 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 */
2995 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002996op_yank(oparg_T *oap, int deleting, int mess)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997{
2998 long y_idx; /* index in y_array[] */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002999 yankreg_T *curr; /* copy of y_current */
3000 yankreg_T newreg; /* new yank register when appending */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 char_u **new_ptr;
3002 linenr_T lnum; /* current line number */
3003 long j;
3004 int yanktype = oap->motion_type;
3005 long yanklines = oap->line_count;
3006 linenr_T yankendlnum = oap->end.lnum;
3007 char_u *p;
3008 char_u *pnew;
3009 struct block_def bd;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003010#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003011 int did_star = FALSE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003012#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013
3014 /* check for read-only register */
3015 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
3016 {
3017 beep_flush();
3018 return FAIL;
3019 }
3020 if (oap->regname == '_') /* black hole: nothing to do */
3021 return OK;
3022
3023#ifdef FEAT_CLIPBOARD
3024 if (!clip_star.available && oap->regname == '*')
3025 oap->regname = 0;
3026 else if (!clip_plus.available && oap->regname == '+')
3027 oap->regname = 0;
3028#endif
3029
3030 if (!deleting) /* op_delete() already set y_current */
3031 get_yank_register(oap->regname, TRUE);
3032
3033 curr = y_current;
3034 /* append to existing contents */
3035 if (y_append && y_current->y_array != NULL)
3036 y_current = &newreg;
3037 else
3038 free_yank_all(); /* free previously yanked lines */
3039
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00003040 /*
3041 * If the cursor was in column 1 before and after the movement, and the
3042 * operator is not inclusive, the yank is always linewise.
3043 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 if ( oap->motion_type == MCHAR
3045 && oap->start.col == 0
3046 && !oap->inclusive
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00003048 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 && oap->end.col == 0
3050 && yanklines > 1)
3051 {
3052 yanktype = MLINE;
3053 --yankendlnum;
3054 --yanklines;
3055 }
3056
3057 y_current->y_size = yanklines;
3058 y_current->y_type = yanktype; /* set the yank register type */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 y_current->y_width = 0;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02003060 y_current->y_array = (char_u **)lalloc_clear(sizeof(char_u *) * yanklines,
3061 TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062 if (y_current->y_array == NULL)
3063 {
3064 y_current = curr;
3065 return FAIL;
3066 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003067#ifdef FEAT_VIMINFO
3068 y_current->y_time_set = vim_time();
3069#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070
3071 y_idx = 0;
3072 lnum = oap->start.lnum;
3073
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074 if (oap->block_mode)
3075 {
3076 /* Visual block mode */
3077 y_current->y_type = MBLOCK; /* set the yank register type */
3078 y_current->y_width = oap->end_vcol - oap->start_vcol;
3079
3080 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
3081 y_current->y_width--;
3082 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083
3084 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
3085 {
3086 switch (y_current->y_type)
3087 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 case MBLOCK:
3089 block_prep(oap, &bd, lnum, FALSE);
3090 if (yank_copy_line(&bd, y_idx) == FAIL)
3091 goto fail;
3092 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093
3094 case MLINE:
3095 if ((y_current->y_array[y_idx] =
3096 vim_strsave(ml_get(lnum))) == NULL)
3097 goto fail;
3098 break;
3099
3100 case MCHAR:
3101 {
3102 colnr_T startcol = 0, endcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 int is_oneChar = FALSE;
3104 colnr_T cs, ce;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003105
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 p = ml_get(lnum);
3107 bd.startspaces = 0;
3108 bd.endspaces = 0;
3109
3110 if (lnum == oap->start.lnum)
3111 {
3112 startcol = oap->start.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 if (virtual_op)
3114 {
3115 getvcol(curwin, &oap->start, &cs, NULL, &ce);
3116 if (ce != cs && oap->start.coladd > 0)
3117 {
3118 /* Part of a tab selected -- but don't
3119 * double-count it. */
3120 bd.startspaces = (ce - cs + 1)
3121 - oap->start.coladd;
3122 startcol++;
3123 }
3124 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 }
3126
3127 if (lnum == oap->end.lnum)
3128 {
3129 endcol = oap->end.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 if (virtual_op)
3131 {
3132 getvcol(curwin, &oap->end, &cs, NULL, &ce);
3133 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 /* Don't add space for double-wide
3135 * char; endcol will be on last byte
3136 * of multi-byte char. */
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003137 && (*mb_head_off)(p, p + endcol) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 {
3139 if (oap->start.lnum == oap->end.lnum
3140 && oap->start.col == oap->end.col)
3141 {
3142 /* Special case: inside a single char */
3143 is_oneChar = TRUE;
3144 bd.startspaces = oap->end.coladd
3145 - oap->start.coladd + oap->inclusive;
3146 endcol = startcol;
3147 }
3148 else
3149 {
3150 bd.endspaces = oap->end.coladd
3151 + oap->inclusive;
3152 endcol -= oap->inclusive;
3153 }
3154 }
3155 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 }
Bram Moolenaar18e00d22012-05-18 12:49:40 +02003157 if (endcol == MAXCOL)
3158 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003159 if (startcol > endcol || is_oneChar)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160 bd.textlen = 0;
3161 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 bd.textlen = endcol - startcol + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 bd.textstart = p + startcol;
3164 if (yank_copy_line(&bd, y_idx) == FAIL)
3165 goto fail;
3166 break;
3167 }
3168 /* NOTREACHED */
3169 }
3170 }
3171
3172 if (curr != y_current) /* append the new block to the old block */
3173 {
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02003174 new_ptr = (char_u **)alloc(sizeof(char_u *) *
3175 (curr->y_size + y_current->y_size));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 if (new_ptr == NULL)
3177 goto fail;
3178 for (j = 0; j < curr->y_size; ++j)
3179 new_ptr[j] = curr->y_array[j];
3180 vim_free(curr->y_array);
3181 curr->y_array = new_ptr;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003182#ifdef FEAT_VIMINFO
3183 curr->y_time_set = vim_time();
3184#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185
3186 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3187 curr->y_type = MLINE;
3188
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003189 /* Concatenate the last line of the old block with the first line of
3190 * the new block, unless being Vi compatible. */
3191 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 {
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02003193 pnew = alloc(STRLEN(curr->y_array[curr->y_size - 1])
3194 + STRLEN(y_current->y_array[0]) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 if (pnew == NULL)
3196 {
3197 y_idx = y_current->y_size - 1;
3198 goto fail;
3199 }
3200 STRCPY(pnew, curr->y_array[--j]);
3201 STRCAT(pnew, y_current->y_array[0]);
3202 vim_free(curr->y_array[j]);
3203 vim_free(y_current->y_array[0]);
3204 curr->y_array[j++] = pnew;
3205 y_idx = 1;
3206 }
3207 else
3208 y_idx = 0;
3209 while (y_idx < y_current->y_size)
3210 curr->y_array[j++] = y_current->y_array[y_idx++];
3211 curr->y_size = j;
3212 vim_free(y_current->y_array);
3213 y_current = curr;
3214 }
Bram Moolenaar7ec83432014-06-17 18:16:11 +02003215 if (curwin->w_p_rnu)
3216 redraw_later(SOME_VALID); /* cursor moved to start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 if (mess) /* Display message about yank? */
3218 {
3219 if (yanktype == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 && yanklines == 1)
3222 yanklines = 0;
3223 /* Some versions of Vi use ">=" here, some don't... */
3224 if (yanklines > p_report)
3225 {
Bram Moolenaare45deb72017-07-16 17:56:16 +02003226 char namebuf[100];
3227
3228 if (oap->regname == NUL)
3229 *namebuf = NUL;
3230 else
3231 vim_snprintf(namebuf, sizeof(namebuf),
Bram Moolenaar60d0e972017-07-16 20:54:34 +02003232 _(" into \"%c"), oap->regname);
Bram Moolenaare45deb72017-07-16 17:56:16 +02003233
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234 /* redisplay now, so message is not deleted */
3235 update_topline_redraw();
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003236 if (oap->block_mode)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003237 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003238 smsg(NGETTEXT("block of %ld line yanked%s",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003239 "block of %ld lines yanked%s", yanklines),
3240 yanklines, namebuf);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003241 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 else
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003243 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003244 smsg(NGETTEXT("%ld line yanked%s",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003245 "%ld lines yanked%s", yanklines),
3246 yanklines, namebuf);
3247 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 }
3249 }
3250
3251 /*
3252 * Set "'[" and "']" marks.
3253 */
3254 curbuf->b_op_start = oap->start;
3255 curbuf->b_op_end = oap->end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003256 if (yanktype == MLINE && !oap->block_mode)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003257 {
3258 curbuf->b_op_start.col = 0;
3259 curbuf->b_op_end.col = MAXCOL;
3260 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261
3262#ifdef FEAT_CLIPBOARD
3263 /*
3264 * If we were yanking to the '*' register, send result to clipboard.
3265 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3266 * to the '*' register.
3267 */
3268 if (clip_star.available
3269 && (curr == &(y_regs[STAR_REGISTER])
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003270 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003271 && ((clip_unnamed | clip_unnamed_saved) & CLIP_UNNAMED))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 {
3273 if (curr != &(y_regs[STAR_REGISTER]))
3274 /* Copy the text from register 0 to the clipboard register. */
3275 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3276
3277 clip_own_selection(&clip_star);
3278 clip_gen_set_selection(&clip_star);
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003279# ifdef FEAT_X11
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003280 did_star = TRUE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003281# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 }
3283
3284# ifdef FEAT_X11
3285 /*
3286 * If we were yanking to the '+' register, send result to selection.
3287 * Also copy to the '*' register, in case auto-select is off.
3288 */
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003289 if (clip_plus.available
3290 && (curr == &(y_regs[PLUS_REGISTER])
3291 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003292 && ((clip_unnamed | clip_unnamed_saved) &
3293 CLIP_UNNAMED_PLUS))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 {
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003295 if (curr != &(y_regs[PLUS_REGISTER]))
3296 /* Copy the text from register 0 to the clipboard register. */
3297 copy_yank_reg(&(y_regs[PLUS_REGISTER]));
3298
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 clip_own_selection(&clip_plus);
3300 clip_gen_set_selection(&clip_plus);
Bram Moolenaar8bfe07b2017-10-15 21:47:05 +02003301 if (!clip_isautosel_star() && !clip_isautosel_plus()
3302 && !did_star && curr == &(y_regs[PLUS_REGISTER]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003303 {
3304 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3305 clip_own_selection(&clip_star);
3306 clip_gen_set_selection(&clip_star);
3307 }
3308 }
3309# endif
3310#endif
3311
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003312#if defined(FEAT_EVAL)
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01003313 if (!deleting && has_textyankpost())
3314 yank_do_autocmd(oap, y_current);
3315#endif
3316
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 return OK;
3318
3319fail: /* free the allocated lines */
3320 free_yank(y_idx + 1);
3321 y_current = curr;
3322 return FAIL;
3323}
3324
3325 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003326yank_copy_line(struct block_def *bd, long y_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327{
3328 char_u *pnew;
3329
3330 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3331 == NULL)
3332 return FAIL;
3333 y_current->y_array[y_idx] = pnew;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003334 vim_memset(pnew, ' ', (size_t)bd->startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335 pnew += bd->startspaces;
3336 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3337 pnew += bd->textlen;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003338 vim_memset(pnew, ' ', (size_t)bd->endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339 pnew += bd->endspaces;
3340 *pnew = NUL;
3341 return OK;
3342}
3343
3344#ifdef FEAT_CLIPBOARD
3345/*
3346 * Make a copy of the y_current register to register "reg".
3347 */
3348 static void
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003349copy_yank_reg(yankreg_T *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003351 yankreg_T *curr = y_current;
3352 long j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353
3354 y_current = reg;
3355 free_yank_all();
3356 *y_current = *curr;
3357 y_current->y_array = (char_u **)lalloc_clear(
Bram Moolenaar51e14382019-05-25 20:21:28 +02003358 sizeof(char_u *) * y_current->y_size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 if (y_current->y_array == NULL)
3360 y_current->y_size = 0;
3361 else
3362 for (j = 0; j < y_current->y_size; ++j)
3363 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3364 {
3365 free_yank(j);
3366 y_current->y_size = 0;
3367 break;
3368 }
3369 y_current = curr;
3370}
3371#endif
3372
3373/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003374 * Put contents of register "regname" into the text.
3375 * Caller must check "regname" to be valid!
3376 * "flags": PUT_FIXINDENT make indent look nice
3377 * PUT_CURSEND leave cursor after end of new text
3378 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 */
3380 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003381do_put(
3382 int regname,
3383 int dir, /* BACKWARD for 'P', FORWARD for 'p' */
3384 long count,
3385 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386{
3387 char_u *ptr;
3388 char_u *newp, *oldp;
3389 int yanklen;
3390 int totlen = 0; /* init for gcc */
3391 linenr_T lnum;
3392 colnr_T col;
3393 long i; /* index in y_array[] */
3394 int y_type;
3395 long y_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 int oldlen;
3397 long y_width = 0;
3398 colnr_T vcol;
3399 int delcount;
3400 int incr = 0;
3401 long j;
3402 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 char_u **y_array = NULL;
3404 long nr_lines = 0;
3405 pos_T new_cursor;
3406 int indent;
3407 int orig_indent = 0; /* init for gcc */
3408 int indent_diff = 0; /* init for gcc */
3409 int first_indent = TRUE;
3410 int lendiff = 0;
3411 pos_T old_pos;
3412 char_u *insert_string = NULL;
3413 int allocated = FALSE;
3414 long cnt;
3415
3416#ifdef FEAT_CLIPBOARD
3417 /* Adjust register name for "unnamed" in 'clipboard'. */
3418 adjust_clip_reg(&regname);
3419 (void)may_get_selection(regname);
3420#endif
3421
3422 if (flags & PUT_FIXINDENT)
3423 orig_indent = get_indent();
3424
3425 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3426 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3427
3428 /*
3429 * Using inserted text works differently, because the register includes
3430 * special characters (newlines, etc.).
3431 */
3432 if (regname == '.')
3433 {
Bram Moolenaarf8eb9c52017-01-02 17:31:24 +01003434 if (VIsual_active)
3435 stuffcharReadbuff(VIsual_mode);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3437 (count == -1 ? 'O' : 'i')), count, FALSE);
3438 /* Putting the text is done later, so can't really move the cursor to
3439 * the next character. Use "l" to simulate it. */
3440 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3441 stuffcharReadbuff('l');
3442 return;
3443 }
3444
3445 /*
3446 * For special registers '%' (file name), '#' (alternate file name) and
3447 * ':' (last command line), etc. we have to create a fake yank register.
3448 */
3449 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3450 {
3451 if (insert_string == NULL)
3452 return;
3453 }
3454
Bram Moolenaarf52f9ea2018-06-27 20:49:44 +02003455 /* Autocommands may be executed when saving lines for undo. This might
3456 * make "y_array" invalid, so we start undo now to avoid that. */
3457 if (u_save(curwin->w_cursor.lnum, curwin->w_cursor.lnum + 1) == FAIL)
3458 goto end;
Bram Moolenaar27356ad2012-12-12 16:11:36 +01003459
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460 if (insert_string != NULL)
3461 {
3462 y_type = MCHAR;
3463#ifdef FEAT_EVAL
3464 if (regname == '=')
3465 {
3466 /* For the = register we need to split the string at NL
Bram Moolenaara554a192011-09-21 17:33:53 +02003467 * characters.
3468 * Loop twice: count the number of lines and save them. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 for (;;)
3470 {
3471 y_size = 0;
3472 ptr = insert_string;
3473 while (ptr != NULL)
3474 {
3475 if (y_array != NULL)
3476 y_array[y_size] = ptr;
3477 ++y_size;
3478 ptr = vim_strchr(ptr, '\n');
3479 if (ptr != NULL)
3480 {
3481 if (y_array != NULL)
3482 *ptr = NUL;
3483 ++ptr;
Bram Moolenaara554a192011-09-21 17:33:53 +02003484 /* A trailing '\n' makes the register linewise. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 if (*ptr == NUL)
3486 {
3487 y_type = MLINE;
3488 break;
3489 }
3490 }
3491 }
3492 if (y_array != NULL)
3493 break;
Bram Moolenaar964b3742019-05-24 18:54:09 +02003494 y_array = (char_u **)alloc((y_size * sizeof(char_u *)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 if (y_array == NULL)
3496 goto end;
3497 }
3498 }
3499 else
3500#endif
3501 {
3502 y_size = 1; /* use fake one-line yank register */
3503 y_array = &insert_string;
3504 }
3505 }
3506 else
3507 {
3508 get_yank_register(regname, FALSE);
3509
3510 y_type = y_current->y_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 y_width = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 y_size = y_current->y_size;
3513 y_array = y_current->y_array;
3514 }
3515
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 if (y_type == MLINE)
3517 {
3518 if (flags & PUT_LINE_SPLIT)
3519 {
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003520 char_u *p;
3521
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522 /* "p" or "P" in Visual mode: split the lines to put the text in
3523 * between. */
3524 if (u_save_cursor() == FAIL)
3525 goto end;
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003526 p = ml_get_cursor();
3527 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003528 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003529 ptr = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 if (ptr == NULL)
3531 goto end;
3532 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3533 vim_free(ptr);
3534
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003535 oldp = ml_get_curline();
3536 p = oldp + curwin->w_cursor.col;
3537 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003538 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003539 ptr = vim_strnsave(oldp, p - oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 if (ptr == NULL)
3541 goto end;
3542 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3543 ++nr_lines;
3544 dir = FORWARD;
3545 }
3546 if (flags & PUT_LINE_FORWARD)
3547 {
3548 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003549 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 dir = FORWARD;
3551 }
3552 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3553 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3554 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555
3556 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3557 y_type = MLINE;
3558
3559 if (y_size == 0 || y_array == NULL)
3560 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003561 semsg(_("E353: Nothing in register %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 regname == 0 ? (char_u *)"\"" : transchar(regname));
3563 goto end;
3564 }
3565
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566 if (y_type == MBLOCK)
3567 {
3568 lnum = curwin->w_cursor.lnum + y_size + 1;
3569 if (lnum > curbuf->b_ml.ml_line_count)
3570 lnum = curbuf->b_ml.ml_line_count + 1;
3571 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3572 goto end;
3573 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003574 else if (y_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575 {
3576 lnum = curwin->w_cursor.lnum;
3577#ifdef FEAT_FOLDING
3578 /* Correct line number for closed fold. Don't move the cursor yet,
3579 * u_save() uses it. */
3580 if (dir == BACKWARD)
3581 (void)hasFolding(lnum, &lnum, NULL);
3582 else
3583 (void)hasFolding(lnum, NULL, &lnum);
3584#endif
3585 if (dir == FORWARD)
3586 ++lnum;
Bram Moolenaar10315b12013-06-29 17:19:28 +02003587 /* In an empty buffer the empty line is going to be replaced, include
3588 * it in the saved lines. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003589 if ((BUFEMPTY() ? u_save(0, 2) : u_save(lnum - 1, lnum)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 goto end;
3591#ifdef FEAT_FOLDING
3592 if (dir == FORWARD)
3593 curwin->w_cursor.lnum = lnum - 1;
3594 else
3595 curwin->w_cursor.lnum = lnum;
3596 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3597#endif
3598 }
3599 else if (u_save_cursor() == FAIL)
3600 goto end;
3601
3602 yanklen = (int)STRLEN(y_array[0]);
3603
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 if (ve_flags == VE_ALL && y_type == MCHAR)
3605 {
3606 if (gchar_cursor() == TAB)
3607 {
3608 /* Don't need to insert spaces when "p" on the last position of a
3609 * tab or "P" on the first position. */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02003610#ifdef FEAT_VARTABS
3611 int viscol = getviscol();
3612 if (dir == FORWARD
3613 ? tabstop_padding(viscol, curbuf->b_p_ts,
3614 curbuf->b_p_vts_array) != 1
3615 : curwin->w_cursor.coladd > 0)
3616 coladvance_force(viscol);
3617#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 if (dir == FORWARD
3619 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3620 : curwin->w_cursor.coladd > 0)
3621 coladvance_force(getviscol());
Bram Moolenaar04958cb2018-06-23 19:23:02 +02003622#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623 else
3624 curwin->w_cursor.coladd = 0;
3625 }
3626 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3627 coladvance_force(getviscol() + (dir == FORWARD));
3628 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629
3630 lnum = curwin->w_cursor.lnum;
3631 col = curwin->w_cursor.col;
3632
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 /*
3634 * Block mode
3635 */
3636 if (y_type == MBLOCK)
3637 {
Bram Moolenaarc8129962017-01-22 20:04:51 +01003638 int c = gchar_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639 colnr_T endcol2 = 0;
3640
3641 if (dir == FORWARD && c != NUL)
3642 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 if (ve_flags == VE_ALL)
3644 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3645 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3647
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 if (has_mbyte)
3649 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003650 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 if (c != TAB || ve_flags != VE_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 ++curwin->w_cursor.col;
3654 ++col;
3655 }
3656 else
3657 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3658
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003660 if (ve_flags == VE_ALL
3661 && (curwin->w_cursor.coladd > 0
3662 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 {
3664 if (dir == FORWARD && c == NUL)
3665 ++col;
3666 if (dir != FORWARD && c != NUL)
3667 ++curwin->w_cursor.col;
3668 if (c == TAB)
3669 {
3670 if (dir == BACKWARD && curwin->w_cursor.col)
3671 curwin->w_cursor.col--;
3672 if (dir == FORWARD && col - 1 == endcol2)
3673 curwin->w_cursor.col++;
3674 }
3675 }
3676 curwin->w_cursor.coladd = 0;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003677 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 for (i = 0; i < y_size; ++i)
3679 {
3680 int spaces;
3681 char shortline;
3682
3683 bd.startspaces = 0;
3684 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 vcol = 0;
3686 delcount = 0;
3687
3688 /* add a new line */
3689 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3690 {
3691 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3692 (colnr_T)1, FALSE) == FAIL)
3693 break;
3694 ++nr_lines;
3695 }
3696 /* get the old line and advance to the position to insert at */
3697 oldp = ml_get_curline();
3698 oldlen = (int)STRLEN(oldp);
3699 for (ptr = oldp; vcol < col && *ptr; )
3700 {
3701 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02003702 incr = lbr_chartabsize_adv(oldp, &ptr, (colnr_T)vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 vcol += incr;
3704 }
3705 bd.textcol = (colnr_T)(ptr - oldp);
3706
3707 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3708
3709 if (vcol < col) /* line too short, padd with spaces */
3710 bd.startspaces = col - vcol;
3711 else if (vcol > col)
3712 {
3713 bd.endspaces = vcol - col;
3714 bd.startspaces = incr - bd.endspaces;
3715 --bd.textcol;
3716 delcount = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 if (has_mbyte)
3718 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 if (oldp[bd.textcol] != TAB)
3720 {
3721 /* Only a Tab can be split into spaces. Other
3722 * characters will have to be moved to after the
3723 * block, causing misalignment. */
3724 delcount = 0;
3725 bd.endspaces = 0;
3726 }
3727 }
3728
3729 yanklen = (int)STRLEN(y_array[i]);
3730
3731 /* calculate number of spaces required to fill right side of block*/
3732 spaces = y_width + 1;
3733 for (j = 0; j < yanklen; j++)
Bram Moolenaar597a4222014-06-25 14:39:50 +02003734 spaces -= lbr_chartabsize(NULL, &y_array[i][j], 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735 if (spaces < 0)
3736 spaces = 0;
3737
3738 /* insert the new text */
3739 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
Bram Moolenaar964b3742019-05-24 18:54:09 +02003740 newp = alloc(totlen + oldlen + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 if (newp == NULL)
3742 break;
3743 /* copy part up to cursor to new line */
3744 ptr = newp;
3745 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3746 ptr += bd.textcol;
3747 /* may insert some spaces before the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003748 vim_memset(ptr, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749 ptr += bd.startspaces;
3750 /* insert the new text */
3751 for (j = 0; j < count; ++j)
3752 {
3753 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3754 ptr += yanklen;
3755
3756 /* insert block's trailing spaces only if there's text behind */
3757 if ((j < count - 1 || !shortline) && spaces)
3758 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003759 vim_memset(ptr, ' ', (size_t)spaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 ptr += spaces;
3761 }
3762 }
3763 /* may insert some spaces after the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003764 vim_memset(ptr, ' ', (size_t)bd.endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 ptr += bd.endspaces;
3766 /* move the text after the cursor to the end of the line. */
3767 mch_memmove(ptr, oldp + bd.textcol + delcount,
3768 (size_t)(oldlen - bd.textcol - delcount + 1));
3769 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3770
3771 ++curwin->w_cursor.lnum;
3772 if (i == 0)
3773 curwin->w_cursor.col += bd.startspaces;
3774 }
3775
3776 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3777
3778 /* Set '[ mark. */
3779 curbuf->b_op_start = curwin->w_cursor;
3780 curbuf->b_op_start.lnum = lnum;
3781
3782 /* adjust '] mark */
3783 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3784 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 curbuf->b_op_end.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 if (flags & PUT_CURSEND)
3787 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003788 colnr_T len;
3789
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 curwin->w_cursor = curbuf->b_op_end;
3791 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003792
3793 /* in Insert mode we might be after the NUL, correct for that */
3794 len = (colnr_T)STRLEN(ml_get_curline());
3795 if (curwin->w_cursor.col > len)
3796 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 }
3798 else
3799 curwin->w_cursor.lnum = lnum;
3800 }
3801 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 {
3803 /*
3804 * Character or Line mode
3805 */
3806 if (y_type == MCHAR)
3807 {
3808 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3809 * char */
3810 if (dir == FORWARD && gchar_cursor() != NUL)
3811 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 if (has_mbyte)
3813 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003814 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815
3816 /* put it on the next of the multi-byte character. */
3817 col += bytelen;
3818 if (yanklen)
3819 {
3820 curwin->w_cursor.col += bytelen;
3821 curbuf->b_op_end.col += bytelen;
3822 }
3823 }
3824 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 {
3826 ++col;
3827 if (yanklen)
3828 {
3829 ++curwin->w_cursor.col;
3830 ++curbuf->b_op_end.col;
3831 }
3832 }
3833 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 curbuf->b_op_start = curwin->w_cursor;
3835 }
3836 /*
3837 * Line mode: BACKWARD is the same as FORWARD on the previous line
3838 */
3839 else if (dir == BACKWARD)
3840 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003841 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842
3843 /*
3844 * simple case: insert into current line
3845 */
3846 if (y_type == MCHAR && y_size == 1)
3847 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003848 linenr_T end_lnum = 0; /* init for gcc */
Bram Moolenaar9957a102017-01-23 21:53:53 +01003849
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003850 if (VIsual_active)
3851 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003852 end_lnum = curbuf->b_visual.vi_end.lnum;
3853 if (end_lnum < curbuf->b_visual.vi_start.lnum)
3854 end_lnum = curbuf->b_visual.vi_start.lnum;
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003855 }
Bram Moolenaar9957a102017-01-23 21:53:53 +01003856
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003857 do {
3858 totlen = count * yanklen;
3859 if (totlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 {
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003861 oldp = ml_get(lnum);
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003862 if (VIsual_active && col > (int)STRLEN(oldp))
3863 {
3864 lnum++;
3865 continue;
3866 }
Bram Moolenaar964b3742019-05-24 18:54:09 +02003867 newp = alloc(STRLEN(oldp) + totlen + 1);
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003868 if (newp == NULL)
3869 goto end; /* alloc() gave an error message */
3870 mch_memmove(newp, oldp, (size_t)col);
3871 ptr = newp + col;
3872 for (i = 0; i < count; ++i)
3873 {
3874 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3875 ptr += yanklen;
3876 }
3877 STRMOVE(ptr, oldp + col);
3878 ml_replace(lnum, newp, FALSE);
3879 /* Place cursor on last putted char. */
3880 if (lnum == curwin->w_cursor.lnum)
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003881 {
3882 /* make sure curwin->w_virtcol is updated */
3883 changed_cline_bef_curs();
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003884 curwin->w_cursor.col += (colnr_T)(totlen - 1);
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003885 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003887 if (VIsual_active)
3888 lnum++;
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003889 } while (VIsual_active && lnum <= end_lnum);
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003890
Bram Moolenaar06e7ce12014-11-19 17:35:39 +01003891 if (VIsual_active) /* reset lnum to the last visual line */
3892 lnum--;
3893
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 curbuf->b_op_end = curwin->w_cursor;
3895 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3896 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3897 ++curwin->w_cursor.col;
3898 changed_bytes(lnum, col);
3899 }
3900 else
3901 {
3902 /*
3903 * Insert at least one line. When y_type is MCHAR, break the first
3904 * line in two.
3905 */
3906 for (cnt = 1; cnt <= count; ++cnt)
3907 {
3908 i = 0;
3909 if (y_type == MCHAR)
3910 {
3911 /*
3912 * Split the current line in two at the insert position.
3913 * First insert y_array[size - 1] in front of second line.
3914 * Then append y_array[0] to first line.
3915 */
3916 lnum = new_cursor.lnum;
3917 ptr = ml_get(lnum) + col;
3918 totlen = (int)STRLEN(y_array[y_size - 1]);
Bram Moolenaar964b3742019-05-24 18:54:09 +02003919 newp = alloc(STRLEN(ptr) + totlen + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 if (newp == NULL)
3921 goto error;
3922 STRCPY(newp, y_array[y_size - 1]);
3923 STRCAT(newp, ptr);
3924 /* insert second line */
3925 ml_append(lnum, newp, (colnr_T)0, FALSE);
3926 vim_free(newp);
3927
3928 oldp = ml_get(lnum);
Bram Moolenaar964b3742019-05-24 18:54:09 +02003929 newp = alloc(col + yanklen + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 if (newp == NULL)
3931 goto error;
3932 /* copy first part of line */
3933 mch_memmove(newp, oldp, (size_t)col);
3934 /* append to first line */
3935 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3936 ml_replace(lnum, newp, FALSE);
3937
3938 curwin->w_cursor.lnum = lnum;
3939 i = 1;
3940 }
3941
3942 for (; i < y_size; ++i)
3943 {
3944 if ((y_type != MCHAR || i < y_size - 1)
3945 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3946 == FAIL)
3947 goto error;
3948 lnum++;
3949 ++nr_lines;
3950 if (flags & PUT_FIXINDENT)
3951 {
3952 old_pos = curwin->w_cursor;
3953 curwin->w_cursor.lnum = lnum;
3954 ptr = ml_get(lnum);
3955 if (cnt == count && i == y_size - 1)
3956 lendiff = (int)STRLEN(ptr);
3957#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3958 if (*ptr == '#' && preprocs_left())
3959 indent = 0; /* Leave # lines at start */
3960 else
3961#endif
3962 if (*ptr == NUL)
3963 indent = 0; /* Ignore empty lines */
3964 else if (first_indent)
3965 {
3966 indent_diff = orig_indent - get_indent();
3967 indent = orig_indent;
3968 first_indent = FALSE;
3969 }
3970 else if ((indent = get_indent() + indent_diff) < 0)
3971 indent = 0;
3972 (void)set_indent(indent, 0);
3973 curwin->w_cursor = old_pos;
3974 /* remember how many chars were removed */
3975 if (cnt == count && i == y_size - 1)
3976 lendiff -= (int)STRLEN(ml_get(lnum));
3977 }
3978 }
3979 }
3980
3981error:
3982 /* Adjust marks. */
3983 if (y_type == MLINE)
3984 {
3985 curbuf->b_op_start.col = 0;
3986 if (dir == FORWARD)
3987 curbuf->b_op_start.lnum++;
3988 }
Bram Moolenaar82faa252016-06-04 20:14:07 +02003989 /* Skip mark_adjust when adding lines after the last one, there
Bram Moolenaarf58a8472017-03-05 18:03:04 +01003990 * can't be marks there. But still needed in diff mode. */
Bram Moolenaar82faa252016-06-04 20:14:07 +02003991 if (curbuf->b_op_start.lnum + (y_type == MCHAR) - 1 + nr_lines
Bram Moolenaarf58a8472017-03-05 18:03:04 +01003992 < curbuf->b_ml.ml_line_count
3993#ifdef FEAT_DIFF
3994 || curwin->w_p_diff
3995#endif
3996 )
Bram Moolenaar82faa252016-06-04 20:14:07 +02003997 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998 (linenr_T)MAXLNUM, nr_lines, 0L);
3999
4000 /* note changed text for displaying and folding */
4001 if (y_type == MCHAR)
4002 changed_lines(curwin->w_cursor.lnum, col,
4003 curwin->w_cursor.lnum + 1, nr_lines);
4004 else
4005 changed_lines(curbuf->b_op_start.lnum, 0,
4006 curbuf->b_op_start.lnum, nr_lines);
4007
4008 /* put '] mark at last inserted character */
4009 curbuf->b_op_end.lnum = lnum;
4010 /* correct length for change in indent */
4011 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
4012 if (col > 1)
4013 curbuf->b_op_end.col = col - 1;
4014 else
4015 curbuf->b_op_end.col = 0;
4016
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004017 if (flags & PUT_CURSLINE)
4018 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00004019 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004020 curwin->w_cursor.lnum = lnum;
4021 beginline(BL_WHITE | BL_FIX);
4022 }
4023 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 {
4025 /* put cursor after inserted text */
4026 if (y_type == MLINE)
4027 {
4028 if (lnum >= curbuf->b_ml.ml_line_count)
4029 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4030 else
4031 curwin->w_cursor.lnum = lnum + 1;
4032 curwin->w_cursor.col = 0;
4033 }
4034 else
4035 {
4036 curwin->w_cursor.lnum = lnum;
4037 curwin->w_cursor.col = col;
4038 }
4039 }
4040 else if (y_type == MLINE)
4041 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004042 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043 curwin->w_cursor.col = 0;
4044 if (dir == FORWARD)
4045 ++curwin->w_cursor.lnum;
4046 beginline(BL_WHITE | BL_FIX);
4047 }
4048 else /* put cursor on first inserted character */
4049 curwin->w_cursor = new_cursor;
4050 }
4051 }
4052
4053 msgmore(nr_lines);
4054 curwin->w_set_curswant = TRUE;
4055
4056end:
4057 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004059 if (regname == '=')
4060 vim_free(y_array);
4061
Bram Moolenaar033d8882013-09-25 23:24:57 +02004062 VIsual_active = FALSE;
Bram Moolenaar033d8882013-09-25 23:24:57 +02004063
Bram Moolenaar677ee682005-01-27 14:41:15 +00004064 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004065 adjust_cursor_eol();
4066}
4067
4068/*
4069 * When the cursor is on the NUL past the end of the line and it should not be
4070 * there move it left.
4071 */
4072 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004073adjust_cursor_eol(void)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004074{
4075 if (curwin->w_cursor.col > 0
4076 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00004077 && (ve_flags & VE_ONEMORE) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 && !(restart_edit || (State & INSERT)))
4079 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00004080 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00004081 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004082
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00004084 {
4085 colnr_T scol, ecol;
4086
4087 /* Coladd is set to the width of the last character. */
4088 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4089 curwin->w_cursor.coladd = ecol - scol + 1;
4090 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 }
4092}
4093
4094#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
4095/*
4096 * Return TRUE if lines starting with '#' should be left aligned.
4097 */
4098 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004099preprocs_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100{
4101 return
4102# ifdef FEAT_SMARTINDENT
4103# ifdef FEAT_CINDENT
4104 (curbuf->b_p_si && !curbuf->b_p_cin) ||
4105# else
4106 curbuf->b_p_si
4107# endif
4108# endif
4109# ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004110 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE)
4111 && curbuf->b_ind_hash_comment == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112# endif
4113 ;
4114}
4115#endif
4116
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004117/*
4118 * Return the character name of the register with the given number.
4119 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004121get_register_name(int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122{
4123 if (num == -1)
4124 return '"';
4125 else if (num < 10)
4126 return num + '0';
4127 else if (num == DELETION_REGISTER)
4128 return '-';
4129#ifdef FEAT_CLIPBOARD
4130 else if (num == STAR_REGISTER)
4131 return '*';
4132 else if (num == PLUS_REGISTER)
4133 return '+';
4134#endif
4135 else
4136 {
4137#ifdef EBCDIC
4138 int i;
4139
4140 /* EBCDIC is really braindead ... */
4141 i = 'a' + (num - 10);
4142 if (i > 'i')
4143 i += 7;
4144 if (i > 'r')
4145 i += 8;
4146 return i;
4147#else
4148 return num + 'a' - 10;
4149#endif
4150 }
4151}
4152
4153/*
4154 * ":dis" and ":registers": Display the contents of the yank registers.
4155 */
4156 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004157ex_display(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004159 int i, n;
4160 long j;
4161 char_u *p;
4162 yankreg_T *yb;
4163 int name;
4164 int attr;
4165 char_u *arg = eap->arg;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004166 int clen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167
4168 if (arg != NULL && *arg == NUL)
4169 arg = NULL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01004170 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171
4172 /* Highlight title */
Bram Moolenaar32526b32019-01-19 17:43:09 +01004173 msg_puts_title(_("\n--- Registers ---"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
4175 {
4176 name = get_register_name(i);
Bram Moolenaar0818b872010-11-24 14:28:58 +01004177 if (arg != NULL && vim_strchr(arg, name) == NULL
4178#ifdef ONE_CLIPBOARD
4179 /* Star register and plus register contain the same thing. */
4180 && (name != '*' || vim_strchr(arg, '+') == NULL)
4181#endif
4182 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183 continue; /* did not ask for this register */
4184
4185#ifdef FEAT_CLIPBOARD
4186 /* Adjust register name for "unnamed" in 'clipboard'.
4187 * When it's a clipboard register, fill it with the current contents
4188 * of the clipboard. */
4189 adjust_clip_reg(&name);
4190 (void)may_get_selection(name);
4191#endif
4192
4193 if (i == -1)
4194 {
4195 if (y_previous != NULL)
4196 yb = y_previous;
4197 else
4198 yb = &(y_regs[0]);
4199 }
4200 else
4201 yb = &(y_regs[i]);
Bram Moolenaarcde547a2009-11-17 11:43:06 +00004202
4203#ifdef FEAT_EVAL
4204 if (name == MB_TOLOWER(redir_reg)
4205 || (redir_reg == '"' && yb == y_previous))
4206 continue; /* do not list register being written to, the
4207 * pointer can be freed */
4208#endif
4209
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 if (yb->y_array != NULL)
4211 {
4212 msg_putchar('\n');
4213 msg_putchar('"');
4214 msg_putchar(name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004215 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216
4217 n = (int)Columns - 6;
4218 for (j = 0; j < yb->y_size && n > 1; ++j)
4219 {
4220 if (j)
4221 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004222 msg_puts_attr("^J", attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 n -= 2;
4224 }
4225 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4226 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004227 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004228 msg_outtrans_len(p, clen);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004229 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 }
4231 }
4232 if (n > 1 && yb->y_type == MLINE)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004233 msg_puts_attr("^J", attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 out_flush(); /* show one line at a time */
4235 }
4236 ui_breakcheck();
4237 }
4238
4239 /*
4240 * display last inserted text
4241 */
4242 if ((p = get_last_insert()) != NULL
4243 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4244 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004245 msg_puts("\n\". ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 dis_msg(p, TRUE);
4247 }
4248
4249 /*
4250 * display last command line
4251 */
4252 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4253 && !got_int)
4254 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004255 msg_puts("\n\": ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 dis_msg(last_cmdline, FALSE);
4257 }
4258
4259 /*
4260 * display current file name
4261 */
4262 if (curbuf->b_fname != NULL
4263 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4264 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004265 msg_puts("\n\"% ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266 dis_msg(curbuf->b_fname, FALSE);
4267 }
4268
4269 /*
4270 * display alternate file name
4271 */
4272 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4273 {
4274 char_u *fname;
4275 linenr_T dummy;
4276
4277 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4278 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004279 msg_puts("\n\"# ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 dis_msg(fname, FALSE);
4281 }
4282 }
4283
4284 /*
4285 * display last search pattern
4286 */
4287 if (last_search_pat() != NULL
4288 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4289 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004290 msg_puts("\n\"/ ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 dis_msg(last_search_pat(), FALSE);
4292 }
4293
4294#ifdef FEAT_EVAL
4295 /*
4296 * display last used expression
4297 */
4298 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4299 && !got_int)
4300 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004301 msg_puts("\n\"= ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 dis_msg(expr_line, FALSE);
4303 }
4304#endif
4305}
4306
4307/*
4308 * display a string for do_dis()
4309 * truncate at end of screen line
4310 */
4311 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004312dis_msg(
4313 char_u *p,
4314 int skip_esc) /* if TRUE, ignore trailing ESC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315{
4316 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318
4319 n = (int)Columns - 6;
4320 while (*p != NUL
4321 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4322 && (n -= ptr2cells(p)) >= 0)
4323 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004324 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 {
4326 msg_outtrans_len(p, l);
4327 p += l;
4328 }
4329 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330 msg_outtrans_len(p++, 1);
4331 }
4332 ui_breakcheck();
4333}
4334
Bram Moolenaar81340392012-06-06 16:12:59 +02004335#if defined(FEAT_COMMENTS) || defined(PROTO)
4336/*
4337 * If "process" is TRUE and the line begins with a comment leader (possibly
4338 * after some white space), return a pointer to the text after it. Put a boolean
4339 * value indicating whether the line ends with an unclosed comment in
4340 * "is_comment".
4341 * line - line to be processed,
4342 * process - if FALSE, will only check whether the line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004343 * comment,
Bram Moolenaar81340392012-06-06 16:12:59 +02004344 * include_space - whether to also skip space following the comment leader,
4345 * is_comment - will indicate whether the current line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004346 * comment.
Bram Moolenaar81340392012-06-06 16:12:59 +02004347 */
Bram Moolenaar025a6b72017-03-12 20:37:21 +01004348 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004349skip_comment(
4350 char_u *line,
4351 int process,
4352 int include_space,
4353 int *is_comment)
Bram Moolenaar81340392012-06-06 16:12:59 +02004354{
4355 char_u *comment_flags = NULL;
4356 int lead_len;
4357 int leader_offset = get_last_leader_offset(line, &comment_flags);
4358
4359 *is_comment = FALSE;
4360 if (leader_offset != -1)
4361 {
4362 /* Let's check whether the line ends with an unclosed comment.
4363 * If the last comment leader has COM_END in flags, there's no comment.
4364 */
4365 while (*comment_flags)
4366 {
4367 if (*comment_flags == COM_END
4368 || *comment_flags == ':')
4369 break;
4370 ++comment_flags;
4371 }
4372 if (*comment_flags != COM_END)
4373 *is_comment = TRUE;
4374 }
4375
4376 if (process == FALSE)
4377 return line;
4378
4379 lead_len = get_leader_len(line, &comment_flags, FALSE, include_space);
4380
4381 if (lead_len == 0)
4382 return line;
4383
4384 /* Find:
Bram Moolenaar81340392012-06-06 16:12:59 +02004385 * - COM_END,
4386 * - colon,
4387 * whichever comes first.
4388 */
4389 while (*comment_flags)
4390 {
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004391 if (*comment_flags == COM_END
Bram Moolenaar81340392012-06-06 16:12:59 +02004392 || *comment_flags == ':')
Bram Moolenaar81340392012-06-06 16:12:59 +02004393 break;
Bram Moolenaar81340392012-06-06 16:12:59 +02004394 ++comment_flags;
4395 }
4396
4397 /* If we found a colon, it means that we are not processing a line
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004398 * starting with a closing part of a three-part comment. That's good,
4399 * because we don't want to remove those as this would be annoying.
Bram Moolenaar81340392012-06-06 16:12:59 +02004400 */
4401 if (*comment_flags == ':' || *comment_flags == NUL)
4402 line += lead_len;
4403
4404 return line;
4405}
4406#endif
4407
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408/*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004409 * Join 'count' lines (minimal 2) at cursor position.
4410 * When "save_undo" is TRUE save lines for undo first.
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004411 * Set "use_formatoptions" to FALSE when e.g. processing backspace and comment
4412 * leaders should not be removed.
4413 * When setmark is TRUE, sets the '[ and '] mark, else, the caller is expected
4414 * to set those marks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004416 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 */
4418 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004419do_join(
4420 long count,
4421 int insert_space,
4422 int save_undo,
4423 int use_formatoptions UNUSED,
4424 int setmark)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425{
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004426 char_u *curr = NULL;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004427 char_u *curr_start = NULL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004428 char_u *cend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429 char_u *newp;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004430 char_u *spaces; /* number of spaces inserted before a line */
Bram Moolenaard43848c2010-07-14 14:28:26 +02004431 int endcurr1 = NUL;
4432 int endcurr2 = NUL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004433 int currsize = 0; /* size of the current line */
4434 int sumsize = 0; /* size of the long new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 linenr_T t;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004436 colnr_T col = 0;
4437 int ret = OK;
Bram Moolenaar81340392012-06-06 16:12:59 +02004438#if defined(FEAT_COMMENTS) || defined(PROTO)
Bram Moolenaar802053f2012-06-06 23:08:38 +02004439 int *comments = NULL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004440 int remove_comments = (use_formatoptions == TRUE)
4441 && has_format_option(FO_REMOVE_COMS);
4442 int prev_was_comment;
4443#endif
Bram Moolenaar80e737c2019-05-17 19:56:34 +02004444#ifdef FEAT_TEXT_PROP
4445 textprop_T **prop_lines = NULL;
4446 int *prop_lengths = NULL;
4447#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004449 if (save_undo && u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4450 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4451 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004453 /* Allocate an array to store the number of spaces inserted before each
4454 * line. We will use it to pre-compute the length of the new line and the
4455 * proper placement of each original line in the new one. */
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004456 spaces = lalloc_clear(count, TRUE);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004457 if (spaces == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 return FAIL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004459#if defined(FEAT_COMMENTS) || defined(PROTO)
4460 if (remove_comments)
4461 {
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004462 comments = (int *)lalloc_clear(count * sizeof(int), TRUE);
Bram Moolenaar81340392012-06-06 16:12:59 +02004463 if (comments == NULL)
4464 {
4465 vim_free(spaces);
4466 return FAIL;
4467 }
4468 }
4469#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470
4471 /*
Bram Moolenaar80e737c2019-05-17 19:56:34 +02004472 * Don't move anything yet, just compute the final line length
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004473 * and setup the array of space strings lengths
Bram Moolenaar80e737c2019-05-17 19:56:34 +02004474 * This loops forward over the joined lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004476 for (t = 0; t < count; ++t)
4477 {
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004478 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t));
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004479 if (t == 0 && setmark)
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004480 {
4481 /* Set the '[ mark. */
4482 curwin->w_buffer->b_op_start.lnum = curwin->w_cursor.lnum;
4483 curwin->w_buffer->b_op_start.col = (colnr_T)STRLEN(curr);
4484 }
Bram Moolenaar81340392012-06-06 16:12:59 +02004485#if defined(FEAT_COMMENTS) || defined(PROTO)
4486 if (remove_comments)
4487 {
4488 /* We don't want to remove the comment leader if the
4489 * previous line is not a comment. */
4490 if (t > 0 && prev_was_comment)
4491 {
4492
4493 char_u *new_curr = skip_comment(curr, TRUE, insert_space,
4494 &prev_was_comment);
Bram Moolenaar27ba0882012-06-07 21:09:39 +02004495 comments[t] = (int)(new_curr - curr);
Bram Moolenaar81340392012-06-06 16:12:59 +02004496 curr = new_curr;
4497 }
4498 else
4499 curr = skip_comment(curr, FALSE, insert_space,
4500 &prev_was_comment);
4501 }
4502#endif
4503
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004504 if (insert_space && t > 0)
4505 {
4506 curr = skipwhite(curr);
4507 if (*curr != ')' && currsize != 0 && endcurr1 != TAB
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004508 && (!has_format_option(FO_MBYTE_JOIN)
4509 || (mb_ptr2char(curr) < 0x100 && endcurr1 < 0x100))
4510 && (!has_format_option(FO_MBYTE_JOIN2)
4511 || mb_ptr2char(curr) < 0x100 || endcurr1 < 0x100)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004512 )
4513 {
4514 /* don't add a space if the line is ending in a space */
4515 if (endcurr1 == ' ')
4516 endcurr1 = endcurr2;
4517 else
4518 ++spaces[t];
4519 /* extra space when 'joinspaces' set and line ends in '.' */
4520 if ( p_js
4521 && (endcurr1 == '.'
4522 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4523 && (endcurr1 == '?' || endcurr1 == '!'))))
4524 ++spaces[t];
4525 }
4526 }
4527 currsize = (int)STRLEN(curr);
4528 sumsize += currsize + spaces[t];
4529 endcurr1 = endcurr2 = NUL;
4530 if (insert_space && currsize > 0)
4531 {
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004532 if (has_mbyte)
4533 {
4534 cend = curr + currsize;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004535 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004536 endcurr1 = (*mb_ptr2char)(cend);
4537 if (cend > curr)
4538 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004539 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004540 endcurr2 = (*mb_ptr2char)(cend);
4541 }
4542 }
4543 else
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004544 {
4545 endcurr1 = *(curr + currsize - 1);
4546 if (currsize > 1)
4547 endcurr2 = *(curr + currsize - 2);
4548 }
4549 }
4550 line_breakcheck();
4551 if (got_int)
4552 {
4553 ret = FAIL;
4554 goto theend;
4555 }
4556 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004558 /* store the column position before last line */
4559 col = sumsize - currsize - spaces[count - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004561 /* allocate the space for the new line */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004562 newp = alloc(sumsize + 1);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004563 cend = newp + sumsize;
4564 *cend = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565
Bram Moolenaar80e737c2019-05-17 19:56:34 +02004566#ifdef FEAT_TEXT_PROP
4567 // We need to move properties of the lines that are going to be deleted to
4568 // the new long one.
4569 if (curbuf->b_has_textprop && !text_prop_frozen)
4570 {
4571 // Allocate an array to copy the text properties of joined lines into.
4572 // And another array to store the number of properties in each line.
4573 prop_lines = (textprop_T **)alloc_clear(
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004574 (count - 1) * sizeof(textprop_T *));
4575 prop_lengths = (int *)alloc_clear((count - 1) * sizeof(int));
Bram Moolenaar80e737c2019-05-17 19:56:34 +02004576 if (prop_lengths == NULL)
4577 VIM_CLEAR(prop_lines);
4578 }
4579#endif
4580
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004581 /*
4582 * Move affected lines to the new long one.
Bram Moolenaar80e737c2019-05-17 19:56:34 +02004583 * This loops backwards over the joined lines, including the original line.
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004584 *
4585 * Move marks from each deleted line to the joined line, adjusting the
4586 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4587 * should not really be a problem.
4588 */
4589 for (t = count - 1; ; --t)
4590 {
Bram Moolenaare1e714e2018-12-31 23:58:24 +01004591 int spaces_removed;
4592
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004593 cend -= currsize;
4594 mch_memmove(cend, curr, (size_t)currsize);
4595 if (spaces[t] > 0)
4596 {
4597 cend -= spaces[t];
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02004598 vim_memset(cend, ' ', (size_t)(spaces[t]));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004599 }
Bram Moolenaare1e714e2018-12-31 23:58:24 +01004600
4601 // If deleting more spaces than adding, the cursor moves no more than
4602 // what is added if it is inside these spaces.
4603 spaces_removed = (curr - curr_start) - spaces[t];
4604
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004605 mark_col_adjust(curwin->w_cursor.lnum + t, (colnr_T)0, (linenr_T)-t,
Bram Moolenaare1e714e2018-12-31 23:58:24 +01004606 (long)(cend - newp - spaces_removed), spaces_removed);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004607 if (t == 0)
4608 break;
Bram Moolenaar80e737c2019-05-17 19:56:34 +02004609#ifdef FEAT_TEXT_PROP
4610 if (prop_lines != NULL)
4611 adjust_props_for_join(curwin->w_cursor.lnum + t,
4612 prop_lines + t - 1, prop_lengths + t - 1,
4613 (long)(cend - newp - spaces_removed), spaces_removed);
4614#endif
4615
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004616 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1));
Bram Moolenaar80e737c2019-05-17 19:56:34 +02004617#if defined(FEAT_COMMENTS)
Bram Moolenaar81340392012-06-06 16:12:59 +02004618 if (remove_comments)
4619 curr += comments[t - 1];
4620#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004621 if (insert_space && t > 1)
4622 curr = skipwhite(curr);
4623 currsize = (int)STRLEN(curr);
4624 }
Bram Moolenaar80e737c2019-05-17 19:56:34 +02004625
4626#ifdef FEAT_TEXT_PROP
4627 if (prop_lines != NULL)
4628 join_prop_lines(curwin->w_cursor.lnum, newp,
4629 prop_lines, prop_lengths, count);
4630 else
4631#endif
4632 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004634 if (setmark)
4635 {
4636 /* Set the '] mark. */
4637 curwin->w_buffer->b_op_end.lnum = curwin->w_cursor.lnum;
Bram Moolenaar787880a2019-05-17 20:17:40 +02004638 curwin->w_buffer->b_op_end.col = (colnr_T)sumsize;
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004639 }
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004640
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 /* Only report the change in the first line here, del_lines() will report
4642 * the deleted line. */
4643 changed_lines(curwin->w_cursor.lnum, currsize,
4644 curwin->w_cursor.lnum + 1, 0L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004646 * Delete following lines. To do this we move the cursor there
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 * briefly, and then move it back. After del_lines() the cursor may
4648 * have moved up (last line deleted), so the current lnum is kept in t.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 */
4650 t = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 ++curwin->w_cursor.lnum;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004652 del_lines(count - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 curwin->w_cursor.lnum = t;
4654
4655 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004656 * Set the cursor column:
4657 * Vi compatible: use the column of the first join
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004658 * vim: use the column of the last join
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004660 curwin->w_cursor.col =
4661 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 check_cursor_col();
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004663
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 curwin->w_set_curswant = TRUE;
4666
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004667theend:
4668 vim_free(spaces);
Bram Moolenaar81340392012-06-06 16:12:59 +02004669#if defined(FEAT_COMMENTS) || defined(PROTO)
4670 if (remove_comments)
4671 vim_free(comments);
4672#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004673 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674}
4675
4676#ifdef FEAT_COMMENTS
4677/*
4678 * Return TRUE if the two comment leaders given are the same. "lnum" is
4679 * the first line. White-space is ignored. Note that the whole of
4680 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4681 */
4682 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004683same_leader(
4684 linenr_T lnum,
4685 int leader1_len,
4686 char_u *leader1_flags,
4687 int leader2_len,
4688 char_u *leader2_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689{
4690 int idx1 = 0, idx2 = 0;
4691 char_u *p;
4692 char_u *line1;
4693 char_u *line2;
4694
4695 if (leader1_len == 0)
4696 return (leader2_len == 0);
4697
4698 /*
4699 * If first leader has 'f' flag, the lines can be joined only if the
4700 * second line does not have a leader.
4701 * If first leader has 'e' flag, the lines can never be joined.
4702 * If fist leader has 's' flag, the lines can only be joined if there is
4703 * some text after it and the second line has the 'm' flag.
4704 */
4705 if (leader1_flags != NULL)
4706 {
4707 for (p = leader1_flags; *p && *p != ':'; ++p)
4708 {
4709 if (*p == COM_FIRST)
4710 return (leader2_len == 0);
4711 if (*p == COM_END)
4712 return FALSE;
4713 if (*p == COM_START)
4714 {
4715 if (*(ml_get(lnum) + leader1_len) == NUL)
4716 return FALSE;
4717 if (leader2_flags == NULL || leader2_len == 0)
4718 return FALSE;
4719 for (p = leader2_flags; *p && *p != ':'; ++p)
4720 if (*p == COM_MIDDLE)
4721 return TRUE;
4722 return FALSE;
4723 }
4724 }
4725 }
4726
4727 /*
4728 * Get current line and next line, compare the leaders.
4729 * The first line has to be saved, only one line can be locked at a time.
4730 */
4731 line1 = vim_strsave(ml_get(lnum));
4732 if (line1 != NULL)
4733 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004734 for (idx1 = 0; VIM_ISWHITE(line1[idx1]); ++idx1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 ;
4736 line2 = ml_get(lnum + 1);
4737 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4738 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004739 if (!VIM_ISWHITE(line2[idx2]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 {
4741 if (line1[idx1++] != line2[idx2])
4742 break;
4743 }
4744 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004745 while (VIM_ISWHITE(line1[idx1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 ++idx1;
4747 }
4748 vim_free(line1);
4749 }
4750 return (idx2 == leader2_len && idx1 == leader1_len);
4751}
4752#endif
4753
4754/*
Bram Moolenaar66accae2012-01-10 13:44:27 +01004755 * Implementation of the format operator 'gq'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 */
4757 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004758op_format(
4759 oparg_T *oap,
4760 int keep_cursor) /* keep cursor on same text char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761{
4762 long old_line_count = curbuf->b_ml.ml_line_count;
4763
4764 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4765 * can put it back there. */
4766 curwin->w_cursor = oap->cursor_start;
4767
4768 if (u_save((linenr_T)(oap->start.lnum - 1),
4769 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4770 return;
4771 curwin->w_cursor = oap->start;
4772
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 if (oap->is_VIsual)
4774 /* When there is no change: need to remove the Visual selection */
4775 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776
4777 /* Set '[ mark at the start of the formatted area */
4778 curbuf->b_op_start = oap->start;
4779
4780 /* For "gw" remember the cursor position and put it back below (adjusted
4781 * for joined and split lines). */
4782 if (keep_cursor)
4783 saved_cursor = oap->cursor_start;
4784
Bram Moolenaar81a82092008-03-12 16:27:00 +00004785 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786
4787 /*
4788 * Leave the cursor at the first non-blank of the last formatted line.
4789 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4790 * line, so "." will do the next lines.
4791 */
4792 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4793 ++curwin->w_cursor.lnum;
4794 beginline(BL_WHITE | BL_FIX);
4795 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4796 msgmore(old_line_count);
4797
4798 /* put '] mark on the end of the formatted area */
4799 curbuf->b_op_end = curwin->w_cursor;
4800
4801 if (keep_cursor)
4802 {
4803 curwin->w_cursor = saved_cursor;
4804 saved_cursor.lnum = 0;
4805 }
4806
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 if (oap->is_VIsual)
4808 {
4809 win_T *wp;
4810
4811 FOR_ALL_WINDOWS(wp)
4812 {
4813 if (wp->w_old_cursor_lnum != 0)
4814 {
4815 /* When lines have been inserted or deleted, adjust the end of
4816 * the Visual area to be redrawn. */
4817 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4818 wp->w_old_cursor_lnum += old_line_count;
4819 else
4820 wp->w_old_visual_lnum += old_line_count;
4821 }
4822 }
4823 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824}
4825
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004826#if defined(FEAT_EVAL) || defined(PROTO)
4827/*
4828 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4829 */
4830 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004831op_formatexpr(oparg_T *oap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004832{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004833 if (oap->is_VIsual)
4834 /* When there is no change: need to remove the Visual selection */
4835 redraw_curbuf_later(INVERTED);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004836
Bram Moolenaar700303e2010-07-11 17:35:50 +02004837 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0)
4838 /* As documented: when 'formatexpr' returns non-zero fall back to
4839 * internal formatting. */
4840 op_format(oap, FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004841}
4842
4843 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004844fex_format(
4845 linenr_T lnum,
4846 long count,
4847 int c) /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004848{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004849 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4850 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004851 int r;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004852 char_u *fex;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004853
4854 /*
4855 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004856 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004857 */
4858 set_vim_var_nr(VV_LNUM, lnum);
4859 set_vim_var_nr(VV_COUNT, count);
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004860 set_vim_var_char(c);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004861
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004862 /* Make a copy, the option could be changed while calling it. */
4863 fex = vim_strsave(curbuf->b_p_fex);
4864 if (fex == NULL)
4865 return 0;
4866
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004867 /*
4868 * Evaluate the function.
4869 */
4870 if (use_sandbox)
4871 ++sandbox;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004872 r = (int)eval_to_number(fex);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004873 if (use_sandbox)
4874 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004875
4876 set_vim_var_string(VV_CHAR, NULL, -1);
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004877 vim_free(fex);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004878
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004879 return r;
4880}
4881#endif
4882
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883/*
4884 * Format "line_count" lines, starting at the cursor position.
4885 * When "line_count" is negative, format until the end of the paragraph.
4886 * Lines after the cursor line are saved for undo, caller must have saved the
4887 * first line.
4888 */
4889 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004890format_lines(
4891 linenr_T line_count,
4892 int avoid_fex) /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893{
4894 int max_len;
4895 int is_not_par; /* current line not part of parag. */
4896 int next_is_not_par; /* next line not part of paragraph */
4897 int is_end_par; /* at end of paragraph */
4898 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4899 int next_is_start_par = FALSE;
4900#ifdef FEAT_COMMENTS
4901 int leader_len = 0; /* leader len of current line */
4902 int next_leader_len; /* leader len of next line */
4903 char_u *leader_flags = NULL; /* flags for leader of current line */
4904 char_u *next_leader_flags; /* flags for leader of next line */
4905 int do_comments; /* format comments */
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004906 int do_comments_list = 0; /* format comments with 'n' or '2' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907#endif
4908 int advance = TRUE;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004909 int second_indent = -1; /* indent for second line (comment
4910 * aware) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 int do_second_indent;
4912 int do_number_indent;
4913 int do_trail_white;
4914 int first_par_line = TRUE;
4915 int smd_save;
4916 long count;
4917 int need_set_indent = TRUE; /* set indent of next paragraph */
4918 int force_format = FALSE;
4919 int old_State = State;
4920
4921 /* length of a line to force formatting: 3 * 'tw' */
4922 max_len = comp_textwidth(TRUE) * 3;
4923
4924 /* check for 'q', '2' and '1' in 'formatoptions' */
4925#ifdef FEAT_COMMENTS
4926 do_comments = has_format_option(FO_Q_COMS);
4927#endif
4928 do_second_indent = has_format_option(FO_Q_SECOND);
4929 do_number_indent = has_format_option(FO_Q_NUMBER);
4930 do_trail_white = has_format_option(FO_WHITE_PAR);
4931
4932 /*
4933 * Get info about the previous and current line.
4934 */
4935 if (curwin->w_cursor.lnum > 1)
4936 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4937#ifdef FEAT_COMMENTS
4938 , &leader_len, &leader_flags, do_comments
4939#endif
4940 );
4941 else
4942 is_not_par = TRUE;
4943 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4944#ifdef FEAT_COMMENTS
4945 , &next_leader_len, &next_leader_flags, do_comments
4946#endif
4947 );
4948 is_end_par = (is_not_par || next_is_not_par);
4949 if (!is_end_par && do_trail_white)
4950 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4951
4952 curwin->w_cursor.lnum--;
4953 for (count = line_count; count != 0 && !got_int; --count)
4954 {
4955 /*
4956 * Advance to next paragraph.
4957 */
4958 if (advance)
4959 {
4960 curwin->w_cursor.lnum++;
4961 prev_is_end_par = is_end_par;
4962 is_not_par = next_is_not_par;
4963#ifdef FEAT_COMMENTS
4964 leader_len = next_leader_len;
4965 leader_flags = next_leader_flags;
4966#endif
4967 }
4968
4969 /*
4970 * The last line to be formatted.
4971 */
4972 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4973 {
4974 next_is_not_par = TRUE;
4975#ifdef FEAT_COMMENTS
4976 next_leader_len = 0;
4977 next_leader_flags = NULL;
4978#endif
4979 }
4980 else
4981 {
4982 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4983#ifdef FEAT_COMMENTS
4984 , &next_leader_len, &next_leader_flags, do_comments
4985#endif
4986 );
4987 if (do_number_indent)
4988 next_is_start_par =
4989 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4990 }
4991 advance = TRUE;
4992 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4993 if (!is_end_par && do_trail_white)
4994 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4995
4996 /*
4997 * Skip lines that are not in a paragraph.
4998 */
4999 if (is_not_par)
5000 {
5001 if (line_count < 0)
5002 break;
5003 }
5004 else
5005 {
5006 /*
5007 * For the first line of a paragraph, check indent of second line.
5008 * Don't do this for comments and empty lines.
5009 */
5010 if (first_par_line
5011 && (do_second_indent || do_number_indent)
5012 && prev_is_end_par
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005013 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01005015 if (do_second_indent && !LINEEMPTY(curwin->w_cursor.lnum + 1))
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005016 {
5017#ifdef FEAT_COMMENTS
5018 if (leader_len == 0 && next_leader_len == 0)
5019 {
5020 /* no comment found */
5021#endif
5022 second_indent =
5023 get_indent_lnum(curwin->w_cursor.lnum + 1);
5024#ifdef FEAT_COMMENTS
5025 }
5026 else
5027 {
5028 second_indent = next_leader_len;
5029 do_comments_list = 1;
5030 }
5031#endif
5032 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 else if (do_number_indent)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005034 {
5035#ifdef FEAT_COMMENTS
5036 if (leader_len == 0 && next_leader_len == 0)
5037 {
5038 /* no comment found */
5039#endif
5040 second_indent =
5041 get_number_indent(curwin->w_cursor.lnum);
5042#ifdef FEAT_COMMENTS
5043 }
5044 else
5045 {
5046 /* get_number_indent() is now "comment aware"... */
5047 second_indent =
5048 get_number_indent(curwin->w_cursor.lnum);
5049 do_comments_list = 1;
5050 }
5051#endif
5052 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 }
5054
5055 /*
5056 * When the comment leader changes, it's the end of the paragraph.
5057 */
5058 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
5059#ifdef FEAT_COMMENTS
5060 || !same_leader(curwin->w_cursor.lnum,
5061 leader_len, leader_flags,
5062 next_leader_len, next_leader_flags)
5063#endif
5064 )
5065 is_end_par = TRUE;
5066
5067 /*
5068 * If we have got to the end of a paragraph, or the line is
5069 * getting long, format it.
5070 */
5071 if (is_end_par || force_format)
5072 {
5073 if (need_set_indent)
5074 /* replace indent in first line with minimal number of
5075 * tabs and spaces, according to current options */
5076 (void)set_indent(get_indent(), SIN_CHANGED);
5077
5078 /* put cursor on last non-space */
5079 State = NORMAL; /* don't go past end-of-line */
5080 coladvance((colnr_T)MAXCOL);
5081 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
5082 dec_cursor();
5083
5084 /* do the formatting, without 'showmode' */
5085 State = INSERT; /* for open_line() */
5086 smd_save = p_smd;
5087 p_smd = FALSE;
5088 insertchar(NUL, INSCHAR_FORMAT
5089#ifdef FEAT_COMMENTS
5090 + (do_comments ? INSCHAR_DO_COM : 0)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005091 + (do_comments && do_comments_list
5092 ? INSCHAR_COM_LIST : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00005094 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 State = old_State;
5096 p_smd = smd_save;
5097 second_indent = -1;
5098 /* at end of par.: need to set indent of next par. */
5099 need_set_indent = is_end_par;
5100 if (is_end_par)
5101 {
5102 /* When called with a negative line count, break at the
5103 * end of the paragraph. */
5104 if (line_count < 0)
5105 break;
5106 first_par_line = TRUE;
5107 }
5108 force_format = FALSE;
5109 }
5110
5111 /*
5112 * When still in same paragraph, join the lines together. But
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005113 * first delete the leader from the second line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 */
5115 if (!is_end_par)
5116 {
5117 advance = FALSE;
5118 curwin->w_cursor.lnum++;
5119 curwin->w_cursor.col = 0;
5120 if (line_count < 0 && u_save_cursor() == FAIL)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02005121 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122#ifdef FEAT_COMMENTS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123 if (next_leader_len > 0)
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005124 {
5125 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005126 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
Bram Moolenaare1e714e2018-12-31 23:58:24 +01005127 (long)-next_leader_len, 0);
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005128 } else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129#endif
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005130 if (second_indent > 0) /* the "leader" for FO_Q_SECOND */
5131 {
Bram Moolenaare2e69e42017-09-02 20:30:35 +02005132 int indent = getwhitecols_curline();
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005133
5134 if (indent > 0)
5135 {
5136 (void)del_bytes(indent, FALSE, FALSE);
5137 mark_col_adjust(curwin->w_cursor.lnum,
Bram Moolenaare1e714e2018-12-31 23:58:24 +01005138 (colnr_T)0, 0L, (long)-indent, 0);
Bram Moolenaar92c2db82013-11-02 23:59:35 +01005139 }
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005140 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 curwin->w_cursor.lnum--;
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02005142 if (do_join(2, TRUE, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 {
5144 beep_flush();
5145 break;
5146 }
5147 first_par_line = FALSE;
5148 /* If the line is getting long, format it next time */
5149 if (STRLEN(ml_get_curline()) > (size_t)max_len)
5150 force_format = TRUE;
5151 else
5152 force_format = FALSE;
5153 }
5154 }
5155 line_breakcheck();
5156 }
5157}
5158
5159/*
5160 * Return TRUE if line "lnum" ends in a white character.
5161 */
5162 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005163ends_in_white(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164{
5165 char_u *s = ml_get(lnum);
5166 size_t l;
5167
5168 if (*s == NUL)
5169 return FALSE;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005170 /* Don't use STRLEN() inside VIM_ISWHITE(), SAS/C complains: "macro
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 * invocation may call function multiple times". */
5172 l = STRLEN(s) - 1;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005173 return VIM_ISWHITE(s[l]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174}
5175
5176/*
5177 * Blank lines, and lines containing only the comment leader, are left
5178 * untouched by the formatting. The function returns TRUE in this
5179 * case. It also returns TRUE when a line starts with the end of a comment
5180 * ('e' in comment flags), so that this line is skipped, and not joined to the
5181 * previous line. A new paragraph starts after a blank line, or when the
5182 * comment leader changes -- webb.
5183 */
5184#ifdef FEAT_COMMENTS
5185 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005186fmt_check_par(
5187 linenr_T lnum,
5188 int *leader_len,
5189 char_u **leader_flags,
5190 int do_comments)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191{
5192 char_u *flags = NULL; /* init for GCC */
5193 char_u *ptr;
5194
5195 ptr = ml_get(lnum);
5196 if (do_comments)
Bram Moolenaar81340392012-06-06 16:12:59 +02005197 *leader_len = get_leader_len(ptr, leader_flags, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198 else
5199 *leader_len = 0;
5200
5201 if (*leader_len > 0)
5202 {
5203 /*
5204 * Search for 'e' flag in comment leader flags.
5205 */
5206 flags = *leader_flags;
5207 while (*flags && *flags != ':' && *flags != COM_END)
5208 ++flags;
5209 }
5210
5211 return (*skipwhite(ptr + *leader_len) == NUL
5212 || (*leader_len > 0 && *flags == COM_END)
5213 || startPS(lnum, NUL, FALSE));
5214}
5215#else
5216 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005217fmt_check_par(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218{
5219 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
5220}
5221#endif
5222
5223/*
5224 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
5225 * previous line is in the same paragraph. Used for auto-formatting.
5226 */
5227 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005228paragraph_start(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229{
5230 char_u *p;
5231#ifdef FEAT_COMMENTS
5232 int leader_len = 0; /* leader len of current line */
5233 char_u *leader_flags = NULL; /* flags for leader of current line */
5234 int next_leader_len; /* leader len of next line */
5235 char_u *next_leader_flags; /* flags for leader of next line */
5236 int do_comments; /* format comments */
5237#endif
5238
5239 if (lnum <= 1)
5240 return TRUE; /* start of the file */
5241
5242 p = ml_get(lnum - 1);
5243 if (*p == NUL)
5244 return TRUE; /* after empty line */
5245
5246#ifdef FEAT_COMMENTS
5247 do_comments = has_format_option(FO_Q_COMS);
5248#endif
5249 if (fmt_check_par(lnum - 1
5250#ifdef FEAT_COMMENTS
5251 , &leader_len, &leader_flags, do_comments
5252#endif
5253 ))
5254 return TRUE; /* after non-paragraph line */
5255
5256 if (fmt_check_par(lnum
5257#ifdef FEAT_COMMENTS
5258 , &next_leader_len, &next_leader_flags, do_comments
5259#endif
5260 ))
5261 return TRUE; /* "lnum" is not a paragraph line */
5262
5263 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
5264 return TRUE; /* missing trailing space in previous line. */
5265
5266 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
5267 return TRUE; /* numbered item starts in "lnum". */
5268
5269#ifdef FEAT_COMMENTS
5270 if (!same_leader(lnum - 1, leader_len, leader_flags,
5271 next_leader_len, next_leader_flags))
5272 return TRUE; /* change of comment leader. */
5273#endif
5274
5275 return FALSE;
5276}
5277
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278/*
5279 * prepare a few things for block mode yank/delete/tilde
5280 *
5281 * for delete:
5282 * - textlen includes the first/last char to be (partly) deleted
5283 * - start/endspaces is the number of columns that are taken by the
5284 * first/last deleted char minus the number of columns that have to be
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +00005285 * deleted.
5286 * for yank and tilde:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287 * - textlen includes the first/last char to be wholly yanked
5288 * - start/endspaces is the number of columns of the first/last yanked char
5289 * that are to be yanked.
5290 */
5291 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005292block_prep(
5293 oparg_T *oap,
5294 struct block_def *bdp,
5295 linenr_T lnum,
5296 int is_del)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297{
5298 int incr = 0;
5299 char_u *pend;
5300 char_u *pstart;
5301 char_u *line;
5302 char_u *prev_pstart;
5303 char_u *prev_pend;
5304
5305 bdp->startspaces = 0;
5306 bdp->endspaces = 0;
5307 bdp->textlen = 0;
5308 bdp->start_vcol = 0;
5309 bdp->end_vcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310 bdp->is_short = FALSE;
5311 bdp->is_oneChar = FALSE;
5312 bdp->pre_whitesp = 0;
5313 bdp->pre_whitesp_c = 0;
5314 bdp->end_char_vcols = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 bdp->start_char_vcols = 0;
5316
5317 line = ml_get(lnum);
5318 pstart = line;
5319 prev_pstart = line;
5320 while (bdp->start_vcol < oap->start_vcol && *pstart)
5321 {
5322 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02005323 incr = lbr_chartabsize(line, pstart, (colnr_T)bdp->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 bdp->start_vcol += incr;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005325 if (VIM_ISWHITE(*pstart))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326 {
5327 bdp->pre_whitesp += incr;
5328 bdp->pre_whitesp_c++;
5329 }
5330 else
5331 {
5332 bdp->pre_whitesp = 0;
5333 bdp->pre_whitesp_c = 0;
5334 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335 prev_pstart = pstart;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005336 MB_PTR_ADV(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 }
5338 bdp->start_char_vcols = incr;
5339 if (bdp->start_vcol < oap->start_vcol) /* line too short */
5340 {
5341 bdp->end_vcol = bdp->start_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 bdp->is_short = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005343 if (!is_del || oap->op_type == OP_APPEND)
5344 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
5345 }
5346 else
5347 {
5348 /* notice: this converts partly selected Multibyte characters to
5349 * spaces, too. */
5350 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
5351 if (is_del && bdp->startspaces)
5352 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
5353 pend = pstart;
5354 bdp->end_vcol = bdp->start_vcol;
5355 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
5356 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 bdp->is_oneChar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 if (oap->op_type == OP_INSERT)
5359 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5360 else if (oap->op_type == OP_APPEND)
5361 {
5362 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
5363 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5364 }
5365 else
5366 {
5367 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
5368 if (is_del && oap->op_type != OP_LSHIFT)
5369 {
5370 /* just putting the sum of those two into
5371 * bdp->startspaces doesn't work for Visual replace,
5372 * so we have to split the tab in two */
5373 bdp->startspaces = bdp->start_char_vcols
5374 - (bdp->start_vcol - oap->start_vcol);
5375 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5376 }
5377 }
5378 }
5379 else
5380 {
5381 prev_pend = pend;
5382 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
5383 {
5384 /* Count a tab for what it's worth (if list mode not on) */
5385 prev_pend = pend;
Bram Moolenaar1dc92332015-01-27 13:22:20 +01005386 incr = lbr_chartabsize_adv(line, &pend, (colnr_T)bdp->end_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387 bdp->end_vcol += incr;
5388 }
5389 if (bdp->end_vcol <= oap->end_vcol
5390 && (!is_del
5391 || oap->op_type == OP_APPEND
5392 || oap->op_type == OP_REPLACE)) /* line too short */
5393 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 bdp->is_short = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395 /* Alternative: include spaces to fill up the block.
5396 * Disadvantage: can lead to trailing spaces when the line is
5397 * short where the text is put */
5398 /* if (!is_del || oap->op_type == OP_APPEND) */
5399 if (oap->op_type == OP_APPEND || virtual_op)
5400 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00005401 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005402 else
5403 bdp->endspaces = 0; /* replace doesn't add characters */
5404 }
5405 else if (bdp->end_vcol > oap->end_vcol)
5406 {
5407 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5408 if (!is_del && bdp->endspaces)
5409 {
5410 bdp->endspaces = incr - bdp->endspaces;
5411 if (pend != pstart)
5412 pend = prev_pend;
5413 }
5414 }
5415 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416 bdp->end_char_vcols = incr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 if (is_del && bdp->startspaces)
5418 pstart = prev_pstart;
5419 bdp->textlen = (int)(pend - pstart);
5420 }
5421 bdp->textcol = (colnr_T) (pstart - line);
5422 bdp->textstart = pstart;
5423}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425/*
Bram Moolenaard79e5502016-01-10 22:13:02 +01005426 * Handle the add/subtract operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005428 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005429op_addsub(
5430 oparg_T *oap,
5431 linenr_T Prenum1, /* Amount of add/subtract */
5432 int g_cmd) /* was g<c-a>/g<c-x> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433{
Bram Moolenaard79e5502016-01-10 22:13:02 +01005434 pos_T pos;
5435 struct block_def bd;
5436 int change_cnt = 0;
5437 linenr_T amount = Prenum1;
5438
Bram Moolenaar6b731882018-11-16 20:54:47 +01005439 // do_addsub() might trigger re-evaluation of 'foldexpr' halfway, when the
Bram Moolenaarbdace832019-03-02 10:13:42 +01005440 // buffer is not completely updated yet. Postpone updating folds until before
Bram Moolenaar6b731882018-11-16 20:54:47 +01005441 // the call to changed_lines().
5442#ifdef FEAT_FOLDING
5443 disable_fold_update++;
5444#endif
5445
Bram Moolenaard79e5502016-01-10 22:13:02 +01005446 if (!VIsual_active)
5447 {
5448 pos = curwin->w_cursor;
5449 if (u_save_cursor() == FAIL)
Bram Moolenaar6b731882018-11-16 20:54:47 +01005450 {
5451#ifdef FEAT_FOLDING
5452 disable_fold_update--;
5453#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01005454 return;
Bram Moolenaar6b731882018-11-16 20:54:47 +01005455 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01005456 change_cnt = do_addsub(oap->op_type, &pos, 0, amount);
Bram Moolenaar6b731882018-11-16 20:54:47 +01005457#ifdef FEAT_FOLDING
5458 disable_fold_update--;
5459#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01005460 if (change_cnt)
5461 changed_lines(pos.lnum, 0, pos.lnum + 1, 0L);
5462 }
5463 else
5464 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005465 int one_change;
5466 int length;
5467 pos_T startpos;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005468
5469 if (u_save((linenr_T)(oap->start.lnum - 1),
5470 (linenr_T)(oap->end.lnum + 1)) == FAIL)
Bram Moolenaar6b731882018-11-16 20:54:47 +01005471 {
5472#ifdef FEAT_FOLDING
5473 disable_fold_update--;
5474#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01005475 return;
Bram Moolenaar6b731882018-11-16 20:54:47 +01005476 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01005477
5478 pos = oap->start;
5479 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
5480 {
5481 if (oap->block_mode) /* Visual block mode */
5482 {
5483 block_prep(oap, &bd, pos.lnum, FALSE);
5484 pos.col = bd.textcol;
5485 length = bd.textlen;
5486 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005487 else if (oap->motion_type == MLINE)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005488 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005489 curwin->w_cursor.col = 0;
5490 pos.col = 0;
5491 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5492 }
5493 else /* oap->motion_type == MCHAR */
5494 {
Bram Moolenaar5fe6bdf2017-12-05 17:22:12 +01005495 if (pos.lnum == oap->start.lnum && !oap->inclusive)
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005496 dec(&(oap->end));
5497 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5498 pos.col = 0;
5499 if (pos.lnum == oap->start.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005500 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005501 pos.col += oap->start.col;
5502 length -= oap->start.col;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005503 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005504 if (pos.lnum == oap->end.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005505 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005506 length = (int)STRLEN(ml_get(oap->end.lnum));
5507 if (oap->end.col >= length)
5508 oap->end.col = length - 1;
5509 length = oap->end.col - pos.col + 1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005510 }
5511 }
5512 one_change = do_addsub(oap->op_type, &pos, length, amount);
5513 if (one_change)
5514 {
5515 /* Remember the start position of the first change. */
5516 if (change_cnt == 0)
5517 startpos = curbuf->b_op_start;
5518 ++change_cnt;
5519 }
5520
5521#ifdef FEAT_NETBEANS_INTG
5522 if (netbeans_active() && one_change)
5523 {
5524 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
5525
5526 netbeans_removed(curbuf, pos.lnum, pos.col, (long)length);
5527 netbeans_inserted(curbuf, pos.lnum, pos.col,
5528 &ptr[pos.col], length);
5529 }
5530#endif
5531 if (g_cmd && one_change)
5532 amount += Prenum1;
5533 }
Bram Moolenaar6b731882018-11-16 20:54:47 +01005534
5535#ifdef FEAT_FOLDING
5536 disable_fold_update--;
5537#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01005538 if (change_cnt)
5539 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
5540
5541 if (!change_cnt && oap->is_VIsual)
5542 /* No change: need to remove the Visual selection */
5543 redraw_curbuf_later(INVERTED);
5544
5545 /* Set '[ mark if something changed. Keep the last end
5546 * position from do_addsub(). */
5547 if (change_cnt > 0)
5548 curbuf->b_op_start = startpos;
5549
5550 if (change_cnt > p_report)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005551 smsg(NGETTEXT("%ld line changed", "%ld lines changed",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02005552 change_cnt), change_cnt);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005553 }
5554}
5555
5556/*
5557 * Add or subtract 'Prenum1' from a number in a line
5558 * op_type is OP_NR_ADD or OP_NR_SUB
5559 *
5560 * Returns TRUE if some character was changed.
5561 */
5562 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005563do_addsub(
5564 int op_type,
5565 pos_T *pos,
5566 int length,
5567 linenr_T Prenum1)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005568{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569 int col;
5570 char_u *buf1;
5571 char_u buf2[NUMBUFLEN];
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005572 int pre; /* 'X'/'x': hex; '0': octal; 'B'/'b': bin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005574 uvarnumber_T n;
5575 uvarnumber_T oldn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576 char_u *ptr;
5577 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005578 int todel;
5579 int dohex;
5580 int dooct;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005581 int dobin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582 int doalp;
5583 int firstdigit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584 int subtract;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005585 int negative = FALSE;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02005586 int was_positive = TRUE;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005587 int visual = VIsual_active;
Bram Moolenaar3ec32612015-07-12 15:02:38 +02005588 int did_change = FALSE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005589 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005590 int maxlen = 0;
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005591 pos_T startpos;
5592 pos_T endpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593
5594 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5595 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005596 dobin = (vim_strchr(curbuf->b_p_nf, 'b') != NULL); /* "Bin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5598
Bram Moolenaard79e5502016-01-10 22:13:02 +01005599 curwin->w_cursor = *pos;
5600 ptr = ml_get(pos->lnum);
5601 col = pos->col;
5602
5603 if (*ptr == NUL)
5604 goto theend;
5605
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 /*
5607 * First check if we are on a hexadecimal number, after the "0x".
5608 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005609 if (!VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005611 if (dobin)
5612 while (col > 0 && vim_isbdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005613 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005614 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005615 if (has_mbyte)
5616 col -= (*mb_head_off)(ptr, ptr + col);
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005617 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005618
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005619 if (dohex)
5620 while (col > 0 && vim_isxdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005621 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005622 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005623 if (has_mbyte)
5624 col -= (*mb_head_off)(ptr, ptr + col);
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005625 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005626
5627 if ( dobin
5628 && dohex
5629 && ! ((col > 0
5630 && (ptr[col] == 'X'
5631 || ptr[col] == 'x')
5632 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005633 && (!has_mbyte ||
5634 !(*mb_head_off)(ptr, ptr + col - 1))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005635 && vim_isxdigit(ptr[col + 1]))))
5636 {
5637
5638 /* In case of binary/hexadecimal pattern overlap match, rescan */
5639
Bram Moolenaard79e5502016-01-10 22:13:02 +01005640 col = pos->col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005641
5642 while (col > 0 && vim_isdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005643 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005644 col--;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005645 if (has_mbyte)
5646 col -= (*mb_head_off)(ptr, ptr + col);
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005647 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005648 }
5649
5650 if (( dohex
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005651 && col > 0
5652 && (ptr[col] == 'X'
5653 || ptr[col] == 'x')
5654 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005655 && (!has_mbyte ||
5656 !(*mb_head_off)(ptr, ptr + col - 1))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005657 && vim_isxdigit(ptr[col + 1])) ||
5658 ( dobin
5659 && col > 0
5660 && (ptr[col] == 'B'
5661 || ptr[col] == 'b')
5662 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005663 && (!has_mbyte ||
5664 !(*mb_head_off)(ptr, ptr + col - 1))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005665 && vim_isbdigit(ptr[col + 1])))
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005666 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005667 /* Found hexadecimal or binary number, move to its start. */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005668 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005669 if (has_mbyte)
5670 col -= (*mb_head_off)(ptr, ptr + col);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005671 }
5672 else
5673 {
5674 /*
5675 * Search forward and then backward to find the start of number.
5676 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005677 col = pos->col;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005678
5679 while (ptr[col] != NUL
5680 && !vim_isdigit(ptr[col])
5681 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005682 col += MB_PTR2LEN(ptr + col);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005683
5684 while (col > 0
5685 && vim_isdigit(ptr[col - 1])
5686 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005687 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005688 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005689 if (has_mbyte)
5690 col -= (*mb_head_off)(ptr, ptr + col);
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005691 }
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005692 }
5693 }
5694
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005695 if (visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005696 {
5697 while (ptr[col] != NUL && length > 0
5698 && !vim_isdigit(ptr[col])
5699 && !(doalp && ASCII_ISALPHA(ptr[col])))
5700 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005701 int mb_len = MB_PTR2LEN(ptr + col);
5702
5703 col += mb_len;
5704 length -= mb_len;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005705 }
5706
5707 if (length == 0)
5708 goto theend;
5709
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005710 if (col > pos->col && ptr[col - 1] == '-'
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005711 && (!has_mbyte || !(*mb_head_off)(ptr, ptr + col - 1)))
Bram Moolenaard79e5502016-01-10 22:13:02 +01005712 {
5713 negative = TRUE;
5714 was_positive = FALSE;
5715 }
5716 }
5717
5718 /*
5719 * If a number was found, and saving for undo works, replace the number.
5720 */
5721 firstdigit = ptr[col];
5722 if (!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5723 {
5724 beep_flush();
5725 goto theend;
5726 }
5727
5728 if (doalp && ASCII_ISALPHA(firstdigit))
5729 {
5730 /* decrement or increment alphabetic character */
5731 if (op_type == OP_NR_SUB)
5732 {
5733 if (CharOrd(firstdigit) < Prenum1)
5734 {
5735 if (isupper(firstdigit))
5736 firstdigit = 'A';
5737 else
5738 firstdigit = 'a';
5739 }
5740 else
5741#ifdef EBCDIC
5742 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5743#else
5744 firstdigit -= Prenum1;
5745#endif
5746 }
5747 else
5748 {
5749 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5750 {
5751 if (isupper(firstdigit))
5752 firstdigit = 'Z';
5753 else
5754 firstdigit = 'z';
5755 }
5756 else
5757#ifdef EBCDIC
5758 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5759#else
5760 firstdigit += Prenum1;
5761#endif
5762 }
5763 curwin->w_cursor.col = col;
5764 if (!did_change)
5765 startpos = curwin->w_cursor;
5766 did_change = TRUE;
5767 (void)del_char(FALSE);
5768 ins_char(firstdigit);
5769 endpos = curwin->w_cursor;
5770 curwin->w_cursor.col = col;
5771 }
5772 else
5773 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005774 if (col > 0 && ptr[col - 1] == '-'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005775 && (!has_mbyte ||
5776 !(*mb_head_off)(ptr, ptr + col - 1))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005777 && !visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005778 {
5779 /* negative number */
5780 --col;
5781 negative = TRUE;
5782 }
5783 /* get the number value (unsigned) */
5784 if (visual && VIsual_mode != 'V')
5785 maxlen = (curbuf->b_visual.vi_curswant == MAXCOL
5786 ? (int)STRLEN(ptr) - col
5787 : length);
5788
5789 vim_str2nr(ptr + col, &pre, &length,
5790 0 + (dobin ? STR2NR_BIN : 0)
5791 + (dooct ? STR2NR_OCT : 0)
5792 + (dohex ? STR2NR_HEX : 0),
Bram Moolenaar16e9b852019-05-19 19:59:35 +02005793 NULL, &n, maxlen, FALSE);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005794
5795 /* ignore leading '-' for hex and octal and bin numbers */
5796 if (pre && negative)
5797 {
5798 ++col;
5799 --length;
5800 negative = FALSE;
5801 }
5802 /* add or subtract */
5803 subtract = FALSE;
5804 if (op_type == OP_NR_SUB)
5805 subtract ^= TRUE;
5806 if (negative)
5807 subtract ^= TRUE;
5808
5809 oldn = n;
5810 if (subtract)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005811 n -= (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005812 else
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005813 n += (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005814 /* handle wraparound for decimal numbers */
5815 if (!pre)
5816 {
5817 if (subtract)
5818 {
5819 if (n > oldn)
5820 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005821 n = 1 + (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005822 negative ^= TRUE;
5823 }
5824 }
5825 else
5826 {
5827 /* add */
5828 if (n < oldn)
5829 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005830 n = (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005831 negative ^= TRUE;
5832 }
5833 }
5834 if (n == 0)
5835 negative = FALSE;
5836 }
5837
5838 if (visual && !was_positive && !negative && col > 0)
5839 {
5840 /* need to remove the '-' */
5841 col--;
5842 length++;
5843 }
5844
5845 /*
5846 * Delete the old number.
5847 */
5848 curwin->w_cursor.col = col;
5849 if (!did_change)
5850 startpos = curwin->w_cursor;
5851 did_change = TRUE;
5852 todel = length;
5853 c = gchar_cursor();
5854 /*
5855 * Don't include the '-' in the length, only the length of the
5856 * part after it is kept the same.
5857 */
5858 if (c == '-')
5859 --length;
5860 while (todel-- > 0)
5861 {
5862 if (c < 0x100 && isalpha(c))
5863 {
5864 if (isupper(c))
5865 hexupper = TRUE;
5866 else
5867 hexupper = FALSE;
5868 }
5869 /* del_char() will mark line needing displaying */
5870 (void)del_char(FALSE);
5871 c = gchar_cursor();
5872 }
5873
5874 /*
5875 * Prepare the leading characters in buf1[].
5876 * When there are many leading zeros it could be very long.
5877 * Allocate a bit too much.
5878 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02005879 buf1 = alloc(length + NUMBUFLEN);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005880 if (buf1 == NULL)
5881 goto theend;
5882 ptr = buf1;
Bram Moolenaardc633cf2016-04-23 14:33:19 +02005883 if (negative && (!visual || was_positive))
Bram Moolenaard79e5502016-01-10 22:13:02 +01005884 *ptr++ = '-';
Bram Moolenaard79e5502016-01-10 22:13:02 +01005885 if (pre)
5886 {
5887 *ptr++ = '0';
5888 --length;
5889 }
5890 if (pre == 'b' || pre == 'B' ||
5891 pre == 'x' || pre == 'X')
5892 {
5893 *ptr++ = pre;
5894 --length;
5895 }
5896
5897 /*
5898 * Put the number characters in buf2[].
5899 */
5900 if (pre == 'b' || pre == 'B')
5901 {
5902 int i;
5903 int bit = 0;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005904 int bits = sizeof(uvarnumber_T) * 8;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005905
5906 /* leading zeros */
5907 for (bit = bits; bit > 0; bit--)
5908 if ((n >> (bit - 1)) & 0x1) break;
5909
5910 for (i = 0; bit > 0; bit--)
5911 buf2[i++] = ((n >> (bit - 1)) & 0x1) ? '1' : '0';
5912
5913 buf2[i] = '\0';
5914 }
5915 else if (pre == 0)
Bram Moolenaarea391762018-04-08 13:07:22 +02005916 vim_snprintf((char *)buf2, NUMBUFLEN, "%llu",
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01005917 (long_long_u_T)n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005918 else if (pre == '0')
Bram Moolenaarea391762018-04-08 13:07:22 +02005919 vim_snprintf((char *)buf2, NUMBUFLEN, "%llo",
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01005920 (long_long_u_T)n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005921 else if (pre && hexupper)
Bram Moolenaarea391762018-04-08 13:07:22 +02005922 vim_snprintf((char *)buf2, NUMBUFLEN, "%llX",
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01005923 (long_long_u_T)n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005924 else
Bram Moolenaarea391762018-04-08 13:07:22 +02005925 vim_snprintf((char *)buf2, NUMBUFLEN, "%llx",
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01005926 (long_long_u_T)n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005927 length -= (int)STRLEN(buf2);
5928
5929 /*
5930 * Adjust number of zeros to the new number of digits, so the
5931 * total length of the number remains the same.
5932 * Don't do this when
5933 * the result may look like an octal number.
5934 */
5935 if (firstdigit == '0' && !(dooct && pre == 0))
5936 while (length-- > 0)
5937 *ptr++ = '0';
5938 *ptr = NUL;
5939 STRCAT(buf1, buf2);
5940 ins_str(buf1); /* insert the new number */
5941 vim_free(buf1);
5942 endpos = curwin->w_cursor;
5943 if (did_change && curwin->w_cursor.col)
5944 --curwin->w_cursor.col;
5945 }
5946
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005947 if (did_change)
5948 {
5949 /* set the '[ and '] marks */
5950 curbuf->b_op_start = startpos;
5951 curbuf->b_op_end = endpos;
5952 if (curbuf->b_op_end.col > 0)
5953 --curbuf->b_op_end.col;
5954 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01005955
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005956theend:
5957 if (visual)
5958 curwin->w_cursor = save_cursor;
Bram Moolenaar8e081252016-03-21 23:13:32 +01005959 else if (did_change)
5960 curwin->w_set_curswant = TRUE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005961
Bram Moolenaard79e5502016-01-10 22:13:02 +01005962 return did_change;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963}
5964
5965#ifdef FEAT_VIMINFO
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005966
5967static yankreg_T *y_read_regs = NULL;
5968
5969#define REG_PREVIOUS 1
5970#define REG_EXEC 2
5971
5972/*
5973 * Prepare for reading viminfo registers when writing viminfo later.
5974 */
5975 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02005976prepare_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005977{
5978 y_read_regs = (yankreg_T *)alloc_clear(NUM_REGISTERS
5979 * (int)sizeof(yankreg_T));
5980}
5981
5982 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02005983finish_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005984{
5985 int i;
5986 int j;
5987
5988 if (y_read_regs != NULL)
5989 {
5990 for (i = 0; i < NUM_REGISTERS; ++i)
5991 if (y_read_regs[i].y_array != NULL)
5992 {
5993 for (j = 0; j < y_read_regs[i].y_size; j++)
5994 vim_free(y_read_regs[i].y_array[j]);
5995 vim_free(y_read_regs[i].y_array);
5996 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01005997 VIM_CLEAR(y_read_regs);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005998 }
5999}
6000
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006002read_viminfo_register(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006003{
6004 int eof;
6005 int do_it = TRUE;
6006 int size;
6007 int limit;
6008 int i;
6009 int set_prev = FALSE;
6010 char_u *str;
6011 char_u **array = NULL;
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01006012 int new_type = MCHAR; /* init to shut up compiler */
6013 colnr_T new_width = 0; /* init to shut up compiler */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006014
6015 /* We only get here (hopefully) if line[0] == '"' */
6016 str = virp->vir_line + 1;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006017
6018 /* If the line starts with "" this is the y_previous register. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019 if (*str == '"')
6020 {
6021 set_prev = TRUE;
6022 str++;
6023 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00006024
Bram Moolenaar071d4272004-06-13 20:20:40 +00006025 if (!ASCII_ISALNUM(*str) && *str != '-')
6026 {
6027 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
6028 return TRUE; /* too many errors, pretend end-of-file */
6029 do_it = FALSE;
6030 }
6031 get_yank_register(*str++, FALSE);
6032 if (!force && y_current->y_array != NULL)
6033 do_it = FALSE;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006034
6035 if (*str == '@')
6036 {
6037 /* "x@: register x used for @@ */
6038 if (force || execreg_lastc == NUL)
6039 execreg_lastc = str[-1];
6040 }
6041
Bram Moolenaar071d4272004-06-13 20:20:40 +00006042 size = 0;
6043 limit = 100; /* Optimized for registers containing <= 100 lines */
6044 if (do_it)
6045 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006046 /*
6047 * Build the new register in array[].
6048 * y_array is kept as-is until done.
6049 * The "do_it" flag is reset when something is wrong, in which case
6050 * array[] needs to be freed.
6051 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052 if (set_prev)
6053 y_previous = y_current;
Bram Moolenaar964b3742019-05-24 18:54:09 +02006054 array = (char_u **)alloc(limit * sizeof(char_u *));
Bram Moolenaar42b94362009-05-26 16:12:37 +00006055 str = skipwhite(skiptowhite(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056 if (STRNCMP(str, "CHAR", 4) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006057 new_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058 else if (STRNCMP(str, "BLOCK", 5) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006059 new_type = MBLOCK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006060 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006061 new_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 /* get the block width; if it's missing we get a zero, which is OK */
6063 str = skipwhite(skiptowhite(str));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006064 new_width = getdigits(&str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 }
6066
6067 while (!(eof = viminfo_readline(virp))
6068 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
6069 {
6070 if (do_it)
6071 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006072 if (size == limit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006074 char_u **new_array = (char_u **)
Bram Moolenaar964b3742019-05-24 18:54:09 +02006075 alloc(limit * 2 * sizeof(char_u *));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006076
6077 if (new_array == NULL)
6078 {
6079 do_it = FALSE;
6080 break;
6081 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006082 for (i = 0; i < limit; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006083 new_array[i] = array[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084 vim_free(array);
Bram Moolenaare88b0032014-12-17 21:00:49 +01006085 array = new_array;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006086 limit *= 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087 }
6088 str = viminfo_readstring(virp, 1, TRUE);
6089 if (str != NULL)
6090 array[size++] = str;
6091 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006092 /* error, don't store the result */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006093 do_it = FALSE;
6094 }
6095 }
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01006096
Bram Moolenaar071d4272004-06-13 20:20:40 +00006097 if (do_it)
6098 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006099 /* free y_array[] */
6100 for (i = 0; i < y_current->y_size; i++)
6101 vim_free(y_current->y_array[i]);
6102 vim_free(y_current->y_array);
6103
6104 y_current->y_type = new_type;
6105 y_current->y_width = new_width;
6106 y_current->y_size = size;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006107 y_current->y_time_set = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006108 if (size == 0)
6109 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006110 y_current->y_array = NULL;
6111 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006112 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006114 /* Move the lines from array[] to y_array[]. */
Bram Moolenaar964b3742019-05-24 18:54:09 +02006115 y_current->y_array = (char_u **)alloc(size * sizeof(char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116 for (i = 0; i < size; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006117 {
6118 if (y_current->y_array == NULL)
6119 vim_free(array[i]);
6120 else
6121 y_current->y_array[i] = array[i];
6122 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006124 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006125 else
6126 {
6127 /* Free array[] if it was filled. */
6128 for (i = 0; i < size; i++)
6129 vim_free(array[i]);
6130 }
6131 vim_free(array);
6132
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133 return eof;
6134}
6135
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006136/*
6137 * Accept a new style register line from the viminfo, store it when it's new.
6138 */
6139 void
6140handle_viminfo_register(garray_T *values, int force)
6141{
6142 bval_T *vp = (bval_T *)values->ga_data;
6143 int flags;
6144 int name;
6145 int type;
6146 int linecount;
6147 int width;
6148 time_t timestamp;
6149 yankreg_T *y_ptr;
6150 int i;
6151
6152 /* Check the format:
6153 * |{bartype},{flags},{name},{type},
6154 * {linecount},{width},{timestamp},"line1","line2"
6155 */
6156 if (values->ga_len < 6
6157 || vp[0].bv_type != BVAL_NR
6158 || vp[1].bv_type != BVAL_NR
6159 || vp[2].bv_type != BVAL_NR
6160 || vp[3].bv_type != BVAL_NR
6161 || vp[4].bv_type != BVAL_NR
6162 || vp[5].bv_type != BVAL_NR)
6163 return;
6164 flags = vp[0].bv_nr;
6165 name = vp[1].bv_nr;
Bram Moolenaar67e37202016-06-14 21:32:28 +02006166 if (name < 0 || name >= NUM_REGISTERS)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006167 return;
6168 type = vp[2].bv_nr;
6169 if (type != MCHAR && type != MLINE && type != MBLOCK)
6170 return;
6171 linecount = vp[3].bv_nr;
6172 if (values->ga_len < 6 + linecount)
6173 return;
6174 width = vp[4].bv_nr;
6175 if (width < 0)
6176 return;
6177
6178 if (y_read_regs != NULL)
6179 /* Reading viminfo for merging and writing. Store the register
6180 * content, don't update the current registers. */
6181 y_ptr = &y_read_regs[name];
6182 else
6183 y_ptr = &y_regs[name];
6184
6185 /* Do not overwrite unless forced or the timestamp is newer. */
6186 timestamp = (time_t)vp[5].bv_nr;
6187 if (y_ptr->y_array != NULL && !force
6188 && (timestamp == 0 || y_ptr->y_time_set > timestamp))
6189 return;
6190
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02006191 if (y_ptr->y_array != NULL)
6192 for (i = 0; i < y_ptr->y_size; i++)
6193 vim_free(y_ptr->y_array[i]);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006194 vim_free(y_ptr->y_array);
6195
6196 if (y_read_regs == NULL)
6197 {
6198 if (flags & REG_PREVIOUS)
6199 y_previous = y_ptr;
6200 if ((flags & REG_EXEC) && (force || execreg_lastc == NUL))
6201 execreg_lastc = get_register_name(name);
6202 }
6203 y_ptr->y_type = type;
6204 y_ptr->y_width = width;
6205 y_ptr->y_size = linecount;
6206 y_ptr->y_time_set = timestamp;
6207 if (linecount == 0)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006208 {
Bram Moolenaar6ee96582019-04-27 22:06:37 +02006209 y_ptr->y_array = NULL;
6210 return;
6211 }
Bram Moolenaar964b3742019-05-24 18:54:09 +02006212 y_ptr->y_array = (char_u **)alloc(linecount * sizeof(char_u *));
Bram Moolenaar6ee96582019-04-27 22:06:37 +02006213 if (y_ptr->y_array == NULL)
6214 {
6215 y_ptr->y_size = 0; // ensure object state is consistent
6216 return;
6217 }
6218 for (i = 0; i < linecount; i++)
6219 {
6220 if (vp[i + 6].bv_allocated)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006221 {
Bram Moolenaar6ee96582019-04-27 22:06:37 +02006222 y_ptr->y_array[i] = vp[i + 6].bv_string;
6223 vp[i + 6].bv_string = NULL;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006224 }
Bram Moolenaar6ee96582019-04-27 22:06:37 +02006225 else
6226 y_ptr->y_array[i] = vim_strsave(vp[i + 6].bv_string);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006227 }
6228}
6229
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006231write_viminfo_registers(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006233 int i, j;
6234 char_u *type;
6235 char_u c;
6236 int num_lines;
6237 int max_num_lines;
6238 int max_kbyte;
6239 long len;
6240 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241
Bram Moolenaar64404472010-06-26 06:24:45 +02006242 fputs(_("\n# Registers:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243
6244 /* Get '<' value, use old '"' value if '<' is not found. */
6245 max_num_lines = get_viminfo_parameter('<');
6246 if (max_num_lines < 0)
6247 max_num_lines = get_viminfo_parameter('"');
6248 if (max_num_lines == 0)
6249 return;
6250 max_kbyte = get_viminfo_parameter('s');
6251 if (max_kbyte == 0)
6252 return;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006253
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254 for (i = 0; i < NUM_REGISTERS; i++)
6255 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006256#ifdef FEAT_CLIPBOARD
6257 /* Skip '*'/'+' register, we don't want them back next time */
6258 if (i == STAR_REGISTER || i == PLUS_REGISTER)
6259 continue;
6260#endif
6261#ifdef FEAT_DND
6262 /* Neither do we want the '~' register */
6263 if (i == TILDE_REGISTER)
6264 continue;
6265#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006266 /* When reading viminfo for merging and writing: Use the register from
6267 * viminfo if it's newer. */
6268 if (y_read_regs != NULL
6269 && y_read_regs[i].y_array != NULL
6270 && (y_regs[i].y_array == NULL ||
6271 y_read_regs[i].y_time_set > y_regs[i].y_time_set))
6272 y_ptr = &y_read_regs[i];
6273 else if (y_regs[i].y_array == NULL)
6274 continue;
6275 else
6276 y_ptr = &y_regs[i];
6277
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006278 /* Skip empty registers. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006279 num_lines = y_ptr->y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006280 if (num_lines == 0
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006281 || (num_lines == 1 && y_ptr->y_type == MCHAR
6282 && *y_ptr->y_array[0] == NUL))
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006283 continue;
6284
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 if (max_kbyte > 0)
6286 {
6287 /* Skip register if there is more text than the maximum size. */
6288 len = 0;
6289 for (j = 0; j < num_lines; j++)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006290 len += (long)STRLEN(y_ptr->y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291 if (len > (long)max_kbyte * 1024L)
6292 continue;
6293 }
6294
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006295 switch (y_ptr->y_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296 {
6297 case MLINE:
6298 type = (char_u *)"LINE";
6299 break;
6300 case MCHAR:
6301 type = (char_u *)"CHAR";
6302 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 case MBLOCK:
6304 type = (char_u *)"BLOCK";
6305 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306 default:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006307 semsg(_("E574: Unknown register type %d"), y_ptr->y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006308 type = (char_u *)"LINE";
6309 break;
6310 }
6311 if (y_previous == &y_regs[i])
6312 fprintf(fp, "\"");
6313 c = get_register_name(i);
Bram Moolenaar42b94362009-05-26 16:12:37 +00006314 fprintf(fp, "\"%c", c);
6315 if (c == execreg_lastc)
6316 fprintf(fp, "@");
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006317 fprintf(fp, "\t%s\t%d\n", type, (int)y_ptr->y_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318
6319 /* If max_num_lines < 0, then we save ALL the lines in the register */
6320 if (max_num_lines > 0 && num_lines > max_num_lines)
6321 num_lines = max_num_lines;
6322 for (j = 0; j < num_lines; j++)
6323 {
6324 putc('\t', fp);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006325 viminfo_writestring(fp, y_ptr->y_array[j]);
6326 }
6327
6328 {
6329 int flags = 0;
6330 int remaining;
6331
6332 /* New style with a bar line. Format:
6333 * |{bartype},{flags},{name},{type},
6334 * {linecount},{width},{timestamp},"line1","line2"
6335 * flags: REG_PREVIOUS - register is y_previous
Bram Moolenaarf12519d2018-02-06 22:52:49 +01006336 * REG_EXEC - used for @@
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006337 */
6338 if (y_previous == &y_regs[i])
6339 flags |= REG_PREVIOUS;
6340 if (c == execreg_lastc)
6341 flags |= REG_EXEC;
6342 fprintf(fp, "|%d,%d,%d,%d,%d,%d,%ld", BARTYPE_REGISTER, flags,
6343 i, y_ptr->y_type, num_lines, (int)y_ptr->y_width,
6344 (long)y_ptr->y_time_set);
6345 /* 11 chars for type/flags/name/type, 3 * 20 for numbers */
6346 remaining = LSIZE - 71;
6347 for (j = 0; j < num_lines; j++)
6348 {
6349 putc(',', fp);
6350 --remaining;
6351 remaining = barline_writestring(fp, y_ptr->y_array[j],
6352 remaining);
6353 }
6354 putc('\n', fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006355 }
6356 }
6357}
6358#endif /* FEAT_VIMINFO */
6359
6360#if defined(FEAT_CLIPBOARD) || defined(PROTO)
6361/*
6362 * SELECTION / PRIMARY ('*')
6363 *
6364 * Text selection stuff that uses the GUI selection register '*'. When using a
6365 * GUI this may be text from another window, otherwise it is the last text we
6366 * had highlighted with VIsual mode. With mouse support, clicking the middle
6367 * button performs the paste, otherwise you will need to do <"*p>. "
6368 * If not under X, it is synonymous with the clipboard register '+'.
6369 *
6370 * X CLIPBOARD ('+')
6371 *
6372 * Text selection stuff that uses the GUI clipboard register '+'.
6373 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
6374 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
6375 * otherwise you will need to do <"+p>. "
6376 * If not under X, it is synonymous with the selection register '*'.
6377 */
6378
6379/*
6380 * Routine to export any final X selection we had to the environment
Bram Moolenaarf58a8472017-03-05 18:03:04 +01006381 * so that the text is still available after Vim has exited. X selections
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382 * only exist while the owning application exists, so we write to the
6383 * permanent (while X runs) store CUT_BUFFER0.
6384 * Dump the CLIPBOARD selection if we own it (it's logically the more
6385 * 'permanent' of the two), otherwise the PRIMARY one.
6386 * For now, use a hard-coded sanity limit of 1Mb of data.
6387 */
Bram Moolenaara6b7a082016-08-10 20:53:05 +02006388#if (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006389 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006390x11_export_final_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006391{
6392 Display *dpy;
6393 char_u *str = NULL;
6394 long_u len = 0;
6395 int motion_type = -1;
6396
6397# ifdef FEAT_GUI
6398 if (gui.in_use)
6399 dpy = X_DISPLAY;
6400 else
6401# endif
6402# ifdef FEAT_XCLIPBOARD
6403 dpy = xterm_dpy;
6404# else
6405 return;
6406# endif
6407
6408 /* Get selection to export */
6409 if (clip_plus.owned)
6410 motion_type = clip_convert_selection(&str, &len, &clip_plus);
6411 else if (clip_star.owned)
6412 motion_type = clip_convert_selection(&str, &len, &clip_star);
6413
6414 /* Check it's OK */
6415 if (dpy != NULL && str != NULL && motion_type >= 0
6416 && len < 1024*1024 && len > 0)
6417 {
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006418 int ok = TRUE;
6419
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006420 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
6421 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
6422 * encoding conversion usually doesn't work, so keep the text as-is.
6423 */
6424 if (has_mbyte)
6425 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006426 vimconv_T vc;
6427
6428 vc.vc_type = CONV_NONE;
6429 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
6430 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01006431 int intlen = len;
6432 char_u *conv_str;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006433
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006434 vc.vc_fail = TRUE;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006435 conv_str = string_convert(&vc, str, &intlen);
6436 len = intlen;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006437 if (conv_str != NULL)
6438 {
6439 vim_free(str);
6440 str = conv_str;
6441 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006442 else
6443 {
6444 ok = FALSE;
6445 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006446 convert_setup(&vc, NULL, NULL);
6447 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006448 else
6449 {
6450 ok = FALSE;
6451 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006452 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006453
6454 /* Do not store the string if conversion failed. Better to use any
6455 * other selection than garbled text. */
6456 if (ok)
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006457 {
6458 XStoreBuffer(dpy, (char *)str, (int)len, 0);
6459 XFlush(dpy);
6460 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461 }
6462
6463 vim_free(str);
6464}
6465#endif
6466
6467 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006468clip_free_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006470 yankreg_T *y_ptr = y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006471
6472 if (cbd == &clip_plus)
6473 y_current = &y_regs[PLUS_REGISTER];
6474 else
6475 y_current = &y_regs[STAR_REGISTER];
6476 free_yank_all();
6477 y_current->y_size = 0;
6478 y_current = y_ptr;
6479}
6480
6481/*
Bram Moolenaar870ba5f2019-01-11 14:37:20 +01006482 * Get the selected text and put it in register '*' or '+'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006483 */
6484 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006485clip_get_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006486{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006487 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488 pos_T old_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006489 pos_T old_visual;
6490 int old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006491 colnr_T old_curswant;
6492 int old_set_curswant;
6493 pos_T old_op_start, old_op_end;
6494 oparg_T oa;
6495 cmdarg_T ca;
6496
6497 if (cbd->owned)
6498 {
6499 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
6500 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
6501 return;
6502
6503 /* Get the text between clip_star.start & clip_star.end */
6504 old_y_previous = y_previous;
6505 old_y_current = y_current;
6506 old_cursor = curwin->w_cursor;
6507 old_curswant = curwin->w_curswant;
6508 old_set_curswant = curwin->w_set_curswant;
6509 old_op_start = curbuf->b_op_start;
6510 old_op_end = curbuf->b_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006511 old_visual = VIsual;
6512 old_visual_mode = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006513 clear_oparg(&oa);
6514 oa.regname = (cbd == &clip_plus ? '+' : '*');
6515 oa.op_type = OP_YANK;
6516 vim_memset(&ca, 0, sizeof(ca));
6517 ca.oap = &oa;
6518 ca.cmdchar = 'y';
6519 ca.count1 = 1;
6520 ca.retval = CA_NO_ADJ_OP_END;
6521 do_pending_operator(&ca, 0, TRUE);
6522 y_previous = old_y_previous;
6523 y_current = old_y_current;
6524 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006525 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006526 curwin->w_curswant = old_curswant;
6527 curwin->w_set_curswant = old_set_curswant;
6528 curbuf->b_op_start = old_op_start;
6529 curbuf->b_op_end = old_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006530 VIsual = old_visual;
6531 VIsual_mode = old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532 }
Bram Moolenaar3fcfa352017-03-29 19:20:41 +02006533 else if (!is_clipboard_needs_update())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006534 {
6535 clip_free_selection(cbd);
6536
6537 /* Try to get selected text from another window */
6538 clip_gen_request_selection(cbd);
6539 }
6540}
6541
Bram Moolenaard44347f2011-06-19 01:14:29 +02006542/*
6543 * Convert from the GUI selection string into the '*'/'+' register.
6544 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006545 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006546clip_yank_selection(
6547 int type,
6548 char_u *str,
6549 long len,
6550 VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006552 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553
6554 if (cbd == &clip_plus)
6555 y_ptr = &y_regs[PLUS_REGISTER];
6556 else
6557 y_ptr = &y_regs[STAR_REGISTER];
6558
6559 clip_free_selection(cbd);
6560
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006561 str_to_reg(y_ptr, type, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006562}
6563
6564/*
6565 * Convert the '*'/'+' register into a GUI selection string returned in *str
6566 * with length *len.
6567 * Returns the motion type, or -1 for failure.
6568 */
6569 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006570clip_convert_selection(char_u **str, long_u *len, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571{
6572 char_u *p;
6573 int lnum;
6574 int i, j;
6575 int_u eolsize;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006576 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006577
6578 if (cbd == &clip_plus)
6579 y_ptr = &y_regs[PLUS_REGISTER];
6580 else
6581 y_ptr = &y_regs[STAR_REGISTER];
6582
6583#ifdef USE_CRNL
6584 eolsize = 2;
6585#else
6586 eolsize = 1;
6587#endif
6588
6589 *str = NULL;
6590 *len = 0;
6591 if (y_ptr->y_array == NULL)
6592 return -1;
6593
6594 for (i = 0; i < y_ptr->y_size; i++)
6595 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
6596
6597 /*
6598 * Don't want newline character at end of last line if we're in MCHAR mode.
6599 */
6600 if (y_ptr->y_type == MCHAR && *len >= eolsize)
6601 *len -= eolsize;
6602
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02006603 p = *str = alloc(*len + 1); // add one to avoid zero
Bram Moolenaar071d4272004-06-13 20:20:40 +00006604 if (p == NULL)
6605 return -1;
6606 lnum = 0;
6607 for (i = 0, j = 0; i < (int)*len; i++, j++)
6608 {
6609 if (y_ptr->y_array[lnum][j] == '\n')
6610 p[i] = NUL;
6611 else if (y_ptr->y_array[lnum][j] == NUL)
6612 {
6613#ifdef USE_CRNL
6614 p[i++] = '\r';
6615#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006616 p[i] = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617 lnum++;
6618 j = -1;
6619 }
6620 else
6621 p[i] = y_ptr->y_array[lnum][j];
6622 }
6623 return y_ptr->y_type;
6624}
6625
6626
Bram Moolenaar071d4272004-06-13 20:20:40 +00006627/*
6628 * If we have written to a clipboard register, send the text to the clipboard.
6629 */
6630 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006631may_set_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632{
6633 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
6634 {
6635 clip_own_selection(&clip_star);
6636 clip_gen_set_selection(&clip_star);
6637 }
6638 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
6639 {
6640 clip_own_selection(&clip_plus);
6641 clip_gen_set_selection(&clip_plus);
6642 }
6643}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006644
6645#endif /* FEAT_CLIPBOARD || PROTO */
6646
6647
6648#if defined(FEAT_DND) || defined(PROTO)
6649/*
6650 * Replace the contents of the '~' register with str.
6651 */
6652 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006653dnd_yank_drag_data(char_u *str, long len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006655 yankreg_T *curr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006656
6657 curr = y_current;
6658 y_current = &y_regs[TILDE_REGISTER];
6659 free_yank_all();
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006660 str_to_reg(y_current, MCHAR, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661 y_current = curr;
6662}
6663#endif
6664
6665
6666#if defined(FEAT_EVAL) || defined(PROTO)
6667/*
6668 * Return the type of a register.
6669 * Used for getregtype()
6670 * Returns MAUTO for error.
6671 */
6672 char_u
Bram Moolenaar9b578142016-01-30 19:39:49 +01006673get_reg_type(int regname, long *reglen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006674{
6675 switch (regname)
6676 {
6677 case '%': /* file name */
6678 case '#': /* alternate file name */
6679 case '=': /* expression */
6680 case ':': /* last command line */
6681 case '/': /* last search-pattern */
6682 case '.': /* last inserted text */
6683#ifdef FEAT_SEARCHPATH
6684 case Ctrl_F: /* Filename under cursor */
6685 case Ctrl_P: /* Path under cursor, expand via "path" */
6686#endif
6687 case Ctrl_W: /* word under cursor */
6688 case Ctrl_A: /* WORD (mnemonic All) under cursor */
6689 case '_': /* black hole: always empty */
6690 return MCHAR;
6691 }
6692
6693#ifdef FEAT_CLIPBOARD
6694 regname = may_get_selection(regname);
6695#endif
6696
Bram Moolenaar32b92012014-01-14 12:33:36 +01006697 if (regname != NUL && !valid_yank_reg(regname, FALSE))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006698 return MAUTO;
Bram Moolenaar32b92012014-01-14 12:33:36 +01006699
Bram Moolenaar071d4272004-06-13 20:20:40 +00006700 get_yank_register(regname, FALSE);
6701
6702 if (y_current->y_array != NULL)
6703 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006704 if (reglen != NULL && y_current->y_type == MBLOCK)
6705 *reglen = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006706 return y_current->y_type;
6707 }
6708 return MAUTO;
6709}
6710
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006711/*
6712 * When "flags" has GREG_LIST return a list with text "s".
6713 * Otherwise just return "s".
6714 */
6715 static char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006716getreg_wrap_one_line(char_u *s, int flags)
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006717{
6718 if (flags & GREG_LIST)
6719 {
6720 list_T *list = list_alloc();
6721
6722 if (list != NULL)
6723 {
6724 if (list_append_string(list, NULL, -1) == FAIL)
6725 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006726 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006727 return NULL;
6728 }
6729 list->lv_first->li_tv.vval.v_string = s;
6730 }
6731 return (char_u *)list;
6732 }
6733 return s;
6734}
6735
Bram Moolenaar071d4272004-06-13 20:20:40 +00006736/*
6737 * Return the contents of a register as a single allocated string.
6738 * Used for "@r" in expressions and for getreg().
6739 * Returns NULL for error.
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006740 * Flags:
6741 * GREG_NO_EXPR Do not allow expression register
6742 * GREG_EXPR_SRC For the expression register: return expression itself,
6743 * not the result of its evaluation.
6744 * GREG_LIST Return a list of lines in place of a single string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006745 */
6746 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006747get_reg_contents(int regname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748{
6749 long i;
6750 char_u *retval;
6751 int allocated;
6752 long len;
6753
6754 /* Don't allow using an expression register inside an expression */
6755 if (regname == '=')
6756 {
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006757 if (flags & GREG_NO_EXPR)
6758 return NULL;
6759 if (flags & GREG_EXPR_SRC)
6760 return getreg_wrap_one_line(get_expr_line_src(), flags);
6761 return getreg_wrap_one_line(get_expr_line(), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762 }
6763
6764 if (regname == '@') /* "@@" is used for unnamed register */
6765 regname = '"';
6766
6767 /* check for valid regname */
6768 if (regname != NUL && !valid_yank_reg(regname, FALSE))
6769 return NULL;
6770
6771#ifdef FEAT_CLIPBOARD
6772 regname = may_get_selection(regname);
6773#endif
6774
6775 if (get_spec_reg(regname, &retval, &allocated, FALSE))
6776 {
6777 if (retval == NULL)
6778 return NULL;
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006779 if (allocated)
6780 return getreg_wrap_one_line(retval, flags);
6781 return getreg_wrap_one_line(vim_strsave(retval), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006782 }
6783
6784 get_yank_register(regname, FALSE);
6785 if (y_current->y_array == NULL)
6786 return NULL;
6787
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006788 if (flags & GREG_LIST)
6789 {
6790 list_T *list = list_alloc();
6791 int error = FALSE;
6792
6793 if (list == NULL)
6794 return NULL;
6795 for (i = 0; i < y_current->y_size; ++i)
6796 if (list_append_string(list, y_current->y_array[i], -1) == FAIL)
6797 error = TRUE;
6798 if (error)
6799 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006800 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006801 return NULL;
6802 }
6803 return (char_u *)list;
6804 }
6805
Bram Moolenaar071d4272004-06-13 20:20:40 +00006806 /*
6807 * Compute length of resulting string.
6808 */
6809 len = 0;
6810 for (i = 0; i < y_current->y_size; ++i)
6811 {
6812 len += (long)STRLEN(y_current->y_array[i]);
6813 /*
6814 * Insert a newline between lines and after last line if
6815 * y_type is MLINE.
6816 */
6817 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6818 ++len;
6819 }
6820
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02006821 retval = alloc(len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006822
6823 /*
6824 * Copy the lines of the yank register into the string.
6825 */
6826 if (retval != NULL)
6827 {
6828 len = 0;
6829 for (i = 0; i < y_current->y_size; ++i)
6830 {
6831 STRCPY(retval + len, y_current->y_array[i]);
6832 len += (long)STRLEN(retval + len);
6833
6834 /*
6835 * Insert a NL between lines and after the last line if y_type is
6836 * MLINE.
6837 */
6838 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6839 retval[len++] = '\n';
6840 }
6841 retval[len] = NUL;
6842 }
6843
6844 return retval;
6845}
6846
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006847 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006848init_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006849 int name,
6850 yankreg_T **old_y_previous,
6851 yankreg_T **old_y_current,
6852 int must_append,
6853 int *yank_type UNUSED)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006854{
6855 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6856 {
6857 emsg_invreg(name);
6858 return FAIL;
6859 }
6860
6861 /* Don't want to change the current (unnamed) register */
6862 *old_y_previous = y_previous;
6863 *old_y_current = y_current;
6864
6865 get_yank_register(name, TRUE);
6866 if (!y_append && !must_append)
6867 free_yank_all();
6868 return OK;
6869}
6870
6871 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006872finish_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006873 int name,
6874 yankreg_T *old_y_previous,
6875 yankreg_T *old_y_current)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006876{
6877# ifdef FEAT_CLIPBOARD
6878 /* Send text of clipboard register to the clipboard. */
6879 may_set_selection();
6880# endif
6881
6882 /* ':let @" = "val"' should change the meaning of the "" register */
6883 if (name != '"')
6884 y_previous = old_y_previous;
6885 y_current = old_y_current;
6886}
6887
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888/*
6889 * Store string "str" in register "name".
6890 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
6891 * If "must_append" is TRUE, always append to the register. Otherwise append
6892 * if "name" is an uppercase letter.
6893 * Note: "maxlen" and "must_append" don't work for the "/" register.
6894 * Careful: 'str' is modified, you may have to use a copy!
6895 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
6896 */
6897 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006898write_reg_contents(
6899 int name,
6900 char_u *str,
6901 int maxlen,
6902 int must_append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006903{
6904 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
6905}
6906
6907 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006908write_reg_contents_lst(
6909 int name,
6910 char_u **strings,
6911 int maxlen UNUSED,
6912 int must_append,
6913 int yank_type,
6914 long block_len)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006915{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006916 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006917
6918 if (name == '/'
6919#ifdef FEAT_EVAL
6920 || name == '='
6921#endif
6922 )
6923 {
6924 char_u *s;
6925
6926 if (strings[0] == NULL)
6927 s = (char_u *)"";
6928 else if (strings[1] != NULL)
6929 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006930 emsg(_("E883: search pattern and expression register may not "
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006931 "contain two or more lines"));
6932 return;
6933 }
6934 else
6935 s = strings[0];
6936 write_reg_contents_ex(name, s, -1, must_append, yank_type, block_len);
6937 return;
6938 }
6939
6940 if (name == '_') /* black hole: nothing to do */
6941 return;
6942
6943 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
6944 &yank_type) == FAIL)
6945 return;
6946
6947 str_to_reg(y_current, yank_type, (char_u *) strings, -1, block_len, TRUE);
6948
6949 finish_write_reg(name, old_y_previous, old_y_current);
6950}
6951
6952 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006953write_reg_contents_ex(
6954 int name,
6955 char_u *str,
6956 int maxlen,
6957 int must_append,
6958 int yank_type,
6959 long block_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006960{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006961 yankreg_T *old_y_previous, *old_y_current;
6962 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006963
Bram Moolenaare7566042005-06-17 22:00:15 +00006964 if (maxlen >= 0)
6965 len = maxlen;
6966 else
6967 len = (long)STRLEN(str);
6968
Bram Moolenaar071d4272004-06-13 20:20:40 +00006969 /* Special case: '/' search pattern */
6970 if (name == '/')
6971 {
6972 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
6973 return;
6974 }
6975
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01006976 if (name == '#')
6977 {
6978 buf_T *buf;
6979
6980 if (VIM_ISDIGIT(*str))
6981 {
6982 int num = atoi((char *)str);
6983
6984 buf = buflist_findnr(num);
6985 if (buf == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006986 semsg(_(e_nobufnr), (long)num);
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01006987 }
6988 else
6989 buf = buflist_findnr(buflist_findpat(str, str + STRLEN(str),
6990 TRUE, FALSE, FALSE));
6991 if (buf == NULL)
6992 return;
6993 curwin->w_alt_fnum = buf->b_fnum;
6994 return;
6995 }
6996
Bram Moolenaare7566042005-06-17 22:00:15 +00006997#ifdef FEAT_EVAL
6998 if (name == '=')
6999 {
7000 char_u *p, *s;
7001
7002 p = vim_strnsave(str, (int)len);
7003 if (p == NULL)
7004 return;
7005 if (must_append)
7006 {
7007 s = concat_str(get_expr_line_src(), p);
7008 vim_free(p);
7009 p = s;
Bram Moolenaare7566042005-06-17 22:00:15 +00007010 }
7011 set_expr_line(p);
7012 return;
7013 }
7014#endif
7015
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016 if (name == '_') /* black hole: nothing to do */
7017 return;
7018
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007019 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
7020 &yank_type) == FAIL)
7021 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007022
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007023 str_to_reg(y_current, yank_type, str, len, block_len, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007024
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007025 finish_write_reg(name, old_y_previous, old_y_current);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007026}
7027#endif /* FEAT_EVAL */
7028
7029#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
7030/*
7031 * Put a string into a register. When the register is not empty, the string
7032 * is appended.
7033 */
7034 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007035str_to_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007036 yankreg_T *y_ptr, /* pointer to yank register */
7037 int yank_type, /* MCHAR, MLINE, MBLOCK, MAUTO */
7038 char_u *str, /* string to put in register */
7039 long len, /* length of string */
7040 long blocklen, /* width of Visual block */
7041 int str_list) /* TRUE if str is char_u ** */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007042{
Bram Moolenaard44347f2011-06-19 01:14:29 +02007043 int type; /* MCHAR, MLINE or MBLOCK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007044 int lnum;
7045 long start;
7046 long i;
7047 int extra;
7048 int newlines; /* number of lines added */
7049 int extraline = 0; /* extra line at the end */
7050 int append = FALSE; /* append to last line in register */
7051 char_u *s;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007052 char_u **ss;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053 char_u **pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007054 long maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007055
Bram Moolenaarcde547a2009-11-17 11:43:06 +00007056 if (y_ptr->y_array == NULL) /* NULL means empty register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057 y_ptr->y_size = 0;
7058
Bram Moolenaard44347f2011-06-19 01:14:29 +02007059 if (yank_type == MAUTO)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007060 type = ((str_list || (len > 0 && (str[len - 1] == NL
7061 || str[len - 1] == CAR)))
Bram Moolenaard44347f2011-06-19 01:14:29 +02007062 ? MLINE : MCHAR);
7063 else
7064 type = yank_type;
7065
Bram Moolenaar071d4272004-06-13 20:20:40 +00007066 /*
7067 * Count the number of lines within the string
7068 */
7069 newlines = 0;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007070 if (str_list)
7071 {
7072 for (ss = (char_u **) str; *ss != NULL; ++ss)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007073 ++newlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007074 }
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007075 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007076 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007077 for (i = 0; i < len; i++)
7078 if (str[i] == '\n')
7079 ++newlines;
7080 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
7081 {
7082 extraline = 1;
7083 ++newlines; /* count extra newline at the end */
7084 }
7085 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
7086 {
7087 append = TRUE;
7088 --newlines; /* uncount newline when appending first line */
7089 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090 }
7091
Bram Moolenaar659c94d2015-05-04 20:19:21 +02007092 /* Without any lines make the register empty. */
7093 if (y_ptr->y_size + newlines == 0)
7094 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01007095 VIM_CLEAR(y_ptr->y_array);
Bram Moolenaar659c94d2015-05-04 20:19:21 +02007096 return;
7097 }
7098
Bram Moolenaar071d4272004-06-13 20:20:40 +00007099 /*
7100 * Allocate an array to hold the pointers to the new register lines.
7101 * If the register was not empty, move the existing lines to the new array.
7102 */
7103 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
7104 * sizeof(char_u *), TRUE);
7105 if (pp == NULL) /* out of memory */
7106 return;
7107 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
7108 pp[lnum] = y_ptr->y_array[lnum];
7109 vim_free(y_ptr->y_array);
7110 y_ptr->y_array = pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007111 maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007112
7113 /*
7114 * Find the end of each line and save it into the array.
7115 */
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007116 if (str_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007117 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007118 for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum)
7119 {
Bram Moolenaar121f9bd2014-04-29 15:55:43 +02007120 i = (long)STRLEN(*ss);
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007121 pp[lnum] = vim_strnsave(*ss, i);
7122 if (i > maxlen)
7123 maxlen = i;
7124 }
7125 }
7126 else
7127 {
7128 for (start = 0; start < len + extraline; start += i + 1)
7129 {
7130 for (i = start; i < len; ++i) /* find the end of the line */
7131 if (str[i] == '\n')
7132 break;
7133 i -= start; /* i is now length of line */
7134 if (i > maxlen)
7135 maxlen = i;
7136 if (append)
7137 {
7138 --lnum;
7139 extra = (int)STRLEN(y_ptr->y_array[lnum]);
7140 }
7141 else
7142 extra = 0;
Bram Moolenaar964b3742019-05-24 18:54:09 +02007143 s = alloc(i + extra + 1);
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007144 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007145 break;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007146 if (extra)
7147 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
7148 if (append)
7149 vim_free(y_ptr->y_array[lnum]);
7150 if (i)
7151 mch_memmove(s + extra, str + start, (size_t)i);
7152 extra += i;
7153 s[extra] = NUL;
7154 y_ptr->y_array[lnum++] = s;
7155 while (--extra >= 0)
7156 {
7157 if (*s == NUL)
7158 *s = '\n'; /* replace NUL with newline */
7159 ++s;
7160 }
7161 append = FALSE; /* only first line is appended */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007162 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007163 }
7164 y_ptr->y_type = type;
7165 y_ptr->y_size = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007166 if (type == MBLOCK)
7167 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
7168 else
7169 y_ptr->y_width = 0;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007170#ifdef FEAT_VIMINFO
7171 y_ptr->y_time_set = vim_time();
7172#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007173}
7174#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
7175
7176 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007177clear_oparg(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007178{
7179 vim_memset(oap, 0, sizeof(oparg_T));
7180}
7181
Bram Moolenaar071d4272004-06-13 20:20:40 +00007182/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00007183 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007184 *
7185 * "Words" are counted by looking for boundaries between non-space and
7186 * space characters. (it seems to produce results that match 'wc'.)
7187 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00007188 * Return value is byte count; word count for the line is added to "*wc".
7189 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007190 *
7191 * The function will only examine the first "limit" characters in the
7192 * line, stopping if it encounters an end-of-line (NUL byte). In that
7193 * case, eol_size will be added to the character count to account for
7194 * the size of the EOL character.
7195 */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007196 static varnumber_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01007197line_count_info(
7198 char_u *line,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007199 varnumber_T *wc,
7200 varnumber_T *cc,
7201 varnumber_T limit,
Bram Moolenaar9b578142016-01-30 19:39:49 +01007202 int eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203{
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007204 varnumber_T i;
7205 varnumber_T words = 0;
7206 varnumber_T chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007207 int is_word = 0;
7208
Bram Moolenaar88b1ba12012-06-29 13:34:19 +02007209 for (i = 0; i < limit && line[i] != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007210 {
7211 if (is_word)
7212 {
7213 if (vim_isspace(line[i]))
7214 {
7215 words++;
7216 is_word = 0;
7217 }
7218 }
7219 else if (!vim_isspace(line[i]))
7220 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007221 ++chars;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007222 i += (*mb_ptr2len)(line + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007223 }
7224
7225 if (is_word)
7226 words++;
7227 *wc += words;
7228
7229 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar1cb7e092011-08-10 12:11:01 +02007230 if (i < limit && line[i] == NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007231 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007232 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007233 chars += eol_size;
7234 }
7235 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007236 return i;
7237}
7238
7239/*
7240 * Give some info about the position of the cursor (for "g CTRL-G").
7241 * In Visual mode, give some info about the selected region. (In this case,
7242 * the *_count_cursor variables store running totals for the selection.)
Bram Moolenaared767a22016-01-03 22:49:16 +01007243 * When "dict" is not NULL store the info there instead of showing it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007244 */
7245 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007246cursor_pos_info(dict_T *dict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247{
7248 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007249 char_u buf1[50];
7250 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007251 linenr_T lnum;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007252 varnumber_T byte_count = 0;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007253 varnumber_T bom_count = 0;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007254 varnumber_T byte_count_cursor = 0;
7255 varnumber_T char_count = 0;
7256 varnumber_T char_count_cursor = 0;
7257 varnumber_T word_count = 0;
7258 varnumber_T word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007259 int eol_size;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007260 varnumber_T last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007261 long line_count_selected = 0;
7262 pos_T min_pos, max_pos;
7263 oparg_T oparg;
7264 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007265
7266 /*
7267 * Compute the length of the file in characters.
7268 */
7269 if (curbuf->b_ml.ml_flags & ML_EMPTY)
7270 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007271 if (dict == NULL)
7272 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01007273 msg(_(no_lines_msg));
Bram Moolenaared767a22016-01-03 22:49:16 +01007274 return;
7275 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007276 }
7277 else
7278 {
7279 if (get_fileformat(curbuf) == EOL_DOS)
7280 eol_size = 2;
7281 else
7282 eol_size = 1;
7283
Bram Moolenaar071d4272004-06-13 20:20:40 +00007284 if (VIsual_active)
7285 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007286 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007287 {
7288 min_pos = VIsual;
7289 max_pos = curwin->w_cursor;
7290 }
7291 else
7292 {
7293 min_pos = curwin->w_cursor;
7294 max_pos = VIsual;
7295 }
7296 if (*p_sel == 'e' && max_pos.col > 0)
7297 --max_pos.col;
7298
7299 if (VIsual_mode == Ctrl_V)
7300 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00007301#ifdef FEAT_LINEBREAK
7302 char_u * saved_sbr = p_sbr;
7303
7304 /* Make 'sbr' empty for a moment to get the correct size. */
7305 p_sbr = empty_option;
7306#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007307 oparg.is_VIsual = 1;
7308 oparg.block_mode = TRUE;
7309 oparg.op_type = OP_NOP;
7310 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007311 &oparg.start_vcol, &oparg.end_vcol);
Bram Moolenaar81d00072009-04-29 15:41:40 +00007312#ifdef FEAT_LINEBREAK
7313 p_sbr = saved_sbr;
7314#endif
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007315 if (curwin->w_curswant == MAXCOL)
7316 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007317 /* Swap the start, end vcol if needed */
7318 if (oparg.end_vcol < oparg.start_vcol)
7319 {
7320 oparg.end_vcol += oparg.start_vcol;
7321 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
7322 oparg.end_vcol -= oparg.start_vcol;
7323 }
7324 }
7325 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
7326 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007327
7328 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
7329 {
7330 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007331 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007332 {
7333 ui_breakcheck();
7334 if (got_int)
7335 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007336 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007337 }
7338
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339 /* Do extra processing for VIsual mode. */
7340 if (VIsual_active
7341 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
7342 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00007343 char_u *s = NULL;
7344 long len = 0L;
7345
Bram Moolenaar071d4272004-06-13 20:20:40 +00007346 switch (VIsual_mode)
7347 {
7348 case Ctrl_V:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007349 virtual_op = virtual_active();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350 block_prep(&oparg, &bd, lnum, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007351 virtual_op = MAYBE;
Bram Moolenaardef9e822004-12-31 20:58:58 +00007352 s = bd.textstart;
7353 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007354 break;
7355 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00007356 s = ml_get(lnum);
7357 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007358 break;
7359 case 'v':
7360 {
7361 colnr_T start_col = (lnum == min_pos.lnum)
7362 ? min_pos.col : 0;
7363 colnr_T end_col = (lnum == max_pos.lnum)
7364 ? max_pos.col - start_col + 1 : MAXCOL;
7365
Bram Moolenaardef9e822004-12-31 20:58:58 +00007366 s = ml_get(lnum) + start_col;
7367 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007368 }
7369 break;
7370 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00007371 if (s != NULL)
7372 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00007373 byte_count_cursor += line_count_info(s, &word_count_cursor,
7374 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00007375 if (lnum == curbuf->b_ml.ml_line_count
7376 && !curbuf->b_p_eol
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007377 && (curbuf->b_p_bin || !curbuf->b_p_fixeol)
Bram Moolenaarec2dad62005-01-02 11:36:03 +00007378 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007379 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00007380 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007381 }
7382 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007383 {
7384 /* In non-visual mode, check for the line the cursor is on */
7385 if (lnum == curwin->w_cursor.lnum)
7386 {
7387 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007388 char_count_cursor += char_count;
7389 byte_count_cursor = byte_count +
7390 line_count_info(ml_get(lnum),
7391 &word_count_cursor, &char_count_cursor,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007392 (varnumber_T)(curwin->w_cursor.col + 1),
7393 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007394 }
7395 }
7396 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007397 byte_count += line_count_info(ml_get(lnum), &word_count,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007398 &char_count, (varnumber_T)MAXCOL,
7399 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007400 }
7401
7402 /* Correction for when last line doesn't have an EOL. */
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007403 if (!curbuf->b_p_eol && (curbuf->b_p_bin || !curbuf->b_p_fixeol))
Bram Moolenaar7c626922005-02-07 22:01:03 +00007404 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007405
Bram Moolenaared767a22016-01-03 22:49:16 +01007406 if (dict == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007407 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007408 if (VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007410 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
7411 {
7412 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
7413 &max_pos.col);
7414 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
7415 (long)(oparg.end_vcol - oparg.start_vcol + 1));
7416 }
7417 else
7418 buf1[0] = NUL;
7419
7420 if (char_count_cursor == byte_count_cursor
7421 && char_count == byte_count)
7422 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007423 _("Selected %s%ld of %ld Lines; %lld of %lld Words; %lld of %lld Bytes"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007424 buf1, line_count_selected,
7425 (long)curbuf->b_ml.ml_line_count,
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01007426 (long_long_T)word_count_cursor,
7427 (long_long_T)word_count,
7428 (long_long_T)byte_count_cursor,
7429 (long_long_T)byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007430 else
7431 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007432 _("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 +01007433 buf1, line_count_selected,
7434 (long)curbuf->b_ml.ml_line_count,
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01007435 (long_long_T)word_count_cursor,
7436 (long_long_T)word_count,
7437 (long_long_T)char_count_cursor,
7438 (long_long_T)char_count,
7439 (long_long_T)byte_count_cursor,
7440 (long_long_T)byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007441 }
7442 else
Bram Moolenaared767a22016-01-03 22:49:16 +01007443 {
7444 p = ml_get_curline();
7445 validate_virtcol();
7446 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
7447 (int)curwin->w_virtcol + 1);
7448 col_print(buf2, sizeof(buf2), (int)STRLEN(p),
7449 linetabsize(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007450
Bram Moolenaared767a22016-01-03 22:49:16 +01007451 if (char_count_cursor == byte_count_cursor
7452 && char_count == byte_count)
7453 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007454 _("Col %s of %s; Line %ld of %ld; Word %lld of %lld; Byte %lld of %lld"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007455 (char *)buf1, (char *)buf2,
7456 (long)curwin->w_cursor.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007457 (long)curbuf->b_ml.ml_line_count,
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01007458 (long_long_T)word_count_cursor, (long_long_T)word_count,
7459 (long_long_T)byte_count_cursor, (long_long_T)byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007460 else
7461 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007462 _("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 +01007463 (char *)buf1, (char *)buf2,
7464 (long)curwin->w_cursor.lnum,
Bram Moolenaar7c626922005-02-07 22:01:03 +00007465 (long)curbuf->b_ml.ml_line_count,
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01007466 (long_long_T)word_count_cursor, (long_long_T)word_count,
7467 (long_long_T)char_count_cursor, (long_long_T)char_count,
7468 (long_long_T)byte_count_cursor, (long_long_T)byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007469 }
7470 }
7471
Bram Moolenaared767a22016-01-03 22:49:16 +01007472 bom_count = bomb_size();
7473 if (bom_count > 0)
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007474 vim_snprintf((char *)IObuff + STRLEN(IObuff), IOSIZE,
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01007475 _("(+%lld for BOM)"), (long_long_T)bom_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007476 if (dict == NULL)
7477 {
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007478 /* Don't shorten this message, the user asked for it. */
Bram Moolenaared767a22016-01-03 22:49:16 +01007479 p = p_shm;
7480 p_shm = (char_u *)"";
Bram Moolenaar32526b32019-01-19 17:43:09 +01007481 msg((char *)IObuff);
Bram Moolenaared767a22016-01-03 22:49:16 +01007482 p_shm = p;
7483 }
7484 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007485#if defined(FEAT_EVAL)
Bram Moolenaared767a22016-01-03 22:49:16 +01007486 if (dict != NULL)
7487 {
Bram Moolenaare0be1672018-07-08 16:50:37 +02007488 dict_add_number(dict, "words", word_count);
7489 dict_add_number(dict, "chars", char_count);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01007490 dict_add_number(dict, "bytes", byte_count + bom_count);
Bram Moolenaare0be1672018-07-08 16:50:37 +02007491 dict_add_number(dict, VIsual_active ? "visual_bytes" : "cursor_bytes",
7492 byte_count_cursor);
7493 dict_add_number(dict, VIsual_active ? "visual_chars" : "cursor_chars",
7494 char_count_cursor);
7495 dict_add_number(dict, VIsual_active ? "visual_words" : "cursor_words",
7496 word_count_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007497 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007498#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007499}