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