blob: e939f046478ed4c328946d9690baf924e6cefa27 [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;
459 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
460 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
553 newp = alloc_check(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 Moolenaar071d4272004-06-13 20:20:40 +0000647 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
648 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 Moolenaar46bbb0c2016-06-11 21:04:39 +02001006 reg = (yankreg_T *)alloc((unsigned)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
1016 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
1017 * reg->y_size));
1018 if (reg->y_array != NULL)
1019 {
1020 for (i = 0; i < reg->y_size; ++i)
1021 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
1022 }
1023 }
1024 else
1025 y_current->y_array = NULL;
1026 }
1027 return (void *)reg;
1028}
1029
1030/*
Bram Moolenaar0a307462007-12-01 20:13:05 +00001031 * Put "reg" into register "name". Free any previous contents and "reg".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 */
1033 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001034put_register(int name, void *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035{
1036 get_yank_register(name, 0);
1037 free_yank_all();
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001038 *y_current = *(yankreg_T *)reg;
Bram Moolenaar0a307462007-12-01 20:13:05 +00001039 vim_free(reg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001041#ifdef FEAT_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 /* Send text written to clipboard register to the clipboard. */
1043 may_set_selection();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001044#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001046
Bram Moolenaar113e1072019-01-20 15:30:40 +01001047#if (defined(FEAT_CLIPBOARD) && defined(FEAT_X11) && defined(USE_SYSTEM)) \
1048 || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001049 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001050free_register(void *reg)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001051{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001052 yankreg_T tmp;
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001053
1054 tmp = *y_current;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001055 *y_current = *(yankreg_T *)reg;
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001056 free_yank_all();
1057 vim_free(reg);
1058 *y_current = tmp;
1059}
Bram Moolenaar113e1072019-01-20 15:30:40 +01001060#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061
1062#if defined(FEAT_MOUSE) || defined(PROTO)
1063/*
1064 * return TRUE if the current yank register has type MLINE
1065 */
1066 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001067yank_register_mline(int regname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068{
1069 if (regname != 0 && !valid_yank_reg(regname, FALSE))
1070 return FALSE;
1071 if (regname == '_') /* black hole is always empty */
1072 return FALSE;
1073 get_yank_register(regname, FALSE);
1074 return (y_current->y_type == MLINE);
1075}
1076#endif
1077
1078/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001079 * Start or stop recording into a yank register.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 *
Bram Moolenaard55de222007-05-06 13:38:48 +00001081 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 */
1083 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001084do_record(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085{
Bram Moolenaard55de222007-05-06 13:38:48 +00001086 char_u *p;
1087 static int regname;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001088 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaard55de222007-05-06 13:38:48 +00001089 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001091 if (reg_recording == 0) /* start recording */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092 {
Bram Moolenaar8c87a2b2018-04-10 13:15:47 +02001093 /* registers 0-9, a-z and " are allowed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
1095 retval = FAIL;
1096 else
1097 {
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001098 reg_recording = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 showmode();
1100 regname = c;
1101 retval = OK;
1102 }
1103 }
1104 else /* stop recording */
1105 {
1106 /*
Bram Moolenaard55de222007-05-06 13:38:48 +00001107 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, this
1108 * needs to be removed again to put it in a register. exec_reg then
1109 * adds the escaping back later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110 */
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001111 reg_recording = 0;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001112 msg("");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 p = get_recorded();
1114 if (p == NULL)
1115 retval = FAIL;
1116 else
1117 {
Bram Moolenaar81b85872007-03-04 20:22:01 +00001118 /* Remove escaping for CSI and K_SPECIAL in multi-byte chars. */
1119 vim_unescape_csi(p);
1120
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 /*
1122 * We don't want to change the default register here, so save and
1123 * restore the current register name.
1124 */
1125 old_y_previous = y_previous;
1126 old_y_current = y_current;
1127
1128 retval = stuff_yank(regname, p);
1129
1130 y_previous = old_y_previous;
1131 y_current = old_y_current;
1132 }
1133 }
1134 return retval;
1135}
1136
1137/*
1138 * Stuff string "p" into yank register "regname" as a single line (append if
1139 * uppercase). "p" must have been alloced.
1140 *
1141 * return FAIL for failure, OK otherwise
1142 */
1143 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001144stuff_yank(int regname, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145{
1146 char_u *lp;
1147 char_u **pp;
1148
1149 /* check for read-only register */
1150 if (regname != 0 && !valid_yank_reg(regname, TRUE))
1151 {
1152 vim_free(p);
1153 return FAIL;
1154 }
1155 if (regname == '_') /* black hole: don't do anything */
1156 {
1157 vim_free(p);
1158 return OK;
1159 }
1160 get_yank_register(regname, TRUE);
1161 if (y_append && y_current->y_array != NULL)
1162 {
1163 pp = &(y_current->y_array[y_current->y_size - 1]);
1164 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
1165 if (lp == NULL)
1166 {
1167 vim_free(p);
1168 return FAIL;
1169 }
1170 STRCPY(lp, *pp);
1171 STRCAT(lp, p);
1172 vim_free(p);
1173 vim_free(*pp);
1174 *pp = lp;
1175 }
1176 else
1177 {
1178 free_yank_all();
1179 if ((y_current->y_array =
1180 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
1181 {
1182 vim_free(p);
1183 return FAIL;
1184 }
1185 y_current->y_array[0] = p;
1186 y_current->y_size = 1;
1187 y_current->y_type = MCHAR; /* used to be MLINE, why? */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001188#ifdef FEAT_VIMINFO
1189 y_current->y_time_set = vim_time();
1190#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 }
1192 return OK;
1193}
1194
Bram Moolenaar42b94362009-05-26 16:12:37 +00001195static int execreg_lastc = NUL;
1196
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197/*
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001198 * Execute a yank register: copy it into the stuff buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 *
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02001200 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 */
1202 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001203do_execreg(
1204 int regname,
1205 int colon, /* insert ':' before each line */
1206 int addcr, /* always add '\n' to end of line */
1207 int silent) /* set "silent" flag in typeahead buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 long i;
1210 char_u *p;
1211 int retval = OK;
1212 int remap;
1213
1214 if (regname == '@') /* repeat previous one */
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 Moolenaar071d4272004-06-13 20:20:40 +00001223 /* check for valid regname */
1224 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
1235 if (regname == '_') /* black hole: don't stuff anything */
1236 return OK;
1237
1238#ifdef FEAT_CMDHIST
1239 if (regname == ':') /* use last command line */
1240 {
1241 if (last_cmdline == NULL)
1242 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001243 emsg(_(e_nolastcmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 return FAIL;
1245 }
Bram Moolenaarfd731b02019-03-09 11:23:58 +01001246 // don't keep the cmdline containing @:
1247 VIM_CLEAR(new_last_cmdline);
1248 // Escape all control characters with a CTRL-V
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001249 p = vim_strsave_escaped_ext(last_cmdline,
Bram Moolenaarfd731b02019-03-09 11:23:58 +01001250 (char_u *)"\001\002\003\004\005\006\007"
1251 "\010\011\012\013\014\015\016\017"
1252 "\020\021\022\023\024\025\026\027"
1253 "\030\031\032\033\034\035\036\037",
1254 Ctrl_V, FALSE);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001255 if (p != NULL)
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001256 {
1257 /* When in Visual mode "'<,'>" will be prepended to the command.
1258 * Remove it when it's already there. */
1259 if (VIsual_active && STRNCMP(p, "'<,'>", 5) == 0)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001260 retval = put_in_typebuf(p + 5, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001261 else
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001262 retval = put_in_typebuf(p, TRUE, TRUE, silent);
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +00001263 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001264 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 }
1266#endif
1267#ifdef FEAT_EVAL
1268 else if (regname == '=')
1269 {
1270 p = get_expr_line();
1271 if (p == NULL)
1272 return FAIL;
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001273 retval = put_in_typebuf(p, TRUE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 vim_free(p);
1275 }
1276#endif
1277 else if (regname == '.') /* use last inserted text */
1278 {
1279 p = get_last_insert_save();
1280 if (p == NULL)
1281 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001282 emsg(_(e_noinstext));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 return FAIL;
1284 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001285 retval = put_in_typebuf(p, FALSE, colon, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 vim_free(p);
1287 }
1288 else
1289 {
1290 get_yank_register(regname, FALSE);
1291 if (y_current->y_array == NULL)
1292 return FAIL;
1293
1294 /* Disallow remaping for ":@r". */
1295 remap = colon ? REMAP_NONE : REMAP_YES;
1296
1297 /*
1298 * Insert lines into typeahead buffer, from last one to first one.
1299 */
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001300 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 for (i = y_current->y_size; --i >= 0; )
1302 {
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001303 char_u *escaped;
1304
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 /* insert NL between lines and after last line if type is MLINE */
1306 if (y_current->y_type == MLINE || i < y_current->y_size - 1
1307 || addcr)
1308 {
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001309 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, silent) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 return FAIL;
1311 }
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001312 escaped = vim_strsave_escape_csi(y_current->y_array[i]);
1313 if (escaped == NULL)
1314 return FAIL;
1315 retval = ins_typebuf(escaped, remap, 0, TRUE, silent);
1316 vim_free(escaped);
1317 if (retval == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 return FAIL;
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001319 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 == FAIL)
1321 return FAIL;
1322 }
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02001323 reg_executing = regname == 0 ? '"' : regname; // disable "q" command
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 }
1325 return retval;
1326}
1327
1328/*
1329 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
1330 * used only after other typeahead has been processed.
1331 */
1332 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001333put_reedit_in_typebuf(int silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334{
1335 char_u buf[3];
1336
1337 if (restart_edit != NUL)
1338 {
1339 if (restart_edit == 'V')
1340 {
1341 buf[0] = 'g';
1342 buf[1] = 'R';
1343 buf[2] = NUL;
1344 }
1345 else
1346 {
1347 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
1348 buf[1] = NUL;
1349 }
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001350 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, silent) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 restart_edit = NUL;
1352 }
1353}
1354
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001355/*
1356 * Insert register contents "s" into the typeahead buffer, so that it will be
1357 * executed again.
1358 * When "esc" is TRUE it is to be taken literally: Escape CSI characters and
1359 * no remapping.
1360 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001362put_in_typebuf(
1363 char_u *s,
1364 int esc,
1365 int colon, /* add ':' before the line */
1366 int silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367{
1368 int retval = OK;
1369
Bram Moolenaard333d1e2006-11-07 17:43:47 +00001370 put_reedit_in_typebuf(silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 if (colon)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001372 retval = ins_typebuf((char_u *)"\n", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 if (retval == OK)
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001374 {
1375 char_u *p;
1376
1377 if (esc)
1378 p = vim_strsave_escape_csi(s);
1379 else
1380 p = s;
1381 if (p == NULL)
1382 retval = FAIL;
1383 else
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001384 retval = ins_typebuf(p, esc ? REMAP_NONE : REMAP_YES,
1385 0, TRUE, silent);
Bram Moolenaar7f6ca072007-02-27 16:21:38 +00001386 if (esc)
1387 vim_free(p);
1388 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 if (colon && retval == OK)
Bram Moolenaar38ef43b2010-01-27 16:31:13 +01001390 retval = ins_typebuf((char_u *)":", REMAP_NONE, 0, TRUE, silent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 return retval;
1392}
1393
1394/*
1395 * Insert a yank register: copy it into the Read buffer.
1396 * Used by CTRL-R command and middle mouse button in insert mode.
1397 *
1398 * return FAIL for failure, OK otherwise
1399 */
1400 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001401insert_reg(
1402 int regname,
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001403 int literally_arg) /* insert literally, not as if typed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404{
1405 long i;
1406 int retval = OK;
1407 char_u *arg;
1408 int allocated;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001409 int literally = literally_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410
1411 /*
1412 * It is possible to get into an endless loop by having CTRL-R a in
1413 * register a and then, in insert mode, doing CTRL-R a.
1414 * If you hit CTRL-C, the loop will be broken here.
1415 */
1416 ui_breakcheck();
1417 if (got_int)
1418 return FAIL;
1419
1420 /* check for valid regname */
1421 if (regname != NUL && !valid_yank_reg(regname, FALSE))
1422 return FAIL;
1423
1424#ifdef FEAT_CLIPBOARD
1425 regname = may_get_selection(regname);
1426#endif
1427
1428 if (regname == '.') /* insert last inserted text */
1429 retval = stuff_inserted(NUL, 1L, TRUE);
1430 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
1431 {
1432 if (arg == NULL)
1433 return FAIL;
1434 stuffescaped(arg, literally);
1435 if (allocated)
1436 vim_free(arg);
1437 }
1438 else /* name or number register */
1439 {
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001440 if (get_yank_register(regname, FALSE))
1441 literally = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 if (y_current->y_array == NULL)
1443 retval = FAIL;
1444 else
1445 {
1446 for (i = 0; i < y_current->y_size; ++i)
1447 {
1448 stuffescaped(y_current->y_array[i], literally);
1449 /*
1450 * Insert a newline between lines and after last line if
1451 * y_type is MLINE.
1452 */
1453 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
1454 stuffcharReadbuff('\n');
1455 }
1456 }
1457 }
1458
1459 return retval;
1460}
1461
1462/*
1463 * Stuff a string into the typeahead buffer, such that edit() will insert it
1464 * literally ("literally" TRUE) or interpret is as typed characters.
1465 */
1466 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001467stuffescaped(char_u *arg, int literally)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468{
1469 int c;
1470 char_u *start;
1471
1472 while (*arg != NUL)
1473 {
1474 /* Stuff a sequence of normal ASCII characters, that's fast. Also
1475 * stuff K_SPECIAL to get the effect of a special key when "literally"
1476 * is TRUE. */
1477 start = arg;
1478 while ((*arg >= ' '
1479#ifndef EBCDIC
1480 && *arg < DEL /* EBCDIC: chars above space are normal */
1481#endif
1482 )
1483 || (*arg == K_SPECIAL && !literally))
1484 ++arg;
1485 if (arg > start)
1486 stuffReadbuffLen(start, (long)(arg - start));
1487
1488 /* stuff a single special character */
1489 if (*arg != NUL)
1490 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 if (has_mbyte)
Bram Moolenaar3b1c4852010-07-31 17:59:29 +02001492 c = mb_cptr2char_adv(&arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 c = *arg++;
1495 if (literally && ((c < ' ' && c != TAB) || c == DEL))
1496 stuffcharReadbuff(Ctrl_V);
1497 stuffcharReadbuff(c);
1498 }
1499 }
1500}
1501
1502/*
Bram Moolenaard55de222007-05-06 13:38:48 +00001503 * If "regname" is a special register, return TRUE and store a pointer to its
1504 * value in "argp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 */
Bram Moolenaar8299df92004-07-10 09:47:34 +00001506 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001507get_spec_reg(
1508 int regname,
1509 char_u **argp,
1510 int *allocated, /* return: TRUE when value was allocated */
1511 int errmsg) /* give error message when failing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512{
1513 int cnt;
1514
1515 *argp = NULL;
1516 *allocated = FALSE;
1517 switch (regname)
1518 {
1519 case '%': /* file name */
1520 if (errmsg)
1521 check_fname(); /* will give emsg if not set */
1522 *argp = curbuf->b_fname;
1523 return TRUE;
1524
1525 case '#': /* alternate file name */
1526 *argp = getaltfname(errmsg); /* may give emsg if not set */
1527 return TRUE;
1528
1529#ifdef FEAT_EVAL
1530 case '=': /* result of expression */
1531 *argp = get_expr_line();
1532 *allocated = TRUE;
1533 return TRUE;
1534#endif
1535
1536 case ':': /* last command line */
1537 if (last_cmdline == NULL && errmsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001538 emsg(_(e_nolastcmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 *argp = last_cmdline;
1540 return TRUE;
1541
1542 case '/': /* last search-pattern */
1543 if (last_search_pat() == NULL && errmsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001544 emsg(_(e_noprevre));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 *argp = last_search_pat();
1546 return TRUE;
1547
1548 case '.': /* last inserted text */
1549 *argp = get_last_insert_save();
1550 *allocated = TRUE;
1551 if (*argp == NULL && errmsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001552 emsg(_(e_noinstext));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 return TRUE;
1554
1555#ifdef FEAT_SEARCHPATH
1556 case Ctrl_F: /* Filename under cursor */
1557 case Ctrl_P: /* Path under cursor, expand via "path" */
1558 if (!errmsg)
1559 return FALSE;
1560 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001561 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 *allocated = TRUE;
1563 return TRUE;
1564#endif
1565
1566 case Ctrl_W: /* word under cursor */
1567 case Ctrl_A: /* WORD (mnemonic All) under cursor */
1568 if (!errmsg)
1569 return FALSE;
1570 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
1571 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
1572 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
1573 *allocated = TRUE;
1574 return TRUE;
1575
Bram Moolenaare2c8d832018-05-01 19:24:03 +02001576 case Ctrl_L: /* Line under cursor */
1577 if (!errmsg)
1578 return FALSE;
1579
1580 *argp = ml_get_buf(curwin->w_buffer,
1581 curwin->w_cursor.lnum, FALSE);
1582 return TRUE;
1583
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 case '_': /* black hole: always empty */
1585 *argp = (char_u *)"";
1586 return TRUE;
1587 }
1588
1589 return FALSE;
1590}
1591
1592/*
Bram Moolenaar8299df92004-07-10 09:47:34 +00001593 * Paste a yank register into the command line.
1594 * Only for non-special registers.
1595 * Used by CTRL-R command in command-line mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 * insert_reg() can't be used here, because special characters from the
1597 * register contents will be interpreted as commands.
1598 *
1599 * return FAIL for failure, OK otherwise
1600 */
1601 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001602cmdline_paste_reg(
1603 int regname,
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001604 int literally_arg, /* Insert text literally instead of "as typed" */
Bram Moolenaar9b578142016-01-30 19:39:49 +01001605 int remcr) /* don't add CR characters */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606{
1607 long i;
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001608 int literally = literally_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609
Bram Moolenaar3324d0a2018-03-06 19:51:13 +01001610 if (get_yank_register(regname, FALSE))
1611 literally = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 if (y_current->y_array == NULL)
1613 return FAIL;
1614
1615 for (i = 0; i < y_current->y_size; ++i)
1616 {
1617 cmdline_paste_str(y_current->y_array[i], literally);
1618
Bram Moolenaar1769d5a2006-10-17 14:25:24 +00001619 /* Insert ^M between lines and after last line if type is MLINE.
Bram Moolenaar6f62fed2015-12-17 14:04:24 +01001620 * Don't do this when "remcr" is TRUE. */
1621 if ((y_current->y_type == MLINE || i < y_current->y_size - 1) && !remcr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 cmdline_paste_str((char_u *)"\r", literally);
1623
1624 /* Check for CTRL-C, in case someone tries to paste a few thousand
1625 * lines and gets bored. */
1626 ui_breakcheck();
1627 if (got_int)
1628 return FAIL;
1629 }
1630 return OK;
1631}
1632
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633#if defined(FEAT_CLIPBOARD) || defined(PROTO)
1634/*
1635 * Adjust the register name pointed to with "rp" for the clipboard being
1636 * used always and the clipboard being available.
1637 */
1638 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001639adjust_clip_reg(int *rp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640{
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001641 /* If no reg. specified, and "unnamed" or "unnamedplus" is in 'clipboard',
1642 * use '*' or '+' reg, respectively. "unnamedplus" prevails. */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001643 if (*rp == 0 && (clip_unnamed != 0 || clip_unnamed_saved != 0))
1644 {
1645 if (clip_unnamed != 0)
1646 *rp = ((clip_unnamed & CLIP_UNNAMED_PLUS) && clip_plus.available)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01001647 ? '+' : '*';
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02001648 else
1649 *rp = ((clip_unnamed_saved & CLIP_UNNAMED_PLUS) && clip_plus.available)
1650 ? '+' : '*';
1651 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 if (!clip_star.available && *rp == '*')
1653 *rp = 0;
1654 if (!clip_plus.available && *rp == '+')
1655 *rp = 0;
1656}
1657#endif
1658
1659/*
Bram Moolenaara1891842017-02-04 21:34:31 +01001660 * Shift the delete registers: "9 is cleared, "8 becomes "9, etc.
1661 */
1662 void
1663shift_delete_registers()
1664{
1665 int n;
1666
1667 y_current = &y_regs[9];
1668 free_yank_all(); /* free register nine */
1669 for (n = 9; n > 1; --n)
1670 y_regs[n] = y_regs[n - 1];
Bram Moolenaar18d90b92017-06-27 15:39:14 +02001671 y_current = &y_regs[1];
1672 if (!y_append)
1673 y_previous = y_current;
Bram Moolenaara1891842017-02-04 21:34:31 +01001674 y_regs[1].y_array = NULL; /* set register one to empty */
1675}
1676
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001677#if defined(FEAT_EVAL)
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001678 static void
1679yank_do_autocmd(oparg_T *oap, yankreg_T *reg)
1680{
1681 static int recursive = FALSE;
1682 dict_T *v_event;
1683 list_T *list;
1684 int n;
1685 char_u buf[NUMBUFLEN + 2];
1686 long reglen = 0;
1687
1688 if (recursive)
1689 return;
1690
1691 v_event = get_vim_var_dict(VV_EVENT);
1692
1693 list = list_alloc();
Bram Moolenaara0221df2018-02-11 15:07:22 +01001694 if (list == NULL)
1695 return;
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001696 for (n = 0; n < reg->y_size; n++)
1697 list_append_string(list, reg->y_array[n], -1);
1698 list->lv_lock = VAR_FIXED;
1699 dict_add_list(v_event, "regcontents", list);
1700
1701 buf[0] = (char_u)oap->regname;
1702 buf[1] = NUL;
Bram Moolenaare0be1672018-07-08 16:50:37 +02001703 dict_add_string(v_event, "regname", buf);
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001704
1705 buf[0] = get_op_char(oap->op_type);
1706 buf[1] = get_extra_op_char(oap->op_type);
1707 buf[2] = NUL;
Bram Moolenaare0be1672018-07-08 16:50:37 +02001708 dict_add_string(v_event, "operator", buf);
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001709
1710 buf[0] = NUL;
1711 buf[1] = NUL;
1712 switch (get_reg_type(oap->regname, &reglen))
1713 {
1714 case MLINE: buf[0] = 'V'; break;
1715 case MCHAR: buf[0] = 'v'; break;
1716 case MBLOCK:
1717 vim_snprintf((char *)buf, sizeof(buf), "%c%ld", Ctrl_V,
1718 reglen + 1);
1719 break;
1720 }
Bram Moolenaare0be1672018-07-08 16:50:37 +02001721 dict_add_string(v_event, "regtype", buf);
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001722
1723 /* Lock the dictionary and its keys */
1724 dict_set_items_ro(v_event);
1725
1726 recursive = TRUE;
1727 textlock++;
1728 apply_autocmds(EVENT_TEXTYANKPOST, NULL, NULL, FALSE, curbuf);
1729 textlock--;
1730 recursive = FALSE;
1731
1732 /* Empty the dictionary, v:event is still valid */
1733 dict_free_contents(v_event);
1734 hash_init(&v_event->dv_hashtab);
1735}
Bram Moolenaaree219b02017-12-17 14:55:01 +01001736#endif
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001737
Bram Moolenaara1891842017-02-04 21:34:31 +01001738/*
Bram Moolenaard04b7502010-07-08 22:27:55 +02001739 * Handle a delete operation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 *
Bram Moolenaard04b7502010-07-08 22:27:55 +02001741 * Return FAIL if undo failed, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 */
1743 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001744op_delete(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745{
1746 int n;
1747 linenr_T lnum;
1748 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 char_u *newp, *oldp;
1750 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
1752 int did_yank = FALSE;
1753
1754 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
1755 return OK;
1756
1757 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
1758 if (oap->empty)
1759 return u_save_cursor();
1760
1761 if (!curbuf->b_p_ma)
1762 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001763 emsg(_(e_modifiable));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 return FAIL;
1765 }
1766
1767#ifdef FEAT_CLIPBOARD
1768 adjust_clip_reg(&oap->regname);
1769#endif
1770
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 if (has_mbyte)
1772 mb_adjust_opend(oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773
Bram Moolenaard04b7502010-07-08 22:27:55 +02001774 /*
1775 * Imitate the strange Vi behaviour: If the delete spans more than one
1776 * line and motion_type == MCHAR and the result is a blank line, make the
1777 * delete linewise. Don't do this for the change command or Visual mode.
1778 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 if ( oap->motion_type == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 && !oap->is_VIsual
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001781 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 && oap->line_count > 1
Bram Moolenaar64a72302012-01-10 13:46:22 +01001783 && oap->motion_force == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 && oap->op_type == OP_DELETE)
1785 {
Bram Moolenaar44286ca2011-07-15 17:51:34 +02001786 ptr = ml_get(oap->end.lnum) + oap->end.col;
1787 if (*ptr != NUL)
1788 ptr += oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 ptr = skipwhite(ptr);
1790 if (*ptr == NUL && inindent(0))
1791 oap->motion_type = MLINE;
1792 }
1793
Bram Moolenaard04b7502010-07-08 22:27:55 +02001794 /*
1795 * Check for trying to delete (e.g. "D") in an empty line.
1796 * Note: For the change operator it is ok.
1797 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 if ( oap->motion_type == MCHAR
1799 && oap->line_count == 1
1800 && oap->op_type == OP_DELETE
1801 && *ml_get(oap->start.lnum) == NUL)
1802 {
1803 /*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001804 * It's an error to operate on an empty region, when 'E' included in
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 * 'cpoptions' (Vi compatible).
1806 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001807 if (virtual_op)
1808 /* Virtual editing: Nothing gets deleted, but we set the '[ and ']
1809 * marks as if it happened. */
1810 goto setmarks;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
1812 beep_flush();
1813 return OK;
1814 }
1815
Bram Moolenaard04b7502010-07-08 22:27:55 +02001816 /*
1817 * Do a yank of whatever we're about to delete.
1818 * If a yank register was specified, put the deleted text into that
1819 * register. For the black hole register '_' don't yank anything.
1820 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 if (oap->regname != '_')
1822 {
1823 if (oap->regname != 0)
1824 {
1825 /* check for read-only register */
1826 if (!valid_yank_reg(oap->regname, TRUE))
1827 {
1828 beep_flush();
1829 return OK;
1830 }
1831 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
1832 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
1833 did_yank = TRUE;
1834 }
1835
1836 /*
1837 * Put deleted text into register 1 and shift number registers if the
Bram Moolenaar9d7fdd42019-03-08 09:50:52 +01001838 * delete contains a line break, or when using a specific operator (Vi
1839 * compatible)
Bram Moolenaar7c821302012-09-05 14:18:45 +02001840 * Use the register name from before adjust_clip_reg() may have
1841 * changed it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 */
Bram Moolenaar9d7fdd42019-03-08 09:50:52 +01001843 if (oap->motion_type == MLINE || oap->line_count > 1
1844 || oap->use_reg_one)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 {
Bram Moolenaara1891842017-02-04 21:34:31 +01001846 shift_delete_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 if (op_yank(oap, TRUE, FALSE) == OK)
1848 did_yank = TRUE;
1849 }
1850
Bram Moolenaar84298db2012-04-20 13:46:08 +02001851 /* Yank into small delete register when no named register specified
1852 * and the delete is within one line. */
1853 if ((
1854#ifdef FEAT_CLIPBOARD
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02001855 ((clip_unnamed & CLIP_UNNAMED) && oap->regname == '*') ||
1856 ((clip_unnamed & CLIP_UNNAMED_PLUS) && oap->regname == '+') ||
Bram Moolenaar84298db2012-04-20 13:46:08 +02001857#endif
1858 oap->regname == 0) && oap->motion_type != MLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 && oap->line_count == 1)
1860 {
1861 oap->regname = '-';
1862 get_yank_register(oap->regname, TRUE);
1863 if (op_yank(oap, TRUE, FALSE) == OK)
1864 did_yank = TRUE;
1865 oap->regname = 0;
1866 }
1867
1868 /*
1869 * If there's too much stuff to fit in the yank register, then get a
1870 * confirmation before doing the delete. This is crude, but simple.
1871 * And it avoids doing a delete of something we can't put back if we
1872 * want.
1873 */
1874 if (!did_yank)
1875 {
1876 int msg_silent_save = msg_silent;
1877
1878 msg_silent = 0; /* must display the prompt */
1879 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
1880 msg_silent = msg_silent_save;
1881 if (n != 'y')
1882 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001883 emsg(_(e_abort));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 return FAIL;
1885 }
1886 }
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001887
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001888#if defined(FEAT_EVAL)
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001889 if (did_yank && has_textyankpost())
1890 yank_do_autocmd(oap, y_current);
1891#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 }
1893
Bram Moolenaard04b7502010-07-08 22:27:55 +02001894 /*
1895 * block mode delete
1896 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 if (oap->block_mode)
1898 {
1899 if (u_save((linenr_T)(oap->start.lnum - 1),
1900 (linenr_T)(oap->end.lnum + 1)) == FAIL)
1901 return FAIL;
1902
1903 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
1904 {
1905 block_prep(oap, &bd, lnum, TRUE);
1906 if (bd.textlen == 0) /* nothing to delete */
1907 continue;
1908
1909 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
1910 if (lnum == curwin->w_cursor.lnum)
1911 {
1912 curwin->w_cursor.col = bd.textcol + bd.startspaces;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914 }
1915
1916 /* n == number of chars deleted
1917 * If we delete a TAB, it may be replaced by several characters.
1918 * Thus the number of characters may increase!
1919 */
1920 n = bd.textlen - bd.startspaces - bd.endspaces;
1921 oldp = ml_get(lnum);
1922 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
1923 if (newp == NULL)
1924 continue;
1925 /* copy up to deleted part */
1926 mch_memmove(newp, oldp, (size_t)bd.textcol);
1927 /* insert spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02001928 vim_memset(newp + bd.textcol, ' ',
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 (size_t)(bd.startspaces + bd.endspaces));
1930 /* copy the part after the deleted part */
1931 oldp += bd.textcol + bd.textlen;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001932 STRMOVE(newp + bd.textcol + bd.startspaces + bd.endspaces, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 /* replace the line */
1934 ml_replace(lnum, newp, FALSE);
1935 }
1936
1937 check_cursor_col();
1938 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
1939 oap->end.lnum + 1, 0L);
1940 oap->line_count = 0; /* no lines deleted */
1941 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01001942 else if (oap->motion_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 {
1944 if (oap->op_type == OP_CHANGE)
1945 {
1946 /* Delete the lines except the first one. Temporarily move the
1947 * cursor to the next line. Save the current line number, if the
1948 * last line is deleted it may be changed.
1949 */
1950 if (oap->line_count > 1)
1951 {
1952 lnum = curwin->w_cursor.lnum;
1953 ++curwin->w_cursor.lnum;
1954 del_lines((long)(oap->line_count - 1), TRUE);
1955 curwin->w_cursor.lnum = lnum;
1956 }
1957 if (u_save_cursor() == FAIL)
1958 return FAIL;
1959 if (curbuf->b_p_ai) /* don't delete indent */
1960 {
1961 beginline(BL_WHITE); /* cursor on first non-white */
1962 did_ai = TRUE; /* delete the indent when ESC hit */
1963 ai_col = curwin->w_cursor.col;
1964 }
1965 else
1966 beginline(0); /* cursor in column 0 */
1967 truncate_line(FALSE); /* delete the rest of the line */
1968 /* leave cursor past last char in line */
1969 if (oap->line_count > 1)
1970 u_clearline(); /* "U" command not possible after "2cc" */
1971 }
1972 else
1973 {
1974 del_lines(oap->line_count, TRUE);
1975 beginline(BL_WHITE | BL_FIX);
1976 u_clearline(); /* "U" command not possible after "dd" */
1977 }
1978 }
1979 else
1980 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 if (virtual_op)
1982 {
1983 int endcol = 0;
1984
1985 /* For virtualedit: break the tabs that are partly included. */
1986 if (gchar_pos(&oap->start) == '\t')
1987 {
1988 if (u_save_cursor() == FAIL) /* save first line for undo */
1989 return FAIL;
1990 if (oap->line_count == 1)
1991 endcol = getviscol2(oap->end.col, oap->end.coladd);
1992 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
1993 oap->start = curwin->w_cursor;
1994 if (oap->line_count == 1)
1995 {
1996 coladvance(endcol);
1997 oap->end.col = curwin->w_cursor.col;
1998 oap->end.coladd = curwin->w_cursor.coladd;
1999 curwin->w_cursor = oap->start;
2000 }
2001 }
2002
2003 /* Break a tab only when it's included in the area. */
2004 if (gchar_pos(&oap->end) == '\t'
2005 && (int)oap->end.coladd < oap->inclusive)
2006 {
2007 /* save last line for undo */
2008 if (u_save((linenr_T)(oap->end.lnum - 1),
2009 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2010 return FAIL;
2011 curwin->w_cursor = oap->end;
2012 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
2013 oap->end = curwin->w_cursor;
2014 curwin->w_cursor = oap->start;
2015 }
2016 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017
2018 if (oap->line_count == 1) /* delete characters within one line */
2019 {
2020 if (u_save_cursor() == FAIL) /* save line for undo */
2021 return FAIL;
2022
2023 /* if 'cpoptions' contains '$', display '$' at end of change */
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002024 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 && oap->op_type == OP_CHANGE
2026 && oap->end.lnum == curwin->w_cursor.lnum
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002027 && !oap->is_VIsual)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 display_dollar(oap->end.col - !oap->inclusive);
2029
2030 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
2031
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 if (virtual_op)
2033 {
2034 /* fix up things for virtualedit-delete:
2035 * break the tabs which are going to get in our way
2036 */
2037 char_u *curline = ml_get_curline();
2038 int len = (int)STRLEN(curline);
2039
2040 if (oap->end.coladd != 0
2041 && (int)oap->end.col >= len - 1
2042 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
2043 n++;
2044 /* Delete at least one char (e.g, when on a control char). */
2045 if (n == 0 && oap->start.coladd != oap->end.coladd)
2046 n = 1;
2047
2048 /* When deleted a char in the line, reset coladd. */
2049 if (gchar_cursor() != NUL)
2050 curwin->w_cursor.coladd = 0;
2051 }
Bram Moolenaard009e862015-06-09 20:20:03 +02002052 (void)del_bytes((long)n, !virtual_op,
2053 oap->op_type == OP_DELETE && !oap->is_VIsual);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 }
2055 else /* delete characters between lines */
2056 {
2057 pos_T curpos;
2058
2059 /* save deleted and changed lines for undo */
2060 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
2061 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
2062 return FAIL;
2063
2064 truncate_line(TRUE); /* delete from cursor to end of line */
2065
2066 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
2067 ++curwin->w_cursor.lnum;
2068 del_lines((long)(oap->line_count - 2), FALSE);
2069
Bram Moolenaard009e862015-06-09 20:20:03 +02002070 /* delete from start of line until op_end */
Bram Moolenaar44286ca2011-07-15 17:51:34 +02002071 n = (oap->end.col + 1 - !oap->inclusive);
Bram Moolenaard009e862015-06-09 20:20:03 +02002072 curwin->w_cursor.col = 0;
2073 (void)del_bytes((long)n, !virtual_op,
2074 oap->op_type == OP_DELETE && !oap->is_VIsual);
2075 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
2076 (void)do_join(2, FALSE, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 }
2078 }
2079
2080 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
2081
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002082setmarks:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 if (oap->block_mode)
2084 {
2085 curbuf->b_op_end.lnum = oap->end.lnum;
2086 curbuf->b_op_end.col = oap->start.col;
2087 }
2088 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 curbuf->b_op_end = oap->start;
2090 curbuf->b_op_start = oap->start;
2091
2092 return OK;
2093}
2094
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095/*
2096 * Adjust end of operating area for ending on a multi-byte character.
2097 * Used for deletion.
2098 */
2099 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002100mb_adjust_opend(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101{
2102 char_u *p;
2103
2104 if (oap->inclusive)
2105 {
2106 p = ml_get(oap->end.lnum);
2107 oap->end.col += mb_tail_off(p, p + oap->end.col);
2108 }
2109}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110
Bram Moolenaar630afe82018-06-28 19:26:28 +02002111/*
2112 * Replace the character under the cursor with "c".
2113 * This takes care of multi-byte characters.
2114 */
2115 static void
2116replace_character(int c)
2117{
2118 int n = State;
2119
2120 State = REPLACE;
2121 ins_char(c);
2122 State = n;
2123 /* Backup to the replaced character. */
2124 dec_cursor();
2125}
2126
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127/*
2128 * Replace a whole area with one character.
2129 */
2130 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002131op_replace(oparg_T *oap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132{
2133 int n, numc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134 int num_chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 char_u *newp, *oldp;
2136 size_t oldlen;
2137 struct block_def bd;
Bram Moolenaard9820532013-11-04 01:41:17 +01002138 char_u *after_p = NULL;
Bram Moolenaarf12519d2018-02-06 22:52:49 +01002139 int had_ctrl_v_cr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140
2141 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
2142 return OK; /* nothing to do */
2143
Bram Moolenaarf12519d2018-02-06 22:52:49 +01002144 if (c == REPLACE_CR_NCHAR)
2145 {
2146 had_ctrl_v_cr = TRUE;
2147 c = CAR;
2148 }
2149 else if (c == REPLACE_NL_NCHAR)
2150 {
2151 had_ctrl_v_cr = TRUE;
2152 c = NL;
2153 }
Bram Moolenaard9820532013-11-04 01:41:17 +01002154
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155 if (has_mbyte)
2156 mb_adjust_opend(oap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157
2158 if (u_save((linenr_T)(oap->start.lnum - 1),
2159 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2160 return FAIL;
2161
2162 /*
2163 * block mode replace
2164 */
2165 if (oap->block_mode)
2166 {
2167 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2168 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
2169 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002170 curwin->w_cursor.col = 0; /* make sure cursor position is valid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
2172 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
2173 continue; /* nothing to replace */
2174
2175 /* n == number of extra chars required
2176 * If we split a TAB, it may be replaced by several characters.
2177 * Thus the number of characters may increase!
2178 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 /* If the range starts in virtual space, count the initial
2180 * coladd offset as part of "startspaces" */
2181 if (virtual_op && bd.is_short && *bd.textstart == NUL)
2182 {
2183 pos_T vpos;
2184
Bram Moolenaara1381de2009-11-03 15:44:21 +00002185 vpos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 getvpos(&vpos, oap->start_vcol);
2187 bd.startspaces += vpos.coladd;
2188 n = bd.startspaces;
2189 }
2190 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 /* allow for pre spaces */
2192 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
2193
2194 /* allow for post spp */
2195 n += (bd.endspaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 && !bd.is_oneChar
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
2198 /* Figure out how many characters to replace. */
2199 numc = oap->end_vcol - oap->start_vcol + 1;
2200 if (bd.is_short && (!virtual_op || bd.is_MAX))
2201 numc -= (oap->end_vcol - bd.end_vcol) + 1;
2202
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 /* A double-wide character can be replaced only up to half the
2204 * times. */
2205 if ((*mb_char2cells)(c) > 1)
2206 {
2207 if ((numc & 1) && !bd.is_short)
2208 {
2209 ++bd.endspaces;
2210 ++n;
2211 }
2212 numc = numc / 2;
2213 }
2214
2215 /* Compute bytes needed, move character count to num_chars. */
2216 num_chars = numc;
2217 numc *= (*mb_char2len)(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 /* oldlen includes textlen, so don't double count */
2219 n += numc - bd.textlen;
2220
2221 oldp = ml_get_curline();
2222 oldlen = STRLEN(oldp);
2223 newp = alloc_check((unsigned)oldlen + 1 + n);
2224 if (newp == NULL)
2225 continue;
2226 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
2227 /* copy up to deleted part */
2228 mch_memmove(newp, oldp, (size_t)bd.textcol);
2229 oldp += bd.textcol + bd.textlen;
2230 /* insert pre-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002231 vim_memset(newp + bd.textcol, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
Bram Moolenaarf12519d2018-02-06 22:52:49 +01002233 /* REPLACE_CR_NCHAR/REPLACE_NL_NCHAR is used for entering CR
2234 * literally. */
Bram Moolenaard9820532013-11-04 01:41:17 +01002235 if (had_ctrl_v_cr || (c != '\r' && c != '\n'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002237 if (has_mbyte)
2238 {
2239 n = (int)STRLEN(newp);
2240 while (--num_chars >= 0)
2241 n += (*mb_char2bytes)(c, newp + n);
2242 }
2243 else
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002244 vim_memset(newp + STRLEN(newp), c, (size_t)numc);
Bram Moolenaard9820532013-11-04 01:41:17 +01002245 if (!bd.is_short)
2246 {
2247 /* insert post-spaces */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002248 vim_memset(newp + STRLEN(newp), ' ', (size_t)bd.endspaces);
Bram Moolenaard9820532013-11-04 01:41:17 +01002249 /* copy the part after the changed part */
2250 STRMOVE(newp + STRLEN(newp), oldp);
2251 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 }
2253 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 {
Bram Moolenaard9820532013-11-04 01:41:17 +01002255 /* Replacing with \r or \n means splitting the line. */
Bram Moolenaarefe06f42013-11-11 23:17:39 +01002256 after_p = alloc_check(
2257 (unsigned)(oldlen + 1 + n - STRLEN(newp)));
Bram Moolenaard9820532013-11-04 01:41:17 +01002258 if (after_p != NULL)
2259 STRMOVE(after_p, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 }
2261 /* replace the line */
2262 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
Bram Moolenaard9820532013-11-04 01:41:17 +01002263 if (after_p != NULL)
2264 {
2265 ml_append(curwin->w_cursor.lnum++, after_p, 0, FALSE);
2266 appended_lines_mark(curwin->w_cursor.lnum, 1L);
2267 oap->end.lnum++;
2268 vim_free(after_p);
2269 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 }
2271 }
2272 else
2273 {
2274 /*
2275 * MCHAR and MLINE motion replace.
2276 */
2277 if (oap->motion_type == MLINE)
2278 {
2279 oap->start.col = 0;
2280 curwin->w_cursor.col = 0;
2281 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2282 if (oap->end.col)
2283 --oap->end.col;
2284 }
2285 else if (!oap->inclusive)
2286 dec(&(oap->end));
2287
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002288 while (LTOREQ_POS(curwin->w_cursor, oap->end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 {
2290 n = gchar_cursor();
2291 if (n != NUL)
2292 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
2294 {
2295 /* This is slow, but it handles replacing a single-byte
2296 * with a multi-byte and the other way around. */
Bram Moolenaardb813952013-03-07 18:50:57 +01002297 if (curwin->w_cursor.lnum == oap->end.lnum)
2298 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
Bram Moolenaar630afe82018-06-28 19:26:28 +02002299 replace_character(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 }
2301 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 if (n == TAB)
2304 {
2305 int end_vcol = 0;
2306
2307 if (curwin->w_cursor.lnum == oap->end.lnum)
2308 {
2309 /* oap->end has to be recalculated when
2310 * the tab breaks */
2311 end_vcol = getviscol2(oap->end.col,
2312 oap->end.coladd);
2313 }
2314 coladvance_force(getviscol());
2315 if (curwin->w_cursor.lnum == oap->end.lnum)
2316 getvpos(&oap->end, end_vcol);
2317 }
Bram Moolenaar630afe82018-06-28 19:26:28 +02002318 PBYTE(curwin->w_cursor, c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 }
2320 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
2322 {
2323 int virtcols = oap->end.coladd;
2324
2325 if (curwin->w_cursor.lnum == oap->start.lnum
2326 && oap->start.col == oap->end.col && oap->start.coladd)
2327 virtcols -= oap->start.coladd;
2328
2329 /* oap->end has been trimmed so it's effectively inclusive;
2330 * as a result an extra +1 must be counted so we don't
2331 * trample the NUL byte. */
2332 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
2333 curwin->w_cursor.col -= (virtcols + 1);
2334 for (; virtcols >= 0; virtcols--)
2335 {
Bram Moolenaar630afe82018-06-28 19:26:28 +02002336 if ((*mb_char2len)(c) > 1)
2337 replace_character(c);
2338 else
Bram Moolenaar630afe82018-06-28 19:26:28 +02002339 PBYTE(curwin->w_cursor, c);
2340 if (inc(&curwin->w_cursor) == -1)
2341 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 }
2343 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344
2345 /* Advance to next character, stop at the end of the file. */
2346 if (inc_cursor() == -1)
2347 break;
2348 }
2349 }
2350
2351 curwin->w_cursor = oap->start;
2352 check_cursor();
2353 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
2354
2355 /* Set "'[" and "']" marks. */
2356 curbuf->b_op_start = oap->start;
2357 curbuf->b_op_end = oap->end;
2358
2359 return OK;
2360}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002362static int swapchars(int op_type, pos_T *pos, int length);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002363
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364/*
2365 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
2366 */
2367 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002368op_tilde(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369{
2370 pos_T pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 struct block_def bd;
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002372 int did_change = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373
2374 if (u_save((linenr_T)(oap->start.lnum - 1),
2375 (linenr_T)(oap->end.lnum + 1)) == FAIL)
2376 return;
2377
2378 pos = oap->start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 if (oap->block_mode) /* Visual block mode */
2380 {
2381 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2382 {
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002383 int one_change;
2384
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 block_prep(oap, &bd, pos.lnum, FALSE);
2386 pos.col = bd.textcol;
Bram Moolenaar555b3d52008-12-03 12:38:36 +00002387 one_change = swapchars(oap->op_type, &pos, bd.textlen);
2388 did_change |= one_change;
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002389
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002390#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002391 if (netbeans_active() && one_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 {
2393 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2394
Bram Moolenaar009b2592004-10-24 19:18:58 +00002395 netbeans_removed(curbuf, pos.lnum, bd.textcol,
2396 (long)bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002398 &ptr[bd.textcol], bd.textlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01002400#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 }
2402 if (did_change)
2403 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
2404 }
2405 else /* not block mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 {
2407 if (oap->motion_type == MLINE)
2408 {
2409 oap->start.col = 0;
2410 pos.col = 0;
2411 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
2412 if (oap->end.col)
2413 --oap->end.col;
2414 }
2415 else if (!oap->inclusive)
2416 dec(&(oap->end));
2417
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002418 if (pos.lnum == oap->end.lnum)
2419 did_change = swapchars(oap->op_type, &pos,
2420 oap->end.col - pos.col + 1);
2421 else
2422 for (;;)
2423 {
2424 did_change |= swapchars(oap->op_type, &pos,
2425 pos.lnum == oap->end.lnum ? oap->end.col + 1:
2426 (int)STRLEN(ml_get_pos(&pos)));
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002427 if (LTOREQ_POS(oap->end, pos) || inc(&pos) == -1)
Bram Moolenaare60c58d2008-02-06 13:44:43 +00002428 break;
2429 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 if (did_change)
2431 {
2432 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
2433 0L);
2434#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002435 if (netbeans_active() && did_change)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 {
2437 char_u *ptr;
2438 int count;
2439
2440 pos = oap->start;
2441 while (pos.lnum < oap->end.lnum)
2442 {
2443 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002444 count = (int)STRLEN(ptr) - pos.col;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002445 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002447 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 pos.col = 0;
2449 pos.lnum++;
2450 }
2451 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2452 count = oap->end.col - pos.col + 1;
Bram Moolenaar009b2592004-10-24 19:18:58 +00002453 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 netbeans_inserted(curbuf, pos.lnum, pos.col,
Bram Moolenaarb26e6322010-05-22 21:34:09 +02002455 &ptr[pos.col], count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 }
2457#endif
2458 }
2459 }
2460
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 if (!did_change && oap->is_VIsual)
2462 /* No change: need to remove the Visual selection */
2463 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464
2465 /*
2466 * Set '[ and '] marks.
2467 */
2468 curbuf->b_op_start = oap->start;
2469 curbuf->b_op_end = oap->end;
2470
2471 if (oap->line_count > p_report)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002472 smsg(NGETTEXT("%ld line changed", "%ld lines changed",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02002473 oap->line_count), oap->line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474}
2475
2476/*
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002477 * Invoke swapchar() on "length" bytes at position "pos".
2478 * "pos" is advanced to just after the changed characters.
2479 * "length" is rounded up to include the whole last multi-byte character.
2480 * Also works correctly when the number of bytes changes.
2481 * Returns TRUE if some character was changed.
2482 */
2483 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002484swapchars(int op_type, pos_T *pos, int length)
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002485{
2486 int todo;
2487 int did_change = 0;
2488
2489 for (todo = length; todo > 0; --todo)
2490 {
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002491 if (has_mbyte)
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002492 {
2493 int len = (*mb_ptr2len)(ml_get_pos(pos));
2494
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002495 /* we're counting bytes, not characters */
Bram Moolenaarf17968b2013-08-09 19:48:40 +02002496 if (len > 0)
2497 todo -= len - 1;
2498 }
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002499 did_change |= swapchar(op_type, pos);
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002500 if (inc(pos) == -1) /* at end of file */
2501 break;
2502 }
2503 return did_change;
2504}
2505
2506/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507 * If op_type == OP_UPPER: make uppercase,
2508 * if op_type == OP_LOWER: make lowercase,
2509 * if op_type == OP_ROT13: do rot13 encoding,
2510 * else swap case of character at 'pos'
2511 * returns TRUE when something actually changed.
2512 */
2513 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002514swapchar(int op_type, pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515{
2516 int c;
2517 int nc;
2518
2519 c = gchar_pos(pos);
2520
2521 /* Only do rot13 encoding for ASCII characters. */
2522 if (c >= 0x80 && op_type == OP_ROT13)
2523 return FALSE;
2524
Bram Moolenaarb44df0a2008-01-22 15:02:31 +00002525 if (op_type == OP_UPPER && c == 0xdf
2526 && (enc_latin1like || STRCMP(p_enc, "iso-8859-2") == 0))
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00002527 {
2528 pos_T sp = curwin->w_cursor;
2529
2530 /* Special handling of German sharp s: change to "SS". */
2531 curwin->w_cursor = *pos;
2532 del_char(FALSE);
2533 ins_char('S');
2534 ins_char('S');
2535 curwin->w_cursor = sp;
2536 inc(pos);
2537 }
2538
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
2540 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 nc = c;
2542 if (MB_ISLOWER(c))
2543 {
2544 if (op_type == OP_ROT13)
2545 nc = ROT13(c, 'a');
2546 else if (op_type != OP_LOWER)
2547 nc = MB_TOUPPER(c);
2548 }
2549 else if (MB_ISUPPER(c))
2550 {
2551 if (op_type == OP_ROT13)
2552 nc = ROT13(c, 'A');
2553 else if (op_type != OP_UPPER)
2554 nc = MB_TOLOWER(c);
2555 }
2556 if (nc != c)
2557 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
2559 {
2560 pos_T sp = curwin->w_cursor;
2561
2562 curwin->w_cursor = *pos;
Bram Moolenaard1cb65e2010-08-01 14:22:48 +02002563 /* don't use del_char(), it also removes composing chars */
2564 del_bytes(utf_ptr2len(ml_get_cursor()), FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 ins_char(nc);
2566 curwin->w_cursor = sp;
2567 }
2568 else
Bram Moolenaar630afe82018-06-28 19:26:28 +02002569 PBYTE(*pos, nc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 return TRUE;
2571 }
2572 return FALSE;
2573}
2574
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575/*
2576 * op_insert - Insert and append operators for Visual mode.
2577 */
2578 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002579op_insert(oparg_T *oap, long count1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580{
2581 long ins_len, pre_textlen = 0;
2582 char_u *firstline, *ins_text;
Bram Moolenaar2254a8a2017-09-03 14:03:43 +02002583 colnr_T ind_pre = 0, ind_post;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 struct block_def bd;
2585 int i;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002586 pos_T t1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587
2588 /* edit() changes this - record it for OP_APPEND */
2589 bd.is_MAX = (curwin->w_curswant == MAXCOL);
2590
2591 /* vis block is still marked. Get rid of it now. */
2592 curwin->w_cursor.lnum = oap->start.lnum;
2593 update_screen(INVERTED);
2594
2595 if (oap->block_mode)
2596 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 /* When 'virtualedit' is used, need to insert the extra spaces before
2598 * doing block_prep(). When only "block" is used, virtual edit is
2599 * already disabled, but still need it when calling
2600 * coladvance_force(). */
2601 if (curwin->w_cursor.coladd > 0)
2602 {
2603 int old_ve_flags = ve_flags;
2604
2605 ve_flags = VE_ALL;
2606 if (u_save_cursor() == FAIL)
2607 return;
2608 coladvance_force(oap->op_type == OP_APPEND
2609 ? oap->end_vcol + 1 : getviscol());
2610 if (oap->op_type == OP_APPEND)
2611 --curwin->w_cursor.col;
2612 ve_flags = old_ve_flags;
2613 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 /* Get the info about the block before entering the text */
2615 block_prep(oap, &bd, oap->start.lnum, TRUE);
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002616 /* Get indent information */
2617 ind_pre = (colnr_T)getwhitecols_curline();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 firstline = ml_get(oap->start.lnum) + bd.textcol;
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002619
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 if (oap->op_type == OP_APPEND)
2621 firstline += bd.textlen;
2622 pre_textlen = (long)STRLEN(firstline);
2623 }
2624
2625 if (oap->op_type == OP_APPEND)
2626 {
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002627 if (oap->block_mode && curwin->w_cursor.coladd == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 {
2629 /* Move the cursor to the character right of the block. */
2630 curwin->w_set_curswant = TRUE;
2631 while (*ml_get_cursor() != NUL
2632 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
2633 ++curwin->w_cursor.col;
2634 if (bd.is_short && !bd.is_MAX)
2635 {
2636 /* First line was too short, make it longer and adjust the
2637 * values in "bd". */
2638 if (u_save_cursor() == FAIL)
2639 return;
2640 for (i = 0; i < bd.endspaces; ++i)
2641 ins_char(' ');
2642 bd.textlen += bd.endspaces;
2643 }
2644 }
2645 else
2646 {
2647 curwin->w_cursor = oap->end;
Bram Moolenaar6a584dc2006-06-20 18:29:34 +00002648 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649
2650 /* Works just like an 'i'nsert on the next character. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002651 if (!LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 && oap->start_vcol != oap->end_vcol)
2653 inc_cursor();
2654 }
2655 }
2656
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002657 t1 = oap->start;
Bram Moolenaar23fa81d2017-02-01 21:50:21 +01002658 (void)edit(NUL, FALSE, (linenr_T)count1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002660 /* When a tab was inserted, and the characters in front of the tab
2661 * have been converted to a tab as well, the column of the cursor
2662 * might have actually been reduced, so need to adjust here. */
2663 if (t1.lnum == curbuf->b_op_start_orig.lnum
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002664 && LT_POS(curbuf->b_op_start_orig, t1))
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002665 oap->start = curbuf->b_op_start_orig;
2666
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002667 /* If user has moved off this line, we don't know what to do, so do
2668 * nothing.
2669 * Also don't repeat the insert when Insert mode ended with CTRL-C. */
2670 if (curwin->w_cursor.lnum != oap->start.lnum || got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 return;
2672
2673 if (oap->block_mode)
2674 {
2675 struct block_def bd2;
Bram Moolenaar8c87a2b2018-04-10 13:15:47 +02002676 int did_indent = FALSE;
Bram Moolenaar35e802e2018-04-30 17:21:03 +02002677 size_t len;
2678 int add;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679
Bram Moolenaar4ec86dd2017-09-02 23:28:54 +02002680 /* If indent kicked in, the firstline might have changed
2681 * but only do that, if the indent actually increased. */
2682 ind_post = (colnr_T)getwhitecols_curline();
2683 if (curbuf->b_op_start.col > ind_pre && ind_post > ind_pre)
2684 {
2685 bd.textcol += ind_post - ind_pre;
2686 bd.start_vcol += ind_post - ind_pre;
Bram Moolenaar8c87a2b2018-04-10 13:15:47 +02002687 did_indent = TRUE;
Bram Moolenaar4ec86dd2017-09-02 23:28:54 +02002688 }
2689
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002690 /* The user may have moved the cursor before inserting something, try
Bram Moolenaar8c87a2b2018-04-10 13:15:47 +02002691 * to adjust the block for that. But only do it, if the difference
2692 * does not come from indent kicking in. */
2693 if (oap->start.lnum == curbuf->b_op_start_orig.lnum
2694 && !bd.is_MAX && !did_indent)
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002695 {
2696 if (oap->op_type == OP_INSERT
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002697 && oap->start.col + oap->start.coladd
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002698 != curbuf->b_op_start_orig.col
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002699 + curbuf->b_op_start_orig.coladd)
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002700 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002701 int t = getviscol2(curbuf->b_op_start_orig.col,
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002702 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002703 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002704 pre_textlen -= t - oap->start_vcol;
2705 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002706 }
2707 else if (oap->op_type == OP_APPEND
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002708 && oap->end.col + oap->end.coladd
Bram Moolenaar4c9a9492014-03-19 18:57:54 +01002709 >= curbuf->b_op_start_orig.col
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002710 + curbuf->b_op_start_orig.coladd)
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002711 {
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002712 int t = getviscol2(curbuf->b_op_start_orig.col,
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002713 curbuf->b_op_start_orig.coladd);
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01002714 oap->start.col = curbuf->b_op_start_orig.col;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002715 /* reset pre_textlen to the value of OP_INSERT */
2716 pre_textlen += bd.textlen;
Bram Moolenaarf2c03d72015-02-03 18:36:44 +01002717 pre_textlen -= t - oap->start_vcol;
2718 oap->start_vcol = t;
Bram Moolenaar3f75e422013-11-11 01:29:22 +01002719 oap->op_type = OP_INSERT;
2720 }
2721 }
2722
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 /*
2724 * Spaces and tabs in the indent may have changed to other spaces and
Bram Moolenaar53241da2007-09-13 20:41:32 +00002725 * tabs. Get the starting column again and correct the length.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726 * Don't do this when "$" used, end-of-line will have changed.
2727 */
2728 block_prep(oap, &bd2, oap->start.lnum, TRUE);
2729 if (!bd.is_MAX || bd2.textlen < bd.textlen)
2730 {
2731 if (oap->op_type == OP_APPEND)
2732 {
2733 pre_textlen += bd2.textlen - bd.textlen;
2734 if (bd2.endspaces)
2735 --bd2.textlen;
2736 }
2737 bd.textcol = bd2.textcol;
2738 bd.textlen = bd2.textlen;
2739 }
2740
2741 /*
2742 * Subsequent calls to ml_get() flush the firstline data - take a
2743 * copy of the required string.
2744 */
Bram Moolenaar35e802e2018-04-30 17:21:03 +02002745 firstline = ml_get(oap->start.lnum);
2746 len = STRLEN(firstline);
2747 add = bd.textcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 if (oap->op_type == OP_APPEND)
Bram Moolenaar35e802e2018-04-30 17:21:03 +02002749 add += bd.textlen;
2750 if ((size_t)add > len)
2751 firstline += len; // short line, point to the NUL
2752 else
2753 firstline += add;
Bram Moolenaar5e4b9e92012-03-23 14:16:23 +01002754 if (pre_textlen >= 0
2755 && (ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 {
2757 ins_text = vim_strnsave(firstline, (int)ins_len);
2758 if (ins_text != NULL)
2759 {
2760 /* block handled here */
2761 if (u_save(oap->start.lnum,
2762 (linenr_T)(oap->end.lnum + 1)) == OK)
2763 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
2764 &bd);
2765
2766 curwin->w_cursor.col = oap->start.col;
2767 check_cursor();
2768 vim_free(ins_text);
2769 }
2770 }
2771 }
2772}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773
2774/*
2775 * op_change - handle a change operation
2776 *
2777 * return TRUE if edit() returns because of a CTRL-O command
2778 */
2779 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002780op_change(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781{
2782 colnr_T l;
2783 int retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 long offset;
2785 linenr_T linenr;
Bram Moolenaar53241da2007-09-13 20:41:32 +00002786 long ins_len;
2787 long pre_textlen = 0;
2788 long pre_indent = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 char_u *firstline;
2790 char_u *ins_text, *newp, *oldp;
2791 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792
2793 l = oap->start.col;
2794 if (oap->motion_type == MLINE)
2795 {
2796 l = 0;
2797#ifdef FEAT_SMARTINDENT
2798 if (!p_paste && curbuf->b_p_si
2799# ifdef FEAT_CINDENT
2800 && !curbuf->b_p_cin
2801# endif
2802 )
2803 can_si = TRUE; /* It's like opening a new line, do si */
2804#endif
2805 }
2806
2807 /* First delete the text in the region. In an empty buffer only need to
2808 * save for undo */
2809 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2810 {
2811 if (u_save_cursor() == FAIL)
2812 return FALSE;
2813 }
2814 else if (op_delete(oap) == FAIL)
2815 return FALSE;
2816
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002817 if ((l > curwin->w_cursor.col) && !LINEEMPTY(curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 && !virtual_op)
2819 inc_cursor();
2820
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 /* check for still on same line (<CR> in inserted text meaningless) */
2822 /* skip blank lines too */
2823 if (oap->block_mode)
2824 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 /* Add spaces before getting the current line length. */
2826 if (virtual_op && (curwin->w_cursor.coladd > 0
2827 || gchar_cursor() == NUL))
2828 coladvance_force(getviscol());
Bram Moolenaar53241da2007-09-13 20:41:32 +00002829 firstline = ml_get(oap->start.lnum);
2830 pre_textlen = (long)STRLEN(firstline);
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002831 pre_indent = (long)getwhitecols(firstline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 bd.textcol = curwin->w_cursor.col;
2833 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834
2835#if defined(FEAT_LISP) || defined(FEAT_CINDENT)
2836 if (oap->motion_type == MLINE)
2837 fix_indent();
2838#endif
2839
2840 retval = edit(NUL, FALSE, (linenr_T)1);
2841
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002843 * In Visual block mode, handle copying the new text to all lines of the
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844 * block.
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002845 * Don't repeat the insert when Insert mode ended with CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 */
Bram Moolenaaraacbb002008-01-03 15:34:40 +00002847 if (oap->block_mode && oap->start.lnum != oap->end.lnum && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848 {
Bram Moolenaar53241da2007-09-13 20:41:32 +00002849 /* Auto-indenting may have changed the indent. If the cursor was past
2850 * the indent, exclude that indent change from the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851 firstline = ml_get(oap->start.lnum);
Bram Moolenaarb8dc4d42007-09-25 12:20:19 +00002852 if (bd.textcol > (colnr_T)pre_indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 {
Bram Moolenaare2e69e42017-09-02 20:30:35 +02002854 long new_indent = (long)getwhitecols(firstline);
Bram Moolenaar53241da2007-09-13 20:41:32 +00002855
2856 pre_textlen += new_indent - pre_indent;
2857 bd.textcol += new_indent - pre_indent;
2858 }
2859
2860 ins_len = (long)STRLEN(firstline) - pre_textlen;
2861 if (ins_len > 0)
2862 {
2863 /* Subsequent calls to ml_get() flush the firstline data - take a
2864 * copy of the inserted text. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
2866 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002867 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
2869 linenr++)
2870 {
2871 block_prep(oap, &bd, linenr, TRUE);
2872 if (!bd.is_short || virtual_op)
2873 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 pos_T vpos;
2875
2876 /* If the block starts in virtual space, count the
2877 * initial coladd offset as part of "startspaces" */
2878 if (bd.is_short)
2879 {
Bram Moolenaara1381de2009-11-03 15:44:21 +00002880 vpos.lnum = linenr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881 (void)getvpos(&vpos, oap->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882 }
2883 else
2884 vpos.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 oldp = ml_get(linenr);
2886 newp = alloc_check((unsigned)(STRLEN(oldp)
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002887 + vpos.coladd + ins_len + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888 if (newp == NULL)
2889 continue;
2890 /* copy up to block start */
2891 mch_memmove(newp, oldp, (size_t)bd.textcol);
2892 offset = bd.textcol;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02002893 vim_memset(newp + offset, ' ', (size_t)vpos.coladd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 offset += vpos.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
2896 offset += ins_len;
2897 oldp += bd.textcol;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00002898 STRMOVE(newp + offset, oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 ml_replace(linenr, newp, FALSE);
2900 }
2901 }
2902 check_cursor();
2903
2904 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
2905 }
2906 vim_free(ins_text);
2907 }
2908 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909
2910 return retval;
2911}
2912
2913/*
2914 * set all the yank registers to empty (called from main())
2915 */
2916 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002917init_yank(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918{
2919 int i;
2920
2921 for (i = 0; i < NUM_REGISTERS; ++i)
2922 y_regs[i].y_array = NULL;
2923}
2924
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002925#if defined(EXITFREE) || defined(PROTO)
2926 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002927clear_registers(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00002928{
2929 int i;
2930
2931 for (i = 0; i < NUM_REGISTERS; ++i)
2932 {
2933 y_current = &y_regs[i];
2934 if (y_current->y_array != NULL)
2935 free_yank_all();
2936 }
2937}
2938#endif
2939
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940/*
2941 * Free "n" lines from the current yank register.
2942 * Called for normal freeing and in case of error.
2943 */
2944 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002945free_yank(long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946{
2947 if (y_current->y_array != NULL)
2948 {
2949 long i;
2950
2951 for (i = n; --i >= 0; )
2952 {
2953#ifdef AMIGA /* only for very slow machines */
2954 if ((i & 1023) == 1023) /* this may take a while */
2955 {
2956 /*
2957 * This message should never cause a hit-return message.
2958 * Overwrite this message with any next message.
2959 */
2960 ++no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002961 smsg(_("freeing %ld lines"), i + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 --no_wait_return;
2963 msg_didout = FALSE;
2964 msg_col = 0;
2965 }
2966#endif
2967 vim_free(y_current->y_array[i]);
2968 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01002969 VIM_CLEAR(y_current->y_array);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970#ifdef AMIGA
2971 if (n >= 1000)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002972 msg("");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973#endif
2974 }
2975}
2976
2977 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002978free_yank_all(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979{
2980 free_yank(y_current->y_size);
2981}
2982
2983/*
2984 * Yank the text between "oap->start" and "oap->end" into a yank register.
2985 * If we are to append (uppercase register), we first yank into a new yank
2986 * register and then concatenate the old and the new one (so we keep the old
2987 * one in case of out-of-memory).
2988 *
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02002989 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 */
2991 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002992op_yank(oparg_T *oap, int deleting, int mess)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993{
2994 long y_idx; /* index in y_array[] */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002995 yankreg_T *curr; /* copy of y_current */
2996 yankreg_T newreg; /* new yank register when appending */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 char_u **new_ptr;
2998 linenr_T lnum; /* current line number */
2999 long j;
3000 int yanktype = oap->motion_type;
3001 long yanklines = oap->line_count;
3002 linenr_T yankendlnum = oap->end.lnum;
3003 char_u *p;
3004 char_u *pnew;
3005 struct block_def bd;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003006#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003007 int did_star = FALSE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003008#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009
3010 /* check for read-only register */
3011 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
3012 {
3013 beep_flush();
3014 return FAIL;
3015 }
3016 if (oap->regname == '_') /* black hole: nothing to do */
3017 return OK;
3018
3019#ifdef FEAT_CLIPBOARD
3020 if (!clip_star.available && oap->regname == '*')
3021 oap->regname = 0;
3022 else if (!clip_plus.available && oap->regname == '+')
3023 oap->regname = 0;
3024#endif
3025
3026 if (!deleting) /* op_delete() already set y_current */
3027 get_yank_register(oap->regname, TRUE);
3028
3029 curr = y_current;
3030 /* append to existing contents */
3031 if (y_append && y_current->y_array != NULL)
3032 y_current = &newreg;
3033 else
3034 free_yank_all(); /* free previously yanked lines */
3035
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00003036 /*
3037 * If the cursor was in column 1 before and after the movement, and the
3038 * operator is not inclusive, the yank is always linewise.
3039 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040 if ( oap->motion_type == MCHAR
3041 && oap->start.col == 0
3042 && !oap->inclusive
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 && (!oap->is_VIsual || *p_sel == 'o')
Bram Moolenaarec2dad62005-01-02 11:36:03 +00003044 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 && oap->end.col == 0
3046 && yanklines > 1)
3047 {
3048 yanktype = MLINE;
3049 --yankendlnum;
3050 --yanklines;
3051 }
3052
3053 y_current->y_size = yanklines;
3054 y_current->y_type = yanktype; /* set the yank register type */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 y_current->y_width = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
3057 yanklines), TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 if (y_current->y_array == NULL)
3059 {
3060 y_current = curr;
3061 return FAIL;
3062 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003063#ifdef FEAT_VIMINFO
3064 y_current->y_time_set = vim_time();
3065#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066
3067 y_idx = 0;
3068 lnum = oap->start.lnum;
3069
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070 if (oap->block_mode)
3071 {
3072 /* Visual block mode */
3073 y_current->y_type = MBLOCK; /* set the yank register type */
3074 y_current->y_width = oap->end_vcol - oap->start_vcol;
3075
3076 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
3077 y_current->y_width--;
3078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079
3080 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
3081 {
3082 switch (y_current->y_type)
3083 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084 case MBLOCK:
3085 block_prep(oap, &bd, lnum, FALSE);
3086 if (yank_copy_line(&bd, y_idx) == FAIL)
3087 goto fail;
3088 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089
3090 case MLINE:
3091 if ((y_current->y_array[y_idx] =
3092 vim_strsave(ml_get(lnum))) == NULL)
3093 goto fail;
3094 break;
3095
3096 case MCHAR:
3097 {
3098 colnr_T startcol = 0, endcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 int is_oneChar = FALSE;
3100 colnr_T cs, ce;
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003101
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102 p = ml_get(lnum);
3103 bd.startspaces = 0;
3104 bd.endspaces = 0;
3105
3106 if (lnum == oap->start.lnum)
3107 {
3108 startcol = oap->start.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 if (virtual_op)
3110 {
3111 getvcol(curwin, &oap->start, &cs, NULL, &ce);
3112 if (ce != cs && oap->start.coladd > 0)
3113 {
3114 /* Part of a tab selected -- but don't
3115 * double-count it. */
3116 bd.startspaces = (ce - cs + 1)
3117 - oap->start.coladd;
3118 startcol++;
3119 }
3120 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121 }
3122
3123 if (lnum == oap->end.lnum)
3124 {
3125 endcol = oap->end.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 if (virtual_op)
3127 {
3128 getvcol(curwin, &oap->end, &cs, NULL, &ce);
3129 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 /* Don't add space for double-wide
3131 * char; endcol will be on last byte
3132 * of multi-byte char. */
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01003133 && (*mb_head_off)(p, p + endcol) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 {
3135 if (oap->start.lnum == oap->end.lnum
3136 && oap->start.col == oap->end.col)
3137 {
3138 /* Special case: inside a single char */
3139 is_oneChar = TRUE;
3140 bd.startspaces = oap->end.coladd
3141 - oap->start.coladd + oap->inclusive;
3142 endcol = startcol;
3143 }
3144 else
3145 {
3146 bd.endspaces = oap->end.coladd
3147 + oap->inclusive;
3148 endcol -= oap->inclusive;
3149 }
3150 }
3151 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 }
Bram Moolenaar18e00d22012-05-18 12:49:40 +02003153 if (endcol == MAXCOL)
3154 endcol = (colnr_T)STRLEN(p);
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01003155 if (startcol > endcol || is_oneChar)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 bd.textlen = 0;
3157 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 bd.textlen = endcol - startcol + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159 bd.textstart = p + startcol;
3160 if (yank_copy_line(&bd, y_idx) == FAIL)
3161 goto fail;
3162 break;
3163 }
3164 /* NOTREACHED */
3165 }
3166 }
3167
3168 if (curr != y_current) /* append the new block to the old block */
3169 {
3170 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
3171 (curr->y_size + y_current->y_size)), TRUE);
3172 if (new_ptr == NULL)
3173 goto fail;
3174 for (j = 0; j < curr->y_size; ++j)
3175 new_ptr[j] = curr->y_array[j];
3176 vim_free(curr->y_array);
3177 curr->y_array = new_ptr;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003178#ifdef FEAT_VIMINFO
3179 curr->y_time_set = vim_time();
3180#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181
3182 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
3183 curr->y_type = MLINE;
3184
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003185 /* Concatenate the last line of the old block with the first line of
3186 * the new block, unless being Vi compatible. */
3187 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 {
3189 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
3190 + STRLEN(y_current->y_array[0]) + 1), TRUE);
3191 if (pnew == NULL)
3192 {
3193 y_idx = y_current->y_size - 1;
3194 goto fail;
3195 }
3196 STRCPY(pnew, curr->y_array[--j]);
3197 STRCAT(pnew, y_current->y_array[0]);
3198 vim_free(curr->y_array[j]);
3199 vim_free(y_current->y_array[0]);
3200 curr->y_array[j++] = pnew;
3201 y_idx = 1;
3202 }
3203 else
3204 y_idx = 0;
3205 while (y_idx < y_current->y_size)
3206 curr->y_array[j++] = y_current->y_array[y_idx++];
3207 curr->y_size = j;
3208 vim_free(y_current->y_array);
3209 y_current = curr;
3210 }
Bram Moolenaar7ec83432014-06-17 18:16:11 +02003211 if (curwin->w_p_rnu)
3212 redraw_later(SOME_VALID); /* cursor moved to start */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 if (mess) /* Display message about yank? */
3214 {
3215 if (yanktype == MCHAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 && !oap->block_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 && yanklines == 1)
3218 yanklines = 0;
3219 /* Some versions of Vi use ">=" here, some don't... */
3220 if (yanklines > p_report)
3221 {
Bram Moolenaare45deb72017-07-16 17:56:16 +02003222 char namebuf[100];
3223
3224 if (oap->regname == NUL)
3225 *namebuf = NUL;
3226 else
3227 vim_snprintf(namebuf, sizeof(namebuf),
Bram Moolenaar60d0e972017-07-16 20:54:34 +02003228 _(" into \"%c"), oap->regname);
Bram Moolenaare45deb72017-07-16 17:56:16 +02003229
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 /* redisplay now, so message is not deleted */
3231 update_topline_redraw();
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003232 if (oap->block_mode)
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003233 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003234 smsg(NGETTEXT("block of %ld line yanked%s",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003235 "block of %ld lines yanked%s", yanklines),
3236 yanklines, namebuf);
Bram Moolenaare2cc9702005-03-15 22:43:58 +00003237 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238 else
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003239 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003240 smsg(NGETTEXT("%ld line yanked%s",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02003241 "%ld lines yanked%s", yanklines),
3242 yanklines, namebuf);
3243 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244 }
3245 }
3246
3247 /*
3248 * Set "'[" and "']" marks.
3249 */
3250 curbuf->b_op_start = oap->start;
3251 curbuf->b_op_end = oap->end;
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003252 if (yanktype == MLINE && !oap->block_mode)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003253 {
3254 curbuf->b_op_start.col = 0;
3255 curbuf->b_op_end.col = MAXCOL;
3256 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257
3258#ifdef FEAT_CLIPBOARD
3259 /*
3260 * If we were yanking to the '*' register, send result to clipboard.
3261 * If no register was specified, and "unnamed" in 'clipboard', make a copy
3262 * to the '*' register.
3263 */
3264 if (clip_star.available
3265 && (curr == &(y_regs[STAR_REGISTER])
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003266 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003267 && ((clip_unnamed | clip_unnamed_saved) & CLIP_UNNAMED))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268 {
3269 if (curr != &(y_regs[STAR_REGISTER]))
3270 /* Copy the text from register 0 to the clipboard register. */
3271 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3272
3273 clip_own_selection(&clip_star);
3274 clip_gen_set_selection(&clip_star);
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003275# ifdef FEAT_X11
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003276 did_star = TRUE;
Bram Moolenaar9c52c3a2010-12-08 14:23:15 +01003277# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278 }
3279
3280# ifdef FEAT_X11
3281 /*
3282 * If we were yanking to the '+' register, send result to selection.
3283 * Also copy to the '*' register, in case auto-select is off.
3284 */
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003285 if (clip_plus.available
3286 && (curr == &(y_regs[PLUS_REGISTER])
3287 || (!deleting && oap->regname == 0
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02003288 && ((clip_unnamed | clip_unnamed_saved) &
3289 CLIP_UNNAMED_PLUS))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 {
Bram Moolenaarbf9680e2010-12-02 21:43:16 +01003291 if (curr != &(y_regs[PLUS_REGISTER]))
3292 /* Copy the text from register 0 to the clipboard register. */
3293 copy_yank_reg(&(y_regs[PLUS_REGISTER]));
3294
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 clip_own_selection(&clip_plus);
3296 clip_gen_set_selection(&clip_plus);
Bram Moolenaar8bfe07b2017-10-15 21:47:05 +02003297 if (!clip_isautosel_star() && !clip_isautosel_plus()
3298 && !did_star && curr == &(y_regs[PLUS_REGISTER]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 {
3300 copy_yank_reg(&(y_regs[STAR_REGISTER]));
3301 clip_own_selection(&clip_star);
3302 clip_gen_set_selection(&clip_star);
3303 }
3304 }
3305# endif
3306#endif
3307
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01003308#if defined(FEAT_EVAL)
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01003309 if (!deleting && has_textyankpost())
3310 yank_do_autocmd(oap, y_current);
3311#endif
3312
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 return OK;
3314
3315fail: /* free the allocated lines */
3316 free_yank(y_idx + 1);
3317 y_current = curr;
3318 return FAIL;
3319}
3320
3321 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003322yank_copy_line(struct block_def *bd, long y_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323{
3324 char_u *pnew;
3325
3326 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
3327 == NULL)
3328 return FAIL;
3329 y_current->y_array[y_idx] = pnew;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003330 vim_memset(pnew, ' ', (size_t)bd->startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 pnew += bd->startspaces;
3332 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
3333 pnew += bd->textlen;
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003334 vim_memset(pnew, ' ', (size_t)bd->endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335 pnew += bd->endspaces;
3336 *pnew = NUL;
3337 return OK;
3338}
3339
3340#ifdef FEAT_CLIPBOARD
3341/*
3342 * Make a copy of the y_current register to register "reg".
3343 */
3344 static void
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003345copy_yank_reg(yankreg_T *reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02003347 yankreg_T *curr = y_current;
3348 long j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349
3350 y_current = reg;
3351 free_yank_all();
3352 *y_current = *curr;
3353 y_current->y_array = (char_u **)lalloc_clear(
3354 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
3355 if (y_current->y_array == NULL)
3356 y_current->y_size = 0;
3357 else
3358 for (j = 0; j < y_current->y_size; ++j)
3359 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
3360 {
3361 free_yank(j);
3362 y_current->y_size = 0;
3363 break;
3364 }
3365 y_current = curr;
3366}
3367#endif
3368
3369/*
Bram Moolenaar677ee682005-01-27 14:41:15 +00003370 * Put contents of register "regname" into the text.
3371 * Caller must check "regname" to be valid!
3372 * "flags": PUT_FIXINDENT make indent look nice
3373 * PUT_CURSEND leave cursor after end of new text
3374 * PUT_LINE force linewise put (":put")
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375 */
3376 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003377do_put(
3378 int regname,
3379 int dir, /* BACKWARD for 'P', FORWARD for 'p' */
3380 long count,
3381 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382{
3383 char_u *ptr;
3384 char_u *newp, *oldp;
3385 int yanklen;
3386 int totlen = 0; /* init for gcc */
3387 linenr_T lnum;
3388 colnr_T col;
3389 long i; /* index in y_array[] */
3390 int y_type;
3391 long y_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 int oldlen;
3393 long y_width = 0;
3394 colnr_T vcol;
3395 int delcount;
3396 int incr = 0;
3397 long j;
3398 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 char_u **y_array = NULL;
3400 long nr_lines = 0;
3401 pos_T new_cursor;
3402 int indent;
3403 int orig_indent = 0; /* init for gcc */
3404 int indent_diff = 0; /* init for gcc */
3405 int first_indent = TRUE;
3406 int lendiff = 0;
3407 pos_T old_pos;
3408 char_u *insert_string = NULL;
3409 int allocated = FALSE;
3410 long cnt;
3411
3412#ifdef FEAT_CLIPBOARD
3413 /* Adjust register name for "unnamed" in 'clipboard'. */
3414 adjust_clip_reg(&regname);
3415 (void)may_get_selection(regname);
3416#endif
3417
3418 if (flags & PUT_FIXINDENT)
3419 orig_indent = get_indent();
3420
3421 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3422 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3423
3424 /*
3425 * Using inserted text works differently, because the register includes
3426 * special characters (newlines, etc.).
3427 */
3428 if (regname == '.')
3429 {
Bram Moolenaarf8eb9c52017-01-02 17:31:24 +01003430 if (VIsual_active)
3431 stuffcharReadbuff(VIsual_mode);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
3433 (count == -1 ? 'O' : 'i')), count, FALSE);
3434 /* Putting the text is done later, so can't really move the cursor to
3435 * the next character. Use "l" to simulate it. */
3436 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
3437 stuffcharReadbuff('l');
3438 return;
3439 }
3440
3441 /*
3442 * For special registers '%' (file name), '#' (alternate file name) and
3443 * ':' (last command line), etc. we have to create a fake yank register.
3444 */
3445 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
3446 {
3447 if (insert_string == NULL)
3448 return;
3449 }
3450
Bram Moolenaarf52f9ea2018-06-27 20:49:44 +02003451 /* Autocommands may be executed when saving lines for undo. This might
3452 * make "y_array" invalid, so we start undo now to avoid that. */
3453 if (u_save(curwin->w_cursor.lnum, curwin->w_cursor.lnum + 1) == FAIL)
3454 goto end;
Bram Moolenaar27356ad2012-12-12 16:11:36 +01003455
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 if (insert_string != NULL)
3457 {
3458 y_type = MCHAR;
3459#ifdef FEAT_EVAL
3460 if (regname == '=')
3461 {
3462 /* For the = register we need to split the string at NL
Bram Moolenaara554a192011-09-21 17:33:53 +02003463 * characters.
3464 * Loop twice: count the number of lines and save them. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 for (;;)
3466 {
3467 y_size = 0;
3468 ptr = insert_string;
3469 while (ptr != NULL)
3470 {
3471 if (y_array != NULL)
3472 y_array[y_size] = ptr;
3473 ++y_size;
3474 ptr = vim_strchr(ptr, '\n');
3475 if (ptr != NULL)
3476 {
3477 if (y_array != NULL)
3478 *ptr = NUL;
3479 ++ptr;
Bram Moolenaara554a192011-09-21 17:33:53 +02003480 /* A trailing '\n' makes the register linewise. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 if (*ptr == NUL)
3482 {
3483 y_type = MLINE;
3484 break;
3485 }
3486 }
3487 }
3488 if (y_array != NULL)
3489 break;
3490 y_array = (char_u **)alloc((unsigned)
3491 (y_size * sizeof(char_u *)));
3492 if (y_array == NULL)
3493 goto end;
3494 }
3495 }
3496 else
3497#endif
3498 {
3499 y_size = 1; /* use fake one-line yank register */
3500 y_array = &insert_string;
3501 }
3502 }
3503 else
3504 {
3505 get_yank_register(regname, FALSE);
3506
3507 y_type = y_current->y_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 y_width = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 y_size = y_current->y_size;
3510 y_array = y_current->y_array;
3511 }
3512
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 if (y_type == MLINE)
3514 {
3515 if (flags & PUT_LINE_SPLIT)
3516 {
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003517 char_u *p;
3518
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519 /* "p" or "P" in Visual mode: split the lines to put the text in
3520 * between. */
3521 if (u_save_cursor() == FAIL)
3522 goto end;
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003523 p = ml_get_cursor();
3524 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003525 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003526 ptr = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527 if (ptr == NULL)
3528 goto end;
3529 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
3530 vim_free(ptr);
3531
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003532 oldp = ml_get_curline();
3533 p = oldp + curwin->w_cursor.col;
3534 if (dir == FORWARD && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003535 MB_PTR_ADV(p);
Bram Moolenaarc004bc22015-06-19 15:17:55 +02003536 ptr = vim_strnsave(oldp, p - oldp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 if (ptr == NULL)
3538 goto end;
3539 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
3540 ++nr_lines;
3541 dir = FORWARD;
3542 }
3543 if (flags & PUT_LINE_FORWARD)
3544 {
3545 /* Must be "p" for a Visual block, put lines below the block. */
Bram Moolenaara23ccb82006-02-27 00:08:02 +00003546 curwin->w_cursor = curbuf->b_visual.vi_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 dir = FORWARD;
3548 }
3549 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
3550 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
3551 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552
3553 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
3554 y_type = MLINE;
3555
3556 if (y_size == 0 || y_array == NULL)
3557 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003558 semsg(_("E353: Nothing in register %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 regname == 0 ? (char_u *)"\"" : transchar(regname));
3560 goto end;
3561 }
3562
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 if (y_type == MBLOCK)
3564 {
3565 lnum = curwin->w_cursor.lnum + y_size + 1;
3566 if (lnum > curbuf->b_ml.ml_line_count)
3567 lnum = curbuf->b_ml.ml_line_count + 1;
3568 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
3569 goto end;
3570 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003571 else if (y_type == MLINE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 {
3573 lnum = curwin->w_cursor.lnum;
3574#ifdef FEAT_FOLDING
3575 /* Correct line number for closed fold. Don't move the cursor yet,
3576 * u_save() uses it. */
3577 if (dir == BACKWARD)
3578 (void)hasFolding(lnum, &lnum, NULL);
3579 else
3580 (void)hasFolding(lnum, NULL, &lnum);
3581#endif
3582 if (dir == FORWARD)
3583 ++lnum;
Bram Moolenaar10315b12013-06-29 17:19:28 +02003584 /* In an empty buffer the empty line is going to be replaced, include
3585 * it in the saved lines. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003586 if ((BUFEMPTY() ? u_save(0, 2) : u_save(lnum - 1, lnum)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587 goto end;
3588#ifdef FEAT_FOLDING
3589 if (dir == FORWARD)
3590 curwin->w_cursor.lnum = lnum - 1;
3591 else
3592 curwin->w_cursor.lnum = lnum;
3593 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
3594#endif
3595 }
3596 else if (u_save_cursor() == FAIL)
3597 goto end;
3598
3599 yanklen = (int)STRLEN(y_array[0]);
3600
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 if (ve_flags == VE_ALL && y_type == MCHAR)
3602 {
3603 if (gchar_cursor() == TAB)
3604 {
3605 /* Don't need to insert spaces when "p" on the last position of a
3606 * tab or "P" on the first position. */
Bram Moolenaar04958cb2018-06-23 19:23:02 +02003607#ifdef FEAT_VARTABS
3608 int viscol = getviscol();
3609 if (dir == FORWARD
3610 ? tabstop_padding(viscol, curbuf->b_p_ts,
3611 curbuf->b_p_vts_array) != 1
3612 : curwin->w_cursor.coladd > 0)
3613 coladvance_force(viscol);
3614#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615 if (dir == FORWARD
3616 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
3617 : curwin->w_cursor.coladd > 0)
3618 coladvance_force(getviscol());
Bram Moolenaar04958cb2018-06-23 19:23:02 +02003619#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 else
3621 curwin->w_cursor.coladd = 0;
3622 }
3623 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
3624 coladvance_force(getviscol() + (dir == FORWARD));
3625 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626
3627 lnum = curwin->w_cursor.lnum;
3628 col = curwin->w_cursor.col;
3629
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630 /*
3631 * Block mode
3632 */
3633 if (y_type == MBLOCK)
3634 {
Bram Moolenaarc8129962017-01-22 20:04:51 +01003635 int c = gchar_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 colnr_T endcol2 = 0;
3637
3638 if (dir == FORWARD && c != NUL)
3639 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 if (ve_flags == VE_ALL)
3641 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3642 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
3644
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645 if (has_mbyte)
3646 /* move to start of next multi-byte character */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003647 curwin->w_cursor.col += (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 if (c != TAB || ve_flags != VE_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 ++curwin->w_cursor.col;
3651 ++col;
3652 }
3653 else
3654 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
3655
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656 col += curwin->w_cursor.coladd;
Bram Moolenaare649ef02007-06-28 20:18:51 +00003657 if (ve_flags == VE_ALL
3658 && (curwin->w_cursor.coladd > 0
3659 || endcol2 == curwin->w_cursor.col))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 {
3661 if (dir == FORWARD && c == NUL)
3662 ++col;
3663 if (dir != FORWARD && c != NUL)
3664 ++curwin->w_cursor.col;
3665 if (c == TAB)
3666 {
3667 if (dir == BACKWARD && curwin->w_cursor.col)
3668 curwin->w_cursor.col--;
3669 if (dir == FORWARD && col - 1 == endcol2)
3670 curwin->w_cursor.col++;
3671 }
3672 }
3673 curwin->w_cursor.coladd = 0;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003674 bd.textcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 for (i = 0; i < y_size; ++i)
3676 {
3677 int spaces;
3678 char shortline;
3679
3680 bd.startspaces = 0;
3681 bd.endspaces = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 vcol = 0;
3683 delcount = 0;
3684
3685 /* add a new line */
3686 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
3687 {
3688 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
3689 (colnr_T)1, FALSE) == FAIL)
3690 break;
3691 ++nr_lines;
3692 }
3693 /* get the old line and advance to the position to insert at */
3694 oldp = ml_get_curline();
3695 oldlen = (int)STRLEN(oldp);
3696 for (ptr = oldp; vcol < col && *ptr; )
3697 {
3698 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02003699 incr = lbr_chartabsize_adv(oldp, &ptr, (colnr_T)vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 vcol += incr;
3701 }
3702 bd.textcol = (colnr_T)(ptr - oldp);
3703
3704 shortline = (vcol < col) || (vcol == col && !*ptr) ;
3705
3706 if (vcol < col) /* line too short, padd with spaces */
3707 bd.startspaces = col - vcol;
3708 else if (vcol > col)
3709 {
3710 bd.endspaces = vcol - col;
3711 bd.startspaces = incr - bd.endspaces;
3712 --bd.textcol;
3713 delcount = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714 if (has_mbyte)
3715 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 if (oldp[bd.textcol] != TAB)
3717 {
3718 /* Only a Tab can be split into spaces. Other
3719 * characters will have to be moved to after the
3720 * block, causing misalignment. */
3721 delcount = 0;
3722 bd.endspaces = 0;
3723 }
3724 }
3725
3726 yanklen = (int)STRLEN(y_array[i]);
3727
3728 /* calculate number of spaces required to fill right side of block*/
3729 spaces = y_width + 1;
3730 for (j = 0; j < yanklen; j++)
Bram Moolenaar597a4222014-06-25 14:39:50 +02003731 spaces -= lbr_chartabsize(NULL, &y_array[i][j], 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 if (spaces < 0)
3733 spaces = 0;
3734
3735 /* insert the new text */
3736 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
3737 newp = alloc_check((unsigned)totlen + oldlen + 1);
3738 if (newp == NULL)
3739 break;
3740 /* copy part up to cursor to new line */
3741 ptr = newp;
3742 mch_memmove(ptr, oldp, (size_t)bd.textcol);
3743 ptr += bd.textcol;
3744 /* may insert some spaces before the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003745 vim_memset(ptr, ' ', (size_t)bd.startspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 ptr += bd.startspaces;
3747 /* insert the new text */
3748 for (j = 0; j < count; ++j)
3749 {
3750 mch_memmove(ptr, y_array[i], (size_t)yanklen);
3751 ptr += yanklen;
3752
3753 /* insert block's trailing spaces only if there's text behind */
3754 if ((j < count - 1 || !shortline) && spaces)
3755 {
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003756 vim_memset(ptr, ' ', (size_t)spaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 ptr += spaces;
3758 }
3759 }
3760 /* may insert some spaces after the new text */
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02003761 vim_memset(ptr, ' ', (size_t)bd.endspaces);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 ptr += bd.endspaces;
3763 /* move the text after the cursor to the end of the line. */
3764 mch_memmove(ptr, oldp + bd.textcol + delcount,
3765 (size_t)(oldlen - bd.textcol - delcount + 1));
3766 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
3767
3768 ++curwin->w_cursor.lnum;
3769 if (i == 0)
3770 curwin->w_cursor.col += bd.startspaces;
3771 }
3772
3773 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
3774
3775 /* Set '[ mark. */
3776 curbuf->b_op_start = curwin->w_cursor;
3777 curbuf->b_op_start.lnum = lnum;
3778
3779 /* adjust '] mark */
3780 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
3781 curbuf->b_op_end.col = bd.textcol + totlen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 curbuf->b_op_end.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 if (flags & PUT_CURSEND)
3784 {
Bram Moolenaar12dec752006-07-23 20:37:09 +00003785 colnr_T len;
3786
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 curwin->w_cursor = curbuf->b_op_end;
3788 curwin->w_cursor.col++;
Bram Moolenaar12dec752006-07-23 20:37:09 +00003789
3790 /* in Insert mode we might be after the NUL, correct for that */
3791 len = (colnr_T)STRLEN(ml_get_curline());
3792 if (curwin->w_cursor.col > len)
3793 curwin->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 }
3795 else
3796 curwin->w_cursor.lnum = lnum;
3797 }
3798 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 {
3800 /*
3801 * Character or Line mode
3802 */
3803 if (y_type == MCHAR)
3804 {
3805 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
3806 * char */
3807 if (dir == FORWARD && gchar_cursor() != NUL)
3808 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 if (has_mbyte)
3810 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003811 int bytelen = (*mb_ptr2len)(ml_get_cursor());
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812
3813 /* put it on the next of the multi-byte character. */
3814 col += bytelen;
3815 if (yanklen)
3816 {
3817 curwin->w_cursor.col += bytelen;
3818 curbuf->b_op_end.col += bytelen;
3819 }
3820 }
3821 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 {
3823 ++col;
3824 if (yanklen)
3825 {
3826 ++curwin->w_cursor.col;
3827 ++curbuf->b_op_end.col;
3828 }
3829 }
3830 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 curbuf->b_op_start = curwin->w_cursor;
3832 }
3833 /*
3834 * Line mode: BACKWARD is the same as FORWARD on the previous line
3835 */
3836 else if (dir == BACKWARD)
3837 --lnum;
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00003838 new_cursor = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839
3840 /*
3841 * simple case: insert into current line
3842 */
3843 if (y_type == MCHAR && y_size == 1)
3844 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003845 linenr_T end_lnum = 0; /* init for gcc */
Bram Moolenaar9957a102017-01-23 21:53:53 +01003846
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003847 if (VIsual_active)
3848 {
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003849 end_lnum = curbuf->b_visual.vi_end.lnum;
3850 if (end_lnum < curbuf->b_visual.vi_start.lnum)
3851 end_lnum = curbuf->b_visual.vi_start.lnum;
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003852 }
Bram Moolenaar9957a102017-01-23 21:53:53 +01003853
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003854 do {
3855 totlen = count * yanklen;
3856 if (totlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 {
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003858 oldp = ml_get(lnum);
Bram Moolenaar941c12d2017-01-24 19:55:43 +01003859 if (VIsual_active && col > (int)STRLEN(oldp))
3860 {
3861 lnum++;
3862 continue;
3863 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003864 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
3865 if (newp == NULL)
3866 goto end; /* alloc() gave an error message */
3867 mch_memmove(newp, oldp, (size_t)col);
3868 ptr = newp + col;
3869 for (i = 0; i < count; ++i)
3870 {
3871 mch_memmove(ptr, y_array[0], (size_t)yanklen);
3872 ptr += yanklen;
3873 }
3874 STRMOVE(ptr, oldp + col);
3875 ml_replace(lnum, newp, FALSE);
3876 /* Place cursor on last putted char. */
3877 if (lnum == curwin->w_cursor.lnum)
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003878 {
3879 /* make sure curwin->w_virtcol is updated */
3880 changed_cline_bef_curs();
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003881 curwin->w_cursor.col += (colnr_T)(totlen - 1);
Bram Moolenaar1e42f7a2013-11-21 13:24:41 +01003882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 }
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003884 if (VIsual_active)
3885 lnum++;
Bram Moolenaar6a717f12017-01-24 20:47:50 +01003886 } while (VIsual_active && lnum <= end_lnum);
Bram Moolenaarec11aef2013-09-22 15:23:44 +02003887
Bram Moolenaar06e7ce12014-11-19 17:35:39 +01003888 if (VIsual_active) /* reset lnum to the last visual line */
3889 lnum--;
3890
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 curbuf->b_op_end = curwin->w_cursor;
3892 /* For "CTRL-O p" in Insert mode, put cursor after last char */
3893 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
3894 ++curwin->w_cursor.col;
3895 changed_bytes(lnum, col);
3896 }
3897 else
3898 {
3899 /*
3900 * Insert at least one line. When y_type is MCHAR, break the first
3901 * line in two.
3902 */
3903 for (cnt = 1; cnt <= count; ++cnt)
3904 {
3905 i = 0;
3906 if (y_type == MCHAR)
3907 {
3908 /*
3909 * Split the current line in two at the insert position.
3910 * First insert y_array[size - 1] in front of second line.
3911 * Then append y_array[0] to first line.
3912 */
3913 lnum = new_cursor.lnum;
3914 ptr = ml_get(lnum) + col;
3915 totlen = (int)STRLEN(y_array[y_size - 1]);
3916 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
3917 if (newp == NULL)
3918 goto error;
3919 STRCPY(newp, y_array[y_size - 1]);
3920 STRCAT(newp, ptr);
3921 /* insert second line */
3922 ml_append(lnum, newp, (colnr_T)0, FALSE);
3923 vim_free(newp);
3924
3925 oldp = ml_get(lnum);
3926 newp = alloc_check((unsigned)(col + yanklen + 1));
3927 if (newp == NULL)
3928 goto error;
3929 /* copy first part of line */
3930 mch_memmove(newp, oldp, (size_t)col);
3931 /* append to first line */
3932 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
3933 ml_replace(lnum, newp, FALSE);
3934
3935 curwin->w_cursor.lnum = lnum;
3936 i = 1;
3937 }
3938
3939 for (; i < y_size; ++i)
3940 {
3941 if ((y_type != MCHAR || i < y_size - 1)
3942 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
3943 == FAIL)
3944 goto error;
3945 lnum++;
3946 ++nr_lines;
3947 if (flags & PUT_FIXINDENT)
3948 {
3949 old_pos = curwin->w_cursor;
3950 curwin->w_cursor.lnum = lnum;
3951 ptr = ml_get(lnum);
3952 if (cnt == count && i == y_size - 1)
3953 lendiff = (int)STRLEN(ptr);
3954#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
3955 if (*ptr == '#' && preprocs_left())
3956 indent = 0; /* Leave # lines at start */
3957 else
3958#endif
3959 if (*ptr == NUL)
3960 indent = 0; /* Ignore empty lines */
3961 else if (first_indent)
3962 {
3963 indent_diff = orig_indent - get_indent();
3964 indent = orig_indent;
3965 first_indent = FALSE;
3966 }
3967 else if ((indent = get_indent() + indent_diff) < 0)
3968 indent = 0;
3969 (void)set_indent(indent, 0);
3970 curwin->w_cursor = old_pos;
3971 /* remember how many chars were removed */
3972 if (cnt == count && i == y_size - 1)
3973 lendiff -= (int)STRLEN(ml_get(lnum));
3974 }
3975 }
3976 }
3977
3978error:
3979 /* Adjust marks. */
3980 if (y_type == MLINE)
3981 {
3982 curbuf->b_op_start.col = 0;
3983 if (dir == FORWARD)
3984 curbuf->b_op_start.lnum++;
3985 }
Bram Moolenaar82faa252016-06-04 20:14:07 +02003986 /* Skip mark_adjust when adding lines after the last one, there
Bram Moolenaarf58a8472017-03-05 18:03:04 +01003987 * can't be marks there. But still needed in diff mode. */
Bram Moolenaar82faa252016-06-04 20:14:07 +02003988 if (curbuf->b_op_start.lnum + (y_type == MCHAR) - 1 + nr_lines
Bram Moolenaarf58a8472017-03-05 18:03:04 +01003989 < curbuf->b_ml.ml_line_count
3990#ifdef FEAT_DIFF
3991 || curwin->w_p_diff
3992#endif
3993 )
Bram Moolenaar82faa252016-06-04 20:14:07 +02003994 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 (linenr_T)MAXLNUM, nr_lines, 0L);
3996
3997 /* note changed text for displaying and folding */
3998 if (y_type == MCHAR)
3999 changed_lines(curwin->w_cursor.lnum, col,
4000 curwin->w_cursor.lnum + 1, nr_lines);
4001 else
4002 changed_lines(curbuf->b_op_start.lnum, 0,
4003 curbuf->b_op_start.lnum, nr_lines);
4004
4005 /* put '] mark at last inserted character */
4006 curbuf->b_op_end.lnum = lnum;
4007 /* correct length for change in indent */
4008 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
4009 if (col > 1)
4010 curbuf->b_op_end.col = col - 1;
4011 else
4012 curbuf->b_op_end.col = 0;
4013
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004014 if (flags & PUT_CURSLINE)
4015 {
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00004016 /* ":put": put cursor on last inserted line */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004017 curwin->w_cursor.lnum = lnum;
4018 beginline(BL_WHITE | BL_FIX);
4019 }
4020 else if (flags & PUT_CURSEND)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 {
4022 /* put cursor after inserted text */
4023 if (y_type == MLINE)
4024 {
4025 if (lnum >= curbuf->b_ml.ml_line_count)
4026 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4027 else
4028 curwin->w_cursor.lnum = lnum + 1;
4029 curwin->w_cursor.col = 0;
4030 }
4031 else
4032 {
4033 curwin->w_cursor.lnum = lnum;
4034 curwin->w_cursor.col = col;
4035 }
4036 }
4037 else if (y_type == MLINE)
4038 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00004039 /* put cursor on first non-blank in first inserted line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 curwin->w_cursor.col = 0;
4041 if (dir == FORWARD)
4042 ++curwin->w_cursor.lnum;
4043 beginline(BL_WHITE | BL_FIX);
4044 }
4045 else /* put cursor on first inserted character */
4046 curwin->w_cursor = new_cursor;
4047 }
4048 }
4049
4050 msgmore(nr_lines);
4051 curwin->w_set_curswant = TRUE;
4052
4053end:
4054 if (allocated)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 vim_free(insert_string);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004056 if (regname == '=')
4057 vim_free(y_array);
4058
Bram Moolenaar033d8882013-09-25 23:24:57 +02004059 VIsual_active = FALSE;
Bram Moolenaar033d8882013-09-25 23:24:57 +02004060
Bram Moolenaar677ee682005-01-27 14:41:15 +00004061 /* If the cursor is past the end of the line put it at the end. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004062 adjust_cursor_eol();
4063}
4064
4065/*
4066 * When the cursor is on the NUL past the end of the line and it should not be
4067 * there move it left.
4068 */
4069 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004070adjust_cursor_eol(void)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004071{
4072 if (curwin->w_cursor.col > 0
4073 && gchar_cursor() == NUL
Bram Moolenaar2eb25da2006-03-16 21:43:34 +00004074 && (ve_flags & VE_ONEMORE) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 && !(restart_edit || (State & INSERT)))
4076 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00004077 /* Put the cursor on the last character in the line. */
Bram Moolenaara5fac542005-10-12 20:58:49 +00004078 dec_cursor();
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004079
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080 if (ve_flags == VE_ALL)
Bram Moolenaara5792f52005-11-23 21:25:05 +00004081 {
4082 colnr_T scol, ecol;
4083
4084 /* Coladd is set to the width of the last character. */
4085 getvcol(curwin, &curwin->w_cursor, &scol, NULL, &ecol);
4086 curwin->w_cursor.coladd = ecol - scol + 1;
4087 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 }
4089}
4090
4091#if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
4092/*
4093 * Return TRUE if lines starting with '#' should be left aligned.
4094 */
4095 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004096preprocs_left(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097{
4098 return
4099# ifdef FEAT_SMARTINDENT
4100# ifdef FEAT_CINDENT
4101 (curbuf->b_p_si && !curbuf->b_p_cin) ||
4102# else
4103 curbuf->b_p_si
4104# endif
4105# endif
4106# ifdef FEAT_CINDENT
Bram Moolenaar6bcbcc52013-11-05 07:13:41 +01004107 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE)
4108 && curbuf->b_ind_hash_comment == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109# endif
4110 ;
4111}
4112#endif
4113
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004114/*
4115 * Return the character name of the register with the given number.
4116 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004118get_register_name(int num)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119{
4120 if (num == -1)
4121 return '"';
4122 else if (num < 10)
4123 return num + '0';
4124 else if (num == DELETION_REGISTER)
4125 return '-';
4126#ifdef FEAT_CLIPBOARD
4127 else if (num == STAR_REGISTER)
4128 return '*';
4129 else if (num == PLUS_REGISTER)
4130 return '+';
4131#endif
4132 else
4133 {
4134#ifdef EBCDIC
4135 int i;
4136
4137 /* EBCDIC is really braindead ... */
4138 i = 'a' + (num - 10);
4139 if (i > 'i')
4140 i += 7;
4141 if (i > 'r')
4142 i += 8;
4143 return i;
4144#else
4145 return num + 'a' - 10;
4146#endif
4147 }
4148}
4149
4150/*
4151 * ":dis" and ":registers": Display the contents of the yank registers.
4152 */
4153 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004154ex_display(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004156 int i, n;
4157 long j;
4158 char_u *p;
4159 yankreg_T *yb;
4160 int name;
4161 int attr;
4162 char_u *arg = eap->arg;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02004163 int clen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164
4165 if (arg != NULL && *arg == NUL)
4166 arg = NULL;
Bram Moolenaar8820b482017-03-16 17:23:31 +01004167 attr = HL_ATTR(HLF_8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168
4169 /* Highlight title */
Bram Moolenaar32526b32019-01-19 17:43:09 +01004170 msg_puts_title(_("\n--- Registers ---"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
4172 {
4173 name = get_register_name(i);
Bram Moolenaar0818b872010-11-24 14:28:58 +01004174 if (arg != NULL && vim_strchr(arg, name) == NULL
4175#ifdef ONE_CLIPBOARD
4176 /* Star register and plus register contain the same thing. */
4177 && (name != '*' || vim_strchr(arg, '+') == NULL)
4178#endif
4179 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180 continue; /* did not ask for this register */
4181
4182#ifdef FEAT_CLIPBOARD
4183 /* Adjust register name for "unnamed" in 'clipboard'.
4184 * When it's a clipboard register, fill it with the current contents
4185 * of the clipboard. */
4186 adjust_clip_reg(&name);
4187 (void)may_get_selection(name);
4188#endif
4189
4190 if (i == -1)
4191 {
4192 if (y_previous != NULL)
4193 yb = y_previous;
4194 else
4195 yb = &(y_regs[0]);
4196 }
4197 else
4198 yb = &(y_regs[i]);
Bram Moolenaarcde547a2009-11-17 11:43:06 +00004199
4200#ifdef FEAT_EVAL
4201 if (name == MB_TOLOWER(redir_reg)
4202 || (redir_reg == '"' && yb == y_previous))
4203 continue; /* do not list register being written to, the
4204 * pointer can be freed */
4205#endif
4206
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207 if (yb->y_array != NULL)
4208 {
4209 msg_putchar('\n');
4210 msg_putchar('"');
4211 msg_putchar(name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004212 msg_puts(" ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004213
4214 n = (int)Columns - 6;
4215 for (j = 0; j < yb->y_size && n > 1; ++j)
4216 {
4217 if (j)
4218 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004219 msg_puts_attr("^J", attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 n -= 2;
4221 }
4222 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
4223 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004224 clen = (*mb_ptr2len)(p);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004225 msg_outtrans_len(p, clen);
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004226 p += clen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227 }
4228 }
4229 if (n > 1 && yb->y_type == MLINE)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004230 msg_puts_attr("^J", attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231 out_flush(); /* show one line at a time */
4232 }
4233 ui_breakcheck();
4234 }
4235
4236 /*
4237 * display last inserted text
4238 */
4239 if ((p = get_last_insert()) != NULL
4240 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
4241 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004242 msg_puts("\n\". ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 dis_msg(p, TRUE);
4244 }
4245
4246 /*
4247 * display last command line
4248 */
4249 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
4250 && !got_int)
4251 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004252 msg_puts("\n\": ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 dis_msg(last_cmdline, FALSE);
4254 }
4255
4256 /*
4257 * display current file name
4258 */
4259 if (curbuf->b_fname != NULL
4260 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4261 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004262 msg_puts("\n\"% ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 dis_msg(curbuf->b_fname, FALSE);
4264 }
4265
4266 /*
4267 * display alternate file name
4268 */
4269 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
4270 {
4271 char_u *fname;
4272 linenr_T dummy;
4273
4274 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
4275 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004276 msg_puts("\n\"# ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 dis_msg(fname, FALSE);
4278 }
4279 }
4280
4281 /*
4282 * display last search pattern
4283 */
4284 if (last_search_pat() != NULL
4285 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
4286 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004287 msg_puts("\n\"/ ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 dis_msg(last_search_pat(), FALSE);
4289 }
4290
4291#ifdef FEAT_EVAL
4292 /*
4293 * display last used expression
4294 */
4295 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
4296 && !got_int)
4297 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004298 msg_puts("\n\"= ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299 dis_msg(expr_line, FALSE);
4300 }
4301#endif
4302}
4303
4304/*
4305 * display a string for do_dis()
4306 * truncate at end of screen line
4307 */
4308 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004309dis_msg(
4310 char_u *p,
4311 int skip_esc) /* if TRUE, ignore trailing ESC */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312{
4313 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315
4316 n = (int)Columns - 6;
4317 while (*p != NUL
4318 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
4319 && (n -= ptr2cells(p)) >= 0)
4320 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004321 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 {
4323 msg_outtrans_len(p, l);
4324 p += l;
4325 }
4326 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 msg_outtrans_len(p++, 1);
4328 }
4329 ui_breakcheck();
4330}
4331
Bram Moolenaar81340392012-06-06 16:12:59 +02004332#if defined(FEAT_COMMENTS) || defined(PROTO)
4333/*
4334 * If "process" is TRUE and the line begins with a comment leader (possibly
4335 * after some white space), return a pointer to the text after it. Put a boolean
4336 * value indicating whether the line ends with an unclosed comment in
4337 * "is_comment".
4338 * line - line to be processed,
4339 * process - if FALSE, will only check whether the line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004340 * comment,
Bram Moolenaar81340392012-06-06 16:12:59 +02004341 * include_space - whether to also skip space following the comment leader,
4342 * is_comment - will indicate whether the current line ends with an unclosed
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004343 * comment.
Bram Moolenaar81340392012-06-06 16:12:59 +02004344 */
Bram Moolenaar025a6b72017-03-12 20:37:21 +01004345 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004346skip_comment(
4347 char_u *line,
4348 int process,
4349 int include_space,
4350 int *is_comment)
Bram Moolenaar81340392012-06-06 16:12:59 +02004351{
4352 char_u *comment_flags = NULL;
4353 int lead_len;
4354 int leader_offset = get_last_leader_offset(line, &comment_flags);
4355
4356 *is_comment = FALSE;
4357 if (leader_offset != -1)
4358 {
4359 /* Let's check whether the line ends with an unclosed comment.
4360 * If the last comment leader has COM_END in flags, there's no comment.
4361 */
4362 while (*comment_flags)
4363 {
4364 if (*comment_flags == COM_END
4365 || *comment_flags == ':')
4366 break;
4367 ++comment_flags;
4368 }
4369 if (*comment_flags != COM_END)
4370 *is_comment = TRUE;
4371 }
4372
4373 if (process == FALSE)
4374 return line;
4375
4376 lead_len = get_leader_len(line, &comment_flags, FALSE, include_space);
4377
4378 if (lead_len == 0)
4379 return line;
4380
4381 /* Find:
Bram Moolenaar81340392012-06-06 16:12:59 +02004382 * - COM_END,
4383 * - colon,
4384 * whichever comes first.
4385 */
4386 while (*comment_flags)
4387 {
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004388 if (*comment_flags == COM_END
Bram Moolenaar81340392012-06-06 16:12:59 +02004389 || *comment_flags == ':')
Bram Moolenaar81340392012-06-06 16:12:59 +02004390 break;
Bram Moolenaar81340392012-06-06 16:12:59 +02004391 ++comment_flags;
4392 }
4393
4394 /* If we found a colon, it means that we are not processing a line
Bram Moolenaare04a48f2012-06-13 14:01:41 +02004395 * starting with a closing part of a three-part comment. That's good,
4396 * because we don't want to remove those as this would be annoying.
Bram Moolenaar81340392012-06-06 16:12:59 +02004397 */
4398 if (*comment_flags == ':' || *comment_flags == NUL)
4399 line += lead_len;
4400
4401 return line;
4402}
4403#endif
4404
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405/*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004406 * Join 'count' lines (minimal 2) at cursor position.
4407 * When "save_undo" is TRUE save lines for undo first.
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004408 * Set "use_formatoptions" to FALSE when e.g. processing backspace and comment
4409 * leaders should not be removed.
4410 * When setmark is TRUE, sets the '[ and '] mark, else, the caller is expected
4411 * to set those marks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412 *
Bram Moolenaar10c56952007-05-10 18:38:52 +00004413 * return FAIL for failure, OK otherwise
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 */
4415 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004416do_join(
4417 long count,
4418 int insert_space,
4419 int save_undo,
4420 int use_formatoptions UNUSED,
4421 int setmark)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422{
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004423 char_u *curr = NULL;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004424 char_u *curr_start = NULL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004425 char_u *cend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 char_u *newp;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004427 char_u *spaces; /* number of spaces inserted before a line */
Bram Moolenaard43848c2010-07-14 14:28:26 +02004428 int endcurr1 = NUL;
4429 int endcurr2 = NUL;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004430 int currsize = 0; /* size of the current line */
4431 int sumsize = 0; /* size of the long new line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432 linenr_T t;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004433 colnr_T col = 0;
4434 int ret = OK;
Bram Moolenaar81340392012-06-06 16:12:59 +02004435#if defined(FEAT_COMMENTS) || defined(PROTO)
Bram Moolenaar802053f2012-06-06 23:08:38 +02004436 int *comments = NULL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004437 int remove_comments = (use_formatoptions == TRUE)
4438 && has_format_option(FO_REMOVE_COMS);
4439 int prev_was_comment;
4440#endif
4441
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004443 if (save_undo && u_save((linenr_T)(curwin->w_cursor.lnum - 1),
4444 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
4445 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004447 /* Allocate an array to store the number of spaces inserted before each
4448 * line. We will use it to pre-compute the length of the new line and the
4449 * proper placement of each original line in the new one. */
4450 spaces = lalloc_clear((long_u)count, TRUE);
4451 if (spaces == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 return FAIL;
Bram Moolenaar81340392012-06-06 16:12:59 +02004453#if defined(FEAT_COMMENTS) || defined(PROTO)
4454 if (remove_comments)
4455 {
4456 comments = (int *)lalloc_clear((long_u)count * sizeof(int), TRUE);
4457 if (comments == NULL)
4458 {
4459 vim_free(spaces);
4460 return FAIL;
4461 }
4462 }
4463#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464
4465 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004466 * Don't move anything, just compute the final line length
4467 * and setup the array of space strings lengths
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004469 for (t = 0; t < count; ++t)
4470 {
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004471 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t));
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004472 if (t == 0 && setmark)
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004473 {
4474 /* Set the '[ mark. */
4475 curwin->w_buffer->b_op_start.lnum = curwin->w_cursor.lnum;
4476 curwin->w_buffer->b_op_start.col = (colnr_T)STRLEN(curr);
4477 }
Bram Moolenaar81340392012-06-06 16:12:59 +02004478#if defined(FEAT_COMMENTS) || defined(PROTO)
4479 if (remove_comments)
4480 {
4481 /* We don't want to remove the comment leader if the
4482 * previous line is not a comment. */
4483 if (t > 0 && prev_was_comment)
4484 {
4485
4486 char_u *new_curr = skip_comment(curr, TRUE, insert_space,
4487 &prev_was_comment);
Bram Moolenaar27ba0882012-06-07 21:09:39 +02004488 comments[t] = (int)(new_curr - curr);
Bram Moolenaar81340392012-06-06 16:12:59 +02004489 curr = new_curr;
4490 }
4491 else
4492 curr = skip_comment(curr, FALSE, insert_space,
4493 &prev_was_comment);
4494 }
4495#endif
4496
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004497 if (insert_space && t > 0)
4498 {
4499 curr = skipwhite(curr);
4500 if (*curr != ')' && currsize != 0 && endcurr1 != TAB
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004501 && (!has_format_option(FO_MBYTE_JOIN)
4502 || (mb_ptr2char(curr) < 0x100 && endcurr1 < 0x100))
4503 && (!has_format_option(FO_MBYTE_JOIN2)
4504 || mb_ptr2char(curr) < 0x100 || endcurr1 < 0x100)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004505 )
4506 {
4507 /* don't add a space if the line is ending in a space */
4508 if (endcurr1 == ' ')
4509 endcurr1 = endcurr2;
4510 else
4511 ++spaces[t];
4512 /* extra space when 'joinspaces' set and line ends in '.' */
4513 if ( p_js
4514 && (endcurr1 == '.'
4515 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
4516 && (endcurr1 == '?' || endcurr1 == '!'))))
4517 ++spaces[t];
4518 }
4519 }
4520 currsize = (int)STRLEN(curr);
4521 sumsize += currsize + spaces[t];
4522 endcurr1 = endcurr2 = NUL;
4523 if (insert_space && currsize > 0)
4524 {
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004525 if (has_mbyte)
4526 {
4527 cend = curr + currsize;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004528 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004529 endcurr1 = (*mb_ptr2char)(cend);
4530 if (cend > curr)
4531 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004532 MB_PTR_BACK(curr, cend);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004533 endcurr2 = (*mb_ptr2char)(cend);
4534 }
4535 }
4536 else
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004537 {
4538 endcurr1 = *(curr + currsize - 1);
4539 if (currsize > 1)
4540 endcurr2 = *(curr + currsize - 2);
4541 }
4542 }
4543 line_breakcheck();
4544 if (got_int)
4545 {
4546 ret = FAIL;
4547 goto theend;
4548 }
4549 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004551 /* store the column position before last line */
4552 col = sumsize - currsize - spaces[count - 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004554 /* allocate the space for the new line */
4555 newp = alloc_check((unsigned)(sumsize + 1));
4556 cend = newp + sumsize;
4557 *cend = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004559 /*
4560 * Move affected lines to the new long one.
4561 *
4562 * Move marks from each deleted line to the joined line, adjusting the
4563 * column. This is not Vi compatible, but Vi deletes the marks, thus that
4564 * should not really be a problem.
4565 */
4566 for (t = count - 1; ; --t)
4567 {
Bram Moolenaare1e714e2018-12-31 23:58:24 +01004568 int spaces_removed;
4569
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004570 cend -= currsize;
4571 mch_memmove(cend, curr, (size_t)currsize);
4572 if (spaces[t] > 0)
4573 {
4574 cend -= spaces[t];
Bram Moolenaar2536d4f2015-07-17 13:22:51 +02004575 vim_memset(cend, ' ', (size_t)(spaces[t]));
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004576 }
Bram Moolenaare1e714e2018-12-31 23:58:24 +01004577
4578 // If deleting more spaces than adding, the cursor moves no more than
4579 // what is added if it is inside these spaces.
4580 spaces_removed = (curr - curr_start) - spaces[t];
4581
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004582 mark_col_adjust(curwin->w_cursor.lnum + t, (colnr_T)0, (linenr_T)-t,
Bram Moolenaare1e714e2018-12-31 23:58:24 +01004583 (long)(cend - newp - spaces_removed), spaces_removed);
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004584 if (t == 0)
4585 break;
Bram Moolenaar341ad7a2010-10-09 17:23:31 +02004586 curr = curr_start = ml_get((linenr_T)(curwin->w_cursor.lnum + t - 1));
Bram Moolenaar81340392012-06-06 16:12:59 +02004587#if defined(FEAT_COMMENTS) || defined(PROTO)
4588 if (remove_comments)
4589 curr += comments[t - 1];
4590#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004591 if (insert_space && t > 1)
4592 curr = skipwhite(curr);
4593 currsize = (int)STRLEN(curr);
4594 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
4596
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004597 if (setmark)
4598 {
4599 /* Set the '] mark. */
4600 curwin->w_buffer->b_op_end.lnum = curwin->w_cursor.lnum;
4601 curwin->w_buffer->b_op_end.col = (colnr_T)STRLEN(newp);
4602 }
Bram Moolenaarf92d8a22014-02-11 19:33:07 +01004603
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 /* Only report the change in the first line here, del_lines() will report
4605 * the deleted line. */
4606 changed_lines(curwin->w_cursor.lnum, currsize,
4607 curwin->w_cursor.lnum + 1, 0L);
4608
4609 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004610 * Delete following lines. To do this we move the cursor there
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 * briefly, and then move it back. After del_lines() the cursor may
4612 * have moved up (last line deleted), so the current lnum is kept in t.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613 */
4614 t = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 ++curwin->w_cursor.lnum;
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004616 del_lines(count - 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 curwin->w_cursor.lnum = t;
4618
4619 /*
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004620 * Set the cursor column:
4621 * Vi compatible: use the column of the first join
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004622 * vim: use the column of the last join
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 */
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004624 curwin->w_cursor.col =
4625 (vim_strchr(p_cpo, CPO_JOINCOL) != NULL ? currsize : col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 check_cursor_col();
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004627
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 curwin->w_set_curswant = TRUE;
4630
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004631theend:
4632 vim_free(spaces);
Bram Moolenaar81340392012-06-06 16:12:59 +02004633#if defined(FEAT_COMMENTS) || defined(PROTO)
4634 if (remove_comments)
4635 vim_free(comments);
4636#endif
Bram Moolenaar893eaab2010-07-10 17:51:46 +02004637 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638}
4639
4640#ifdef FEAT_COMMENTS
4641/*
4642 * Return TRUE if the two comment leaders given are the same. "lnum" is
4643 * the first line. White-space is ignored. Note that the whole of
4644 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
4645 */
4646 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004647same_leader(
4648 linenr_T lnum,
4649 int leader1_len,
4650 char_u *leader1_flags,
4651 int leader2_len,
4652 char_u *leader2_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653{
4654 int idx1 = 0, idx2 = 0;
4655 char_u *p;
4656 char_u *line1;
4657 char_u *line2;
4658
4659 if (leader1_len == 0)
4660 return (leader2_len == 0);
4661
4662 /*
4663 * If first leader has 'f' flag, the lines can be joined only if the
4664 * second line does not have a leader.
4665 * If first leader has 'e' flag, the lines can never be joined.
4666 * If fist leader has 's' flag, the lines can only be joined if there is
4667 * some text after it and the second line has the 'm' flag.
4668 */
4669 if (leader1_flags != NULL)
4670 {
4671 for (p = leader1_flags; *p && *p != ':'; ++p)
4672 {
4673 if (*p == COM_FIRST)
4674 return (leader2_len == 0);
4675 if (*p == COM_END)
4676 return FALSE;
4677 if (*p == COM_START)
4678 {
4679 if (*(ml_get(lnum) + leader1_len) == NUL)
4680 return FALSE;
4681 if (leader2_flags == NULL || leader2_len == 0)
4682 return FALSE;
4683 for (p = leader2_flags; *p && *p != ':'; ++p)
4684 if (*p == COM_MIDDLE)
4685 return TRUE;
4686 return FALSE;
4687 }
4688 }
4689 }
4690
4691 /*
4692 * Get current line and next line, compare the leaders.
4693 * The first line has to be saved, only one line can be locked at a time.
4694 */
4695 line1 = vim_strsave(ml_get(lnum));
4696 if (line1 != NULL)
4697 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004698 for (idx1 = 0; VIM_ISWHITE(line1[idx1]); ++idx1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 ;
4700 line2 = ml_get(lnum + 1);
4701 for (idx2 = 0; idx2 < leader2_len; ++idx2)
4702 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01004703 if (!VIM_ISWHITE(line2[idx2]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 {
4705 if (line1[idx1++] != line2[idx2])
4706 break;
4707 }
4708 else
Bram Moolenaar1c465442017-03-12 20:10:05 +01004709 while (VIM_ISWHITE(line1[idx1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710 ++idx1;
4711 }
4712 vim_free(line1);
4713 }
4714 return (idx2 == leader2_len && idx1 == leader1_len);
4715}
4716#endif
4717
4718/*
Bram Moolenaar66accae2012-01-10 13:44:27 +01004719 * Implementation of the format operator 'gq'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 */
4721 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004722op_format(
4723 oparg_T *oap,
4724 int keep_cursor) /* keep cursor on same text char */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725{
4726 long old_line_count = curbuf->b_ml.ml_line_count;
4727
4728 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
4729 * can put it back there. */
4730 curwin->w_cursor = oap->cursor_start;
4731
4732 if (u_save((linenr_T)(oap->start.lnum - 1),
4733 (linenr_T)(oap->end.lnum + 1)) == FAIL)
4734 return;
4735 curwin->w_cursor = oap->start;
4736
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 if (oap->is_VIsual)
4738 /* When there is no change: need to remove the Visual selection */
4739 redraw_curbuf_later(INVERTED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740
4741 /* Set '[ mark at the start of the formatted area */
4742 curbuf->b_op_start = oap->start;
4743
4744 /* For "gw" remember the cursor position and put it back below (adjusted
4745 * for joined and split lines). */
4746 if (keep_cursor)
4747 saved_cursor = oap->cursor_start;
4748
Bram Moolenaar81a82092008-03-12 16:27:00 +00004749 format_lines(oap->line_count, keep_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750
4751 /*
4752 * Leave the cursor at the first non-blank of the last formatted line.
4753 * If the cursor was moved one line back (e.g. with "Q}") go to the next
4754 * line, so "." will do the next lines.
4755 */
4756 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
4757 ++curwin->w_cursor.lnum;
4758 beginline(BL_WHITE | BL_FIX);
4759 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
4760 msgmore(old_line_count);
4761
4762 /* put '] mark on the end of the formatted area */
4763 curbuf->b_op_end = curwin->w_cursor;
4764
4765 if (keep_cursor)
4766 {
4767 curwin->w_cursor = saved_cursor;
4768 saved_cursor.lnum = 0;
4769 }
4770
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 if (oap->is_VIsual)
4772 {
4773 win_T *wp;
4774
4775 FOR_ALL_WINDOWS(wp)
4776 {
4777 if (wp->w_old_cursor_lnum != 0)
4778 {
4779 /* When lines have been inserted or deleted, adjust the end of
4780 * the Visual area to be redrawn. */
4781 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
4782 wp->w_old_cursor_lnum += old_line_count;
4783 else
4784 wp->w_old_visual_lnum += old_line_count;
4785 }
4786 }
4787 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788}
4789
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004790#if defined(FEAT_EVAL) || defined(PROTO)
4791/*
4792 * Implementation of the format operator 'gq' for when using 'formatexpr'.
4793 */
4794 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004795op_formatexpr(oparg_T *oap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004796{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004797 if (oap->is_VIsual)
4798 /* When there is no change: need to remove the Visual selection */
4799 redraw_curbuf_later(INVERTED);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004800
Bram Moolenaar700303e2010-07-11 17:35:50 +02004801 if (fex_format(oap->start.lnum, oap->line_count, NUL) != 0)
4802 /* As documented: when 'formatexpr' returns non-zero fall back to
4803 * internal formatting. */
4804 op_format(oap, FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004805}
4806
4807 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004808fex_format(
4809 linenr_T lnum,
4810 long count,
4811 int c) /* character to be inserted */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004812{
Bram Moolenaard1f56e62006-02-22 21:25:37 +00004813 int use_sandbox = was_set_insecurely((char_u *)"formatexpr",
4814 OPT_LOCAL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004815 int r;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004816 char_u *fex;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004817
4818 /*
4819 * Set v:lnum to the first line number and v:count to the number of lines.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004820 * Set v:char to the character to be inserted (can be NUL).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004821 */
4822 set_vim_var_nr(VV_LNUM, lnum);
4823 set_vim_var_nr(VV_COUNT, count);
Bram Moolenaarda9591e2009-09-30 13:17:02 +00004824 set_vim_var_char(c);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004825
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004826 /* Make a copy, the option could be changed while calling it. */
4827 fex = vim_strsave(curbuf->b_p_fex);
4828 if (fex == NULL)
4829 return 0;
4830
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004831 /*
4832 * Evaluate the function.
4833 */
4834 if (use_sandbox)
4835 ++sandbox;
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004836 r = (int)eval_to_number(fex);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004837 if (use_sandbox)
4838 --sandbox;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004839
4840 set_vim_var_string(VV_CHAR, NULL, -1);
Bram Moolenaard77f9d52016-09-04 15:13:39 +02004841 vim_free(fex);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00004842
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004843 return r;
4844}
4845#endif
4846
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847/*
4848 * Format "line_count" lines, starting at the cursor position.
4849 * When "line_count" is negative, format until the end of the paragraph.
4850 * Lines after the cursor line are saved for undo, caller must have saved the
4851 * first line.
4852 */
4853 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004854format_lines(
4855 linenr_T line_count,
4856 int avoid_fex) /* don't use 'formatexpr' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857{
4858 int max_len;
4859 int is_not_par; /* current line not part of parag. */
4860 int next_is_not_par; /* next line not part of paragraph */
4861 int is_end_par; /* at end of paragraph */
4862 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
4863 int next_is_start_par = FALSE;
4864#ifdef FEAT_COMMENTS
4865 int leader_len = 0; /* leader len of current line */
4866 int next_leader_len; /* leader len of next line */
4867 char_u *leader_flags = NULL; /* flags for leader of current line */
4868 char_u *next_leader_flags; /* flags for leader of next line */
4869 int do_comments; /* format comments */
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004870 int do_comments_list = 0; /* format comments with 'n' or '2' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871#endif
4872 int advance = TRUE;
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004873 int second_indent = -1; /* indent for second line (comment
4874 * aware) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 int do_second_indent;
4876 int do_number_indent;
4877 int do_trail_white;
4878 int first_par_line = TRUE;
4879 int smd_save;
4880 long count;
4881 int need_set_indent = TRUE; /* set indent of next paragraph */
4882 int force_format = FALSE;
4883 int old_State = State;
4884
4885 /* length of a line to force formatting: 3 * 'tw' */
4886 max_len = comp_textwidth(TRUE) * 3;
4887
4888 /* check for 'q', '2' and '1' in 'formatoptions' */
4889#ifdef FEAT_COMMENTS
4890 do_comments = has_format_option(FO_Q_COMS);
4891#endif
4892 do_second_indent = has_format_option(FO_Q_SECOND);
4893 do_number_indent = has_format_option(FO_Q_NUMBER);
4894 do_trail_white = has_format_option(FO_WHITE_PAR);
4895
4896 /*
4897 * Get info about the previous and current line.
4898 */
4899 if (curwin->w_cursor.lnum > 1)
4900 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
4901#ifdef FEAT_COMMENTS
4902 , &leader_len, &leader_flags, do_comments
4903#endif
4904 );
4905 else
4906 is_not_par = TRUE;
4907 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
4908#ifdef FEAT_COMMENTS
4909 , &next_leader_len, &next_leader_flags, do_comments
4910#endif
4911 );
4912 is_end_par = (is_not_par || next_is_not_par);
4913 if (!is_end_par && do_trail_white)
4914 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
4915
4916 curwin->w_cursor.lnum--;
4917 for (count = line_count; count != 0 && !got_int; --count)
4918 {
4919 /*
4920 * Advance to next paragraph.
4921 */
4922 if (advance)
4923 {
4924 curwin->w_cursor.lnum++;
4925 prev_is_end_par = is_end_par;
4926 is_not_par = next_is_not_par;
4927#ifdef FEAT_COMMENTS
4928 leader_len = next_leader_len;
4929 leader_flags = next_leader_flags;
4930#endif
4931 }
4932
4933 /*
4934 * The last line to be formatted.
4935 */
4936 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4937 {
4938 next_is_not_par = TRUE;
4939#ifdef FEAT_COMMENTS
4940 next_leader_len = 0;
4941 next_leader_flags = NULL;
4942#endif
4943 }
4944 else
4945 {
4946 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
4947#ifdef FEAT_COMMENTS
4948 , &next_leader_len, &next_leader_flags, do_comments
4949#endif
4950 );
4951 if (do_number_indent)
4952 next_is_start_par =
4953 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
4954 }
4955 advance = TRUE;
4956 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
4957 if (!is_end_par && do_trail_white)
4958 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
4959
4960 /*
4961 * Skip lines that are not in a paragraph.
4962 */
4963 if (is_not_par)
4964 {
4965 if (line_count < 0)
4966 break;
4967 }
4968 else
4969 {
4970 /*
4971 * For the first line of a paragraph, check indent of second line.
4972 * Don't do this for comments and empty lines.
4973 */
4974 if (first_par_line
4975 && (do_second_indent || do_number_indent)
4976 && prev_is_end_par
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004977 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004979 if (do_second_indent && !LINEEMPTY(curwin->w_cursor.lnum + 1))
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004980 {
4981#ifdef FEAT_COMMENTS
4982 if (leader_len == 0 && next_leader_len == 0)
4983 {
4984 /* no comment found */
4985#endif
4986 second_indent =
4987 get_indent_lnum(curwin->w_cursor.lnum + 1);
4988#ifdef FEAT_COMMENTS
4989 }
4990 else
4991 {
4992 second_indent = next_leader_len;
4993 do_comments_list = 1;
4994 }
4995#endif
4996 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 else if (do_number_indent)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02004998 {
4999#ifdef FEAT_COMMENTS
5000 if (leader_len == 0 && next_leader_len == 0)
5001 {
5002 /* no comment found */
5003#endif
5004 second_indent =
5005 get_number_indent(curwin->w_cursor.lnum);
5006#ifdef FEAT_COMMENTS
5007 }
5008 else
5009 {
5010 /* get_number_indent() is now "comment aware"... */
5011 second_indent =
5012 get_number_indent(curwin->w_cursor.lnum);
5013 do_comments_list = 1;
5014 }
5015#endif
5016 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 }
5018
5019 /*
5020 * When the comment leader changes, it's the end of the paragraph.
5021 */
5022 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
5023#ifdef FEAT_COMMENTS
5024 || !same_leader(curwin->w_cursor.lnum,
5025 leader_len, leader_flags,
5026 next_leader_len, next_leader_flags)
5027#endif
5028 )
5029 is_end_par = TRUE;
5030
5031 /*
5032 * If we have got to the end of a paragraph, or the line is
5033 * getting long, format it.
5034 */
5035 if (is_end_par || force_format)
5036 {
5037 if (need_set_indent)
5038 /* replace indent in first line with minimal number of
5039 * tabs and spaces, according to current options */
5040 (void)set_indent(get_indent(), SIN_CHANGED);
5041
5042 /* put cursor on last non-space */
5043 State = NORMAL; /* don't go past end-of-line */
5044 coladvance((colnr_T)MAXCOL);
5045 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
5046 dec_cursor();
5047
5048 /* do the formatting, without 'showmode' */
5049 State = INSERT; /* for open_line() */
5050 smd_save = p_smd;
5051 p_smd = FALSE;
5052 insertchar(NUL, INSCHAR_FORMAT
5053#ifdef FEAT_COMMENTS
5054 + (do_comments ? INSCHAR_DO_COM : 0)
Bram Moolenaarbfe3bf82012-06-13 17:28:55 +02005055 + (do_comments && do_comments_list
5056 ? INSCHAR_COM_LIST : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057#endif
Bram Moolenaar81a82092008-03-12 16:27:00 +00005058 + (avoid_fex ? INSCHAR_NO_FEX : 0), second_indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 State = old_State;
5060 p_smd = smd_save;
5061 second_indent = -1;
5062 /* at end of par.: need to set indent of next par. */
5063 need_set_indent = is_end_par;
5064 if (is_end_par)
5065 {
5066 /* When called with a negative line count, break at the
5067 * end of the paragraph. */
5068 if (line_count < 0)
5069 break;
5070 first_par_line = TRUE;
5071 }
5072 force_format = FALSE;
5073 }
5074
5075 /*
5076 * When still in same paragraph, join the lines together. But
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005077 * first delete the leader from the second line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 */
5079 if (!is_end_par)
5080 {
5081 advance = FALSE;
5082 curwin->w_cursor.lnum++;
5083 curwin->w_cursor.col = 0;
5084 if (line_count < 0 && u_save_cursor() == FAIL)
Bram Moolenaar893eaab2010-07-10 17:51:46 +02005085 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086#ifdef FEAT_COMMENTS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 if (next_leader_len > 0)
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005088 {
5089 (void)del_bytes((long)next_leader_len, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
Bram Moolenaare1e714e2018-12-31 23:58:24 +01005091 (long)-next_leader_len, 0);
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005092 } else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093#endif
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005094 if (second_indent > 0) /* the "leader" for FO_Q_SECOND */
5095 {
Bram Moolenaare2e69e42017-09-02 20:30:35 +02005096 int indent = getwhitecols_curline();
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005097
5098 if (indent > 0)
5099 {
5100 (void)del_bytes(indent, FALSE, FALSE);
5101 mark_col_adjust(curwin->w_cursor.lnum,
Bram Moolenaare1e714e2018-12-31 23:58:24 +01005102 (colnr_T)0, 0L, (long)-indent, 0);
Bram Moolenaar92c2db82013-11-02 23:59:35 +01005103 }
Bram Moolenaar2c019c82013-10-06 17:46:56 +02005104 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 curwin->w_cursor.lnum--;
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02005106 if (do_join(2, TRUE, FALSE, FALSE, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 {
5108 beep_flush();
5109 break;
5110 }
5111 first_par_line = FALSE;
5112 /* If the line is getting long, format it next time */
5113 if (STRLEN(ml_get_curline()) > (size_t)max_len)
5114 force_format = TRUE;
5115 else
5116 force_format = FALSE;
5117 }
5118 }
5119 line_breakcheck();
5120 }
5121}
5122
5123/*
5124 * Return TRUE if line "lnum" ends in a white character.
5125 */
5126 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005127ends_in_white(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128{
5129 char_u *s = ml_get(lnum);
5130 size_t l;
5131
5132 if (*s == NUL)
5133 return FALSE;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005134 /* Don't use STRLEN() inside VIM_ISWHITE(), SAS/C complains: "macro
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 * invocation may call function multiple times". */
5136 l = STRLEN(s) - 1;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005137 return VIM_ISWHITE(s[l]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138}
5139
5140/*
5141 * Blank lines, and lines containing only the comment leader, are left
5142 * untouched by the formatting. The function returns TRUE in this
5143 * case. It also returns TRUE when a line starts with the end of a comment
5144 * ('e' in comment flags), so that this line is skipped, and not joined to the
5145 * previous line. A new paragraph starts after a blank line, or when the
5146 * comment leader changes -- webb.
5147 */
5148#ifdef FEAT_COMMENTS
5149 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005150fmt_check_par(
5151 linenr_T lnum,
5152 int *leader_len,
5153 char_u **leader_flags,
5154 int do_comments)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155{
5156 char_u *flags = NULL; /* init for GCC */
5157 char_u *ptr;
5158
5159 ptr = ml_get(lnum);
5160 if (do_comments)
Bram Moolenaar81340392012-06-06 16:12:59 +02005161 *leader_len = get_leader_len(ptr, leader_flags, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162 else
5163 *leader_len = 0;
5164
5165 if (*leader_len > 0)
5166 {
5167 /*
5168 * Search for 'e' flag in comment leader flags.
5169 */
5170 flags = *leader_flags;
5171 while (*flags && *flags != ':' && *flags != COM_END)
5172 ++flags;
5173 }
5174
5175 return (*skipwhite(ptr + *leader_len) == NUL
5176 || (*leader_len > 0 && *flags == COM_END)
5177 || startPS(lnum, NUL, FALSE));
5178}
5179#else
5180 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005181fmt_check_par(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005182{
5183 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
5184}
5185#endif
5186
5187/*
5188 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
5189 * previous line is in the same paragraph. Used for auto-formatting.
5190 */
5191 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005192paragraph_start(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193{
5194 char_u *p;
5195#ifdef FEAT_COMMENTS
5196 int leader_len = 0; /* leader len of current line */
5197 char_u *leader_flags = NULL; /* flags for leader of current line */
5198 int next_leader_len; /* leader len of next line */
5199 char_u *next_leader_flags; /* flags for leader of next line */
5200 int do_comments; /* format comments */
5201#endif
5202
5203 if (lnum <= 1)
5204 return TRUE; /* start of the file */
5205
5206 p = ml_get(lnum - 1);
5207 if (*p == NUL)
5208 return TRUE; /* after empty line */
5209
5210#ifdef FEAT_COMMENTS
5211 do_comments = has_format_option(FO_Q_COMS);
5212#endif
5213 if (fmt_check_par(lnum - 1
5214#ifdef FEAT_COMMENTS
5215 , &leader_len, &leader_flags, do_comments
5216#endif
5217 ))
5218 return TRUE; /* after non-paragraph line */
5219
5220 if (fmt_check_par(lnum
5221#ifdef FEAT_COMMENTS
5222 , &next_leader_len, &next_leader_flags, do_comments
5223#endif
5224 ))
5225 return TRUE; /* "lnum" is not a paragraph line */
5226
5227 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
5228 return TRUE; /* missing trailing space in previous line. */
5229
5230 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
5231 return TRUE; /* numbered item starts in "lnum". */
5232
5233#ifdef FEAT_COMMENTS
5234 if (!same_leader(lnum - 1, leader_len, leader_flags,
5235 next_leader_len, next_leader_flags))
5236 return TRUE; /* change of comment leader. */
5237#endif
5238
5239 return FALSE;
5240}
5241
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242/*
5243 * prepare a few things for block mode yank/delete/tilde
5244 *
5245 * for delete:
5246 * - textlen includes the first/last char to be (partly) deleted
5247 * - start/endspaces is the number of columns that are taken by the
5248 * first/last deleted char minus the number of columns that have to be
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +00005249 * deleted.
5250 * for yank and tilde:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 * - textlen includes the first/last char to be wholly yanked
5252 * - start/endspaces is the number of columns of the first/last yanked char
5253 * that are to be yanked.
5254 */
5255 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005256block_prep(
5257 oparg_T *oap,
5258 struct block_def *bdp,
5259 linenr_T lnum,
5260 int is_del)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261{
5262 int incr = 0;
5263 char_u *pend;
5264 char_u *pstart;
5265 char_u *line;
5266 char_u *prev_pstart;
5267 char_u *prev_pend;
5268
5269 bdp->startspaces = 0;
5270 bdp->endspaces = 0;
5271 bdp->textlen = 0;
5272 bdp->start_vcol = 0;
5273 bdp->end_vcol = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 bdp->is_short = FALSE;
5275 bdp->is_oneChar = FALSE;
5276 bdp->pre_whitesp = 0;
5277 bdp->pre_whitesp_c = 0;
5278 bdp->end_char_vcols = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279 bdp->start_char_vcols = 0;
5280
5281 line = ml_get(lnum);
5282 pstart = line;
5283 prev_pstart = line;
5284 while (bdp->start_vcol < oap->start_vcol && *pstart)
5285 {
5286 /* Count a tab for what it's worth (if list mode not on) */
Bram Moolenaar597a4222014-06-25 14:39:50 +02005287 incr = lbr_chartabsize(line, pstart, (colnr_T)bdp->start_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288 bdp->start_vcol += incr;
Bram Moolenaar1c465442017-03-12 20:10:05 +01005289 if (VIM_ISWHITE(*pstart))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290 {
5291 bdp->pre_whitesp += incr;
5292 bdp->pre_whitesp_c++;
5293 }
5294 else
5295 {
5296 bdp->pre_whitesp = 0;
5297 bdp->pre_whitesp_c = 0;
5298 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 prev_pstart = pstart;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005300 MB_PTR_ADV(pstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301 }
5302 bdp->start_char_vcols = incr;
5303 if (bdp->start_vcol < oap->start_vcol) /* line too short */
5304 {
5305 bdp->end_vcol = bdp->start_vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 bdp->is_short = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 if (!is_del || oap->op_type == OP_APPEND)
5308 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
5309 }
5310 else
5311 {
5312 /* notice: this converts partly selected Multibyte characters to
5313 * spaces, too. */
5314 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
5315 if (is_del && bdp->startspaces)
5316 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
5317 pend = pstart;
5318 bdp->end_vcol = bdp->start_vcol;
5319 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
5320 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321 bdp->is_oneChar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 if (oap->op_type == OP_INSERT)
5323 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5324 else if (oap->op_type == OP_APPEND)
5325 {
5326 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
5327 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
5328 }
5329 else
5330 {
5331 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
5332 if (is_del && oap->op_type != OP_LSHIFT)
5333 {
5334 /* just putting the sum of those two into
5335 * bdp->startspaces doesn't work for Visual replace,
5336 * so we have to split the tab in two */
5337 bdp->startspaces = bdp->start_char_vcols
5338 - (bdp->start_vcol - oap->start_vcol);
5339 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5340 }
5341 }
5342 }
5343 else
5344 {
5345 prev_pend = pend;
5346 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
5347 {
5348 /* Count a tab for what it's worth (if list mode not on) */
5349 prev_pend = pend;
Bram Moolenaar1dc92332015-01-27 13:22:20 +01005350 incr = lbr_chartabsize_adv(line, &pend, (colnr_T)bdp->end_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351 bdp->end_vcol += incr;
5352 }
5353 if (bdp->end_vcol <= oap->end_vcol
5354 && (!is_del
5355 || oap->op_type == OP_APPEND
5356 || oap->op_type == OP_REPLACE)) /* line too short */
5357 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 bdp->is_short = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359 /* Alternative: include spaces to fill up the block.
5360 * Disadvantage: can lead to trailing spaces when the line is
5361 * short where the text is put */
5362 /* if (!is_del || oap->op_type == OP_APPEND) */
5363 if (oap->op_type == OP_APPEND || virtual_op)
5364 bdp->endspaces = oap->end_vcol - bdp->end_vcol
Bram Moolenaar2c7a29c2005-12-12 22:02:31 +00005365 + oap->inclusive;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 else
5367 bdp->endspaces = 0; /* replace doesn't add characters */
5368 }
5369 else if (bdp->end_vcol > oap->end_vcol)
5370 {
5371 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
5372 if (!is_del && bdp->endspaces)
5373 {
5374 bdp->endspaces = incr - bdp->endspaces;
5375 if (pend != pstart)
5376 pend = prev_pend;
5377 }
5378 }
5379 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380 bdp->end_char_vcols = incr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 if (is_del && bdp->startspaces)
5382 pstart = prev_pstart;
5383 bdp->textlen = (int)(pend - pstart);
5384 }
5385 bdp->textcol = (colnr_T) (pstart - line);
5386 bdp->textstart = pstart;
5387}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389/*
Bram Moolenaard79e5502016-01-10 22:13:02 +01005390 * Handle the add/subtract operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005392 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005393op_addsub(
5394 oparg_T *oap,
5395 linenr_T Prenum1, /* Amount of add/subtract */
5396 int g_cmd) /* was g<c-a>/g<c-x> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397{
Bram Moolenaard79e5502016-01-10 22:13:02 +01005398 pos_T pos;
5399 struct block_def bd;
5400 int change_cnt = 0;
5401 linenr_T amount = Prenum1;
5402
Bram Moolenaar6b731882018-11-16 20:54:47 +01005403 // do_addsub() might trigger re-evaluation of 'foldexpr' halfway, when the
Bram Moolenaarbdace832019-03-02 10:13:42 +01005404 // buffer is not completely updated yet. Postpone updating folds until before
Bram Moolenaar6b731882018-11-16 20:54:47 +01005405 // the call to changed_lines().
5406#ifdef FEAT_FOLDING
5407 disable_fold_update++;
5408#endif
5409
Bram Moolenaard79e5502016-01-10 22:13:02 +01005410 if (!VIsual_active)
5411 {
5412 pos = curwin->w_cursor;
5413 if (u_save_cursor() == FAIL)
Bram Moolenaar6b731882018-11-16 20:54:47 +01005414 {
5415#ifdef FEAT_FOLDING
5416 disable_fold_update--;
5417#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01005418 return;
Bram Moolenaar6b731882018-11-16 20:54:47 +01005419 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01005420 change_cnt = do_addsub(oap->op_type, &pos, 0, amount);
Bram Moolenaar6b731882018-11-16 20:54:47 +01005421#ifdef FEAT_FOLDING
5422 disable_fold_update--;
5423#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01005424 if (change_cnt)
5425 changed_lines(pos.lnum, 0, pos.lnum + 1, 0L);
5426 }
5427 else
5428 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005429 int one_change;
5430 int length;
5431 pos_T startpos;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005432
5433 if (u_save((linenr_T)(oap->start.lnum - 1),
5434 (linenr_T)(oap->end.lnum + 1)) == FAIL)
Bram Moolenaar6b731882018-11-16 20:54:47 +01005435 {
5436#ifdef FEAT_FOLDING
5437 disable_fold_update--;
5438#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01005439 return;
Bram Moolenaar6b731882018-11-16 20:54:47 +01005440 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01005441
5442 pos = oap->start;
5443 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
5444 {
5445 if (oap->block_mode) /* Visual block mode */
5446 {
5447 block_prep(oap, &bd, pos.lnum, FALSE);
5448 pos.col = bd.textcol;
5449 length = bd.textlen;
5450 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005451 else if (oap->motion_type == MLINE)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005452 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005453 curwin->w_cursor.col = 0;
5454 pos.col = 0;
5455 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5456 }
5457 else /* oap->motion_type == MCHAR */
5458 {
Bram Moolenaar5fe6bdf2017-12-05 17:22:12 +01005459 if (pos.lnum == oap->start.lnum && !oap->inclusive)
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005460 dec(&(oap->end));
5461 length = (colnr_T)STRLEN(ml_get(pos.lnum));
5462 pos.col = 0;
5463 if (pos.lnum == oap->start.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005464 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005465 pos.col += oap->start.col;
5466 length -= oap->start.col;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005467 }
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005468 if (pos.lnum == oap->end.lnum)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005469 {
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005470 length = (int)STRLEN(ml_get(oap->end.lnum));
5471 if (oap->end.col >= length)
5472 oap->end.col = length - 1;
5473 length = oap->end.col - pos.col + 1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005474 }
5475 }
5476 one_change = do_addsub(oap->op_type, &pos, length, amount);
5477 if (one_change)
5478 {
5479 /* Remember the start position of the first change. */
5480 if (change_cnt == 0)
5481 startpos = curbuf->b_op_start;
5482 ++change_cnt;
5483 }
5484
5485#ifdef FEAT_NETBEANS_INTG
5486 if (netbeans_active() && one_change)
5487 {
5488 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
5489
5490 netbeans_removed(curbuf, pos.lnum, pos.col, (long)length);
5491 netbeans_inserted(curbuf, pos.lnum, pos.col,
5492 &ptr[pos.col], length);
5493 }
5494#endif
5495 if (g_cmd && one_change)
5496 amount += Prenum1;
5497 }
Bram Moolenaar6b731882018-11-16 20:54:47 +01005498
5499#ifdef FEAT_FOLDING
5500 disable_fold_update--;
5501#endif
Bram Moolenaard79e5502016-01-10 22:13:02 +01005502 if (change_cnt)
5503 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
5504
5505 if (!change_cnt && oap->is_VIsual)
5506 /* No change: need to remove the Visual selection */
5507 redraw_curbuf_later(INVERTED);
5508
5509 /* Set '[ mark if something changed. Keep the last end
5510 * position from do_addsub(). */
5511 if (change_cnt > 0)
5512 curbuf->b_op_start = startpos;
5513
5514 if (change_cnt > p_report)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005515 smsg(NGETTEXT("%ld line changed", "%ld lines changed",
Bram Moolenaarda6e8912018-08-21 15:12:14 +02005516 change_cnt), change_cnt);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005517 }
5518}
5519
5520/*
5521 * Add or subtract 'Prenum1' from a number in a line
5522 * op_type is OP_NR_ADD or OP_NR_SUB
5523 *
5524 * Returns TRUE if some character was changed.
5525 */
5526 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005527do_addsub(
5528 int op_type,
5529 pos_T *pos,
5530 int length,
5531 linenr_T Prenum1)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005532{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005533 int col;
5534 char_u *buf1;
5535 char_u buf2[NUMBUFLEN];
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005536 int pre; /* 'X'/'x': hex; '0': octal; 'B'/'b': bin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537 static int hexupper = FALSE; /* 0xABC */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005538 uvarnumber_T n;
5539 uvarnumber_T oldn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540 char_u *ptr;
5541 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 int todel;
5543 int dohex;
5544 int dooct;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005545 int dobin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 int doalp;
5547 int firstdigit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548 int subtract;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005549 int negative = FALSE;
Bram Moolenaar9bb19302015-07-03 12:44:07 +02005550 int was_positive = TRUE;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005551 int visual = VIsual_active;
Bram Moolenaar3ec32612015-07-12 15:02:38 +02005552 int did_change = FALSE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005553 pos_T save_cursor = curwin->w_cursor;
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005554 int maxlen = 0;
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005555 pos_T startpos;
5556 pos_T endpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557
5558 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
5559 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005560 dobin = (vim_strchr(curbuf->b_p_nf, 'b') != NULL); /* "Bin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
5562
Bram Moolenaard79e5502016-01-10 22:13:02 +01005563 curwin->w_cursor = *pos;
5564 ptr = ml_get(pos->lnum);
5565 col = pos->col;
5566
5567 if (*ptr == NUL)
5568 goto theend;
5569
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 /*
5571 * First check if we are on a hexadecimal number, after the "0x".
5572 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005573 if (!VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005575 if (dobin)
5576 while (col > 0 && vim_isbdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005577 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005578 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005579 if (has_mbyte)
5580 col -= (*mb_head_off)(ptr, ptr + col);
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005581 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005582
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005583 if (dohex)
5584 while (col > 0 && vim_isxdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005585 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005586 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005587 if (has_mbyte)
5588 col -= (*mb_head_off)(ptr, ptr + col);
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005589 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005590
5591 if ( dobin
5592 && dohex
5593 && ! ((col > 0
5594 && (ptr[col] == 'X'
5595 || ptr[col] == 'x')
5596 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005597 && (!has_mbyte ||
5598 !(*mb_head_off)(ptr, ptr + col - 1))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005599 && vim_isxdigit(ptr[col + 1]))))
5600 {
5601
5602 /* In case of binary/hexadecimal pattern overlap match, rescan */
5603
Bram Moolenaard79e5502016-01-10 22:13:02 +01005604 col = pos->col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005605
5606 while (col > 0 && vim_isdigit(ptr[col]))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005607 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005608 col--;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005609 if (has_mbyte)
5610 col -= (*mb_head_off)(ptr, ptr + col);
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005611 }
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005612 }
5613
5614 if (( dohex
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005615 && col > 0
5616 && (ptr[col] == 'X'
5617 || ptr[col] == 'x')
5618 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005619 && (!has_mbyte ||
5620 !(*mb_head_off)(ptr, ptr + col - 1))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005621 && vim_isxdigit(ptr[col + 1])) ||
5622 ( dobin
5623 && col > 0
5624 && (ptr[col] == 'B'
5625 || ptr[col] == 'b')
5626 && ptr[col - 1] == '0'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005627 && (!has_mbyte ||
5628 !(*mb_head_off)(ptr, ptr + col - 1))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005629 && vim_isbdigit(ptr[col + 1])))
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005630 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01005631 /* Found hexadecimal or binary number, move to its start. */
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005632 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005633 if (has_mbyte)
5634 col -= (*mb_head_off)(ptr, ptr + col);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005635 }
5636 else
5637 {
5638 /*
5639 * Search forward and then backward to find the start of number.
5640 */
Bram Moolenaard79e5502016-01-10 22:13:02 +01005641 col = pos->col;
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005642
5643 while (ptr[col] != NUL
5644 && !vim_isdigit(ptr[col])
5645 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005646 col += MB_PTR2LEN(ptr + col);
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005647
5648 while (col > 0
5649 && vim_isdigit(ptr[col - 1])
5650 && !(doalp && ASCII_ISALPHA(ptr[col])))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005651 {
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005652 --col;
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005653 if (has_mbyte)
5654 col -= (*mb_head_off)(ptr, ptr + col);
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005655 }
Bram Moolenaar3a304b22015-06-25 13:57:36 +02005656 }
5657 }
5658
Bram Moolenaar5d1bc782015-07-17 13:03:48 +02005659 if (visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005660 {
5661 while (ptr[col] != NUL && length > 0
5662 && !vim_isdigit(ptr[col])
5663 && !(doalp && ASCII_ISALPHA(ptr[col])))
5664 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005665 int mb_len = MB_PTR2LEN(ptr + col);
5666
5667 col += mb_len;
5668 length -= mb_len;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005669 }
5670
5671 if (length == 0)
5672 goto theend;
5673
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005674 if (col > pos->col && ptr[col - 1] == '-'
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005675 && (!has_mbyte || !(*mb_head_off)(ptr, ptr + col - 1)))
Bram Moolenaard79e5502016-01-10 22:13:02 +01005676 {
5677 negative = TRUE;
5678 was_positive = FALSE;
5679 }
5680 }
5681
5682 /*
5683 * If a number was found, and saving for undo works, replace the number.
5684 */
5685 firstdigit = ptr[col];
5686 if (!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
5687 {
5688 beep_flush();
5689 goto theend;
5690 }
5691
5692 if (doalp && ASCII_ISALPHA(firstdigit))
5693 {
5694 /* decrement or increment alphabetic character */
5695 if (op_type == OP_NR_SUB)
5696 {
5697 if (CharOrd(firstdigit) < Prenum1)
5698 {
5699 if (isupper(firstdigit))
5700 firstdigit = 'A';
5701 else
5702 firstdigit = 'a';
5703 }
5704 else
5705#ifdef EBCDIC
5706 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
5707#else
5708 firstdigit -= Prenum1;
5709#endif
5710 }
5711 else
5712 {
5713 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
5714 {
5715 if (isupper(firstdigit))
5716 firstdigit = 'Z';
5717 else
5718 firstdigit = 'z';
5719 }
5720 else
5721#ifdef EBCDIC
5722 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
5723#else
5724 firstdigit += Prenum1;
5725#endif
5726 }
5727 curwin->w_cursor.col = col;
5728 if (!did_change)
5729 startpos = curwin->w_cursor;
5730 did_change = TRUE;
5731 (void)del_char(FALSE);
5732 ins_char(firstdigit);
5733 endpos = curwin->w_cursor;
5734 curwin->w_cursor.col = col;
5735 }
5736 else
5737 {
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005738 if (col > 0 && ptr[col - 1] == '-'
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005739 && (!has_mbyte ||
5740 !(*mb_head_off)(ptr, ptr + col - 1))
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02005741 && !visual)
Bram Moolenaard79e5502016-01-10 22:13:02 +01005742 {
5743 /* negative number */
5744 --col;
5745 negative = TRUE;
5746 }
5747 /* get the number value (unsigned) */
5748 if (visual && VIsual_mode != 'V')
5749 maxlen = (curbuf->b_visual.vi_curswant == MAXCOL
5750 ? (int)STRLEN(ptr) - col
5751 : length);
5752
5753 vim_str2nr(ptr + col, &pre, &length,
5754 0 + (dobin ? STR2NR_BIN : 0)
5755 + (dooct ? STR2NR_OCT : 0)
5756 + (dohex ? STR2NR_HEX : 0),
5757 NULL, &n, maxlen);
5758
5759 /* ignore leading '-' for hex and octal and bin numbers */
5760 if (pre && negative)
5761 {
5762 ++col;
5763 --length;
5764 negative = FALSE;
5765 }
5766 /* add or subtract */
5767 subtract = FALSE;
5768 if (op_type == OP_NR_SUB)
5769 subtract ^= TRUE;
5770 if (negative)
5771 subtract ^= TRUE;
5772
5773 oldn = n;
5774 if (subtract)
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005775 n -= (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005776 else
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005777 n += (uvarnumber_T)Prenum1;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005778 /* handle wraparound for decimal numbers */
5779 if (!pre)
5780 {
5781 if (subtract)
5782 {
5783 if (n > oldn)
5784 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005785 n = 1 + (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005786 negative ^= TRUE;
5787 }
5788 }
5789 else
5790 {
5791 /* add */
5792 if (n < oldn)
5793 {
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005794 n = (n ^ (uvarnumber_T)-1);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005795 negative ^= TRUE;
5796 }
5797 }
5798 if (n == 0)
5799 negative = FALSE;
5800 }
5801
5802 if (visual && !was_positive && !negative && col > 0)
5803 {
5804 /* need to remove the '-' */
5805 col--;
5806 length++;
5807 }
5808
5809 /*
5810 * Delete the old number.
5811 */
5812 curwin->w_cursor.col = col;
5813 if (!did_change)
5814 startpos = curwin->w_cursor;
5815 did_change = TRUE;
5816 todel = length;
5817 c = gchar_cursor();
5818 /*
5819 * Don't include the '-' in the length, only the length of the
5820 * part after it is kept the same.
5821 */
5822 if (c == '-')
5823 --length;
5824 while (todel-- > 0)
5825 {
5826 if (c < 0x100 && isalpha(c))
5827 {
5828 if (isupper(c))
5829 hexupper = TRUE;
5830 else
5831 hexupper = FALSE;
5832 }
5833 /* del_char() will mark line needing displaying */
5834 (void)del_char(FALSE);
5835 c = gchar_cursor();
5836 }
5837
5838 /*
5839 * Prepare the leading characters in buf1[].
5840 * When there are many leading zeros it could be very long.
5841 * Allocate a bit too much.
5842 */
5843 buf1 = alloc((unsigned)length + NUMBUFLEN);
5844 if (buf1 == NULL)
5845 goto theend;
5846 ptr = buf1;
Bram Moolenaardc633cf2016-04-23 14:33:19 +02005847 if (negative && (!visual || was_positive))
Bram Moolenaard79e5502016-01-10 22:13:02 +01005848 *ptr++ = '-';
Bram Moolenaard79e5502016-01-10 22:13:02 +01005849 if (pre)
5850 {
5851 *ptr++ = '0';
5852 --length;
5853 }
5854 if (pre == 'b' || pre == 'B' ||
5855 pre == 'x' || pre == 'X')
5856 {
5857 *ptr++ = pre;
5858 --length;
5859 }
5860
5861 /*
5862 * Put the number characters in buf2[].
5863 */
5864 if (pre == 'b' || pre == 'B')
5865 {
5866 int i;
5867 int bit = 0;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02005868 int bits = sizeof(uvarnumber_T) * 8;
Bram Moolenaard79e5502016-01-10 22:13:02 +01005869
5870 /* leading zeros */
5871 for (bit = bits; bit > 0; bit--)
5872 if ((n >> (bit - 1)) & 0x1) break;
5873
5874 for (i = 0; bit > 0; bit--)
5875 buf2[i++] = ((n >> (bit - 1)) & 0x1) ? '1' : '0';
5876
5877 buf2[i] = '\0';
5878 }
5879 else if (pre == 0)
Bram Moolenaarea391762018-04-08 13:07:22 +02005880 vim_snprintf((char *)buf2, NUMBUFLEN, "%llu",
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01005881 (long_long_u_T)n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005882 else if (pre == '0')
Bram Moolenaarea391762018-04-08 13:07:22 +02005883 vim_snprintf((char *)buf2, NUMBUFLEN, "%llo",
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01005884 (long_long_u_T)n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005885 else if (pre && hexupper)
Bram Moolenaarea391762018-04-08 13:07:22 +02005886 vim_snprintf((char *)buf2, NUMBUFLEN, "%llX",
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01005887 (long_long_u_T)n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005888 else
Bram Moolenaarea391762018-04-08 13:07:22 +02005889 vim_snprintf((char *)buf2, NUMBUFLEN, "%llx",
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01005890 (long_long_u_T)n);
Bram Moolenaard79e5502016-01-10 22:13:02 +01005891 length -= (int)STRLEN(buf2);
5892
5893 /*
5894 * Adjust number of zeros to the new number of digits, so the
5895 * total length of the number remains the same.
5896 * Don't do this when
5897 * the result may look like an octal number.
5898 */
5899 if (firstdigit == '0' && !(dooct && pre == 0))
5900 while (length-- > 0)
5901 *ptr++ = '0';
5902 *ptr = NUL;
5903 STRCAT(buf1, buf2);
5904 ins_str(buf1); /* insert the new number */
5905 vim_free(buf1);
5906 endpos = curwin->w_cursor;
5907 if (did_change && curwin->w_cursor.col)
5908 --curwin->w_cursor.col;
5909 }
5910
Bram Moolenaara52dfae2016-01-10 20:21:57 +01005911 if (did_change)
5912 {
5913 /* set the '[ and '] marks */
5914 curbuf->b_op_start = startpos;
5915 curbuf->b_op_end = endpos;
5916 if (curbuf->b_op_end.col > 0)
5917 --curbuf->b_op_end.col;
5918 }
Bram Moolenaard79e5502016-01-10 22:13:02 +01005919
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005920theend:
5921 if (visual)
5922 curwin->w_cursor = save_cursor;
Bram Moolenaar8e081252016-03-21 23:13:32 +01005923 else if (did_change)
5924 curwin->w_set_curswant = TRUE;
Bram Moolenaar7ae4fbc2016-01-12 21:00:40 +01005925
Bram Moolenaard79e5502016-01-10 22:13:02 +01005926 return did_change;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927}
5928
5929#ifdef FEAT_VIMINFO
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005930
5931static yankreg_T *y_read_regs = NULL;
5932
5933#define REG_PREVIOUS 1
5934#define REG_EXEC 2
5935
5936/*
5937 * Prepare for reading viminfo registers when writing viminfo later.
5938 */
5939 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02005940prepare_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005941{
5942 y_read_regs = (yankreg_T *)alloc_clear(NUM_REGISTERS
5943 * (int)sizeof(yankreg_T));
5944}
5945
5946 void
Bram Moolenaarcf089462016-06-12 21:18:43 +02005947finish_viminfo_registers(void)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005948{
5949 int i;
5950 int j;
5951
5952 if (y_read_regs != NULL)
5953 {
5954 for (i = 0; i < NUM_REGISTERS; ++i)
5955 if (y_read_regs[i].y_array != NULL)
5956 {
5957 for (j = 0; j < y_read_regs[i].y_size; j++)
5958 vim_free(y_read_regs[i].y_array[j]);
5959 vim_free(y_read_regs[i].y_array);
5960 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01005961 VIM_CLEAR(y_read_regs);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02005962 }
5963}
5964
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005966read_viminfo_register(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005967{
5968 int eof;
5969 int do_it = TRUE;
5970 int size;
5971 int limit;
5972 int i;
5973 int set_prev = FALSE;
5974 char_u *str;
5975 char_u **array = NULL;
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01005976 int new_type = MCHAR; /* init to shut up compiler */
5977 colnr_T new_width = 0; /* init to shut up compiler */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005978
5979 /* We only get here (hopefully) if line[0] == '"' */
5980 str = virp->vir_line + 1;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005981
5982 /* If the line starts with "" this is the y_previous register. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005983 if (*str == '"')
5984 {
5985 set_prev = TRUE;
5986 str++;
5987 }
Bram Moolenaar42b94362009-05-26 16:12:37 +00005988
Bram Moolenaar071d4272004-06-13 20:20:40 +00005989 if (!ASCII_ISALNUM(*str) && *str != '-')
5990 {
5991 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
5992 return TRUE; /* too many errors, pretend end-of-file */
5993 do_it = FALSE;
5994 }
5995 get_yank_register(*str++, FALSE);
5996 if (!force && y_current->y_array != NULL)
5997 do_it = FALSE;
Bram Moolenaar42b94362009-05-26 16:12:37 +00005998
5999 if (*str == '@')
6000 {
6001 /* "x@: register x used for @@ */
6002 if (force || execreg_lastc == NUL)
6003 execreg_lastc = str[-1];
6004 }
6005
Bram Moolenaar071d4272004-06-13 20:20:40 +00006006 size = 0;
6007 limit = 100; /* Optimized for registers containing <= 100 lines */
6008 if (do_it)
6009 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006010 /*
6011 * Build the new register in array[].
6012 * y_array is kept as-is until done.
6013 * The "do_it" flag is reset when something is wrong, in which case
6014 * array[] needs to be freed.
6015 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006016 if (set_prev)
6017 y_previous = y_current;
Bram Moolenaare88b0032014-12-17 21:00:49 +01006018 array = (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
Bram Moolenaar42b94362009-05-26 16:12:37 +00006019 str = skipwhite(skiptowhite(str));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006020 if (STRNCMP(str, "CHAR", 4) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006021 new_type = MCHAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006022 else if (STRNCMP(str, "BLOCK", 5) == 0)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006023 new_type = MBLOCK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006025 new_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026 /* get the block width; if it's missing we get a zero, which is OK */
6027 str = skipwhite(skiptowhite(str));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006028 new_width = getdigits(&str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006029 }
6030
6031 while (!(eof = viminfo_readline(virp))
6032 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
6033 {
6034 if (do_it)
6035 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006036 if (size == limit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006038 char_u **new_array = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
Bram Moolenaare88b0032014-12-17 21:00:49 +01006040
6041 if (new_array == NULL)
6042 {
6043 do_it = FALSE;
6044 break;
6045 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006046 for (i = 0; i < limit; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006047 new_array[i] = array[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006048 vim_free(array);
Bram Moolenaare88b0032014-12-17 21:00:49 +01006049 array = new_array;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006050 limit *= 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051 }
6052 str = viminfo_readstring(virp, 1, TRUE);
6053 if (str != NULL)
6054 array[size++] = str;
6055 else
Bram Moolenaare88b0032014-12-17 21:00:49 +01006056 /* error, don't store the result */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057 do_it = FALSE;
6058 }
6059 }
Bram Moolenaar7cbc7032015-01-18 14:08:56 +01006060
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 if (do_it)
6062 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006063 /* free y_array[] */
6064 for (i = 0; i < y_current->y_size; i++)
6065 vim_free(y_current->y_array[i]);
6066 vim_free(y_current->y_array);
6067
6068 y_current->y_type = new_type;
6069 y_current->y_width = new_width;
6070 y_current->y_size = size;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006071 y_current->y_time_set = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072 if (size == 0)
6073 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074 y_current->y_array = NULL;
6075 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006076 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077 {
Bram Moolenaare88b0032014-12-17 21:00:49 +01006078 /* Move the lines from array[] to y_array[]. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006079 y_current->y_array =
6080 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
6081 for (i = 0; i < size; i++)
Bram Moolenaare88b0032014-12-17 21:00:49 +01006082 {
6083 if (y_current->y_array == NULL)
6084 vim_free(array[i]);
6085 else
6086 y_current->y_array[i] = array[i];
6087 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006088 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089 }
Bram Moolenaare88b0032014-12-17 21:00:49 +01006090 else
6091 {
6092 /* Free array[] if it was filled. */
6093 for (i = 0; i < size; i++)
6094 vim_free(array[i]);
6095 }
6096 vim_free(array);
6097
Bram Moolenaar071d4272004-06-13 20:20:40 +00006098 return eof;
6099}
6100
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006101/*
6102 * Accept a new style register line from the viminfo, store it when it's new.
6103 */
6104 void
6105handle_viminfo_register(garray_T *values, int force)
6106{
6107 bval_T *vp = (bval_T *)values->ga_data;
6108 int flags;
6109 int name;
6110 int type;
6111 int linecount;
6112 int width;
6113 time_t timestamp;
6114 yankreg_T *y_ptr;
6115 int i;
6116
6117 /* Check the format:
6118 * |{bartype},{flags},{name},{type},
6119 * {linecount},{width},{timestamp},"line1","line2"
6120 */
6121 if (values->ga_len < 6
6122 || vp[0].bv_type != BVAL_NR
6123 || vp[1].bv_type != BVAL_NR
6124 || vp[2].bv_type != BVAL_NR
6125 || vp[3].bv_type != BVAL_NR
6126 || vp[4].bv_type != BVAL_NR
6127 || vp[5].bv_type != BVAL_NR)
6128 return;
6129 flags = vp[0].bv_nr;
6130 name = vp[1].bv_nr;
Bram Moolenaar67e37202016-06-14 21:32:28 +02006131 if (name < 0 || name >= NUM_REGISTERS)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006132 return;
6133 type = vp[2].bv_nr;
6134 if (type != MCHAR && type != MLINE && type != MBLOCK)
6135 return;
6136 linecount = vp[3].bv_nr;
6137 if (values->ga_len < 6 + linecount)
6138 return;
6139 width = vp[4].bv_nr;
6140 if (width < 0)
6141 return;
6142
6143 if (y_read_regs != NULL)
6144 /* Reading viminfo for merging and writing. Store the register
6145 * content, don't update the current registers. */
6146 y_ptr = &y_read_regs[name];
6147 else
6148 y_ptr = &y_regs[name];
6149
6150 /* Do not overwrite unless forced or the timestamp is newer. */
6151 timestamp = (time_t)vp[5].bv_nr;
6152 if (y_ptr->y_array != NULL && !force
6153 && (timestamp == 0 || y_ptr->y_time_set > timestamp))
6154 return;
6155
Bram Moolenaarad5ca9b2016-06-20 21:26:08 +02006156 if (y_ptr->y_array != NULL)
6157 for (i = 0; i < y_ptr->y_size; i++)
6158 vim_free(y_ptr->y_array[i]);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006159 vim_free(y_ptr->y_array);
6160
6161 if (y_read_regs == NULL)
6162 {
6163 if (flags & REG_PREVIOUS)
6164 y_previous = y_ptr;
6165 if ((flags & REG_EXEC) && (force || execreg_lastc == NUL))
6166 execreg_lastc = get_register_name(name);
6167 }
6168 y_ptr->y_type = type;
6169 y_ptr->y_width = width;
6170 y_ptr->y_size = linecount;
6171 y_ptr->y_time_set = timestamp;
6172 if (linecount == 0)
6173 y_ptr->y_array = NULL;
6174 else
6175 {
6176 y_ptr->y_array =
6177 (char_u **)alloc((unsigned)(linecount * sizeof(char_u *)));
6178 for (i = 0; i < linecount; i++)
6179 {
6180 if (vp[i + 6].bv_allocated)
6181 {
6182 y_ptr->y_array[i] = vp[i + 6].bv_string;
6183 vp[i + 6].bv_string = NULL;
6184 }
6185 else
6186 y_ptr->y_array[i] = vim_strsave(vp[i + 6].bv_string);
6187 }
6188 }
6189}
6190
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006192write_viminfo_registers(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006193{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006194 int i, j;
6195 char_u *type;
6196 char_u c;
6197 int num_lines;
6198 int max_num_lines;
6199 int max_kbyte;
6200 long len;
6201 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202
Bram Moolenaar64404472010-06-26 06:24:45 +02006203 fputs(_("\n# Registers:\n"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006204
6205 /* Get '<' value, use old '"' value if '<' is not found. */
6206 max_num_lines = get_viminfo_parameter('<');
6207 if (max_num_lines < 0)
6208 max_num_lines = get_viminfo_parameter('"');
6209 if (max_num_lines == 0)
6210 return;
6211 max_kbyte = get_viminfo_parameter('s');
6212 if (max_kbyte == 0)
6213 return;
Bram Moolenaar42b94362009-05-26 16:12:37 +00006214
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 for (i = 0; i < NUM_REGISTERS; i++)
6216 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217#ifdef FEAT_CLIPBOARD
6218 /* Skip '*'/'+' register, we don't want them back next time */
6219 if (i == STAR_REGISTER || i == PLUS_REGISTER)
6220 continue;
6221#endif
6222#ifdef FEAT_DND
6223 /* Neither do we want the '~' register */
6224 if (i == TILDE_REGISTER)
6225 continue;
6226#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006227 /* When reading viminfo for merging and writing: Use the register from
6228 * viminfo if it's newer. */
6229 if (y_read_regs != NULL
6230 && y_read_regs[i].y_array != NULL
6231 && (y_regs[i].y_array == NULL ||
6232 y_read_regs[i].y_time_set > y_regs[i].y_time_set))
6233 y_ptr = &y_read_regs[i];
6234 else if (y_regs[i].y_array == NULL)
6235 continue;
6236 else
6237 y_ptr = &y_regs[i];
6238
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006239 /* Skip empty registers. */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006240 num_lines = y_ptr->y_size;
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006241 if (num_lines == 0
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006242 || (num_lines == 1 && y_ptr->y_type == MCHAR
6243 && *y_ptr->y_array[0] == NUL))
Bram Moolenaard7ee7ce2005-01-03 21:02:03 +00006244 continue;
6245
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246 if (max_kbyte > 0)
6247 {
6248 /* Skip register if there is more text than the maximum size. */
6249 len = 0;
6250 for (j = 0; j < num_lines; j++)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006251 len += (long)STRLEN(y_ptr->y_array[j]) + 1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006252 if (len > (long)max_kbyte * 1024L)
6253 continue;
6254 }
6255
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006256 switch (y_ptr->y_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257 {
6258 case MLINE:
6259 type = (char_u *)"LINE";
6260 break;
6261 case MCHAR:
6262 type = (char_u *)"CHAR";
6263 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006264 case MBLOCK:
6265 type = (char_u *)"BLOCK";
6266 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267 default:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006268 semsg(_("E574: Unknown register type %d"), y_ptr->y_type);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269 type = (char_u *)"LINE";
6270 break;
6271 }
6272 if (y_previous == &y_regs[i])
6273 fprintf(fp, "\"");
6274 c = get_register_name(i);
Bram Moolenaar42b94362009-05-26 16:12:37 +00006275 fprintf(fp, "\"%c", c);
6276 if (c == execreg_lastc)
6277 fprintf(fp, "@");
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006278 fprintf(fp, "\t%s\t%d\n", type, (int)y_ptr->y_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279
6280 /* If max_num_lines < 0, then we save ALL the lines in the register */
6281 if (max_num_lines > 0 && num_lines > max_num_lines)
6282 num_lines = max_num_lines;
6283 for (j = 0; j < num_lines; j++)
6284 {
6285 putc('\t', fp);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006286 viminfo_writestring(fp, y_ptr->y_array[j]);
6287 }
6288
6289 {
6290 int flags = 0;
6291 int remaining;
6292
6293 /* New style with a bar line. Format:
6294 * |{bartype},{flags},{name},{type},
6295 * {linecount},{width},{timestamp},"line1","line2"
6296 * flags: REG_PREVIOUS - register is y_previous
Bram Moolenaarf12519d2018-02-06 22:52:49 +01006297 * REG_EXEC - used for @@
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006298 */
6299 if (y_previous == &y_regs[i])
6300 flags |= REG_PREVIOUS;
6301 if (c == execreg_lastc)
6302 flags |= REG_EXEC;
6303 fprintf(fp, "|%d,%d,%d,%d,%d,%d,%ld", BARTYPE_REGISTER, flags,
6304 i, y_ptr->y_type, num_lines, (int)y_ptr->y_width,
6305 (long)y_ptr->y_time_set);
6306 /* 11 chars for type/flags/name/type, 3 * 20 for numbers */
6307 remaining = LSIZE - 71;
6308 for (j = 0; j < num_lines; j++)
6309 {
6310 putc(',', fp);
6311 --remaining;
6312 remaining = barline_writestring(fp, y_ptr->y_array[j],
6313 remaining);
6314 }
6315 putc('\n', fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006316 }
6317 }
6318}
6319#endif /* FEAT_VIMINFO */
6320
6321#if defined(FEAT_CLIPBOARD) || defined(PROTO)
6322/*
6323 * SELECTION / PRIMARY ('*')
6324 *
6325 * Text selection stuff that uses the GUI selection register '*'. When using a
6326 * GUI this may be text from another window, otherwise it is the last text we
6327 * had highlighted with VIsual mode. With mouse support, clicking the middle
6328 * button performs the paste, otherwise you will need to do <"*p>. "
6329 * If not under X, it is synonymous with the clipboard register '+'.
6330 *
6331 * X CLIPBOARD ('+')
6332 *
6333 * Text selection stuff that uses the GUI clipboard register '+'.
6334 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
6335 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
6336 * otherwise you will need to do <"+p>. "
6337 * If not under X, it is synonymous with the selection register '*'.
6338 */
6339
6340/*
6341 * Routine to export any final X selection we had to the environment
Bram Moolenaarf58a8472017-03-05 18:03:04 +01006342 * so that the text is still available after Vim has exited. X selections
Bram Moolenaar071d4272004-06-13 20:20:40 +00006343 * only exist while the owning application exists, so we write to the
6344 * permanent (while X runs) store CUT_BUFFER0.
6345 * Dump the CLIPBOARD selection if we own it (it's logically the more
6346 * 'permanent' of the two), otherwise the PRIMARY one.
6347 * For now, use a hard-coded sanity limit of 1Mb of data.
6348 */
Bram Moolenaara6b7a082016-08-10 20:53:05 +02006349#if (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006350 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006351x11_export_final_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006352{
6353 Display *dpy;
6354 char_u *str = NULL;
6355 long_u len = 0;
6356 int motion_type = -1;
6357
6358# ifdef FEAT_GUI
6359 if (gui.in_use)
6360 dpy = X_DISPLAY;
6361 else
6362# endif
6363# ifdef FEAT_XCLIPBOARD
6364 dpy = xterm_dpy;
6365# else
6366 return;
6367# endif
6368
6369 /* Get selection to export */
6370 if (clip_plus.owned)
6371 motion_type = clip_convert_selection(&str, &len, &clip_plus);
6372 else if (clip_star.owned)
6373 motion_type = clip_convert_selection(&str, &len, &clip_star);
6374
6375 /* Check it's OK */
6376 if (dpy != NULL && str != NULL && motion_type >= 0
6377 && len < 1024*1024 && len > 0)
6378 {
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006379 int ok = TRUE;
6380
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006381 /* The CUT_BUFFER0 is supposed to always contain latin1. Convert from
6382 * 'enc' when it is a multi-byte encoding. When 'enc' is an 8-bit
6383 * encoding conversion usually doesn't work, so keep the text as-is.
6384 */
6385 if (has_mbyte)
6386 {
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006387 vimconv_T vc;
6388
6389 vc.vc_type = CONV_NONE;
6390 if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
6391 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01006392 int intlen = len;
6393 char_u *conv_str;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006394
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006395 vc.vc_fail = TRUE;
Bram Moolenaar331dafd2009-11-25 11:38:30 +00006396 conv_str = string_convert(&vc, str, &intlen);
6397 len = intlen;
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006398 if (conv_str != NULL)
6399 {
6400 vim_free(str);
6401 str = conv_str;
6402 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006403 else
6404 {
6405 ok = FALSE;
6406 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006407 convert_setup(&vc, NULL, NULL);
6408 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006409 else
6410 {
6411 ok = FALSE;
6412 }
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006413 }
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006414
6415 /* Do not store the string if conversion failed. Better to use any
6416 * other selection than garbled text. */
6417 if (ok)
Bram Moolenaare2e663f2013-03-07 18:02:30 +01006418 {
6419 XStoreBuffer(dpy, (char *)str, (int)len, 0);
6420 XFlush(dpy);
6421 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006422 }
6423
6424 vim_free(str);
6425}
6426#endif
6427
6428 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006429clip_free_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006431 yankreg_T *y_ptr = y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432
6433 if (cbd == &clip_plus)
6434 y_current = &y_regs[PLUS_REGISTER];
6435 else
6436 y_current = &y_regs[STAR_REGISTER];
6437 free_yank_all();
6438 y_current->y_size = 0;
6439 y_current = y_ptr;
6440}
6441
6442/*
Bram Moolenaar870ba5f2019-01-11 14:37:20 +01006443 * Get the selected text and put it in register '*' or '+'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006444 */
6445 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006446clip_get_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006448 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449 pos_T old_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450 pos_T old_visual;
6451 int old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006452 colnr_T old_curswant;
6453 int old_set_curswant;
6454 pos_T old_op_start, old_op_end;
6455 oparg_T oa;
6456 cmdarg_T ca;
6457
6458 if (cbd->owned)
6459 {
6460 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
6461 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
6462 return;
6463
6464 /* Get the text between clip_star.start & clip_star.end */
6465 old_y_previous = y_previous;
6466 old_y_current = y_current;
6467 old_cursor = curwin->w_cursor;
6468 old_curswant = curwin->w_curswant;
6469 old_set_curswant = curwin->w_set_curswant;
6470 old_op_start = curbuf->b_op_start;
6471 old_op_end = curbuf->b_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 old_visual = VIsual;
6473 old_visual_mode = VIsual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006474 clear_oparg(&oa);
6475 oa.regname = (cbd == &clip_plus ? '+' : '*');
6476 oa.op_type = OP_YANK;
6477 vim_memset(&ca, 0, sizeof(ca));
6478 ca.oap = &oa;
6479 ca.cmdchar = 'y';
6480 ca.count1 = 1;
6481 ca.retval = CA_NO_ADJ_OP_END;
6482 do_pending_operator(&ca, 0, TRUE);
6483 y_previous = old_y_previous;
6484 y_current = old_y_current;
6485 curwin->w_cursor = old_cursor;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00006486 changed_cline_bef_curs(); /* need to update w_virtcol et al */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487 curwin->w_curswant = old_curswant;
6488 curwin->w_set_curswant = old_set_curswant;
6489 curbuf->b_op_start = old_op_start;
6490 curbuf->b_op_end = old_op_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006491 VIsual = old_visual;
6492 VIsual_mode = old_visual_mode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493 }
Bram Moolenaar3fcfa352017-03-29 19:20:41 +02006494 else if (!is_clipboard_needs_update())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006495 {
6496 clip_free_selection(cbd);
6497
6498 /* Try to get selected text from another window */
6499 clip_gen_request_selection(cbd);
6500 }
6501}
6502
Bram Moolenaard44347f2011-06-19 01:14:29 +02006503/*
6504 * Convert from the GUI selection string into the '*'/'+' register.
6505 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006506 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006507clip_yank_selection(
6508 int type,
6509 char_u *str,
6510 long len,
6511 VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006512{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006513 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006514
6515 if (cbd == &clip_plus)
6516 y_ptr = &y_regs[PLUS_REGISTER];
6517 else
6518 y_ptr = &y_regs[STAR_REGISTER];
6519
6520 clip_free_selection(cbd);
6521
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006522 str_to_reg(y_ptr, type, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523}
6524
6525/*
6526 * Convert the '*'/'+' register into a GUI selection string returned in *str
6527 * with length *len.
6528 * Returns the motion type, or -1 for failure.
6529 */
6530 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006531clip_convert_selection(char_u **str, long_u *len, VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532{
6533 char_u *p;
6534 int lnum;
6535 int i, j;
6536 int_u eolsize;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006537 yankreg_T *y_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006538
6539 if (cbd == &clip_plus)
6540 y_ptr = &y_regs[PLUS_REGISTER];
6541 else
6542 y_ptr = &y_regs[STAR_REGISTER];
6543
6544#ifdef USE_CRNL
6545 eolsize = 2;
6546#else
6547 eolsize = 1;
6548#endif
6549
6550 *str = NULL;
6551 *len = 0;
6552 if (y_ptr->y_array == NULL)
6553 return -1;
6554
6555 for (i = 0; i < y_ptr->y_size; i++)
6556 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
6557
6558 /*
6559 * Don't want newline character at end of last line if we're in MCHAR mode.
6560 */
6561 if (y_ptr->y_type == MCHAR && *len >= eolsize)
6562 *len -= eolsize;
6563
6564 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
6565 if (p == NULL)
6566 return -1;
6567 lnum = 0;
6568 for (i = 0, j = 0; i < (int)*len; i++, j++)
6569 {
6570 if (y_ptr->y_array[lnum][j] == '\n')
6571 p[i] = NUL;
6572 else if (y_ptr->y_array[lnum][j] == NUL)
6573 {
6574#ifdef USE_CRNL
6575 p[i++] = '\r';
6576#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006577 p[i] = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00006578 lnum++;
6579 j = -1;
6580 }
6581 else
6582 p[i] = y_ptr->y_array[lnum][j];
6583 }
6584 return y_ptr->y_type;
6585}
6586
6587
Bram Moolenaar071d4272004-06-13 20:20:40 +00006588/*
6589 * If we have written to a clipboard register, send the text to the clipboard.
6590 */
6591 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006592may_set_selection(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006593{
6594 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
6595 {
6596 clip_own_selection(&clip_star);
6597 clip_gen_set_selection(&clip_star);
6598 }
6599 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
6600 {
6601 clip_own_selection(&clip_plus);
6602 clip_gen_set_selection(&clip_plus);
6603 }
6604}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006605
6606#endif /* FEAT_CLIPBOARD || PROTO */
6607
6608
6609#if defined(FEAT_DND) || defined(PROTO)
6610/*
6611 * Replace the contents of the '~' register with str.
6612 */
6613 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006614dnd_yank_drag_data(char_u *str, long len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006616 yankreg_T *curr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617
6618 curr = y_current;
6619 y_current = &y_regs[TILDE_REGISTER];
6620 free_yank_all();
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006621 str_to_reg(y_current, MCHAR, str, len, 0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006622 y_current = curr;
6623}
6624#endif
6625
6626
6627#if defined(FEAT_EVAL) || defined(PROTO)
6628/*
6629 * Return the type of a register.
6630 * Used for getregtype()
6631 * Returns MAUTO for error.
6632 */
6633 char_u
Bram Moolenaar9b578142016-01-30 19:39:49 +01006634get_reg_type(int regname, long *reglen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006635{
6636 switch (regname)
6637 {
6638 case '%': /* file name */
6639 case '#': /* alternate file name */
6640 case '=': /* expression */
6641 case ':': /* last command line */
6642 case '/': /* last search-pattern */
6643 case '.': /* last inserted text */
6644#ifdef FEAT_SEARCHPATH
6645 case Ctrl_F: /* Filename under cursor */
6646 case Ctrl_P: /* Path under cursor, expand via "path" */
6647#endif
6648 case Ctrl_W: /* word under cursor */
6649 case Ctrl_A: /* WORD (mnemonic All) under cursor */
6650 case '_': /* black hole: always empty */
6651 return MCHAR;
6652 }
6653
6654#ifdef FEAT_CLIPBOARD
6655 regname = may_get_selection(regname);
6656#endif
6657
Bram Moolenaar32b92012014-01-14 12:33:36 +01006658 if (regname != NUL && !valid_yank_reg(regname, FALSE))
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01006659 return MAUTO;
Bram Moolenaar32b92012014-01-14 12:33:36 +01006660
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661 get_yank_register(regname, FALSE);
6662
6663 if (y_current->y_array != NULL)
6664 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006665 if (reglen != NULL && y_current->y_type == MBLOCK)
6666 *reglen = y_current->y_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006667 return y_current->y_type;
6668 }
6669 return MAUTO;
6670}
6671
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006672/*
6673 * When "flags" has GREG_LIST return a list with text "s".
6674 * Otherwise just return "s".
6675 */
6676 static char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006677getreg_wrap_one_line(char_u *s, int flags)
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006678{
6679 if (flags & GREG_LIST)
6680 {
6681 list_T *list = list_alloc();
6682
6683 if (list != NULL)
6684 {
6685 if (list_append_string(list, NULL, -1) == FAIL)
6686 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006687 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006688 return NULL;
6689 }
6690 list->lv_first->li_tv.vval.v_string = s;
6691 }
6692 return (char_u *)list;
6693 }
6694 return s;
6695}
6696
Bram Moolenaar071d4272004-06-13 20:20:40 +00006697/*
6698 * Return the contents of a register as a single allocated string.
6699 * Used for "@r" in expressions and for getreg().
6700 * Returns NULL for error.
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006701 * Flags:
6702 * GREG_NO_EXPR Do not allow expression register
6703 * GREG_EXPR_SRC For the expression register: return expression itself,
6704 * not the result of its evaluation.
6705 * GREG_LIST Return a list of lines in place of a single string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006706 */
6707 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006708get_reg_contents(int regname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006709{
6710 long i;
6711 char_u *retval;
6712 int allocated;
6713 long len;
6714
6715 /* Don't allow using an expression register inside an expression */
6716 if (regname == '=')
6717 {
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006718 if (flags & GREG_NO_EXPR)
6719 return NULL;
6720 if (flags & GREG_EXPR_SRC)
6721 return getreg_wrap_one_line(get_expr_line_src(), flags);
6722 return getreg_wrap_one_line(get_expr_line(), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006723 }
6724
6725 if (regname == '@') /* "@@" is used for unnamed register */
6726 regname = '"';
6727
6728 /* check for valid regname */
6729 if (regname != NUL && !valid_yank_reg(regname, FALSE))
6730 return NULL;
6731
6732#ifdef FEAT_CLIPBOARD
6733 regname = may_get_selection(regname);
6734#endif
6735
6736 if (get_spec_reg(regname, &retval, &allocated, FALSE))
6737 {
6738 if (retval == NULL)
6739 return NULL;
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006740 if (allocated)
6741 return getreg_wrap_one_line(retval, flags);
6742 return getreg_wrap_one_line(vim_strsave(retval), flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006743 }
6744
6745 get_yank_register(regname, FALSE);
6746 if (y_current->y_array == NULL)
6747 return NULL;
6748
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006749 if (flags & GREG_LIST)
6750 {
6751 list_T *list = list_alloc();
6752 int error = FALSE;
6753
6754 if (list == NULL)
6755 return NULL;
6756 for (i = 0; i < y_current->y_size; ++i)
6757 if (list_append_string(list, y_current->y_array[i], -1) == FAIL)
6758 error = TRUE;
6759 if (error)
6760 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02006761 list_free(list);
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +02006762 return NULL;
6763 }
6764 return (char_u *)list;
6765 }
6766
Bram Moolenaar071d4272004-06-13 20:20:40 +00006767 /*
6768 * Compute length of resulting string.
6769 */
6770 len = 0;
6771 for (i = 0; i < y_current->y_size; ++i)
6772 {
6773 len += (long)STRLEN(y_current->y_array[i]);
6774 /*
6775 * Insert a newline between lines and after last line if
6776 * y_type is MLINE.
6777 */
6778 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6779 ++len;
6780 }
6781
6782 retval = lalloc(len + 1, TRUE);
6783
6784 /*
6785 * Copy the lines of the yank register into the string.
6786 */
6787 if (retval != NULL)
6788 {
6789 len = 0;
6790 for (i = 0; i < y_current->y_size; ++i)
6791 {
6792 STRCPY(retval + len, y_current->y_array[i]);
6793 len += (long)STRLEN(retval + len);
6794
6795 /*
6796 * Insert a NL between lines and after the last line if y_type is
6797 * MLINE.
6798 */
6799 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
6800 retval[len++] = '\n';
6801 }
6802 retval[len] = NUL;
6803 }
6804
6805 return retval;
6806}
6807
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006808 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006809init_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006810 int name,
6811 yankreg_T **old_y_previous,
6812 yankreg_T **old_y_current,
6813 int must_append,
6814 int *yank_type UNUSED)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006815{
6816 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
6817 {
6818 emsg_invreg(name);
6819 return FAIL;
6820 }
6821
6822 /* Don't want to change the current (unnamed) register */
6823 *old_y_previous = y_previous;
6824 *old_y_current = y_current;
6825
6826 get_yank_register(name, TRUE);
6827 if (!y_append && !must_append)
6828 free_yank_all();
6829 return OK;
6830}
6831
6832 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006833finish_write_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006834 int name,
6835 yankreg_T *old_y_previous,
6836 yankreg_T *old_y_current)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006837{
6838# ifdef FEAT_CLIPBOARD
6839 /* Send text of clipboard register to the clipboard. */
6840 may_set_selection();
6841# endif
6842
6843 /* ':let @" = "val"' should change the meaning of the "" register */
6844 if (name != '"')
6845 y_previous = old_y_previous;
6846 y_current = old_y_current;
6847}
6848
Bram Moolenaar071d4272004-06-13 20:20:40 +00006849/*
6850 * Store string "str" in register "name".
6851 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
6852 * If "must_append" is TRUE, always append to the register. Otherwise append
6853 * if "name" is an uppercase letter.
6854 * Note: "maxlen" and "must_append" don't work for the "/" register.
6855 * Careful: 'str' is modified, you may have to use a copy!
6856 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
6857 */
6858 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006859write_reg_contents(
6860 int name,
6861 char_u *str,
6862 int maxlen,
6863 int must_append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864{
6865 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
6866}
6867
6868 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006869write_reg_contents_lst(
6870 int name,
6871 char_u **strings,
6872 int maxlen UNUSED,
6873 int must_append,
6874 int yank_type,
6875 long block_len)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006876{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006877 yankreg_T *old_y_previous, *old_y_current;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006878
6879 if (name == '/'
6880#ifdef FEAT_EVAL
6881 || name == '='
6882#endif
6883 )
6884 {
6885 char_u *s;
6886
6887 if (strings[0] == NULL)
6888 s = (char_u *)"";
6889 else if (strings[1] != NULL)
6890 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006891 emsg(_("E883: search pattern and expression register may not "
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006892 "contain two or more lines"));
6893 return;
6894 }
6895 else
6896 s = strings[0];
6897 write_reg_contents_ex(name, s, -1, must_append, yank_type, block_len);
6898 return;
6899 }
6900
6901 if (name == '_') /* black hole: nothing to do */
6902 return;
6903
6904 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
6905 &yank_type) == FAIL)
6906 return;
6907
6908 str_to_reg(y_current, yank_type, (char_u *) strings, -1, block_len, TRUE);
6909
6910 finish_write_reg(name, old_y_previous, old_y_current);
6911}
6912
6913 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006914write_reg_contents_ex(
6915 int name,
6916 char_u *str,
6917 int maxlen,
6918 int must_append,
6919 int yank_type,
6920 long block_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921{
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006922 yankreg_T *old_y_previous, *old_y_current;
6923 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924
Bram Moolenaare7566042005-06-17 22:00:15 +00006925 if (maxlen >= 0)
6926 len = maxlen;
6927 else
6928 len = (long)STRLEN(str);
6929
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 /* Special case: '/' search pattern */
6931 if (name == '/')
6932 {
6933 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
6934 return;
6935 }
6936
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01006937 if (name == '#')
6938 {
6939 buf_T *buf;
6940
6941 if (VIM_ISDIGIT(*str))
6942 {
6943 int num = atoi((char *)str);
6944
6945 buf = buflist_findnr(num);
6946 if (buf == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006947 semsg(_(e_nobufnr), (long)num);
Bram Moolenaar3b3a9492015-01-27 18:44:16 +01006948 }
6949 else
6950 buf = buflist_findnr(buflist_findpat(str, str + STRLEN(str),
6951 TRUE, FALSE, FALSE));
6952 if (buf == NULL)
6953 return;
6954 curwin->w_alt_fnum = buf->b_fnum;
6955 return;
6956 }
6957
Bram Moolenaare7566042005-06-17 22:00:15 +00006958#ifdef FEAT_EVAL
6959 if (name == '=')
6960 {
6961 char_u *p, *s;
6962
6963 p = vim_strnsave(str, (int)len);
6964 if (p == NULL)
6965 return;
6966 if (must_append)
6967 {
6968 s = concat_str(get_expr_line_src(), p);
6969 vim_free(p);
6970 p = s;
Bram Moolenaare7566042005-06-17 22:00:15 +00006971 }
6972 set_expr_line(p);
6973 return;
6974 }
6975#endif
6976
Bram Moolenaar071d4272004-06-13 20:20:40 +00006977 if (name == '_') /* black hole: nothing to do */
6978 return;
6979
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006980 if (init_write_reg(name, &old_y_previous, &old_y_current, must_append,
6981 &yank_type) == FAIL)
6982 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006983
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006984 str_to_reg(y_current, yank_type, str, len, block_len, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006985
Bram Moolenaar5a50c222014-04-02 22:17:10 +02006986 finish_write_reg(name, old_y_previous, old_y_current);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006987}
6988#endif /* FEAT_EVAL */
6989
6990#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
6991/*
6992 * Put a string into a register. When the register is not empty, the string
6993 * is appended.
6994 */
6995 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006996str_to_reg(
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02006997 yankreg_T *y_ptr, /* pointer to yank register */
6998 int yank_type, /* MCHAR, MLINE, MBLOCK, MAUTO */
6999 char_u *str, /* string to put in register */
7000 long len, /* length of string */
7001 long blocklen, /* width of Visual block */
7002 int str_list) /* TRUE if str is char_u ** */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007003{
Bram Moolenaard44347f2011-06-19 01:14:29 +02007004 int type; /* MCHAR, MLINE or MBLOCK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007005 int lnum;
7006 long start;
7007 long i;
7008 int extra;
7009 int newlines; /* number of lines added */
7010 int extraline = 0; /* extra line at the end */
7011 int append = FALSE; /* append to last line in register */
7012 char_u *s;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007013 char_u **ss;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007014 char_u **pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007015 long maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016
Bram Moolenaarcde547a2009-11-17 11:43:06 +00007017 if (y_ptr->y_array == NULL) /* NULL means empty register */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007018 y_ptr->y_size = 0;
7019
Bram Moolenaard44347f2011-06-19 01:14:29 +02007020 if (yank_type == MAUTO)
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007021 type = ((str_list || (len > 0 && (str[len - 1] == NL
7022 || str[len - 1] == CAR)))
Bram Moolenaard44347f2011-06-19 01:14:29 +02007023 ? MLINE : MCHAR);
7024 else
7025 type = yank_type;
7026
Bram Moolenaar071d4272004-06-13 20:20:40 +00007027 /*
7028 * Count the number of lines within the string
7029 */
7030 newlines = 0;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007031 if (str_list)
7032 {
7033 for (ss = (char_u **) str; *ss != NULL; ++ss)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007034 ++newlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035 }
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007036 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007037 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007038 for (i = 0; i < len; i++)
7039 if (str[i] == '\n')
7040 ++newlines;
7041 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
7042 {
7043 extraline = 1;
7044 ++newlines; /* count extra newline at the end */
7045 }
7046 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
7047 {
7048 append = TRUE;
7049 --newlines; /* uncount newline when appending first line */
7050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051 }
7052
Bram Moolenaar659c94d2015-05-04 20:19:21 +02007053 /* Without any lines make the register empty. */
7054 if (y_ptr->y_size + newlines == 0)
7055 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01007056 VIM_CLEAR(y_ptr->y_array);
Bram Moolenaar659c94d2015-05-04 20:19:21 +02007057 return;
7058 }
7059
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060 /*
7061 * Allocate an array to hold the pointers to the new register lines.
7062 * If the register was not empty, move the existing lines to the new array.
7063 */
7064 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
7065 * sizeof(char_u *), TRUE);
7066 if (pp == NULL) /* out of memory */
7067 return;
7068 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
7069 pp[lnum] = y_ptr->y_array[lnum];
7070 vim_free(y_ptr->y_array);
7071 y_ptr->y_array = pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007072 maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007073
7074 /*
7075 * Find the end of each line and save it into the array.
7076 */
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007077 if (str_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078 {
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007079 for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum)
7080 {
Bram Moolenaar121f9bd2014-04-29 15:55:43 +02007081 i = (long)STRLEN(*ss);
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007082 pp[lnum] = vim_strnsave(*ss, i);
7083 if (i > maxlen)
7084 maxlen = i;
7085 }
7086 }
7087 else
7088 {
7089 for (start = 0; start < len + extraline; start += i + 1)
7090 {
7091 for (i = start; i < len; ++i) /* find the end of the line */
7092 if (str[i] == '\n')
7093 break;
7094 i -= start; /* i is now length of line */
7095 if (i > maxlen)
7096 maxlen = i;
7097 if (append)
7098 {
7099 --lnum;
7100 extra = (int)STRLEN(y_ptr->y_array[lnum]);
7101 }
7102 else
7103 extra = 0;
7104 s = alloc((unsigned)(i + extra + 1));
7105 if (s == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007106 break;
Bram Moolenaar5a50c222014-04-02 22:17:10 +02007107 if (extra)
7108 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
7109 if (append)
7110 vim_free(y_ptr->y_array[lnum]);
7111 if (i)
7112 mch_memmove(s + extra, str + start, (size_t)i);
7113 extra += i;
7114 s[extra] = NUL;
7115 y_ptr->y_array[lnum++] = s;
7116 while (--extra >= 0)
7117 {
7118 if (*s == NUL)
7119 *s = '\n'; /* replace NUL with newline */
7120 ++s;
7121 }
7122 append = FALSE; /* only first line is appended */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007123 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007124 }
7125 y_ptr->y_type = type;
7126 y_ptr->y_size = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007127 if (type == MBLOCK)
7128 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
7129 else
7130 y_ptr->y_width = 0;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02007131#ifdef FEAT_VIMINFO
7132 y_ptr->y_time_set = vim_time();
7133#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007134}
7135#endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
7136
7137 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007138clear_oparg(oparg_T *oap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007139{
7140 vim_memset(oap, 0, sizeof(oparg_T));
7141}
7142
Bram Moolenaar071d4272004-06-13 20:20:40 +00007143/*
Bram Moolenaar7c626922005-02-07 22:01:03 +00007144 * Count the number of bytes, characters and "words" in a line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007145 *
7146 * "Words" are counted by looking for boundaries between non-space and
7147 * space characters. (it seems to produce results that match 'wc'.)
7148 *
Bram Moolenaar7c626922005-02-07 22:01:03 +00007149 * Return value is byte count; word count for the line is added to "*wc".
7150 * Char count is added to "*cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007151 *
7152 * The function will only examine the first "limit" characters in the
7153 * line, stopping if it encounters an end-of-line (NUL byte). In that
7154 * case, eol_size will be added to the character count to account for
7155 * the size of the EOL character.
7156 */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007157 static varnumber_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01007158line_count_info(
7159 char_u *line,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007160 varnumber_T *wc,
7161 varnumber_T *cc,
7162 varnumber_T limit,
Bram Moolenaar9b578142016-01-30 19:39:49 +01007163 int eol_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007164{
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007165 varnumber_T i;
7166 varnumber_T words = 0;
7167 varnumber_T chars = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007168 int is_word = 0;
7169
Bram Moolenaar88b1ba12012-06-29 13:34:19 +02007170 for (i = 0; i < limit && line[i] != NUL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171 {
7172 if (is_word)
7173 {
7174 if (vim_isspace(line[i]))
7175 {
7176 words++;
7177 is_word = 0;
7178 }
7179 }
7180 else if (!vim_isspace(line[i]))
7181 is_word = 1;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007182 ++chars;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007183 i += (*mb_ptr2len)(line + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007184 }
7185
7186 if (is_word)
7187 words++;
7188 *wc += words;
7189
7190 /* Add eol_size if the end of line was reached before hitting limit. */
Bram Moolenaar1cb7e092011-08-10 12:11:01 +02007191 if (i < limit && line[i] == NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007192 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007193 i += eol_size;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007194 chars += eol_size;
7195 }
7196 *cc += chars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007197 return i;
7198}
7199
7200/*
7201 * Give some info about the position of the cursor (for "g CTRL-G").
7202 * In Visual mode, give some info about the selected region. (In this case,
7203 * the *_count_cursor variables store running totals for the selection.)
Bram Moolenaared767a22016-01-03 22:49:16 +01007204 * When "dict" is not NULL store the info there instead of showing it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007205 */
7206 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01007207cursor_pos_info(dict_T *dict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007208{
7209 char_u *p;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007210 char_u buf1[50];
7211 char_u buf2[40];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007212 linenr_T lnum;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007213 varnumber_T byte_count = 0;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007214 varnumber_T bom_count = 0;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007215 varnumber_T byte_count_cursor = 0;
7216 varnumber_T char_count = 0;
7217 varnumber_T char_count_cursor = 0;
7218 varnumber_T word_count = 0;
7219 varnumber_T word_count_cursor = 0;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007220 int eol_size;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007221 varnumber_T last_check = 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222 long line_count_selected = 0;
7223 pos_T min_pos, max_pos;
7224 oparg_T oparg;
7225 struct block_def bd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007226
7227 /*
7228 * Compute the length of the file in characters.
7229 */
7230 if (curbuf->b_ml.ml_flags & ML_EMPTY)
7231 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007232 if (dict == NULL)
7233 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01007234 msg(_(no_lines_msg));
Bram Moolenaared767a22016-01-03 22:49:16 +01007235 return;
7236 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007237 }
7238 else
7239 {
7240 if (get_fileformat(curbuf) == EOL_DOS)
7241 eol_size = 2;
7242 else
7243 eol_size = 1;
7244
Bram Moolenaar071d4272004-06-13 20:20:40 +00007245 if (VIsual_active)
7246 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007247 if (LT_POS(VIsual, curwin->w_cursor))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007248 {
7249 min_pos = VIsual;
7250 max_pos = curwin->w_cursor;
7251 }
7252 else
7253 {
7254 min_pos = curwin->w_cursor;
7255 max_pos = VIsual;
7256 }
7257 if (*p_sel == 'e' && max_pos.col > 0)
7258 --max_pos.col;
7259
7260 if (VIsual_mode == Ctrl_V)
7261 {
Bram Moolenaar81d00072009-04-29 15:41:40 +00007262#ifdef FEAT_LINEBREAK
7263 char_u * saved_sbr = p_sbr;
7264
7265 /* Make 'sbr' empty for a moment to get the correct size. */
7266 p_sbr = empty_option;
7267#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007268 oparg.is_VIsual = 1;
7269 oparg.block_mode = TRUE;
7270 oparg.op_type = OP_NOP;
7271 getvcols(curwin, &min_pos, &max_pos,
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007272 &oparg.start_vcol, &oparg.end_vcol);
Bram Moolenaar81d00072009-04-29 15:41:40 +00007273#ifdef FEAT_LINEBREAK
7274 p_sbr = saved_sbr;
7275#endif
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00007276 if (curwin->w_curswant == MAXCOL)
7277 oparg.end_vcol = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007278 /* Swap the start, end vcol if needed */
7279 if (oparg.end_vcol < oparg.start_vcol)
7280 {
7281 oparg.end_vcol += oparg.start_vcol;
7282 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
7283 oparg.end_vcol -= oparg.start_vcol;
7284 }
7285 }
7286 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
7287 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007288
7289 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
7290 {
7291 /* Check for a CTRL-C every 100000 characters. */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007292 if (byte_count > last_check)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007293 {
7294 ui_breakcheck();
7295 if (got_int)
7296 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007297 last_check = byte_count + 100000L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007298 }
7299
Bram Moolenaar071d4272004-06-13 20:20:40 +00007300 /* Do extra processing for VIsual mode. */
7301 if (VIsual_active
7302 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
7303 {
Bram Moolenaardef9e822004-12-31 20:58:58 +00007304 char_u *s = NULL;
7305 long len = 0L;
7306
Bram Moolenaar071d4272004-06-13 20:20:40 +00007307 switch (VIsual_mode)
7308 {
7309 case Ctrl_V:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007310 virtual_op = virtual_active();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007311 block_prep(&oparg, &bd, lnum, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007312 virtual_op = MAYBE;
Bram Moolenaardef9e822004-12-31 20:58:58 +00007313 s = bd.textstart;
7314 len = (long)bd.textlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007315 break;
7316 case 'V':
Bram Moolenaardef9e822004-12-31 20:58:58 +00007317 s = ml_get(lnum);
7318 len = MAXCOL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007319 break;
7320 case 'v':
7321 {
7322 colnr_T start_col = (lnum == min_pos.lnum)
7323 ? min_pos.col : 0;
7324 colnr_T end_col = (lnum == max_pos.lnum)
7325 ? max_pos.col - start_col + 1 : MAXCOL;
7326
Bram Moolenaardef9e822004-12-31 20:58:58 +00007327 s = ml_get(lnum) + start_col;
7328 len = end_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007329 }
7330 break;
7331 }
Bram Moolenaardef9e822004-12-31 20:58:58 +00007332 if (s != NULL)
7333 {
Bram Moolenaar7c626922005-02-07 22:01:03 +00007334 byte_count_cursor += line_count_info(s, &word_count_cursor,
7335 &char_count_cursor, len, eol_size);
Bram Moolenaardef9e822004-12-31 20:58:58 +00007336 if (lnum == curbuf->b_ml.ml_line_count
7337 && !curbuf->b_p_eol
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007338 && (curbuf->b_p_bin || !curbuf->b_p_fixeol)
Bram Moolenaarec2dad62005-01-02 11:36:03 +00007339 && (long)STRLEN(s) < len)
Bram Moolenaar7c626922005-02-07 22:01:03 +00007340 byte_count_cursor -= eol_size;
Bram Moolenaardef9e822004-12-31 20:58:58 +00007341 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007342 }
7343 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007344 {
7345 /* In non-visual mode, check for the line the cursor is on */
7346 if (lnum == curwin->w_cursor.lnum)
7347 {
7348 word_count_cursor += word_count;
Bram Moolenaar7c626922005-02-07 22:01:03 +00007349 char_count_cursor += char_count;
7350 byte_count_cursor = byte_count +
7351 line_count_info(ml_get(lnum),
7352 &word_count_cursor, &char_count_cursor,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007353 (varnumber_T)(curwin->w_cursor.col + 1),
7354 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007355 }
7356 }
7357 /* Add to the running totals */
Bram Moolenaar7c626922005-02-07 22:01:03 +00007358 byte_count += line_count_info(ml_get(lnum), &word_count,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007359 &char_count, (varnumber_T)MAXCOL,
7360 eol_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007361 }
7362
7363 /* Correction for when last line doesn't have an EOL. */
Bram Moolenaar34d72d42015-07-17 14:18:08 +02007364 if (!curbuf->b_p_eol && (curbuf->b_p_bin || !curbuf->b_p_fixeol))
Bram Moolenaar7c626922005-02-07 22:01:03 +00007365 byte_count -= eol_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007366
Bram Moolenaared767a22016-01-03 22:49:16 +01007367 if (dict == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007368 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007369 if (VIsual_active)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007370 {
Bram Moolenaared767a22016-01-03 22:49:16 +01007371 if (VIsual_mode == Ctrl_V && curwin->w_curswant < MAXCOL)
7372 {
7373 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
7374 &max_pos.col);
7375 vim_snprintf((char *)buf1, sizeof(buf1), _("%ld Cols; "),
7376 (long)(oparg.end_vcol - oparg.start_vcol + 1));
7377 }
7378 else
7379 buf1[0] = NUL;
7380
7381 if (char_count_cursor == byte_count_cursor
7382 && char_count == byte_count)
7383 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007384 _("Selected %s%ld of %ld Lines; %lld of %lld Words; %lld of %lld Bytes"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007385 buf1, line_count_selected,
7386 (long)curbuf->b_ml.ml_line_count,
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01007387 (long_long_T)word_count_cursor,
7388 (long_long_T)word_count,
7389 (long_long_T)byte_count_cursor,
7390 (long_long_T)byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007391 else
7392 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007393 _("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 +01007394 buf1, line_count_selected,
7395 (long)curbuf->b_ml.ml_line_count,
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01007396 (long_long_T)word_count_cursor,
7397 (long_long_T)word_count,
7398 (long_long_T)char_count_cursor,
7399 (long_long_T)char_count,
7400 (long_long_T)byte_count_cursor,
7401 (long_long_T)byte_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402 }
7403 else
Bram Moolenaared767a22016-01-03 22:49:16 +01007404 {
7405 p = ml_get_curline();
7406 validate_virtcol();
7407 col_print(buf1, sizeof(buf1), (int)curwin->w_cursor.col + 1,
7408 (int)curwin->w_virtcol + 1);
7409 col_print(buf2, sizeof(buf2), (int)STRLEN(p),
7410 linetabsize(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007411
Bram Moolenaared767a22016-01-03 22:49:16 +01007412 if (char_count_cursor == byte_count_cursor
7413 && char_count == byte_count)
7414 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007415 _("Col %s of %s; Line %ld of %ld; Word %lld of %lld; Byte %lld of %lld"),
Bram Moolenaared767a22016-01-03 22:49:16 +01007416 (char *)buf1, (char *)buf2,
7417 (long)curwin->w_cursor.lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007418 (long)curbuf->b_ml.ml_line_count,
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01007419 (long_long_T)word_count_cursor, (long_long_T)word_count,
7420 (long_long_T)byte_count_cursor, (long_long_T)byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007421 else
7422 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02007423 _("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 +01007424 (char *)buf1, (char *)buf2,
7425 (long)curwin->w_cursor.lnum,
Bram Moolenaar7c626922005-02-07 22:01:03 +00007426 (long)curbuf->b_ml.ml_line_count,
Bram Moolenaar88c86eb2019-01-17 17:13:30 +01007427 (long_long_T)word_count_cursor, (long_long_T)word_count,
7428 (long_long_T)char_count_cursor, (long_long_T)char_count,
7429 (long_long_T)byte_count_cursor, (long_long_T)byte_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007430 }
7431 }
7432
Bram Moolenaared767a22016-01-03 22:49:16 +01007433 bom_count = bomb_size();
7434 if (bom_count > 0)
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007435 vim_snprintf((char *)IObuff + STRLEN(IObuff), IOSIZE,
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01007436 _("(+%lld for BOM)"), (long_long_T)bom_count);
Bram Moolenaared767a22016-01-03 22:49:16 +01007437 if (dict == NULL)
7438 {
Bram Moolenaarc71982b2016-01-04 21:43:08 +01007439 /* Don't shorten this message, the user asked for it. */
Bram Moolenaared767a22016-01-03 22:49:16 +01007440 p = p_shm;
7441 p_shm = (char_u *)"";
Bram Moolenaar32526b32019-01-19 17:43:09 +01007442 msg((char *)IObuff);
Bram Moolenaared767a22016-01-03 22:49:16 +01007443 p_shm = p;
7444 }
7445 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007446#if defined(FEAT_EVAL)
Bram Moolenaared767a22016-01-03 22:49:16 +01007447 if (dict != NULL)
7448 {
Bram Moolenaare0be1672018-07-08 16:50:37 +02007449 dict_add_number(dict, "words", word_count);
7450 dict_add_number(dict, "chars", char_count);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01007451 dict_add_number(dict, "bytes", byte_count + bom_count);
Bram Moolenaare0be1672018-07-08 16:50:37 +02007452 dict_add_number(dict, VIsual_active ? "visual_bytes" : "cursor_bytes",
7453 byte_count_cursor);
7454 dict_add_number(dict, VIsual_active ? "visual_chars" : "cursor_chars",
7455 char_count_cursor);
7456 dict_add_number(dict, VIsual_active ? "visual_words" : "cursor_words",
7457 word_count_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007458 }
Bram Moolenaar718272a2016-01-03 22:56:45 +01007459#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007460}