7
|
1 /* vi:set ts=8 sts=4 sw=4:
|
|
2 *
|
|
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 /*
|
|
53 * Each yank register is an array of pointers to lines.
|
|
54 */
|
|
55 static struct yankreg
|
|
56 {
|
|
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 */
|
|
60 #ifdef FEAT_VISUAL
|
|
61 colnr_T y_width; /* only set if y_type == MBLOCK */
|
|
62 #endif
|
|
63 } y_regs[NUM_REGISTERS];
|
|
64
|
|
65 static struct yankreg *y_current; /* ptr to current yankreg */
|
|
66 static int y_append; /* TRUE when appending */
|
|
67 static struct yankreg *y_previous = NULL; /* ptr to last written yankreg */
|
|
68
|
|
69 /*
|
|
70 * structure used by block_prep, op_delete and op_yank for blockwise operators
|
|
71 * also op_change, op_shift, op_insert, op_replace - AKelly
|
|
72 */
|
|
73 struct block_def
|
|
74 {
|
|
75 int startspaces; /* 'extra' cols of first char */
|
|
76 int endspaces; /* 'extra' cols of first char */
|
|
77 int textlen; /* chars in block */
|
|
78 char_u *textstart; /* pointer to 1st char in block */
|
|
79 colnr_T textcol; /* cols of chars (at least part.) in block */
|
|
80 colnr_T start_vcol; /* start col of 1st char wholly inside block */
|
|
81 colnr_T end_vcol; /* start col of 1st char wholly after block */
|
|
82 #ifdef FEAT_VISUALEXTRA
|
|
83 int is_short; /* TRUE if line is too short to fit in block */
|
|
84 int is_MAX; /* TRUE if curswant==MAXCOL when starting */
|
|
85 int is_oneChar; /* TRUE if block within one character */
|
|
86 int pre_whitesp; /* screen cols of ws before block */
|
|
87 int pre_whitesp_c; /* chars of ws before block */
|
|
88 colnr_T end_char_vcols; /* number of vcols of post-block char */
|
|
89 #endif
|
|
90 colnr_T start_char_vcols; /* number of vcols of pre-block char */
|
|
91 };
|
|
92
|
|
93 #ifdef FEAT_VISUALEXTRA
|
|
94 static void shift_block __ARGS((oparg_T *oap, int amount));
|
|
95 static void block_insert __ARGS((oparg_T *oap, char_u *s, int b_insert, struct block_def*bdp));
|
|
96 #endif
|
|
97 static int stuff_yank __ARGS((int, char_u *));
|
|
98 static void put_reedit_in_typebuf __ARGS((void));
|
|
99 static int put_in_typebuf __ARGS((char_u *s, int colon));
|
|
100 static void stuffescaped __ARGS((char_u *arg, int literally));
|
|
101 #ifdef FEAT_MBYTE
|
|
102 static void mb_adjust_opend __ARGS((oparg_T *oap));
|
|
103 #endif
|
|
104 static void free_yank __ARGS((long));
|
|
105 static void free_yank_all __ARGS((void));
|
|
106 static int yank_copy_line __ARGS((struct block_def *bd, long y_idx));
|
|
107 #ifdef FEAT_CLIPBOARD
|
|
108 static void copy_yank_reg __ARGS((struct yankreg *reg));
|
|
109 # if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
|
|
110 static void may_set_selection __ARGS((void));
|
|
111 # endif
|
|
112 #endif
|
|
113 static void dis_msg __ARGS((char_u *p, int skip_esc));
|
|
114 #ifdef FEAT_VISUAL
|
|
115 static void block_prep __ARGS((oparg_T *oap, struct block_def *, linenr_T, int));
|
|
116 #endif
|
|
117 #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
|
|
118 static void str_to_reg __ARGS((struct yankreg *y_ptr, int type, char_u *str, long len, long blocklen));
|
|
119 #endif
|
|
120 static int ends_in_white __ARGS((linenr_T lnum));
|
|
121 #ifdef FEAT_COMMENTS
|
|
122 static int same_leader __ARGS((linenr_T lnum, int, char_u *, int, char_u *));
|
|
123 static int fmt_check_par __ARGS((linenr_T, int *, char_u **, int do_comments));
|
|
124 #else
|
|
125 static int fmt_check_par __ARGS((linenr_T));
|
|
126 #endif
|
|
127
|
|
128 /*
|
|
129 * The names of operators.
|
|
130 * IMPORTANT: Index must correspond with defines in vim.h!!!
|
|
131 * The third field indicates whether the operator always works on lines.
|
|
132 */
|
|
133 static char opchars[][3] =
|
|
134 {
|
|
135 {NUL, NUL, FALSE}, /* OP_NOP */
|
|
136 {'d', NUL, FALSE}, /* OP_DELETE */
|
|
137 {'y', NUL, FALSE}, /* OP_YANK */
|
|
138 {'c', NUL, FALSE}, /* OP_CHANGE */
|
|
139 {'<', NUL, TRUE}, /* OP_LSHIFT */
|
|
140 {'>', NUL, TRUE}, /* OP_RSHIFT */
|
|
141 {'!', NUL, TRUE}, /* OP_FILTER */
|
|
142 {'g', '~', FALSE}, /* OP_TILDE */
|
|
143 {'=', NUL, TRUE}, /* OP_INDENT */
|
|
144 {'g', 'q', TRUE}, /* OP_FORMAT */
|
|
145 {':', NUL, TRUE}, /* OP_COLON */
|
|
146 {'g', 'U', FALSE}, /* OP_UPPER */
|
|
147 {'g', 'u', FALSE}, /* OP_LOWER */
|
|
148 {'J', NUL, TRUE}, /* DO_JOIN */
|
|
149 {'g', 'J', TRUE}, /* DO_JOIN_NS */
|
|
150 {'g', '?', FALSE}, /* OP_ROT13 */
|
|
151 {'r', NUL, FALSE}, /* OP_REPLACE */
|
|
152 {'I', NUL, FALSE}, /* OP_INSERT */
|
|
153 {'A', NUL, FALSE}, /* OP_APPEND */
|
|
154 {'z', 'f', TRUE}, /* OP_FOLD */
|
|
155 {'z', 'o', TRUE}, /* OP_FOLDOPEN */
|
|
156 {'z', 'O', TRUE}, /* OP_FOLDOPENREC */
|
|
157 {'z', 'c', TRUE}, /* OP_FOLDCLOSE */
|
|
158 {'z', 'C', TRUE}, /* OP_FOLDCLOSEREC */
|
|
159 {'z', 'd', TRUE}, /* OP_FOLDDEL */
|
|
160 {'z', 'D', TRUE}, /* OP_FOLDDELREC */
|
|
161 {'g', 'w', TRUE}, /* OP_FORMAT2 */
|
|
162 };
|
|
163
|
|
164 /*
|
|
165 * Translate a command name into an operator type.
|
|
166 * Must only be called with a valid operator name!
|
|
167 */
|
|
168 int
|
|
169 get_op_type(char1, char2)
|
|
170 int char1;
|
|
171 int char2;
|
|
172 {
|
|
173 int i;
|
|
174
|
|
175 if (char1 == 'r') /* ignore second character */
|
|
176 return OP_REPLACE;
|
|
177 if (char1 == '~') /* when tilde is an operator */
|
|
178 return OP_TILDE;
|
|
179 for (i = 0; ; ++i)
|
|
180 if (opchars[i][0] == char1 && opchars[i][1] == char2)
|
|
181 break;
|
|
182 return i;
|
|
183 }
|
|
184
|
|
185 #if defined(FEAT_VISUAL) || defined(PROTO)
|
|
186 /*
|
|
187 * Return TRUE if operator "op" always works on whole lines.
|
|
188 */
|
|
189 int
|
|
190 op_on_lines(op)
|
|
191 int op;
|
|
192 {
|
|
193 return opchars[op][2];
|
|
194 }
|
|
195 #endif
|
|
196
|
|
197 /*
|
|
198 * Get first operator command character.
|
|
199 * Returns 'g' or 'z' if there is another command character.
|
|
200 */
|
|
201 int
|
|
202 get_op_char(optype)
|
|
203 int optype;
|
|
204 {
|
|
205 return opchars[optype][0];
|
|
206 }
|
|
207
|
|
208 /*
|
|
209 * Get second operator command character.
|
|
210 */
|
|
211 int
|
|
212 get_extra_op_char(optype)
|
|
213 int optype;
|
|
214 {
|
|
215 return opchars[optype][1];
|
|
216 }
|
|
217
|
|
218 /*
|
|
219 * op_shift - handle a shift operation
|
|
220 */
|
|
221 void
|
|
222 op_shift(oap, curs_top, amount)
|
|
223 oparg_T *oap;
|
|
224 int curs_top;
|
|
225 int amount;
|
|
226 {
|
|
227 long i;
|
|
228 int first_char;
|
|
229 char_u *s;
|
|
230 #ifdef FEAT_VISUAL
|
|
231 int block_col = 0;
|
|
232 #endif
|
|
233
|
|
234 if (u_save((linenr_T)(oap->start.lnum - 1),
|
|
235 (linenr_T)(oap->end.lnum + 1)) == FAIL)
|
|
236 return;
|
|
237
|
|
238 #ifdef FEAT_VISUAL
|
|
239 if (oap->block_mode)
|
|
240 block_col = curwin->w_cursor.col;
|
|
241 #endif
|
|
242
|
|
243 for (i = oap->line_count; --i >= 0; )
|
|
244 {
|
|
245 first_char = *ml_get_curline();
|
|
246 if (first_char == NUL) /* empty line */
|
|
247 curwin->w_cursor.col = 0;
|
|
248 #ifdef FEAT_VISUALEXTRA
|
|
249 else if (oap->block_mode)
|
|
250 shift_block(oap, amount);
|
|
251 #endif
|
|
252 else
|
|
253 /* Move the line right if it doesn't start with '#', 'smartindent'
|
|
254 * isn't set or 'cindent' isn't set or '#' isn't in 'cino'. */
|
|
255 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
|
|
256 if (first_char != '#' || !preprocs_left())
|
|
257 #endif
|
|
258 {
|
|
259 shift_line(oap->op_type == OP_LSHIFT, p_sr, amount);
|
|
260 }
|
|
261 ++curwin->w_cursor.lnum;
|
|
262 }
|
|
263
|
|
264 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
|
|
265
|
|
266 #ifdef FEAT_VISUAL
|
|
267 if (oap->block_mode)
|
|
268 {
|
|
269 curwin->w_cursor.lnum = oap->start.lnum;
|
|
270 curwin->w_cursor.col = block_col;
|
|
271 }
|
|
272 else
|
|
273 #endif
|
|
274 if (curs_top) /* put cursor on first line, for ">>" */
|
|
275 {
|
|
276 curwin->w_cursor.lnum = oap->start.lnum;
|
|
277 beginline(BL_SOL | BL_FIX); /* shift_line() may have set cursor.col */
|
|
278 }
|
|
279 else
|
|
280 --curwin->w_cursor.lnum; /* put cursor on last line, for ":>" */
|
|
281
|
|
282 if (oap->line_count > p_report)
|
|
283 {
|
|
284 if (oap->op_type == OP_RSHIFT)
|
|
285 s = (char_u *)">";
|
|
286 else
|
|
287 s = (char_u *)"<";
|
|
288 if (oap->line_count == 1)
|
|
289 {
|
|
290 if (amount == 1)
|
|
291 sprintf((char *)IObuff, _("1 line %sed 1 time"), s);
|
|
292 else
|
|
293 sprintf((char *)IObuff, _("1 line %sed %d times"), s, amount);
|
|
294 }
|
|
295 else
|
|
296 {
|
|
297 if (amount == 1)
|
|
298 sprintf((char *)IObuff, _("%ld lines %sed 1 time"),
|
|
299 oap->line_count, s);
|
|
300 else
|
|
301 sprintf((char *)IObuff, _("%ld lines %sed %d times"),
|
|
302 oap->line_count, s, amount);
|
|
303 }
|
|
304 msg(IObuff);
|
|
305 }
|
|
306
|
|
307 /*
|
|
308 * Set "'[" and "']" marks.
|
|
309 */
|
|
310 curbuf->b_op_start = oap->start;
|
|
311 curbuf->b_op_end.lnum = oap->end.lnum;
|
|
312 curbuf->b_op_end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
|
|
313 if (curbuf->b_op_end.col > 0)
|
|
314 --curbuf->b_op_end.col;
|
|
315 }
|
|
316
|
|
317 /*
|
|
318 * shift the current line one shiftwidth left (if left != 0) or right
|
|
319 * leaves cursor on first blank in the line
|
|
320 */
|
|
321 void
|
|
322 shift_line(left, round, amount)
|
|
323 int left;
|
|
324 int round;
|
|
325 int amount;
|
|
326 {
|
|
327 int count;
|
|
328 int i, j;
|
|
329 int p_sw = (int)curbuf->b_p_sw;
|
|
330
|
|
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 */
|
|
362 #ifdef FEAT_VREPLACE
|
|
363 if (State & VREPLACE_FLAG)
|
|
364 change_indent(INDENT_SET, count, FALSE, NUL);
|
|
365 else
|
|
366 #endif
|
|
367 (void)set_indent(count, SIN_CHANGED);
|
|
368 }
|
|
369
|
|
370 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
|
|
371 /*
|
|
372 * Shift one line of the current block one shiftwidth right or left.
|
|
373 * Leaves cursor on first character in block.
|
|
374 */
|
|
375 static void
|
|
376 shift_block(oap, amount)
|
|
377 oparg_T *oap;
|
|
378 int amount;
|
|
379 {
|
|
380 int left = (oap->op_type == OP_LSHIFT);
|
|
381 int oldstate = State;
|
|
382 int total, split;
|
|
383 char_u *newp, *oldp, *midp, *ptr;
|
|
384 int oldcol = curwin->w_cursor.col;
|
|
385 int p_sw = (int)curbuf->b_p_sw;
|
|
386 int p_ts = (int)curbuf->b_p_ts;
|
|
387 struct block_def bd;
|
|
388 int internal = 0;
|
|
389 int incr;
|
|
390 colnr_T vcol, col = 0, ws_vcol;
|
|
391 int i = 0, j = 0;
|
|
392 int len;
|
|
393
|
|
394 #ifdef FEAT_RIGHTLEFT
|
|
395 int old_p_ri = p_ri;
|
|
396
|
|
397 p_ri = 0; /* don't want revins in ident */
|
|
398 #endif
|
|
399
|
|
400 State = INSERT; /* don't want REPLACE for State */
|
|
401 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
|
|
402 if (bd.is_short)
|
|
403 return;
|
|
404
|
|
405 /* total is number of screen columns to be inserted/removed */
|
|
406 total = amount * p_sw;
|
|
407 oldp = ml_get_curline();
|
|
408
|
|
409 if (!left)
|
|
410 {
|
|
411 /*
|
|
412 * 1. Get start vcol
|
|
413 * 2. Total ws vcols
|
|
414 * 3. Divvy into TABs & spp
|
|
415 * 4. Construct new string
|
|
416 */
|
|
417 total += bd.pre_whitesp; /* all virtual WS upto & incl a split TAB */
|
|
418 ws_vcol = bd.start_vcol - bd.pre_whitesp;
|
|
419 if (bd.startspaces)
|
|
420 {
|
|
421 #ifdef FEAT_MBYTE
|
|
422 if (has_mbyte)
|
|
423 bd.textstart += (*mb_ptr2len_check)(bd.textstart);
|
|
424 #endif
|
|
425 ++bd.textstart;
|
|
426 }
|
|
427 for ( ; vim_iswhite(*bd.textstart); )
|
|
428 {
|
|
429 incr = lbr_chartabsize_adv(&bd.textstart, (colnr_T)(bd.start_vcol));
|
|
430 total += incr;
|
|
431 bd.start_vcol += incr;
|
|
432 }
|
|
433 /* OK, now total=all the VWS reqd, and textstart points at the 1st
|
|
434 * non-ws char in the block. */
|
|
435 if (!curbuf->b_p_et)
|
|
436 i = ((ws_vcol % p_ts) + total) / p_ts; /* number of tabs */
|
|
437 if (i)
|
|
438 j = ((ws_vcol % p_ts) + total) % p_ts; /* number of spp */
|
|
439 else
|
|
440 j = total;
|
|
441 /* if we're splitting a TAB, allow for it */
|
|
442 bd.textcol -= bd.pre_whitesp_c - (bd.startspaces != 0);
|
|
443 len = (int)STRLEN(bd.textstart) + 1;
|
|
444 newp = alloc_check((unsigned)(bd.textcol + i + j + len));
|
|
445 if (newp == NULL)
|
|
446 return;
|
|
447 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + len));
|
|
448 mch_memmove(newp, oldp, (size_t)bd.textcol);
|
|
449 copy_chars(newp + bd.textcol, (size_t)i, TAB);
|
|
450 copy_spaces(newp + bd.textcol + i, (size_t)j);
|
|
451 /* the end */
|
|
452 mch_memmove(newp + bd.textcol + i + j, bd.textstart, (size_t)len);
|
|
453 }
|
|
454 else /* left */
|
|
455 {
|
|
456 vcol = oap->start_vcol;
|
|
457 /* walk vcol past ws to be removed */
|
|
458 for (midp = oldp + bd.textcol;
|
|
459 vcol < (oap->start_vcol + total) && vim_iswhite(*midp); )
|
|
460 {
|
|
461 incr = lbr_chartabsize_adv(&midp, (colnr_T)vcol);
|
|
462 vcol += incr;
|
|
463 }
|
|
464 /* internal is the block-internal ws replacing a split TAB */
|
|
465 if (vcol > (oap->start_vcol + total))
|
|
466 {
|
|
467 /* we have to split the TAB *(midp-1) */
|
|
468 internal = vcol - (oap->start_vcol + total);
|
|
469 }
|
|
470 /* if 'expandtab' is not set, use TABs */
|
|
471
|
|
472 split = bd.startspaces + internal;
|
|
473 if (split > 0)
|
|
474 {
|
|
475 if (!curbuf->b_p_et)
|
|
476 {
|
|
477 for (ptr = oldp, col = 0; ptr < oldp+bd.textcol; )
|
|
478 col += lbr_chartabsize_adv(&ptr, (colnr_T)col);
|
|
479
|
|
480 /* col+1 now equals the start col of the first char of the
|
|
481 * block (may be < oap.start_vcol if we're splitting a TAB) */
|
|
482 i = ((col % p_ts) + split) / p_ts; /* number of tabs */
|
|
483 }
|
|
484 if (i)
|
|
485 j = ((col % p_ts) + split) % p_ts; /* number of spp */
|
|
486 else
|
|
487 j = split;
|
|
488 }
|
|
489
|
|
490 newp = alloc_check(bd.textcol + i + j + (unsigned)STRLEN(midp) + 1);
|
|
491 if (newp == NULL)
|
|
492 return;
|
|
493 vim_memset(newp, NUL, (size_t)(bd.textcol + i + j + STRLEN(midp) + 1));
|
|
494
|
|
495 /* copy first part we want to keep */
|
|
496 mch_memmove(newp, oldp, (size_t)bd.textcol);
|
|
497 /* Now copy any TABS and spp to ensure correct alignment! */
|
|
498 while (vim_iswhite(*midp))
|
|
499 {
|
|
500 if (*midp == TAB)
|
|
501 i++;
|
|
502 else /*space */
|
|
503 j++;
|
|
504 midp++;
|
|
505 }
|
|
506 /* We might have an extra TAB worth of spp now! */
|
|
507 if (j / p_ts && !curbuf->b_p_et)
|
|
508 {
|
|
509 i++;
|
|
510 j -= p_ts;
|
|
511 }
|
|
512 copy_chars(newp + bd.textcol, (size_t)i, TAB);
|
|
513 copy_spaces(newp + bd.textcol + i, (size_t)j);
|
|
514
|
|
515 /* the end */
|
|
516 mch_memmove(newp + STRLEN(newp), midp, (size_t)STRLEN(midp) + 1);
|
|
517 }
|
|
518 /* replace the line */
|
|
519 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
|
|
520 changed_bytes(curwin->w_cursor.lnum, (colnr_T)bd.textcol);
|
|
521 State = oldstate;
|
|
522 curwin->w_cursor.col = oldcol;
|
|
523 #ifdef FEAT_RIGHTLEFT
|
|
524 p_ri = old_p_ri;
|
|
525 #endif
|
|
526 }
|
|
527 #endif
|
|
528
|
|
529 #ifdef FEAT_VISUALEXTRA
|
|
530 /*
|
|
531 * Insert string "s" (b_insert ? before : after) block :AKelly
|
|
532 * Caller must prepare for undo.
|
|
533 */
|
|
534 static void
|
|
535 block_insert(oap, s, b_insert, bdp)
|
|
536 oparg_T *oap;
|
|
537 char_u *s;
|
|
538 int b_insert;
|
|
539 struct block_def *bdp;
|
|
540 {
|
|
541 int p_ts;
|
|
542 int count = 0; /* extra spaces to replace a cut TAB */
|
|
543 int spaces = 0; /* non-zero if cutting a TAB */
|
|
544 colnr_T offset; /* pointer along new line */
|
|
545 unsigned s_len; /* STRLEN(s) */
|
|
546 char_u *newp, *oldp; /* new, old lines */
|
|
547 linenr_T lnum; /* loop var */
|
|
548 int oldstate = State;
|
|
549
|
|
550 State = INSERT; /* don't want REPLACE for State */
|
|
551 s_len = (unsigned)STRLEN(s);
|
|
552
|
|
553 for (lnum = oap->start.lnum + 1; lnum <= oap->end.lnum; lnum++)
|
|
554 {
|
|
555 block_prep(oap, bdp, lnum, TRUE);
|
|
556 if (bdp->is_short && b_insert)
|
|
557 continue; /* OP_INSERT, line ends before block start */
|
|
558
|
|
559 oldp = ml_get(lnum);
|
|
560
|
|
561 if (b_insert)
|
|
562 {
|
|
563 p_ts = bdp->start_char_vcols;
|
|
564 spaces = bdp->startspaces;
|
|
565 if (spaces != 0)
|
|
566 count = p_ts - 1; /* we're cutting a TAB */
|
|
567 offset = bdp->textcol;
|
|
568 }
|
|
569 else /* append */
|
|
570 {
|
|
571 p_ts = bdp->end_char_vcols;
|
|
572 if (!bdp->is_short) /* spaces = padding after block */
|
|
573 {
|
|
574 spaces = (bdp->endspaces ? p_ts - bdp->endspaces : 0);
|
|
575 if (spaces != 0)
|
|
576 count = p_ts - 1; /* we're cutting a TAB */
|
|
577 offset = bdp->textcol + bdp->textlen - (spaces != 0);
|
|
578 }
|
|
579 else /* spaces = padding to block edge */
|
|
580 {
|
|
581 /* if $ used, just append to EOL (ie spaces==0) */
|
|
582 if (!bdp->is_MAX)
|
|
583 spaces = (oap->end_vcol - bdp->end_vcol) + 1;
|
|
584 count = spaces;
|
|
585 offset = bdp->textcol + bdp->textlen;
|
|
586 }
|
|
587 }
|
|
588
|
|
589 newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
|
|
590 if (newp == NULL)
|
|
591 continue;
|
|
592
|
|
593 /* copy up to shifted part */
|
|
594 mch_memmove(newp, oldp, (size_t)(offset));
|
|
595 oldp += offset;
|
|
596
|
|
597 /* insert pre-padding */
|
|
598 copy_spaces(newp + offset, (size_t)spaces);
|
|
599
|
|
600 /* copy the new text */
|
|
601 mch_memmove(newp + offset + spaces, s, (size_t)s_len);
|
|
602 offset += s_len;
|
|
603
|
|
604 if (spaces && !bdp->is_short)
|
|
605 {
|
|
606 /* insert post-padding */
|
|
607 copy_spaces(newp + offset + spaces, (size_t)(p_ts - spaces));
|
|
608 /* We're splitting a TAB, don't copy it. */
|
|
609 oldp++;
|
|
610 /* We allowed for that TAB, remember this now */
|
|
611 count++;
|
|
612 }
|
|
613
|
|
614 if (spaces > 0)
|
|
615 offset += count;
|
|
616 mch_memmove(newp + offset, oldp, (size_t)(STRLEN(oldp) + 1));
|
|
617
|
|
618 ml_replace(lnum, newp, FALSE);
|
|
619
|
|
620 if (lnum == oap->end.lnum)
|
|
621 {
|
|
622 /* Set "']" mark to the end of the block instead of the end of
|
|
623 * the insert in the first line. */
|
|
624 curbuf->b_op_end.lnum = oap->end.lnum;
|
|
625 curbuf->b_op_end.col = offset;
|
|
626 }
|
|
627 } /* for all lnum */
|
|
628
|
|
629 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
|
|
630
|
|
631 State = oldstate;
|
|
632 }
|
|
633 #endif
|
|
634
|
|
635 #if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(PROTO)
|
|
636 /*
|
|
637 * op_reindent - handle reindenting a block of lines.
|
|
638 */
|
|
639 void
|
|
640 op_reindent(oap, how)
|
|
641 oparg_T *oap;
|
|
642 int (*how) __ARGS((void));
|
|
643 {
|
|
644 long i;
|
|
645 char_u *l;
|
|
646 int count;
|
|
647 linenr_T first_changed = 0;
|
|
648 linenr_T last_changed = 0;
|
|
649 linenr_T start_lnum = curwin->w_cursor.lnum;
|
|
650
|
216
|
651 /* Don't even try when 'modifiable' is off. */
|
|
652 if (!curbuf->b_p_ma)
|
|
653 {
|
|
654 EMSG(_(e_modifiable));
|
|
655 return;
|
|
656 }
|
|
657
|
7
|
658 for (i = oap->line_count; --i >= 0 && !got_int; )
|
|
659 {
|
|
660 /* it's a slow thing to do, so give feedback so there's no worry that
|
|
661 * the computer's just hung. */
|
|
662
|
|
663 if (i > 1
|
|
664 && (i % 50 == 0 || i == oap->line_count - 1)
|
|
665 && oap->line_count > p_report)
|
|
666 smsg((char_u *)_("%ld lines to indent... "), i);
|
|
667
|
|
668 /*
|
|
669 * Be vi-compatible: For lisp indenting the first line is not
|
|
670 * indented, unless there is only one line.
|
|
671 */
|
|
672 #ifdef FEAT_LISP
|
|
673 if (i != oap->line_count - 1 || oap->line_count == 1
|
|
674 || how != get_lisp_indent)
|
|
675 #endif
|
|
676 {
|
|
677 l = skipwhite(ml_get_curline());
|
|
678 if (*l == NUL) /* empty or blank line */
|
|
679 count = 0;
|
|
680 else
|
|
681 count = how(); /* get the indent for this line */
|
|
682
|
|
683 if (set_indent(count, SIN_UNDO))
|
|
684 {
|
|
685 /* did change the indent, call changed_lines() later */
|
|
686 if (first_changed == 0)
|
|
687 first_changed = curwin->w_cursor.lnum;
|
|
688 last_changed = curwin->w_cursor.lnum;
|
|
689 }
|
|
690 }
|
|
691 ++curwin->w_cursor.lnum;
|
|
692 }
|
|
693
|
|
694 /* put cursor on first non-blank of indented line */
|
|
695 curwin->w_cursor.lnum = start_lnum;
|
|
696 beginline(BL_SOL | BL_FIX);
|
|
697
|
|
698 /* Mark changed lines so that they will be redrawn. When Visual
|
|
699 * highlighting was present, need to continue until the last line. When
|
|
700 * there is no change still need to remove the Visual highlighting. */
|
|
701 if (last_changed != 0)
|
|
702 changed_lines(first_changed, 0,
|
|
703 #ifdef FEAT_VISUAL
|
|
704 oap->is_VIsual ? start_lnum + oap->line_count :
|
|
705 #endif
|
|
706 last_changed + 1, 0L);
|
|
707 #ifdef FEAT_VISUAL
|
|
708 else if (oap->is_VIsual)
|
|
709 redraw_curbuf_later(INVERTED);
|
|
710 #endif
|
|
711
|
|
712 if (oap->line_count > p_report)
|
|
713 {
|
|
714 i = oap->line_count - (i + 1);
|
|
715 if (i == 1)
|
|
716 MSG(_("1 line indented "));
|
|
717 else
|
|
718 smsg((char_u *)_("%ld lines indented "), i);
|
|
719 }
|
|
720 /* set '[ and '] marks */
|
|
721 curbuf->b_op_start = oap->start;
|
|
722 curbuf->b_op_end = oap->end;
|
|
723 }
|
|
724 #endif /* defined(FEAT_LISP) || defined(FEAT_CINDENT) */
|
|
725
|
|
726 #if defined(FEAT_EVAL) || defined(PROTO)
|
|
727 /*
|
|
728 * Keep the last expression line here, for repeating.
|
|
729 */
|
|
730 static char_u *expr_line = NULL;
|
|
731
|
|
732 /*
|
|
733 * Get an expression for the "\"=expr1" or "CTRL-R =expr1"
|
|
734 * Returns '=' when OK, NUL otherwise.
|
|
735 */
|
|
736 int
|
|
737 get_expr_register()
|
|
738 {
|
|
739 char_u *new_line;
|
|
740
|
|
741 new_line = getcmdline('=', 0L, 0);
|
|
742 if (new_line == NULL)
|
|
743 return NUL;
|
|
744 if (*new_line == NUL) /* use previous line */
|
|
745 vim_free(new_line);
|
|
746 else
|
|
747 set_expr_line(new_line);
|
|
748 return '=';
|
|
749 }
|
|
750
|
|
751 /*
|
|
752 * Set the expression for the '=' register.
|
|
753 * Argument must be an allocated string.
|
|
754 */
|
|
755 void
|
|
756 set_expr_line(new_line)
|
|
757 char_u *new_line;
|
|
758 {
|
|
759 vim_free(expr_line);
|
|
760 expr_line = new_line;
|
|
761 }
|
|
762
|
|
763 /*
|
|
764 * Get the result of the '=' register expression.
|
|
765 * Returns a pointer to allocated memory, or NULL for failure.
|
|
766 */
|
|
767 char_u *
|
|
768 get_expr_line()
|
|
769 {
|
|
770 char_u *expr_copy;
|
|
771 char_u *rv;
|
|
772
|
|
773 if (expr_line == NULL)
|
|
774 return NULL;
|
|
775
|
|
776 /* Make a copy of the expression, because evaluating it may cause it to be
|
|
777 * changed. */
|
|
778 expr_copy = vim_strsave(expr_line);
|
|
779 if (expr_copy == NULL)
|
|
780 return NULL;
|
|
781
|
|
782 rv = eval_to_string(expr_copy, NULL);
|
|
783 vim_free(expr_copy);
|
|
784 return rv;
|
|
785 }
|
|
786 #endif /* FEAT_EVAL */
|
|
787
|
|
788 /*
|
|
789 * Check if 'regname' is a valid name of a yank register.
|
|
790 * Note: There is no check for 0 (default register), caller should do this
|
|
791 */
|
|
792 int
|
|
793 valid_yank_reg(regname, writing)
|
|
794 int regname;
|
|
795 int writing; /* if TRUE check for writable registers */
|
|
796 {
|
|
797 if ( (regname > 0 && ASCII_ISALNUM(regname))
|
|
798 || (!writing && vim_strchr((char_u *)
|
|
799 #ifdef FEAT_EVAL
|
|
800 "/.%#:="
|
|
801 #else
|
|
802 "/.%#:"
|
|
803 #endif
|
|
804 , regname) != NULL)
|
|
805 || regname == '"'
|
|
806 || regname == '-'
|
|
807 || regname == '_'
|
|
808 #ifdef FEAT_CLIPBOARD
|
|
809 || regname == '*'
|
|
810 || regname == '+'
|
|
811 #endif
|
|
812 #ifdef FEAT_DND
|
|
813 || (!writing && regname == '~')
|
|
814 #endif
|
|
815 )
|
|
816 return TRUE;
|
|
817 return FALSE;
|
|
818 }
|
|
819
|
|
820 /*
|
|
821 * Set y_current and y_append, according to the value of "regname".
|
|
822 * Cannot handle the '_' register.
|
140
|
823 * Must only be called with a valid register name!
|
7
|
824 *
|
|
825 * If regname is 0 and writing, use register 0
|
|
826 * If regname is 0 and reading, use previous register
|
|
827 */
|
15
|
828 void
|
7
|
829 get_yank_register(regname, writing)
|
|
830 int regname;
|
|
831 int writing;
|
|
832 {
|
|
833 int i;
|
|
834
|
|
835 y_append = FALSE;
|
|
836 if ((regname == 0 || regname == '"') && !writing && y_previous != NULL)
|
|
837 {
|
|
838 y_current = y_previous;
|
|
839 return;
|
|
840 }
|
|
841 i = regname;
|
|
842 if (VIM_ISDIGIT(i))
|
|
843 i -= '0';
|
|
844 else if (ASCII_ISLOWER(i))
|
|
845 i = CharOrdLow(i) + 10;
|
|
846 else if (ASCII_ISUPPER(i))
|
|
847 {
|
|
848 i = CharOrdUp(i) + 10;
|
|
849 y_append = TRUE;
|
|
850 }
|
|
851 else if (regname == '-')
|
|
852 i = DELETION_REGISTER;
|
|
853 #ifdef FEAT_CLIPBOARD
|
|
854 /* When selection is not available, use register 0 instead of '*' */
|
|
855 else if (clip_star.available && regname == '*')
|
|
856 i = STAR_REGISTER;
|
|
857 /* When clipboard is not available, use register 0 instead of '+' */
|
|
858 else if (clip_plus.available && regname == '+')
|
|
859 i = PLUS_REGISTER;
|
|
860 #endif
|
|
861 #ifdef FEAT_DND
|
|
862 else if (!writing && regname == '~')
|
|
863 i = TILDE_REGISTER;
|
|
864 #endif
|
|
865 else /* not 0-9, a-z, A-Z or '-': use register 0 */
|
|
866 i = 0;
|
|
867 y_current = &(y_regs[i]);
|
|
868 if (writing) /* remember the register we write into for do_put() */
|
|
869 y_previous = y_current;
|
|
870 }
|
|
871
|
15
|
872 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
|
7
|
873 /*
|
|
874 * When "regname" is a clipboard register, obtain the selection. If it's not
|
|
875 * available return zero, otherwise return "regname".
|
|
876 */
|
15
|
877 int
|
7
|
878 may_get_selection(regname)
|
|
879 int regname;
|
|
880 {
|
|
881 if (regname == '*')
|
|
882 {
|
|
883 if (!clip_star.available)
|
|
884 regname = 0;
|
|
885 else
|
|
886 clip_get_selection(&clip_star);
|
|
887 }
|
|
888 else if (regname == '+')
|
|
889 {
|
|
890 if (!clip_plus.available)
|
|
891 regname = 0;
|
|
892 else
|
|
893 clip_get_selection(&clip_plus);
|
|
894 }
|
|
895 return regname;
|
|
896 }
|
|
897 #endif
|
|
898
|
|
899 #if defined(FEAT_VISUAL) || defined(PROTO)
|
|
900 /*
|
|
901 * Obtain the contents of a "normal" register. The register is made empty.
|
|
902 * The returned pointer has allocated memory, use put_register() later.
|
|
903 */
|
|
904 void *
|
|
905 get_register(name, copy)
|
|
906 int name;
|
|
907 int copy; /* make a copy, if FALSE make register empty. */
|
|
908 {
|
|
909 static struct yankreg *reg;
|
|
910 int i;
|
|
911
|
|
912 #ifdef FEAT_CLIPBOARD
|
|
913 /* When Visual area changed, may have to update selection. Obtain the
|
|
914 * selection too. */
|
|
915 if (name == '*' && clip_star.available && clip_isautosel())
|
|
916 {
|
|
917 clip_update_selection();
|
|
918 may_get_selection(name);
|
|
919 }
|
|
920 #endif
|
|
921
|
|
922 get_yank_register(name, 0);
|
|
923 reg = (struct yankreg *)alloc((unsigned)sizeof(struct yankreg));
|
|
924 if (reg != NULL)
|
|
925 {
|
|
926 *reg = *y_current;
|
|
927 if (copy)
|
|
928 {
|
|
929 /* If we run out of memory some or all of the lines are empty. */
|
|
930 if (reg->y_size == 0)
|
|
931 reg->y_array = NULL;
|
|
932 else
|
|
933 reg->y_array = (char_u **)alloc((unsigned)(sizeof(char_u *)
|
|
934 * reg->y_size));
|
|
935 if (reg->y_array != NULL)
|
|
936 {
|
|
937 for (i = 0; i < reg->y_size; ++i)
|
|
938 reg->y_array[i] = vim_strsave(y_current->y_array[i]);
|
|
939 }
|
|
940 }
|
|
941 else
|
|
942 y_current->y_array = NULL;
|
|
943 }
|
|
944 return (void *)reg;
|
|
945 }
|
|
946
|
|
947 /*
|
|
948 * Put "reg" into register "name". Free any previous contents.
|
|
949 */
|
|
950 void
|
|
951 put_register(name, reg)
|
|
952 int name;
|
|
953 void *reg;
|
|
954 {
|
|
955 get_yank_register(name, 0);
|
|
956 free_yank_all();
|
|
957 *y_current = *(struct yankreg *)reg;
|
|
958
|
|
959 # ifdef FEAT_CLIPBOARD
|
|
960 /* Send text written to clipboard register to the clipboard. */
|
|
961 may_set_selection();
|
|
962 # endif
|
|
963 }
|
|
964 #endif
|
|
965
|
|
966 #if defined(FEAT_MOUSE) || defined(PROTO)
|
|
967 /*
|
|
968 * return TRUE if the current yank register has type MLINE
|
|
969 */
|
|
970 int
|
|
971 yank_register_mline(regname)
|
|
972 int regname;
|
|
973 {
|
|
974 if (regname != 0 && !valid_yank_reg(regname, FALSE))
|
|
975 return FALSE;
|
|
976 if (regname == '_') /* black hole is always empty */
|
|
977 return FALSE;
|
|
978 get_yank_register(regname, FALSE);
|
|
979 return (y_current->y_type == MLINE);
|
|
980 }
|
|
981 #endif
|
|
982
|
|
983 /*
|
|
984 * start or stop recording into a yank register
|
|
985 *
|
|
986 * return FAIL for failure, OK otherwise
|
|
987 */
|
|
988 int
|
|
989 do_record(c)
|
|
990 int c;
|
|
991 {
|
|
992 char_u *p;
|
|
993 static int regname;
|
|
994 struct yankreg *old_y_previous, *old_y_current;
|
|
995 int retval;
|
|
996
|
|
997 if (Recording == FALSE) /* start recording */
|
|
998 {
|
|
999 /* registers 0-9, a-z and " are allowed */
|
|
1000 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"'))
|
|
1001 retval = FAIL;
|
|
1002 else
|
|
1003 {
|
|
1004 Recording = TRUE;
|
|
1005 showmode();
|
|
1006 regname = c;
|
|
1007 retval = OK;
|
|
1008 }
|
|
1009 }
|
|
1010 else /* stop recording */
|
|
1011 {
|
|
1012 /*
|
|
1013 * Get the recorded key hits. K_SPECIAL and CSI will be escaped, so
|
|
1014 * that the register can be put into the typeahead buffer without
|
|
1015 * translation.
|
|
1016 */
|
|
1017 Recording = FALSE;
|
|
1018 MSG("");
|
|
1019 p = get_recorded();
|
|
1020 if (p == NULL)
|
|
1021 retval = FAIL;
|
|
1022 else
|
|
1023 {
|
|
1024 /*
|
|
1025 * We don't want to change the default register here, so save and
|
|
1026 * restore the current register name.
|
|
1027 */
|
|
1028 old_y_previous = y_previous;
|
|
1029 old_y_current = y_current;
|
|
1030
|
|
1031 retval = stuff_yank(regname, p);
|
|
1032
|
|
1033 y_previous = old_y_previous;
|
|
1034 y_current = old_y_current;
|
|
1035 }
|
|
1036 }
|
|
1037 return retval;
|
|
1038 }
|
|
1039
|
|
1040 /*
|
|
1041 * Stuff string "p" into yank register "regname" as a single line (append if
|
|
1042 * uppercase). "p" must have been alloced.
|
|
1043 *
|
|
1044 * return FAIL for failure, OK otherwise
|
|
1045 */
|
|
1046 static int
|
|
1047 stuff_yank(regname, p)
|
|
1048 int regname;
|
|
1049 char_u *p;
|
|
1050 {
|
|
1051 char_u *lp;
|
|
1052 char_u **pp;
|
|
1053
|
|
1054 /* check for read-only register */
|
|
1055 if (regname != 0 && !valid_yank_reg(regname, TRUE))
|
|
1056 {
|
|
1057 vim_free(p);
|
|
1058 return FAIL;
|
|
1059 }
|
|
1060 if (regname == '_') /* black hole: don't do anything */
|
|
1061 {
|
|
1062 vim_free(p);
|
|
1063 return OK;
|
|
1064 }
|
|
1065 get_yank_register(regname, TRUE);
|
|
1066 if (y_append && y_current->y_array != NULL)
|
|
1067 {
|
|
1068 pp = &(y_current->y_array[y_current->y_size - 1]);
|
|
1069 lp = lalloc((long_u)(STRLEN(*pp) + STRLEN(p) + 1), TRUE);
|
|
1070 if (lp == NULL)
|
|
1071 {
|
|
1072 vim_free(p);
|
|
1073 return FAIL;
|
|
1074 }
|
|
1075 STRCPY(lp, *pp);
|
|
1076 STRCAT(lp, p);
|
|
1077 vim_free(p);
|
|
1078 vim_free(*pp);
|
|
1079 *pp = lp;
|
|
1080 }
|
|
1081 else
|
|
1082 {
|
|
1083 free_yank_all();
|
|
1084 if ((y_current->y_array =
|
|
1085 (char_u **)alloc((unsigned)sizeof(char_u *))) == NULL)
|
|
1086 {
|
|
1087 vim_free(p);
|
|
1088 return FAIL;
|
|
1089 }
|
|
1090 y_current->y_array[0] = p;
|
|
1091 y_current->y_size = 1;
|
|
1092 y_current->y_type = MCHAR; /* used to be MLINE, why? */
|
|
1093 }
|
|
1094 return OK;
|
|
1095 }
|
|
1096
|
|
1097 /*
|
|
1098 * execute a yank register: copy it into the stuff buffer
|
|
1099 *
|
|
1100 * return FAIL for failure, OK otherwise
|
|
1101 */
|
|
1102 int
|
|
1103 do_execreg(regname, colon, addcr)
|
|
1104 int regname;
|
|
1105 int colon; /* insert ':' before each line */
|
|
1106 int addcr; /* always add '\n' to end of line */
|
|
1107 {
|
|
1108 static int lastc = NUL;
|
|
1109 long i;
|
|
1110 char_u *p;
|
|
1111 int retval = OK;
|
|
1112 int remap;
|
|
1113
|
|
1114 if (regname == '@') /* repeat previous one */
|
168
|
1115 {
|
|
1116 if (lastc == NUL)
|
|
1117 {
|
|
1118 EMSG(_("E748: No previously used register"));
|
|
1119 return FAIL;
|
|
1120 }
|
7
|
1121 regname = lastc;
|
168
|
1122 }
|
7
|
1123 /* check for valid regname */
|
|
1124 if (regname == '%' || regname == '#' || !valid_yank_reg(regname, FALSE))
|
168
|
1125 {
|
|
1126 emsg_invreg(regname);
|
7
|
1127 return FAIL;
|
168
|
1128 }
|
7
|
1129 lastc = regname;
|
|
1130
|
|
1131 #ifdef FEAT_CLIPBOARD
|
|
1132 regname = may_get_selection(regname);
|
|
1133 #endif
|
|
1134
|
|
1135 if (regname == '_') /* black hole: don't stuff anything */
|
|
1136 return OK;
|
|
1137
|
|
1138 #ifdef FEAT_CMDHIST
|
|
1139 if (regname == ':') /* use last command line */
|
|
1140 {
|
|
1141 if (last_cmdline == NULL)
|
|
1142 {
|
|
1143 EMSG(_(e_nolastcmd));
|
|
1144 return FAIL;
|
|
1145 }
|
|
1146 vim_free(new_last_cmdline); /* don't keep the cmdline containing @: */
|
|
1147 new_last_cmdline = NULL;
|
16
|
1148 /* Escape all control characters with a CTRL-V */
|
|
1149 p = vim_strsave_escaped_ext(last_cmdline,
|
20
|
1150 (char_u *)"\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037", Ctrl_V, FALSE);
|
16
|
1151 if (p != NULL)
|
|
1152 retval = put_in_typebuf(p, TRUE);
|
|
1153 vim_free(p);
|
7
|
1154 }
|
|
1155 #endif
|
|
1156 #ifdef FEAT_EVAL
|
|
1157 else if (regname == '=')
|
|
1158 {
|
|
1159 p = get_expr_line();
|
|
1160 if (p == NULL)
|
|
1161 return FAIL;
|
|
1162 retval = put_in_typebuf(p, colon);
|
|
1163 vim_free(p);
|
|
1164 }
|
|
1165 #endif
|
|
1166 else if (regname == '.') /* use last inserted text */
|
|
1167 {
|
|
1168 p = get_last_insert_save();
|
|
1169 if (p == NULL)
|
|
1170 {
|
|
1171 EMSG(_(e_noinstext));
|
|
1172 return FAIL;
|
|
1173 }
|
|
1174 retval = put_in_typebuf(p, colon);
|
|
1175 vim_free(p);
|
|
1176 }
|
|
1177 else
|
|
1178 {
|
|
1179 get_yank_register(regname, FALSE);
|
|
1180 if (y_current->y_array == NULL)
|
|
1181 return FAIL;
|
|
1182
|
|
1183 /* Disallow remaping for ":@r". */
|
|
1184 remap = colon ? REMAP_NONE : REMAP_YES;
|
|
1185
|
|
1186 /*
|
|
1187 * Insert lines into typeahead buffer, from last one to first one.
|
|
1188 */
|
|
1189 put_reedit_in_typebuf();
|
|
1190 for (i = y_current->y_size; --i >= 0; )
|
|
1191 {
|
|
1192 /* insert NL between lines and after last line if type is MLINE */
|
|
1193 if (y_current->y_type == MLINE || i < y_current->y_size - 1
|
|
1194 || addcr)
|
|
1195 {
|
|
1196 if (ins_typebuf((char_u *)"\n", remap, 0, TRUE, FALSE) == FAIL)
|
|
1197 return FAIL;
|
|
1198 }
|
|
1199 if (ins_typebuf(y_current->y_array[i], remap, 0, TRUE, FALSE)
|
|
1200 == FAIL)
|
|
1201 return FAIL;
|
|
1202 if (colon && ins_typebuf((char_u *)":", remap, 0, TRUE, FALSE)
|
|
1203 == FAIL)
|
|
1204 return FAIL;
|
|
1205 }
|
|
1206 Exec_reg = TRUE; /* disable the 'q' command */
|
|
1207 }
|
|
1208 return retval;
|
|
1209 }
|
|
1210
|
|
1211 /*
|
|
1212 * If "restart_edit" is not zero, put it in the typeahead buffer, so that it's
|
|
1213 * used only after other typeahead has been processed.
|
|
1214 */
|
|
1215 static void
|
|
1216 put_reedit_in_typebuf()
|
|
1217 {
|
|
1218 char_u buf[3];
|
|
1219
|
|
1220 if (restart_edit != NUL)
|
|
1221 {
|
|
1222 if (restart_edit == 'V')
|
|
1223 {
|
|
1224 buf[0] = 'g';
|
|
1225 buf[1] = 'R';
|
|
1226 buf[2] = NUL;
|
|
1227 }
|
|
1228 else
|
|
1229 {
|
|
1230 buf[0] = restart_edit == 'I' ? 'i' : restart_edit;
|
|
1231 buf[1] = NUL;
|
|
1232 }
|
|
1233 if (ins_typebuf(buf, REMAP_NONE, 0, TRUE, FALSE) == OK)
|
|
1234 restart_edit = NUL;
|
|
1235 }
|
|
1236 }
|
|
1237
|
|
1238 static int
|
|
1239 put_in_typebuf(s, colon)
|
|
1240 char_u *s;
|
|
1241 int colon; /* add ':' before the line */
|
|
1242 {
|
|
1243 int retval = OK;
|
|
1244
|
|
1245 put_reedit_in_typebuf();
|
|
1246 if (colon)
|
|
1247 retval = ins_typebuf((char_u *)"\n", REMAP_YES, 0, TRUE, FALSE);
|
|
1248 if (retval == OK)
|
|
1249 retval = ins_typebuf(s, REMAP_YES, 0, TRUE, FALSE);
|
|
1250 if (colon && retval == OK)
|
|
1251 retval = ins_typebuf((char_u *)":", REMAP_YES, 0, TRUE, FALSE);
|
|
1252 return retval;
|
|
1253 }
|
|
1254
|
|
1255 /*
|
|
1256 * Insert a yank register: copy it into the Read buffer.
|
|
1257 * Used by CTRL-R command and middle mouse button in insert mode.
|
|
1258 *
|
|
1259 * return FAIL for failure, OK otherwise
|
|
1260 */
|
|
1261 int
|
|
1262 insert_reg(regname, literally)
|
|
1263 int regname;
|
|
1264 int literally; /* insert literally, not as if typed */
|
|
1265 {
|
|
1266 long i;
|
|
1267 int retval = OK;
|
|
1268 char_u *arg;
|
|
1269 int allocated;
|
|
1270
|
|
1271 /*
|
|
1272 * It is possible to get into an endless loop by having CTRL-R a in
|
|
1273 * register a and then, in insert mode, doing CTRL-R a.
|
|
1274 * If you hit CTRL-C, the loop will be broken here.
|
|
1275 */
|
|
1276 ui_breakcheck();
|
|
1277 if (got_int)
|
|
1278 return FAIL;
|
|
1279
|
|
1280 /* check for valid regname */
|
|
1281 if (regname != NUL && !valid_yank_reg(regname, FALSE))
|
|
1282 return FAIL;
|
|
1283
|
|
1284 #ifdef FEAT_CLIPBOARD
|
|
1285 regname = may_get_selection(regname);
|
|
1286 #endif
|
|
1287
|
|
1288 if (regname == '.') /* insert last inserted text */
|
|
1289 retval = stuff_inserted(NUL, 1L, TRUE);
|
|
1290 else if (get_spec_reg(regname, &arg, &allocated, TRUE))
|
|
1291 {
|
|
1292 if (arg == NULL)
|
|
1293 return FAIL;
|
|
1294 stuffescaped(arg, literally);
|
|
1295 if (allocated)
|
|
1296 vim_free(arg);
|
|
1297 }
|
|
1298 else /* name or number register */
|
|
1299 {
|
|
1300 get_yank_register(regname, FALSE);
|
|
1301 if (y_current->y_array == NULL)
|
|
1302 retval = FAIL;
|
|
1303 else
|
|
1304 {
|
|
1305 for (i = 0; i < y_current->y_size; ++i)
|
|
1306 {
|
|
1307 stuffescaped(y_current->y_array[i], literally);
|
|
1308 /*
|
|
1309 * Insert a newline between lines and after last line if
|
|
1310 * y_type is MLINE.
|
|
1311 */
|
|
1312 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
|
|
1313 stuffcharReadbuff('\n');
|
|
1314 }
|
|
1315 }
|
|
1316 }
|
|
1317
|
|
1318 return retval;
|
|
1319 }
|
|
1320
|
|
1321 /*
|
|
1322 * Stuff a string into the typeahead buffer, such that edit() will insert it
|
|
1323 * literally ("literally" TRUE) or interpret is as typed characters.
|
|
1324 */
|
|
1325 static void
|
|
1326 stuffescaped(arg, literally)
|
|
1327 char_u *arg;
|
|
1328 int literally;
|
|
1329 {
|
|
1330 int c;
|
|
1331 char_u *start;
|
|
1332
|
|
1333 while (*arg != NUL)
|
|
1334 {
|
|
1335 /* Stuff a sequence of normal ASCII characters, that's fast. Also
|
|
1336 * stuff K_SPECIAL to get the effect of a special key when "literally"
|
|
1337 * is TRUE. */
|
|
1338 start = arg;
|
|
1339 while ((*arg >= ' '
|
|
1340 #ifndef EBCDIC
|
|
1341 && *arg < DEL /* EBCDIC: chars above space are normal */
|
|
1342 #endif
|
|
1343 )
|
|
1344 || (*arg == K_SPECIAL && !literally))
|
|
1345 ++arg;
|
|
1346 if (arg > start)
|
|
1347 stuffReadbuffLen(start, (long)(arg - start));
|
|
1348
|
|
1349 /* stuff a single special character */
|
|
1350 if (*arg != NUL)
|
|
1351 {
|
|
1352 #ifdef FEAT_MBYTE
|
|
1353 if (has_mbyte)
|
|
1354 c = mb_ptr2char_adv(&arg);
|
|
1355 else
|
|
1356 #endif
|
|
1357 c = *arg++;
|
|
1358 if (literally && ((c < ' ' && c != TAB) || c == DEL))
|
|
1359 stuffcharReadbuff(Ctrl_V);
|
|
1360 stuffcharReadbuff(c);
|
|
1361 }
|
|
1362 }
|
|
1363 }
|
|
1364
|
|
1365 /*
|
|
1366 * If "regname" is a special register, return a pointer to its value.
|
|
1367 */
|
15
|
1368 int
|
7
|
1369 get_spec_reg(regname, argp, allocated, errmsg)
|
|
1370 int regname;
|
|
1371 char_u **argp;
|
|
1372 int *allocated;
|
|
1373 int errmsg; /* give error message when failing */
|
|
1374 {
|
|
1375 int cnt;
|
|
1376
|
|
1377 *argp = NULL;
|
|
1378 *allocated = FALSE;
|
|
1379 switch (regname)
|
|
1380 {
|
|
1381 case '%': /* file name */
|
|
1382 if (errmsg)
|
|
1383 check_fname(); /* will give emsg if not set */
|
|
1384 *argp = curbuf->b_fname;
|
|
1385 return TRUE;
|
|
1386
|
|
1387 case '#': /* alternate file name */
|
|
1388 *argp = getaltfname(errmsg); /* may give emsg if not set */
|
|
1389 return TRUE;
|
|
1390
|
|
1391 #ifdef FEAT_EVAL
|
|
1392 case '=': /* result of expression */
|
|
1393 *argp = get_expr_line();
|
|
1394 *allocated = TRUE;
|
|
1395 return TRUE;
|
|
1396 #endif
|
|
1397
|
|
1398 case ':': /* last command line */
|
|
1399 if (last_cmdline == NULL && errmsg)
|
|
1400 EMSG(_(e_nolastcmd));
|
|
1401 *argp = last_cmdline;
|
|
1402 return TRUE;
|
|
1403
|
|
1404 case '/': /* last search-pattern */
|
|
1405 if (last_search_pat() == NULL && errmsg)
|
|
1406 EMSG(_(e_noprevre));
|
|
1407 *argp = last_search_pat();
|
|
1408 return TRUE;
|
|
1409
|
|
1410 case '.': /* last inserted text */
|
|
1411 *argp = get_last_insert_save();
|
|
1412 *allocated = TRUE;
|
|
1413 if (*argp == NULL && errmsg)
|
|
1414 EMSG(_(e_noinstext));
|
|
1415 return TRUE;
|
|
1416
|
|
1417 #ifdef FEAT_SEARCHPATH
|
|
1418 case Ctrl_F: /* Filename under cursor */
|
|
1419 case Ctrl_P: /* Path under cursor, expand via "path" */
|
|
1420 if (!errmsg)
|
|
1421 return FALSE;
|
|
1422 *argp = file_name_at_cursor(FNAME_MESS | FNAME_HYP
|
|
1423 | (regname == Ctrl_P ? FNAME_EXP : 0), 1L);
|
|
1424 *allocated = TRUE;
|
|
1425 return TRUE;
|
|
1426 #endif
|
|
1427
|
|
1428 case Ctrl_W: /* word under cursor */
|
|
1429 case Ctrl_A: /* WORD (mnemonic All) under cursor */
|
|
1430 if (!errmsg)
|
|
1431 return FALSE;
|
|
1432 cnt = find_ident_under_cursor(argp, regname == Ctrl_W
|
|
1433 ? (FIND_IDENT|FIND_STRING) : FIND_STRING);
|
|
1434 *argp = cnt ? vim_strnsave(*argp, cnt) : NULL;
|
|
1435 *allocated = TRUE;
|
|
1436 return TRUE;
|
|
1437
|
|
1438 case '_': /* black hole: always empty */
|
|
1439 *argp = (char_u *)"";
|
|
1440 return TRUE;
|
|
1441 }
|
|
1442
|
|
1443 return FALSE;
|
|
1444 }
|
|
1445
|
|
1446 /*
|
15
|
1447 * Paste a yank register into the command line.
|
|
1448 * Only for non-special registers.
|
|
1449 * Used by CTRL-R command in command-line mode
|
7
|
1450 * insert_reg() can't be used here, because special characters from the
|
|
1451 * register contents will be interpreted as commands.
|
|
1452 *
|
|
1453 * return FAIL for failure, OK otherwise
|
|
1454 */
|
|
1455 int
|
15
|
1456 cmdline_paste_reg(regname, literally)
|
7
|
1457 int regname;
|
|
1458 int literally; /* Insert text literally instead of "as typed" */
|
|
1459 {
|
|
1460 long i;
|
|
1461
|
|
1462 get_yank_register(regname, FALSE);
|
|
1463 if (y_current->y_array == NULL)
|
|
1464 return FAIL;
|
|
1465
|
|
1466 for (i = 0; i < y_current->y_size; ++i)
|
|
1467 {
|
|
1468 cmdline_paste_str(y_current->y_array[i], literally);
|
|
1469
|
|
1470 /* insert ^M between lines and after last line if type is MLINE */
|
|
1471 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
|
|
1472 cmdline_paste_str((char_u *)"\r", literally);
|
|
1473
|
|
1474 /* Check for CTRL-C, in case someone tries to paste a few thousand
|
|
1475 * lines and gets bored. */
|
|
1476 ui_breakcheck();
|
|
1477 if (got_int)
|
|
1478 return FAIL;
|
|
1479 }
|
|
1480 return OK;
|
|
1481 }
|
|
1482
|
|
1483 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
|
|
1484 /*
|
|
1485 * Adjust the register name pointed to with "rp" for the clipboard being
|
|
1486 * used always and the clipboard being available.
|
|
1487 */
|
|
1488 void
|
|
1489 adjust_clip_reg(rp)
|
|
1490 int *rp;
|
|
1491 {
|
|
1492 /* If no reg. specified, and "unnamed" is in 'clipboard', use '*' reg. */
|
|
1493 if (*rp == 0 && clip_unnamed)
|
|
1494 *rp = '*';
|
|
1495 if (!clip_star.available && *rp == '*')
|
|
1496 *rp = 0;
|
|
1497 if (!clip_plus.available && *rp == '+')
|
|
1498 *rp = 0;
|
|
1499 }
|
|
1500 #endif
|
|
1501
|
|
1502 /*
|
|
1503 * op_delete - handle a delete operation
|
|
1504 *
|
|
1505 * return FAIL if undo failed, OK otherwise.
|
|
1506 */
|
|
1507 int
|
|
1508 op_delete(oap)
|
|
1509 oparg_T *oap;
|
|
1510 {
|
|
1511 int n;
|
|
1512 linenr_T lnum;
|
|
1513 char_u *ptr;
|
|
1514 #ifdef FEAT_VISUAL
|
|
1515 char_u *newp, *oldp;
|
|
1516 struct block_def bd;
|
|
1517 #endif
|
|
1518 linenr_T old_lcount = curbuf->b_ml.ml_line_count;
|
|
1519 int did_yank = FALSE;
|
|
1520
|
|
1521 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to do */
|
|
1522 return OK;
|
|
1523
|
|
1524 /* Nothing to delete, return here. Do prepare undo, for op_change(). */
|
|
1525 if (oap->empty)
|
|
1526 return u_save_cursor();
|
|
1527
|
|
1528 if (!curbuf->b_p_ma)
|
|
1529 {
|
|
1530 EMSG(_(e_modifiable));
|
|
1531 return FAIL;
|
|
1532 }
|
|
1533
|
|
1534 #ifdef FEAT_CLIPBOARD
|
|
1535 adjust_clip_reg(&oap->regname);
|
|
1536 #endif
|
|
1537
|
|
1538 #ifdef FEAT_MBYTE
|
|
1539 if (has_mbyte)
|
|
1540 mb_adjust_opend(oap);
|
|
1541 #endif
|
|
1542
|
|
1543 /*
|
|
1544 * Imitate the strange Vi behaviour: If the delete spans more than one line
|
|
1545 * and motion_type == MCHAR and the result is a blank line, make the delete
|
|
1546 * linewise. Don't do this for the change command or Visual mode.
|
|
1547 */
|
|
1548 if ( oap->motion_type == MCHAR
|
|
1549 #ifdef FEAT_VISUAL
|
|
1550 && !oap->is_VIsual
|
50
|
1551 && !oap->block_mode
|
7
|
1552 #endif
|
|
1553 && oap->line_count > 1
|
|
1554 && oap->op_type == OP_DELETE)
|
|
1555 {
|
|
1556 ptr = ml_get(oap->end.lnum) + oap->end.col + oap->inclusive;
|
|
1557 ptr = skipwhite(ptr);
|
|
1558 if (*ptr == NUL && inindent(0))
|
|
1559 oap->motion_type = MLINE;
|
|
1560 }
|
|
1561
|
|
1562 /*
|
|
1563 * Check for trying to delete (e.g. "D") in an empty line.
|
|
1564 * Note: For the change operator it is ok.
|
|
1565 */
|
|
1566 if ( oap->motion_type == MCHAR
|
|
1567 && oap->line_count == 1
|
|
1568 && oap->op_type == OP_DELETE
|
|
1569 && *ml_get(oap->start.lnum) == NUL)
|
|
1570 {
|
|
1571 /*
|
|
1572 * It's an error to operate on an empty region, when 'E' inclucded in
|
|
1573 * 'cpoptions' (Vi compatible).
|
|
1574 */
|
|
1575 if (vim_strchr(p_cpo, CPO_EMPTYREGION) != NULL)
|
|
1576 beep_flush();
|
|
1577 return OK;
|
|
1578 }
|
|
1579
|
|
1580 /*
|
|
1581 * Do a yank of whatever we're about to delete.
|
|
1582 * If a yank register was specified, put the deleted text into that register.
|
|
1583 * For the black hole register '_' don't yank anything.
|
|
1584 */
|
|
1585 if (oap->regname != '_')
|
|
1586 {
|
|
1587 if (oap->regname != 0)
|
|
1588 {
|
|
1589 /* check for read-only register */
|
|
1590 if (!valid_yank_reg(oap->regname, TRUE))
|
|
1591 {
|
|
1592 beep_flush();
|
|
1593 return OK;
|
|
1594 }
|
|
1595 get_yank_register(oap->regname, TRUE); /* yank into specif'd reg. */
|
|
1596 if (op_yank(oap, TRUE, FALSE) == OK) /* yank without message */
|
|
1597 did_yank = TRUE;
|
|
1598 }
|
|
1599
|
|
1600 /*
|
|
1601 * Put deleted text into register 1 and shift number registers if the
|
|
1602 * delete contains a line break, or when a regname has been specified.
|
|
1603 */
|
|
1604 if (oap->regname != 0 || oap->motion_type == MLINE
|
|
1605 || oap->line_count > 1 || oap->use_reg_one)
|
|
1606 {
|
|
1607 y_current = &y_regs[9];
|
|
1608 free_yank_all(); /* free register nine */
|
|
1609 for (n = 9; n > 1; --n)
|
|
1610 y_regs[n] = y_regs[n - 1];
|
|
1611 y_previous = y_current = &y_regs[1];
|
|
1612 y_regs[1].y_array = NULL; /* set register one to empty */
|
|
1613 if (op_yank(oap, TRUE, FALSE) == OK)
|
|
1614 did_yank = TRUE;
|
|
1615 }
|
|
1616
|
|
1617 /* Yank into small delete register when no register specified and the
|
|
1618 * delete is within one line. */
|
|
1619 if (oap->regname == 0 && oap->motion_type != MLINE
|
|
1620 && oap->line_count == 1)
|
|
1621 {
|
|
1622 oap->regname = '-';
|
|
1623 get_yank_register(oap->regname, TRUE);
|
|
1624 if (op_yank(oap, TRUE, FALSE) == OK)
|
|
1625 did_yank = TRUE;
|
|
1626 oap->regname = 0;
|
|
1627 }
|
|
1628
|
|
1629 /*
|
|
1630 * If there's too much stuff to fit in the yank register, then get a
|
|
1631 * confirmation before doing the delete. This is crude, but simple.
|
|
1632 * And it avoids doing a delete of something we can't put back if we
|
|
1633 * want.
|
|
1634 */
|
|
1635 if (!did_yank)
|
|
1636 {
|
|
1637 int msg_silent_save = msg_silent;
|
|
1638
|
|
1639 msg_silent = 0; /* must display the prompt */
|
|
1640 n = ask_yesno((char_u *)_("cannot yank; delete anyway"), TRUE);
|
|
1641 msg_silent = msg_silent_save;
|
|
1642 if (n != 'y')
|
|
1643 {
|
|
1644 EMSG(_(e_abort));
|
|
1645 return FAIL;
|
|
1646 }
|
|
1647 }
|
|
1648 }
|
|
1649
|
|
1650 #ifdef FEAT_VISUAL
|
|
1651 /*
|
|
1652 * block mode delete
|
|
1653 */
|
|
1654 if (oap->block_mode)
|
|
1655 {
|
|
1656 if (u_save((linenr_T)(oap->start.lnum - 1),
|
|
1657 (linenr_T)(oap->end.lnum + 1)) == FAIL)
|
|
1658 return FAIL;
|
|
1659
|
|
1660 for (lnum = curwin->w_cursor.lnum; lnum <= oap->end.lnum; ++lnum)
|
|
1661 {
|
|
1662 block_prep(oap, &bd, lnum, TRUE);
|
|
1663 if (bd.textlen == 0) /* nothing to delete */
|
|
1664 continue;
|
|
1665
|
|
1666 /* Adjust cursor position for tab replaced by spaces and 'lbr'. */
|
|
1667 if (lnum == curwin->w_cursor.lnum)
|
|
1668 {
|
|
1669 curwin->w_cursor.col = bd.textcol + bd.startspaces;
|
|
1670 # ifdef FEAT_VIRTUALEDIT
|
|
1671 curwin->w_cursor.coladd = 0;
|
|
1672 # endif
|
|
1673 }
|
|
1674
|
|
1675 /* n == number of chars deleted
|
|
1676 * If we delete a TAB, it may be replaced by several characters.
|
|
1677 * Thus the number of characters may increase!
|
|
1678 */
|
|
1679 n = bd.textlen - bd.startspaces - bd.endspaces;
|
|
1680 oldp = ml_get(lnum);
|
|
1681 newp = alloc_check((unsigned)STRLEN(oldp) + 1 - n);
|
|
1682 if (newp == NULL)
|
|
1683 continue;
|
|
1684 /* copy up to deleted part */
|
|
1685 mch_memmove(newp, oldp, (size_t)bd.textcol);
|
|
1686 /* insert spaces */
|
|
1687 copy_spaces(newp + bd.textcol,
|
|
1688 (size_t)(bd.startspaces + bd.endspaces));
|
|
1689 /* copy the part after the deleted part */
|
|
1690 oldp += bd.textcol + bd.textlen;
|
|
1691 mch_memmove(newp + bd.textcol + bd.startspaces + bd.endspaces,
|
|
1692 oldp, STRLEN(oldp) + 1);
|
|
1693 /* replace the line */
|
|
1694 ml_replace(lnum, newp, FALSE);
|
|
1695 }
|
|
1696
|
|
1697 check_cursor_col();
|
|
1698 changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
|
|
1699 oap->end.lnum + 1, 0L);
|
|
1700 oap->line_count = 0; /* no lines deleted */
|
|
1701 }
|
|
1702 else
|
|
1703 #endif
|
|
1704 if (oap->motion_type == MLINE)
|
|
1705 {
|
|
1706 if (oap->op_type == OP_CHANGE)
|
|
1707 {
|
|
1708 /* Delete the lines except the first one. Temporarily move the
|
|
1709 * cursor to the next line. Save the current line number, if the
|
|
1710 * last line is deleted it may be changed.
|
|
1711 */
|
|
1712 if (oap->line_count > 1)
|
|
1713 {
|
|
1714 lnum = curwin->w_cursor.lnum;
|
|
1715 ++curwin->w_cursor.lnum;
|
|
1716 del_lines((long)(oap->line_count - 1), TRUE);
|
|
1717 curwin->w_cursor.lnum = lnum;
|
|
1718 }
|
|
1719 if (u_save_cursor() == FAIL)
|
|
1720 return FAIL;
|
|
1721 if (curbuf->b_p_ai) /* don't delete indent */
|
|
1722 {
|
|
1723 beginline(BL_WHITE); /* cursor on first non-white */
|
|
1724 did_ai = TRUE; /* delete the indent when ESC hit */
|
|
1725 ai_col = curwin->w_cursor.col;
|
|
1726 }
|
|
1727 else
|
|
1728 beginline(0); /* cursor in column 0 */
|
|
1729 truncate_line(FALSE); /* delete the rest of the line */
|
|
1730 /* leave cursor past last char in line */
|
|
1731 if (oap->line_count > 1)
|
|
1732 u_clearline(); /* "U" command not possible after "2cc" */
|
|
1733 }
|
|
1734 else
|
|
1735 {
|
|
1736 del_lines(oap->line_count, TRUE);
|
|
1737 beginline(BL_WHITE | BL_FIX);
|
|
1738 u_clearline(); /* "U" command not possible after "dd" */
|
|
1739 }
|
|
1740 }
|
|
1741 else
|
|
1742 {
|
|
1743 #ifdef FEAT_VIRTUALEDIT
|
|
1744 if (virtual_op)
|
|
1745 {
|
|
1746 int endcol = 0;
|
|
1747
|
|
1748 /* For virtualedit: break the tabs that are partly included. */
|
|
1749 if (gchar_pos(&oap->start) == '\t')
|
|
1750 {
|
|
1751 if (u_save_cursor() == FAIL) /* save first line for undo */
|
|
1752 return FAIL;
|
|
1753 if (oap->line_count == 1)
|
|
1754 endcol = getviscol2(oap->end.col, oap->end.coladd);
|
|
1755 coladvance_force(getviscol2(oap->start.col, oap->start.coladd));
|
|
1756 oap->start = curwin->w_cursor;
|
|
1757 if (oap->line_count == 1)
|
|
1758 {
|
|
1759 coladvance(endcol);
|
|
1760 oap->end.col = curwin->w_cursor.col;
|
|
1761 oap->end.coladd = curwin->w_cursor.coladd;
|
|
1762 curwin->w_cursor = oap->start;
|
|
1763 }
|
|
1764 }
|
|
1765
|
|
1766 /* Break a tab only when it's included in the area. */
|
|
1767 if (gchar_pos(&oap->end) == '\t'
|
|
1768 && (int)oap->end.coladd < oap->inclusive)
|
|
1769 {
|
|
1770 /* save last line for undo */
|
|
1771 if (u_save((linenr_T)(oap->end.lnum - 1),
|
|
1772 (linenr_T)(oap->end.lnum + 1)) == FAIL)
|
|
1773 return FAIL;
|
|
1774 curwin->w_cursor = oap->end;
|
|
1775 coladvance_force(getviscol2(oap->end.col, oap->end.coladd));
|
|
1776 oap->end = curwin->w_cursor;
|
|
1777 curwin->w_cursor = oap->start;
|
|
1778 }
|
|
1779 }
|
|
1780 #endif
|
|
1781
|
|
1782 if (oap->line_count == 1) /* delete characters within one line */
|
|
1783 {
|
|
1784 if (u_save_cursor() == FAIL) /* save line for undo */
|
|
1785 return FAIL;
|
|
1786
|
|
1787 /* if 'cpoptions' contains '$', display '$' at end of change */
|
|
1788 if ( vim_strchr(p_cpo, CPO_DOLLAR) != NULL
|
|
1789 && oap->op_type == OP_CHANGE
|
|
1790 && oap->end.lnum == curwin->w_cursor.lnum
|
|
1791 #ifdef FEAT_VISUAL
|
|
1792 && !oap->is_VIsual
|
|
1793 #endif
|
|
1794 )
|
|
1795 display_dollar(oap->end.col - !oap->inclusive);
|
|
1796
|
|
1797 n = oap->end.col - oap->start.col + 1 - !oap->inclusive;
|
|
1798
|
|
1799 #ifdef FEAT_VIRTUALEDIT
|
|
1800 if (virtual_op)
|
|
1801 {
|
|
1802 /* fix up things for virtualedit-delete:
|
|
1803 * break the tabs which are going to get in our way
|
|
1804 */
|
|
1805 char_u *curline = ml_get_curline();
|
|
1806 int len = (int)STRLEN(curline);
|
|
1807
|
|
1808 if (oap->end.coladd != 0
|
|
1809 && (int)oap->end.col >= len - 1
|
|
1810 && !(oap->start.coladd && (int)oap->end.col >= len - 1))
|
|
1811 n++;
|
|
1812 /* Delete at least one char (e.g, when on a control char). */
|
|
1813 if (n == 0 && oap->start.coladd != oap->end.coladd)
|
|
1814 n = 1;
|
|
1815
|
|
1816 /* When deleted a char in the line, reset coladd. */
|
|
1817 if (gchar_cursor() != NUL)
|
|
1818 curwin->w_cursor.coladd = 0;
|
|
1819 }
|
|
1820 #endif
|
|
1821 (void)del_bytes((long)n, restart_edit == NUL && !virtual_op);
|
|
1822 }
|
|
1823 else /* delete characters between lines */
|
|
1824 {
|
|
1825 pos_T curpos;
|
|
1826
|
|
1827 /* save deleted and changed lines for undo */
|
|
1828 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
|
|
1829 (linenr_T)(curwin->w_cursor.lnum + oap->line_count)) == FAIL)
|
|
1830 return FAIL;
|
|
1831
|
|
1832 truncate_line(TRUE); /* delete from cursor to end of line */
|
|
1833
|
|
1834 curpos = curwin->w_cursor; /* remember curwin->w_cursor */
|
|
1835 ++curwin->w_cursor.lnum;
|
|
1836 del_lines((long)(oap->line_count - 2), FALSE);
|
|
1837
|
|
1838 /* delete from start of line until op_end */
|
|
1839 curwin->w_cursor.col = 0;
|
|
1840 (void)del_bytes((long)(oap->end.col + 1 - !oap->inclusive),
|
|
1841 restart_edit == NUL && !virtual_op);
|
|
1842 curwin->w_cursor = curpos; /* restore curwin->w_cursor */
|
|
1843
|
|
1844 (void)do_join(FALSE);
|
|
1845 }
|
|
1846 }
|
|
1847
|
|
1848 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
|
|
1849
|
|
1850 #ifdef FEAT_VISUAL
|
|
1851 if (oap->block_mode)
|
|
1852 {
|
|
1853 curbuf->b_op_end.lnum = oap->end.lnum;
|
|
1854 curbuf->b_op_end.col = oap->start.col;
|
|
1855 }
|
|
1856 else
|
|
1857 #endif
|
|
1858 curbuf->b_op_end = oap->start;
|
|
1859 curbuf->b_op_start = oap->start;
|
|
1860
|
|
1861 return OK;
|
|
1862 }
|
|
1863
|
|
1864 #ifdef FEAT_MBYTE
|
|
1865 /*
|
|
1866 * Adjust end of operating area for ending on a multi-byte character.
|
|
1867 * Used for deletion.
|
|
1868 */
|
|
1869 static void
|
|
1870 mb_adjust_opend(oap)
|
|
1871 oparg_T *oap;
|
|
1872 {
|
|
1873 char_u *p;
|
|
1874
|
|
1875 if (oap->inclusive)
|
|
1876 {
|
|
1877 p = ml_get(oap->end.lnum);
|
|
1878 oap->end.col += mb_tail_off(p, p + oap->end.col);
|
|
1879 }
|
|
1880 }
|
|
1881 #endif
|
|
1882
|
|
1883 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
|
|
1884 /*
|
|
1885 * Replace a whole area with one character.
|
|
1886 */
|
|
1887 int
|
|
1888 op_replace(oap, c)
|
|
1889 oparg_T *oap;
|
|
1890 int c;
|
|
1891 {
|
|
1892 int n, numc;
|
|
1893 #ifdef FEAT_MBYTE
|
|
1894 int num_chars;
|
|
1895 #endif
|
|
1896 char_u *newp, *oldp;
|
|
1897 size_t oldlen;
|
|
1898 struct block_def bd;
|
|
1899
|
|
1900 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty)
|
|
1901 return OK; /* nothing to do */
|
|
1902
|
|
1903 #ifdef FEAT_MBYTE
|
|
1904 if (has_mbyte)
|
|
1905 mb_adjust_opend(oap);
|
|
1906 #endif
|
|
1907
|
|
1908 if (u_save((linenr_T)(oap->start.lnum - 1),
|
|
1909 (linenr_T)(oap->end.lnum + 1)) == FAIL)
|
|
1910 return FAIL;
|
|
1911
|
|
1912 /*
|
|
1913 * block mode replace
|
|
1914 */
|
|
1915 if (oap->block_mode)
|
|
1916 {
|
|
1917 bd.is_MAX = (curwin->w_curswant == MAXCOL);
|
|
1918 for ( ; curwin->w_cursor.lnum <= oap->end.lnum; ++curwin->w_cursor.lnum)
|
|
1919 {
|
|
1920 block_prep(oap, &bd, curwin->w_cursor.lnum, TRUE);
|
|
1921 if (bd.textlen == 0 && (!virtual_op || bd.is_MAX))
|
|
1922 continue; /* nothing to replace */
|
|
1923
|
|
1924 /* n == number of extra chars required
|
|
1925 * If we split a TAB, it may be replaced by several characters.
|
|
1926 * Thus the number of characters may increase!
|
|
1927 */
|
|
1928 #ifdef FEAT_VIRTUALEDIT
|
|
1929 /* If the range starts in virtual space, count the initial
|
|
1930 * coladd offset as part of "startspaces" */
|
|
1931 if (virtual_op && bd.is_short && *bd.textstart == NUL)
|
|
1932 {
|
|
1933 pos_T vpos;
|
|
1934
|
|
1935 getvpos(&vpos, oap->start_vcol);
|
|
1936 bd.startspaces += vpos.coladd;
|
|
1937 n = bd.startspaces;
|
|
1938 }
|
|
1939 else
|
|
1940 #endif
|
|
1941 /* allow for pre spaces */
|
|
1942 n = (bd.startspaces ? bd.start_char_vcols - 1 : 0);
|
|
1943
|
|
1944 /* allow for post spp */
|
|
1945 n += (bd.endspaces
|
|
1946 #ifdef FEAT_VIRTUALEDIT
|
|
1947 && !bd.is_oneChar
|
|
1948 #endif
|
|
1949 && bd.end_char_vcols > 0) ? bd.end_char_vcols - 1 : 0;
|
|
1950 /* Figure out how many characters to replace. */
|
|
1951 numc = oap->end_vcol - oap->start_vcol + 1;
|
|
1952 if (bd.is_short && (!virtual_op || bd.is_MAX))
|
|
1953 numc -= (oap->end_vcol - bd.end_vcol) + 1;
|
|
1954
|
|
1955 #ifdef FEAT_MBYTE
|
|
1956 /* A double-wide character can be replaced only up to half the
|
|
1957 * times. */
|
|
1958 if ((*mb_char2cells)(c) > 1)
|
|
1959 {
|
|
1960 if ((numc & 1) && !bd.is_short)
|
|
1961 {
|
|
1962 ++bd.endspaces;
|
|
1963 ++n;
|
|
1964 }
|
|
1965 numc = numc / 2;
|
|
1966 }
|
|
1967
|
|
1968 /* Compute bytes needed, move character count to num_chars. */
|
|
1969 num_chars = numc;
|
|
1970 numc *= (*mb_char2len)(c);
|
|
1971 #endif
|
|
1972 /* oldlen includes textlen, so don't double count */
|
|
1973 n += numc - bd.textlen;
|
|
1974
|
|
1975 oldp = ml_get_curline();
|
|
1976 oldlen = STRLEN(oldp);
|
|
1977 newp = alloc_check((unsigned)oldlen + 1 + n);
|
|
1978 if (newp == NULL)
|
|
1979 continue;
|
|
1980 vim_memset(newp, NUL, (size_t)(oldlen + 1 + n));
|
|
1981 /* copy up to deleted part */
|
|
1982 mch_memmove(newp, oldp, (size_t)bd.textcol);
|
|
1983 oldp += bd.textcol + bd.textlen;
|
|
1984 /* insert pre-spaces */
|
|
1985 copy_spaces(newp + bd.textcol, (size_t)bd.startspaces);
|
|
1986 /* insert replacement chars CHECK FOR ALLOCATED SPACE */
|
|
1987 #ifdef FEAT_MBYTE
|
|
1988 if (has_mbyte)
|
|
1989 {
|
|
1990 n = STRLEN(newp);
|
|
1991 while (--num_chars >= 0)
|
|
1992 n += (*mb_char2bytes)(c, newp + n);
|
|
1993 }
|
|
1994 else
|
|
1995 #endif
|
|
1996 copy_chars(newp + STRLEN(newp), (size_t)numc, c);
|
|
1997 if (!bd.is_short)
|
|
1998 {
|
|
1999 /* insert post-spaces */
|
|
2000 copy_spaces(newp + STRLEN(newp), (size_t)bd.endspaces);
|
|
2001 /* copy the part after the changed part */
|
|
2002 mch_memmove(newp + STRLEN(newp), oldp, STRLEN(oldp) + 1);
|
|
2003 }
|
|
2004 /* replace the line */
|
|
2005 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
|
|
2006 }
|
|
2007 }
|
|
2008 else
|
|
2009 {
|
|
2010 /*
|
|
2011 * MCHAR and MLINE motion replace.
|
|
2012 */
|
|
2013 if (oap->motion_type == MLINE)
|
|
2014 {
|
|
2015 oap->start.col = 0;
|
|
2016 curwin->w_cursor.col = 0;
|
|
2017 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
|
|
2018 if (oap->end.col)
|
|
2019 --oap->end.col;
|
|
2020 }
|
|
2021 else if (!oap->inclusive)
|
|
2022 dec(&(oap->end));
|
|
2023
|
|
2024 while (ltoreq(curwin->w_cursor, oap->end))
|
|
2025 {
|
|
2026 n = gchar_cursor();
|
|
2027 if (n != NUL)
|
|
2028 {
|
|
2029 #ifdef FEAT_MBYTE
|
|
2030 if ((*mb_char2len)(c) > 1 || (*mb_char2len)(n) > 1)
|
|
2031 {
|
|
2032 /* This is slow, but it handles replacing a single-byte
|
|
2033 * with a multi-byte and the other way around. */
|
|
2034 oap->end.col += (*mb_char2len)(c) - (*mb_char2len)(n);
|
|
2035 n = State;
|
|
2036 State = REPLACE;
|
|
2037 ins_char(c);
|
|
2038 State = n;
|
|
2039 /* Backup to the replaced character. */
|
|
2040 dec_cursor();
|
|
2041 }
|
|
2042 else
|
|
2043 #endif
|
|
2044 {
|
|
2045 #ifdef FEAT_VIRTUALEDIT
|
|
2046 if (n == TAB)
|
|
2047 {
|
|
2048 int end_vcol = 0;
|
|
2049
|
|
2050 if (curwin->w_cursor.lnum == oap->end.lnum)
|
|
2051 {
|
|
2052 /* oap->end has to be recalculated when
|
|
2053 * the tab breaks */
|
|
2054 end_vcol = getviscol2(oap->end.col,
|
|
2055 oap->end.coladd);
|
|
2056 }
|
|
2057 coladvance_force(getviscol());
|
|
2058 if (curwin->w_cursor.lnum == oap->end.lnum)
|
|
2059 getvpos(&oap->end, end_vcol);
|
|
2060 }
|
|
2061 #endif
|
|
2062 pchar(curwin->w_cursor, c);
|
|
2063 }
|
|
2064 }
|
|
2065 #ifdef FEAT_VIRTUALEDIT
|
|
2066 else if (virtual_op && curwin->w_cursor.lnum == oap->end.lnum)
|
|
2067 {
|
|
2068 int virtcols = oap->end.coladd;
|
|
2069
|
|
2070 if (curwin->w_cursor.lnum == oap->start.lnum
|
|
2071 && oap->start.col == oap->end.col && oap->start.coladd)
|
|
2072 virtcols -= oap->start.coladd;
|
|
2073
|
|
2074 /* oap->end has been trimmed so it's effectively inclusive;
|
|
2075 * as a result an extra +1 must be counted so we don't
|
|
2076 * trample the NUL byte. */
|
|
2077 coladvance_force(getviscol2(oap->end.col, oap->end.coladd) + 1);
|
|
2078 curwin->w_cursor.col -= (virtcols + 1);
|
|
2079 for (; virtcols >= 0; virtcols--)
|
|
2080 {
|
|
2081 pchar(curwin->w_cursor, c);
|
|
2082 if (inc(&curwin->w_cursor) == -1)
|
|
2083 break;
|
|
2084 }
|
|
2085 }
|
|
2086 #endif
|
|
2087
|
|
2088 /* Advance to next character, stop at the end of the file. */
|
|
2089 if (inc_cursor() == -1)
|
|
2090 break;
|
|
2091 }
|
|
2092 }
|
|
2093
|
|
2094 curwin->w_cursor = oap->start;
|
|
2095 check_cursor();
|
|
2096 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1, 0L);
|
|
2097
|
|
2098 /* Set "'[" and "']" marks. */
|
|
2099 curbuf->b_op_start = oap->start;
|
|
2100 curbuf->b_op_end = oap->end;
|
|
2101
|
|
2102 return OK;
|
|
2103 }
|
|
2104 #endif
|
|
2105
|
|
2106 /*
|
|
2107 * Handle the (non-standard vi) tilde operator. Also for "gu", "gU" and "g?".
|
|
2108 */
|
|
2109 void
|
|
2110 op_tilde(oap)
|
|
2111 oparg_T *oap;
|
|
2112 {
|
|
2113 pos_T pos;
|
|
2114 #ifdef FEAT_VISUAL
|
|
2115 struct block_def bd;
|
|
2116 int done;
|
|
2117 #endif
|
|
2118 int did_change = 0;
|
|
2119 #ifdef FEAT_MBYTE
|
|
2120 colnr_T col;
|
|
2121 #endif
|
|
2122
|
|
2123 if (u_save((linenr_T)(oap->start.lnum - 1),
|
|
2124 (linenr_T)(oap->end.lnum + 1)) == FAIL)
|
|
2125 return;
|
|
2126
|
|
2127 pos = oap->start;
|
|
2128 #ifdef FEAT_VISUAL
|
|
2129 if (oap->block_mode) /* Visual block mode */
|
|
2130 {
|
|
2131 for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
|
|
2132 {
|
|
2133 block_prep(oap, &bd, pos.lnum, FALSE);
|
|
2134 pos.col = bd.textcol;
|
|
2135 for (done = 0; done < bd.textlen; ++done)
|
|
2136 {
|
|
2137 did_change |= swapchar(oap->op_type, &pos);
|
|
2138 # ifdef FEAT_MBYTE
|
|
2139 col = pos.col + 1;
|
|
2140 # endif
|
|
2141 if (inc(&pos) == -1) /* at end of file */
|
|
2142 break;
|
|
2143 # ifdef FEAT_MBYTE
|
|
2144 if (pos.col > col)
|
|
2145 /* Count extra bytes of a multi-byte character. */
|
|
2146 done += pos.col - col;
|
|
2147 # endif
|
|
2148 }
|
|
2149 # ifdef FEAT_NETBEANS_INTG
|
|
2150 if (usingNetbeans && did_change)
|
|
2151 {
|
|
2152 char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
|
|
2153
|
33
|
2154 netbeans_removed(curbuf, pos.lnum, bd.textcol,
|
|
2155 (long)bd.textlen);
|
7
|
2156 netbeans_inserted(curbuf, pos.lnum, bd.textcol,
|
33
|
2157 &ptr[bd.textcol], bd.textlen);
|
7
|
2158 }
|
|
2159 # endif
|
|
2160 }
|
|
2161 if (did_change)
|
|
2162 changed_lines(oap->start.lnum, 0, oap->end.lnum + 1, 0L);
|
|
2163 }
|
|
2164 else /* not block mode */
|
|
2165 #endif
|
|
2166 {
|
|
2167 if (oap->motion_type == MLINE)
|
|
2168 {
|
|
2169 oap->start.col = 0;
|
|
2170 pos.col = 0;
|
|
2171 oap->end.col = (colnr_T)STRLEN(ml_get(oap->end.lnum));
|
|
2172 if (oap->end.col)
|
|
2173 --oap->end.col;
|
|
2174 }
|
|
2175 else if (!oap->inclusive)
|
|
2176 dec(&(oap->end));
|
|
2177
|
|
2178 while (ltoreq(pos, oap->end))
|
|
2179 {
|
|
2180 did_change |= swapchar(oap->op_type, &pos);
|
|
2181 if (inc(&pos) == -1) /* at end of file */
|
|
2182 break;
|
|
2183 }
|
|
2184 if (did_change)
|
|
2185 {
|
|
2186 changed_lines(oap->start.lnum, oap->start.col, oap->end.lnum + 1,
|
|
2187 0L);
|
|
2188 #ifdef FEAT_NETBEANS_INTG
|
|
2189 if (usingNetbeans && did_change)
|
|
2190 {
|
|
2191 char_u *ptr;
|
|
2192 int count;
|
|
2193
|
|
2194 pos = oap->start;
|
|
2195 while (pos.lnum < oap->end.lnum)
|
|
2196 {
|
|
2197 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
|
|
2198 count = STRLEN(ptr) - pos.col;
|
33
|
2199 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
|
7
|
2200 netbeans_inserted(curbuf, pos.lnum, pos.col,
|
33
|
2201 &ptr[pos.col], count);
|
7
|
2202 pos.col = 0;
|
|
2203 pos.lnum++;
|
|
2204 }
|
|
2205 ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
|
|
2206 count = oap->end.col - pos.col + 1;
|
33
|
2207 netbeans_removed(curbuf, pos.lnum, pos.col, (long)count);
|
7
|
2208 netbeans_inserted(curbuf, pos.lnum, pos.col,
|
33
|
2209 &ptr[pos.col], count);
|
7
|
2210 }
|
|
2211 #endif
|
|
2212 }
|
|
2213 }
|
|
2214
|
|
2215 #ifdef FEAT_VISUAL
|
|
2216 if (!did_change && oap->is_VIsual)
|
|
2217 /* No change: need to remove the Visual selection */
|
|
2218 redraw_curbuf_later(INVERTED);
|
|
2219 #endif
|
|
2220
|
|
2221 /*
|
|
2222 * Set '[ and '] marks.
|
|
2223 */
|
|
2224 curbuf->b_op_start = oap->start;
|
|
2225 curbuf->b_op_end = oap->end;
|
|
2226
|
|
2227 if (oap->line_count > p_report)
|
|
2228 {
|
|
2229 if (oap->line_count == 1)
|
|
2230 MSG(_("1 line changed"));
|
|
2231 else
|
|
2232 smsg((char_u *)_("%ld lines changed"), oap->line_count);
|
|
2233 }
|
|
2234 }
|
|
2235
|
|
2236 /*
|
|
2237 * If op_type == OP_UPPER: make uppercase,
|
|
2238 * if op_type == OP_LOWER: make lowercase,
|
|
2239 * if op_type == OP_ROT13: do rot13 encoding,
|
|
2240 * else swap case of character at 'pos'
|
|
2241 * returns TRUE when something actually changed.
|
|
2242 */
|
|
2243 int
|
|
2244 swapchar(op_type, pos)
|
|
2245 int op_type;
|
|
2246 pos_T *pos;
|
|
2247 {
|
|
2248 int c;
|
|
2249 int nc;
|
|
2250
|
|
2251 c = gchar_pos(pos);
|
|
2252
|
|
2253 /* Only do rot13 encoding for ASCII characters. */
|
|
2254 if (c >= 0x80 && op_type == OP_ROT13)
|
|
2255 return FALSE;
|
|
2256
|
|
2257 #ifdef FEAT_MBYTE
|
|
2258 if (enc_dbcs != 0 && c >= 0x100) /* No lower/uppercase letter */
|
|
2259 return FALSE;
|
|
2260 #endif
|
|
2261 nc = c;
|
|
2262 if (MB_ISLOWER(c))
|
|
2263 {
|
|
2264 if (op_type == OP_ROT13)
|
|
2265 nc = ROT13(c, 'a');
|
|
2266 else if (op_type != OP_LOWER)
|
|
2267 nc = MB_TOUPPER(c);
|
|
2268 }
|
|
2269 else if (MB_ISUPPER(c))
|
|
2270 {
|
|
2271 if (op_type == OP_ROT13)
|
|
2272 nc = ROT13(c, 'A');
|
|
2273 else if (op_type != OP_UPPER)
|
|
2274 nc = MB_TOLOWER(c);
|
|
2275 }
|
|
2276 if (nc != c)
|
|
2277 {
|
|
2278 #ifdef FEAT_MBYTE
|
|
2279 if (enc_utf8 && (c >= 0x80 || nc >= 0x80))
|
|
2280 {
|
|
2281 pos_T sp = curwin->w_cursor;
|
|
2282
|
|
2283 curwin->w_cursor = *pos;
|
|
2284 del_char(FALSE);
|
|
2285 ins_char(nc);
|
|
2286 curwin->w_cursor = sp;
|
|
2287 }
|
|
2288 else
|
|
2289 #endif
|
|
2290 pchar(*pos, nc);
|
|
2291 return TRUE;
|
|
2292 }
|
|
2293 return FALSE;
|
|
2294 }
|
|
2295
|
|
2296 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
|
|
2297 /*
|
|
2298 * op_insert - Insert and append operators for Visual mode.
|
|
2299 */
|
|
2300 void
|
|
2301 op_insert(oap, count1)
|
|
2302 oparg_T *oap;
|
|
2303 long count1;
|
|
2304 {
|
|
2305 long ins_len, pre_textlen = 0;
|
|
2306 char_u *firstline, *ins_text;
|
|
2307 struct block_def bd;
|
|
2308 int i;
|
|
2309
|
|
2310 /* edit() changes this - record it for OP_APPEND */
|
|
2311 bd.is_MAX = (curwin->w_curswant == MAXCOL);
|
|
2312
|
|
2313 /* vis block is still marked. Get rid of it now. */
|
|
2314 curwin->w_cursor.lnum = oap->start.lnum;
|
|
2315 update_screen(INVERTED);
|
|
2316
|
|
2317 if (oap->block_mode)
|
|
2318 {
|
|
2319 #ifdef FEAT_VIRTUALEDIT
|
|
2320 /* When 'virtualedit' is used, need to insert the extra spaces before
|
|
2321 * doing block_prep(). When only "block" is used, virtual edit is
|
|
2322 * already disabled, but still need it when calling
|
|
2323 * coladvance_force(). */
|
|
2324 if (curwin->w_cursor.coladd > 0)
|
|
2325 {
|
|
2326 int old_ve_flags = ve_flags;
|
|
2327
|
|
2328 ve_flags = VE_ALL;
|
|
2329 if (u_save_cursor() == FAIL)
|
|
2330 return;
|
|
2331 coladvance_force(oap->op_type == OP_APPEND
|
|
2332 ? oap->end_vcol + 1 : getviscol());
|
|
2333 if (oap->op_type == OP_APPEND)
|
|
2334 --curwin->w_cursor.col;
|
|
2335 ve_flags = old_ve_flags;
|
|
2336 }
|
|
2337 #endif
|
|
2338 /* Get the info about the block before entering the text */
|
|
2339 block_prep(oap, &bd, oap->start.lnum, TRUE);
|
|
2340 firstline = ml_get(oap->start.lnum) + bd.textcol;
|
|
2341 if (oap->op_type == OP_APPEND)
|
|
2342 firstline += bd.textlen;
|
|
2343 pre_textlen = (long)STRLEN(firstline);
|
|
2344 }
|
|
2345
|
|
2346 if (oap->op_type == OP_APPEND)
|
|
2347 {
|
|
2348 if (oap->block_mode
|
|
2349 #ifdef FEAT_VIRTUALEDIT
|
|
2350 && curwin->w_cursor.coladd == 0
|
|
2351 #endif
|
|
2352 )
|
|
2353 {
|
|
2354 /* Move the cursor to the character right of the block. */
|
|
2355 curwin->w_set_curswant = TRUE;
|
|
2356 while (*ml_get_cursor() != NUL
|
|
2357 && (curwin->w_cursor.col < bd.textcol + bd.textlen))
|
|
2358 ++curwin->w_cursor.col;
|
|
2359 if (bd.is_short && !bd.is_MAX)
|
|
2360 {
|
|
2361 /* First line was too short, make it longer and adjust the
|
|
2362 * values in "bd". */
|
|
2363 if (u_save_cursor() == FAIL)
|
|
2364 return;
|
|
2365 for (i = 0; i < bd.endspaces; ++i)
|
|
2366 ins_char(' ');
|
|
2367 bd.textlen += bd.endspaces;
|
|
2368 }
|
|
2369 }
|
|
2370 else
|
|
2371 {
|
|
2372 curwin->w_cursor = oap->end;
|
|
2373
|
|
2374 /* Works just like an 'i'nsert on the next character. */
|
|
2375 if (!lineempty(curwin->w_cursor.lnum)
|
|
2376 && oap->start_vcol != oap->end_vcol)
|
|
2377 inc_cursor();
|
|
2378 }
|
|
2379 }
|
|
2380
|
|
2381 edit(NUL, FALSE, (linenr_T)count1);
|
|
2382
|
|
2383 /* if user has moved off this line, we don't know what to do, so do
|
|
2384 * nothing */
|
|
2385 if (curwin->w_cursor.lnum != oap->start.lnum)
|
|
2386 return;
|
|
2387
|
|
2388 if (oap->block_mode)
|
|
2389 {
|
|
2390 struct block_def bd2;
|
|
2391
|
|
2392 /*
|
|
2393 * Spaces and tabs in the indent may have changed to other spaces and
|
|
2394 * tabs. Get the starting column again and correct the lenght.
|
|
2395 * Don't do this when "$" used, end-of-line will have changed.
|
|
2396 */
|
|
2397 block_prep(oap, &bd2, oap->start.lnum, TRUE);
|
|
2398 if (!bd.is_MAX || bd2.textlen < bd.textlen)
|
|
2399 {
|
|
2400 if (oap->op_type == OP_APPEND)
|
|
2401 {
|
|
2402 pre_textlen += bd2.textlen - bd.textlen;
|
|
2403 if (bd2.endspaces)
|
|
2404 --bd2.textlen;
|
|
2405 }
|
|
2406 bd.textcol = bd2.textcol;
|
|
2407 bd.textlen = bd2.textlen;
|
|
2408 }
|
|
2409
|
|
2410 /*
|
|
2411 * Subsequent calls to ml_get() flush the firstline data - take a
|
|
2412 * copy of the required string.
|
|
2413 */
|
|
2414 firstline = ml_get(oap->start.lnum) + bd.textcol;
|
|
2415 if (oap->op_type == OP_APPEND)
|
|
2416 firstline += bd.textlen;
|
|
2417 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
|
|
2418 {
|
|
2419 ins_text = vim_strnsave(firstline, (int)ins_len);
|
|
2420 if (ins_text != NULL)
|
|
2421 {
|
|
2422 /* block handled here */
|
|
2423 if (u_save(oap->start.lnum,
|
|
2424 (linenr_T)(oap->end.lnum + 1)) == OK)
|
|
2425 block_insert(oap, ins_text, (oap->op_type == OP_INSERT),
|
|
2426 &bd);
|
|
2427
|
|
2428 curwin->w_cursor.col = oap->start.col;
|
|
2429 check_cursor();
|
|
2430 vim_free(ins_text);
|
|
2431 }
|
|
2432 }
|
|
2433 }
|
|
2434 }
|
|
2435 #endif
|
|
2436
|
|
2437 /*
|
|
2438 * op_change - handle a change operation
|
|
2439 *
|
|
2440 * return TRUE if edit() returns because of a CTRL-O command
|
|
2441 */
|
|
2442 int
|
|
2443 op_change(oap)
|
|
2444 oparg_T *oap;
|
|
2445 {
|
|
2446 colnr_T l;
|
|
2447 int retval;
|
|
2448 #ifdef FEAT_VISUALEXTRA
|
|
2449 long offset;
|
|
2450 linenr_T linenr;
|
|
2451 long ins_len, pre_textlen = 0;
|
|
2452 char_u *firstline;
|
|
2453 char_u *ins_text, *newp, *oldp;
|
|
2454 struct block_def bd;
|
|
2455 #endif
|
|
2456
|
|
2457 l = oap->start.col;
|
|
2458 if (oap->motion_type == MLINE)
|
|
2459 {
|
|
2460 l = 0;
|
|
2461 #ifdef FEAT_SMARTINDENT
|
|
2462 if (!p_paste && curbuf->b_p_si
|
|
2463 # ifdef FEAT_CINDENT
|
|
2464 && !curbuf->b_p_cin
|
|
2465 # endif
|
|
2466 )
|
|
2467 can_si = TRUE; /* It's like opening a new line, do si */
|
|
2468 #endif
|
|
2469 }
|
|
2470
|
|
2471 /* First delete the text in the region. In an empty buffer only need to
|
|
2472 * save for undo */
|
|
2473 if (curbuf->b_ml.ml_flags & ML_EMPTY)
|
|
2474 {
|
|
2475 if (u_save_cursor() == FAIL)
|
|
2476 return FALSE;
|
|
2477 }
|
|
2478 else if (op_delete(oap) == FAIL)
|
|
2479 return FALSE;
|
|
2480
|
|
2481 if ((l > curwin->w_cursor.col) && !lineempty(curwin->w_cursor.lnum)
|
|
2482 && !virtual_op)
|
|
2483 inc_cursor();
|
|
2484
|
|
2485 #ifdef FEAT_VISUALEXTRA
|
|
2486 /* check for still on same line (<CR> in inserted text meaningless) */
|
|
2487 /* skip blank lines too */
|
|
2488 if (oap->block_mode)
|
|
2489 {
|
|
2490 # ifdef FEAT_VIRTUALEDIT
|
|
2491 /* Add spaces before getting the current line length. */
|
|
2492 if (virtual_op && (curwin->w_cursor.coladd > 0
|
|
2493 || gchar_cursor() == NUL))
|
|
2494 coladvance_force(getviscol());
|
|
2495 # endif
|
|
2496 pre_textlen = (long)STRLEN(ml_get(oap->start.lnum));
|
|
2497 bd.textcol = curwin->w_cursor.col;
|
|
2498 }
|
|
2499 #endif
|
|
2500
|
|
2501 #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
|
|
2502 if (oap->motion_type == MLINE)
|
|
2503 fix_indent();
|
|
2504 #endif
|
|
2505
|
|
2506 retval = edit(NUL, FALSE, (linenr_T)1);
|
|
2507
|
|
2508 #ifdef FEAT_VISUALEXTRA
|
|
2509 /*
|
39
|
2510 * In Visual block mode, handle copying the new text to all lines of the
|
7
|
2511 * block.
|
|
2512 */
|
|
2513 if (oap->block_mode && oap->start.lnum != oap->end.lnum)
|
|
2514 {
|
|
2515 firstline = ml_get(oap->start.lnum);
|
|
2516 /*
|
|
2517 * Subsequent calls to ml_get() flush the firstline data - take a
|
|
2518 * copy of the required bit.
|
|
2519 */
|
|
2520 if ((ins_len = (long)STRLEN(firstline) - pre_textlen) > 0)
|
|
2521 {
|
|
2522 if ((ins_text = alloc_check((unsigned)(ins_len + 1))) != NULL)
|
|
2523 {
|
|
2524 STRNCPY(ins_text, firstline + bd.textcol, ins_len);
|
|
2525 ins_text[ins_len] = NUL;
|
|
2526 for (linenr = oap->start.lnum + 1; linenr <= oap->end.lnum;
|
|
2527 linenr++)
|
|
2528 {
|
|
2529 block_prep(oap, &bd, linenr, TRUE);
|
|
2530 if (!bd.is_short || virtual_op)
|
|
2531 {
|
|
2532 # ifdef FEAT_VIRTUALEDIT
|
|
2533 pos_T vpos;
|
|
2534
|
|
2535 /* If the block starts in virtual space, count the
|
|
2536 * initial coladd offset as part of "startspaces" */
|
|
2537 if (bd.is_short)
|
|
2538 {
|
|
2539 linenr_T lnum = curwin->w_cursor.lnum;
|
|
2540
|
|
2541 curwin->w_cursor.lnum = linenr;
|
|
2542 (void)getvpos(&vpos, oap->start_vcol);
|
|
2543 curwin->w_cursor.lnum = lnum;
|
|
2544 }
|
|
2545 else
|
|
2546 vpos.coladd = 0;
|
|
2547 # endif
|
|
2548 oldp = ml_get(linenr);
|
|
2549 newp = alloc_check((unsigned)(STRLEN(oldp)
|
|
2550 # ifdef FEAT_VIRTUALEDIT
|
|
2551 + vpos.coladd
|
|
2552 # endif
|
|
2553 + ins_len + 1));
|
|
2554 if (newp == NULL)
|
|
2555 continue;
|
|
2556 /* copy up to block start */
|
|
2557 mch_memmove(newp, oldp, (size_t)bd.textcol);
|
|
2558 offset = bd.textcol;
|
|
2559 # ifdef FEAT_VIRTUALEDIT
|
|
2560 copy_spaces(newp + offset, (size_t)vpos.coladd);
|
|
2561 offset += vpos.coladd;
|
|
2562 # endif
|
|
2563 mch_memmove(newp + offset, ins_text, (size_t)ins_len);
|
|
2564 offset += ins_len;
|
|
2565 oldp += bd.textcol;
|
|
2566 mch_memmove(newp + offset, oldp, STRLEN(oldp) + 1);
|
|
2567 ml_replace(linenr, newp, FALSE);
|
|
2568 }
|
|
2569 }
|
|
2570 check_cursor();
|
|
2571
|
|
2572 changed_lines(oap->start.lnum + 1, 0, oap->end.lnum + 1, 0L);
|
|
2573 }
|
|
2574 vim_free(ins_text);
|
|
2575 }
|
|
2576 }
|
|
2577 #endif
|
|
2578
|
|
2579 return retval;
|
|
2580 }
|
|
2581
|
|
2582 /*
|
|
2583 * set all the yank registers to empty (called from main())
|
|
2584 */
|
|
2585 void
|
|
2586 init_yank()
|
|
2587 {
|
|
2588 int i;
|
|
2589
|
|
2590 for (i = 0; i < NUM_REGISTERS; ++i)
|
|
2591 y_regs[i].y_array = NULL;
|
|
2592 }
|
|
2593
|
|
2594 /*
|
|
2595 * Free "n" lines from the current yank register.
|
|
2596 * Called for normal freeing and in case of error.
|
|
2597 */
|
|
2598 static void
|
|
2599 free_yank(n)
|
|
2600 long n;
|
|
2601 {
|
|
2602 if (y_current->y_array != NULL)
|
|
2603 {
|
|
2604 long i;
|
|
2605
|
|
2606 for (i = n; --i >= 0; )
|
|
2607 {
|
|
2608 #ifdef AMIGA /* only for very slow machines */
|
|
2609 if ((i & 1023) == 1023) /* this may take a while */
|
|
2610 {
|
|
2611 /*
|
|
2612 * This message should never cause a hit-return message.
|
|
2613 * Overwrite this message with any next message.
|
|
2614 */
|
|
2615 ++no_wait_return;
|
|
2616 smsg((char_u *)_("freeing %ld lines"), i + 1);
|
|
2617 --no_wait_return;
|
|
2618 msg_didout = FALSE;
|
|
2619 msg_col = 0;
|
|
2620 }
|
|
2621 #endif
|
|
2622 vim_free(y_current->y_array[i]);
|
|
2623 }
|
|
2624 vim_free(y_current->y_array);
|
|
2625 y_current->y_array = NULL;
|
|
2626 #ifdef AMIGA
|
|
2627 if (n >= 1000)
|
|
2628 MSG("");
|
|
2629 #endif
|
|
2630 }
|
|
2631 }
|
|
2632
|
|
2633 static void
|
|
2634 free_yank_all()
|
|
2635 {
|
|
2636 free_yank(y_current->y_size);
|
|
2637 }
|
|
2638
|
|
2639 /*
|
|
2640 * Yank the text between "oap->start" and "oap->end" into a yank register.
|
|
2641 * If we are to append (uppercase register), we first yank into a new yank
|
|
2642 * register and then concatenate the old and the new one (so we keep the old
|
|
2643 * one in case of out-of-memory).
|
|
2644 *
|
|
2645 * return FAIL for failure, OK otherwise
|
|
2646 */
|
|
2647 int
|
|
2648 op_yank(oap, deleting, mess)
|
|
2649 oparg_T *oap;
|
|
2650 int deleting;
|
|
2651 int mess;
|
|
2652 {
|
|
2653 long y_idx; /* index in y_array[] */
|
|
2654 struct yankreg *curr; /* copy of y_current */
|
|
2655 struct yankreg newreg; /* new yank register when appending */
|
|
2656 char_u **new_ptr;
|
|
2657 linenr_T lnum; /* current line number */
|
|
2658 long j;
|
|
2659 int yanktype = oap->motion_type;
|
|
2660 long yanklines = oap->line_count;
|
|
2661 linenr_T yankendlnum = oap->end.lnum;
|
|
2662 char_u *p;
|
|
2663 char_u *pnew;
|
|
2664 struct block_def bd;
|
|
2665
|
|
2666 /* check for read-only register */
|
|
2667 if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
|
|
2668 {
|
|
2669 beep_flush();
|
|
2670 return FAIL;
|
|
2671 }
|
|
2672 if (oap->regname == '_') /* black hole: nothing to do */
|
|
2673 return OK;
|
|
2674
|
|
2675 #ifdef FEAT_CLIPBOARD
|
|
2676 if (!clip_star.available && oap->regname == '*')
|
|
2677 oap->regname = 0;
|
|
2678 else if (!clip_plus.available && oap->regname == '+')
|
|
2679 oap->regname = 0;
|
|
2680 #endif
|
|
2681
|
|
2682 if (!deleting) /* op_delete() already set y_current */
|
|
2683 get_yank_register(oap->regname, TRUE);
|
|
2684
|
|
2685 curr = y_current;
|
|
2686 /* append to existing contents */
|
|
2687 if (y_append && y_current->y_array != NULL)
|
|
2688 y_current = &newreg;
|
|
2689 else
|
|
2690 free_yank_all(); /* free previously yanked lines */
|
|
2691
|
|
2692 /*
|
|
2693 * If the cursor was in column 1 before and after the movement, and the
|
|
2694 * operator is not inclusive, the yank is always linewise.
|
|
2695 */
|
|
2696 if ( oap->motion_type == MCHAR
|
|
2697 && oap->start.col == 0
|
|
2698 && !oap->inclusive
|
|
2699 #ifdef FEAT_VISUAL
|
|
2700 && (!oap->is_VIsual || *p_sel == 'o')
|
50
|
2701 && !oap->block_mode
|
7
|
2702 #endif
|
|
2703 && oap->end.col == 0
|
|
2704 && yanklines > 1)
|
|
2705 {
|
|
2706 yanktype = MLINE;
|
|
2707 --yankendlnum;
|
|
2708 --yanklines;
|
|
2709 }
|
|
2710
|
|
2711 y_current->y_size = yanklines;
|
|
2712 y_current->y_type = yanktype; /* set the yank register type */
|
|
2713 #ifdef FEAT_VISUAL
|
|
2714 y_current->y_width = 0;
|
|
2715 #endif
|
|
2716 y_current->y_array = (char_u **)lalloc_clear((long_u)(sizeof(char_u *) *
|
|
2717 yanklines), TRUE);
|
|
2718
|
|
2719 if (y_current->y_array == NULL)
|
|
2720 {
|
|
2721 y_current = curr;
|
|
2722 return FAIL;
|
|
2723 }
|
|
2724
|
|
2725 y_idx = 0;
|
|
2726 lnum = oap->start.lnum;
|
|
2727
|
|
2728 #ifdef FEAT_VISUAL
|
|
2729 if (oap->block_mode)
|
|
2730 {
|
|
2731 /* Visual block mode */
|
|
2732 y_current->y_type = MBLOCK; /* set the yank register type */
|
|
2733 y_current->y_width = oap->end_vcol - oap->start_vcol;
|
|
2734
|
|
2735 if (curwin->w_curswant == MAXCOL && y_current->y_width > 0)
|
|
2736 y_current->y_width--;
|
|
2737 }
|
|
2738 #endif
|
|
2739
|
|
2740 for ( ; lnum <= yankendlnum; lnum++, y_idx++)
|
|
2741 {
|
|
2742 switch (y_current->y_type)
|
|
2743 {
|
|
2744 #ifdef FEAT_VISUAL
|
|
2745 case MBLOCK:
|
|
2746 block_prep(oap, &bd, lnum, FALSE);
|
|
2747 if (yank_copy_line(&bd, y_idx) == FAIL)
|
|
2748 goto fail;
|
|
2749 break;
|
|
2750 #endif
|
|
2751
|
|
2752 case MLINE:
|
|
2753 if ((y_current->y_array[y_idx] =
|
|
2754 vim_strsave(ml_get(lnum))) == NULL)
|
|
2755 goto fail;
|
|
2756 break;
|
|
2757
|
|
2758 case MCHAR:
|
|
2759 {
|
|
2760 colnr_T startcol = 0, endcol = MAXCOL;
|
|
2761 #ifdef FEAT_VIRTUALEDIT
|
|
2762 int is_oneChar = FALSE;
|
|
2763 colnr_T cs, ce;
|
|
2764 #endif
|
|
2765 p = ml_get(lnum);
|
|
2766 bd.startspaces = 0;
|
|
2767 bd.endspaces = 0;
|
|
2768
|
|
2769 if (lnum == oap->start.lnum)
|
|
2770 {
|
|
2771 startcol = oap->start.col;
|
|
2772 #ifdef FEAT_VIRTUALEDIT
|
|
2773 if (virtual_op)
|
|
2774 {
|
|
2775 getvcol(curwin, &oap->start, &cs, NULL, &ce);
|
|
2776 if (ce != cs && oap->start.coladd > 0)
|
|
2777 {
|
|
2778 /* Part of a tab selected -- but don't
|
|
2779 * double-count it. */
|
|
2780 bd.startspaces = (ce - cs + 1)
|
|
2781 - oap->start.coladd;
|
|
2782 startcol++;
|
|
2783 }
|
|
2784 }
|
|
2785 #endif
|
|
2786 }
|
|
2787
|
|
2788 if (lnum == oap->end.lnum)
|
|
2789 {
|
|
2790 endcol = oap->end.col;
|
|
2791 #ifdef FEAT_VIRTUALEDIT
|
|
2792 if (virtual_op)
|
|
2793 {
|
|
2794 getvcol(curwin, &oap->end, &cs, NULL, &ce);
|
|
2795 if (p[endcol] == NUL || (cs + oap->end.coladd < ce
|
|
2796 # ifdef FEAT_MBYTE
|
|
2797 /* Don't add space for double-wide
|
|
2798 * char; endcol will be on last byte
|
|
2799 * of multi-byte char. */
|
|
2800 && (*mb_head_off)(p, p + endcol) == 0
|
|
2801 # endif
|
|
2802 ))
|
|
2803 {
|
|
2804 if (oap->start.lnum == oap->end.lnum
|
|
2805 && oap->start.col == oap->end.col)
|
|
2806 {
|
|
2807 /* Special case: inside a single char */
|
|
2808 is_oneChar = TRUE;
|
|
2809 bd.startspaces = oap->end.coladd
|
|
2810 - oap->start.coladd + oap->inclusive;
|
|
2811 endcol = startcol;
|
|
2812 }
|
|
2813 else
|
|
2814 {
|
|
2815 bd.endspaces = oap->end.coladd
|
|
2816 + oap->inclusive;
|
|
2817 endcol -= oap->inclusive;
|
|
2818 }
|
|
2819 }
|
|
2820 }
|
|
2821 #endif
|
|
2822 }
|
|
2823 if (startcol > endcol
|
|
2824 #ifdef FEAT_VIRTUALEDIT
|
|
2825 || is_oneChar
|
|
2826 #endif
|
|
2827 )
|
|
2828 bd.textlen = 0;
|
|
2829 else
|
|
2830 {
|
|
2831 if (endcol == MAXCOL)
|
|
2832 endcol = STRLEN(p);
|
|
2833 bd.textlen = endcol - startcol + oap->inclusive;
|
|
2834 }
|
|
2835 bd.textstart = p + startcol;
|
|
2836 if (yank_copy_line(&bd, y_idx) == FAIL)
|
|
2837 goto fail;
|
|
2838 break;
|
|
2839 }
|
|
2840 /* NOTREACHED */
|
|
2841 }
|
|
2842 }
|
|
2843
|
|
2844 if (curr != y_current) /* append the new block to the old block */
|
|
2845 {
|
|
2846 new_ptr = (char_u **)lalloc((long_u)(sizeof(char_u *) *
|
|
2847 (curr->y_size + y_current->y_size)), TRUE);
|
|
2848 if (new_ptr == NULL)
|
|
2849 goto fail;
|
|
2850 for (j = 0; j < curr->y_size; ++j)
|
|
2851 new_ptr[j] = curr->y_array[j];
|
|
2852 vim_free(curr->y_array);
|
|
2853 curr->y_array = new_ptr;
|
|
2854
|
|
2855 if (yanktype == MLINE) /* MLINE overrides MCHAR and MBLOCK */
|
|
2856 curr->y_type = MLINE;
|
|
2857
|
164
|
2858 /* Concatenate the last line of the old block with the first line of
|
|
2859 * the new block, unless being Vi compatible. */
|
|
2860 if (curr->y_type == MCHAR && vim_strchr(p_cpo, CPO_REGAPPEND) == NULL)
|
7
|
2861 {
|
|
2862 pnew = lalloc((long_u)(STRLEN(curr->y_array[curr->y_size - 1])
|
|
2863 + STRLEN(y_current->y_array[0]) + 1), TRUE);
|
|
2864 if (pnew == NULL)
|
|
2865 {
|
|
2866 y_idx = y_current->y_size - 1;
|
|
2867 goto fail;
|
|
2868 }
|
|
2869 STRCPY(pnew, curr->y_array[--j]);
|
|
2870 STRCAT(pnew, y_current->y_array[0]);
|
|
2871 vim_free(curr->y_array[j]);
|
|
2872 vim_free(y_current->y_array[0]);
|
|
2873 curr->y_array[j++] = pnew;
|
|
2874 y_idx = 1;
|
|
2875 }
|
|
2876 else
|
|
2877 y_idx = 0;
|
|
2878 while (y_idx < y_current->y_size)
|
|
2879 curr->y_array[j++] = y_current->y_array[y_idx++];
|
|
2880 curr->y_size = j;
|
|
2881 vim_free(y_current->y_array);
|
|
2882 y_current = curr;
|
|
2883 }
|
|
2884 if (mess) /* Display message about yank? */
|
|
2885 {
|
|
2886 if (yanktype == MCHAR
|
|
2887 #ifdef FEAT_VISUAL
|
|
2888 && !oap->block_mode
|
|
2889 #endif
|
|
2890 && yanklines == 1)
|
|
2891 yanklines = 0;
|
|
2892 /* Some versions of Vi use ">=" here, some don't... */
|
|
2893 if (yanklines > p_report)
|
|
2894 {
|
|
2895 /* redisplay now, so message is not deleted */
|
|
2896 update_topline_redraw();
|
|
2897 if (yanklines == 1)
|
205
|
2898 {
|
|
2899 #ifdef FEAT_VISUAL
|
|
2900 if (oap->block_mode)
|
|
2901 MSG(_("block of 1 line yanked"));
|
|
2902 else
|
|
2903 #endif
|
|
2904 MSG(_("1 line yanked"));
|
|
2905 }
|
|
2906 #ifdef FEAT_VISUAL
|
|
2907 else if (oap->block_mode)
|
|
2908 smsg((char_u *)_("block of %ld lines yanked"), yanklines);
|
|
2909 #endif
|
7
|
2910 else
|
|
2911 smsg((char_u *)_("%ld lines yanked"), yanklines);
|
|
2912 }
|
|
2913 }
|
|
2914
|
|
2915 /*
|
|
2916 * Set "'[" and "']" marks.
|
|
2917 */
|
|
2918 curbuf->b_op_start = oap->start;
|
|
2919 curbuf->b_op_end = oap->end;
|
36
|
2920 if (yanktype == MLINE
|
|
2921 #ifdef FEAT_VISUAL
|
|
2922 && !oap->block_mode
|
|
2923 #endif
|
|
2924 )
|
|
2925 {
|
|
2926 curbuf->b_op_start.col = 0;
|
|
2927 curbuf->b_op_end.col = MAXCOL;
|
|
2928 }
|
7
|
2929
|
|
2930 #ifdef FEAT_CLIPBOARD
|
|
2931 /*
|
|
2932 * If we were yanking to the '*' register, send result to clipboard.
|
|
2933 * If no register was specified, and "unnamed" in 'clipboard', make a copy
|
|
2934 * to the '*' register.
|
|
2935 */
|
|
2936 if (clip_star.available
|
|
2937 && (curr == &(y_regs[STAR_REGISTER])
|
|
2938 || (!deleting && oap->regname == 0 && clip_unnamed)))
|
|
2939 {
|
|
2940 if (curr != &(y_regs[STAR_REGISTER]))
|
|
2941 /* Copy the text from register 0 to the clipboard register. */
|
|
2942 copy_yank_reg(&(y_regs[STAR_REGISTER]));
|
|
2943
|
|
2944 clip_own_selection(&clip_star);
|
|
2945 clip_gen_set_selection(&clip_star);
|
|
2946 }
|
|
2947
|
|
2948 # ifdef FEAT_X11
|
|
2949 /*
|
|
2950 * If we were yanking to the '+' register, send result to selection.
|
|
2951 * Also copy to the '*' register, in case auto-select is off.
|
|
2952 */
|
|
2953 else if (clip_plus.available && curr == &(y_regs[PLUS_REGISTER]))
|
|
2954 {
|
|
2955 /* No need to copy to * register upon 'unnamed' now - see below */
|
|
2956 clip_own_selection(&clip_plus);
|
|
2957 clip_gen_set_selection(&clip_plus);
|
|
2958 if (!clip_isautosel())
|
|
2959 {
|
|
2960 copy_yank_reg(&(y_regs[STAR_REGISTER]));
|
|
2961 clip_own_selection(&clip_star);
|
|
2962 clip_gen_set_selection(&clip_star);
|
|
2963 }
|
|
2964 }
|
|
2965 # endif
|
|
2966 #endif
|
|
2967
|
|
2968 return OK;
|
|
2969
|
|
2970 fail: /* free the allocated lines */
|
|
2971 free_yank(y_idx + 1);
|
|
2972 y_current = curr;
|
|
2973 return FAIL;
|
|
2974 }
|
|
2975
|
|
2976 static int
|
|
2977 yank_copy_line(bd, y_idx)
|
|
2978 struct block_def *bd;
|
|
2979 long y_idx;
|
|
2980 {
|
|
2981 char_u *pnew;
|
|
2982
|
|
2983 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1))
|
|
2984 == NULL)
|
|
2985 return FAIL;
|
|
2986 y_current->y_array[y_idx] = pnew;
|
|
2987 copy_spaces(pnew, (size_t)bd->startspaces);
|
|
2988 pnew += bd->startspaces;
|
|
2989 mch_memmove(pnew, bd->textstart, (size_t)bd->textlen);
|
|
2990 pnew += bd->textlen;
|
|
2991 copy_spaces(pnew, (size_t)bd->endspaces);
|
|
2992 pnew += bd->endspaces;
|
|
2993 *pnew = NUL;
|
|
2994 return OK;
|
|
2995 }
|
|
2996
|
|
2997 #ifdef FEAT_CLIPBOARD
|
|
2998 /*
|
|
2999 * Make a copy of the y_current register to register "reg".
|
|
3000 */
|
|
3001 static void
|
|
3002 copy_yank_reg(reg)
|
|
3003 struct yankreg *reg;
|
|
3004 {
|
|
3005 struct yankreg *curr = y_current;
|
|
3006 long j;
|
|
3007
|
|
3008 y_current = reg;
|
|
3009 free_yank_all();
|
|
3010 *y_current = *curr;
|
|
3011 y_current->y_array = (char_u **)lalloc_clear(
|
|
3012 (long_u)(sizeof(char_u *) * y_current->y_size), TRUE);
|
|
3013 if (y_current->y_array == NULL)
|
|
3014 y_current->y_size = 0;
|
|
3015 else
|
|
3016 for (j = 0; j < y_current->y_size; ++j)
|
|
3017 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL)
|
|
3018 {
|
|
3019 free_yank(j);
|
|
3020 y_current->y_size = 0;
|
|
3021 break;
|
|
3022 }
|
|
3023 y_current = curr;
|
|
3024 }
|
|
3025 #endif
|
|
3026
|
|
3027 /*
|
140
|
3028 * Put contents of register "regname" into the text.
|
|
3029 * Caller must check "regname" to be valid!
|
|
3030 * "flags": PUT_FIXINDENT make indent look nice
|
|
3031 * PUT_CURSEND leave cursor after end of new text
|
|
3032 * PUT_LINE force linewise put (":put")
|
7
|
3033 */
|
|
3034 void
|
|
3035 do_put(regname, dir, count, flags)
|
|
3036 int regname;
|
|
3037 int dir; /* BACKWARD for 'P', FORWARD for 'p' */
|
|
3038 long count;
|
|
3039 int flags;
|
|
3040 {
|
|
3041 char_u *ptr;
|
|
3042 char_u *newp, *oldp;
|
|
3043 int yanklen;
|
|
3044 int totlen = 0; /* init for gcc */
|
|
3045 linenr_T lnum;
|
|
3046 colnr_T col;
|
|
3047 long i; /* index in y_array[] */
|
|
3048 int y_type;
|
|
3049 long y_size;
|
|
3050 #ifdef FEAT_VISUAL
|
|
3051 int oldlen;
|
|
3052 long y_width = 0;
|
|
3053 colnr_T vcol;
|
|
3054 int delcount;
|
|
3055 int incr = 0;
|
|
3056 long j;
|
|
3057 struct block_def bd;
|
|
3058 #endif
|
|
3059 char_u **y_array = NULL;
|
|
3060 long nr_lines = 0;
|
|
3061 pos_T new_cursor;
|
|
3062 int indent;
|
|
3063 int orig_indent = 0; /* init for gcc */
|
|
3064 int indent_diff = 0; /* init for gcc */
|
|
3065 int first_indent = TRUE;
|
|
3066 int lendiff = 0;
|
|
3067 pos_T old_pos;
|
|
3068 char_u *insert_string = NULL;
|
|
3069 int allocated = FALSE;
|
|
3070 long cnt;
|
|
3071
|
|
3072 #ifdef FEAT_CLIPBOARD
|
|
3073 /* Adjust register name for "unnamed" in 'clipboard'. */
|
|
3074 adjust_clip_reg(®name);
|
|
3075 (void)may_get_selection(regname);
|
|
3076 #endif
|
|
3077
|
|
3078 if (flags & PUT_FIXINDENT)
|
|
3079 orig_indent = get_indent();
|
|
3080
|
|
3081 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
|
|
3082 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
|
|
3083
|
|
3084 /*
|
|
3085 * Using inserted text works differently, because the register includes
|
|
3086 * special characters (newlines, etc.).
|
|
3087 */
|
|
3088 if (regname == '.')
|
|
3089 {
|
|
3090 (void)stuff_inserted((dir == FORWARD ? (count == -1 ? 'o' : 'a') :
|
|
3091 (count == -1 ? 'O' : 'i')), count, FALSE);
|
|
3092 /* Putting the text is done later, so can't really move the cursor to
|
|
3093 * the next character. Use "l" to simulate it. */
|
|
3094 if ((flags & PUT_CURSEND) && gchar_cursor() != NUL)
|
|
3095 stuffcharReadbuff('l');
|
|
3096 return;
|
|
3097 }
|
|
3098
|
|
3099 /*
|
|
3100 * For special registers '%' (file name), '#' (alternate file name) and
|
|
3101 * ':' (last command line), etc. we have to create a fake yank register.
|
|
3102 */
|
|
3103 if (get_spec_reg(regname, &insert_string, &allocated, TRUE))
|
|
3104 {
|
|
3105 if (insert_string == NULL)
|
|
3106 return;
|
|
3107 }
|
|
3108
|
|
3109 if (insert_string != NULL)
|
|
3110 {
|
|
3111 y_type = MCHAR;
|
|
3112 #ifdef FEAT_EVAL
|
|
3113 if (regname == '=')
|
|
3114 {
|
|
3115 /* For the = register we need to split the string at NL
|
|
3116 * characters. */
|
|
3117 /* Loop twice: count the number of lines and save them. */
|
|
3118 for (;;)
|
|
3119 {
|
|
3120 y_size = 0;
|
|
3121 ptr = insert_string;
|
|
3122 while (ptr != NULL)
|
|
3123 {
|
|
3124 if (y_array != NULL)
|
|
3125 y_array[y_size] = ptr;
|
|
3126 ++y_size;
|
|
3127 ptr = vim_strchr(ptr, '\n');
|
|
3128 if (ptr != NULL)
|
|
3129 {
|
|
3130 if (y_array != NULL)
|
|
3131 *ptr = NUL;
|
|
3132 ++ptr;
|
|
3133 /* A trailing '\n' makes the string linewise */
|
|
3134 if (*ptr == NUL)
|
|
3135 {
|
|
3136 y_type = MLINE;
|
|
3137 break;
|
|
3138 }
|
|
3139 }
|
|
3140 }
|
|
3141 if (y_array != NULL)
|
|
3142 break;
|
|
3143 y_array = (char_u **)alloc((unsigned)
|
|
3144 (y_size * sizeof(char_u *)));
|
|
3145 if (y_array == NULL)
|
|
3146 goto end;
|
|
3147 }
|
|
3148 }
|
|
3149 else
|
|
3150 #endif
|
|
3151 {
|
|
3152 y_size = 1; /* use fake one-line yank register */
|
|
3153 y_array = &insert_string;
|
|
3154 }
|
|
3155 }
|
|
3156 else
|
|
3157 {
|
|
3158 get_yank_register(regname, FALSE);
|
|
3159
|
|
3160 y_type = y_current->y_type;
|
|
3161 #ifdef FEAT_VISUAL
|
|
3162 y_width = y_current->y_width;
|
|
3163 #endif
|
|
3164 y_size = y_current->y_size;
|
|
3165 y_array = y_current->y_array;
|
|
3166 }
|
|
3167
|
|
3168 #ifdef FEAT_VISUAL
|
|
3169 if (y_type == MLINE)
|
|
3170 {
|
|
3171 if (flags & PUT_LINE_SPLIT)
|
|
3172 {
|
|
3173 /* "p" or "P" in Visual mode: split the lines to put the text in
|
|
3174 * between. */
|
|
3175 if (u_save_cursor() == FAIL)
|
|
3176 goto end;
|
|
3177 ptr = vim_strsave(ml_get_cursor());
|
|
3178 if (ptr == NULL)
|
|
3179 goto end;
|
|
3180 ml_append(curwin->w_cursor.lnum, ptr, (colnr_T)0, FALSE);
|
|
3181 vim_free(ptr);
|
|
3182
|
|
3183 ptr = vim_strnsave(ml_get_curline(), curwin->w_cursor.col);
|
|
3184 if (ptr == NULL)
|
|
3185 goto end;
|
|
3186 ml_replace(curwin->w_cursor.lnum, ptr, FALSE);
|
|
3187 ++nr_lines;
|
|
3188 dir = FORWARD;
|
|
3189 }
|
|
3190 if (flags & PUT_LINE_FORWARD)
|
|
3191 {
|
|
3192 /* Must be "p" for a Visual block, put lines below the block. */
|
|
3193 curwin->w_cursor = curbuf->b_visual_end;
|
|
3194 dir = FORWARD;
|
|
3195 }
|
|
3196 curbuf->b_op_start = curwin->w_cursor; /* default for '[ mark */
|
|
3197 curbuf->b_op_end = curwin->w_cursor; /* default for '] mark */
|
|
3198 }
|
|
3199 #endif
|
|
3200
|
|
3201 if (flags & PUT_LINE) /* :put command or "p" in Visual line mode. */
|
|
3202 y_type = MLINE;
|
|
3203
|
|
3204 if (y_size == 0 || y_array == NULL)
|
|
3205 {
|
|
3206 EMSG2(_("E353: Nothing in register %s"),
|
|
3207 regname == 0 ? (char_u *)"\"" : transchar(regname));
|
|
3208 goto end;
|
|
3209 }
|
|
3210
|
|
3211 #ifdef FEAT_VISUAL
|
|
3212 if (y_type == MBLOCK)
|
|
3213 {
|
|
3214 lnum = curwin->w_cursor.lnum + y_size + 1;
|
|
3215 if (lnum > curbuf->b_ml.ml_line_count)
|
|
3216 lnum = curbuf->b_ml.ml_line_count + 1;
|
|
3217 if (u_save(curwin->w_cursor.lnum - 1, lnum) == FAIL)
|
|
3218 goto end;
|
|
3219 }
|
|
3220 else
|
|
3221 #endif
|
|
3222 if (y_type == MLINE)
|
|
3223 {
|
|
3224 lnum = curwin->w_cursor.lnum;
|
|
3225 #ifdef FEAT_FOLDING
|
|
3226 /* Correct line number for closed fold. Don't move the cursor yet,
|
|
3227 * u_save() uses it. */
|
|
3228 if (dir == BACKWARD)
|
|
3229 (void)hasFolding(lnum, &lnum, NULL);
|
|
3230 else
|
|
3231 (void)hasFolding(lnum, NULL, &lnum);
|
|
3232 #endif
|
|
3233 if (dir == FORWARD)
|
|
3234 ++lnum;
|
|
3235 if (u_save(lnum - 1, lnum) == FAIL)
|
|
3236 goto end;
|
|
3237 #ifdef FEAT_FOLDING
|
|
3238 if (dir == FORWARD)
|
|
3239 curwin->w_cursor.lnum = lnum - 1;
|
|
3240 else
|
|
3241 curwin->w_cursor.lnum = lnum;
|
|
3242 curbuf->b_op_start = curwin->w_cursor; /* for mark_adjust() */
|
|
3243 #endif
|
|
3244 }
|
|
3245 else if (u_save_cursor() == FAIL)
|
|
3246 goto end;
|
|
3247
|
|
3248 yanklen = (int)STRLEN(y_array[0]);
|
|
3249
|
|
3250 #ifdef FEAT_VIRTUALEDIT
|
|
3251 if (ve_flags == VE_ALL && y_type == MCHAR)
|
|
3252 {
|
|
3253 if (gchar_cursor() == TAB)
|
|
3254 {
|
|
3255 /* Don't need to insert spaces when "p" on the last position of a
|
|
3256 * tab or "P" on the first position. */
|
|
3257 if (dir == FORWARD
|
|
3258 ? (int)curwin->w_cursor.coladd < curbuf->b_p_ts - 1
|
|
3259 : curwin->w_cursor.coladd > 0)
|
|
3260 coladvance_force(getviscol());
|
|
3261 else
|
|
3262 curwin->w_cursor.coladd = 0;
|
|
3263 }
|
|
3264 else if (curwin->w_cursor.coladd > 0 || gchar_cursor() == NUL)
|
|
3265 coladvance_force(getviscol() + (dir == FORWARD));
|
|
3266 }
|
|
3267 #endif
|
|
3268
|
|
3269 lnum = curwin->w_cursor.lnum;
|
|
3270 col = curwin->w_cursor.col;
|
|
3271
|
|
3272 #ifdef FEAT_VISUAL
|
|
3273 /*
|
|
3274 * Block mode
|
|
3275 */
|
|
3276 if (y_type == MBLOCK)
|
|
3277 {
|
|
3278 char c = gchar_cursor();
|
|
3279 colnr_T endcol2 = 0;
|
|
3280
|
|
3281 if (dir == FORWARD && c != NUL)
|
|
3282 {
|
|
3283 #ifdef FEAT_VIRTUALEDIT
|
|
3284 if (ve_flags == VE_ALL)
|
|
3285 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
|
|
3286 else
|
|
3287 #endif
|
|
3288 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
|
|
3289
|
|
3290 #ifdef FEAT_MBYTE
|
|
3291 if (has_mbyte)
|
|
3292 /* move to start of next multi-byte character */
|
|
3293 curwin->w_cursor.col += (*mb_ptr2len_check)(ml_get_cursor());
|
|
3294 else
|
|
3295 #endif
|
|
3296 #ifdef FEAT_VIRTUALEDIT
|
|
3297 if (c != TAB || ve_flags != VE_ALL)
|
|
3298 #endif
|
|
3299 ++curwin->w_cursor.col;
|
|
3300 ++col;
|
|
3301 }
|
|
3302 else
|
|
3303 getvcol(curwin, &curwin->w_cursor, &col, NULL, &endcol2);
|
|
3304
|
|
3305 #ifdef FEAT_VIRTUALEDIT
|
|
3306 col += curwin->w_cursor.coladd;
|
|
3307 if (ve_flags == VE_ALL && curwin->w_cursor.coladd > 0)
|
|
3308 {
|
|
3309 if (dir == FORWARD && c == NUL)
|
|
3310 ++col;
|
|
3311 if (dir != FORWARD && c != NUL)
|
|
3312 ++curwin->w_cursor.col;
|
|
3313 if (c == TAB)
|
|
3314 {
|
|
3315 if (dir == BACKWARD && curwin->w_cursor.col)
|
|
3316 curwin->w_cursor.col--;
|
|
3317 if (dir == FORWARD && col - 1 == endcol2)
|
|
3318 curwin->w_cursor.col++;
|
|
3319 }
|
|
3320 }
|
|
3321 curwin->w_cursor.coladd = 0;
|
|
3322 #endif
|
|
3323 for (i = 0; i < y_size; ++i)
|
|
3324 {
|
|
3325 int spaces;
|
|
3326 char shortline;
|
|
3327
|
|
3328 bd.startspaces = 0;
|
|
3329 bd.endspaces = 0;
|
|
3330 bd.textcol = 0;
|
|
3331 vcol = 0;
|
|
3332 delcount = 0;
|
|
3333
|
|
3334 /* add a new line */
|
|
3335 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
|
|
3336 {
|
|
3337 if (ml_append(curbuf->b_ml.ml_line_count, (char_u *)"",
|
|
3338 (colnr_T)1, FALSE) == FAIL)
|
|
3339 break;
|
|
3340 ++nr_lines;
|
|
3341 }
|
|
3342 /* get the old line and advance to the position to insert at */
|
|
3343 oldp = ml_get_curline();
|
|
3344 oldlen = (int)STRLEN(oldp);
|
|
3345 for (ptr = oldp; vcol < col && *ptr; )
|
|
3346 {
|
|
3347 /* Count a tab for what it's worth (if list mode not on) */
|
|
3348 incr = lbr_chartabsize_adv(&ptr, (colnr_T)vcol);
|
|
3349 vcol += incr;
|
|
3350 }
|
|
3351 bd.textcol = (colnr_T)(ptr - oldp);
|
|
3352
|
|
3353 shortline = (vcol < col) || (vcol == col && !*ptr) ;
|
|
3354
|
|
3355 if (vcol < col) /* line too short, padd with spaces */
|
|
3356 bd.startspaces = col - vcol;
|
|
3357 else if (vcol > col)
|
|
3358 {
|
|
3359 bd.endspaces = vcol - col;
|
|
3360 bd.startspaces = incr - bd.endspaces;
|
|
3361 --bd.textcol;
|
|
3362 delcount = 1;
|
|
3363 #ifdef FEAT_MBYTE
|
|
3364 if (has_mbyte)
|
|
3365 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol);
|
|
3366 #endif
|
|
3367 if (oldp[bd.textcol] != TAB)
|
|
3368 {
|
|
3369 /* Only a Tab can be split into spaces. Other
|
|
3370 * characters will have to be moved to after the
|
|
3371 * block, causing misalignment. */
|
|
3372 delcount = 0;
|
|
3373 bd.endspaces = 0;
|
|
3374 }
|
|
3375 }
|
|
3376
|
|
3377 yanklen = (int)STRLEN(y_array[i]);
|
|
3378
|
|
3379 /* calculate number of spaces required to fill right side of block*/
|
|
3380 spaces = y_width + 1;
|
|
3381 for (j = 0; j < yanklen; j++)
|
|
3382 spaces -= lbr_chartabsize(&y_array[i][j], 0);
|
|
3383 if (spaces < 0)
|
|
3384 spaces = 0;
|
|
3385
|
|
3386 /* insert the new text */
|
|
3387 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces;
|
|
3388 newp = alloc_check((unsigned)totlen + oldlen + 1);
|
|
3389 if (newp == NULL)
|
|
3390 break;
|
|
3391 /* copy part up to cursor to new line */
|
|
3392 ptr = newp;
|
|
3393 mch_memmove(ptr, oldp, (size_t)bd.textcol);
|
|
3394 ptr += bd.textcol;
|
|
3395 /* may insert some spaces before the new text */
|
|
3396 copy_spaces(ptr, (size_t)bd.startspaces);
|
|
3397 ptr += bd.startspaces;
|
|
3398 /* insert the new text */
|
|
3399 for (j = 0; j < count; ++j)
|
|
3400 {
|
|
3401 mch_memmove(ptr, y_array[i], (size_t)yanklen);
|
|
3402 ptr += yanklen;
|
|
3403
|
|
3404 /* insert block's trailing spaces only if there's text behind */
|
|
3405 if ((j < count - 1 || !shortline) && spaces)
|
|
3406 {
|
|
3407 copy_spaces(ptr, (size_t)spaces);
|
|
3408 ptr += spaces;
|
|
3409 }
|
|
3410 }
|
|
3411 /* may insert some spaces after the new text */
|
|
3412 copy_spaces(ptr, (size_t)bd.endspaces);
|
|
3413 ptr += bd.endspaces;
|
|
3414 /* move the text after the cursor to the end of the line. */
|
|
3415 mch_memmove(ptr, oldp + bd.textcol + delcount,
|
|
3416 (size_t)(oldlen - bd.textcol - delcount + 1));
|
|
3417 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
|
|
3418
|
|
3419 ++curwin->w_cursor.lnum;
|
|
3420 if (i == 0)
|
|
3421 curwin->w_cursor.col += bd.startspaces;
|
|
3422 }
|
|
3423
|
|
3424 changed_lines(lnum, 0, curwin->w_cursor.lnum, nr_lines);
|
|
3425
|
|
3426 /* Set '[ mark. */
|
|
3427 curbuf->b_op_start = curwin->w_cursor;
|
|
3428 curbuf->b_op_start.lnum = lnum;
|
|
3429
|
|
3430 /* adjust '] mark */
|
|
3431 curbuf->b_op_end.lnum = curwin->w_cursor.lnum - 1;
|
|
3432 curbuf->b_op_end.col = bd.textcol + totlen - 1;
|
|
3433 #ifdef FEAT_VIRTUALEDIT
|
|
3434 curbuf->b_op_end.coladd = 0;
|
|
3435 #endif
|
|
3436 if (flags & PUT_CURSEND)
|
|
3437 {
|
|
3438 curwin->w_cursor = curbuf->b_op_end;
|
|
3439 curwin->w_cursor.col++;
|
|
3440 }
|
|
3441 else
|
|
3442 curwin->w_cursor.lnum = lnum;
|
|
3443 }
|
|
3444 else
|
|
3445 #endif
|
|
3446 {
|
|
3447 /*
|
|
3448 * Character or Line mode
|
|
3449 */
|
|
3450 if (y_type == MCHAR)
|
|
3451 {
|
|
3452 /* if type is MCHAR, FORWARD is the same as BACKWARD on the next
|
|
3453 * char */
|
|
3454 if (dir == FORWARD && gchar_cursor() != NUL)
|
|
3455 {
|
|
3456 #ifdef FEAT_MBYTE
|
|
3457 if (has_mbyte)
|
|
3458 {
|
|
3459 int bytelen = (*mb_ptr2len_check)(ml_get_cursor());
|
|
3460
|
|
3461 /* put it on the next of the multi-byte character. */
|
|
3462 col += bytelen;
|
|
3463 if (yanklen)
|
|
3464 {
|
|
3465 curwin->w_cursor.col += bytelen;
|
|
3466 curbuf->b_op_end.col += bytelen;
|
|
3467 }
|
|
3468 }
|
|
3469 else
|
|
3470 #endif
|
|
3471 {
|
|
3472 ++col;
|
|
3473 if (yanklen)
|
|
3474 {
|
|
3475 ++curwin->w_cursor.col;
|
|
3476 ++curbuf->b_op_end.col;
|
|
3477 }
|
|
3478 }
|
|
3479 }
|
|
3480 new_cursor = curwin->w_cursor;
|
|
3481 curbuf->b_op_start = curwin->w_cursor;
|
|
3482 }
|
|
3483 /*
|
|
3484 * Line mode: BACKWARD is the same as FORWARD on the previous line
|
|
3485 */
|
|
3486 else if (dir == BACKWARD)
|
|
3487 --lnum;
|
|
3488
|
|
3489 /*
|
|
3490 * simple case: insert into current line
|
|
3491 */
|
|
3492 if (y_type == MCHAR && y_size == 1)
|
|
3493 {
|
|
3494 totlen = count * yanklen;
|
|
3495 if (totlen)
|
|
3496 {
|
|
3497 oldp = ml_get(lnum);
|
|
3498 newp = alloc_check((unsigned)(STRLEN(oldp) + totlen + 1));
|
|
3499 if (newp == NULL)
|
|
3500 goto end; /* alloc() will give error message */
|
|
3501 mch_memmove(newp, oldp, (size_t)col);
|
|
3502 ptr = newp + col;
|
|
3503 for (i = 0; i < count; ++i)
|
|
3504 {
|
|
3505 mch_memmove(ptr, y_array[0], (size_t)yanklen);
|
|
3506 ptr += yanklen;
|
|
3507 }
|
|
3508 mch_memmove(ptr, oldp + col, STRLEN(oldp + col) + 1);
|
|
3509 ml_replace(lnum, newp, FALSE);
|
|
3510 /* Put cursor on last putted char. */
|
|
3511 curwin->w_cursor.col += (colnr_T)(totlen - 1);
|
|
3512 }
|
|
3513 curbuf->b_op_end = curwin->w_cursor;
|
|
3514 /* For "CTRL-O p" in Insert mode, put cursor after last char */
|
|
3515 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND)))
|
|
3516 ++curwin->w_cursor.col;
|
|
3517 changed_bytes(lnum, col);
|
|
3518 }
|
|
3519 else
|
|
3520 {
|
|
3521 /*
|
|
3522 * Insert at least one line. When y_type is MCHAR, break the first
|
|
3523 * line in two.
|
|
3524 */
|
|
3525 for (cnt = 1; cnt <= count; ++cnt)
|
|
3526 {
|
|
3527 i = 0;
|
|
3528 if (y_type == MCHAR)
|
|
3529 {
|
|
3530 /*
|
|
3531 * Split the current line in two at the insert position.
|
|
3532 * First insert y_array[size - 1] in front of second line.
|
|
3533 * Then append y_array[0] to first line.
|
|
3534 */
|
|
3535 lnum = new_cursor.lnum;
|
|
3536 ptr = ml_get(lnum) + col;
|
|
3537 totlen = (int)STRLEN(y_array[y_size - 1]);
|
|
3538 newp = alloc_check((unsigned)(STRLEN(ptr) + totlen + 1));
|
|
3539 if (newp == NULL)
|
|
3540 goto error;
|
|
3541 STRCPY(newp, y_array[y_size - 1]);
|
|
3542 STRCAT(newp, ptr);
|
|
3543 /* insert second line */
|
|
3544 ml_append(lnum, newp, (colnr_T)0, FALSE);
|
|
3545 vim_free(newp);
|
|
3546
|
|
3547 oldp = ml_get(lnum);
|
|
3548 newp = alloc_check((unsigned)(col + yanklen + 1));
|
|
3549 if (newp == NULL)
|
|
3550 goto error;
|
|
3551 /* copy first part of line */
|
|
3552 mch_memmove(newp, oldp, (size_t)col);
|
|
3553 /* append to first line */
|
|
3554 mch_memmove(newp + col, y_array[0], (size_t)(yanklen + 1));
|
|
3555 ml_replace(lnum, newp, FALSE);
|
|
3556
|
|
3557 curwin->w_cursor.lnum = lnum;
|
|
3558 i = 1;
|
|
3559 }
|
|
3560
|
|
3561 for (; i < y_size; ++i)
|
|
3562 {
|
|
3563 if ((y_type != MCHAR || i < y_size - 1)
|
|
3564 && ml_append(lnum, y_array[i], (colnr_T)0, FALSE)
|
|
3565 == FAIL)
|
|
3566 goto error;
|
|
3567 lnum++;
|
|
3568 ++nr_lines;
|
|
3569 if (flags & PUT_FIXINDENT)
|
|
3570 {
|
|
3571 old_pos = curwin->w_cursor;
|
|
3572 curwin->w_cursor.lnum = lnum;
|
|
3573 ptr = ml_get(lnum);
|
|
3574 if (cnt == count && i == y_size - 1)
|
|
3575 lendiff = (int)STRLEN(ptr);
|
|
3576 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT)
|
|
3577 if (*ptr == '#' && preprocs_left())
|
|
3578 indent = 0; /* Leave # lines at start */
|
|
3579 else
|
|
3580 #endif
|
|
3581 if (*ptr == NUL)
|
|
3582 indent = 0; /* Ignore empty lines */
|
|
3583 else if (first_indent)
|
|
3584 {
|
|
3585 indent_diff = orig_indent - get_indent();
|
|
3586 indent = orig_indent;
|
|
3587 first_indent = FALSE;
|
|
3588 }
|
|
3589 else if ((indent = get_indent() + indent_diff) < 0)
|
|
3590 indent = 0;
|
|
3591 (void)set_indent(indent, 0);
|
|
3592 curwin->w_cursor = old_pos;
|
|
3593 /* remember how many chars were removed */
|
|
3594 if (cnt == count && i == y_size - 1)
|
|
3595 lendiff -= (int)STRLEN(ml_get(lnum));
|
|
3596 }
|
|
3597 }
|
|
3598 }
|
|
3599
|
|
3600 error:
|
|
3601 /* Adjust marks. */
|
|
3602 if (y_type == MLINE)
|
|
3603 {
|
|
3604 curbuf->b_op_start.col = 0;
|
|
3605 if (dir == FORWARD)
|
|
3606 curbuf->b_op_start.lnum++;
|
|
3607 }
|
|
3608 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
|
|
3609 (linenr_T)MAXLNUM, nr_lines, 0L);
|
|
3610
|
|
3611 /* note changed text for displaying and folding */
|
|
3612 if (y_type == MCHAR)
|
|
3613 changed_lines(curwin->w_cursor.lnum, col,
|
|
3614 curwin->w_cursor.lnum + 1, nr_lines);
|
|
3615 else
|
|
3616 changed_lines(curbuf->b_op_start.lnum, 0,
|
|
3617 curbuf->b_op_start.lnum, nr_lines);
|
|
3618
|
|
3619 /* put '] mark at last inserted character */
|
|
3620 curbuf->b_op_end.lnum = lnum;
|
|
3621 /* correct length for change in indent */
|
|
3622 col = (colnr_T)STRLEN(y_array[y_size - 1]) - lendiff;
|
|
3623 if (col > 1)
|
|
3624 curbuf->b_op_end.col = col - 1;
|
|
3625 else
|
|
3626 curbuf->b_op_end.col = 0;
|
|
3627
|
168
|
3628 if (flags & PUT_CURSLINE)
|
|
3629 {
|
|
3630 /* ":put": put cursor on last inserte line */
|
|
3631 curwin->w_cursor.lnum = lnum;
|
|
3632 beginline(BL_WHITE | BL_FIX);
|
|
3633 }
|
|
3634 else if (flags & PUT_CURSEND)
|
7
|
3635 {
|
|
3636 /* put cursor after inserted text */
|
|
3637 if (y_type == MLINE)
|
|
3638 {
|
|
3639 if (lnum >= curbuf->b_ml.ml_line_count)
|
|
3640 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
|
|
3641 else
|
|
3642 curwin->w_cursor.lnum = lnum + 1;
|
|
3643 curwin->w_cursor.col = 0;
|
|
3644 }
|
|
3645 else
|
|
3646 {
|
|
3647 curwin->w_cursor.lnum = lnum;
|
|
3648 curwin->w_cursor.col = col;
|
|
3649 }
|
|
3650 }
|
|
3651 else if (y_type == MLINE)
|
|
3652 {
|
168
|
3653 /* put cursor on first non-blank in first inserted line */
|
7
|
3654 curwin->w_cursor.col = 0;
|
|
3655 if (dir == FORWARD)
|
|
3656 ++curwin->w_cursor.lnum;
|
|
3657 beginline(BL_WHITE | BL_FIX);
|
|
3658 }
|
|
3659 else /* put cursor on first inserted character */
|
|
3660 curwin->w_cursor = new_cursor;
|
|
3661 }
|
|
3662 }
|
|
3663
|
|
3664 msgmore(nr_lines);
|
|
3665 curwin->w_set_curswant = TRUE;
|
|
3666
|
|
3667 end:
|
|
3668 if (allocated)
|
|
3669 {
|
|
3670 vim_free(insert_string);
|
|
3671 if (regname == '=')
|
|
3672 vim_free(y_array);
|
|
3673 }
|
140
|
3674 /* If the cursor is past the end of the line put it at the end. */
|
7
|
3675 if (gchar_cursor() == NUL
|
|
3676 && curwin->w_cursor.col > 0
|
|
3677 && !(restart_edit || (State & INSERT)))
|
|
3678 {
|
|
3679 --curwin->w_cursor.col;
|
|
3680 #ifdef FEAT_VIRTUALEDIT
|
|
3681 if (ve_flags == VE_ALL)
|
|
3682 ++curwin->w_cursor.coladd;
|
|
3683 #endif
|
|
3684 }
|
|
3685 }
|
|
3686
|
|
3687 #if defined(FEAT_SMARTINDENT) || defined(FEAT_CINDENT) || defined(PROTO)
|
|
3688 /*
|
|
3689 * Return TRUE if lines starting with '#' should be left aligned.
|
|
3690 */
|
|
3691 int
|
|
3692 preprocs_left()
|
|
3693 {
|
|
3694 return
|
|
3695 # ifdef FEAT_SMARTINDENT
|
|
3696 # ifdef FEAT_CINDENT
|
|
3697 (curbuf->b_p_si && !curbuf->b_p_cin) ||
|
|
3698 # else
|
|
3699 curbuf->b_p_si
|
|
3700 # endif
|
|
3701 # endif
|
|
3702 # ifdef FEAT_CINDENT
|
|
3703 (curbuf->b_p_cin && in_cinkeys('#', ' ', TRUE))
|
|
3704 # endif
|
|
3705 ;
|
|
3706 }
|
|
3707 #endif
|
|
3708
|
|
3709 /* Return the character name of the register with the given number */
|
|
3710 int
|
|
3711 get_register_name(num)
|
|
3712 int num;
|
|
3713 {
|
|
3714 if (num == -1)
|
|
3715 return '"';
|
|
3716 else if (num < 10)
|
|
3717 return num + '0';
|
|
3718 else if (num == DELETION_REGISTER)
|
|
3719 return '-';
|
|
3720 #ifdef FEAT_CLIPBOARD
|
|
3721 else if (num == STAR_REGISTER)
|
|
3722 return '*';
|
|
3723 else if (num == PLUS_REGISTER)
|
|
3724 return '+';
|
|
3725 #endif
|
|
3726 else
|
|
3727 {
|
|
3728 #ifdef EBCDIC
|
|
3729 int i;
|
|
3730
|
|
3731 /* EBCDIC is really braindead ... */
|
|
3732 i = 'a' + (num - 10);
|
|
3733 if (i > 'i')
|
|
3734 i += 7;
|
|
3735 if (i > 'r')
|
|
3736 i += 8;
|
|
3737 return i;
|
|
3738 #else
|
|
3739 return num + 'a' - 10;
|
|
3740 #endif
|
|
3741 }
|
|
3742 }
|
|
3743
|
|
3744 /*
|
|
3745 * ":dis" and ":registers": Display the contents of the yank registers.
|
|
3746 */
|
|
3747 void
|
|
3748 ex_display(eap)
|
|
3749 exarg_T *eap;
|
|
3750 {
|
|
3751 int i, n;
|
|
3752 long j;
|
|
3753 char_u *p;
|
|
3754 struct yankreg *yb;
|
|
3755 int name;
|
|
3756 int attr;
|
|
3757 char_u *arg = eap->arg;
|
22
|
3758 #ifdef FEAT_MBYTE
|
|
3759 int clen;
|
|
3760 #else
|
|
3761 # define clen 1
|
|
3762 #endif
|
7
|
3763
|
|
3764 if (arg != NULL && *arg == NUL)
|
|
3765 arg = NULL;
|
|
3766 attr = hl_attr(HLF_8);
|
|
3767
|
|
3768 /* Highlight title */
|
|
3769 MSG_PUTS_TITLE(_("\n--- Registers ---"));
|
|
3770 for (i = -1; i < NUM_REGISTERS && !got_int; ++i)
|
|
3771 {
|
|
3772 name = get_register_name(i);
|
|
3773 if (arg != NULL && vim_strchr(arg, name) == NULL)
|
|
3774 continue; /* did not ask for this register */
|
|
3775
|
|
3776 #ifdef FEAT_CLIPBOARD
|
|
3777 /* Adjust register name for "unnamed" in 'clipboard'.
|
|
3778 * When it's a clipboard register, fill it with the current contents
|
|
3779 * of the clipboard. */
|
|
3780 adjust_clip_reg(&name);
|
|
3781 (void)may_get_selection(name);
|
|
3782 #endif
|
|
3783
|
|
3784 if (i == -1)
|
|
3785 {
|
|
3786 if (y_previous != NULL)
|
|
3787 yb = y_previous;
|
|
3788 else
|
|
3789 yb = &(y_regs[0]);
|
|
3790 }
|
|
3791 else
|
|
3792 yb = &(y_regs[i]);
|
|
3793 if (yb->y_array != NULL)
|
|
3794 {
|
|
3795 msg_putchar('\n');
|
|
3796 msg_putchar('"');
|
|
3797 msg_putchar(name);
|
|
3798 MSG_PUTS(" ");
|
|
3799
|
|
3800 n = (int)Columns - 6;
|
|
3801 for (j = 0; j < yb->y_size && n > 1; ++j)
|
|
3802 {
|
|
3803 if (j)
|
|
3804 {
|
|
3805 MSG_PUTS_ATTR("^J", attr);
|
|
3806 n -= 2;
|
|
3807 }
|
|
3808 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
|
|
3809 {
|
|
3810 #ifdef FEAT_MBYTE
|
22
|
3811 clen = (*mb_ptr2len_check)(p);
|
|
3812 #endif
|
|
3813 msg_outtrans_len(p, clen);
|
|
3814 #ifdef FEAT_MBYTE
|
|
3815 p += clen - 1;
|
7
|
3816 #endif
|
|
3817 }
|
|
3818 }
|
|
3819 if (n > 1 && yb->y_type == MLINE)
|
|
3820 MSG_PUTS_ATTR("^J", attr);
|
|
3821 out_flush(); /* show one line at a time */
|
|
3822 }
|
|
3823 ui_breakcheck();
|
|
3824 }
|
|
3825
|
|
3826 /*
|
|
3827 * display last inserted text
|
|
3828 */
|
|
3829 if ((p = get_last_insert()) != NULL
|
|
3830 && (arg == NULL || vim_strchr(arg, '.') != NULL) && !got_int)
|
|
3831 {
|
|
3832 MSG_PUTS("\n\". ");
|
|
3833 dis_msg(p, TRUE);
|
|
3834 }
|
|
3835
|
|
3836 /*
|
|
3837 * display last command line
|
|
3838 */
|
|
3839 if (last_cmdline != NULL && (arg == NULL || vim_strchr(arg, ':') != NULL)
|
|
3840 && !got_int)
|
|
3841 {
|
|
3842 MSG_PUTS("\n\": ");
|
|
3843 dis_msg(last_cmdline, FALSE);
|
|
3844 }
|
|
3845
|
|
3846 /*
|
|
3847 * display current file name
|
|
3848 */
|
|
3849 if (curbuf->b_fname != NULL
|
|
3850 && (arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
|
|
3851 {
|
|
3852 MSG_PUTS("\n\"% ");
|
|
3853 dis_msg(curbuf->b_fname, FALSE);
|
|
3854 }
|
|
3855
|
|
3856 /*
|
|
3857 * display alternate file name
|
|
3858 */
|
|
3859 if ((arg == NULL || vim_strchr(arg, '%') != NULL) && !got_int)
|
|
3860 {
|
|
3861 char_u *fname;
|
|
3862 linenr_T dummy;
|
|
3863
|
|
3864 if (buflist_name_nr(0, &fname, &dummy) != FAIL)
|
|
3865 {
|
|
3866 MSG_PUTS("\n\"# ");
|
|
3867 dis_msg(fname, FALSE);
|
|
3868 }
|
|
3869 }
|
|
3870
|
|
3871 /*
|
|
3872 * display last search pattern
|
|
3873 */
|
|
3874 if (last_search_pat() != NULL
|
|
3875 && (arg == NULL || vim_strchr(arg, '/') != NULL) && !got_int)
|
|
3876 {
|
|
3877 MSG_PUTS("\n\"/ ");
|
|
3878 dis_msg(last_search_pat(), FALSE);
|
|
3879 }
|
|
3880
|
|
3881 #ifdef FEAT_EVAL
|
|
3882 /*
|
|
3883 * display last used expression
|
|
3884 */
|
|
3885 if (expr_line != NULL && (arg == NULL || vim_strchr(arg, '=') != NULL)
|
|
3886 && !got_int)
|
|
3887 {
|
|
3888 MSG_PUTS("\n\"= ");
|
|
3889 dis_msg(expr_line, FALSE);
|
|
3890 }
|
|
3891 #endif
|
|
3892 }
|
|
3893
|
|
3894 /*
|
|
3895 * display a string for do_dis()
|
|
3896 * truncate at end of screen line
|
|
3897 */
|
|
3898 static void
|
|
3899 dis_msg(p, skip_esc)
|
|
3900 char_u *p;
|
|
3901 int skip_esc; /* if TRUE, ignore trailing ESC */
|
|
3902 {
|
|
3903 int n;
|
|
3904 #ifdef FEAT_MBYTE
|
|
3905 int l;
|
|
3906 #endif
|
|
3907
|
|
3908 n = (int)Columns - 6;
|
|
3909 while (*p != NUL
|
|
3910 && !(*p == ESC && skip_esc && *(p + 1) == NUL)
|
|
3911 && (n -= ptr2cells(p)) >= 0)
|
|
3912 {
|
|
3913 #ifdef FEAT_MBYTE
|
|
3914 if (has_mbyte && (l = (*mb_ptr2len_check)(p)) > 1)
|
|
3915 {
|
|
3916 msg_outtrans_len(p, l);
|
|
3917 p += l;
|
|
3918 }
|
|
3919 else
|
|
3920 #endif
|
|
3921 msg_outtrans_len(p++, 1);
|
|
3922 }
|
|
3923 ui_breakcheck();
|
|
3924 }
|
|
3925
|
|
3926 /*
|
|
3927 * join 'count' lines (minimal 2), including u_save()
|
|
3928 */
|
|
3929 void
|
|
3930 do_do_join(count, insert_space)
|
|
3931 long count;
|
|
3932 int insert_space;
|
|
3933 {
|
164
|
3934 colnr_T col = MAXCOL;
|
|
3935
|
7
|
3936 if (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
|
|
3937 (linenr_T)(curwin->w_cursor.lnum + count)) == FAIL)
|
|
3938 return;
|
|
3939
|
|
3940 while (--count > 0)
|
|
3941 {
|
|
3942 line_breakcheck();
|
|
3943 if (got_int || do_join(insert_space) == FAIL)
|
|
3944 {
|
|
3945 beep_flush();
|
|
3946 break;
|
|
3947 }
|
164
|
3948 if (col == MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
|
|
3949 col = curwin->w_cursor.col;
|
7
|
3950 }
|
|
3951
|
164
|
3952 /* Vi compatible: use the column of the first join */
|
|
3953 if (col != MAXCOL && vim_strchr(p_cpo, CPO_JOINCOL) != NULL)
|
|
3954 curwin->w_cursor.col = col;
|
|
3955
|
7
|
3956 #if 0
|
|
3957 /*
|
|
3958 * Need to update the screen if the line where the cursor is became too
|
|
3959 * long to fit on the screen.
|
|
3960 */
|
|
3961 update_topline_redraw();
|
|
3962 #endif
|
|
3963 }
|
|
3964
|
|
3965 /*
|
|
3966 * Join two lines at the cursor position.
|
|
3967 * "redraw" is TRUE when the screen should be updated.
|
|
3968 * Caller must have setup for undo.
|
|
3969 *
|
|
3970 * return FAIL for failure, OK ohterwise
|
|
3971 */
|
|
3972 int
|
|
3973 do_join(insert_space)
|
|
3974 int insert_space;
|
|
3975 {
|
|
3976 char_u *curr;
|
|
3977 char_u *next, *next_start;
|
|
3978 char_u *newp;
|
|
3979 int endcurr1, endcurr2;
|
|
3980 int currsize; /* size of the current line */
|
|
3981 int nextsize; /* size of the next line */
|
|
3982 int spaces; /* number of spaces to insert */
|
|
3983 linenr_T t;
|
|
3984
|
|
3985 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
|
|
3986 return FAIL; /* can't join on last line */
|
|
3987
|
|
3988 curr = ml_get_curline();
|
|
3989 currsize = (int)STRLEN(curr);
|
|
3990 endcurr1 = endcurr2 = NUL;
|
|
3991 if (insert_space && currsize > 0)
|
|
3992 {
|
|
3993 #ifdef FEAT_MBYTE
|
|
3994 if (has_mbyte)
|
|
3995 {
|
39
|
3996 next = curr + currsize;
|
|
3997 mb_ptr_back(curr, next);
|
7
|
3998 endcurr1 = (*mb_ptr2char)(next);
|
|
3999 if (next > curr)
|
|
4000 {
|
39
|
4001 mb_ptr_back(curr, next);
|
7
|
4002 endcurr2 = (*mb_ptr2char)(next);
|
|
4003 }
|
|
4004 }
|
|
4005 else
|
|
4006 #endif
|
|
4007 {
|
|
4008 endcurr1 = *(curr + currsize - 1);
|
|
4009 if (currsize > 1)
|
|
4010 endcurr2 = *(curr + currsize - 2);
|
|
4011 }
|
|
4012 }
|
|
4013
|
|
4014 next = next_start = ml_get((linenr_T)(curwin->w_cursor.lnum + 1));
|
|
4015 spaces = 0;
|
|
4016 if (insert_space)
|
|
4017 {
|
|
4018 next = skipwhite(next);
|
|
4019 if (*next != ')' && currsize != 0 && endcurr1 != TAB
|
|
4020 #ifdef FEAT_MBYTE
|
|
4021 && (!has_format_option(FO_MBYTE_JOIN)
|
|
4022 || (mb_ptr2char(next) < 0x100 && endcurr1 < 0x100))
|
|
4023 && (!has_format_option(FO_MBYTE_JOIN2)
|
|
4024 || mb_ptr2char(next) < 0x100 || endcurr1 < 0x100)
|
|
4025 #endif
|
|
4026 )
|
|
4027 {
|
|
4028 /* don't add a space if the line is ending in a space */
|
|
4029 if (endcurr1 == ' ')
|
|
4030 endcurr1 = endcurr2;
|
|
4031 else
|
|
4032 ++spaces;
|
|
4033 /* extra space when 'joinspaces' set and line ends in '.' */
|
|
4034 if ( p_js
|
|
4035 && (endcurr1 == '.'
|
|
4036 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL
|
|
4037 && (endcurr1 == '?' || endcurr1 == '!'))))
|
|
4038 ++spaces;
|
|
4039 }
|
|
4040 }
|
|
4041 nextsize = (int)STRLEN(next);
|
|
4042
|
|
4043 newp = alloc_check((unsigned)(currsize + nextsize + spaces + 1));
|
|
4044 if (newp == NULL)
|
|
4045 return FAIL;
|
|
4046
|
|
4047 /*
|
|
4048 * Insert the next line first, because we already have that pointer.
|
|
4049 * Curr has to be obtained again, because getting next will have
|
|
4050 * invalidated it.
|
|
4051 */
|
|
4052 mch_memmove(newp + currsize + spaces, next, (size_t)(nextsize + 1));
|
|
4053
|
|
4054 curr = ml_get_curline();
|
|
4055 mch_memmove(newp, curr, (size_t)currsize);
|
|
4056
|
|
4057 copy_spaces(newp + currsize, (size_t)spaces);
|
|
4058
|
|
4059 ml_replace(curwin->w_cursor.lnum, newp, FALSE);
|
|
4060
|
|
4061 /* Only report the change in the first line here, del_lines() will report
|
|
4062 * the deleted line. */
|
|
4063 changed_lines(curwin->w_cursor.lnum, currsize,
|
|
4064 curwin->w_cursor.lnum + 1, 0L);
|
|
4065
|
|
4066 /*
|
|
4067 * Delete the following line. To do this we move the cursor there
|
|
4068 * briefly, and then move it back. After del_lines() the cursor may
|
|
4069 * have moved up (last line deleted), so the current lnum is kept in t.
|
|
4070 *
|
|
4071 * Move marks from the deleted line to the joined line, adjusting the
|
|
4072 * column. This is not Vi compatible, but Vi deletes the marks, thus that
|
|
4073 * should not really be a problem.
|
|
4074 */
|
|
4075 t = curwin->w_cursor.lnum;
|
|
4076 mark_col_adjust(t + 1, (colnr_T)0, (linenr_T)-1,
|
|
4077 (long)(currsize + spaces - (next - next_start)));
|
|
4078 ++curwin->w_cursor.lnum;
|
|
4079 del_lines(1L, FALSE);
|
|
4080 curwin->w_cursor.lnum = t;
|
|
4081
|
|
4082 /*
|
|
4083 * go to first character of the joined line
|
|
4084 */
|
|
4085 curwin->w_cursor.col = currsize;
|
|
4086 check_cursor_col();
|
|
4087 #ifdef FEAT_VIRTUALEDIT
|
|
4088 curwin->w_cursor.coladd = 0;
|
|
4089 #endif
|
|
4090 curwin->w_set_curswant = TRUE;
|
|
4091
|
|
4092 return OK;
|
|
4093 }
|
|
4094
|
|
4095 #ifdef FEAT_COMMENTS
|
|
4096 /*
|
|
4097 * Return TRUE if the two comment leaders given are the same. "lnum" is
|
|
4098 * the first line. White-space is ignored. Note that the whole of
|
|
4099 * 'leader1' must match 'leader2_len' characters from 'leader2' -- webb
|
|
4100 */
|
|
4101 static int
|
|
4102 same_leader(lnum, leader1_len, leader1_flags, leader2_len, leader2_flags)
|
|
4103 linenr_T lnum;
|
|
4104 int leader1_len;
|
|
4105 char_u *leader1_flags;
|
|
4106 int leader2_len;
|
|
4107 char_u *leader2_flags;
|
|
4108 {
|
|
4109 int idx1 = 0, idx2 = 0;
|
|
4110 char_u *p;
|
|
4111 char_u *line1;
|
|
4112 char_u *line2;
|
|
4113
|
|
4114 if (leader1_len == 0)
|
|
4115 return (leader2_len == 0);
|
|
4116
|
|
4117 /*
|
|
4118 * If first leader has 'f' flag, the lines can be joined only if the
|
|
4119 * second line does not have a leader.
|
|
4120 * If first leader has 'e' flag, the lines can never be joined.
|
|
4121 * If fist leader has 's' flag, the lines can only be joined if there is
|
|
4122 * some text after it and the second line has the 'm' flag.
|
|
4123 */
|
|
4124 if (leader1_flags != NULL)
|
|
4125 {
|
|
4126 for (p = leader1_flags; *p && *p != ':'; ++p)
|
|
4127 {
|
|
4128 if (*p == COM_FIRST)
|
|
4129 return (leader2_len == 0);
|
|
4130 if (*p == COM_END)
|
|
4131 return FALSE;
|
|
4132 if (*p == COM_START)
|
|
4133 {
|
|
4134 if (*(ml_get(lnum) + leader1_len) == NUL)
|
|
4135 return FALSE;
|
|
4136 if (leader2_flags == NULL || leader2_len == 0)
|
|
4137 return FALSE;
|
|
4138 for (p = leader2_flags; *p && *p != ':'; ++p)
|
|
4139 if (*p == COM_MIDDLE)
|
|
4140 return TRUE;
|
|
4141 return FALSE;
|
|
4142 }
|
|
4143 }
|
|
4144 }
|
|
4145
|
|
4146 /*
|
|
4147 * Get current line and next line, compare the leaders.
|
|
4148 * The first line has to be saved, only one line can be locked at a time.
|
|
4149 */
|
|
4150 line1 = vim_strsave(ml_get(lnum));
|
|
4151 if (line1 != NULL)
|
|
4152 {
|
|
4153 for (idx1 = 0; vim_iswhite(line1[idx1]); ++idx1)
|
|
4154 ;
|
|
4155 line2 = ml_get(lnum + 1);
|
|
4156 for (idx2 = 0; idx2 < leader2_len; ++idx2)
|
|
4157 {
|
|
4158 if (!vim_iswhite(line2[idx2]))
|
|
4159 {
|
|
4160 if (line1[idx1++] != line2[idx2])
|
|
4161 break;
|
|
4162 }
|
|
4163 else
|
|
4164 while (vim_iswhite(line1[idx1]))
|
|
4165 ++idx1;
|
|
4166 }
|
|
4167 vim_free(line1);
|
|
4168 }
|
|
4169 return (idx2 == leader2_len && idx1 == leader1_len);
|
|
4170 }
|
|
4171 #endif
|
|
4172
|
|
4173 /*
|
|
4174 * implementation of the format operator 'gq'
|
|
4175 */
|
|
4176 void
|
|
4177 op_format(oap, keep_cursor)
|
|
4178 oparg_T *oap;
|
|
4179 int keep_cursor; /* keep cursor on same text char */
|
|
4180 {
|
|
4181 long old_line_count = curbuf->b_ml.ml_line_count;
|
|
4182
|
|
4183 /* Place the cursor where the "gq" or "gw" command was given, so that "u"
|
|
4184 * can put it back there. */
|
|
4185 curwin->w_cursor = oap->cursor_start;
|
|
4186
|
|
4187 if (u_save((linenr_T)(oap->start.lnum - 1),
|
|
4188 (linenr_T)(oap->end.lnum + 1)) == FAIL)
|
|
4189 return;
|
|
4190 curwin->w_cursor = oap->start;
|
|
4191
|
|
4192 #ifdef FEAT_VISUAL
|
|
4193 if (oap->is_VIsual)
|
|
4194 /* When there is no change: need to remove the Visual selection */
|
|
4195 redraw_curbuf_later(INVERTED);
|
|
4196 #endif
|
|
4197
|
|
4198 /* Set '[ mark at the start of the formatted area */
|
|
4199 curbuf->b_op_start = oap->start;
|
|
4200
|
|
4201 /* For "gw" remember the cursor position and put it back below (adjusted
|
|
4202 * for joined and split lines). */
|
|
4203 if (keep_cursor)
|
|
4204 saved_cursor = oap->cursor_start;
|
|
4205
|
|
4206 format_lines(oap->line_count);
|
|
4207
|
|
4208 /*
|
|
4209 * Leave the cursor at the first non-blank of the last formatted line.
|
|
4210 * If the cursor was moved one line back (e.g. with "Q}") go to the next
|
|
4211 * line, so "." will do the next lines.
|
|
4212 */
|
|
4213 if (oap->end_adjusted && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
|
|
4214 ++curwin->w_cursor.lnum;
|
|
4215 beginline(BL_WHITE | BL_FIX);
|
|
4216 old_line_count = curbuf->b_ml.ml_line_count - old_line_count;
|
|
4217 msgmore(old_line_count);
|
|
4218
|
|
4219 /* put '] mark on the end of the formatted area */
|
|
4220 curbuf->b_op_end = curwin->w_cursor;
|
|
4221
|
|
4222 if (keep_cursor)
|
|
4223 {
|
|
4224 curwin->w_cursor = saved_cursor;
|
|
4225 saved_cursor.lnum = 0;
|
|
4226 }
|
|
4227
|
|
4228 #ifdef FEAT_VISUAL
|
|
4229 if (oap->is_VIsual)
|
|
4230 {
|
|
4231 win_T *wp;
|
|
4232
|
|
4233 FOR_ALL_WINDOWS(wp)
|
|
4234 {
|
|
4235 if (wp->w_old_cursor_lnum != 0)
|
|
4236 {
|
|
4237 /* When lines have been inserted or deleted, adjust the end of
|
|
4238 * the Visual area to be redrawn. */
|
|
4239 if (wp->w_old_cursor_lnum > wp->w_old_visual_lnum)
|
|
4240 wp->w_old_cursor_lnum += old_line_count;
|
|
4241 else
|
|
4242 wp->w_old_visual_lnum += old_line_count;
|
|
4243 }
|
|
4244 }
|
|
4245 }
|
|
4246 #endif
|
|
4247 }
|
|
4248
|
|
4249 /*
|
|
4250 * Format "line_count" lines, starting at the cursor position.
|
|
4251 * When "line_count" is negative, format until the end of the paragraph.
|
|
4252 * Lines after the cursor line are saved for undo, caller must have saved the
|
|
4253 * first line.
|
|
4254 */
|
|
4255 void
|
|
4256 format_lines(line_count)
|
|
4257 linenr_T line_count;
|
|
4258 {
|
|
4259 int max_len;
|
|
4260 int is_not_par; /* current line not part of parag. */
|
|
4261 int next_is_not_par; /* next line not part of paragraph */
|
|
4262 int is_end_par; /* at end of paragraph */
|
|
4263 int prev_is_end_par = FALSE;/* prev. line not part of parag. */
|
|
4264 int next_is_start_par = FALSE;
|
|
4265 #ifdef FEAT_COMMENTS
|
|
4266 int leader_len = 0; /* leader len of current line */
|
|
4267 int next_leader_len; /* leader len of next line */
|
|
4268 char_u *leader_flags = NULL; /* flags for leader of current line */
|
|
4269 char_u *next_leader_flags; /* flags for leader of next line */
|
|
4270 int do_comments; /* format comments */
|
|
4271 #endif
|
|
4272 int advance = TRUE;
|
|
4273 int second_indent = -1;
|
|
4274 int do_second_indent;
|
|
4275 int do_number_indent;
|
|
4276 int do_trail_white;
|
|
4277 int first_par_line = TRUE;
|
|
4278 int smd_save;
|
|
4279 long count;
|
|
4280 int need_set_indent = TRUE; /* set indent of next paragraph */
|
|
4281 int force_format = FALSE;
|
|
4282 int old_State = State;
|
|
4283
|
|
4284 /* length of a line to force formatting: 3 * 'tw' */
|
|
4285 max_len = comp_textwidth(TRUE) * 3;
|
|
4286
|
|
4287 /* check for 'q', '2' and '1' in 'formatoptions' */
|
|
4288 #ifdef FEAT_COMMENTS
|
|
4289 do_comments = has_format_option(FO_Q_COMS);
|
|
4290 #endif
|
|
4291 do_second_indent = has_format_option(FO_Q_SECOND);
|
|
4292 do_number_indent = has_format_option(FO_Q_NUMBER);
|
|
4293 do_trail_white = has_format_option(FO_WHITE_PAR);
|
|
4294
|
|
4295 /*
|
|
4296 * Get info about the previous and current line.
|
|
4297 */
|
|
4298 if (curwin->w_cursor.lnum > 1)
|
|
4299 is_not_par = fmt_check_par(curwin->w_cursor.lnum - 1
|
|
4300 #ifdef FEAT_COMMENTS
|
|
4301 , &leader_len, &leader_flags, do_comments
|
|
4302 #endif
|
|
4303 );
|
|
4304 else
|
|
4305 is_not_par = TRUE;
|
|
4306 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum
|
|
4307 #ifdef FEAT_COMMENTS
|
|
4308 , &next_leader_len, &next_leader_flags, do_comments
|
|
4309 #endif
|
|
4310 );
|
|
4311 is_end_par = (is_not_par || next_is_not_par);
|
|
4312 if (!is_end_par && do_trail_white)
|
|
4313 is_end_par = !ends_in_white(curwin->w_cursor.lnum - 1);
|
|
4314
|
|
4315 curwin->w_cursor.lnum--;
|
|
4316 for (count = line_count; count != 0 && !got_int; --count)
|
|
4317 {
|
|
4318 /*
|
|
4319 * Advance to next paragraph.
|
|
4320 */
|
|
4321 if (advance)
|
|
4322 {
|
|
4323 curwin->w_cursor.lnum++;
|
|
4324 prev_is_end_par = is_end_par;
|
|
4325 is_not_par = next_is_not_par;
|
|
4326 #ifdef FEAT_COMMENTS
|
|
4327 leader_len = next_leader_len;
|
|
4328 leader_flags = next_leader_flags;
|
|
4329 #endif
|
|
4330 }
|
|
4331
|
|
4332 /*
|
|
4333 * The last line to be formatted.
|
|
4334 */
|
|
4335 if (count == 1 || curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
|
|
4336 {
|
|
4337 next_is_not_par = TRUE;
|
|
4338 #ifdef FEAT_COMMENTS
|
|
4339 next_leader_len = 0;
|
|
4340 next_leader_flags = NULL;
|
|
4341 #endif
|
|
4342 }
|
|
4343 else
|
|
4344 {
|
|
4345 next_is_not_par = fmt_check_par(curwin->w_cursor.lnum + 1
|
|
4346 #ifdef FEAT_COMMENTS
|
|
4347 , &next_leader_len, &next_leader_flags, do_comments
|
|
4348 #endif
|
|
4349 );
|
|
4350 if (do_number_indent)
|
|
4351 next_is_start_par =
|
|
4352 (get_number_indent(curwin->w_cursor.lnum + 1) > 0);
|
|
4353 }
|
|
4354 advance = TRUE;
|
|
4355 is_end_par = (is_not_par || next_is_not_par || next_is_start_par);
|
|
4356 if (!is_end_par && do_trail_white)
|
|
4357 is_end_par = !ends_in_white(curwin->w_cursor.lnum);
|
|
4358
|
|
4359 /*
|
|
4360 * Skip lines that are not in a paragraph.
|
|
4361 */
|
|
4362 if (is_not_par)
|
|
4363 {
|
|
4364 if (line_count < 0)
|
|
4365 break;
|
|
4366 }
|
|
4367 else
|
|
4368 {
|
|
4369 /*
|
|
4370 * For the first line of a paragraph, check indent of second line.
|
|
4371 * Don't do this for comments and empty lines.
|
|
4372 */
|
|
4373 if (first_par_line
|
|
4374 && (do_second_indent || do_number_indent)
|
|
4375 && prev_is_end_par
|
|
4376 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count
|
|
4377 #ifdef FEAT_COMMENTS
|
|
4378 && leader_len == 0
|
|
4379 && next_leader_len == 0
|
|
4380 #endif
|
|
4381 )
|
|
4382 {
|
|
4383 if (do_second_indent
|
|
4384 && !lineempty(curwin->w_cursor.lnum + 1))
|
|
4385 second_indent = get_indent_lnum(curwin->w_cursor.lnum + 1);
|
|
4386 else if (do_number_indent)
|
|
4387 second_indent = get_number_indent(curwin->w_cursor.lnum);
|
|
4388 }
|
|
4389
|
|
4390 /*
|
|
4391 * When the comment leader changes, it's the end of the paragraph.
|
|
4392 */
|
|
4393 if (curwin->w_cursor.lnum >= curbuf->b_ml.ml_line_count
|
|
4394 #ifdef FEAT_COMMENTS
|
|
4395 || !same_leader(curwin->w_cursor.lnum,
|
|
4396 leader_len, leader_flags,
|
|
4397 next_leader_len, next_leader_flags)
|
|
4398 #endif
|
|
4399 )
|
|
4400 is_end_par = TRUE;
|
|
4401
|
|
4402 /*
|
|
4403 * If we have got to the end of a paragraph, or the line is
|
|
4404 * getting long, format it.
|
|
4405 */
|
|
4406 if (is_end_par || force_format)
|
|
4407 {
|
|
4408 if (need_set_indent)
|
|
4409 /* replace indent in first line with minimal number of
|
|
4410 * tabs and spaces, according to current options */
|
|
4411 (void)set_indent(get_indent(), SIN_CHANGED);
|
|
4412
|
|
4413 /* put cursor on last non-space */
|
|
4414 State = NORMAL; /* don't go past end-of-line */
|
|
4415 coladvance((colnr_T)MAXCOL);
|
|
4416 while (curwin->w_cursor.col && vim_isspace(gchar_cursor()))
|
|
4417 dec_cursor();
|
|
4418
|
|
4419 /* do the formatting, without 'showmode' */
|
|
4420 State = INSERT; /* for open_line() */
|
|
4421 smd_save = p_smd;
|
|
4422 p_smd = FALSE;
|
|
4423 insertchar(NUL, INSCHAR_FORMAT
|
|
4424 #ifdef FEAT_COMMENTS
|
|
4425 + (do_comments ? INSCHAR_DO_COM : 0)
|
|
4426 #endif
|
|
4427 , second_indent);
|
|
4428 State = old_State;
|
|
4429 p_smd = smd_save;
|
|
4430 second_indent = -1;
|
|
4431 /* at end of par.: need to set indent of next par. */
|
|
4432 need_set_indent = is_end_par;
|
|
4433 if (is_end_par)
|
|
4434 {
|
|
4435 /* When called with a negative line count, break at the
|
|
4436 * end of the paragraph. */
|
|
4437 if (line_count < 0)
|
|
4438 break;
|
|
4439 first_par_line = TRUE;
|
|
4440 }
|
|
4441 force_format = FALSE;
|
|
4442 }
|
|
4443
|
|
4444 /*
|
|
4445 * When still in same paragraph, join the lines together. But
|
|
4446 * first delete the comment leader from the second line.
|
|
4447 */
|
|
4448 if (!is_end_par)
|
|
4449 {
|
|
4450 advance = FALSE;
|
|
4451 curwin->w_cursor.lnum++;
|
|
4452 curwin->w_cursor.col = 0;
|
|
4453 if (line_count < 0 && u_save_cursor() == FAIL)
|
|
4454 break;
|
|
4455 #ifdef FEAT_COMMENTS
|
|
4456 (void)del_bytes((long)next_leader_len, FALSE);
|
|
4457 if (next_leader_len > 0)
|
|
4458 mark_col_adjust(curwin->w_cursor.lnum, (colnr_T)0, 0L,
|
|
4459 (long)-next_leader_len);
|
|
4460 #endif
|
|
4461 curwin->w_cursor.lnum--;
|
|
4462 if (do_join(TRUE) == FAIL)
|
|
4463 {
|
|
4464 beep_flush();
|
|
4465 break;
|
|
4466 }
|
|
4467 first_par_line = FALSE;
|
|
4468 /* If the line is getting long, format it next time */
|
|
4469 if (STRLEN(ml_get_curline()) > (size_t)max_len)
|
|
4470 force_format = TRUE;
|
|
4471 else
|
|
4472 force_format = FALSE;
|
|
4473 }
|
|
4474 }
|
|
4475 line_breakcheck();
|
|
4476 }
|
|
4477 }
|
|
4478
|
|
4479 /*
|
|
4480 * Return TRUE if line "lnum" ends in a white character.
|
|
4481 */
|
|
4482 static int
|
|
4483 ends_in_white(lnum)
|
|
4484 linenr_T lnum;
|
|
4485 {
|
|
4486 char_u *s = ml_get(lnum);
|
|
4487 size_t l;
|
|
4488
|
|
4489 if (*s == NUL)
|
|
4490 return FALSE;
|
|
4491 /* Don't use STRLEN() inside vim_iswhite(), SAS/C complains: "macro
|
|
4492 * invocation may call function multiple times". */
|
|
4493 l = STRLEN(s) - 1;
|
|
4494 return vim_iswhite(s[l]);
|
|
4495 }
|
|
4496
|
|
4497 /*
|
|
4498 * Blank lines, and lines containing only the comment leader, are left
|
|
4499 * untouched by the formatting. The function returns TRUE in this
|
|
4500 * case. It also returns TRUE when a line starts with the end of a comment
|
|
4501 * ('e' in comment flags), so that this line is skipped, and not joined to the
|
|
4502 * previous line. A new paragraph starts after a blank line, or when the
|
|
4503 * comment leader changes -- webb.
|
|
4504 */
|
|
4505 #ifdef FEAT_COMMENTS
|
|
4506 static int
|
|
4507 fmt_check_par(lnum, leader_len, leader_flags, do_comments)
|
|
4508 linenr_T lnum;
|
|
4509 int *leader_len;
|
|
4510 char_u **leader_flags;
|
|
4511 int do_comments;
|
|
4512 {
|
|
4513 char_u *flags = NULL; /* init for GCC */
|
|
4514 char_u *ptr;
|
|
4515
|
|
4516 ptr = ml_get(lnum);
|
|
4517 if (do_comments)
|
|
4518 *leader_len = get_leader_len(ptr, leader_flags, FALSE);
|
|
4519 else
|
|
4520 *leader_len = 0;
|
|
4521
|
|
4522 if (*leader_len > 0)
|
|
4523 {
|
|
4524 /*
|
|
4525 * Search for 'e' flag in comment leader flags.
|
|
4526 */
|
|
4527 flags = *leader_flags;
|
|
4528 while (*flags && *flags != ':' && *flags != COM_END)
|
|
4529 ++flags;
|
|
4530 }
|
|
4531
|
|
4532 return (*skipwhite(ptr + *leader_len) == NUL
|
|
4533 || (*leader_len > 0 && *flags == COM_END)
|
|
4534 || startPS(lnum, NUL, FALSE));
|
|
4535 }
|
|
4536 #else
|
|
4537 static int
|
|
4538 fmt_check_par(lnum)
|
|
4539 linenr_T lnum;
|
|
4540 {
|
|
4541 return (*skipwhite(ml_get(lnum)) == NUL || startPS(lnum, NUL, FALSE));
|
|
4542 }
|
|
4543 #endif
|
|
4544
|
|
4545 /*
|
|
4546 * Return TRUE when a paragraph starts in line "lnum". Return FALSE when the
|
|
4547 * previous line is in the same paragraph. Used for auto-formatting.
|
|
4548 */
|
|
4549 int
|
|
4550 paragraph_start(lnum)
|
|
4551 linenr_T lnum;
|
|
4552 {
|
|
4553 char_u *p;
|
|
4554 #ifdef FEAT_COMMENTS
|
|
4555 int leader_len = 0; /* leader len of current line */
|
|
4556 char_u *leader_flags = NULL; /* flags for leader of current line */
|
|
4557 int next_leader_len; /* leader len of next line */
|
|
4558 char_u *next_leader_flags; /* flags for leader of next line */
|
|
4559 int do_comments; /* format comments */
|
|
4560 #endif
|
|
4561
|
|
4562 if (lnum <= 1)
|
|
4563 return TRUE; /* start of the file */
|
|
4564
|
|
4565 p = ml_get(lnum - 1);
|
|
4566 if (*p == NUL)
|
|
4567 return TRUE; /* after empty line */
|
|
4568
|
|
4569 #ifdef FEAT_COMMENTS
|
|
4570 do_comments = has_format_option(FO_Q_COMS);
|
|
4571 #endif
|
|
4572 if (fmt_check_par(lnum - 1
|
|
4573 #ifdef FEAT_COMMENTS
|
|
4574 , &leader_len, &leader_flags, do_comments
|
|
4575 #endif
|
|
4576 ))
|
|
4577 return TRUE; /* after non-paragraph line */
|
|
4578
|
|
4579 if (fmt_check_par(lnum
|
|
4580 #ifdef FEAT_COMMENTS
|
|
4581 , &next_leader_len, &next_leader_flags, do_comments
|
|
4582 #endif
|
|
4583 ))
|
|
4584 return TRUE; /* "lnum" is not a paragraph line */
|
|
4585
|
|
4586 if (has_format_option(FO_WHITE_PAR) && !ends_in_white(lnum - 1))
|
|
4587 return TRUE; /* missing trailing space in previous line. */
|
|
4588
|
|
4589 if (has_format_option(FO_Q_NUMBER) && (get_number_indent(lnum) > 0))
|
|
4590 return TRUE; /* numbered item starts in "lnum". */
|
|
4591
|
|
4592 #ifdef FEAT_COMMENTS
|
|
4593 if (!same_leader(lnum - 1, leader_len, leader_flags,
|
|
4594 next_leader_len, next_leader_flags))
|
|
4595 return TRUE; /* change of comment leader. */
|
|
4596 #endif
|
|
4597
|
|
4598 return FALSE;
|
|
4599 }
|
|
4600
|
|
4601 #ifdef FEAT_VISUAL
|
|
4602 /*
|
|
4603 * prepare a few things for block mode yank/delete/tilde
|
|
4604 *
|
|
4605 * for delete:
|
|
4606 * - textlen includes the first/last char to be (partly) deleted
|
|
4607 * - start/endspaces is the number of columns that are taken by the
|
|
4608 * first/last deleted char minus the number of columns that have to be
|
|
4609 * deleted. for yank and tilde:
|
|
4610 * - textlen includes the first/last char to be wholly yanked
|
|
4611 * - start/endspaces is the number of columns of the first/last yanked char
|
|
4612 * that are to be yanked.
|
|
4613 */
|
|
4614 static void
|
|
4615 block_prep(oap, bdp, lnum, is_del)
|
|
4616 oparg_T *oap;
|
|
4617 struct block_def *bdp;
|
|
4618 linenr_T lnum;
|
|
4619 int is_del;
|
|
4620 {
|
|
4621 int incr = 0;
|
|
4622 char_u *pend;
|
|
4623 char_u *pstart;
|
|
4624 char_u *line;
|
|
4625 char_u *prev_pstart;
|
|
4626 char_u *prev_pend;
|
|
4627
|
|
4628 bdp->startspaces = 0;
|
|
4629 bdp->endspaces = 0;
|
|
4630 bdp->textlen = 0;
|
|
4631 bdp->start_vcol = 0;
|
|
4632 bdp->end_vcol = 0;
|
|
4633 #ifdef FEAT_VISUALEXTRA
|
|
4634 bdp->is_short = FALSE;
|
|
4635 bdp->is_oneChar = FALSE;
|
|
4636 bdp->pre_whitesp = 0;
|
|
4637 bdp->pre_whitesp_c = 0;
|
|
4638 bdp->end_char_vcols = 0;
|
|
4639 #endif
|
|
4640 bdp->start_char_vcols = 0;
|
|
4641
|
|
4642 line = ml_get(lnum);
|
|
4643 pstart = line;
|
|
4644 prev_pstart = line;
|
|
4645 while (bdp->start_vcol < oap->start_vcol && *pstart)
|
|
4646 {
|
|
4647 /* Count a tab for what it's worth (if list mode not on) */
|
|
4648 incr = lbr_chartabsize(pstart, (colnr_T)bdp->start_vcol);
|
|
4649 bdp->start_vcol += incr;
|
|
4650 #ifdef FEAT_VISUALEXTRA
|
|
4651 if (vim_iswhite(*pstart))
|
|
4652 {
|
|
4653 bdp->pre_whitesp += incr;
|
|
4654 bdp->pre_whitesp_c++;
|
|
4655 }
|
|
4656 else
|
|
4657 {
|
|
4658 bdp->pre_whitesp = 0;
|
|
4659 bdp->pre_whitesp_c = 0;
|
|
4660 }
|
|
4661 #endif
|
|
4662 prev_pstart = pstart;
|
39
|
4663 mb_ptr_adv(pstart);
|
7
|
4664 }
|
|
4665 bdp->start_char_vcols = incr;
|
|
4666 if (bdp->start_vcol < oap->start_vcol) /* line too short */
|
|
4667 {
|
|
4668 bdp->end_vcol = bdp->start_vcol;
|
|
4669 #ifdef FEAT_VISUALEXTRA
|
|
4670 bdp->is_short = TRUE;
|
|
4671 #endif
|
|
4672 if (!is_del || oap->op_type == OP_APPEND)
|
|
4673 bdp->endspaces = oap->end_vcol - oap->start_vcol + 1;
|
|
4674 }
|
|
4675 else
|
|
4676 {
|
|
4677 /* notice: this converts partly selected Multibyte characters to
|
|
4678 * spaces, too. */
|
|
4679 bdp->startspaces = bdp->start_vcol - oap->start_vcol;
|
|
4680 if (is_del && bdp->startspaces)
|
|
4681 bdp->startspaces = bdp->start_char_vcols - bdp->startspaces;
|
|
4682 pend = pstart;
|
|
4683 bdp->end_vcol = bdp->start_vcol;
|
|
4684 if (bdp->end_vcol > oap->end_vcol) /* it's all in one character */
|
|
4685 {
|
|
4686 #ifdef FEAT_VISUALEXTRA
|
|
4687 bdp->is_oneChar = TRUE;
|
|
4688 #endif
|
|
4689 if (oap->op_type == OP_INSERT)
|
|
4690 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
|
|
4691 else if (oap->op_type == OP_APPEND)
|
|
4692 {
|
|
4693 bdp->startspaces += oap->end_vcol - oap->start_vcol + 1;
|
|
4694 bdp->endspaces = bdp->start_char_vcols - bdp->startspaces;
|
|
4695 }
|
|
4696 else
|
|
4697 {
|
|
4698 bdp->startspaces = oap->end_vcol - oap->start_vcol + 1;
|
|
4699 if (is_del && oap->op_type != OP_LSHIFT)
|
|
4700 {
|
|
4701 /* just putting the sum of those two into
|
|
4702 * bdp->startspaces doesn't work for Visual replace,
|
|
4703 * so we have to split the tab in two */
|
|
4704 bdp->startspaces = bdp->start_char_vcols
|
|
4705 - (bdp->start_vcol - oap->start_vcol);
|
|
4706 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
|
|
4707 }
|
|
4708 }
|
|
4709 }
|
|
4710 else
|
|
4711 {
|
|
4712 prev_pend = pend;
|
|
4713 while (bdp->end_vcol <= oap->end_vcol && *pend != NUL)
|
|
4714 {
|
|
4715 /* Count a tab for what it's worth (if list mode not on) */
|
|
4716 prev_pend = pend;
|
|
4717 incr = lbr_chartabsize_adv(&pend, (colnr_T)bdp->end_vcol);
|
|
4718 bdp->end_vcol += incr;
|
|
4719 }
|
|
4720 if (bdp->end_vcol <= oap->end_vcol
|
|
4721 && (!is_del
|
|
4722 || oap->op_type == OP_APPEND
|
|
4723 || oap->op_type == OP_REPLACE)) /* line too short */
|
|
4724 {
|
|
4725 #ifdef FEAT_VISUALEXTRA
|
|
4726 bdp->is_short = TRUE;
|
|
4727 #endif
|
|
4728 /* Alternative: include spaces to fill up the block.
|
|
4729 * Disadvantage: can lead to trailing spaces when the line is
|
|
4730 * short where the text is put */
|
|
4731 /* if (!is_del || oap->op_type == OP_APPEND) */
|
|
4732 if (oap->op_type == OP_APPEND || virtual_op)
|
|
4733 bdp->endspaces = oap->end_vcol - bdp->end_vcol
|
|
4734 + oap->inclusive;
|
|
4735 else
|
|
4736 bdp->endspaces = 0; /* replace doesn't add characters */
|
|
4737 }
|
|
4738 else if (bdp->end_vcol > oap->end_vcol)
|
|
4739 {
|
|
4740 bdp->endspaces = bdp->end_vcol - oap->end_vcol - 1;
|
|
4741 if (!is_del && bdp->endspaces)
|
|
4742 {
|
|
4743 bdp->endspaces = incr - bdp->endspaces;
|
|
4744 if (pend != pstart)
|
|
4745 pend = prev_pend;
|
|
4746 }
|
|
4747 }
|
|
4748 }
|
|
4749 #ifdef FEAT_VISUALEXTRA
|
|
4750 bdp->end_char_vcols = incr;
|
|
4751 #endif
|
|
4752 if (is_del && bdp->startspaces)
|
|
4753 pstart = prev_pstart;
|
|
4754 bdp->textlen = (int)(pend - pstart);
|
|
4755 }
|
|
4756 bdp->textcol = (colnr_T) (pstart - line);
|
|
4757 bdp->textstart = pstart;
|
|
4758 }
|
|
4759 #endif /* FEAT_VISUAL */
|
|
4760
|
|
4761 #ifdef FEAT_RIGHTLEFT
|
|
4762 static void reverse_line __ARGS((char_u *s));
|
|
4763
|
|
4764 static void
|
|
4765 reverse_line(s)
|
|
4766 char_u *s;
|
|
4767 {
|
|
4768 int i, j;
|
|
4769 char_u c;
|
|
4770
|
|
4771 if ((i = (int)STRLEN(s) - 1) <= 0)
|
|
4772 return;
|
|
4773
|
|
4774 curwin->w_cursor.col = i - curwin->w_cursor.col;
|
|
4775 for (j = 0; j < i; j++, i--)
|
|
4776 {
|
|
4777 c = s[i]; s[i] = s[j]; s[j] = c;
|
|
4778 }
|
|
4779 }
|
|
4780
|
|
4781 # define RLADDSUBFIX(ptr) if (curwin->w_p_rl) reverse_line(ptr);
|
|
4782 #else
|
|
4783 # define RLADDSUBFIX(ptr)
|
|
4784 #endif
|
|
4785
|
|
4786 /*
|
|
4787 * add or subtract 'Prenum1' from a number in a line
|
|
4788 * 'command' is CTRL-A for add, CTRL-X for subtract
|
|
4789 *
|
|
4790 * return FAIL for failure, OK otherwise
|
|
4791 */
|
|
4792 int
|
|
4793 do_addsub(command, Prenum1)
|
|
4794 int command;
|
|
4795 linenr_T Prenum1;
|
|
4796 {
|
|
4797 int col;
|
|
4798 char_u *buf1;
|
|
4799 char_u buf2[NUMBUFLEN];
|
|
4800 int hex; /* 'X' or 'x': hex; '0': octal */
|
|
4801 static int hexupper = FALSE; /* 0xABC */
|
|
4802 long_u n;
|
|
4803 long_u oldn;
|
|
4804 char_u *ptr;
|
|
4805 int c;
|
|
4806 int length = 0; /* character length of the number */
|
|
4807 int todel;
|
|
4808 int dohex;
|
|
4809 int dooct;
|
|
4810 int doalp;
|
|
4811 int firstdigit;
|
|
4812 int negative;
|
|
4813 int subtract;
|
|
4814
|
|
4815 dohex = (vim_strchr(curbuf->b_p_nf, 'x') != NULL); /* "heX" */
|
|
4816 dooct = (vim_strchr(curbuf->b_p_nf, 'o') != NULL); /* "Octal" */
|
|
4817 doalp = (vim_strchr(curbuf->b_p_nf, 'p') != NULL); /* "alPha" */
|
|
4818
|
|
4819 ptr = ml_get_curline();
|
|
4820 RLADDSUBFIX(ptr);
|
|
4821
|
|
4822 /*
|
|
4823 * First check if we are on a hexadecimal number, after the "0x".
|
|
4824 */
|
|
4825 col = curwin->w_cursor.col;
|
|
4826 if (dohex)
|
|
4827 while (col > 0 && vim_isxdigit(ptr[col]))
|
|
4828 --col;
|
|
4829 if ( dohex
|
|
4830 && col > 0
|
|
4831 && (ptr[col] == 'X'
|
|
4832 || ptr[col] == 'x')
|
|
4833 && ptr[col - 1] == '0'
|
|
4834 && vim_isxdigit(ptr[col + 1]))
|
|
4835 {
|
|
4836 /*
|
|
4837 * Found hexadecimal number, move to its start.
|
|
4838 */
|
|
4839 --col;
|
|
4840 }
|
|
4841 else
|
|
4842 {
|
|
4843 /*
|
|
4844 * Search forward and then backward to find the start of number.
|
|
4845 */
|
|
4846 col = curwin->w_cursor.col;
|
|
4847
|
|
4848 while (ptr[col] != NUL
|
|
4849 && !vim_isdigit(ptr[col])
|
|
4850 && !(doalp && ASCII_ISALPHA(ptr[col])))
|
|
4851 ++col;
|
|
4852
|
|
4853 while (col > 0
|
|
4854 && vim_isdigit(ptr[col - 1])
|
|
4855 && !(doalp && ASCII_ISALPHA(ptr[col])))
|
|
4856 --col;
|
|
4857 }
|
|
4858
|
|
4859 /* truncate to max length of a number */
|
|
4860 if (length >= NUMBUFLEN - 1)
|
|
4861 length = NUMBUFLEN - 2;
|
|
4862
|
|
4863 /*
|
|
4864 * If a number was found, and saving for undo works, replace the number.
|
|
4865 */
|
|
4866 firstdigit = ptr[col];
|
|
4867 RLADDSUBFIX(ptr);
|
|
4868 if ((!VIM_ISDIGIT(firstdigit) && !(doalp && ASCII_ISALPHA(firstdigit)))
|
|
4869 || u_save_cursor() != OK)
|
|
4870 {
|
|
4871 beep_flush();
|
|
4872 return FAIL;
|
|
4873 }
|
|
4874
|
|
4875 /* get ptr again, because u_save() may have changed it */
|
|
4876 ptr = ml_get_curline();
|
|
4877 RLADDSUBFIX(ptr);
|
|
4878
|
|
4879 if (doalp && ASCII_ISALPHA(firstdigit))
|
|
4880 {
|
|
4881 /* decrement or increment alphabetic character */
|
|
4882 if (command == Ctrl_X)
|
|
4883 {
|
|
4884 if (CharOrd(firstdigit) < Prenum1)
|
|
4885 {
|
|
4886 if (isupper(firstdigit))
|
|
4887 firstdigit = 'A';
|
|
4888 else
|
|
4889 firstdigit = 'a';
|
|
4890 }
|
|
4891 else
|
|
4892 #ifdef EBCDIC
|
|
4893 firstdigit = EBCDIC_CHAR_ADD(firstdigit, -Prenum1);
|
|
4894 #else
|
|
4895 firstdigit -= Prenum1;
|
|
4896 #endif
|
|
4897 }
|
|
4898 else
|
|
4899 {
|
|
4900 if (26 - CharOrd(firstdigit) - 1 < Prenum1)
|
|
4901 {
|
|
4902 if (isupper(firstdigit))
|
|
4903 firstdigit = 'Z';
|
|
4904 else
|
|
4905 firstdigit = 'z';
|
|
4906 }
|
|
4907 else
|
|
4908 #ifdef EBCDIC
|
|
4909 firstdigit = EBCDIC_CHAR_ADD(firstdigit, Prenum1);
|
|
4910 #else
|
|
4911 firstdigit += Prenum1;
|
|
4912 #endif
|
|
4913 }
|
|
4914 curwin->w_cursor.col = col;
|
|
4915 (void)del_char(FALSE);
|
|
4916 ins_char(firstdigit);
|
|
4917 }
|
|
4918 else
|
|
4919 {
|
|
4920 negative = FALSE;
|
|
4921 if (col > 0 && ptr[col - 1] == '-') /* negative number */
|
|
4922 {
|
|
4923 --col;
|
|
4924 negative = TRUE;
|
|
4925 }
|
|
4926
|
|
4927 /* get the number value (unsigned) */
|
|
4928 vim_str2nr(ptr + col, &hex, &length, dooct, dohex, NULL, &n);
|
|
4929
|
|
4930 /* ignore leading '-' for hex and octal numbers */
|
|
4931 if (hex && negative)
|
|
4932 {
|
|
4933 ++col;
|
|
4934 --length;
|
|
4935 negative = FALSE;
|
|
4936 }
|
|
4937
|
|
4938 /* add or subtract */
|
|
4939 subtract = FALSE;
|
|
4940 if (command == Ctrl_X)
|
|
4941 subtract ^= TRUE;
|
|
4942 if (negative)
|
|
4943 subtract ^= TRUE;
|
|
4944
|
|
4945 oldn = n;
|
|
4946 if (subtract)
|
|
4947 n -= (unsigned long)Prenum1;
|
|
4948 else
|
|
4949 n += (unsigned long)Prenum1;
|
|
4950
|
|
4951 /* handle wraparound for decimal numbers */
|
|
4952 if (!hex)
|
|
4953 {
|
|
4954 if (subtract)
|
|
4955 {
|
|
4956 if (n > oldn)
|
|
4957 {
|
|
4958 n = 1 + (n ^ (unsigned long)-1);
|
|
4959 negative ^= TRUE;
|
|
4960 }
|
|
4961 }
|
|
4962 else /* add */
|
|
4963 {
|
|
4964 if (n < oldn)
|
|
4965 {
|
|
4966 n = (n ^ (unsigned long)-1);
|
|
4967 negative ^= TRUE;
|
|
4968 }
|
|
4969 }
|
|
4970 if (n == 0)
|
|
4971 negative = FALSE;
|
|
4972 }
|
|
4973
|
|
4974 /*
|
|
4975 * Delete the old number.
|
|
4976 */
|
|
4977 curwin->w_cursor.col = col;
|
|
4978 todel = length;
|
|
4979 c = gchar_cursor();
|
|
4980 /*
|
|
4981 * Don't include the '-' in the length, only the length of the part
|
|
4982 * after it is kept the same.
|
|
4983 */
|
|
4984 if (c == '-')
|
|
4985 --length;
|
|
4986 while (todel-- > 0)
|
|
4987 {
|
|
4988 if (c < 0x100 && isalpha(c))
|
|
4989 {
|
|
4990 if (isupper(c))
|
|
4991 hexupper = TRUE;
|
|
4992 else
|
|
4993 hexupper = FALSE;
|
|
4994 }
|
|
4995 /* del_char() will mark line needing displaying */
|
|
4996 (void)del_char(FALSE);
|
|
4997 c = gchar_cursor();
|
|
4998 }
|
|
4999
|
|
5000 /*
|
|
5001 * Prepare the leading characters in buf1[].
|
|
5002 * When there are many leading zeros it could be very long. Allocate
|
|
5003 * a bit too much.
|
|
5004 */
|
|
5005 buf1 = alloc((unsigned)length + NUMBUFLEN);
|
|
5006 if (buf1 == NULL)
|
|
5007 return FAIL;
|
|
5008 ptr = buf1;
|
|
5009 if (negative)
|
|
5010 {
|
|
5011 *ptr++ = '-';
|
|
5012 }
|
|
5013 if (hex)
|
|
5014 {
|
|
5015 *ptr++ = '0';
|
|
5016 --length;
|
|
5017 }
|
|
5018 if (hex == 'x' || hex == 'X')
|
|
5019 {
|
|
5020 *ptr++ = hex;
|
|
5021 --length;
|
|
5022 }
|
|
5023
|
|
5024 /*
|
|
5025 * Put the number characters in buf2[].
|
|
5026 */
|
|
5027 if (hex == 0)
|
|
5028 sprintf((char *)buf2, "%lu", n);
|
|
5029 else if (hex == '0')
|
|
5030 sprintf((char *)buf2, "%lo", n);
|
|
5031 else if (hex && hexupper)
|
|
5032 sprintf((char *)buf2, "%lX", n);
|
|
5033 else
|
|
5034 sprintf((char *)buf2, "%lx", n);
|
|
5035 length -= (int)STRLEN(buf2);
|
|
5036
|
|
5037 /*
|
39
|
5038 * Adjust number of zeros to the new number of digits, so the
|
|
5039 * total length of the number remains the same.
|
|
5040 * Don't do this when
|
|
5041 * the result may look like an octal number.
|
7
|
5042 */
|
39
|
5043 if (firstdigit == '0' && !(dooct && hex == 0))
|
7
|
5044 while (length-- > 0)
|
|
5045 *ptr++ = '0';
|
|
5046 *ptr = NUL;
|
|
5047 STRCAT(buf1, buf2);
|
|
5048 ins_str(buf1); /* insert the new number */
|
|
5049 vim_free(buf1);
|
|
5050 }
|
|
5051 --curwin->w_cursor.col;
|
|
5052 curwin->w_set_curswant = TRUE;
|
|
5053 #ifdef FEAT_RIGHTLEFT
|
|
5054 ptr = ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE);
|
|
5055 RLADDSUBFIX(ptr);
|
|
5056 #endif
|
|
5057 return OK;
|
|
5058 }
|
|
5059
|
|
5060 #ifdef FEAT_VIMINFO
|
|
5061 int
|
|
5062 read_viminfo_register(virp, force)
|
|
5063 vir_T *virp;
|
|
5064 int force;
|
|
5065 {
|
|
5066 int eof;
|
|
5067 int do_it = TRUE;
|
|
5068 int size;
|
|
5069 int limit;
|
|
5070 int i;
|
|
5071 int set_prev = FALSE;
|
|
5072 char_u *str;
|
|
5073 char_u **array = NULL;
|
|
5074
|
|
5075 /* We only get here (hopefully) if line[0] == '"' */
|
|
5076 str = virp->vir_line + 1;
|
|
5077 if (*str == '"')
|
|
5078 {
|
|
5079 set_prev = TRUE;
|
|
5080 str++;
|
|
5081 }
|
|
5082 if (!ASCII_ISALNUM(*str) && *str != '-')
|
|
5083 {
|
|
5084 if (viminfo_error("E577: ", _("Illegal register name"), virp->vir_line))
|
|
5085 return TRUE; /* too many errors, pretend end-of-file */
|
|
5086 do_it = FALSE;
|
|
5087 }
|
|
5088 get_yank_register(*str++, FALSE);
|
|
5089 if (!force && y_current->y_array != NULL)
|
|
5090 do_it = FALSE;
|
|
5091 size = 0;
|
|
5092 limit = 100; /* Optimized for registers containing <= 100 lines */
|
|
5093 if (do_it)
|
|
5094 {
|
|
5095 if (set_prev)
|
|
5096 y_previous = y_current;
|
|
5097 vim_free(y_current->y_array);
|
|
5098 array = y_current->y_array =
|
|
5099 (char_u **)alloc((unsigned)(limit * sizeof(char_u *)));
|
|
5100 str = skipwhite(str);
|
|
5101 if (STRNCMP(str, "CHAR", 4) == 0)
|
|
5102 y_current->y_type = MCHAR;
|
|
5103 #ifdef FEAT_VISUAL
|
|
5104 else if (STRNCMP(str, "BLOCK", 5) == 0)
|
|
5105 y_current->y_type = MBLOCK;
|
|
5106 #endif
|
|
5107 else
|
|
5108 y_current->y_type = MLINE;
|
|
5109 /* get the block width; if it's missing we get a zero, which is OK */
|
|
5110 str = skipwhite(skiptowhite(str));
|
|
5111 #ifdef FEAT_VISUAL
|
|
5112 y_current->y_width = getdigits(&str);
|
|
5113 #else
|
|
5114 (void)getdigits(&str);
|
|
5115 #endif
|
|
5116 }
|
|
5117
|
|
5118 while (!(eof = viminfo_readline(virp))
|
|
5119 && (virp->vir_line[0] == TAB || virp->vir_line[0] == '<'))
|
|
5120 {
|
|
5121 if (do_it)
|
|
5122 {
|
|
5123 if (size >= limit)
|
|
5124 {
|
|
5125 y_current->y_array = (char_u **)
|
|
5126 alloc((unsigned)(limit * 2 * sizeof(char_u *)));
|
|
5127 for (i = 0; i < limit; i++)
|
|
5128 y_current->y_array[i] = array[i];
|
|
5129 vim_free(array);
|
|
5130 limit *= 2;
|
|
5131 array = y_current->y_array;
|
|
5132 }
|
|
5133 str = viminfo_readstring(virp, 1, TRUE);
|
|
5134 if (str != NULL)
|
|
5135 array[size++] = str;
|
|
5136 else
|
|
5137 do_it = FALSE;
|
|
5138 }
|
|
5139 }
|
|
5140 if (do_it)
|
|
5141 {
|
|
5142 if (size == 0)
|
|
5143 {
|
|
5144 vim_free(array);
|
|
5145 y_current->y_array = NULL;
|
|
5146 }
|
|
5147 else if (size < limit)
|
|
5148 {
|
|
5149 y_current->y_array =
|
|
5150 (char_u **)alloc((unsigned)(size * sizeof(char_u *)));
|
|
5151 for (i = 0; i < size; i++)
|
|
5152 y_current->y_array[i] = array[i];
|
|
5153 vim_free(array);
|
|
5154 }
|
|
5155 y_current->y_size = size;
|
|
5156 }
|
|
5157 return eof;
|
|
5158 }
|
|
5159
|
|
5160 void
|
|
5161 write_viminfo_registers(fp)
|
|
5162 FILE *fp;
|
|
5163 {
|
|
5164 int i, j;
|
|
5165 char_u *type;
|
|
5166 char_u c;
|
|
5167 int num_lines;
|
|
5168 int max_num_lines;
|
|
5169 int max_kbyte;
|
|
5170 long len;
|
|
5171
|
|
5172 fprintf(fp, _("\n# Registers:\n"));
|
|
5173
|
|
5174 /* Get '<' value, use old '"' value if '<' is not found. */
|
|
5175 max_num_lines = get_viminfo_parameter('<');
|
|
5176 if (max_num_lines < 0)
|
|
5177 max_num_lines = get_viminfo_parameter('"');
|
|
5178 if (max_num_lines == 0)
|
|
5179 return;
|
|
5180 max_kbyte = get_viminfo_parameter('s');
|
|
5181 if (max_kbyte == 0)
|
|
5182 return;
|
|
5183 for (i = 0; i < NUM_REGISTERS; i++)
|
|
5184 {
|
|
5185 if (y_regs[i].y_array == NULL)
|
|
5186 continue;
|
|
5187 #ifdef FEAT_CLIPBOARD
|
|
5188 /* Skip '*'/'+' register, we don't want them back next time */
|
|
5189 if (i == STAR_REGISTER || i == PLUS_REGISTER)
|
|
5190 continue;
|
|
5191 #endif
|
|
5192 #ifdef FEAT_DND
|
|
5193 /* Neither do we want the '~' register */
|
|
5194 if (i == TILDE_REGISTER)
|
|
5195 continue;
|
|
5196 #endif
|
55
|
5197 /* Skip empty registers. */
|
7
|
5198 num_lines = y_regs[i].y_size;
|
55
|
5199 if (num_lines == 0
|
|
5200 || (num_lines == 1 && y_regs[i].y_type == MCHAR
|
|
5201 && STRLEN(y_regs[i].y_array[0]) == 0))
|
|
5202 continue;
|
|
5203
|
7
|
5204 if (max_kbyte > 0)
|
|
5205 {
|
|
5206 /* Skip register if there is more text than the maximum size. */
|
|
5207 len = 0;
|
|
5208 for (j = 0; j < num_lines; j++)
|
|
5209 len += STRLEN(y_regs[i].y_array[j]) + 1L;
|
|
5210 if (len > (long)max_kbyte * 1024L)
|
|
5211 continue;
|
|
5212 }
|
|
5213
|
|
5214 switch (y_regs[i].y_type)
|
|
5215 {
|
|
5216 case MLINE:
|
|
5217 type = (char_u *)"LINE";
|
|
5218 break;
|
|
5219 case MCHAR:
|
|
5220 type = (char_u *)"CHAR";
|
|
5221 break;
|
|
5222 #ifdef FEAT_VISUAL
|
|
5223 case MBLOCK:
|
|
5224 type = (char_u *)"BLOCK";
|
|
5225 break;
|
|
5226 #endif
|
|
5227 default:
|
|
5228 sprintf((char *)IObuff, _("E574: Unknown register type %d"),
|
|
5229 y_regs[i].y_type);
|
|
5230 emsg(IObuff);
|
|
5231 type = (char_u *)"LINE";
|
|
5232 break;
|
|
5233 }
|
|
5234 if (y_previous == &y_regs[i])
|
|
5235 fprintf(fp, "\"");
|
|
5236 c = get_register_name(i);
|
|
5237 fprintf(fp, "\"%c\t%s\t%d\n", c, type,
|
|
5238 #ifdef FEAT_VISUAL
|
|
5239 (int)y_regs[i].y_width
|
|
5240 #else
|
|
5241 0
|
|
5242 #endif
|
|
5243 );
|
|
5244
|
|
5245 /* If max_num_lines < 0, then we save ALL the lines in the register */
|
|
5246 if (max_num_lines > 0 && num_lines > max_num_lines)
|
|
5247 num_lines = max_num_lines;
|
|
5248 for (j = 0; j < num_lines; j++)
|
|
5249 {
|
|
5250 putc('\t', fp);
|
|
5251 viminfo_writestring(fp, y_regs[i].y_array[j]);
|
|
5252 }
|
|
5253 }
|
|
5254 }
|
|
5255 #endif /* FEAT_VIMINFO */
|
|
5256
|
|
5257 #if defined(FEAT_CLIPBOARD) || defined(PROTO)
|
|
5258 /*
|
|
5259 * SELECTION / PRIMARY ('*')
|
|
5260 *
|
|
5261 * Text selection stuff that uses the GUI selection register '*'. When using a
|
|
5262 * GUI this may be text from another window, otherwise it is the last text we
|
|
5263 * had highlighted with VIsual mode. With mouse support, clicking the middle
|
|
5264 * button performs the paste, otherwise you will need to do <"*p>. "
|
|
5265 * If not under X, it is synonymous with the clipboard register '+'.
|
|
5266 *
|
|
5267 * X CLIPBOARD ('+')
|
|
5268 *
|
|
5269 * Text selection stuff that uses the GUI clipboard register '+'.
|
|
5270 * Under X, this matches the standard cut/paste buffer CLIPBOARD selection.
|
|
5271 * It will be used for unnamed cut/pasting is 'clipboard' contains "unnamed",
|
|
5272 * otherwise you will need to do <"+p>. "
|
|
5273 * If not under X, it is synonymous with the selection register '*'.
|
|
5274 */
|
|
5275
|
|
5276 /*
|
|
5277 * Routine to export any final X selection we had to the environment
|
|
5278 * so that the text is still available after vim has exited. X selections
|
|
5279 * only exist while the owning application exists, so we write to the
|
|
5280 * permanent (while X runs) store CUT_BUFFER0.
|
|
5281 * Dump the CLIPBOARD selection if we own it (it's logically the more
|
|
5282 * 'permanent' of the two), otherwise the PRIMARY one.
|
|
5283 * For now, use a hard-coded sanity limit of 1Mb of data.
|
|
5284 */
|
|
5285 #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
|
|
5286 void
|
|
5287 x11_export_final_selection()
|
|
5288 {
|
|
5289 Display *dpy;
|
|
5290 char_u *str = NULL;
|
|
5291 long_u len = 0;
|
|
5292 int motion_type = -1;
|
|
5293
|
|
5294 # ifdef FEAT_GUI
|
|
5295 if (gui.in_use)
|
|
5296 dpy = X_DISPLAY;
|
|
5297 else
|
|
5298 # endif
|
|
5299 # ifdef FEAT_XCLIPBOARD
|
|
5300 dpy = xterm_dpy;
|
|
5301 # else
|
|
5302 return;
|
|
5303 # endif
|
|
5304
|
|
5305 /* Get selection to export */
|
|
5306 if (clip_plus.owned)
|
|
5307 motion_type = clip_convert_selection(&str, &len, &clip_plus);
|
|
5308 else if (clip_star.owned)
|
|
5309 motion_type = clip_convert_selection(&str, &len, &clip_star);
|
|
5310
|
|
5311 /* Check it's OK */
|
|
5312 if (dpy != NULL && str != NULL && motion_type >= 0
|
|
5313 && len < 1024*1024 && len > 0)
|
|
5314 {
|
|
5315 XStoreBuffer(dpy, (char *)str, (int)len, 0);
|
|
5316 XFlush(dpy);
|
|
5317 }
|
|
5318
|
|
5319 vim_free(str);
|
|
5320 }
|
|
5321 #endif
|
|
5322
|
|
5323 void
|
|
5324 clip_free_selection(cbd)
|
|
5325 VimClipboard *cbd;
|
|
5326 {
|
|
5327 struct yankreg *y_ptr = y_current;
|
|
5328
|
|
5329 if (cbd == &clip_plus)
|
|
5330 y_current = &y_regs[PLUS_REGISTER];
|
|
5331 else
|
|
5332 y_current = &y_regs[STAR_REGISTER];
|
|
5333 free_yank_all();
|
|
5334 y_current->y_size = 0;
|
|
5335 y_current = y_ptr;
|
|
5336 }
|
|
5337
|
|
5338 /*
|
|
5339 * Get the selected text and put it in the gui selection register '*' or '+'.
|
|
5340 */
|
|
5341 void
|
|
5342 clip_get_selection(cbd)
|
|
5343 VimClipboard *cbd;
|
|
5344 {
|
|
5345 struct yankreg *old_y_previous, *old_y_current;
|
|
5346 pos_T old_cursor;
|
|
5347 #ifdef FEAT_VISUAL
|
|
5348 pos_T old_visual;
|
|
5349 int old_visual_mode;
|
|
5350 #endif
|
|
5351 colnr_T old_curswant;
|
|
5352 int old_set_curswant;
|
|
5353 pos_T old_op_start, old_op_end;
|
|
5354 oparg_T oa;
|
|
5355 cmdarg_T ca;
|
|
5356
|
|
5357 if (cbd->owned)
|
|
5358 {
|
|
5359 if ((cbd == &clip_plus && y_regs[PLUS_REGISTER].y_array != NULL)
|
|
5360 || (cbd == &clip_star && y_regs[STAR_REGISTER].y_array != NULL))
|
|
5361 return;
|
|
5362
|
|
5363 /* Get the text between clip_star.start & clip_star.end */
|
|
5364 old_y_previous = y_previous;
|
|
5365 old_y_current = y_current;
|
|
5366 old_cursor = curwin->w_cursor;
|
|
5367 old_curswant = curwin->w_curswant;
|
|
5368 old_set_curswant = curwin->w_set_curswant;
|
|
5369 old_op_start = curbuf->b_op_start;
|
|
5370 old_op_end = curbuf->b_op_end;
|
|
5371 #ifdef FEAT_VISUAL
|
|
5372 old_visual = VIsual;
|
|
5373 old_visual_mode = VIsual_mode;
|
|
5374 #endif
|
|
5375 clear_oparg(&oa);
|
|
5376 oa.regname = (cbd == &clip_plus ? '+' : '*');
|
|
5377 oa.op_type = OP_YANK;
|
|
5378 vim_memset(&ca, 0, sizeof(ca));
|
|
5379 ca.oap = &oa;
|
|
5380 ca.cmdchar = 'y';
|
|
5381 ca.count1 = 1;
|
|
5382 ca.retval = CA_NO_ADJ_OP_END;
|
|
5383 do_pending_operator(&ca, 0, TRUE);
|
|
5384 y_previous = old_y_previous;
|
|
5385 y_current = old_y_current;
|
|
5386 curwin->w_cursor = old_cursor;
|
|
5387 curwin->w_curswant = old_curswant;
|
|
5388 curwin->w_set_curswant = old_set_curswant;
|
|
5389 curbuf->b_op_start = old_op_start;
|
|
5390 curbuf->b_op_end = old_op_end;
|
|
5391 #ifdef FEAT_VISUAL
|
|
5392 VIsual = old_visual;
|
|
5393 VIsual_mode = old_visual_mode;
|
|
5394 #endif
|
|
5395 }
|
|
5396 else
|
|
5397 {
|
|
5398 clip_free_selection(cbd);
|
|
5399
|
|
5400 /* Try to get selected text from another window */
|
|
5401 clip_gen_request_selection(cbd);
|
|
5402 }
|
|
5403 }
|
|
5404
|
|
5405 /* Convert from the GUI selection string into the '*'/'+' register */
|
|
5406 void
|
|
5407 clip_yank_selection(type, str, len, cbd)
|
|
5408 int type;
|
|
5409 char_u *str;
|
|
5410 long len;
|
|
5411 VimClipboard *cbd;
|
|
5412 {
|
|
5413 struct yankreg *y_ptr;
|
|
5414
|
|
5415 if (cbd == &clip_plus)
|
|
5416 y_ptr = &y_regs[PLUS_REGISTER];
|
|
5417 else
|
|
5418 y_ptr = &y_regs[STAR_REGISTER];
|
|
5419
|
|
5420 clip_free_selection(cbd);
|
|
5421
|
|
5422 str_to_reg(y_ptr, type, str, len, 0L);
|
|
5423 }
|
|
5424
|
|
5425 /*
|
|
5426 * Convert the '*'/'+' register into a GUI selection string returned in *str
|
|
5427 * with length *len.
|
|
5428 * Returns the motion type, or -1 for failure.
|
|
5429 */
|
|
5430 int
|
|
5431 clip_convert_selection(str, len, cbd)
|
|
5432 char_u **str;
|
|
5433 long_u *len;
|
|
5434 VimClipboard *cbd;
|
|
5435 {
|
|
5436 char_u *p;
|
|
5437 int lnum;
|
|
5438 int i, j;
|
|
5439 int_u eolsize;
|
|
5440 struct yankreg *y_ptr;
|
|
5441
|
|
5442 if (cbd == &clip_plus)
|
|
5443 y_ptr = &y_regs[PLUS_REGISTER];
|
|
5444 else
|
|
5445 y_ptr = &y_regs[STAR_REGISTER];
|
|
5446
|
|
5447 #ifdef USE_CRNL
|
|
5448 eolsize = 2;
|
|
5449 #else
|
|
5450 eolsize = 1;
|
|
5451 #endif
|
|
5452
|
|
5453 *str = NULL;
|
|
5454 *len = 0;
|
|
5455 if (y_ptr->y_array == NULL)
|
|
5456 return -1;
|
|
5457
|
|
5458 for (i = 0; i < y_ptr->y_size; i++)
|
|
5459 *len += (long_u)STRLEN(y_ptr->y_array[i]) + eolsize;
|
|
5460
|
|
5461 /*
|
|
5462 * Don't want newline character at end of last line if we're in MCHAR mode.
|
|
5463 */
|
|
5464 if (y_ptr->y_type == MCHAR && *len >= eolsize)
|
|
5465 *len -= eolsize;
|
|
5466
|
|
5467 p = *str = lalloc(*len + 1, TRUE); /* add one to avoid zero */
|
|
5468 if (p == NULL)
|
|
5469 return -1;
|
|
5470 lnum = 0;
|
|
5471 for (i = 0, j = 0; i < (int)*len; i++, j++)
|
|
5472 {
|
|
5473 if (y_ptr->y_array[lnum][j] == '\n')
|
|
5474 p[i] = NUL;
|
|
5475 else if (y_ptr->y_array[lnum][j] == NUL)
|
|
5476 {
|
|
5477 #ifdef USE_CRNL
|
|
5478 p[i++] = '\r';
|
|
5479 #endif
|
|
5480 #ifdef USE_CR
|
|
5481 p[i] = '\r';
|
|
5482 #else
|
|
5483 p[i] = '\n';
|
|
5484 #endif
|
|
5485 lnum++;
|
|
5486 j = -1;
|
|
5487 }
|
|
5488 else
|
|
5489 p[i] = y_ptr->y_array[lnum][j];
|
|
5490 }
|
|
5491 return y_ptr->y_type;
|
|
5492 }
|
|
5493
|
|
5494
|
|
5495 # if defined(FEAT_VISUAL) || defined(FEAT_EVAL)
|
|
5496 /*
|
|
5497 * If we have written to a clipboard register, send the text to the clipboard.
|
|
5498 */
|
|
5499 static void
|
|
5500 may_set_selection()
|
|
5501 {
|
|
5502 if (y_current == &(y_regs[STAR_REGISTER]) && clip_star.available)
|
|
5503 {
|
|
5504 clip_own_selection(&clip_star);
|
|
5505 clip_gen_set_selection(&clip_star);
|
|
5506 }
|
|
5507 else if (y_current == &(y_regs[PLUS_REGISTER]) && clip_plus.available)
|
|
5508 {
|
|
5509 clip_own_selection(&clip_plus);
|
|
5510 clip_gen_set_selection(&clip_plus);
|
|
5511 }
|
|
5512 }
|
|
5513 # endif
|
|
5514
|
|
5515 #endif /* FEAT_CLIPBOARD || PROTO */
|
|
5516
|
|
5517
|
|
5518 #if defined(FEAT_DND) || defined(PROTO)
|
|
5519 /*
|
|
5520 * Replace the contents of the '~' register with str.
|
|
5521 */
|
|
5522 void
|
|
5523 dnd_yank_drag_data(str, len)
|
|
5524 char_u *str;
|
|
5525 long len;
|
|
5526 {
|
|
5527 struct yankreg *curr;
|
|
5528
|
|
5529 curr = y_current;
|
|
5530 y_current = &y_regs[TILDE_REGISTER];
|
|
5531 free_yank_all();
|
|
5532 str_to_reg(y_current, MCHAR, str, len, 0L);
|
|
5533 y_current = curr;
|
|
5534 }
|
|
5535 #endif
|
|
5536
|
|
5537
|
|
5538 #if defined(FEAT_EVAL) || defined(PROTO)
|
|
5539 /*
|
|
5540 * Return the type of a register.
|
|
5541 * Used for getregtype()
|
|
5542 * Returns MAUTO for error.
|
|
5543 */
|
|
5544 char_u
|
|
5545 get_reg_type(regname, reglen)
|
|
5546 int regname;
|
|
5547 long *reglen;
|
|
5548 {
|
|
5549 switch (regname)
|
|
5550 {
|
|
5551 case '%': /* file name */
|
|
5552 case '#': /* alternate file name */
|
|
5553 case '=': /* expression */
|
|
5554 case ':': /* last command line */
|
|
5555 case '/': /* last search-pattern */
|
|
5556 case '.': /* last inserted text */
|
|
5557 #ifdef FEAT_SEARCHPATH
|
|
5558 case Ctrl_F: /* Filename under cursor */
|
|
5559 case Ctrl_P: /* Path under cursor, expand via "path" */
|
|
5560 #endif
|
|
5561 case Ctrl_W: /* word under cursor */
|
|
5562 case Ctrl_A: /* WORD (mnemonic All) under cursor */
|
|
5563 case '_': /* black hole: always empty */
|
|
5564 return MCHAR;
|
|
5565 }
|
|
5566
|
|
5567 #ifdef FEAT_CLIPBOARD
|
|
5568 regname = may_get_selection(regname);
|
|
5569 #endif
|
|
5570
|
|
5571 /* Should we check for a valid name? */
|
|
5572 get_yank_register(regname, FALSE);
|
|
5573
|
|
5574 if (y_current->y_array != NULL)
|
|
5575 {
|
|
5576 #ifdef FEAT_VISUAL
|
|
5577 if (reglen != NULL && y_current->y_type == MBLOCK)
|
|
5578 *reglen = y_current->y_width;
|
|
5579 #endif
|
|
5580 return y_current->y_type;
|
|
5581 }
|
|
5582 return MAUTO;
|
|
5583 }
|
|
5584
|
|
5585 /*
|
|
5586 * Return the contents of a register as a single allocated string.
|
|
5587 * Used for "@r" in expressions and for getreg().
|
|
5588 * Returns NULL for error.
|
|
5589 */
|
|
5590 char_u *
|
|
5591 get_reg_contents(regname, allowexpr)
|
|
5592 int regname;
|
|
5593 int allowexpr; /* allow "=" register. */
|
|
5594 {
|
|
5595 long i;
|
|
5596 char_u *retval;
|
|
5597 int allocated;
|
|
5598 long len;
|
|
5599
|
|
5600 /* Don't allow using an expression register inside an expression */
|
|
5601 if (regname == '=')
|
|
5602 {
|
|
5603 if (allowexpr)
|
|
5604 return get_expr_line();
|
|
5605 return NULL;
|
|
5606 }
|
|
5607
|
|
5608 if (regname == '@') /* "@@" is used for unnamed register */
|
|
5609 regname = '"';
|
|
5610
|
|
5611 /* check for valid regname */
|
|
5612 if (regname != NUL && !valid_yank_reg(regname, FALSE))
|
|
5613 return NULL;
|
|
5614
|
|
5615 #ifdef FEAT_CLIPBOARD
|
|
5616 regname = may_get_selection(regname);
|
|
5617 #endif
|
|
5618
|
|
5619 if (get_spec_reg(regname, &retval, &allocated, FALSE))
|
|
5620 {
|
|
5621 if (retval == NULL)
|
|
5622 return NULL;
|
|
5623 if (!allocated)
|
|
5624 retval = vim_strsave(retval);
|
|
5625 return retval;
|
|
5626 }
|
|
5627
|
|
5628 get_yank_register(regname, FALSE);
|
|
5629 if (y_current->y_array == NULL)
|
|
5630 return NULL;
|
|
5631
|
|
5632 /*
|
|
5633 * Compute length of resulting string.
|
|
5634 */
|
|
5635 len = 0;
|
|
5636 for (i = 0; i < y_current->y_size; ++i)
|
|
5637 {
|
|
5638 len += (long)STRLEN(y_current->y_array[i]);
|
|
5639 /*
|
|
5640 * Insert a newline between lines and after last line if
|
|
5641 * y_type is MLINE.
|
|
5642 */
|
|
5643 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
|
|
5644 ++len;
|
|
5645 }
|
|
5646
|
|
5647 retval = lalloc(len + 1, TRUE);
|
|
5648
|
|
5649 /*
|
|
5650 * Copy the lines of the yank register into the string.
|
|
5651 */
|
|
5652 if (retval != NULL)
|
|
5653 {
|
|
5654 len = 0;
|
|
5655 for (i = 0; i < y_current->y_size; ++i)
|
|
5656 {
|
|
5657 STRCPY(retval + len, y_current->y_array[i]);
|
|
5658 len += (long)STRLEN(retval + len);
|
|
5659
|
|
5660 /*
|
|
5661 * Insert a NL between lines and after the last line if y_type is
|
|
5662 * MLINE.
|
|
5663 */
|
|
5664 if (y_current->y_type == MLINE || i < y_current->y_size - 1)
|
|
5665 retval[len++] = '\n';
|
|
5666 }
|
|
5667 retval[len] = NUL;
|
|
5668 }
|
|
5669
|
|
5670 return retval;
|
|
5671 }
|
|
5672
|
|
5673 /*
|
|
5674 * Store string "str" in register "name".
|
|
5675 * "maxlen" is the maximum number of bytes to use, -1 for all bytes.
|
|
5676 * If "must_append" is TRUE, always append to the register. Otherwise append
|
|
5677 * if "name" is an uppercase letter.
|
|
5678 * Note: "maxlen" and "must_append" don't work for the "/" register.
|
|
5679 * Careful: 'str' is modified, you may have to use a copy!
|
|
5680 * If "str" ends in '\n' or '\r', use linewise, otherwise use characterwise.
|
|
5681 */
|
|
5682 void
|
|
5683 write_reg_contents(name, str, maxlen, must_append)
|
|
5684 int name;
|
|
5685 char_u *str;
|
|
5686 int maxlen;
|
|
5687 int must_append;
|
|
5688 {
|
|
5689 write_reg_contents_ex(name, str, maxlen, must_append, MAUTO, 0L);
|
|
5690 }
|
|
5691
|
|
5692 void
|
|
5693 write_reg_contents_ex(name, str, maxlen, must_append, yank_type, block_len)
|
|
5694 int name;
|
|
5695 char_u *str;
|
|
5696 int maxlen;
|
|
5697 int must_append;
|
|
5698 int yank_type;
|
|
5699 long block_len;
|
|
5700 {
|
|
5701 struct yankreg *old_y_previous, *old_y_current;
|
|
5702 long len;
|
|
5703
|
|
5704 /* Special case: '/' search pattern */
|
|
5705 if (name == '/')
|
|
5706 {
|
|
5707 set_last_search_pat(str, RE_SEARCH, TRUE, TRUE);
|
|
5708 return;
|
|
5709 }
|
|
5710
|
|
5711 if (!valid_yank_reg(name, TRUE)) /* check for valid reg name */
|
|
5712 {
|
168
|
5713 emsg_invreg(name);
|
7
|
5714 return;
|
|
5715 }
|
|
5716
|
|
5717 if (name == '_') /* black hole: nothing to do */
|
|
5718 return;
|
|
5719
|
|
5720 /* Don't want to change the current (unnamed) register */
|
|
5721 old_y_previous = y_previous;
|
|
5722 old_y_current = y_current;
|
|
5723
|
|
5724 get_yank_register(name, TRUE);
|
|
5725 if (!y_append && !must_append)
|
|
5726 free_yank_all();
|
|
5727 if (maxlen >= 0)
|
|
5728 len = maxlen;
|
|
5729 else
|
|
5730 len = (long)STRLEN(str);
|
|
5731 #ifndef FEAT_VISUAL
|
|
5732 /* Just in case - make sure we don't use MBLOCK */
|
|
5733 if (yank_type == MBLOCK)
|
|
5734 yank_type = MAUTO;
|
|
5735 #endif
|
|
5736 if (yank_type == MAUTO)
|
|
5737 yank_type = ((len > 0 && (str[len - 1] == '\n' || str[len - 1] == '\r'))
|
|
5738 ? MLINE : MCHAR);
|
|
5739 str_to_reg(y_current, yank_type, str, len, block_len);
|
|
5740
|
|
5741 # ifdef FEAT_CLIPBOARD
|
|
5742 /* Send text of clipboard register to the clipboard. */
|
|
5743 may_set_selection();
|
|
5744 # endif
|
|
5745
|
|
5746 /* ':let @" = "val"' should change the meaning of the "" register */
|
|
5747 if (name != '"')
|
|
5748 y_previous = old_y_previous;
|
|
5749 y_current = old_y_current;
|
|
5750 }
|
|
5751 #endif /* FEAT_EVAL */
|
|
5752
|
|
5753 #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
|
|
5754 /*
|
|
5755 * Put a string into a register. When the register is not empty, the string
|
|
5756 * is appended.
|
|
5757 */
|
|
5758 static void
|
|
5759 str_to_reg(y_ptr, type, str, len, blocklen)
|
|
5760 struct yankreg *y_ptr; /* pointer to yank register */
|
|
5761 int type; /* MCHAR, MLINE or MBLOCK */
|
|
5762 char_u *str; /* string to put in register */
|
|
5763 long len; /* length of string */
|
|
5764 long blocklen; /* width of Visual block */
|
|
5765 {
|
|
5766 int lnum;
|
|
5767 long start;
|
|
5768 long i;
|
|
5769 int extra;
|
|
5770 int newlines; /* number of lines added */
|
|
5771 int extraline = 0; /* extra line at the end */
|
|
5772 int append = FALSE; /* append to last line in register */
|
|
5773 char_u *s;
|
|
5774 char_u **pp;
|
|
5775 #ifdef FEAT_VISUAL
|
|
5776 long maxlen;
|
|
5777 #endif
|
|
5778
|
|
5779 if (y_ptr->y_array == NULL) /* NULL means emtpy register */
|
|
5780 y_ptr->y_size = 0;
|
|
5781
|
|
5782 /*
|
|
5783 * Count the number of lines within the string
|
|
5784 */
|
|
5785 newlines = 0;
|
|
5786 for (i = 0; i < len; i++)
|
|
5787 if (str[i] == '\n')
|
|
5788 ++newlines;
|
|
5789 if (type == MCHAR || len == 0 || str[len - 1] != '\n')
|
|
5790 {
|
|
5791 extraline = 1;
|
|
5792 ++newlines; /* count extra newline at the end */
|
|
5793 }
|
|
5794 if (y_ptr->y_size > 0 && y_ptr->y_type == MCHAR)
|
|
5795 {
|
|
5796 append = TRUE;
|
|
5797 --newlines; /* uncount newline when appending first line */
|
|
5798 }
|
|
5799
|
|
5800 /*
|
|
5801 * Allocate an array to hold the pointers to the new register lines.
|
|
5802 * If the register was not empty, move the existing lines to the new array.
|
|
5803 */
|
|
5804 pp = (char_u **)lalloc_clear((y_ptr->y_size + newlines)
|
|
5805 * sizeof(char_u *), TRUE);
|
|
5806 if (pp == NULL) /* out of memory */
|
|
5807 return;
|
|
5808 for (lnum = 0; lnum < y_ptr->y_size; ++lnum)
|
|
5809 pp[lnum] = y_ptr->y_array[lnum];
|
|
5810 vim_free(y_ptr->y_array);
|
|
5811 y_ptr->y_array = pp;
|
|
5812 #ifdef FEAT_VISUAL
|
|
5813 maxlen = 0;
|
|
5814 #endif
|
|
5815
|
|
5816 /*
|
|
5817 * Find the end of each line and save it into the array.
|
|
5818 */
|
|
5819 for (start = 0; start < len + extraline; start += i + 1)
|
|
5820 {
|
|
5821 for (i = start; i < len; ++i) /* find the end of the line */
|
|
5822 if (str[i] == '\n')
|
|
5823 break;
|
|
5824 i -= start; /* i is now length of line */
|
|
5825 #ifdef FEAT_VISUAL
|
|
5826 if (i > maxlen)
|
|
5827 maxlen = i;
|
|
5828 #endif
|
|
5829 if (append)
|
|
5830 {
|
|
5831 --lnum;
|
|
5832 extra = (int)STRLEN(y_ptr->y_array[lnum]);
|
|
5833 }
|
|
5834 else
|
|
5835 extra = 0;
|
|
5836 s = alloc((unsigned)(i + extra + 1));
|
|
5837 if (s == NULL)
|
|
5838 break;
|
|
5839 if (extra)
|
|
5840 mch_memmove(s, y_ptr->y_array[lnum], (size_t)extra);
|
|
5841 if (append)
|
|
5842 vim_free(y_ptr->y_array[lnum]);
|
|
5843 if (i)
|
|
5844 mch_memmove(s + extra, str + start, (size_t)i);
|
|
5845 extra += i;
|
|
5846 s[extra] = NUL;
|
|
5847 y_ptr->y_array[lnum++] = s;
|
|
5848 while (--extra >= 0)
|
|
5849 {
|
|
5850 if (*s == NUL)
|
|
5851 *s = '\n'; /* replace NUL with newline */
|
|
5852 ++s;
|
|
5853 }
|
|
5854 append = FALSE; /* only first line is appended */
|
|
5855 }
|
|
5856 y_ptr->y_type = type;
|
|
5857 y_ptr->y_size = lnum;
|
|
5858 # ifdef FEAT_VISUAL
|
|
5859 if (type == MBLOCK)
|
|
5860 y_ptr->y_width = (blocklen < 0 ? maxlen - 1 : blocklen);
|
|
5861 else
|
|
5862 y_ptr->y_width = 0;
|
|
5863 # endif
|
|
5864 }
|
|
5865 #endif /* FEAT_CLIPBOARD || FEAT_EVAL || PROTO */
|
|
5866
|
|
5867 void
|
|
5868 clear_oparg(oap)
|
|
5869 oparg_T *oap;
|
|
5870 {
|
|
5871 vim_memset(oap, 0, sizeof(oparg_T));
|
|
5872 }
|
|
5873
|
161
|
5874 static long line_count_info __ARGS((char_u *line, long *wc, long *cc, long limit, int eol_size));
|
7
|
5875
|
|
5876 /*
|
161
|
5877 * Count the number of bytes, characters and "words" in a line.
|
7
|
5878 *
|
|
5879 * "Words" are counted by looking for boundaries between non-space and
|
|
5880 * space characters. (it seems to produce results that match 'wc'.)
|
|
5881 *
|
161
|
5882 * Return value is byte count; word count for the line is added to "*wc".
|
|
5883 * Char count is added to "*cc".
|
7
|
5884 *
|
|
5885 * The function will only examine the first "limit" characters in the
|
|
5886 * line, stopping if it encounters an end-of-line (NUL byte). In that
|
|
5887 * case, eol_size will be added to the character count to account for
|
|
5888 * the size of the EOL character.
|
|
5889 */
|
|
5890 static long
|
161
|
5891 line_count_info(line, wc, cc, limit, eol_size)
|
7
|
5892 char_u *line;
|
|
5893 long *wc;
|
161
|
5894 long *cc;
|
7
|
5895 long limit;
|
|
5896 int eol_size;
|
|
5897 {
|
161
|
5898 long i;
|
|
5899 long words = 0;
|
|
5900 long chars = 0;
|
7
|
5901 int is_word = 0;
|
|
5902
|
161
|
5903 for (i = 0; line[i] && i < limit; )
|
7
|
5904 {
|
|
5905 if (is_word)
|
|
5906 {
|
|
5907 if (vim_isspace(line[i]))
|
|
5908 {
|
|
5909 words++;
|
|
5910 is_word = 0;
|
|
5911 }
|
|
5912 }
|
|
5913 else if (!vim_isspace(line[i]))
|
|
5914 is_word = 1;
|
161
|
5915 ++chars;
|
|
5916 #ifdef FEAT_MBYTE
|
|
5917 i += mb_ptr2len_check(line + i);
|
|
5918 #else
|
|
5919 ++i;
|
|
5920 #endif
|
7
|
5921 }
|
|
5922
|
|
5923 if (is_word)
|
|
5924 words++;
|
|
5925 *wc += words;
|
|
5926
|
|
5927 /* Add eol_size if the end of line was reached before hitting limit. */
|
161
|
5928 if (line[i] == NUL && i < limit)
|
|
5929 {
|
7
|
5930 i += eol_size;
|
161
|
5931 chars += eol_size;
|
|
5932 }
|
|
5933 *cc += chars;
|
7
|
5934 return i;
|
|
5935 }
|
|
5936
|
|
5937 /*
|
|
5938 * Give some info about the position of the cursor (for "g CTRL-G").
|
|
5939 * In Visual mode, give some info about the selected region. (In this case,
|
|
5940 * the *_count_cursor variables store running totals for the selection.)
|
|
5941 */
|
|
5942 void
|
|
5943 cursor_pos_info()
|
|
5944 {
|
|
5945 char_u *p;
|
|
5946 char_u buf1[20];
|
|
5947 char_u buf2[20];
|
|
5948 linenr_T lnum;
|
161
|
5949 long byte_count = 0;
|
|
5950 long byte_count_cursor = 0;
|
7
|
5951 long char_count = 0;
|
|
5952 long char_count_cursor = 0;
|
161
|
5953 long word_count = 0;
|
|
5954 long word_count_cursor = 0;
|
7
|
5955 int eol_size;
|
|
5956 long last_check = 100000L;
|
|
5957 #ifdef FEAT_VISUAL
|
|
5958 long line_count_selected = 0;
|
|
5959 pos_T min_pos, max_pos;
|
|
5960 oparg_T oparg;
|
|
5961 struct block_def bd;
|
|
5962 #endif
|
|
5963
|
|
5964 /*
|
|
5965 * Compute the length of the file in characters.
|
|
5966 */
|
|
5967 if (curbuf->b_ml.ml_flags & ML_EMPTY)
|
|
5968 {
|
|
5969 MSG(_(no_lines_msg));
|
|
5970 }
|
|
5971 else
|
|
5972 {
|
|
5973 if (get_fileformat(curbuf) == EOL_DOS)
|
|
5974 eol_size = 2;
|
|
5975 else
|
|
5976 eol_size = 1;
|
|
5977
|
|
5978 #ifdef FEAT_VISUAL
|
|
5979 if (VIsual_active)
|
|
5980 {
|
|
5981 if (lt(VIsual, curwin->w_cursor))
|
|
5982 {
|
|
5983 min_pos = VIsual;
|
|
5984 max_pos = curwin->w_cursor;
|
|
5985 }
|
|
5986 else
|
|
5987 {
|
|
5988 min_pos = curwin->w_cursor;
|
|
5989 max_pos = VIsual;
|
|
5990 }
|
|
5991 if (*p_sel == 'e' && max_pos.col > 0)
|
|
5992 --max_pos.col;
|
|
5993
|
|
5994 if (VIsual_mode == Ctrl_V)
|
|
5995 {
|
|
5996 oparg.is_VIsual = 1;
|
|
5997 oparg.block_mode = TRUE;
|
|
5998 oparg.op_type = OP_NOP;
|
|
5999 getvcols(curwin, &min_pos, &max_pos,
|
|
6000 &oparg.start_vcol, &oparg.end_vcol);
|
|
6001 /* Swap the start, end vcol if needed */
|
|
6002 if (oparg.end_vcol < oparg.start_vcol)
|
|
6003 {
|
|
6004 oparg.end_vcol += oparg.start_vcol;
|
|
6005 oparg.start_vcol = oparg.end_vcol - oparg.start_vcol;
|
|
6006 oparg.end_vcol -= oparg.start_vcol;
|
|
6007 }
|
|
6008 }
|
|
6009 line_count_selected = max_pos.lnum - min_pos.lnum + 1;
|
|
6010 }
|
|
6011 #endif
|
|
6012
|
|
6013 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
|
|
6014 {
|
|
6015 /* Check for a CTRL-C every 100000 characters. */
|
161
|
6016 if (byte_count > last_check)
|
7
|
6017 {
|
|
6018 ui_breakcheck();
|
|
6019 if (got_int)
|
|
6020 return;
|
161
|
6021 last_check = byte_count + 100000L;
|
7
|
6022 }
|
|
6023
|
|
6024 #ifdef FEAT_VISUAL
|
|
6025 /* Do extra processing for VIsual mode. */
|
|
6026 if (VIsual_active
|
|
6027 && lnum >= min_pos.lnum && lnum <= max_pos.lnum)
|
|
6028 {
|
45
|
6029 char_u *s = NULL;
|
|
6030 long len = 0L;
|
|
6031
|
7
|
6032 switch (VIsual_mode)
|
|
6033 {
|
|
6034 case Ctrl_V:
|
|
6035 # ifdef FEAT_VIRTUALEDIT
|
|
6036 virtual_op = virtual_active();
|
|
6037 # endif
|
|
6038 block_prep(&oparg, &bd, lnum, 0);
|
|
6039 # ifdef FEAT_VIRTUALEDIT
|
|
6040 virtual_op = MAYBE;
|
|
6041 # endif
|
45
|
6042 s = bd.textstart;
|
|
6043 len = (long)bd.textlen;
|
7
|
6044 break;
|
|
6045 case 'V':
|
45
|
6046 s = ml_get(lnum);
|
|
6047 len = MAXCOL;
|
7
|
6048 break;
|
|
6049 case 'v':
|
|
6050 {
|
|
6051 colnr_T start_col = (lnum == min_pos.lnum)
|
|
6052 ? min_pos.col : 0;
|
|
6053 colnr_T end_col = (lnum == max_pos.lnum)
|
|
6054 ? max_pos.col - start_col + 1 : MAXCOL;
|
|
6055
|
45
|
6056 s = ml_get(lnum) + start_col;
|
|
6057 len = end_col;
|
7
|
6058 }
|
|
6059 break;
|
|
6060 }
|
45
|
6061 if (s != NULL)
|
|
6062 {
|
161
|
6063 byte_count_cursor += line_count_info(s, &word_count_cursor,
|
|
6064 &char_count_cursor, len, eol_size);
|
45
|
6065 if (lnum == curbuf->b_ml.ml_line_count
|
|
6066 && !curbuf->b_p_eol
|
|
6067 && curbuf->b_p_bin
|
50
|
6068 && (long)STRLEN(s) < len)
|
161
|
6069 byte_count_cursor -= eol_size;
|
45
|
6070 }
|
7
|
6071 }
|
|
6072 else
|
|
6073 #endif
|
|
6074 {
|
|
6075 /* In non-visual mode, check for the line the cursor is on */
|
|
6076 if (lnum == curwin->w_cursor.lnum)
|
|
6077 {
|
|
6078 word_count_cursor += word_count;
|
161
|
6079 char_count_cursor += char_count;
|
|
6080 byte_count_cursor = byte_count +
|
|
6081 line_count_info(ml_get(lnum),
|
|
6082 &word_count_cursor, &char_count_cursor,
|
7
|
6083 (long)(curwin->w_cursor.col + 1), eol_size);
|
|
6084 }
|
|
6085 }
|
|
6086 /* Add to the running totals */
|
161
|
6087 byte_count += line_count_info(ml_get(lnum), &word_count,
|
|
6088 &char_count, (long)MAXCOL, eol_size);
|
7
|
6089 }
|
|
6090
|
|
6091 /* Correction for when last line doesn't have an EOL. */
|
|
6092 if (!curbuf->b_p_eol && curbuf->b_p_bin)
|
161
|
6093 byte_count -= eol_size;
|
7
|
6094
|
|
6095 #ifdef FEAT_VISUAL
|
|
6096 if (VIsual_active)
|
|
6097 {
|
|
6098 if (VIsual_mode == Ctrl_V)
|
|
6099 {
|
|
6100 getvcols(curwin, &min_pos, &max_pos, &min_pos.col,
|
|
6101 &max_pos.col);
|
|
6102 sprintf((char *)buf1, _("%ld Cols; "),
|
|
6103 (long)(oparg.end_vcol - oparg.start_vcol + 1));
|
|
6104 }
|
|
6105 else
|
|
6106 buf1[0] = NUL;
|
|
6107
|
161
|
6108 if (char_count_cursor == byte_count_cursor
|
|
6109 && char_count == byte_count)
|
|
6110 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Bytes"),
|
7
|
6111 buf1, line_count_selected,
|
|
6112 (long)curbuf->b_ml.ml_line_count,
|
|
6113 word_count_cursor, word_count,
|
161
|
6114 byte_count_cursor, byte_count);
|
|
6115 else
|
|
6116 sprintf((char *)IObuff, _("Selected %s%ld of %ld Lines; %ld of %ld Words; %ld of %ld Chars; %ld of %ld Bytes"),
|
|
6117 buf1, line_count_selected,
|
|
6118 (long)curbuf->b_ml.ml_line_count,
|
|
6119 word_count_cursor, word_count,
|
|
6120 char_count_cursor, char_count,
|
|
6121 byte_count_cursor, byte_count);
|
7
|
6122 }
|
|
6123 else
|
|
6124 #endif
|
|
6125 {
|
|
6126 p = ml_get_curline();
|
|
6127 validate_virtcol();
|
|
6128 col_print(buf1, (int)curwin->w_cursor.col + 1,
|
|
6129 (int)curwin->w_virtcol + 1);
|
|
6130 col_print(buf2, (int)STRLEN(p), linetabsize(p));
|
|
6131
|
161
|
6132 if (char_count_cursor == byte_count_cursor
|
|
6133 && char_count == byte_count)
|
|
6134 sprintf((char *)IObuff, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Byte %ld of %ld"),
|
7
|
6135 (char *)buf1, (char *)buf2,
|
|
6136 (long)curwin->w_cursor.lnum,
|
|
6137 (long)curbuf->b_ml.ml_line_count,
|
|
6138 word_count_cursor, word_count,
|
161
|
6139 byte_count_cursor, byte_count);
|
|
6140 else
|
|
6141 sprintf((char *)IObuff, _("Col %s of %s; Line %ld of %ld; Word %ld of %ld; Char %ld of %ld; Byte %ld of %ld"),
|
|
6142 (char *)buf1, (char *)buf2,
|
|
6143 (long)curwin->w_cursor.lnum,
|
|
6144 (long)curbuf->b_ml.ml_line_count,
|
|
6145 word_count_cursor, word_count,
|
|
6146 char_count_cursor, char_count,
|
|
6147 byte_count_cursor, byte_count);
|
7
|
6148 }
|
|
6149
|
|
6150 #ifdef FEAT_MBYTE
|
161
|
6151 byte_count = bomb_size();
|
|
6152 if (byte_count > 0)
|
7
|
6153 sprintf((char *)IObuff + STRLEN(IObuff), _("(+%ld for BOM)"),
|
161
|
6154 byte_count);
|
7
|
6155 #endif
|
|
6156 /* Don't shorten this message, the user asked for it. */
|
|
6157 p = p_shm;
|
|
6158 p_shm = (char_u *)"";
|
|
6159 msg(IObuff);
|
|
6160 p_shm = p;
|
|
6161 }
|
|
6162 }
|