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