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 | * ex_cmds.c: some functions for command line commands |
| 12 | */ |
| 13 | |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 14 | #include "vim.h" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 15 | #include "version.h" |
| 16 | |
| 17 | #ifdef FEAT_EX_EXTRA |
| 18 | static int linelen __ARGS((int *has_tab)); |
| 19 | #endif |
| 20 | static void do_filter __ARGS((linenr_T line1, linenr_T line2, exarg_T *eap, char_u *cmd, int do_in, int do_out)); |
| 21 | #ifdef FEAT_VIMINFO |
| 22 | static char_u *viminfo_filename __ARGS((char_u *)); |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 23 | static void do_viminfo __ARGS((FILE *fp_in, FILE *fp_out, int flags)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 24 | static int viminfo_encoding __ARGS((vir_T *virp)); |
| 25 | static int read_viminfo_up_to_marks __ARGS((vir_T *virp, int forceit, int writing)); |
| 26 | #endif |
| 27 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 28 | static int check_readonly __ARGS((int *forceit, buf_T *buf)); |
| 29 | #ifdef FEAT_AUTOCMD |
| 30 | static void delbuf_msg __ARGS((char_u *name)); |
| 31 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 32 | static int |
| 33 | #ifdef __BORLANDC__ |
| 34 | _RTLENTRYF |
| 35 | #endif |
| 36 | help_compare __ARGS((const void *s1, const void *s2)); |
| 37 | |
| 38 | /* |
| 39 | * ":ascii" and "ga". |
| 40 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 41 | void |
| 42 | do_ascii(eap) |
Bram Moolenaar | 0c094b9 | 2009-05-14 20:20:33 +0000 | [diff] [blame] | 43 | exarg_T *eap UNUSED; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 44 | { |
| 45 | int c; |
Bram Moolenaar | 1418a0d | 2009-01-13 15:58:01 +0000 | [diff] [blame] | 46 | int cval; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 47 | char buf1[20]; |
| 48 | char buf2[20]; |
| 49 | char_u buf3[7]; |
| 50 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 51 | int cc[MAX_MCO]; |
| 52 | int ci = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 53 | int len; |
| 54 | |
| 55 | if (enc_utf8) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 56 | c = utfc_ptr2char(ml_get_cursor(), cc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 57 | else |
| 58 | #endif |
| 59 | c = gchar_cursor(); |
| 60 | if (c == NUL) |
| 61 | { |
| 62 | MSG("NUL"); |
| 63 | return; |
| 64 | } |
| 65 | |
| 66 | #ifdef FEAT_MBYTE |
| 67 | IObuff[0] = NUL; |
| 68 | if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80) |
| 69 | #endif |
| 70 | { |
| 71 | if (c == NL) /* NUL is stored as NL */ |
| 72 | c = NUL; |
Bram Moolenaar | 1418a0d | 2009-01-13 15:58:01 +0000 | [diff] [blame] | 73 | if (c == CAR && get_fileformat(curbuf) == EOL_MAC) |
| 74 | cval = NL; /* NL is stored as CR */ |
| 75 | else |
| 76 | cval = c; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 77 | if (vim_isprintc_strict(c) && (c < ' ' |
| 78 | #ifndef EBCDIC |
| 79 | || c > '~' |
| 80 | #endif |
| 81 | )) |
| 82 | { |
| 83 | transchar_nonprint(buf3, c); |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 84 | vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 85 | } |
| 86 | else |
| 87 | buf1[0] = NUL; |
| 88 | #ifndef EBCDIC |
| 89 | if (c >= 0x80) |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 90 | vim_snprintf(buf2, sizeof(buf2), " <M-%s>", |
| 91 | (char *)transchar(c & 0x7f)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 92 | else |
| 93 | #endif |
| 94 | buf2[0] = NUL; |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 95 | vim_snprintf((char *)IObuff, IOSIZE, |
| 96 | _("<%s>%s%s %d, Hex %02x, Octal %03o"), |
Bram Moolenaar | 1418a0d | 2009-01-13 15:58:01 +0000 | [diff] [blame] | 97 | transchar(c), buf1, buf2, cval, cval, cval); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 98 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 1f788e7 | 2006-09-05 16:30:40 +0000 | [diff] [blame] | 99 | if (enc_utf8) |
| 100 | c = cc[ci++]; |
| 101 | else |
| 102 | c = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 103 | #endif |
| 104 | } |
| 105 | |
| 106 | #ifdef FEAT_MBYTE |
| 107 | /* Repeat for combining characters. */ |
| 108 | while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80))) |
| 109 | { |
| 110 | len = (int)STRLEN(IObuff); |
| 111 | /* This assumes every multi-byte char is printable... */ |
| 112 | if (len > 0) |
| 113 | IObuff[len++] = ' '; |
| 114 | IObuff[len++] = '<'; |
Bram Moolenaar | 1f788e7 | 2006-09-05 16:30:40 +0000 | [diff] [blame] | 115 | if (enc_utf8 && utf_iscomposing(c) |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 116 | # ifdef USE_GUI |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 117 | && !gui.in_use |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 118 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 119 | ) |
| 120 | IObuff[len++] = ' '; /* draw composing char on top of a space */ |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 121 | len += (*mb_char2bytes)(c, IObuff + len); |
| 122 | vim_snprintf((char *)IObuff + len, IOSIZE - len, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 123 | c < 0x10000 ? _("> %d, Hex %04x, Octal %o") |
| 124 | : _("> %d, Hex %08x, Octal %o"), c, c, c); |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 125 | if (ci == MAX_MCO) |
| 126 | break; |
Bram Moolenaar | 1f788e7 | 2006-09-05 16:30:40 +0000 | [diff] [blame] | 127 | if (enc_utf8) |
| 128 | c = cc[ci++]; |
| 129 | else |
| 130 | c = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 131 | } |
| 132 | #endif |
| 133 | |
| 134 | msg(IObuff); |
| 135 | } |
| 136 | |
| 137 | #if defined(FEAT_EX_EXTRA) || defined(PROTO) |
| 138 | /* |
| 139 | * ":left", ":center" and ":right": align text. |
| 140 | */ |
| 141 | void |
| 142 | ex_align(eap) |
| 143 | exarg_T *eap; |
| 144 | { |
| 145 | pos_T save_curpos; |
| 146 | int len; |
| 147 | int indent = 0; |
| 148 | int new_indent; |
| 149 | int has_tab; |
| 150 | int width; |
| 151 | |
| 152 | #ifdef FEAT_RIGHTLEFT |
| 153 | if (curwin->w_p_rl) |
| 154 | { |
| 155 | /* switch left and right aligning */ |
| 156 | if (eap->cmdidx == CMD_right) |
| 157 | eap->cmdidx = CMD_left; |
| 158 | else if (eap->cmdidx == CMD_left) |
| 159 | eap->cmdidx = CMD_right; |
| 160 | } |
| 161 | #endif |
| 162 | |
| 163 | width = atoi((char *)eap->arg); |
| 164 | save_curpos = curwin->w_cursor; |
| 165 | if (eap->cmdidx == CMD_left) /* width is used for new indent */ |
| 166 | { |
| 167 | if (width >= 0) |
| 168 | indent = width; |
| 169 | } |
| 170 | else |
| 171 | { |
| 172 | /* |
| 173 | * if 'textwidth' set, use it |
| 174 | * else if 'wrapmargin' set, use it |
| 175 | * if invalid value, use 80 |
| 176 | */ |
| 177 | if (width <= 0) |
| 178 | width = curbuf->b_p_tw; |
| 179 | if (width == 0 && curbuf->b_p_wm > 0) |
| 180 | width = W_WIDTH(curwin) - curbuf->b_p_wm; |
| 181 | if (width <= 0) |
| 182 | width = 80; |
| 183 | } |
| 184 | |
| 185 | if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) |
| 186 | return; |
| 187 | |
| 188 | for (curwin->w_cursor.lnum = eap->line1; |
| 189 | curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum) |
| 190 | { |
| 191 | if (eap->cmdidx == CMD_left) /* left align */ |
| 192 | new_indent = indent; |
| 193 | else |
| 194 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 195 | has_tab = FALSE; /* avoid uninit warnings */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 196 | len = linelen(eap->cmdidx == CMD_right ? &has_tab |
| 197 | : NULL) - get_indent(); |
| 198 | |
| 199 | if (len <= 0) /* skip blank lines */ |
| 200 | continue; |
| 201 | |
| 202 | if (eap->cmdidx == CMD_center) |
| 203 | new_indent = (width - len) / 2; |
| 204 | else |
| 205 | { |
| 206 | new_indent = width - len; /* right align */ |
| 207 | |
| 208 | /* |
| 209 | * Make sure that embedded TABs don't make the text go too far |
| 210 | * to the right. |
| 211 | */ |
| 212 | if (has_tab) |
| 213 | while (new_indent > 0) |
| 214 | { |
| 215 | (void)set_indent(new_indent, 0); |
| 216 | if (linelen(NULL) <= width) |
| 217 | { |
| 218 | /* |
| 219 | * Now try to move the line as much as possible to |
| 220 | * the right. Stop when it moves too far. |
| 221 | */ |
| 222 | do |
| 223 | (void)set_indent(++new_indent, 0); |
| 224 | while (linelen(NULL) <= width); |
| 225 | --new_indent; |
| 226 | break; |
| 227 | } |
| 228 | --new_indent; |
| 229 | } |
| 230 | } |
| 231 | } |
| 232 | if (new_indent < 0) |
| 233 | new_indent = 0; |
| 234 | (void)set_indent(new_indent, 0); /* set indent */ |
| 235 | } |
| 236 | changed_lines(eap->line1, 0, eap->line2 + 1, 0L); |
| 237 | curwin->w_cursor = save_curpos; |
| 238 | beginline(BL_WHITE | BL_FIX); |
| 239 | } |
| 240 | |
| 241 | /* |
| 242 | * Get the length of the current line, excluding trailing white space. |
| 243 | */ |
| 244 | static int |
| 245 | linelen(has_tab) |
| 246 | int *has_tab; |
| 247 | { |
| 248 | char_u *line; |
| 249 | char_u *first; |
| 250 | char_u *last; |
| 251 | int save; |
| 252 | int len; |
| 253 | |
| 254 | /* find the first non-blank character */ |
| 255 | line = ml_get_curline(); |
| 256 | first = skipwhite(line); |
| 257 | |
| 258 | /* find the character after the last non-blank character */ |
| 259 | for (last = first + STRLEN(first); |
| 260 | last > first && vim_iswhite(last[-1]); --last) |
| 261 | ; |
| 262 | save = *last; |
| 263 | *last = NUL; |
| 264 | len = linetabsize(line); /* get line length */ |
| 265 | if (has_tab != NULL) /* check for embedded TAB */ |
| 266 | *has_tab = (vim_strrchr(first, TAB) != NULL); |
| 267 | *last = save; |
| 268 | |
| 269 | return len; |
| 270 | } |
| 271 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 272 | /* Buffer for two lines used during sorting. They are allocated to |
| 273 | * contain the longest line being sorted. */ |
| 274 | static char_u *sortbuf1; |
| 275 | static char_u *sortbuf2; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 276 | |
| 277 | static int sort_ic; /* ignore case */ |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 278 | static int sort_nr; /* sort on number */ |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 279 | static int sort_rx; /* sort on regex instead of skipping it */ |
| 280 | |
| 281 | static int sort_abort; /* flag to indicate if sorting has been interrupted */ |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 282 | |
| 283 | /* Struct to store info to be sorted. */ |
| 284 | typedef struct |
| 285 | { |
| 286 | linenr_T lnum; /* line number */ |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 287 | long start_col_nr; /* starting column number or number */ |
| 288 | long end_col_nr; /* ending column number */ |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 289 | } sorti_T; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 290 | |
| 291 | static int |
| 292 | #ifdef __BORLANDC__ |
| 293 | _RTLENTRYF |
| 294 | #endif |
| 295 | sort_compare __ARGS((const void *s1, const void *s2)); |
| 296 | |
| 297 | static int |
| 298 | #ifdef __BORLANDC__ |
| 299 | _RTLENTRYF |
| 300 | #endif |
| 301 | sort_compare(s1, s2) |
| 302 | const void *s1; |
| 303 | const void *s2; |
| 304 | { |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 305 | sorti_T l1 = *(sorti_T *)s1; |
| 306 | sorti_T l2 = *(sorti_T *)s2; |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 307 | int result = 0; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 308 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 309 | /* If the user interrupts, there's no way to stop qsort() immediately, but |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 310 | * if we return 0 every time, qsort will assume it's done sorting and |
| 311 | * exit. */ |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 312 | if (sort_abort) |
| 313 | return 0; |
| 314 | fast_breakcheck(); |
| 315 | if (got_int) |
| 316 | sort_abort = TRUE; |
| 317 | |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 318 | /* When sorting numbers "start_col_nr" is the number, not the column |
| 319 | * number. */ |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 320 | if (sort_nr) |
Bram Moolenaar | f75d498 | 2010-10-15 20:20:05 +0200 | [diff] [blame] | 321 | result = l1.start_col_nr == l2.start_col_nr ? 0 |
| 322 | : l1.start_col_nr > l2.start_col_nr ? 1 : -1; |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 323 | else |
| 324 | { |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 325 | /* We need to copy one line into "sortbuf1", because there is no |
| 326 | * guarantee that the first pointer becomes invalid when obtaining the |
| 327 | * second one. */ |
| 328 | STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.start_col_nr, |
| 329 | l1.end_col_nr - l1.start_col_nr + 1); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 330 | sortbuf1[l1.end_col_nr - l1.start_col_nr] = 0; |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 331 | STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.start_col_nr, |
| 332 | l2.end_col_nr - l2.start_col_nr + 1); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 333 | sortbuf2[l2.end_col_nr - l2.start_col_nr] = 0; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 334 | |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 335 | result = sort_ic ? STRICMP(sortbuf1, sortbuf2) |
| 336 | : STRCMP(sortbuf1, sortbuf2); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 337 | } |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 338 | |
| 339 | /* If two lines have the same value, preserve the original line order. */ |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 340 | if (result == 0) |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 341 | return (int)(l1.lnum - l2.lnum); |
| 342 | return result; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | /* |
| 346 | * ":sort". |
| 347 | */ |
| 348 | void |
| 349 | ex_sort(eap) |
| 350 | exarg_T *eap; |
| 351 | { |
| 352 | regmatch_T regmatch; |
| 353 | int len; |
| 354 | linenr_T lnum; |
| 355 | long maxlen = 0; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 356 | sorti_T *nrs; |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 357 | size_t count = (size_t)(eap->line2 - eap->line1 + 1); |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 358 | size_t i; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 359 | char_u *p; |
| 360 | char_u *s; |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 361 | char_u *s2; |
| 362 | char_u c; /* temporary character storage */ |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 363 | int unique = FALSE; |
| 364 | long deleted; |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 365 | colnr_T start_col; |
| 366 | colnr_T end_col; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 367 | int sort_oct; /* sort on octal number */ |
| 368 | int sort_hex; /* sort on hex number */ |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 369 | |
Bram Moolenaar | 48c9916 | 2008-02-18 18:42:52 +0000 | [diff] [blame] | 370 | /* Sorting one line is really quick! */ |
| 371 | if (count <= 1) |
| 372 | return; |
| 373 | |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 374 | if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) |
| 375 | return; |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 376 | sortbuf1 = NULL; |
| 377 | sortbuf2 = NULL; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 378 | regmatch.regprog = NULL; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 379 | nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 380 | if (nrs == NULL) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 381 | goto sortend; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 382 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 383 | sort_abort = sort_ic = sort_rx = sort_nr = sort_oct = sort_hex = 0; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 384 | |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 385 | for (p = eap->arg; *p != NUL; ++p) |
| 386 | { |
| 387 | if (vim_iswhite(*p)) |
| 388 | ; |
| 389 | else if (*p == 'i') |
| 390 | sort_ic = TRUE; |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 391 | else if (*p == 'r') |
| 392 | sort_rx = TRUE; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 393 | else if (*p == 'n') |
| 394 | sort_nr = 2; |
| 395 | else if (*p == 'o') |
| 396 | sort_oct = 2; |
| 397 | else if (*p == 'x') |
| 398 | sort_hex = 2; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 399 | else if (*p == 'u') |
| 400 | unique = TRUE; |
Bram Moolenaar | 0e6830e | 2005-05-27 20:23:44 +0000 | [diff] [blame] | 401 | else if (*p == '"') /* comment start */ |
| 402 | break; |
| 403 | else if (check_nextcmd(p) != NULL) |
| 404 | { |
| 405 | eap->nextcmd = check_nextcmd(p); |
| 406 | break; |
| 407 | } |
| 408 | else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL) |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 409 | { |
| 410 | s = skip_regexp(p + 1, *p, TRUE, NULL); |
| 411 | if (*s != *p) |
| 412 | { |
| 413 | EMSG(_(e_invalpat)); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 414 | goto sortend; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 415 | } |
| 416 | *s = NUL; |
Bram Moolenaar | 1256e72 | 2007-07-10 15:26:20 +0000 | [diff] [blame] | 417 | /* Use last search pattern if sort pattern is empty. */ |
Bram Moolenaar | 210f370 | 2013-03-07 16:41:30 +0100 | [diff] [blame] | 418 | if (s == p + 1) |
| 419 | { |
| 420 | if (last_search_pat() == NULL) |
| 421 | { |
| 422 | EMSG(_(e_noprevre)); |
| 423 | goto sortend; |
| 424 | } |
Bram Moolenaar | 1256e72 | 2007-07-10 15:26:20 +0000 | [diff] [blame] | 425 | regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC); |
Bram Moolenaar | 210f370 | 2013-03-07 16:41:30 +0100 | [diff] [blame] | 426 | } |
Bram Moolenaar | 1256e72 | 2007-07-10 15:26:20 +0000 | [diff] [blame] | 427 | else |
| 428 | regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 429 | if (regmatch.regprog == NULL) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 430 | goto sortend; |
Bram Moolenaar | 0e6830e | 2005-05-27 20:23:44 +0000 | [diff] [blame] | 431 | p = s; /* continue after the regexp */ |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 432 | regmatch.rm_ic = p_ic; |
| 433 | } |
| 434 | else |
| 435 | { |
| 436 | EMSG2(_(e_invarg2), p); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 437 | goto sortend; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 438 | } |
| 439 | } |
| 440 | |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 441 | /* Can only have one of 'n', 'o' and 'x'. */ |
| 442 | if (sort_nr + sort_oct + sort_hex > 2) |
| 443 | { |
| 444 | EMSG(_(e_invarg)); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 445 | goto sortend; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | /* From here on "sort_nr" is used as a flag for any number sorting. */ |
| 449 | sort_nr += sort_oct + sort_hex; |
| 450 | |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 451 | /* |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 452 | * Make an array with all line numbers. This avoids having to copy all |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 453 | * the lines into allocated memory. |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 454 | * When sorting on strings "start_col_nr" is the offset in the line, for |
| 455 | * numbers sorting it's the number to sort on. This means the pattern |
| 456 | * matching and number conversion only has to be done once per line. |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 457 | * Also get the longest line length for allocating "sortbuf". |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 458 | */ |
| 459 | for (lnum = eap->line1; lnum <= eap->line2; ++lnum) |
| 460 | { |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 461 | s = ml_get(lnum); |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 462 | len = (int)STRLEN(s); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 463 | if (maxlen < len) |
| 464 | maxlen = len; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 465 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 466 | start_col = 0; |
| 467 | end_col = len; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 468 | if (regmatch.regprog != NULL && vim_regexec(®match, s, 0)) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 469 | { |
| 470 | if (sort_rx) |
| 471 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 472 | start_col = (colnr_T)(regmatch.startp[0] - s); |
| 473 | end_col = (colnr_T)(regmatch.endp[0] - s); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 474 | } |
| 475 | else |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 476 | start_col = (colnr_T)(regmatch.endp[0] - s); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 477 | } |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 478 | else |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 479 | if (regmatch.regprog != NULL) |
| 480 | end_col = 0; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 481 | |
| 482 | if (sort_nr) |
| 483 | { |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 484 | /* Make sure vim_str2nr doesn't read any digits past the end |
| 485 | * of the match, by temporarily terminating the string there */ |
| 486 | s2 = s + end_col; |
| 487 | c = *s2; |
Bram Moolenaar | f75d498 | 2010-10-15 20:20:05 +0200 | [diff] [blame] | 488 | *s2 = NUL; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 489 | /* Sorting on number: Store the number itself. */ |
Bram Moolenaar | 1387a60 | 2008-07-24 19:31:11 +0000 | [diff] [blame] | 490 | p = s + start_col; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 491 | if (sort_hex) |
Bram Moolenaar | 1387a60 | 2008-07-24 19:31:11 +0000 | [diff] [blame] | 492 | s = skiptohex(p); |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 493 | else |
Bram Moolenaar | 1387a60 | 2008-07-24 19:31:11 +0000 | [diff] [blame] | 494 | s = skiptodigit(p); |
| 495 | if (s > p && s[-1] == '-') |
| 496 | --s; /* include preceding negative sign */ |
Bram Moolenaar | f75d498 | 2010-10-15 20:20:05 +0200 | [diff] [blame] | 497 | if (*s == NUL) |
| 498 | /* empty line should sort before any number */ |
| 499 | nrs[lnum - eap->line1].start_col_nr = -MAXLNUM; |
| 500 | else |
| 501 | vim_str2nr(s, NULL, NULL, sort_oct, sort_hex, |
| 502 | &nrs[lnum - eap->line1].start_col_nr, NULL); |
| 503 | *s2 = c; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 504 | } |
| 505 | else |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 506 | { |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 507 | /* Store the column to sort at. */ |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 508 | nrs[lnum - eap->line1].start_col_nr = start_col; |
| 509 | nrs[lnum - eap->line1].end_col_nr = end_col; |
| 510 | } |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 511 | |
| 512 | nrs[lnum - eap->line1].lnum = lnum; |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 513 | |
| 514 | if (regmatch.regprog != NULL) |
| 515 | fast_breakcheck(); |
| 516 | if (got_int) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 517 | goto sortend; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 518 | } |
| 519 | |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 520 | /* Allocate a buffer that can hold the longest line. */ |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 521 | sortbuf1 = alloc((unsigned)maxlen + 1); |
| 522 | if (sortbuf1 == NULL) |
| 523 | goto sortend; |
| 524 | sortbuf2 = alloc((unsigned)maxlen + 1); |
| 525 | if (sortbuf2 == NULL) |
| 526 | goto sortend; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 527 | |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 528 | /* Sort the array of line numbers. Note: can't be interrupted! */ |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 529 | qsort((void *)nrs, count, sizeof(sorti_T), sort_compare); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 530 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 531 | if (sort_abort) |
| 532 | goto sortend; |
| 533 | |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 534 | /* Insert the lines in the sorted order below the last one. */ |
| 535 | lnum = eap->line2; |
| 536 | for (i = 0; i < count; ++i) |
| 537 | { |
| 538 | s = ml_get(nrs[eap->forceit ? count - i - 1 : i].lnum); |
| 539 | if (!unique || i == 0 |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 540 | || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0) |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 541 | { |
| 542 | if (ml_append(lnum++, s, (colnr_T)0, FALSE) == FAIL) |
| 543 | break; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 544 | if (unique) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 545 | STRCPY(sortbuf1, s); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 546 | } |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 547 | fast_breakcheck(); |
| 548 | if (got_int) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 549 | goto sortend; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 550 | } |
| 551 | |
| 552 | /* delete the original lines if appending worked */ |
| 553 | if (i == count) |
| 554 | for (i = 0; i < count; ++i) |
| 555 | ml_delete(eap->line1, FALSE); |
| 556 | else |
| 557 | count = 0; |
| 558 | |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 559 | /* Adjust marks for deleted (or added) lines and prepare for displaying. */ |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 560 | deleted = (long)(count - (lnum - eap->line2)); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 561 | if (deleted > 0) |
| 562 | mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted); |
| 563 | else if (deleted < 0) |
| 564 | mark_adjust(eap->line2, MAXLNUM, -deleted, 0L); |
| 565 | changed_lines(eap->line1, 0, eap->line2 + 1, -deleted); |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 566 | |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 567 | curwin->w_cursor.lnum = eap->line1; |
| 568 | beginline(BL_WHITE | BL_FIX); |
| 569 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 570 | sortend: |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 571 | vim_free(nrs); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 572 | vim_free(sortbuf1); |
| 573 | vim_free(sortbuf2); |
Bram Moolenaar | 473de61 | 2013-06-08 18:19:48 +0200 | [diff] [blame] | 574 | vim_regfree(regmatch.regprog); |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 575 | if (got_int) |
| 576 | EMSG(_(e_interr)); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 577 | } |
| 578 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 579 | /* |
| 580 | * ":retab". |
| 581 | */ |
| 582 | void |
| 583 | ex_retab(eap) |
| 584 | exarg_T *eap; |
| 585 | { |
| 586 | linenr_T lnum; |
| 587 | int got_tab = FALSE; |
| 588 | long num_spaces = 0; |
| 589 | long num_tabs; |
| 590 | long len; |
| 591 | long col; |
| 592 | long vcol; |
| 593 | long start_col = 0; /* For start of white-space string */ |
| 594 | long start_vcol = 0; /* For start of white-space string */ |
| 595 | int temp; |
| 596 | long old_len; |
| 597 | char_u *ptr; |
| 598 | char_u *new_line = (char_u *)1; /* init to non-NULL */ |
| 599 | int did_undo; /* called u_save for current line */ |
| 600 | int new_ts; |
| 601 | int save_list; |
| 602 | linenr_T first_line = 0; /* first changed line */ |
| 603 | linenr_T last_line = 0; /* last changed line */ |
| 604 | |
| 605 | save_list = curwin->w_p_list; |
| 606 | curwin->w_p_list = 0; /* don't want list mode here */ |
| 607 | |
| 608 | new_ts = getdigits(&(eap->arg)); |
| 609 | if (new_ts < 0) |
| 610 | { |
| 611 | EMSG(_(e_positive)); |
| 612 | return; |
| 613 | } |
| 614 | if (new_ts == 0) |
| 615 | new_ts = curbuf->b_p_ts; |
| 616 | for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum) |
| 617 | { |
| 618 | ptr = ml_get(lnum); |
| 619 | col = 0; |
| 620 | vcol = 0; |
| 621 | did_undo = FALSE; |
| 622 | for (;;) |
| 623 | { |
| 624 | if (vim_iswhite(ptr[col])) |
| 625 | { |
| 626 | if (!got_tab && num_spaces == 0) |
| 627 | { |
| 628 | /* First consecutive white-space */ |
| 629 | start_vcol = vcol; |
| 630 | start_col = col; |
| 631 | } |
| 632 | if (ptr[col] == ' ') |
| 633 | num_spaces++; |
| 634 | else |
| 635 | got_tab = TRUE; |
| 636 | } |
| 637 | else |
| 638 | { |
| 639 | if (got_tab || (eap->forceit && num_spaces > 1)) |
| 640 | { |
| 641 | /* Retabulate this string of white-space */ |
| 642 | |
| 643 | /* len is virtual length of white string */ |
| 644 | len = num_spaces = vcol - start_vcol; |
| 645 | num_tabs = 0; |
| 646 | if (!curbuf->b_p_et) |
| 647 | { |
| 648 | temp = new_ts - (start_vcol % new_ts); |
| 649 | if (num_spaces >= temp) |
| 650 | { |
| 651 | num_spaces -= temp; |
| 652 | num_tabs++; |
| 653 | } |
| 654 | num_tabs += num_spaces / new_ts; |
| 655 | num_spaces -= (num_spaces / new_ts) * new_ts; |
| 656 | } |
| 657 | if (curbuf->b_p_et || got_tab || |
| 658 | (num_spaces + num_tabs < len)) |
| 659 | { |
| 660 | if (did_undo == FALSE) |
| 661 | { |
| 662 | did_undo = TRUE; |
| 663 | if (u_save((linenr_T)(lnum - 1), |
| 664 | (linenr_T)(lnum + 1)) == FAIL) |
| 665 | { |
| 666 | new_line = NULL; /* flag out-of-memory */ |
| 667 | break; |
| 668 | } |
| 669 | } |
| 670 | |
| 671 | /* len is actual number of white characters used */ |
| 672 | len = num_spaces + num_tabs; |
| 673 | old_len = (long)STRLEN(ptr); |
| 674 | new_line = lalloc(old_len - col + start_col + len + 1, |
| 675 | TRUE); |
| 676 | if (new_line == NULL) |
| 677 | break; |
| 678 | if (start_col > 0) |
| 679 | mch_memmove(new_line, ptr, (size_t)start_col); |
| 680 | mch_memmove(new_line + start_col + len, |
| 681 | ptr + col, (size_t)(old_len - col + 1)); |
| 682 | ptr = new_line + start_col; |
| 683 | for (col = 0; col < len; col++) |
| 684 | ptr[col] = (col < num_tabs) ? '\t' : ' '; |
| 685 | ml_replace(lnum, new_line, FALSE); |
| 686 | if (first_line == 0) |
| 687 | first_line = lnum; |
| 688 | last_line = lnum; |
| 689 | ptr = new_line; |
| 690 | col = start_col + len; |
| 691 | } |
| 692 | } |
| 693 | got_tab = FALSE; |
| 694 | num_spaces = 0; |
| 695 | } |
| 696 | if (ptr[col] == NUL) |
| 697 | break; |
| 698 | vcol += chartabsize(ptr + col, (colnr_T)vcol); |
| 699 | #ifdef FEAT_MBYTE |
| 700 | if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 701 | col += (*mb_ptr2len)(ptr + col); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 702 | else |
| 703 | #endif |
| 704 | ++col; |
| 705 | } |
| 706 | if (new_line == NULL) /* out of memory */ |
| 707 | break; |
| 708 | line_breakcheck(); |
| 709 | } |
| 710 | if (got_int) |
| 711 | EMSG(_(e_interr)); |
| 712 | |
| 713 | if (curbuf->b_p_ts != new_ts) |
| 714 | redraw_curbuf_later(NOT_VALID); |
| 715 | if (first_line != 0) |
| 716 | changed_lines(first_line, 0, last_line + 1, 0L); |
| 717 | |
| 718 | curwin->w_p_list = save_list; /* restore 'list' */ |
| 719 | |
| 720 | curbuf->b_p_ts = new_ts; |
| 721 | coladvance(curwin->w_curswant); |
| 722 | |
| 723 | u_clearline(); |
| 724 | } |
| 725 | #endif |
| 726 | |
| 727 | /* |
| 728 | * :move command - move lines line1-line2 to line dest |
| 729 | * |
| 730 | * return FAIL for failure, OK otherwise |
| 731 | */ |
| 732 | int |
| 733 | do_move(line1, line2, dest) |
| 734 | linenr_T line1; |
| 735 | linenr_T line2; |
| 736 | linenr_T dest; |
| 737 | { |
| 738 | char_u *str; |
| 739 | linenr_T l; |
| 740 | linenr_T extra; /* Num lines added before line1 */ |
| 741 | linenr_T num_lines; /* Num lines moved */ |
| 742 | linenr_T last_line; /* Last line in file after adding new text */ |
| 743 | |
| 744 | if (dest >= line1 && dest < line2) |
| 745 | { |
| 746 | EMSG(_("E134: Move lines into themselves")); |
| 747 | return FAIL; |
| 748 | } |
| 749 | |
| 750 | num_lines = line2 - line1 + 1; |
| 751 | |
| 752 | /* |
| 753 | * First we copy the old text to its new location -- webb |
| 754 | * Also copy the flag that ":global" command uses. |
| 755 | */ |
| 756 | if (u_save(dest, dest + 1) == FAIL) |
| 757 | return FAIL; |
| 758 | for (extra = 0, l = line1; l <= line2; l++) |
| 759 | { |
| 760 | str = vim_strsave(ml_get(l + extra)); |
| 761 | if (str != NULL) |
| 762 | { |
| 763 | ml_append(dest + l - line1, str, (colnr_T)0, FALSE); |
| 764 | vim_free(str); |
| 765 | if (dest < line1) |
| 766 | extra++; |
| 767 | } |
| 768 | } |
| 769 | |
| 770 | /* |
| 771 | * Now we must be careful adjusting our marks so that we don't overlap our |
| 772 | * mark_adjust() calls. |
| 773 | * |
| 774 | * We adjust the marks within the old text so that they refer to the |
| 775 | * last lines of the file (temporarily), because we know no other marks |
| 776 | * will be set there since these line numbers did not exist until we added |
| 777 | * our new lines. |
| 778 | * |
| 779 | * Then we adjust the marks on lines between the old and new text positions |
| 780 | * (either forwards or backwards). |
| 781 | * |
| 782 | * And Finally we adjust the marks we put at the end of the file back to |
| 783 | * their final destination at the new text position -- webb |
| 784 | */ |
| 785 | last_line = curbuf->b_ml.ml_line_count; |
| 786 | mark_adjust(line1, line2, last_line - line2, 0L); |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 787 | changed_lines(last_line - num_lines + 1, 0, last_line + 1, num_lines); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 788 | if (dest >= line2) |
| 789 | { |
| 790 | mark_adjust(line2 + 1, dest, -num_lines, 0L); |
| 791 | curbuf->b_op_start.lnum = dest - num_lines + 1; |
| 792 | curbuf->b_op_end.lnum = dest; |
| 793 | } |
| 794 | else |
| 795 | { |
| 796 | mark_adjust(dest + 1, line1 - 1, num_lines, 0L); |
| 797 | curbuf->b_op_start.lnum = dest + 1; |
| 798 | curbuf->b_op_end.lnum = dest + num_lines; |
| 799 | } |
| 800 | curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
| 801 | mark_adjust(last_line - num_lines + 1, last_line, |
| 802 | -(last_line - dest - extra), 0L); |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 803 | changed_lines(last_line - num_lines + 1, 0, last_line + 1, -extra); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 804 | |
| 805 | /* |
| 806 | * Now we delete the original text -- webb |
| 807 | */ |
| 808 | if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL) |
| 809 | return FAIL; |
| 810 | |
| 811 | for (l = line1; l <= line2; l++) |
| 812 | ml_delete(line1 + extra, TRUE); |
| 813 | |
| 814 | if (!global_busy && num_lines > p_report) |
| 815 | { |
| 816 | if (num_lines == 1) |
| 817 | MSG(_("1 line moved")); |
| 818 | else |
| 819 | smsg((char_u *)_("%ld lines moved"), num_lines); |
| 820 | } |
| 821 | |
| 822 | /* |
| 823 | * Leave the cursor on the last of the moved lines. |
| 824 | */ |
| 825 | if (dest >= line1) |
| 826 | curwin->w_cursor.lnum = dest; |
| 827 | else |
| 828 | curwin->w_cursor.lnum = dest + (line2 - line1) + 1; |
| 829 | |
| 830 | if (line1 < dest) |
Bram Moolenaar | 0612ec8 | 2011-11-30 17:01:58 +0100 | [diff] [blame] | 831 | { |
| 832 | dest += num_lines + 1; |
| 833 | last_line = curbuf->b_ml.ml_line_count; |
| 834 | if (dest > last_line + 1) |
| 835 | dest = last_line + 1; |
| 836 | changed_lines(line1, 0, dest, 0L); |
| 837 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 838 | else |
| 839 | changed_lines(dest + 1, 0, line1 + num_lines, 0L); |
| 840 | |
| 841 | return OK; |
| 842 | } |
| 843 | |
| 844 | /* |
| 845 | * ":copy" |
| 846 | */ |
| 847 | void |
| 848 | ex_copy(line1, line2, n) |
| 849 | linenr_T line1; |
| 850 | linenr_T line2; |
| 851 | linenr_T n; |
| 852 | { |
| 853 | linenr_T count; |
| 854 | char_u *p; |
| 855 | |
| 856 | count = line2 - line1 + 1; |
| 857 | curbuf->b_op_start.lnum = n + 1; |
| 858 | curbuf->b_op_end.lnum = n + count; |
| 859 | curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
| 860 | |
| 861 | /* |
| 862 | * there are three situations: |
| 863 | * 1. destination is above line1 |
| 864 | * 2. destination is between line1 and line2 |
| 865 | * 3. destination is below line2 |
| 866 | * |
| 867 | * n = destination (when starting) |
| 868 | * curwin->w_cursor.lnum = destination (while copying) |
| 869 | * line1 = start of source (while copying) |
| 870 | * line2 = end of source (while copying) |
| 871 | */ |
| 872 | if (u_save(n, n + 1) == FAIL) |
| 873 | return; |
| 874 | |
| 875 | curwin->w_cursor.lnum = n; |
| 876 | while (line1 <= line2) |
| 877 | { |
| 878 | /* need to use vim_strsave() because the line will be unlocked within |
| 879 | * ml_append() */ |
| 880 | p = vim_strsave(ml_get(line1)); |
| 881 | if (p != NULL) |
| 882 | { |
| 883 | ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE); |
| 884 | vim_free(p); |
| 885 | } |
| 886 | /* situation 2: skip already copied lines */ |
| 887 | if (line1 == n) |
| 888 | line1 = curwin->w_cursor.lnum; |
| 889 | ++line1; |
| 890 | if (curwin->w_cursor.lnum < line1) |
| 891 | ++line1; |
| 892 | if (curwin->w_cursor.lnum < line2) |
| 893 | ++line2; |
| 894 | ++curwin->w_cursor.lnum; |
| 895 | } |
| 896 | |
| 897 | appended_lines_mark(n, count); |
| 898 | |
| 899 | msgmore((long)count); |
| 900 | } |
| 901 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 902 | static char_u *prevcmd = NULL; /* the previous command */ |
| 903 | |
| 904 | #if defined(EXITFREE) || defined(PROTO) |
| 905 | void |
| 906 | free_prev_shellcmd() |
| 907 | { |
| 908 | vim_free(prevcmd); |
| 909 | } |
| 910 | #endif |
| 911 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 912 | /* |
| 913 | * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd" |
| 914 | * Bangs in the argument are replaced with the previously entered command. |
| 915 | * Remember the argument. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 916 | */ |
| 917 | void |
| 918 | do_bang(addr_count, eap, forceit, do_in, do_out) |
| 919 | int addr_count; |
| 920 | exarg_T *eap; |
| 921 | int forceit; |
| 922 | int do_in, do_out; |
| 923 | { |
| 924 | char_u *arg = eap->arg; /* command */ |
| 925 | linenr_T line1 = eap->line1; /* start of range */ |
| 926 | linenr_T line2 = eap->line2; /* end of range */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 927 | char_u *newcmd = NULL; /* the new command */ |
| 928 | int free_newcmd = FALSE; /* need to free() newcmd */ |
| 929 | int ins_prevcmd; |
| 930 | char_u *t; |
| 931 | char_u *p; |
| 932 | char_u *trailarg; |
| 933 | int len; |
| 934 | int scroll_save = msg_scroll; |
| 935 | |
| 936 | /* |
| 937 | * Disallow shell commands for "rvim". |
| 938 | * Disallow shell commands from .exrc and .vimrc in current directory for |
| 939 | * security reasons. |
| 940 | */ |
| 941 | if (check_restricted() || check_secure()) |
| 942 | return; |
| 943 | |
| 944 | if (addr_count == 0) /* :! */ |
| 945 | { |
| 946 | msg_scroll = FALSE; /* don't scroll here */ |
| 947 | autowrite_all(); |
| 948 | msg_scroll = scroll_save; |
| 949 | } |
| 950 | |
| 951 | /* |
| 952 | * Try to find an embedded bang, like in :!<cmd> ! [args] |
| 953 | * (:!! is indicated by the 'forceit' variable) |
| 954 | */ |
| 955 | ins_prevcmd = forceit; |
| 956 | trailarg = arg; |
| 957 | do |
| 958 | { |
| 959 | len = (int)STRLEN(trailarg) + 1; |
| 960 | if (newcmd != NULL) |
| 961 | len += (int)STRLEN(newcmd); |
| 962 | if (ins_prevcmd) |
| 963 | { |
| 964 | if (prevcmd == NULL) |
| 965 | { |
| 966 | EMSG(_(e_noprev)); |
| 967 | vim_free(newcmd); |
| 968 | return; |
| 969 | } |
| 970 | len += (int)STRLEN(prevcmd); |
| 971 | } |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 972 | if ((t = alloc((unsigned)len)) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 973 | { |
| 974 | vim_free(newcmd); |
| 975 | return; |
| 976 | } |
| 977 | *t = NUL; |
| 978 | if (newcmd != NULL) |
| 979 | STRCAT(t, newcmd); |
| 980 | if (ins_prevcmd) |
| 981 | STRCAT(t, prevcmd); |
| 982 | p = t + STRLEN(t); |
| 983 | STRCAT(t, trailarg); |
| 984 | vim_free(newcmd); |
| 985 | newcmd = t; |
| 986 | |
| 987 | /* |
| 988 | * Scan the rest of the argument for '!', which is replaced by the |
| 989 | * previous command. "\!" is replaced by "!" (this is vi compatible). |
| 990 | */ |
| 991 | trailarg = NULL; |
| 992 | while (*p) |
| 993 | { |
Bram Moolenaar | e60acc1 | 2011-05-10 16:41:25 +0200 | [diff] [blame] | 994 | if (*p == '!') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 995 | { |
| 996 | if (p > newcmd && p[-1] == '\\') |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 997 | STRMOVE(p - 1, p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 998 | else |
| 999 | { |
| 1000 | trailarg = p; |
| 1001 | *trailarg++ = NUL; |
| 1002 | ins_prevcmd = TRUE; |
| 1003 | break; |
| 1004 | } |
| 1005 | } |
| 1006 | ++p; |
| 1007 | } |
| 1008 | } while (trailarg != NULL); |
| 1009 | |
| 1010 | vim_free(prevcmd); |
| 1011 | prevcmd = newcmd; |
| 1012 | |
| 1013 | if (bangredo) /* put cmd in redo buffer for ! command */ |
| 1014 | { |
Bram Moolenaar | 529d2d6 | 2014-03-19 17:41:23 +0100 | [diff] [blame] | 1015 | /* If % or # appears in the command, it must have been escaped. |
| 1016 | * Reescape them, so that redoing them does not substitute them by the |
| 1017 | * buffername. */ |
| 1018 | char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#"); |
| 1019 | |
| 1020 | if (cmd != NULL) |
| 1021 | { |
| 1022 | AppendToRedobuffLit(cmd, -1); |
| 1023 | vim_free(cmd); |
| 1024 | } |
| 1025 | else |
| 1026 | AppendToRedobuffLit(prevcmd, -1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1027 | AppendToRedobuff((char_u *)"\n"); |
| 1028 | bangredo = FALSE; |
| 1029 | } |
| 1030 | /* |
| 1031 | * Add quotes around the command, for shells that need them. |
| 1032 | */ |
| 1033 | if (*p_shq != NUL) |
| 1034 | { |
| 1035 | newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1)); |
| 1036 | if (newcmd == NULL) |
| 1037 | return; |
| 1038 | STRCPY(newcmd, p_shq); |
| 1039 | STRCAT(newcmd, prevcmd); |
| 1040 | STRCAT(newcmd, p_shq); |
| 1041 | free_newcmd = TRUE; |
| 1042 | } |
| 1043 | if (addr_count == 0) /* :! */ |
| 1044 | { |
| 1045 | /* echo the command */ |
| 1046 | msg_start(); |
| 1047 | msg_putchar(':'); |
| 1048 | msg_putchar('!'); |
| 1049 | msg_outtrans(newcmd); |
| 1050 | msg_clr_eos(); |
| 1051 | windgoto(msg_row, msg_col); |
| 1052 | |
| 1053 | do_shell(newcmd, 0); |
| 1054 | } |
| 1055 | else /* :range! */ |
Bram Moolenaar | ade0083 | 2006-03-10 21:46:58 +0000 | [diff] [blame] | 1056 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1057 | /* Careful: This may recursively call do_bang() again! (because of |
| 1058 | * autocommands) */ |
| 1059 | do_filter(line1, line2, eap, newcmd, do_in, do_out); |
Bram Moolenaar | ade0083 | 2006-03-10 21:46:58 +0000 | [diff] [blame] | 1060 | #ifdef FEAT_AUTOCMD |
| 1061 | apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf); |
| 1062 | #endif |
| 1063 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1064 | if (free_newcmd) |
| 1065 | vim_free(newcmd); |
| 1066 | } |
| 1067 | |
| 1068 | /* |
| 1069 | * do_filter: filter lines through a command given by the user |
| 1070 | * |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1071 | * We mostly use temp files and the call_shell() routine here. This would |
| 1072 | * normally be done using pipes on a UNIX machine, but this is more portable |
| 1073 | * to non-unix machines. The call_shell() routine needs to be able |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1074 | * to deal with redirection somehow, and should handle things like looking |
| 1075 | * at the PATH env. variable, and adding reasonable extensions to the |
| 1076 | * command name given by the user. All reasonable versions of call_shell() |
| 1077 | * do this. |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1078 | * Alternatively, if on Unix and redirecting input or output, but not both, |
| 1079 | * and the 'shelltemp' option isn't set, use pipes. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1080 | * We use input redirection if do_in is TRUE. |
| 1081 | * We use output redirection if do_out is TRUE. |
| 1082 | */ |
| 1083 | static void |
| 1084 | do_filter(line1, line2, eap, cmd, do_in, do_out) |
| 1085 | linenr_T line1, line2; |
| 1086 | exarg_T *eap; /* for forced 'ff' and 'fenc' */ |
| 1087 | char_u *cmd; |
| 1088 | int do_in, do_out; |
| 1089 | { |
| 1090 | char_u *itmp = NULL; |
| 1091 | char_u *otmp = NULL; |
| 1092 | linenr_T linecount; |
| 1093 | linenr_T read_linecount; |
| 1094 | pos_T cursor_save; |
| 1095 | char_u *cmd_buf; |
| 1096 | #ifdef FEAT_AUTOCMD |
| 1097 | buf_T *old_curbuf = curbuf; |
| 1098 | #endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1099 | int shell_flags = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1100 | |
| 1101 | if (*cmd == NUL) /* no filter command */ |
| 1102 | return; |
| 1103 | |
| 1104 | #ifdef WIN3264 |
| 1105 | /* |
| 1106 | * Check if external commands are allowed now. |
| 1107 | */ |
| 1108 | if (can_end_termcap_mode(TRUE) == FALSE) |
| 1109 | return; |
| 1110 | #endif |
| 1111 | |
| 1112 | cursor_save = curwin->w_cursor; |
| 1113 | linecount = line2 - line1 + 1; |
| 1114 | curwin->w_cursor.lnum = line1; |
| 1115 | curwin->w_cursor.col = 0; |
| 1116 | changed_line_abv_curs(); |
| 1117 | invalidate_botline(); |
| 1118 | |
| 1119 | /* |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1120 | * When using temp files: |
| 1121 | * 1. * Form temp file names |
| 1122 | * 2. * Write the lines to a temp file |
| 1123 | * 3. Run the filter command on the temp file |
| 1124 | * 4. * Read the output of the command into the buffer |
| 1125 | * 5. * Delete the original lines to be filtered |
| 1126 | * 6. * Remove the temp files |
| 1127 | * |
| 1128 | * When writing the input with a pipe or when catching the output with a |
| 1129 | * pipe only need to do 3. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1130 | */ |
| 1131 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1132 | if (do_out) |
| 1133 | shell_flags |= SHELL_DOOUT; |
| 1134 | |
Bram Moolenaar | 68a33fc | 2012-04-25 16:50:48 +0200 | [diff] [blame] | 1135 | #ifdef FEAT_FILTERPIPE |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1136 | if (!do_in && do_out && !p_stmp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1137 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1138 | /* Use a pipe to fetch stdout of the command, do not use a temp file. */ |
| 1139 | shell_flags |= SHELL_READ; |
| 1140 | curwin->w_cursor.lnum = line2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1141 | } |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1142 | else if (do_in && !do_out && !p_stmp) |
| 1143 | { |
| 1144 | /* Use a pipe to write stdin of the command, do not use a temp file. */ |
| 1145 | shell_flags |= SHELL_WRITE; |
| 1146 | curbuf->b_op_start.lnum = line1; |
| 1147 | curbuf->b_op_end.lnum = line2; |
| 1148 | } |
| 1149 | else if (do_in && do_out && !p_stmp) |
| 1150 | { |
| 1151 | /* Use a pipe to write stdin and fetch stdout of the command, do not |
| 1152 | * use a temp file. */ |
| 1153 | shell_flags |= SHELL_READ|SHELL_WRITE; |
| 1154 | curbuf->b_op_start.lnum = line1; |
| 1155 | curbuf->b_op_end.lnum = line2; |
| 1156 | curwin->w_cursor.lnum = line2; |
| 1157 | } |
| 1158 | else |
| 1159 | #endif |
| 1160 | if ((do_in && (itmp = vim_tempname('i')) == NULL) |
| 1161 | || (do_out && (otmp = vim_tempname('o')) == NULL)) |
| 1162 | { |
| 1163 | EMSG(_(e_notmp)); |
| 1164 | goto filterend; |
| 1165 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1166 | |
| 1167 | /* |
| 1168 | * The writing and reading of temp files will not be shown. |
| 1169 | * Vi also doesn't do this and the messages are not very informative. |
| 1170 | */ |
| 1171 | ++no_wait_return; /* don't call wait_return() while busy */ |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1172 | if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1173 | FALSE, FALSE, FALSE, TRUE) == FAIL) |
| 1174 | { |
| 1175 | msg_putchar('\n'); /* keep message from buf_write() */ |
| 1176 | --no_wait_return; |
| 1177 | #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
| 1178 | if (!aborting()) |
| 1179 | #endif |
| 1180 | (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */ |
| 1181 | goto filterend; |
| 1182 | } |
| 1183 | #ifdef FEAT_AUTOCMD |
| 1184 | if (curbuf != old_curbuf) |
| 1185 | goto filterend; |
| 1186 | #endif |
| 1187 | |
| 1188 | if (!do_out) |
| 1189 | msg_putchar('\n'); |
| 1190 | |
Bram Moolenaar | a9aafe5 | 2008-05-07 11:10:28 +0000 | [diff] [blame] | 1191 | /* Create the shell command in allocated memory. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1192 | cmd_buf = make_filter_cmd(cmd, itmp, otmp); |
| 1193 | if (cmd_buf == NULL) |
| 1194 | goto filterend; |
| 1195 | |
| 1196 | windgoto((int)Rows - 1, 0); |
| 1197 | cursor_on(); |
| 1198 | |
| 1199 | /* |
| 1200 | * When not redirecting the output the command can write anything to the |
| 1201 | * screen. If 'shellredir' is equal to ">", screen may be messed up by |
| 1202 | * stderr output of external command. Clear the screen later. |
| 1203 | * If do_in is FALSE, this could be something like ":r !cat", which may |
| 1204 | * also mess up the screen, clear it later. |
| 1205 | */ |
| 1206 | if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in) |
| 1207 | redraw_later_clear(); |
| 1208 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1209 | if (do_out) |
| 1210 | { |
| 1211 | if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL) |
Bram Moolenaar | a9aafe5 | 2008-05-07 11:10:28 +0000 | [diff] [blame] | 1212 | { |
| 1213 | vim_free(cmd_buf); |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1214 | goto error; |
Bram Moolenaar | a9aafe5 | 2008-05-07 11:10:28 +0000 | [diff] [blame] | 1215 | } |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1216 | redraw_curbuf_later(VALID); |
| 1217 | } |
| 1218 | read_linecount = curbuf->b_ml.ml_line_count; |
| 1219 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1220 | /* |
| 1221 | * When call_shell() fails wait_return() is called to give the user a |
| 1222 | * chance to read the error messages. Otherwise errors are ignored, so you |
| 1223 | * can see the error messages from the command that appear on stdout; use |
| 1224 | * 'u' to fix the text |
| 1225 | * Switch to cooked mode when not redirecting stdin, avoids that something |
| 1226 | * like ":r !cat" hangs. |
| 1227 | * Pass on the SHELL_DOOUT flag when the output is being redirected. |
| 1228 | */ |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1229 | if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1230 | { |
| 1231 | redraw_later_clear(); |
| 1232 | wait_return(FALSE); |
| 1233 | } |
| 1234 | vim_free(cmd_buf); |
| 1235 | |
| 1236 | did_check_timestamps = FALSE; |
| 1237 | need_check_timestamps = TRUE; |
| 1238 | |
| 1239 | /* When interrupting the shell command, it may still have produced some |
| 1240 | * useful output. Reset got_int here, so that readfile() won't cancel |
| 1241 | * reading. */ |
| 1242 | ui_breakcheck(); |
| 1243 | got_int = FALSE; |
| 1244 | |
| 1245 | if (do_out) |
| 1246 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1247 | if (otmp != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1248 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1249 | if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM, |
| 1250 | eap, READ_FILTER) == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1251 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1252 | #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
| 1253 | if (!aborting()) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1254 | #endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1255 | { |
| 1256 | msg_putchar('\n'); |
| 1257 | EMSG2(_(e_notread), otmp); |
| 1258 | } |
| 1259 | goto error; |
| 1260 | } |
| 1261 | #ifdef FEAT_AUTOCMD |
| 1262 | if (curbuf != old_curbuf) |
| 1263 | goto filterend; |
| 1264 | #endif |
| 1265 | } |
| 1266 | |
| 1267 | read_linecount = curbuf->b_ml.ml_line_count - read_linecount; |
| 1268 | |
| 1269 | if (shell_flags & SHELL_READ) |
| 1270 | { |
| 1271 | curbuf->b_op_start.lnum = line2 + 1; |
| 1272 | curbuf->b_op_end.lnum = curwin->w_cursor.lnum; |
| 1273 | appended_lines_mark(line2, read_linecount); |
| 1274 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1275 | |
| 1276 | if (do_in) |
| 1277 | { |
| 1278 | if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL) |
| 1279 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1280 | if (read_linecount >= linecount) |
| 1281 | /* move all marks from old lines to new lines */ |
| 1282 | mark_adjust(line1, line2, linecount, 0L); |
| 1283 | else |
| 1284 | { |
| 1285 | /* move marks from old lines to new lines, delete marks |
| 1286 | * that are in deleted lines */ |
| 1287 | mark_adjust(line1, line1 + read_linecount - 1, |
| 1288 | linecount, 0L); |
| 1289 | mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L); |
| 1290 | } |
| 1291 | } |
| 1292 | |
| 1293 | /* |
| 1294 | * Put cursor on first filtered line for ":range!cmd". |
| 1295 | * Adjust '[ and '] (set by buf_write()). |
| 1296 | */ |
| 1297 | curwin->w_cursor.lnum = line1; |
| 1298 | del_lines(linecount, TRUE); |
| 1299 | curbuf->b_op_start.lnum -= linecount; /* adjust '[ */ |
| 1300 | curbuf->b_op_end.lnum -= linecount; /* adjust '] */ |
| 1301 | write_lnum_adjust(-linecount); /* adjust last line |
| 1302 | for next write */ |
Bram Moolenaar | 8c71145 | 2005-01-14 21:53:12 +0000 | [diff] [blame] | 1303 | #ifdef FEAT_FOLDING |
| 1304 | foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum); |
| 1305 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1306 | } |
| 1307 | else |
| 1308 | { |
| 1309 | /* |
| 1310 | * Put cursor on last new line for ":r !cmd". |
| 1311 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1312 | linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1313 | curwin->w_cursor.lnum = curbuf->b_op_end.lnum; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1314 | } |
Bram Moolenaar | 8c71145 | 2005-01-14 21:53:12 +0000 | [diff] [blame] | 1315 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1316 | beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */ |
| 1317 | --no_wait_return; |
| 1318 | |
| 1319 | if (linecount > p_report) |
| 1320 | { |
| 1321 | if (do_in) |
| 1322 | { |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 1323 | vim_snprintf((char *)msg_buf, sizeof(msg_buf), |
| 1324 | _("%ld lines filtered"), (long)linecount); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1325 | if (msg(msg_buf) && !msg_scroll) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1326 | /* save message to display it after redraw */ |
Bram Moolenaar | 238a564 | 2006-02-21 22:12:05 +0000 | [diff] [blame] | 1327 | set_keep_msg(msg_buf, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1328 | } |
| 1329 | else |
| 1330 | msgmore((long)linecount); |
| 1331 | } |
| 1332 | } |
| 1333 | else |
| 1334 | { |
| 1335 | error: |
| 1336 | /* put cursor back in same position for ":w !cmd" */ |
| 1337 | curwin->w_cursor = cursor_save; |
| 1338 | --no_wait_return; |
| 1339 | wait_return(FALSE); |
| 1340 | } |
| 1341 | |
| 1342 | filterend: |
| 1343 | |
| 1344 | #ifdef FEAT_AUTOCMD |
| 1345 | if (curbuf != old_curbuf) |
| 1346 | { |
| 1347 | --no_wait_return; |
| 1348 | EMSG(_("E135: *Filter* Autocommands must not change current buffer")); |
| 1349 | } |
| 1350 | #endif |
| 1351 | if (itmp != NULL) |
| 1352 | mch_remove(itmp); |
| 1353 | if (otmp != NULL) |
| 1354 | mch_remove(otmp); |
| 1355 | vim_free(itmp); |
| 1356 | vim_free(otmp); |
| 1357 | } |
| 1358 | |
| 1359 | /* |
| 1360 | * Call a shell to execute a command. |
| 1361 | * When "cmd" is NULL start an interactive shell. |
| 1362 | */ |
| 1363 | void |
| 1364 | do_shell(cmd, flags) |
| 1365 | char_u *cmd; |
| 1366 | int flags; /* may be SHELL_DOOUT when output is redirected */ |
| 1367 | { |
| 1368 | buf_T *buf; |
| 1369 | #ifndef FEAT_GUI_MSWIN |
| 1370 | int save_nwr; |
| 1371 | #endif |
| 1372 | #ifdef MSWIN |
| 1373 | int winstart = FALSE; |
| 1374 | #endif |
| 1375 | |
| 1376 | /* |
| 1377 | * Disallow shell commands for "rvim". |
| 1378 | * Disallow shell commands from .exrc and .vimrc in current directory for |
| 1379 | * security reasons. |
| 1380 | */ |
| 1381 | if (check_restricted() || check_secure()) |
| 1382 | { |
| 1383 | msg_end(); |
| 1384 | return; |
| 1385 | } |
| 1386 | |
| 1387 | #ifdef MSWIN |
| 1388 | /* |
| 1389 | * Check if external commands are allowed now. |
| 1390 | */ |
| 1391 | if (can_end_termcap_mode(TRUE) == FALSE) |
| 1392 | return; |
| 1393 | |
| 1394 | /* |
| 1395 | * Check if ":!start" is used. |
| 1396 | */ |
| 1397 | if (cmd != NULL) |
| 1398 | winstart = (STRNICMP(cmd, "start ", 6) == 0); |
| 1399 | #endif |
| 1400 | |
| 1401 | /* |
| 1402 | * For autocommands we want to get the output on the current screen, to |
| 1403 | * avoid having to type return below. |
| 1404 | */ |
| 1405 | msg_putchar('\r'); /* put cursor at start of line */ |
| 1406 | #ifdef FEAT_AUTOCMD |
| 1407 | if (!autocmd_busy) |
| 1408 | #endif |
| 1409 | { |
| 1410 | #ifdef MSWIN |
| 1411 | if (!winstart) |
| 1412 | #endif |
| 1413 | stoptermcap(); |
| 1414 | } |
| 1415 | #ifdef MSWIN |
| 1416 | if (!winstart) |
| 1417 | #endif |
| 1418 | msg_putchar('\n'); /* may shift screen one line up */ |
| 1419 | |
| 1420 | /* warning message before calling the shell */ |
| 1421 | if (p_warn |
| 1422 | #ifdef FEAT_AUTOCMD |
| 1423 | && !autocmd_busy |
| 1424 | #endif |
| 1425 | && msg_silent == 0) |
| 1426 | for (buf = firstbuf; buf; buf = buf->b_next) |
| 1427 | if (bufIsChanged(buf)) |
| 1428 | { |
| 1429 | #ifdef FEAT_GUI_MSWIN |
| 1430 | if (!winstart) |
| 1431 | starttermcap(); /* don't want a message box here */ |
| 1432 | #endif |
| 1433 | MSG_PUTS(_("[No write since last change]\n")); |
| 1434 | #ifdef FEAT_GUI_MSWIN |
| 1435 | if (!winstart) |
| 1436 | stoptermcap(); |
| 1437 | #endif |
| 1438 | break; |
| 1439 | } |
| 1440 | |
| 1441 | /* This windgoto is required for when the '\n' resulted in a "delete line |
| 1442 | * 1" command to the terminal. */ |
| 1443 | if (!swapping_screen()) |
| 1444 | windgoto(msg_row, msg_col); |
| 1445 | cursor_on(); |
| 1446 | (void)call_shell(cmd, SHELL_COOKED | flags); |
| 1447 | did_check_timestamps = FALSE; |
| 1448 | need_check_timestamps = TRUE; |
| 1449 | |
| 1450 | /* |
| 1451 | * put the message cursor at the end of the screen, avoids wait_return() |
| 1452 | * to overwrite the text that the external command showed |
| 1453 | */ |
| 1454 | if (!swapping_screen()) |
| 1455 | { |
| 1456 | msg_row = Rows - 1; |
| 1457 | msg_col = 0; |
| 1458 | } |
| 1459 | |
| 1460 | #ifdef FEAT_AUTOCMD |
| 1461 | if (autocmd_busy) |
| 1462 | { |
| 1463 | if (msg_silent == 0) |
| 1464 | redraw_later_clear(); |
| 1465 | } |
| 1466 | else |
| 1467 | #endif |
| 1468 | { |
| 1469 | /* |
| 1470 | * For ":sh" there is no need to call wait_return(), just redraw. |
| 1471 | * Also for the Win32 GUI (the output is in a console window). |
| 1472 | * Otherwise there is probably text on the screen that the user wants |
| 1473 | * to read before redrawing, so call wait_return(). |
| 1474 | */ |
| 1475 | #ifndef FEAT_GUI_MSWIN |
| 1476 | if (cmd == NULL |
| 1477 | # ifdef WIN3264 |
| 1478 | || (winstart && !need_wait_return) |
| 1479 | # endif |
| 1480 | ) |
| 1481 | { |
| 1482 | if (msg_silent == 0) |
| 1483 | redraw_later_clear(); |
| 1484 | need_wait_return = FALSE; |
| 1485 | } |
| 1486 | else |
| 1487 | { |
| 1488 | /* |
| 1489 | * If we switch screens when starttermcap() is called, we really |
| 1490 | * want to wait for "hit return to continue". |
| 1491 | */ |
| 1492 | save_nwr = no_wait_return; |
| 1493 | if (swapping_screen()) |
| 1494 | no_wait_return = FALSE; |
| 1495 | # ifdef AMIGA |
| 1496 | wait_return(term_console ? -1 : msg_silent == 0); /* see below */ |
| 1497 | # else |
| 1498 | wait_return(msg_silent == 0); |
| 1499 | # endif |
| 1500 | no_wait_return = save_nwr; |
| 1501 | } |
| 1502 | #endif /* FEAT_GUI_W32 */ |
| 1503 | |
| 1504 | #ifdef MSWIN |
| 1505 | if (!winstart) /* if winstart==TRUE, never stopped termcap! */ |
| 1506 | #endif |
| 1507 | starttermcap(); /* start termcap if not done by wait_return() */ |
| 1508 | |
| 1509 | /* |
| 1510 | * In an Amiga window redrawing is caused by asking the window size. |
| 1511 | * If we got an interrupt this will not work. The chance that the |
| 1512 | * window size is wrong is very small, but we need to redraw the |
| 1513 | * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY |
| 1514 | * but it saves an extra redraw. |
| 1515 | */ |
| 1516 | #ifdef AMIGA |
| 1517 | if (skip_redraw) /* ':' hit in wait_return() */ |
| 1518 | { |
| 1519 | if (msg_silent == 0) |
| 1520 | redraw_later_clear(); |
| 1521 | } |
| 1522 | else if (term_console) |
| 1523 | { |
| 1524 | OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */ |
| 1525 | if (got_int && msg_silent == 0) |
| 1526 | redraw_later_clear(); /* if got_int is TRUE, redraw needed */ |
| 1527 | else |
| 1528 | must_redraw = 0; /* no extra redraw needed */ |
| 1529 | } |
| 1530 | #endif |
| 1531 | } |
| 1532 | |
| 1533 | /* display any error messages now */ |
| 1534 | display_errors(); |
Bram Moolenaar | ade0083 | 2006-03-10 21:46:58 +0000 | [diff] [blame] | 1535 | |
| 1536 | #ifdef FEAT_AUTOCMD |
| 1537 | apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf); |
| 1538 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1539 | } |
| 1540 | |
| 1541 | /* |
| 1542 | * Create a shell command from a command string, input redirection file and |
| 1543 | * output redirection file. |
| 1544 | * Returns an allocated string with the shell command, or NULL for failure. |
| 1545 | */ |
| 1546 | char_u * |
| 1547 | make_filter_cmd(cmd, itmp, otmp) |
| 1548 | char_u *cmd; /* command */ |
| 1549 | char_u *itmp; /* NULL or name of input file */ |
| 1550 | char_u *otmp; /* NULL or name of output file */ |
| 1551 | { |
| 1552 | char_u *buf; |
| 1553 | long_u len; |
| 1554 | |
Bram Moolenaar | 75a8d74 | 2014-05-07 15:10:21 +0200 | [diff] [blame] | 1555 | #if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2) |
Bram Moolenaar | d442ec7 | 2014-05-09 20:33:04 +0200 | [diff] [blame] | 1556 | int is_fish_shell; |
Bram Moolenaar | 050fe7e | 2014-05-22 14:00:16 +0200 | [diff] [blame] | 1557 | char_u *shell_name = get_isolated_shell_name(); |
Bram Moolenaar | d442ec7 | 2014-05-09 20:33:04 +0200 | [diff] [blame] | 1558 | |
Bram Moolenaar | 75a8d74 | 2014-05-07 15:10:21 +0200 | [diff] [blame] | 1559 | /* Account for fish's different syntax for subshells */ |
Bram Moolenaar | 050fe7e | 2014-05-22 14:00:16 +0200 | [diff] [blame] | 1560 | is_fish_shell = (fnamecmp(shell_name, "fish") == 0); |
| 1561 | vim_free(shell_name); |
Bram Moolenaar | 75a8d74 | 2014-05-07 15:10:21 +0200 | [diff] [blame] | 1562 | if (is_fish_shell) |
| 1563 | len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */ |
| 1564 | else |
| 1565 | #endif |
| 1566 | len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1567 | if (itmp != NULL) |
| 1568 | len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */ |
| 1569 | if (otmp != NULL) |
| 1570 | len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */ |
| 1571 | buf = lalloc(len, TRUE); |
| 1572 | if (buf == NULL) |
| 1573 | return NULL; |
| 1574 | |
| 1575 | #if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2) |
| 1576 | /* |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1577 | * Put braces around the command (for concatenated commands) when |
| 1578 | * redirecting input and/or output. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1579 | */ |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1580 | if (itmp != NULL || otmp != NULL) |
Bram Moolenaar | 75a8d74 | 2014-05-07 15:10:21 +0200 | [diff] [blame] | 1581 | { |
| 1582 | if (is_fish_shell) |
| 1583 | vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd); |
| 1584 | else |
| 1585 | vim_snprintf((char *)buf, len, "(%s)", (char *)cmd); |
| 1586 | } |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1587 | else |
| 1588 | STRCPY(buf, cmd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1589 | if (itmp != NULL) |
| 1590 | { |
| 1591 | STRCAT(buf, " < "); |
| 1592 | STRCAT(buf, itmp); |
| 1593 | } |
| 1594 | #else |
| 1595 | /* |
Bram Moolenaar | 75a8d74 | 2014-05-07 15:10:21 +0200 | [diff] [blame] | 1596 | * For shells that don't understand braces around commands, at least allow |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1597 | * the use of commands in a pipe. |
| 1598 | */ |
| 1599 | STRCPY(buf, cmd); |
| 1600 | if (itmp != NULL) |
| 1601 | { |
| 1602 | char_u *p; |
| 1603 | |
| 1604 | /* |
| 1605 | * If there is a pipe, we have to put the '<' in front of it. |
| 1606 | * Don't do this when 'shellquote' is not empty, otherwise the |
| 1607 | * redirection would be inside the quotes. |
| 1608 | */ |
| 1609 | if (*p_shq == NUL) |
| 1610 | { |
| 1611 | p = vim_strchr(buf, '|'); |
| 1612 | if (p != NULL) |
| 1613 | *p = NUL; |
| 1614 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1615 | STRCAT(buf, " <"); /* " < " causes problems on Amiga */ |
| 1616 | STRCAT(buf, itmp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1617 | if (*p_shq == NUL) |
| 1618 | { |
| 1619 | p = vim_strchr(cmd, '|'); |
| 1620 | if (p != NULL) |
| 1621 | { |
| 1622 | STRCAT(buf, " "); /* insert a space before the '|' for DOS */ |
| 1623 | STRCAT(buf, p); |
| 1624 | } |
| 1625 | } |
| 1626 | } |
| 1627 | #endif |
| 1628 | if (otmp != NULL) |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 1629 | append_redir(buf, (int)len, p_srr, otmp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1630 | |
| 1631 | return buf; |
| 1632 | } |
| 1633 | |
| 1634 | /* |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 1635 | * Append output redirection for file "fname" to the end of string buffer |
| 1636 | * "buf[buflen]" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1637 | * Works with the 'shellredir' and 'shellpipe' options. |
| 1638 | * The caller should make sure that there is enough room: |
| 1639 | * STRLEN(opt) + STRLEN(fname) + 3 |
| 1640 | */ |
| 1641 | void |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 1642 | append_redir(buf, buflen, opt, fname) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1643 | char_u *buf; |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 1644 | int buflen; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1645 | char_u *opt; |
| 1646 | char_u *fname; |
| 1647 | { |
| 1648 | char_u *p; |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 1649 | char_u *end; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1650 | |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 1651 | end = buf + STRLEN(buf); |
Bram Moolenaar | 542805a | 2013-08-02 14:15:13 +0200 | [diff] [blame] | 1652 | /* find "%s" */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1653 | for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p) |
Bram Moolenaar | 542805a | 2013-08-02 14:15:13 +0200 | [diff] [blame] | 1654 | { |
| 1655 | if (p[1] == 's') /* found %s */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1656 | break; |
Bram Moolenaar | 542805a | 2013-08-02 14:15:13 +0200 | [diff] [blame] | 1657 | if (p[1] == '%') /* skip %% */ |
| 1658 | ++p; |
| 1659 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1660 | if (p != NULL) |
| 1661 | { |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 1662 | *end = ' '; /* not really needed? Not with sh, ksh or bash */ |
| 1663 | vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)), |
| 1664 | (char *)opt, (char *)fname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1665 | } |
| 1666 | else |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 1667 | vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1668 | #ifdef FEAT_QUICKFIX |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1669 | " %s %s", |
| 1670 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1671 | " %s%s", /* " > %s" causes problems on Amiga */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1672 | #endif |
| 1673 | (char *)opt, (char *)fname); |
| 1674 | } |
| 1675 | |
| 1676 | #ifdef FEAT_VIMINFO |
| 1677 | |
| 1678 | static int no_viminfo __ARGS((void)); |
| 1679 | static int viminfo_errcnt; |
| 1680 | |
| 1681 | static int |
| 1682 | no_viminfo() |
| 1683 | { |
| 1684 | /* "vim -i NONE" does not read or write a viminfo file */ |
| 1685 | return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0); |
| 1686 | } |
| 1687 | |
| 1688 | /* |
| 1689 | * Report an error for reading a viminfo file. |
| 1690 | * Count the number of errors. When there are more than 10, return TRUE. |
| 1691 | */ |
| 1692 | int |
| 1693 | viminfo_error(errnum, message, line) |
| 1694 | char *errnum; |
| 1695 | char *message; |
| 1696 | char_u *line; |
| 1697 | { |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 1698 | vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "), |
| 1699 | errnum, message); |
Bram Moolenaar | 6c96483 | 2007-12-09 18:38:35 +0000 | [diff] [blame] | 1700 | STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1); |
Bram Moolenaar | 758711c | 2005-02-02 23:11:38 +0000 | [diff] [blame] | 1701 | if (IObuff[STRLEN(IObuff) - 1] == '\n') |
| 1702 | IObuff[STRLEN(IObuff) - 1] = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1703 | emsg(IObuff); |
| 1704 | if (++viminfo_errcnt >= 10) |
| 1705 | { |
| 1706 | EMSG(_("E136: viminfo: Too many errors, skipping rest of file")); |
| 1707 | return TRUE; |
| 1708 | } |
| 1709 | return FALSE; |
| 1710 | } |
| 1711 | |
| 1712 | /* |
| 1713 | * read_viminfo() -- Read the viminfo file. Registers etc. which are already |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 1714 | * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1715 | */ |
| 1716 | int |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 1717 | read_viminfo(file, flags) |
| 1718 | char_u *file; /* file name or NULL to use default name */ |
| 1719 | int flags; /* VIF_WANT_INFO et al. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1720 | { |
| 1721 | FILE *fp; |
| 1722 | char_u *fname; |
| 1723 | |
| 1724 | if (no_viminfo()) |
| 1725 | return FAIL; |
| 1726 | |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 1727 | fname = viminfo_filename(file); /* get file name in allocated buffer */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1728 | if (fname == NULL) |
| 1729 | return FAIL; |
| 1730 | fp = mch_fopen((char *)fname, READBIN); |
| 1731 | |
| 1732 | if (p_verbose > 0) |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 1733 | { |
| 1734 | verbose_enter(); |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 1735 | smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"), |
| 1736 | fname, |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 1737 | (flags & VIF_WANT_INFO) ? _(" info") : "", |
| 1738 | (flags & VIF_WANT_MARKS) ? _(" marks") : "", |
| 1739 | (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "", |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 1740 | fp == NULL ? _(" FAILED") : ""); |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 1741 | verbose_leave(); |
| 1742 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1743 | |
| 1744 | vim_free(fname); |
| 1745 | if (fp == NULL) |
| 1746 | return FAIL; |
| 1747 | |
| 1748 | viminfo_errcnt = 0; |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 1749 | do_viminfo(fp, NULL, flags); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1750 | |
| 1751 | fclose(fp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1752 | return OK; |
| 1753 | } |
| 1754 | |
| 1755 | /* |
Bram Moolenaar | ff1806f | 2013-06-15 16:31:47 +0200 | [diff] [blame] | 1756 | * Write the viminfo file. The old one is read in first so that effectively a |
| 1757 | * merge of current info and old info is done. This allows multiple vims to |
| 1758 | * run simultaneously, without losing any marks etc. |
| 1759 | * If "forceit" is TRUE, then the old file is not read in, and only internal |
| 1760 | * info is written to the file. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1761 | */ |
| 1762 | void |
| 1763 | write_viminfo(file, forceit) |
| 1764 | char_u *file; |
| 1765 | int forceit; |
| 1766 | { |
| 1767 | char_u *fname; |
| 1768 | FILE *fp_in = NULL; /* input viminfo file, if any */ |
| 1769 | FILE *fp_out = NULL; /* output viminfo file */ |
| 1770 | char_u *tempname = NULL; /* name of temp viminfo file */ |
| 1771 | struct stat st_new; /* mch_stat() of potential new file */ |
| 1772 | char_u *wp; |
| 1773 | #if defined(UNIX) || defined(VMS) |
| 1774 | mode_t umask_save; |
| 1775 | #endif |
| 1776 | #ifdef UNIX |
| 1777 | int shortname = FALSE; /* use 8.3 file name */ |
| 1778 | struct stat st_old; /* mch_stat() of existing viminfo file */ |
| 1779 | #endif |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1780 | #ifdef WIN3264 |
| 1781 | long perm = -1; |
| 1782 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1783 | |
| 1784 | if (no_viminfo()) |
| 1785 | return; |
| 1786 | |
| 1787 | fname = viminfo_filename(file); /* may set to default if NULL */ |
| 1788 | if (fname == NULL) |
| 1789 | return; |
| 1790 | |
| 1791 | fp_in = mch_fopen((char *)fname, READBIN); |
| 1792 | if (fp_in == NULL) |
| 1793 | { |
| 1794 | /* if it does exist, but we can't read it, don't try writing */ |
| 1795 | if (mch_stat((char *)fname, &st_new) == 0) |
| 1796 | goto end; |
| 1797 | #if defined(UNIX) || defined(VMS) |
| 1798 | /* |
| 1799 | * For Unix we create the .viminfo non-accessible for others, |
| 1800 | * because it may contain text from non-accessible documents. |
| 1801 | */ |
| 1802 | umask_save = umask(077); |
| 1803 | #endif |
| 1804 | fp_out = mch_fopen((char *)fname, WRITEBIN); |
| 1805 | #if defined(UNIX) || defined(VMS) |
| 1806 | (void)umask(umask_save); |
| 1807 | #endif |
| 1808 | } |
| 1809 | else |
| 1810 | { |
| 1811 | /* |
| 1812 | * There is an existing viminfo file. Create a temporary file to |
| 1813 | * write the new viminfo into, in the same directory as the |
| 1814 | * existing viminfo file, which will be renamed later. |
| 1815 | */ |
| 1816 | #ifdef UNIX |
| 1817 | /* |
| 1818 | * For Unix we check the owner of the file. It's not very nice to |
| 1819 | * overwrite a user's viminfo file after a "su root", with a |
| 1820 | * viminfo file that the user can't read. |
| 1821 | */ |
Bram Moolenaar | 0ab2a88 | 2009-05-13 10:51:08 +0000 | [diff] [blame] | 1822 | st_old.st_dev = (dev_t)0; |
Bram Moolenaar | 6f19245 | 2007-11-08 19:49:02 +0000 | [diff] [blame] | 1823 | st_old.st_ino = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1824 | st_old.st_mode = 0600; |
Bram Moolenaar | 311d982 | 2007-02-27 15:48:28 +0000 | [diff] [blame] | 1825 | if (mch_stat((char *)fname, &st_old) == 0 |
| 1826 | && getuid() != ROOT_UID |
Bram Moolenaar | 12625ca | 2005-11-25 19:58:47 +0000 | [diff] [blame] | 1827 | && !(st_old.st_uid == getuid() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1828 | ? (st_old.st_mode & 0200) |
| 1829 | : (st_old.st_gid == getgid() |
| 1830 | ? (st_old.st_mode & 0020) |
| 1831 | : (st_old.st_mode & 0002)))) |
| 1832 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 1833 | int tt = msg_didany; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1834 | |
| 1835 | /* avoid a wait_return for this message, it's annoying */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1836 | EMSG2(_("E137: Viminfo file is not writable: %s"), fname); |
| 1837 | msg_didany = tt; |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 1838 | fclose(fp_in); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1839 | goto end; |
| 1840 | } |
| 1841 | #endif |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1842 | #ifdef WIN3264 |
| 1843 | /* Get the file attributes of the existing viminfo file. */ |
| 1844 | perm = mch_getperm(fname); |
| 1845 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1846 | |
| 1847 | /* |
| 1848 | * Make tempname. |
| 1849 | * May try twice: Once normal and once with shortname set, just in |
| 1850 | * case somebody puts his viminfo file in an 8.3 filesystem. |
| 1851 | */ |
| 1852 | for (;;) |
| 1853 | { |
| 1854 | tempname = buf_modname( |
| 1855 | #ifdef UNIX |
| 1856 | shortname, |
| 1857 | #else |
| 1858 | # ifdef SHORT_FNAME |
| 1859 | TRUE, |
| 1860 | # else |
| 1861 | # ifdef FEAT_GUI_W32 |
| 1862 | gui_is_win32s(), |
| 1863 | # else |
| 1864 | FALSE, |
| 1865 | # endif |
| 1866 | # endif |
| 1867 | #endif |
| 1868 | fname, |
| 1869 | #ifdef VMS |
| 1870 | (char_u *)"-tmp", |
| 1871 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1872 | (char_u *)".tmp", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1873 | #endif |
| 1874 | FALSE); |
| 1875 | if (tempname == NULL) /* out of memory */ |
| 1876 | break; |
| 1877 | |
| 1878 | /* |
| 1879 | * Check if tempfile already exists. Never overwrite an |
| 1880 | * existing file! |
| 1881 | */ |
| 1882 | if (mch_stat((char *)tempname, &st_new) == 0) |
| 1883 | { |
| 1884 | #ifdef UNIX |
| 1885 | /* |
| 1886 | * Check if tempfile is same as original file. May happen |
| 1887 | * when modname() gave the same file back. E.g. silly |
| 1888 | * link, or file name-length reached. Try again with |
| 1889 | * shortname set. |
| 1890 | */ |
Bram Moolenaar | 12625ca | 2005-11-25 19:58:47 +0000 | [diff] [blame] | 1891 | if (!shortname && st_new.st_dev == st_old.st_dev |
| 1892 | && st_new.st_ino == st_old.st_ino) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1893 | { |
| 1894 | vim_free(tempname); |
| 1895 | tempname = NULL; |
| 1896 | shortname = TRUE; |
| 1897 | continue; |
| 1898 | } |
| 1899 | #endif |
| 1900 | /* |
| 1901 | * Try another name. Change one character, just before |
| 1902 | * the extension. This should also work for an 8.3 |
| 1903 | * file name, when after adding the extension it still is |
| 1904 | * the same file as the original. |
| 1905 | */ |
| 1906 | wp = tempname + STRLEN(tempname) - 5; |
| 1907 | if (wp < gettail(tempname)) /* empty file name? */ |
| 1908 | wp = gettail(tempname); |
| 1909 | for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0; |
| 1910 | --*wp) |
| 1911 | { |
| 1912 | /* |
| 1913 | * They all exist? Must be something wrong! Don't |
| 1914 | * write the viminfo file then. |
| 1915 | */ |
| 1916 | if (*wp == 'a') |
| 1917 | { |
| 1918 | vim_free(tempname); |
| 1919 | tempname = NULL; |
| 1920 | break; |
| 1921 | } |
| 1922 | } |
| 1923 | } |
| 1924 | break; |
| 1925 | } |
| 1926 | |
| 1927 | if (tempname != NULL) |
| 1928 | { |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1929 | #ifdef VMS |
| 1930 | /* fdopen() fails for some reason */ |
Bram Moolenaar | cf03447 | 2006-03-15 23:07:59 +0000 | [diff] [blame] | 1931 | umask_save = umask(077); |
| 1932 | fp_out = mch_fopen((char *)tempname, WRITEBIN); |
| 1933 | (void)umask(umask_save); |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1934 | #else |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1935 | int fd; |
| 1936 | |
| 1937 | /* Use mch_open() to be able to use O_NOFOLLOW and set file |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1938 | * protection: |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 1939 | * Unix: same as original file, but strip s-bit. Reset umask to |
| 1940 | * avoid it getting in the way. |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1941 | * Others: r&w for user only. */ |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1942 | # ifdef UNIX |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 1943 | umask_save = umask(0); |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1944 | fd = mch_open((char *)tempname, |
| 1945 | O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, |
Bram Moolenaar | bba577a | 2005-11-28 23:05:55 +0000 | [diff] [blame] | 1946 | (int)((st_old.st_mode & 0777) | 0600)); |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 1947 | (void)umask(umask_save); |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1948 | # else |
Bram Moolenaar | bba577a | 2005-11-28 23:05:55 +0000 | [diff] [blame] | 1949 | fd = mch_open((char *)tempname, |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 1950 | O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600); |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1951 | # endif |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1952 | if (fd < 0) |
| 1953 | fp_out = NULL; |
| 1954 | else |
| 1955 | fp_out = fdopen(fd, WRITEBIN); |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1956 | #endif /* VMS */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1957 | |
| 1958 | /* |
| 1959 | * If we can't create in the same directory, try creating a |
| 1960 | * "normal" temp file. |
| 1961 | */ |
| 1962 | if (fp_out == NULL) |
| 1963 | { |
| 1964 | vim_free(tempname); |
| 1965 | if ((tempname = vim_tempname('o')) != NULL) |
| 1966 | fp_out = mch_fopen((char *)tempname, WRITEBIN); |
| 1967 | } |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1968 | |
| 1969 | #if defined(UNIX) && defined(HAVE_FCHOWN) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1970 | /* |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1971 | * Make sure the owner can read/write it. This only works for |
| 1972 | * root. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1973 | */ |
| 1974 | if (fp_out != NULL) |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 1975 | ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1976 | #endif |
| 1977 | } |
| 1978 | } |
| 1979 | |
| 1980 | /* |
| 1981 | * Check if the new viminfo file can be written to. |
| 1982 | */ |
| 1983 | if (fp_out == NULL) |
| 1984 | { |
| 1985 | EMSG2(_("E138: Can't write viminfo file %s!"), |
Bram Moolenaar | 75c50c4 | 2005-06-04 22:06:24 +0000 | [diff] [blame] | 1986 | (fp_in == NULL || tempname == NULL) ? fname : tempname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1987 | if (fp_in != NULL) |
| 1988 | fclose(fp_in); |
| 1989 | goto end; |
| 1990 | } |
| 1991 | |
| 1992 | if (p_verbose > 0) |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 1993 | { |
| 1994 | verbose_enter(); |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 1995 | smsg((char_u *)_("Writing viminfo file \"%s\""), fname); |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 1996 | verbose_leave(); |
| 1997 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1998 | |
| 1999 | viminfo_errcnt = 0; |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 2000 | do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2001 | |
| 2002 | fclose(fp_out); /* errors are ignored !? */ |
| 2003 | if (fp_in != NULL) |
| 2004 | { |
| 2005 | fclose(fp_in); |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 2006 | |
Bram Moolenaar | 3ed8b13 | 2014-07-09 21:18:04 +0200 | [diff] [blame] | 2007 | /* In case of an error keep the original viminfo file. Otherwise |
| 2008 | * rename the newly written file. Give an error if that fails. */ |
| 2009 | if (viminfo_errcnt == 0 && vim_rename(tempname, fname) == -1) |
| 2010 | { |
| 2011 | ++viminfo_errcnt; |
| 2012 | EMSG2(_("E886: Can't rename viminfo file to %s!"), fname); |
| 2013 | } |
| 2014 | if (viminfo_errcnt > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2015 | mch_remove(tempname); |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 2016 | |
| 2017 | #ifdef WIN3264 |
| 2018 | /* If the viminfo file was hidden then also hide the new file. */ |
| 2019 | if (perm > 0 && (perm & FILE_ATTRIBUTE_HIDDEN)) |
| 2020 | mch_hide(fname); |
| 2021 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2022 | } |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 2023 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2024 | end: |
| 2025 | vim_free(fname); |
| 2026 | vim_free(tempname); |
| 2027 | } |
| 2028 | |
| 2029 | /* |
| 2030 | * Get the viminfo file name to use. |
| 2031 | * If "file" is given and not empty, use it (has already been expanded by |
| 2032 | * cmdline functions). |
| 2033 | * Otherwise use "-i file_name", value from 'viminfo' or the default, and |
| 2034 | * expand environment variables. |
| 2035 | * Returns an allocated string. NULL when out of memory. |
| 2036 | */ |
| 2037 | static char_u * |
| 2038 | viminfo_filename(file) |
| 2039 | char_u *file; |
| 2040 | { |
| 2041 | if (file == NULL || *file == NUL) |
| 2042 | { |
| 2043 | if (use_viminfo != NULL) |
| 2044 | file = use_viminfo; |
| 2045 | else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL) |
| 2046 | { |
| 2047 | #ifdef VIMINFO_FILE2 |
| 2048 | /* don't use $HOME when not defined (turned into "c:/"!). */ |
| 2049 | # ifdef VMS |
| 2050 | if (mch_getenv((char_u *)"SYS$LOGIN") == NULL) |
| 2051 | # else |
| 2052 | if (mch_getenv((char_u *)"HOME") == NULL) |
| 2053 | # endif |
| 2054 | { |
| 2055 | /* don't use $VIM when not available. */ |
| 2056 | expand_env((char_u *)"$VIM", NameBuff, MAXPATHL); |
| 2057 | if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */ |
| 2058 | file = (char_u *)VIMINFO_FILE2; |
| 2059 | else |
| 2060 | file = (char_u *)VIMINFO_FILE; |
| 2061 | } |
| 2062 | else |
| 2063 | #endif |
| 2064 | file = (char_u *)VIMINFO_FILE; |
| 2065 | } |
| 2066 | expand_env(file, NameBuff, MAXPATHL); |
| 2067 | file = NameBuff; |
| 2068 | } |
| 2069 | return vim_strsave(file); |
| 2070 | } |
| 2071 | |
| 2072 | /* |
| 2073 | * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo(). |
| 2074 | */ |
| 2075 | static void |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 2076 | do_viminfo(fp_in, fp_out, flags) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2077 | FILE *fp_in; |
| 2078 | FILE *fp_out; |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 2079 | int flags; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2080 | { |
| 2081 | int count = 0; |
| 2082 | int eof = FALSE; |
| 2083 | vir_T vir; |
Bram Moolenaar | ff1806f | 2013-06-15 16:31:47 +0200 | [diff] [blame] | 2084 | int merge = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2085 | |
| 2086 | if ((vir.vir_line = alloc(LSIZE)) == NULL) |
| 2087 | return; |
| 2088 | vir.vir_fd = fp_in; |
| 2089 | #ifdef FEAT_MBYTE |
| 2090 | vir.vir_conv.vc_type = CONV_NONE; |
| 2091 | #endif |
| 2092 | |
| 2093 | if (fp_in != NULL) |
| 2094 | { |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 2095 | if (flags & VIF_WANT_INFO) |
Bram Moolenaar | ff1806f | 2013-06-15 16:31:47 +0200 | [diff] [blame] | 2096 | { |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 2097 | eof = read_viminfo_up_to_marks(&vir, |
| 2098 | flags & VIF_FORCEIT, fp_out != NULL); |
Bram Moolenaar | ff1806f | 2013-06-15 16:31:47 +0200 | [diff] [blame] | 2099 | merge = TRUE; |
| 2100 | } |
| 2101 | else if (flags != 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2102 | /* Skip info, find start of marks */ |
| 2103 | while (!(eof = viminfo_readline(&vir)) |
| 2104 | && vir.vir_line[0] != '>') |
| 2105 | ; |
| 2106 | } |
| 2107 | if (fp_out != NULL) |
| 2108 | { |
| 2109 | /* Write the info: */ |
| 2110 | fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"), |
| 2111 | VIM_VERSION_MEDIUM); |
Bram Moolenaar | 2f1e050 | 2010-08-13 11:18:02 +0200 | [diff] [blame] | 2112 | fputs(_("# You may edit it if you're careful!\n\n"), fp_out); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2113 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 2f1e050 | 2010-08-13 11:18:02 +0200 | [diff] [blame] | 2114 | fputs(_("# Value of 'encoding' when this file was written\n"), fp_out); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2115 | fprintf(fp_out, "*encoding=%s\n\n", p_enc); |
| 2116 | #endif |
| 2117 | write_viminfo_search_pattern(fp_out); |
| 2118 | write_viminfo_sub_string(fp_out); |
| 2119 | #ifdef FEAT_CMDHIST |
Bram Moolenaar | ff1806f | 2013-06-15 16:31:47 +0200 | [diff] [blame] | 2120 | write_viminfo_history(fp_out, merge); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2121 | #endif |
| 2122 | write_viminfo_registers(fp_out); |
| 2123 | #ifdef FEAT_EVAL |
| 2124 | write_viminfo_varlist(fp_out); |
| 2125 | #endif |
| 2126 | write_viminfo_filemarks(fp_out); |
| 2127 | write_viminfo_bufferlist(fp_out); |
| 2128 | count = write_viminfo_marks(fp_out); |
| 2129 | } |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 2130 | if (fp_in != NULL |
| 2131 | && (flags & (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT))) |
| 2132 | copy_viminfo_marks(&vir, fp_out, count, eof, flags); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2133 | |
| 2134 | vim_free(vir.vir_line); |
| 2135 | #ifdef FEAT_MBYTE |
| 2136 | if (vir.vir_conv.vc_type != CONV_NONE) |
| 2137 | convert_setup(&vir.vir_conv, NULL, NULL); |
| 2138 | #endif |
| 2139 | } |
| 2140 | |
| 2141 | /* |
| 2142 | * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the |
| 2143 | * first part of the viminfo file which contains everything but the marks that |
| 2144 | * are local to a file. Returns TRUE when end-of-file is reached. -- webb |
| 2145 | */ |
| 2146 | static int |
| 2147 | read_viminfo_up_to_marks(virp, forceit, writing) |
| 2148 | vir_T *virp; |
| 2149 | int forceit; |
| 2150 | int writing; |
| 2151 | { |
| 2152 | int eof; |
| 2153 | buf_T *buf; |
| 2154 | |
| 2155 | #ifdef FEAT_CMDHIST |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 2156 | prepare_viminfo_history(forceit ? 9999 : 0, writing); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2157 | #endif |
| 2158 | eof = viminfo_readline(virp); |
| 2159 | while (!eof && virp->vir_line[0] != '>') |
| 2160 | { |
| 2161 | switch (virp->vir_line[0]) |
| 2162 | { |
| 2163 | /* Characters reserved for future expansion, ignored now */ |
| 2164 | case '+': /* "+40 /path/dir file", for running vim without args */ |
| 2165 | case '|': /* to be defined */ |
| 2166 | case '^': /* to be defined */ |
| 2167 | case '<': /* long line - ignored */ |
| 2168 | /* A comment or empty line. */ |
| 2169 | case NUL: |
| 2170 | case '\r': |
| 2171 | case '\n': |
| 2172 | case '#': |
| 2173 | eof = viminfo_readline(virp); |
| 2174 | break; |
| 2175 | case '*': /* "*encoding=value" */ |
| 2176 | eof = viminfo_encoding(virp); |
| 2177 | break; |
| 2178 | case '!': /* global variable */ |
| 2179 | #ifdef FEAT_EVAL |
| 2180 | eof = read_viminfo_varlist(virp, writing); |
| 2181 | #else |
| 2182 | eof = viminfo_readline(virp); |
| 2183 | #endif |
| 2184 | break; |
| 2185 | case '%': /* entry for buffer list */ |
| 2186 | eof = read_viminfo_bufferlist(virp, writing); |
| 2187 | break; |
| 2188 | case '"': |
| 2189 | eof = read_viminfo_register(virp, forceit); |
| 2190 | break; |
| 2191 | case '/': /* Search string */ |
| 2192 | case '&': /* Substitute search string */ |
| 2193 | case '~': /* Last search string, followed by '/' or '&' */ |
| 2194 | eof = read_viminfo_search_pattern(virp, forceit); |
| 2195 | break; |
| 2196 | case '$': |
| 2197 | eof = read_viminfo_sub_string(virp, forceit); |
| 2198 | break; |
| 2199 | case ':': |
| 2200 | case '?': |
| 2201 | case '=': |
| 2202 | case '@': |
| 2203 | #ifdef FEAT_CMDHIST |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 2204 | eof = read_viminfo_history(virp, writing); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2205 | #else |
| 2206 | eof = viminfo_readline(virp); |
| 2207 | #endif |
| 2208 | break; |
| 2209 | case '-': |
| 2210 | case '\'': |
| 2211 | eof = read_viminfo_filemark(virp, forceit); |
| 2212 | break; |
| 2213 | default: |
| 2214 | if (viminfo_error("E575: ", _("Illegal starting char"), |
| 2215 | virp->vir_line)) |
| 2216 | eof = TRUE; |
| 2217 | else |
| 2218 | eof = viminfo_readline(virp); |
| 2219 | break; |
| 2220 | } |
| 2221 | } |
| 2222 | |
| 2223 | #ifdef FEAT_CMDHIST |
| 2224 | /* Finish reading history items. */ |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 2225 | if (!writing) |
| 2226 | finish_viminfo_history(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2227 | #endif |
| 2228 | |
| 2229 | /* Change file names to buffer numbers for fmarks. */ |
| 2230 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 2231 | fmarks_check_names(buf); |
| 2232 | |
| 2233 | return eof; |
| 2234 | } |
| 2235 | |
| 2236 | /* |
| 2237 | * Compare the 'encoding' value in the viminfo file with the current value of |
| 2238 | * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for |
| 2239 | * conversion of text with iconv() in viminfo_readstring(). |
| 2240 | */ |
| 2241 | static int |
| 2242 | viminfo_encoding(virp) |
| 2243 | vir_T *virp; |
| 2244 | { |
| 2245 | #ifdef FEAT_MBYTE |
| 2246 | char_u *p; |
| 2247 | int i; |
| 2248 | |
| 2249 | if (get_viminfo_parameter('c') != 0) |
| 2250 | { |
| 2251 | p = vim_strchr(virp->vir_line, '='); |
| 2252 | if (p != NULL) |
| 2253 | { |
| 2254 | /* remove trailing newline */ |
| 2255 | ++p; |
| 2256 | for (i = 0; vim_isprintc(p[i]); ++i) |
| 2257 | ; |
| 2258 | p[i] = NUL; |
| 2259 | |
| 2260 | convert_setup(&virp->vir_conv, p, p_enc); |
| 2261 | } |
| 2262 | } |
| 2263 | #endif |
| 2264 | return viminfo_readline(virp); |
| 2265 | } |
| 2266 | |
| 2267 | /* |
| 2268 | * Read a line from the viminfo file. |
| 2269 | * Returns TRUE for end-of-file; |
| 2270 | */ |
| 2271 | int |
| 2272 | viminfo_readline(virp) |
| 2273 | vir_T *virp; |
| 2274 | { |
| 2275 | return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd); |
| 2276 | } |
| 2277 | |
| 2278 | /* |
| 2279 | * check string read from viminfo file |
| 2280 | * remove '\n' at the end of the line |
| 2281 | * - replace CTRL-V CTRL-V with CTRL-V |
| 2282 | * - replace CTRL-V 'n' with '\n' |
| 2283 | * |
| 2284 | * Check for a long line as written by viminfo_writestring(). |
| 2285 | * |
| 2286 | * Return the string in allocated memory (NULL when out of memory). |
| 2287 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2288 | char_u * |
| 2289 | viminfo_readstring(virp, off, convert) |
| 2290 | vir_T *virp; |
| 2291 | int off; /* offset for virp->vir_line */ |
Bram Moolenaar | 2c4278f | 2009-05-17 11:33:22 +0000 | [diff] [blame] | 2292 | int convert UNUSED; /* convert the string */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2293 | { |
| 2294 | char_u *retval; |
| 2295 | char_u *s, *d; |
| 2296 | long len; |
| 2297 | |
| 2298 | if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1])) |
| 2299 | { |
| 2300 | len = atol((char *)virp->vir_line + off + 1); |
| 2301 | retval = lalloc(len, TRUE); |
| 2302 | if (retval == NULL) |
| 2303 | { |
| 2304 | /* Line too long? File messed up? Skip next line. */ |
| 2305 | (void)vim_fgets(virp->vir_line, 10, virp->vir_fd); |
| 2306 | return NULL; |
| 2307 | } |
| 2308 | (void)vim_fgets(retval, (int)len, virp->vir_fd); |
| 2309 | s = retval + 1; /* Skip the leading '<' */ |
| 2310 | } |
| 2311 | else |
| 2312 | { |
| 2313 | retval = vim_strsave(virp->vir_line + off); |
| 2314 | if (retval == NULL) |
| 2315 | return NULL; |
| 2316 | s = retval; |
| 2317 | } |
| 2318 | |
| 2319 | /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */ |
| 2320 | d = retval; |
| 2321 | while (*s != NUL && *s != '\n') |
| 2322 | { |
| 2323 | if (s[0] == Ctrl_V && s[1] != NUL) |
| 2324 | { |
| 2325 | if (s[1] == 'n') |
| 2326 | *d++ = '\n'; |
| 2327 | else |
| 2328 | *d++ = Ctrl_V; |
| 2329 | s += 2; |
| 2330 | } |
| 2331 | else |
| 2332 | *d++ = *s++; |
| 2333 | } |
| 2334 | *d = NUL; |
| 2335 | |
| 2336 | #ifdef FEAT_MBYTE |
| 2337 | if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL) |
| 2338 | { |
| 2339 | d = string_convert(&virp->vir_conv, retval, NULL); |
| 2340 | if (d != NULL) |
| 2341 | { |
| 2342 | vim_free(retval); |
| 2343 | retval = d; |
| 2344 | } |
| 2345 | } |
| 2346 | #endif |
| 2347 | |
| 2348 | return retval; |
| 2349 | } |
| 2350 | |
| 2351 | /* |
| 2352 | * write string to viminfo file |
| 2353 | * - replace CTRL-V with CTRL-V CTRL-V |
| 2354 | * - replace '\n' with CTRL-V 'n' |
| 2355 | * - add a '\n' at the end |
| 2356 | * |
| 2357 | * For a long line: |
| 2358 | * - write " CTRL-V <length> \n " in first line |
| 2359 | * - write " < <string> \n " in second line |
| 2360 | */ |
| 2361 | void |
| 2362 | viminfo_writestring(fd, p) |
| 2363 | FILE *fd; |
| 2364 | char_u *p; |
| 2365 | { |
| 2366 | int c; |
| 2367 | char_u *s; |
| 2368 | int len = 0; |
| 2369 | |
| 2370 | for (s = p; *s != NUL; ++s) |
| 2371 | { |
| 2372 | if (*s == Ctrl_V || *s == '\n') |
| 2373 | ++len; |
| 2374 | ++len; |
| 2375 | } |
| 2376 | |
| 2377 | /* If the string will be too long, write its length and put it in the next |
| 2378 | * line. Take into account that some room is needed for what comes before |
| 2379 | * the string (e.g., variable name). Add something to the length for the |
| 2380 | * '<', NL and trailing NUL. */ |
| 2381 | if (len > LSIZE / 2) |
| 2382 | fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3); |
| 2383 | |
| 2384 | while ((c = *p++) != NUL) |
| 2385 | { |
| 2386 | if (c == Ctrl_V || c == '\n') |
| 2387 | { |
| 2388 | putc(Ctrl_V, fd); |
| 2389 | if (c == '\n') |
| 2390 | c = 'n'; |
| 2391 | } |
| 2392 | putc(c, fd); |
| 2393 | } |
| 2394 | putc('\n', fd); |
| 2395 | } |
| 2396 | #endif /* FEAT_VIMINFO */ |
| 2397 | |
| 2398 | /* |
| 2399 | * Implementation of ":fixdel", also used by get_stty(). |
| 2400 | * <BS> resulting <Del> |
| 2401 | * ^? ^H |
| 2402 | * not ^? ^? |
| 2403 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2404 | void |
| 2405 | do_fixdel(eap) |
Bram Moolenaar | 0c094b9 | 2009-05-14 20:20:33 +0000 | [diff] [blame] | 2406 | exarg_T *eap UNUSED; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2407 | { |
| 2408 | char_u *p; |
| 2409 | |
| 2410 | p = find_termcode((char_u *)"kb"); |
| 2411 | add_termcode((char_u *)"kD", p != NULL |
| 2412 | && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE); |
| 2413 | } |
| 2414 | |
| 2415 | void |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2416 | print_line_no_prefix(lnum, use_number, list) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2417 | linenr_T lnum; |
| 2418 | int use_number; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2419 | int list; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2420 | { |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 2421 | char_u numbuf[30]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2422 | |
| 2423 | if (curwin->w_p_nu || use_number) |
| 2424 | { |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 2425 | vim_snprintf((char *)numbuf, sizeof(numbuf), |
| 2426 | "%*ld ", number_width(curwin), (long)lnum); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2427 | msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */ |
| 2428 | } |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2429 | msg_prt_line(ml_get(lnum), list); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2430 | } |
| 2431 | |
| 2432 | /* |
| 2433 | * Print a text line. Also in silent mode ("ex -s"). |
| 2434 | */ |
| 2435 | void |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2436 | print_line(lnum, use_number, list) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2437 | linenr_T lnum; |
| 2438 | int use_number; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2439 | int list; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2440 | { |
| 2441 | int save_silent = silent_mode; |
| 2442 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2443 | msg_start(); |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2444 | silent_mode = FALSE; |
| 2445 | info_message = TRUE; /* use mch_msg(), not mch_errmsg() */ |
| 2446 | print_line_no_prefix(lnum, use_number, list); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2447 | if (save_silent) |
| 2448 | { |
| 2449 | msg_putchar('\n'); |
| 2450 | cursor_on(); /* msg_start() switches it off */ |
| 2451 | out_flush(); |
| 2452 | silent_mode = save_silent; |
| 2453 | } |
Bram Moolenaar | 65b9a6a | 2009-02-04 12:14:51 +0000 | [diff] [blame] | 2454 | info_message = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2455 | } |
| 2456 | |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2457 | int |
| 2458 | rename_buffer(new_fname) |
| 2459 | char_u *new_fname; |
| 2460 | { |
| 2461 | char_u *fname, *sfname, *xfname; |
Bram Moolenaar | 7e28384 | 2013-05-30 11:43:15 +0200 | [diff] [blame] | 2462 | buf_T *buf; |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2463 | |
Bram Moolenaar | 7e28384 | 2013-05-30 11:43:15 +0200 | [diff] [blame] | 2464 | #ifdef FEAT_AUTOCMD |
| 2465 | buf = curbuf; |
| 2466 | apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2467 | /* buffer changed, don't change name now */ |
| 2468 | if (buf != curbuf) |
| 2469 | return FAIL; |
| 2470 | # ifdef FEAT_EVAL |
| 2471 | if (aborting()) /* autocmds may abort script processing */ |
| 2472 | return FAIL; |
| 2473 | # endif |
| 2474 | #endif |
| 2475 | /* |
| 2476 | * The name of the current buffer will be changed. |
| 2477 | * A new (unlisted) buffer entry needs to be made to hold the old file |
| 2478 | * name, which will become the alternate file name. |
| 2479 | * But don't set the alternate file name if the buffer didn't have a |
| 2480 | * name. |
| 2481 | */ |
Bram Moolenaar | 7e28384 | 2013-05-30 11:43:15 +0200 | [diff] [blame] | 2482 | fname = curbuf->b_ffname; |
| 2483 | sfname = curbuf->b_sfname; |
| 2484 | xfname = curbuf->b_fname; |
| 2485 | curbuf->b_ffname = NULL; |
| 2486 | curbuf->b_sfname = NULL; |
| 2487 | if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL) |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2488 | { |
Bram Moolenaar | 7e28384 | 2013-05-30 11:43:15 +0200 | [diff] [blame] | 2489 | curbuf->b_ffname = fname; |
| 2490 | curbuf->b_sfname = sfname; |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2491 | return FAIL; |
| 2492 | } |
Bram Moolenaar | 7e28384 | 2013-05-30 11:43:15 +0200 | [diff] [blame] | 2493 | curbuf->b_flags |= BF_NOTEDITED; |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2494 | if (xfname != NULL && *xfname != NUL) |
| 2495 | { |
| 2496 | buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0); |
| 2497 | if (buf != NULL && !cmdmod.keepalt) |
| 2498 | curwin->w_alt_fnum = buf->b_fnum; |
| 2499 | } |
| 2500 | vim_free(fname); |
| 2501 | vim_free(sfname); |
| 2502 | #ifdef FEAT_AUTOCMD |
Bram Moolenaar | 7e28384 | 2013-05-30 11:43:15 +0200 | [diff] [blame] | 2503 | apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2504 | #endif |
| 2505 | /* Change directories when the 'acd' option is set. */ |
| 2506 | DO_AUTOCHDIR |
| 2507 | return OK; |
| 2508 | } |
| 2509 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2510 | /* |
| 2511 | * ":file[!] [fname]". |
| 2512 | */ |
| 2513 | void |
| 2514 | ex_file(eap) |
| 2515 | exarg_T *eap; |
| 2516 | { |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 2517 | /* ":0file" removes the file name. Check for illegal uses ":3file", |
| 2518 | * "0file name", etc. */ |
| 2519 | if (eap->addr_count > 0 |
| 2520 | && (*eap->arg != NUL |
| 2521 | || eap->line2 > 0 |
| 2522 | || eap->addr_count > 1)) |
| 2523 | { |
| 2524 | EMSG(_(e_invarg)); |
| 2525 | return; |
| 2526 | } |
| 2527 | |
| 2528 | if (*eap->arg != NUL || eap->addr_count == 1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2529 | { |
Bram Moolenaar | e9ba516 | 2013-05-29 22:02:22 +0200 | [diff] [blame] | 2530 | if (rename_buffer(eap->arg) == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2531 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2532 | } |
| 2533 | /* print full file name if :cd used */ |
| 2534 | fileinfo(FALSE, FALSE, eap->forceit); |
| 2535 | } |
| 2536 | |
| 2537 | /* |
| 2538 | * ":update". |
| 2539 | */ |
| 2540 | void |
| 2541 | ex_update(eap) |
| 2542 | exarg_T *eap; |
| 2543 | { |
| 2544 | if (curbufIsChanged()) |
| 2545 | (void)do_write(eap); |
| 2546 | } |
| 2547 | |
| 2548 | /* |
| 2549 | * ":write" and ":saveas". |
| 2550 | */ |
| 2551 | void |
| 2552 | ex_write(eap) |
| 2553 | exarg_T *eap; |
| 2554 | { |
| 2555 | if (eap->usefilter) /* input lines to shell command */ |
| 2556 | do_bang(1, eap, FALSE, TRUE, FALSE); |
| 2557 | else |
| 2558 | (void)do_write(eap); |
| 2559 | } |
| 2560 | |
| 2561 | /* |
| 2562 | * write current buffer to file 'eap->arg' |
| 2563 | * if 'eap->append' is TRUE, append to the file |
| 2564 | * |
| 2565 | * if *eap->arg == NUL write to current file |
| 2566 | * |
| 2567 | * return FAIL for failure, OK otherwise |
| 2568 | */ |
| 2569 | int |
| 2570 | do_write(eap) |
| 2571 | exarg_T *eap; |
| 2572 | { |
| 2573 | int other; |
| 2574 | char_u *fname = NULL; /* init to shut up gcc */ |
| 2575 | char_u *ffname; |
| 2576 | int retval = FAIL; |
| 2577 | char_u *free_fname = NULL; |
| 2578 | #ifdef FEAT_BROWSE |
| 2579 | char_u *browse_file = NULL; |
| 2580 | #endif |
| 2581 | buf_T *alt_buf = NULL; |
| 2582 | |
| 2583 | if (not_writing()) /* check 'write' option */ |
| 2584 | return FAIL; |
| 2585 | |
| 2586 | ffname = eap->arg; |
| 2587 | #ifdef FEAT_BROWSE |
| 2588 | if (cmdmod.browse) |
| 2589 | { |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 2590 | browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2591 | NULL, NULL, NULL, curbuf); |
| 2592 | if (browse_file == NULL) |
| 2593 | goto theend; |
| 2594 | ffname = browse_file; |
| 2595 | } |
| 2596 | #endif |
| 2597 | if (*ffname == NUL) |
| 2598 | { |
| 2599 | if (eap->cmdidx == CMD_saveas) |
| 2600 | { |
| 2601 | EMSG(_(e_argreq)); |
| 2602 | goto theend; |
| 2603 | } |
| 2604 | other = FALSE; |
| 2605 | } |
| 2606 | else |
| 2607 | { |
| 2608 | fname = ffname; |
| 2609 | free_fname = fix_fname(ffname); |
| 2610 | /* |
| 2611 | * When out-of-memory, keep unexpanded file name, because we MUST be |
| 2612 | * able to write the file in this situation. |
| 2613 | */ |
| 2614 | if (free_fname != NULL) |
| 2615 | ffname = free_fname; |
| 2616 | other = otherfile(ffname); |
| 2617 | } |
| 2618 | |
| 2619 | /* |
| 2620 | * If we have a new file, put its name in the list of alternate file names. |
| 2621 | */ |
| 2622 | if (other) |
| 2623 | { |
| 2624 | if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL |
| 2625 | || eap->cmdidx == CMD_saveas) |
| 2626 | alt_buf = setaltfname(ffname, fname, (linenr_T)1); |
| 2627 | else |
| 2628 | alt_buf = buflist_findname(ffname); |
| 2629 | if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL) |
| 2630 | { |
| 2631 | /* Overwriting a file that is loaded in another buffer is not a |
| 2632 | * good idea. */ |
Bram Moolenaar | 0e4d877 | 2005-06-07 21:12:49 +0000 | [diff] [blame] | 2633 | EMSG(_(e_bufloaded)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2634 | goto theend; |
| 2635 | } |
| 2636 | } |
| 2637 | |
| 2638 | /* |
| 2639 | * Writing to the current file is not allowed in readonly mode |
| 2640 | * and a file name is required. |
| 2641 | * "nofile" and "nowrite" buffers cannot be written implicitly either. |
| 2642 | */ |
| 2643 | if (!other && ( |
| 2644 | #ifdef FEAT_QUICKFIX |
| 2645 | bt_dontwrite_msg(curbuf) || |
| 2646 | #endif |
| 2647 | check_fname() == FAIL || check_readonly(&eap->forceit, curbuf))) |
| 2648 | goto theend; |
| 2649 | |
| 2650 | if (!other) |
| 2651 | { |
| 2652 | ffname = curbuf->b_ffname; |
| 2653 | fname = curbuf->b_fname; |
| 2654 | /* |
| 2655 | * Not writing the whole file is only allowed with '!'. |
| 2656 | */ |
| 2657 | if ( (eap->line1 != 1 |
| 2658 | || eap->line2 != curbuf->b_ml.ml_line_count) |
| 2659 | && !eap->forceit |
| 2660 | && !eap->append |
| 2661 | && !p_wa) |
| 2662 | { |
| 2663 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 2664 | if (p_confirm || cmdmod.confirm) |
| 2665 | { |
| 2666 | if (vim_dialog_yesno(VIM_QUESTION, NULL, |
| 2667 | (char_u *)_("Write partial file?"), 2) != VIM_YES) |
| 2668 | goto theend; |
| 2669 | eap->forceit = TRUE; |
| 2670 | } |
| 2671 | else |
| 2672 | #endif |
| 2673 | { |
| 2674 | EMSG(_("E140: Use ! to write partial buffer")); |
| 2675 | goto theend; |
| 2676 | } |
| 2677 | } |
| 2678 | } |
| 2679 | |
| 2680 | if (check_overwrite(eap, curbuf, fname, ffname, other) == OK) |
| 2681 | { |
| 2682 | if (eap->cmdidx == CMD_saveas && alt_buf != NULL) |
| 2683 | { |
| 2684 | #ifdef FEAT_AUTOCMD |
| 2685 | buf_T *was_curbuf = curbuf; |
| 2686 | |
| 2687 | apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); |
Bram Moolenaar | 269ec65 | 2004-07-29 08:43:53 +0000 | [diff] [blame] | 2688 | apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2689 | # ifdef FEAT_EVAL |
| 2690 | if (curbuf != was_curbuf || aborting()) |
| 2691 | # else |
| 2692 | if (curbuf != was_curbuf) |
| 2693 | # endif |
| 2694 | { |
| 2695 | /* buffer changed, don't change name now */ |
| 2696 | retval = FAIL; |
| 2697 | goto theend; |
| 2698 | } |
| 2699 | #endif |
| 2700 | /* Exchange the file names for the current and the alternate |
| 2701 | * buffer. This makes it look like we are now editing the buffer |
| 2702 | * under the new name. Must be done before buf_write(), because |
| 2703 | * if there is no file name and 'cpo' contains 'F', it will set |
| 2704 | * the file name. */ |
| 2705 | fname = alt_buf->b_fname; |
| 2706 | alt_buf->b_fname = curbuf->b_fname; |
| 2707 | curbuf->b_fname = fname; |
| 2708 | fname = alt_buf->b_ffname; |
| 2709 | alt_buf->b_ffname = curbuf->b_ffname; |
| 2710 | curbuf->b_ffname = fname; |
| 2711 | fname = alt_buf->b_sfname; |
| 2712 | alt_buf->b_sfname = curbuf->b_sfname; |
| 2713 | curbuf->b_sfname = fname; |
| 2714 | buf_name_changed(curbuf); |
| 2715 | #ifdef FEAT_AUTOCMD |
| 2716 | apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
Bram Moolenaar | 269ec65 | 2004-07-29 08:43:53 +0000 | [diff] [blame] | 2717 | apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2718 | if (!alt_buf->b_p_bl) |
| 2719 | { |
| 2720 | alt_buf->b_p_bl = TRUE; |
| 2721 | apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf); |
| 2722 | } |
| 2723 | # ifdef FEAT_EVAL |
| 2724 | if (curbuf != was_curbuf || aborting()) |
| 2725 | # else |
| 2726 | if (curbuf != was_curbuf) |
| 2727 | # endif |
| 2728 | { |
| 2729 | /* buffer changed, don't write the file */ |
| 2730 | retval = FAIL; |
| 2731 | goto theend; |
| 2732 | } |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2733 | |
| 2734 | /* If 'filetype' was empty try detecting it now. */ |
| 2735 | if (*curbuf->b_p_ft == NUL) |
| 2736 | { |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2737 | if (au_has_group((char_u *)"filetypedetect")) |
| 2738 | (void)do_doautocmd((char_u *)"filetypedetect BufRead", |
| 2739 | TRUE); |
Bram Moolenaar | a3227e2 | 2006-03-08 21:32:40 +0000 | [diff] [blame] | 2740 | do_modelines(0); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2741 | } |
Bram Moolenaar | f666f0e | 2010-11-24 17:59:32 +0100 | [diff] [blame] | 2742 | |
| 2743 | /* Autocommands may have changed buffer names, esp. when |
| 2744 | * 'autochdir' is set. */ |
| 2745 | fname = curbuf->b_sfname; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2746 | #endif |
| 2747 | } |
| 2748 | |
| 2749 | retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2, |
| 2750 | eap, eap->append, eap->forceit, TRUE, FALSE); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2751 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2752 | /* After ":saveas fname" reset 'readonly'. */ |
Bram Moolenaar | 498efdb | 2006-09-05 14:31:54 +0000 | [diff] [blame] | 2753 | if (eap->cmdidx == CMD_saveas) |
| 2754 | { |
| 2755 | if (retval == OK) |
Bram Moolenaar | 4352f13 | 2009-02-11 15:03:45 +0000 | [diff] [blame] | 2756 | { |
Bram Moolenaar | 498efdb | 2006-09-05 14:31:54 +0000 | [diff] [blame] | 2757 | curbuf->b_p_ro = FALSE; |
Bram Moolenaar | 4352f13 | 2009-02-11 15:03:45 +0000 | [diff] [blame] | 2758 | #ifdef FEAT_WINDOWS |
| 2759 | redraw_tabline = TRUE; |
| 2760 | #endif |
| 2761 | } |
Bram Moolenaar | 498efdb | 2006-09-05 14:31:54 +0000 | [diff] [blame] | 2762 | /* Change directories when the 'acd' option is set. */ |
| 2763 | DO_AUTOCHDIR |
| 2764 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2765 | } |
| 2766 | |
| 2767 | theend: |
| 2768 | #ifdef FEAT_BROWSE |
| 2769 | vim_free(browse_file); |
| 2770 | #endif |
| 2771 | vim_free(free_fname); |
| 2772 | return retval; |
| 2773 | } |
| 2774 | |
| 2775 | /* |
| 2776 | * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED, |
| 2777 | * BF_NEW or BF_READERR, check for overwriting current file. |
| 2778 | * May set eap->forceit if a dialog says it's OK to overwrite. |
| 2779 | * Return OK if it's OK, FAIL if it is not. |
| 2780 | */ |
Bram Moolenaar | 8218f60 | 2012-04-25 17:32:18 +0200 | [diff] [blame] | 2781 | int |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2782 | check_overwrite(eap, buf, fname, ffname, other) |
| 2783 | exarg_T *eap; |
| 2784 | buf_T *buf; |
| 2785 | char_u *fname; /* file name to be used (can differ from |
| 2786 | buf->ffname) */ |
| 2787 | char_u *ffname; /* full path version of fname */ |
| 2788 | int other; /* writing under other name */ |
| 2789 | { |
| 2790 | /* |
| 2791 | * write to other file or b_flags set or not writing the whole file: |
| 2792 | * overwriting only allowed with '!' |
| 2793 | */ |
| 2794 | if ( (other |
| 2795 | || (buf->b_flags & BF_NOTEDITED) |
| 2796 | || ((buf->b_flags & BF_NEW) |
| 2797 | && vim_strchr(p_cpo, CPO_OVERNEW) == NULL) |
| 2798 | || (buf->b_flags & BF_READERR)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2799 | && !p_wa |
Bram Moolenaar | 11717bb | 2007-12-08 21:21:18 +0000 | [diff] [blame] | 2800 | #ifdef FEAT_QUICKFIX |
| 2801 | && !bt_nofile(buf) |
| 2802 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2803 | && vim_fexists(ffname)) |
| 2804 | { |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2805 | if (!eap->forceit && !eap->append) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2806 | { |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2807 | #ifdef UNIX |
Bram Moolenaar | 0ac9379 | 2006-01-21 22:16:51 +0000 | [diff] [blame] | 2808 | /* with UNIX it is possible to open a directory */ |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2809 | if (mch_isdir(ffname)) |
| 2810 | { |
| 2811 | EMSG2(_(e_isadir2), ffname); |
| 2812 | return FAIL; |
| 2813 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2814 | #endif |
| 2815 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2816 | if (p_confirm || cmdmod.confirm) |
| 2817 | { |
Bram Moolenaar | d9462e3 | 2011-04-11 21:35:11 +0200 | [diff] [blame] | 2818 | char_u buff[DIALOG_MSG_SIZE]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2819 | |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2820 | dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname); |
| 2821 | if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES) |
| 2822 | return FAIL; |
| 2823 | eap->forceit = TRUE; |
| 2824 | } |
| 2825 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2826 | #endif |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2827 | { |
| 2828 | EMSG(_(e_exists)); |
| 2829 | return FAIL; |
| 2830 | } |
| 2831 | } |
| 2832 | |
| 2833 | /* For ":w! filename" check that no swap file exists for "filename". */ |
| 2834 | if (other && !emsg_silent) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2835 | { |
Bram Moolenaar | d9462e3 | 2011-04-11 21:35:11 +0200 | [diff] [blame] | 2836 | char_u *dir; |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2837 | char_u *p; |
| 2838 | int r; |
| 2839 | char_u *swapname; |
| 2840 | |
| 2841 | /* We only try the first entry in 'directory', without checking if |
| 2842 | * it's writable. If the "." directory is not writable the write |
| 2843 | * will probably fail anyway. |
| 2844 | * Use 'shortname' of the current buffer, since there is no buffer |
| 2845 | * for the written file. */ |
| 2846 | if (*p_dir == NUL) |
Bram Moolenaar | d9462e3 | 2011-04-11 21:35:11 +0200 | [diff] [blame] | 2847 | { |
| 2848 | dir = alloc(5); |
| 2849 | if (dir == NULL) |
| 2850 | return FAIL; |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2851 | STRCPY(dir, "."); |
Bram Moolenaar | d9462e3 | 2011-04-11 21:35:11 +0200 | [diff] [blame] | 2852 | } |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2853 | else |
| 2854 | { |
Bram Moolenaar | d9462e3 | 2011-04-11 21:35:11 +0200 | [diff] [blame] | 2855 | dir = alloc(MAXPATHL); |
| 2856 | if (dir == NULL) |
| 2857 | return FAIL; |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2858 | p = p_dir; |
| 2859 | copy_option_part(&p, dir, MAXPATHL, ","); |
| 2860 | } |
| 2861 | swapname = makeswapname(fname, ffname, curbuf, dir); |
Bram Moolenaar | d9462e3 | 2011-04-11 21:35:11 +0200 | [diff] [blame] | 2862 | vim_free(dir); |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2863 | r = vim_fexists(swapname); |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2864 | if (r) |
| 2865 | { |
| 2866 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 2867 | if (p_confirm || cmdmod.confirm) |
| 2868 | { |
Bram Moolenaar | d9462e3 | 2011-04-11 21:35:11 +0200 | [diff] [blame] | 2869 | char_u buff[DIALOG_MSG_SIZE]; |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2870 | |
| 2871 | dialog_msg(buff, |
| 2872 | _("Swap file \"%s\" exists, overwrite anyway?"), |
| 2873 | swapname); |
| 2874 | if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) |
| 2875 | != VIM_YES) |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2876 | { |
| 2877 | vim_free(swapname); |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2878 | return FAIL; |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2879 | } |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2880 | eap->forceit = TRUE; |
| 2881 | } |
| 2882 | else |
| 2883 | #endif |
| 2884 | { |
| 2885 | EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"), |
| 2886 | swapname); |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2887 | vim_free(swapname); |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2888 | return FAIL; |
| 2889 | } |
| 2890 | } |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2891 | vim_free(swapname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2892 | } |
| 2893 | } |
| 2894 | return OK; |
| 2895 | } |
| 2896 | |
| 2897 | /* |
| 2898 | * Handle ":wnext", ":wNext" and ":wprevious" commands. |
| 2899 | */ |
| 2900 | void |
| 2901 | ex_wnext(eap) |
| 2902 | exarg_T *eap; |
| 2903 | { |
| 2904 | int i; |
| 2905 | |
| 2906 | if (eap->cmd[1] == 'n') |
| 2907 | i = curwin->w_arg_idx + (int)eap->line2; |
| 2908 | else |
| 2909 | i = curwin->w_arg_idx - (int)eap->line2; |
| 2910 | eap->line1 = 1; |
| 2911 | eap->line2 = curbuf->b_ml.ml_line_count; |
| 2912 | if (do_write(eap) != FAIL) |
| 2913 | do_argfile(eap, i); |
| 2914 | } |
| 2915 | |
| 2916 | /* |
| 2917 | * ":wall", ":wqall" and ":xall": Write all changed files (and exit). |
| 2918 | */ |
| 2919 | void |
| 2920 | do_wqall(eap) |
| 2921 | exarg_T *eap; |
| 2922 | { |
| 2923 | buf_T *buf; |
| 2924 | int error = 0; |
| 2925 | int save_forceit = eap->forceit; |
| 2926 | |
| 2927 | if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall) |
| 2928 | exiting = TRUE; |
| 2929 | |
| 2930 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 2931 | { |
| 2932 | if (bufIsChanged(buf)) |
| 2933 | { |
| 2934 | /* |
| 2935 | * Check if there is a reason the buffer cannot be written: |
| 2936 | * 1. if the 'write' option is set |
| 2937 | * 2. if there is no file name (even after browsing) |
| 2938 | * 3. if the 'readonly' is set (even after a dialog) |
| 2939 | * 4. if overwriting is allowed (even after a dialog) |
| 2940 | */ |
| 2941 | if (not_writing()) |
| 2942 | { |
| 2943 | ++error; |
| 2944 | break; |
| 2945 | } |
| 2946 | #ifdef FEAT_BROWSE |
| 2947 | /* ":browse wall": ask for file name if there isn't one */ |
| 2948 | if (buf->b_ffname == NULL && cmdmod.browse) |
| 2949 | browse_save_fname(buf); |
| 2950 | #endif |
| 2951 | if (buf->b_ffname == NULL) |
| 2952 | { |
| 2953 | EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum); |
| 2954 | ++error; |
| 2955 | } |
| 2956 | else if (check_readonly(&eap->forceit, buf) |
| 2957 | || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname, |
| 2958 | FALSE) == FAIL) |
| 2959 | { |
| 2960 | ++error; |
| 2961 | } |
| 2962 | else |
| 2963 | { |
| 2964 | if (buf_write_all(buf, eap->forceit) == FAIL) |
| 2965 | ++error; |
| 2966 | #ifdef FEAT_AUTOCMD |
| 2967 | /* an autocommand may have deleted the buffer */ |
| 2968 | if (!buf_valid(buf)) |
| 2969 | buf = firstbuf; |
| 2970 | #endif |
| 2971 | } |
| 2972 | eap->forceit = save_forceit; /* check_overwrite() may set it */ |
| 2973 | } |
| 2974 | } |
| 2975 | if (exiting) |
| 2976 | { |
| 2977 | if (!error) |
| 2978 | getout(0); /* exit Vim */ |
| 2979 | not_exiting(); |
| 2980 | } |
| 2981 | } |
| 2982 | |
| 2983 | /* |
| 2984 | * Check the 'write' option. |
| 2985 | * Return TRUE and give a message when it's not st. |
| 2986 | */ |
| 2987 | int |
| 2988 | not_writing() |
| 2989 | { |
| 2990 | if (p_write) |
| 2991 | return FALSE; |
| 2992 | EMSG(_("E142: File not written: Writing is disabled by 'write' option")); |
| 2993 | return TRUE; |
| 2994 | } |
| 2995 | |
| 2996 | /* |
Bram Moolenaar | 5386a12 | 2007-06-28 20:02:32 +0000 | [diff] [blame] | 2997 | * Check if a buffer is read-only (either 'readonly' option is set or file is |
| 2998 | * read-only). Ask for overruling in a dialog. Return TRUE and give an error |
| 2999 | * message when the buffer is readonly. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3000 | */ |
| 3001 | static int |
| 3002 | check_readonly(forceit, buf) |
| 3003 | int *forceit; |
| 3004 | buf_T *buf; |
| 3005 | { |
Bram Moolenaar | 5386a12 | 2007-06-28 20:02:32 +0000 | [diff] [blame] | 3006 | struct stat st; |
| 3007 | |
| 3008 | /* Handle a file being readonly when the 'readonly' option is set or when |
| 3009 | * the file exists and permissions are read-only. |
| 3010 | * We will send 0777 to check_file_readonly(), as the "perm" variable is |
| 3011 | * important for device checks but not here. */ |
| 3012 | if (!*forceit && (buf->b_p_ro |
| 3013 | || (mch_stat((char *)buf->b_ffname, &st) >= 0 |
| 3014 | && check_file_readonly(buf->b_ffname, 0777)))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3015 | { |
| 3016 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 3017 | if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL) |
| 3018 | { |
Bram Moolenaar | d9462e3 | 2011-04-11 21:35:11 +0200 | [diff] [blame] | 3019 | char_u buff[DIALOG_MSG_SIZE]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3020 | |
Bram Moolenaar | 5386a12 | 2007-06-28 20:02:32 +0000 | [diff] [blame] | 3021 | if (buf->b_p_ro) |
| 3022 | dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"), |
| 3023 | buf->b_fname); |
| 3024 | else |
| 3025 | dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write it.\nDo you wish to try?"), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3026 | buf->b_fname); |
| 3027 | |
| 3028 | if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES) |
| 3029 | { |
| 3030 | /* Set forceit, to force the writing of a readonly file */ |
| 3031 | *forceit = TRUE; |
| 3032 | return FALSE; |
| 3033 | } |
| 3034 | else |
| 3035 | return TRUE; |
| 3036 | } |
| 3037 | else |
| 3038 | #endif |
Bram Moolenaar | 5386a12 | 2007-06-28 20:02:32 +0000 | [diff] [blame] | 3039 | if (buf->b_p_ro) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3040 | EMSG(_(e_readonly)); |
Bram Moolenaar | 5386a12 | 2007-06-28 20:02:32 +0000 | [diff] [blame] | 3041 | else |
| 3042 | EMSG2(_("E505: \"%s\" is read-only (add ! to override)"), |
| 3043 | buf->b_fname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3044 | return TRUE; |
| 3045 | } |
Bram Moolenaar | 5386a12 | 2007-06-28 20:02:32 +0000 | [diff] [blame] | 3046 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3047 | return FALSE; |
| 3048 | } |
| 3049 | |
| 3050 | /* |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 3051 | * Try to abandon current file and edit a new or existing file. |
| 3052 | * 'fnum' is the number of the file, if zero use ffname/sfname. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3053 | * |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 3054 | * Return 1 for "normal" error, 2 for "not written" error, 0 for success |
Bram Moolenaar | eb1b679 | 2007-08-21 13:29:28 +0000 | [diff] [blame] | 3055 | * -1 for successfully opening another file. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3056 | * 'lnum' is the line number for the cursor in the new file (if non-zero). |
| 3057 | */ |
| 3058 | int |
| 3059 | getfile(fnum, ffname, sfname, setpm, lnum, forceit) |
| 3060 | int fnum; |
| 3061 | char_u *ffname; |
| 3062 | char_u *sfname; |
| 3063 | int setpm; |
| 3064 | linenr_T lnum; |
| 3065 | int forceit; |
| 3066 | { |
| 3067 | int other; |
| 3068 | int retval; |
| 3069 | char_u *free_me = NULL; |
| 3070 | |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 3071 | if (text_locked()) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3072 | return 1; |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 3073 | #ifdef FEAT_AUTOCMD |
| 3074 | if (curbuf_locked()) |
| 3075 | return 1; |
| 3076 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3077 | |
| 3078 | if (fnum == 0) |
| 3079 | { |
| 3080 | /* make ffname full path, set sfname */ |
| 3081 | fname_expand(curbuf, &ffname, &sfname); |
| 3082 | other = otherfile(ffname); |
| 3083 | free_me = ffname; /* has been allocated, free() later */ |
| 3084 | } |
| 3085 | else |
| 3086 | other = (fnum != curbuf->b_fnum); |
| 3087 | |
| 3088 | if (other) |
| 3089 | ++no_wait_return; /* don't wait for autowrite message */ |
| 3090 | if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf) |
| 3091 | && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL) |
| 3092 | { |
| 3093 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 3094 | if (p_confirm && p_write) |
| 3095 | dialog_changed(curbuf, FALSE); |
| 3096 | if (curbufIsChanged()) |
| 3097 | #endif |
| 3098 | { |
| 3099 | if (other) |
| 3100 | --no_wait_return; |
| 3101 | EMSG(_(e_nowrtmsg)); |
| 3102 | retval = 2; /* file has been changed */ |
| 3103 | goto theend; |
| 3104 | } |
| 3105 | } |
| 3106 | if (other) |
| 3107 | --no_wait_return; |
| 3108 | if (setpm) |
| 3109 | setpcmark(); |
| 3110 | if (!other) |
| 3111 | { |
| 3112 | if (lnum != 0) |
| 3113 | curwin->w_cursor.lnum = lnum; |
| 3114 | check_cursor_lnum(); |
| 3115 | beginline(BL_SOL | BL_FIX); |
| 3116 | retval = 0; /* it's in the same file */ |
| 3117 | } |
| 3118 | else if (do_ecmd(fnum, ffname, sfname, NULL, lnum, |
Bram Moolenaar | 701f7af | 2008-11-15 13:12:07 +0000 | [diff] [blame] | 3119 | (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0), |
| 3120 | curwin) == OK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3121 | retval = -1; /* opened another file */ |
| 3122 | else |
| 3123 | retval = 1; /* error encountered */ |
| 3124 | |
| 3125 | theend: |
| 3126 | vim_free(free_me); |
| 3127 | return retval; |
| 3128 | } |
| 3129 | |
| 3130 | /* |
| 3131 | * start editing a new file |
| 3132 | * |
| 3133 | * fnum: file number; if zero use ffname/sfname |
| 3134 | * ffname: the file name |
| 3135 | * - full path if sfname used, |
| 3136 | * - any file name if sfname is NULL |
| 3137 | * - empty string to re-edit with the same file name (but may be |
| 3138 | * in a different directory) |
| 3139 | * - NULL to start an empty buffer |
| 3140 | * sfname: the short file name (or NULL) |
| 3141 | * eap: contains the command to be executed after loading the file and |
| 3142 | * forced 'ff' and 'fenc' |
| 3143 | * newlnum: if > 0: put cursor on this line number (if possible) |
| 3144 | * if ECMD_LASTL: use last position in loaded file |
| 3145 | * if ECMD_LAST: use last position in all files |
| 3146 | * if ECMD_ONE: use first line |
| 3147 | * flags: |
| 3148 | * ECMD_HIDE: if TRUE don't free the current buffer |
| 3149 | * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file |
| 3150 | * ECMD_OLDBUF: use existing buffer if it exists |
| 3151 | * ECMD_FORCEIT: ! used for Ex command |
| 3152 | * ECMD_ADDBUF: don't edit, just add to buffer list |
Bram Moolenaar | 701f7af | 2008-11-15 13:12:07 +0000 | [diff] [blame] | 3153 | * oldwin: Should be "curwin" when editing a new buffer in the current |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 3154 | * window, NULL when splitting the window first. When not NULL info |
| 3155 | * of the previous buffer for "oldwin" is stored. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3156 | * |
| 3157 | * return FAIL for failure, OK otherwise |
| 3158 | */ |
| 3159 | int |
Bram Moolenaar | 701f7af | 2008-11-15 13:12:07 +0000 | [diff] [blame] | 3160 | do_ecmd(fnum, ffname, sfname, eap, newlnum, flags, oldwin) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3161 | int fnum; |
| 3162 | char_u *ffname; |
| 3163 | char_u *sfname; |
| 3164 | exarg_T *eap; /* can be NULL! */ |
| 3165 | linenr_T newlnum; |
| 3166 | int flags; |
Bram Moolenaar | 701f7af | 2008-11-15 13:12:07 +0000 | [diff] [blame] | 3167 | win_T *oldwin; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3168 | { |
| 3169 | int other_file; /* TRUE if editing another file */ |
| 3170 | int oldbuf; /* TRUE if using existing buffer */ |
| 3171 | #ifdef FEAT_AUTOCMD |
| 3172 | int auto_buf = FALSE; /* TRUE if autocommands brought us |
| 3173 | into the buffer unexpectedly */ |
| 3174 | char_u *new_name = NULL; |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 3175 | int did_set_swapcommand = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3176 | #endif |
| 3177 | buf_T *buf; |
| 3178 | #if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 3179 | buf_T *old_curbuf = curbuf; |
| 3180 | #endif |
| 3181 | char_u *free_fname = NULL; |
| 3182 | #ifdef FEAT_BROWSE |
| 3183 | char_u *browse_file = NULL; |
| 3184 | #endif |
| 3185 | int retval = FAIL; |
| 3186 | long n; |
| 3187 | linenr_T lnum; |
| 3188 | linenr_T topline = 0; |
| 3189 | int newcol = -1; |
| 3190 | int solcol = -1; |
| 3191 | pos_T *pos; |
| 3192 | #ifdef FEAT_SUN_WORKSHOP |
| 3193 | char_u *cp; |
| 3194 | #endif |
| 3195 | char_u *command = NULL; |
Bram Moolenaar | 706cdeb | 2007-05-06 21:55:31 +0000 | [diff] [blame] | 3196 | #ifdef FEAT_SPELL |
| 3197 | int did_get_winopts = FALSE; |
| 3198 | #endif |
Bram Moolenaar | 59f931e | 2010-07-24 20:27:03 +0200 | [diff] [blame] | 3199 | int readfile_flags = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3200 | |
| 3201 | if (eap != NULL) |
| 3202 | command = eap->do_ecmd_cmd; |
| 3203 | |
| 3204 | if (fnum != 0) |
| 3205 | { |
| 3206 | if (fnum == curbuf->b_fnum) /* file is already being edited */ |
| 3207 | return OK; /* nothing to do */ |
| 3208 | other_file = TRUE; |
| 3209 | } |
| 3210 | else |
| 3211 | { |
| 3212 | #ifdef FEAT_BROWSE |
| 3213 | if (cmdmod.browse) |
| 3214 | { |
Bram Moolenaar | 15bfa09 | 2008-07-24 16:45:38 +0000 | [diff] [blame] | 3215 | # ifdef FEAT_AUTOCMD |
Bram Moolenaar | 0be6e64 | 2005-08-04 21:32:22 +0000 | [diff] [blame] | 3216 | if ( |
Bram Moolenaar | 15bfa09 | 2008-07-24 16:45:38 +0000 | [diff] [blame] | 3217 | # ifdef FEAT_GUI |
Bram Moolenaar | 0be6e64 | 2005-08-04 21:32:22 +0000 | [diff] [blame] | 3218 | !gui.in_use && |
Bram Moolenaar | 15bfa09 | 2008-07-24 16:45:38 +0000 | [diff] [blame] | 3219 | # endif |
Bram Moolenaar | 0be6e64 | 2005-08-04 21:32:22 +0000 | [diff] [blame] | 3220 | au_has_group((char_u *)"FileExplorer")) |
| 3221 | { |
| 3222 | /* No browsing supported but we do have the file explorer: |
| 3223 | * Edit the directory. */ |
| 3224 | if (ffname == NULL || !mch_isdir(ffname)) |
| 3225 | ffname = (char_u *)"."; |
| 3226 | } |
| 3227 | else |
Bram Moolenaar | 15bfa09 | 2008-07-24 16:45:38 +0000 | [diff] [blame] | 3228 | # endif |
Bram Moolenaar | 0be6e64 | 2005-08-04 21:32:22 +0000 | [diff] [blame] | 3229 | { |
| 3230 | browse_file = do_browse(0, (char_u *)_("Edit File"), ffname, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3231 | NULL, NULL, NULL, curbuf); |
Bram Moolenaar | 0be6e64 | 2005-08-04 21:32:22 +0000 | [diff] [blame] | 3232 | if (browse_file == NULL) |
| 3233 | goto theend; |
| 3234 | ffname = browse_file; |
| 3235 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3236 | } |
| 3237 | #endif |
| 3238 | /* if no short name given, use ffname for short name */ |
| 3239 | if (sfname == NULL) |
| 3240 | sfname = ffname; |
| 3241 | #ifdef USE_FNAME_CASE |
| 3242 | # ifdef USE_LONG_FNAME |
| 3243 | if (USE_LONG_FNAME) |
| 3244 | # endif |
Bram Moolenaar | 342337a | 2005-07-21 21:11:17 +0000 | [diff] [blame] | 3245 | if (sfname != NULL) |
| 3246 | fname_case(sfname, 0); /* set correct case for sfname */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3247 | #endif |
| 3248 | |
| 3249 | #ifdef FEAT_LISTCMDS |
| 3250 | if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL)) |
| 3251 | goto theend; |
| 3252 | #endif |
| 3253 | |
| 3254 | if (ffname == NULL) |
| 3255 | other_file = TRUE; |
| 3256 | /* there is no file name */ |
| 3257 | else if (*ffname == NUL && curbuf->b_ffname == NULL) |
| 3258 | other_file = FALSE; |
| 3259 | else |
| 3260 | { |
| 3261 | if (*ffname == NUL) /* re-edit with same file name */ |
| 3262 | { |
| 3263 | ffname = curbuf->b_ffname; |
| 3264 | sfname = curbuf->b_fname; |
| 3265 | } |
| 3266 | free_fname = fix_fname(ffname); /* may expand to full path name */ |
| 3267 | if (free_fname != NULL) |
| 3268 | ffname = free_fname; |
| 3269 | other_file = otherfile(ffname); |
| 3270 | #ifdef FEAT_SUN_WORKSHOP |
| 3271 | if (usingSunWorkShop && p_acd |
| 3272 | && (cp = vim_strrchr(sfname, '/')) != NULL) |
| 3273 | sfname = ++cp; |
| 3274 | #endif |
| 3275 | } |
| 3276 | } |
| 3277 | |
| 3278 | /* |
| 3279 | * if the file was changed we may not be allowed to abandon it |
| 3280 | * - if we are going to re-edit the same file |
| 3281 | * - or if we are the only window on this file and if ECMD_HIDE is FALSE |
| 3282 | */ |
| 3283 | if ( ((!other_file && !(flags & ECMD_OLDBUF)) |
| 3284 | || (curbuf->b_nwindows == 1 |
| 3285 | && !(flags & (ECMD_HIDE | ECMD_ADDBUF)))) |
Bram Moolenaar | 45d3b14 | 2013-11-09 03:31:51 +0100 | [diff] [blame] | 3286 | && check_changed(curbuf, (p_awa ? CCGD_AW : 0) |
| 3287 | | (other_file ? 0 : CCGD_MULTWIN) |
| 3288 | | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0) |
| 3289 | | (eap == NULL ? 0 : CCGD_EXCMD))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3290 | { |
| 3291 | if (fnum == 0 && other_file && ffname != NULL) |
| 3292 | (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum); |
| 3293 | goto theend; |
| 3294 | } |
| 3295 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3296 | /* |
| 3297 | * End Visual mode before switching to another buffer, so the text can be |
| 3298 | * copied into the GUI selection buffer. |
| 3299 | */ |
| 3300 | reset_VIsual(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3301 | |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 3302 | #ifdef FEAT_AUTOCMD |
| 3303 | if ((command != NULL || newlnum > (linenr_T)0) |
| 3304 | && *get_vim_var_str(VV_SWAPCOMMAND) == NUL) |
| 3305 | { |
| 3306 | int len; |
| 3307 | char_u *p; |
| 3308 | |
| 3309 | /* Set v:swapcommand for the SwapExists autocommands. */ |
| 3310 | if (command != NULL) |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 3311 | len = (int)STRLEN(command) + 3; |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 3312 | else |
| 3313 | len = 30; |
| 3314 | p = alloc((unsigned)len); |
| 3315 | if (p != NULL) |
| 3316 | { |
| 3317 | if (command != NULL) |
| 3318 | vim_snprintf((char *)p, len, ":%s\r", command); |
| 3319 | else |
| 3320 | vim_snprintf((char *)p, len, "%ldG", (long)newlnum); |
| 3321 | set_vim_var_string(VV_SWAPCOMMAND, p, -1); |
| 3322 | did_set_swapcommand = TRUE; |
| 3323 | vim_free(p); |
| 3324 | } |
| 3325 | } |
| 3326 | #endif |
| 3327 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3328 | /* |
| 3329 | * If we are starting to edit another file, open a (new) buffer. |
| 3330 | * Otherwise we re-use the current buffer. |
| 3331 | */ |
| 3332 | if (other_file) |
| 3333 | { |
| 3334 | #ifdef FEAT_LISTCMDS |
| 3335 | if (!(flags & ECMD_ADDBUF)) |
| 3336 | #endif |
| 3337 | { |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 3338 | if (!cmdmod.keepalt) |
| 3339 | curwin->w_alt_fnum = curbuf->b_fnum; |
Bram Moolenaar | 701f7af | 2008-11-15 13:12:07 +0000 | [diff] [blame] | 3340 | if (oldwin != NULL) |
| 3341 | buflist_altfpos(oldwin); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3342 | } |
| 3343 | |
| 3344 | if (fnum) |
| 3345 | buf = buflist_findnr(fnum); |
| 3346 | else |
| 3347 | { |
| 3348 | #ifdef FEAT_LISTCMDS |
| 3349 | if (flags & ECMD_ADDBUF) |
| 3350 | { |
| 3351 | linenr_T tlnum = 1L; |
| 3352 | |
| 3353 | if (command != NULL) |
| 3354 | { |
| 3355 | tlnum = atol((char *)command); |
| 3356 | if (tlnum <= 0) |
| 3357 | tlnum = 1L; |
| 3358 | } |
| 3359 | (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED); |
| 3360 | goto theend; |
| 3361 | } |
| 3362 | #endif |
| 3363 | buf = buflist_new(ffname, sfname, 0L, |
| 3364 | BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED)); |
Bram Moolenaar | 4c7ab1b | 2014-04-06 20:45:43 +0200 | [diff] [blame] | 3365 | #ifdef FEAT_AUTOCMD |
| 3366 | /* autocommands may change curwin and curbuf */ |
| 3367 | if (oldwin != NULL) |
| 3368 | oldwin = curwin; |
| 3369 | old_curbuf = curbuf; |
| 3370 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3371 | } |
| 3372 | if (buf == NULL) |
| 3373 | goto theend; |
| 3374 | if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */ |
| 3375 | { |
| 3376 | oldbuf = FALSE; |
| 3377 | buf->b_nwindows = 0; |
| 3378 | } |
| 3379 | else /* existing memfile */ |
| 3380 | { |
| 3381 | oldbuf = TRUE; |
| 3382 | (void)buf_check_timestamp(buf, FALSE); |
| 3383 | /* Check if autocommands made buffer invalid or changed the current |
| 3384 | * buffer. */ |
| 3385 | if (!buf_valid(buf) |
| 3386 | #ifdef FEAT_AUTOCMD |
| 3387 | || curbuf != old_curbuf |
| 3388 | #endif |
| 3389 | ) |
| 3390 | goto theend; |
| 3391 | #ifdef FEAT_EVAL |
| 3392 | if (aborting()) /* autocmds may abort script processing */ |
| 3393 | goto theend; |
| 3394 | #endif |
| 3395 | } |
| 3396 | |
| 3397 | /* May jump to last used line number for a loaded buffer or when asked |
| 3398 | * for explicitly */ |
| 3399 | if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST) |
| 3400 | { |
| 3401 | pos = buflist_findfpos(buf); |
| 3402 | newlnum = pos->lnum; |
| 3403 | solcol = pos->col; |
| 3404 | } |
| 3405 | |
| 3406 | /* |
| 3407 | * Make the (new) buffer the one used by the current window. |
| 3408 | * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE. |
| 3409 | * If the current buffer was empty and has no file name, curbuf |
| 3410 | * is returned by buflist_new(). |
| 3411 | */ |
| 3412 | if (buf != curbuf) |
| 3413 | { |
| 3414 | #ifdef FEAT_AUTOCMD |
| 3415 | /* |
| 3416 | * Be careful: The autocommands may delete any buffer and change |
| 3417 | * the current buffer. |
| 3418 | * - If the buffer we are going to edit is deleted, give up. |
| 3419 | * - If the current buffer is deleted, prefer to load the new |
| 3420 | * buffer when loading a buffer is required. This avoids |
| 3421 | * loading another buffer which then must be closed again. |
| 3422 | * - If we ended up in the new buffer already, need to skip a few |
| 3423 | * things, set auto_buf. |
| 3424 | */ |
| 3425 | if (buf->b_fname != NULL) |
| 3426 | new_name = vim_strsave(buf->b_fname); |
| 3427 | au_new_curbuf = buf; |
| 3428 | apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); |
| 3429 | if (!buf_valid(buf)) /* new buffer has been deleted */ |
| 3430 | { |
| 3431 | delbuf_msg(new_name); /* frees new_name */ |
| 3432 | goto theend; |
| 3433 | } |
| 3434 | # ifdef FEAT_EVAL |
| 3435 | if (aborting()) /* autocmds may abort script processing */ |
| 3436 | { |
| 3437 | vim_free(new_name); |
| 3438 | goto theend; |
| 3439 | } |
| 3440 | # endif |
| 3441 | if (buf == curbuf) /* already in new buffer */ |
| 3442 | auto_buf = TRUE; |
| 3443 | else |
| 3444 | { |
| 3445 | if (curbuf == old_curbuf) |
| 3446 | #endif |
| 3447 | buf_copy_options(buf, BCO_ENTER); |
| 3448 | |
| 3449 | /* close the link to the current buffer */ |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 3450 | u_sync(FALSE); |
Bram Moolenaar | 701f7af | 2008-11-15 13:12:07 +0000 | [diff] [blame] | 3451 | close_buffer(oldwin, curbuf, |
Bram Moolenaar | 42ec656 | 2012-02-22 14:58:37 +0100 | [diff] [blame] | 3452 | (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3453 | |
| 3454 | #ifdef FEAT_AUTOCMD |
Bram Moolenaar | fc57380 | 2011-12-30 15:01:59 +0100 | [diff] [blame] | 3455 | /* Autocommands may open a new window and leave oldwin open |
| 3456 | * which leads to crashes since the above call sets |
| 3457 | * oldwin->w_buffer to NULL. */ |
| 3458 | if (curwin != oldwin && oldwin != aucmd_win |
| 3459 | && win_valid(oldwin) && oldwin->w_buffer == NULL) |
| 3460 | win_close(oldwin, FALSE); |
| 3461 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3462 | # ifdef FEAT_EVAL |
| 3463 | if (aborting()) /* autocmds may abort script processing */ |
| 3464 | { |
| 3465 | vim_free(new_name); |
| 3466 | goto theend; |
| 3467 | } |
| 3468 | # endif |
| 3469 | /* Be careful again, like above. */ |
| 3470 | if (!buf_valid(buf)) /* new buffer has been deleted */ |
| 3471 | { |
| 3472 | delbuf_msg(new_name); /* frees new_name */ |
| 3473 | goto theend; |
| 3474 | } |
| 3475 | if (buf == curbuf) /* already in new buffer */ |
| 3476 | auto_buf = TRUE; |
| 3477 | else |
| 3478 | #endif |
| 3479 | { |
Bram Moolenaar | 860cae1 | 2010-06-05 23:22:07 +0200 | [diff] [blame] | 3480 | #ifdef FEAT_SYN_HL |
| 3481 | /* |
| 3482 | * <VN> We could instead free the synblock |
| 3483 | * and re-attach to buffer, perhaps. |
| 3484 | */ |
| 3485 | if (curwin->w_s == &(curwin->w_buffer->b_s)) |
Bram Moolenaar | 720ce53 | 2012-04-25 12:57:28 +0200 | [diff] [blame] | 3486 | curwin->w_s = &(buf->b_s); |
Bram Moolenaar | 860cae1 | 2010-06-05 23:22:07 +0200 | [diff] [blame] | 3487 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3488 | curwin->w_buffer = buf; |
| 3489 | curbuf = buf; |
| 3490 | ++curbuf->b_nwindows; |
Bram Moolenaar | ad875fb | 2013-07-24 15:02:03 +0200 | [diff] [blame] | 3491 | |
| 3492 | /* Set 'fileformat', 'binary' and 'fenc' when forced. */ |
| 3493 | if (!oldbuf && eap != NULL) |
| 3494 | { |
| 3495 | set_file_options(TRUE, eap); |
Bram Moolenaar | a2320f4 | 2013-07-28 15:16:19 +0200 | [diff] [blame] | 3496 | #ifdef FEAT_MBYTE |
Bram Moolenaar | ad875fb | 2013-07-24 15:02:03 +0200 | [diff] [blame] | 3497 | set_forced_fenc(eap); |
Bram Moolenaar | a2320f4 | 2013-07-28 15:16:19 +0200 | [diff] [blame] | 3498 | #endif |
Bram Moolenaar | ad875fb | 2013-07-24 15:02:03 +0200 | [diff] [blame] | 3499 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3500 | } |
| 3501 | |
| 3502 | /* May get the window options from the last time this buffer |
| 3503 | * was in this window (or another window). If not used |
| 3504 | * before, reset the local window options to the global |
| 3505 | * values. Also restores old folding stuff. */ |
Bram Moolenaar | b1269f1 | 2007-06-19 09:51:25 +0000 | [diff] [blame] | 3506 | get_winopts(curbuf); |
Bram Moolenaar | 706cdeb | 2007-05-06 21:55:31 +0000 | [diff] [blame] | 3507 | #ifdef FEAT_SPELL |
| 3508 | did_get_winopts = TRUE; |
| 3509 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3510 | |
| 3511 | #ifdef FEAT_AUTOCMD |
| 3512 | } |
| 3513 | vim_free(new_name); |
| 3514 | au_new_curbuf = NULL; |
| 3515 | #endif |
| 3516 | } |
| 3517 | else |
| 3518 | ++curbuf->b_nwindows; |
| 3519 | |
| 3520 | curwin->w_pcmark.lnum = 1; |
| 3521 | curwin->w_pcmark.col = 0; |
| 3522 | } |
| 3523 | else /* !other_file */ |
| 3524 | { |
| 3525 | if ( |
| 3526 | #ifdef FEAT_LISTCMDS |
| 3527 | (flags & ECMD_ADDBUF) || |
| 3528 | #endif |
| 3529 | check_fname() == FAIL) |
| 3530 | goto theend; |
| 3531 | oldbuf = (flags & ECMD_OLDBUF); |
| 3532 | } |
| 3533 | |
| 3534 | if ((flags & ECMD_SET_HELP) || keep_help_flag) |
| 3535 | { |
| 3536 | char_u *p; |
| 3537 | |
| 3538 | curbuf->b_help = TRUE; |
| 3539 | #ifdef FEAT_QUICKFIX |
| 3540 | set_string_option_direct((char_u *)"buftype", -1, |
Bram Moolenaar | 5e3cb7e | 2006-02-27 23:58:35 +0000 | [diff] [blame] | 3541 | (char_u *)"help", OPT_FREE|OPT_LOCAL, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3542 | #endif |
| 3543 | |
| 3544 | /* |
| 3545 | * Always set these options after jumping to a help tag, because the |
| 3546 | * user may have an autocommand that gets in the way. |
| 3547 | * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and |
| 3548 | * latin1 word characters (for translated help files). |
| 3549 | * Only set it when needed, buf_init_chartab() is some work. |
| 3550 | */ |
| 3551 | p = |
| 3552 | #ifdef EBCDIC |
| 3553 | (char_u *)"65-255,^*,^|,^\""; |
| 3554 | #else |
| 3555 | (char_u *)"!-~,^*,^|,^\",192-255"; |
| 3556 | #endif |
| 3557 | if (STRCMP(curbuf->b_p_isk, p) != 0) |
| 3558 | { |
| 3559 | set_string_option_direct((char_u *)"isk", -1, p, |
Bram Moolenaar | 5e3cb7e | 2006-02-27 23:58:35 +0000 | [diff] [blame] | 3560 | OPT_FREE|OPT_LOCAL, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3561 | check_buf_options(curbuf); |
| 3562 | (void)buf_init_chartab(curbuf, FALSE); |
| 3563 | } |
| 3564 | |
| 3565 | curbuf->b_p_ts = 8; /* 'tabstop' is 8 */ |
| 3566 | curwin->w_p_list = FALSE; /* no list mode */ |
| 3567 | |
| 3568 | curbuf->b_p_ma = FALSE; /* not modifiable */ |
| 3569 | curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */ |
| 3570 | curwin->w_p_nu = 0; /* no line numbers */ |
Bram Moolenaar | 6448667 | 2010-05-16 15:46:46 +0200 | [diff] [blame] | 3571 | curwin->w_p_rnu = 0; /* no relative line numbers */ |
Bram Moolenaar | 3368ea2 | 2010-09-21 16:56:35 +0200 | [diff] [blame] | 3572 | RESET_BINDING(curwin); /* no scroll or cursor binding */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3573 | #ifdef FEAT_ARABIC |
| 3574 | curwin->w_p_arab = FALSE; /* no arabic mode */ |
| 3575 | #endif |
| 3576 | #ifdef FEAT_RIGHTLEFT |
| 3577 | curwin->w_p_rl = FALSE; /* help window is left-to-right */ |
| 3578 | #endif |
| 3579 | #ifdef FEAT_FOLDING |
| 3580 | curwin->w_p_fen = FALSE; /* No folding in the help window */ |
| 3581 | #endif |
| 3582 | #ifdef FEAT_DIFF |
| 3583 | curwin->w_p_diff = FALSE; /* No 'diff' */ |
| 3584 | #endif |
Bram Moolenaar | a1956f6 | 2006-03-12 22:18:00 +0000 | [diff] [blame] | 3585 | #ifdef FEAT_SPELL |
Bram Moolenaar | 9a50b1b | 2005-06-27 22:48:21 +0000 | [diff] [blame] | 3586 | curwin->w_p_spell = FALSE; /* No spell checking */ |
| 3587 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3588 | |
| 3589 | #ifdef FEAT_AUTOCMD |
| 3590 | buf = curbuf; |
| 3591 | #endif |
| 3592 | set_buflisted(FALSE); |
| 3593 | } |
| 3594 | else |
| 3595 | { |
| 3596 | #ifdef FEAT_AUTOCMD |
| 3597 | buf = curbuf; |
| 3598 | #endif |
| 3599 | /* Don't make a buffer listed if it's a help buffer. Useful when |
| 3600 | * using CTRL-O to go back to a help file. */ |
| 3601 | if (!curbuf->b_help) |
| 3602 | set_buflisted(TRUE); |
| 3603 | } |
| 3604 | |
| 3605 | #ifdef FEAT_AUTOCMD |
| 3606 | /* If autocommands change buffers under our fingers, forget about |
| 3607 | * editing the file. */ |
| 3608 | if (buf != curbuf) |
| 3609 | goto theend; |
| 3610 | # ifdef FEAT_EVAL |
| 3611 | if (aborting()) /* autocmds may abort script processing */ |
| 3612 | goto theend; |
| 3613 | # endif |
| 3614 | |
| 3615 | /* Since we are starting to edit a file, consider the filetype to be |
| 3616 | * unset. Helps for when an autocommand changes files and expects syntax |
| 3617 | * highlighting to work in the other file. */ |
| 3618 | did_filetype = FALSE; |
| 3619 | #endif |
| 3620 | |
| 3621 | /* |
| 3622 | * other_file oldbuf |
| 3623 | * FALSE FALSE re-edit same file, buffer is re-used |
| 3624 | * FALSE TRUE re-edit same file, nothing changes |
| 3625 | * TRUE FALSE start editing new file, new buffer |
| 3626 | * TRUE TRUE start editing in existing buffer (nothing to do) |
| 3627 | */ |
| 3628 | if (!other_file && !oldbuf) /* re-use the buffer */ |
| 3629 | { |
| 3630 | set_last_cursor(curwin); /* may set b_last_cursor */ |
| 3631 | if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL) |
| 3632 | { |
| 3633 | newlnum = curwin->w_cursor.lnum; |
| 3634 | solcol = curwin->w_cursor.col; |
| 3635 | } |
| 3636 | #ifdef FEAT_AUTOCMD |
| 3637 | buf = curbuf; |
| 3638 | if (buf->b_fname != NULL) |
| 3639 | new_name = vim_strsave(buf->b_fname); |
| 3640 | else |
| 3641 | new_name = NULL; |
| 3642 | #endif |
Bram Moolenaar | 59f931e | 2010-07-24 20:27:03 +0200 | [diff] [blame] | 3643 | if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur) |
| 3644 | { |
| 3645 | /* Save all the text, so that the reload can be undone. |
| 3646 | * Sync first so that this is a separate undo-able action. */ |
| 3647 | u_sync(FALSE); |
| 3648 | if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE) |
| 3649 | == FAIL) |
| 3650 | goto theend; |
| 3651 | u_unchanged(curbuf); |
| 3652 | buf_freeall(curbuf, BFA_KEEP_UNDO); |
| 3653 | |
| 3654 | /* tell readfile() not to clear or reload undo info */ |
| 3655 | readfile_flags = READ_KEEP_UNDO; |
| 3656 | } |
| 3657 | else |
| 3658 | buf_freeall(curbuf, 0); /* free all things for buffer */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3659 | #ifdef FEAT_AUTOCMD |
| 3660 | /* If autocommands deleted the buffer we were going to re-edit, give |
| 3661 | * up and jump to the end. */ |
| 3662 | if (!buf_valid(buf)) |
| 3663 | { |
| 3664 | delbuf_msg(new_name); /* frees new_name */ |
| 3665 | goto theend; |
| 3666 | } |
| 3667 | vim_free(new_name); |
| 3668 | |
| 3669 | /* If autocommands change buffers under our fingers, forget about |
| 3670 | * re-editing the file. Should do the buf_clear_file(), but perhaps |
| 3671 | * the autocommands changed the buffer... */ |
| 3672 | if (buf != curbuf) |
| 3673 | goto theend; |
| 3674 | # ifdef FEAT_EVAL |
| 3675 | if (aborting()) /* autocmds may abort script processing */ |
| 3676 | goto theend; |
| 3677 | # endif |
| 3678 | #endif |
| 3679 | buf_clear_file(curbuf); |
| 3680 | curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */ |
| 3681 | curbuf->b_op_end.lnum = 0; |
| 3682 | } |
| 3683 | |
| 3684 | /* |
| 3685 | * If we get here we are sure to start editing |
| 3686 | */ |
| 3687 | /* don't redraw until the cursor is in the right line */ |
| 3688 | ++RedrawingDisabled; |
| 3689 | |
| 3690 | /* Assume success now */ |
| 3691 | retval = OK; |
| 3692 | |
| 3693 | /* |
| 3694 | * Reset cursor position, could be used by autocommands. |
| 3695 | */ |
| 3696 | check_cursor(); |
| 3697 | |
| 3698 | /* |
| 3699 | * Check if we are editing the w_arg_idx file in the argument list. |
| 3700 | */ |
| 3701 | check_arg_idx(curwin); |
| 3702 | |
| 3703 | #ifdef FEAT_AUTOCMD |
| 3704 | if (!auto_buf) |
| 3705 | #endif |
| 3706 | { |
| 3707 | /* |
| 3708 | * Set cursor and init window before reading the file and executing |
| 3709 | * autocommands. This allows for the autocommands to position the |
| 3710 | * cursor. |
| 3711 | */ |
Bram Moolenaar | faa959a | 2006-02-20 21:37:40 +0000 | [diff] [blame] | 3712 | curwin_init(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3713 | |
| 3714 | #ifdef FEAT_FOLDING |
Bram Moolenaar | eb1b679 | 2007-08-21 13:29:28 +0000 | [diff] [blame] | 3715 | /* It's possible that all lines in the buffer changed. Need to update |
| 3716 | * automatic folding for all windows where it's used. */ |
| 3717 | # ifdef FEAT_WINDOWS |
| 3718 | { |
| 3719 | win_T *win; |
| 3720 | tabpage_T *tp; |
| 3721 | |
| 3722 | FOR_ALL_TAB_WINDOWS(tp, win) |
| 3723 | if (win->w_buffer == curbuf) |
| 3724 | foldUpdateAll(win); |
| 3725 | } |
| 3726 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3727 | foldUpdateAll(curwin); |
Bram Moolenaar | eb1b679 | 2007-08-21 13:29:28 +0000 | [diff] [blame] | 3728 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3729 | #endif |
| 3730 | |
Bram Moolenaar | 498efdb | 2006-09-05 14:31:54 +0000 | [diff] [blame] | 3731 | /* Change directories when the 'acd' option is set. */ |
| 3732 | DO_AUTOCHDIR |
| 3733 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3734 | /* |
| 3735 | * Careful: open_buffer() and apply_autocmds() may change the current |
| 3736 | * buffer and window. |
| 3737 | */ |
| 3738 | lnum = curwin->w_cursor.lnum; |
| 3739 | topline = curwin->w_topline; |
| 3740 | if (!oldbuf) /* need to read the file */ |
| 3741 | { |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 3742 | #if defined(HAS_SWAP_EXISTS_ACTION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3743 | swap_exists_action = SEA_DIALOG; |
| 3744 | #endif |
| 3745 | curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */ |
| 3746 | |
| 3747 | /* |
| 3748 | * Open the buffer and read the file. |
| 3749 | */ |
| 3750 | #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
Bram Moolenaar | 59f931e | 2010-07-24 20:27:03 +0200 | [diff] [blame] | 3751 | if (should_abort(open_buffer(FALSE, eap, readfile_flags))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3752 | retval = FAIL; |
| 3753 | #else |
Bram Moolenaar | 59f931e | 2010-07-24 20:27:03 +0200 | [diff] [blame] | 3754 | (void)open_buffer(FALSE, eap, readfile_flags); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3755 | #endif |
| 3756 | |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 3757 | #if defined(HAS_SWAP_EXISTS_ACTION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3758 | if (swap_exists_action == SEA_QUIT) |
| 3759 | retval = FAIL; |
| 3760 | handle_swap_exists(old_curbuf); |
| 3761 | #endif |
| 3762 | } |
| 3763 | #ifdef FEAT_AUTOCMD |
| 3764 | else |
| 3765 | { |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 3766 | /* Read the modelines, but only to set window-local options. Any |
| 3767 | * buffer-local options have already been set and may have been |
| 3768 | * changed by the user. */ |
Bram Moolenaar | a3227e2 | 2006-03-08 21:32:40 +0000 | [diff] [blame] | 3769 | do_modelines(OPT_WINONLY); |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 3770 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3771 | apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, |
| 3772 | &retval); |
| 3773 | apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf, |
| 3774 | &retval); |
| 3775 | } |
| 3776 | check_arg_idx(curwin); |
| 3777 | #endif |
| 3778 | |
| 3779 | /* |
| 3780 | * If autocommands change the cursor position or topline, we should |
| 3781 | * keep it. |
| 3782 | */ |
| 3783 | if (curwin->w_cursor.lnum != lnum) |
| 3784 | { |
| 3785 | newlnum = curwin->w_cursor.lnum; |
| 3786 | newcol = curwin->w_cursor.col; |
| 3787 | } |
| 3788 | if (curwin->w_topline == topline) |
| 3789 | topline = 0; |
| 3790 | |
| 3791 | /* Even when cursor didn't move we need to recompute topline. */ |
| 3792 | changed_line_abv_curs(); |
| 3793 | |
| 3794 | #ifdef FEAT_TITLE |
| 3795 | maketitle(); |
| 3796 | #endif |
| 3797 | } |
| 3798 | |
| 3799 | #ifdef FEAT_DIFF |
| 3800 | /* Tell the diff stuff that this buffer is new and/or needs updating. |
| 3801 | * Also needed when re-editing the same buffer, because unloading will |
| 3802 | * have removed it as a diff buffer. */ |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 3803 | if (curwin->w_p_diff) |
| 3804 | { |
| 3805 | diff_buf_add(curbuf); |
| 3806 | diff_invalidate(curbuf); |
| 3807 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3808 | #endif |
| 3809 | |
Bram Moolenaar | 706cdeb | 2007-05-06 21:55:31 +0000 | [diff] [blame] | 3810 | #ifdef FEAT_SPELL |
| 3811 | /* If the window options were changed may need to set the spell language. |
| 3812 | * Can only do this after the buffer has been properly setup. */ |
Bram Moolenaar | 860cae1 | 2010-06-05 23:22:07 +0200 | [diff] [blame] | 3813 | if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL) |
| 3814 | (void)did_set_spelllang(curwin); |
Bram Moolenaar | 706cdeb | 2007-05-06 21:55:31 +0000 | [diff] [blame] | 3815 | #endif |
| 3816 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3817 | if (command == NULL) |
| 3818 | { |
| 3819 | if (newcol >= 0) /* position set by autocommands */ |
| 3820 | { |
| 3821 | curwin->w_cursor.lnum = newlnum; |
| 3822 | curwin->w_cursor.col = newcol; |
| 3823 | check_cursor(); |
| 3824 | } |
| 3825 | else if (newlnum > 0) /* line number from caller or old position */ |
| 3826 | { |
| 3827 | curwin->w_cursor.lnum = newlnum; |
| 3828 | check_cursor_lnum(); |
| 3829 | if (solcol >= 0 && !p_sol) |
| 3830 | { |
| 3831 | /* 'sol' is off: Use last known column. */ |
| 3832 | curwin->w_cursor.col = solcol; |
| 3833 | check_cursor_col(); |
| 3834 | #ifdef FEAT_VIRTUALEDIT |
| 3835 | curwin->w_cursor.coladd = 0; |
| 3836 | #endif |
| 3837 | curwin->w_set_curswant = TRUE; |
| 3838 | } |
| 3839 | else |
| 3840 | beginline(BL_SOL | BL_FIX); |
| 3841 | } |
| 3842 | else /* no line number, go to last line in Ex mode */ |
| 3843 | { |
| 3844 | if (exmode_active) |
| 3845 | curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; |
| 3846 | beginline(BL_WHITE | BL_FIX); |
| 3847 | } |
| 3848 | } |
| 3849 | |
| 3850 | #ifdef FEAT_WINDOWS |
| 3851 | /* Check if cursors in other windows on the same buffer are still valid */ |
| 3852 | check_lnums(FALSE); |
| 3853 | #endif |
| 3854 | |
| 3855 | /* |
| 3856 | * Did not read the file, need to show some info about the file. |
| 3857 | * Do this after setting the cursor. |
| 3858 | */ |
| 3859 | if (oldbuf |
| 3860 | #ifdef FEAT_AUTOCMD |
| 3861 | && !auto_buf |
| 3862 | #endif |
| 3863 | ) |
| 3864 | { |
| 3865 | int msg_scroll_save = msg_scroll; |
| 3866 | |
| 3867 | /* Obey the 'O' flag in 'cpoptions': overwrite any previous file |
| 3868 | * message. */ |
| 3869 | if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0) |
| 3870 | msg_scroll = FALSE; |
| 3871 | if (!msg_scroll) /* wait a bit when overwriting an error msg */ |
| 3872 | check_for_delay(FALSE); |
| 3873 | msg_start(); |
| 3874 | msg_scroll = msg_scroll_save; |
| 3875 | msg_scrolled_ign = TRUE; |
| 3876 | |
| 3877 | fileinfo(FALSE, TRUE, FALSE); |
| 3878 | |
| 3879 | msg_scrolled_ign = FALSE; |
| 3880 | } |
| 3881 | |
| 3882 | if (command != NULL) |
| 3883 | do_cmdline(command, NULL, NULL, DOCMD_VERBOSE); |
| 3884 | |
| 3885 | #ifdef FEAT_KEYMAP |
| 3886 | if (curbuf->b_kmap_state & KEYMAP_INIT) |
Bram Moolenaar | 0ab2a88 | 2009-05-13 10:51:08 +0000 | [diff] [blame] | 3887 | (void)keymap_init(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3888 | #endif |
| 3889 | |
| 3890 | --RedrawingDisabled; |
| 3891 | if (!skip_redraw) |
| 3892 | { |
| 3893 | n = p_so; |
| 3894 | if (topline == 0 && command == NULL) |
| 3895 | p_so = 999; /* force cursor halfway the window */ |
| 3896 | update_topline(); |
| 3897 | #ifdef FEAT_SCROLLBIND |
| 3898 | curwin->w_scbind_pos = curwin->w_topline; |
| 3899 | #endif |
| 3900 | p_so = n; |
| 3901 | redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */ |
| 3902 | } |
| 3903 | |
| 3904 | if (p_im) |
| 3905 | need_start_insertmode = TRUE; |
| 3906 | |
Bram Moolenaar | 498efdb | 2006-09-05 14:31:54 +0000 | [diff] [blame] | 3907 | /* Change directories when the 'acd' option is set. */ |
| 3908 | DO_AUTOCHDIR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3909 | |
Bram Moolenaar | 7b89edc | 2006-04-06 20:21:51 +0000 | [diff] [blame] | 3910 | #if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) |
Bram Moolenaar | 67c5384 | 2010-05-22 18:28:27 +0200 | [diff] [blame] | 3911 | if (curbuf->b_ffname != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3912 | { |
| 3913 | # ifdef FEAT_SUN_WORKSHOP |
Bram Moolenaar | 67c5384 | 2010-05-22 18:28:27 +0200 | [diff] [blame] | 3914 | if (gui.in_use && usingSunWorkShop) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3915 | workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro); |
| 3916 | # endif |
| 3917 | # ifdef FEAT_NETBEANS_INTG |
Bram Moolenaar | b26e632 | 2010-05-22 21:34:09 +0200 | [diff] [blame] | 3918 | if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP) |
Bram Moolenaar | 35a9aaa | 2004-10-24 19:23:07 +0000 | [diff] [blame] | 3919 | netbeans_file_opened(curbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3920 | # endif |
| 3921 | } |
| 3922 | #endif |
| 3923 | |
| 3924 | theend: |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 3925 | #ifdef FEAT_AUTOCMD |
| 3926 | if (did_set_swapcommand) |
| 3927 | set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); |
| 3928 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3929 | #ifdef FEAT_BROWSE |
| 3930 | vim_free(browse_file); |
| 3931 | #endif |
| 3932 | vim_free(free_fname); |
| 3933 | return retval; |
| 3934 | } |
| 3935 | |
| 3936 | #ifdef FEAT_AUTOCMD |
| 3937 | static void |
| 3938 | delbuf_msg(name) |
| 3939 | char_u *name; |
| 3940 | { |
| 3941 | EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"), |
| 3942 | name == NULL ? (char_u *)"" : name); |
| 3943 | vim_free(name); |
| 3944 | au_new_curbuf = NULL; |
| 3945 | } |
| 3946 | #endif |
| 3947 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3948 | static int append_indent = 0; /* autoindent for first line */ |
| 3949 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3950 | /* |
| 3951 | * ":insert" and ":append", also used by ":change" |
| 3952 | */ |
| 3953 | void |
| 3954 | ex_append(eap) |
| 3955 | exarg_T *eap; |
| 3956 | { |
| 3957 | char_u *theline; |
| 3958 | int did_undo = FALSE; |
| 3959 | linenr_T lnum = eap->line2; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3960 | int indent = 0; |
| 3961 | char_u *p; |
| 3962 | int vcol; |
| 3963 | int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3964 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3965 | /* the ! flag toggles autoindent */ |
| 3966 | if (eap->forceit) |
| 3967 | curbuf->b_p_ai = !curbuf->b_p_ai; |
| 3968 | |
| 3969 | /* First autoindent comes from the line we start on */ |
| 3970 | if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0) |
| 3971 | append_indent = get_indent_lnum(lnum); |
| 3972 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3973 | if (eap->cmdidx != CMD_append) |
| 3974 | --lnum; |
| 3975 | |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3976 | /* when the buffer is empty append to line 0 and delete the dummy line */ |
| 3977 | if (empty && lnum == 1) |
| 3978 | lnum = 0; |
| 3979 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3980 | State = INSERT; /* behave like in Insert mode */ |
| 3981 | if (curbuf->b_p_iminsert == B_IMODE_LMAP) |
| 3982 | State |= LANGMAP; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3983 | |
Bram Moolenaar | d8e9bb2 | 2005-07-09 21:14:46 +0000 | [diff] [blame] | 3984 | for (;;) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3985 | { |
| 3986 | msg_scroll = TRUE; |
| 3987 | need_wait_return = FALSE; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3988 | if (curbuf->b_p_ai) |
| 3989 | { |
| 3990 | if (append_indent >= 0) |
| 3991 | { |
| 3992 | indent = append_indent; |
| 3993 | append_indent = -1; |
| 3994 | } |
| 3995 | else if (lnum > 0) |
| 3996 | indent = get_indent_lnum(lnum); |
| 3997 | } |
| 3998 | ex_keep_indent = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3999 | if (eap->getline == NULL) |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4000 | { |
| 4001 | /* No getline() function, use the lines that follow. This ends |
| 4002 | * when there is no more. */ |
| 4003 | if (eap->nextcmd == NULL || *eap->nextcmd == NUL) |
| 4004 | break; |
| 4005 | p = vim_strchr(eap->nextcmd, NL); |
| 4006 | if (p == NULL) |
| 4007 | p = eap->nextcmd + STRLEN(eap->nextcmd); |
| 4008 | theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd)); |
| 4009 | if (*p != NUL) |
| 4010 | ++p; |
| 4011 | eap->nextcmd = p; |
| 4012 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4013 | else |
Bram Moolenaar | 26f08b0 | 2014-08-29 09:02:27 +0200 | [diff] [blame] | 4014 | { |
| 4015 | int save_State = State; |
| 4016 | |
| 4017 | /* Set State to avoid the cursor shape to be set to INSERT mode |
| 4018 | * when getline() returns. */ |
| 4019 | State = CMDLINE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4020 | theline = eap->getline( |
| 4021 | #ifdef FEAT_EVAL |
Bram Moolenaar | 3d60ec2 | 2005-01-05 22:19:46 +0000 | [diff] [blame] | 4022 | eap->cstack->cs_looplevel > 0 ? -1 : |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4023 | #endif |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4024 | NUL, eap->cookie, indent); |
Bram Moolenaar | 26f08b0 | 2014-08-29 09:02:27 +0200 | [diff] [blame] | 4025 | State = save_State; |
| 4026 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4027 | lines_left = Rows - 1; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4028 | if (theline == NULL) |
| 4029 | break; |
| 4030 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4031 | /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */ |
| 4032 | if (ex_keep_indent) |
| 4033 | append_indent = indent; |
| 4034 | |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4035 | /* Look for the "." after automatic indent. */ |
| 4036 | vcol = 0; |
| 4037 | for (p = theline; indent > vcol; ++p) |
| 4038 | { |
| 4039 | if (*p == ' ') |
| 4040 | ++vcol; |
| 4041 | else if (*p == TAB) |
| 4042 | vcol += 8 - vcol % 8; |
| 4043 | else |
| 4044 | break; |
| 4045 | } |
| 4046 | if ((p[0] == '.' && p[1] == NUL) |
Bram Moolenaar | eaa48e7 | 2005-06-08 22:07:37 +0000 | [diff] [blame] | 4047 | || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0)) |
| 4048 | == FAIL)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4049 | { |
| 4050 | vim_free(theline); |
| 4051 | break; |
| 4052 | } |
| 4053 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4054 | /* don't use autoindent if nothing was typed. */ |
| 4055 | if (p[0] == NUL) |
| 4056 | theline[0] = NUL; |
| 4057 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4058 | did_undo = TRUE; |
| 4059 | ml_append(lnum, theline, (colnr_T)0, FALSE); |
| 4060 | appended_lines_mark(lnum, 1L); |
| 4061 | |
| 4062 | vim_free(theline); |
| 4063 | ++lnum; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4064 | |
| 4065 | if (empty) |
| 4066 | { |
| 4067 | ml_delete(2L, FALSE); |
| 4068 | empty = FALSE; |
| 4069 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4070 | } |
| 4071 | State = NORMAL; |
| 4072 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4073 | if (eap->forceit) |
| 4074 | curbuf->b_p_ai = !curbuf->b_p_ai; |
| 4075 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4076 | /* "start" is set to eap->line2+1 unless that position is invalid (when |
Bram Moolenaar | 4566751 | 2007-05-10 19:24:43 +0000 | [diff] [blame] | 4077 | * eap->line2 pointed to the end of the buffer and nothing was appended) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4078 | * "end" is set to lnum when something has been appended, otherwise |
| 4079 | * it is the same than "start" -- Acevedo */ |
| 4080 | curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ? |
| 4081 | eap->line2 + 1 : curbuf->b_ml.ml_line_count; |
| 4082 | if (eap->cmdidx != CMD_append) |
| 4083 | --curbuf->b_op_start.lnum; |
| 4084 | curbuf->b_op_end.lnum = (eap->line2 < lnum) |
| 4085 | ? lnum : curbuf->b_op_start.lnum; |
| 4086 | curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
| 4087 | curwin->w_cursor.lnum = lnum; |
| 4088 | check_cursor_lnum(); |
| 4089 | beginline(BL_SOL | BL_FIX); |
| 4090 | |
| 4091 | need_wait_return = FALSE; /* don't use wait_return() now */ |
| 4092 | ex_no_reprint = TRUE; |
| 4093 | } |
| 4094 | |
| 4095 | /* |
| 4096 | * ":change" |
| 4097 | */ |
| 4098 | void |
| 4099 | ex_change(eap) |
| 4100 | exarg_T *eap; |
| 4101 | { |
| 4102 | linenr_T lnum; |
| 4103 | |
| 4104 | if (eap->line2 >= eap->line1 |
| 4105 | && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL) |
| 4106 | return; |
| 4107 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4108 | /* the ! flag toggles autoindent */ |
| 4109 | if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai) |
| 4110 | append_indent = get_indent_lnum(eap->line1); |
| 4111 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4112 | for (lnum = eap->line2; lnum >= eap->line1; --lnum) |
| 4113 | { |
| 4114 | if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */ |
| 4115 | break; |
| 4116 | ml_delete(eap->line1, FALSE); |
| 4117 | } |
Bram Moolenaar | cdcaa58 | 2009-07-09 18:06:49 +0000 | [diff] [blame] | 4118 | |
| 4119 | /* make sure the cursor is not beyond the end of the file now */ |
| 4120 | check_cursor_lnum(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4121 | deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum)); |
| 4122 | |
| 4123 | /* ":append" on the line above the deleted lines. */ |
| 4124 | eap->line2 = eap->line1; |
| 4125 | ex_append(eap); |
| 4126 | } |
| 4127 | |
| 4128 | void |
| 4129 | ex_z(eap) |
| 4130 | exarg_T *eap; |
| 4131 | { |
| 4132 | char_u *x; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4133 | int bigness; |
| 4134 | char_u *kind; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4135 | int minus = 0; |
| 4136 | linenr_T start, end, curs, i; |
| 4137 | int j; |
| 4138 | linenr_T lnum = eap->line2; |
| 4139 | |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4140 | /* Vi compatible: ":z!" uses display height, without a count uses |
| 4141 | * 'scroll' */ |
| 4142 | if (eap->forceit) |
| 4143 | bigness = curwin->w_height; |
Bram Moolenaar | 78a1531 | 2009-05-15 19:33:18 +0000 | [diff] [blame] | 4144 | #ifdef FEAT_WINDOWS |
Bram Moolenaar | 631abc3 | 2014-02-22 22:27:47 +0100 | [diff] [blame] | 4145 | else if (firstwin != lastwin) |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4146 | bigness = curwin->w_height - 3; |
Bram Moolenaar | 78a1531 | 2009-05-15 19:33:18 +0000 | [diff] [blame] | 4147 | #endif |
Bram Moolenaar | 631abc3 | 2014-02-22 22:27:47 +0100 | [diff] [blame] | 4148 | else |
| 4149 | bigness = curwin->w_p_scr * 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4150 | if (bigness < 1) |
| 4151 | bigness = 1; |
| 4152 | |
| 4153 | x = eap->arg; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4154 | kind = x; |
| 4155 | if (*kind == '-' || *kind == '+' || *kind == '=' |
| 4156 | || *kind == '^' || *kind == '.') |
| 4157 | ++x; |
| 4158 | while (*x == '-' || *x == '+') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4159 | ++x; |
| 4160 | |
| 4161 | if (*x != 0) |
| 4162 | { |
| 4163 | if (!VIM_ISDIGIT(*x)) |
| 4164 | { |
| 4165 | EMSG(_("E144: non-numeric argument to :z")); |
| 4166 | return; |
| 4167 | } |
| 4168 | else |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4169 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4170 | bigness = atoi((char *)x); |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4171 | p_window = bigness; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4172 | if (*kind == '=') |
| 4173 | bigness += 2; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4174 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4175 | } |
| 4176 | |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4177 | /* the number of '-' and '+' multiplies the distance */ |
| 4178 | if (*kind == '-' || *kind == '+') |
| 4179 | for (x = kind + 1; *x == *kind; ++x) |
| 4180 | ; |
| 4181 | |
| 4182 | switch (*kind) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4183 | { |
| 4184 | case '-': |
Bram Moolenaar | d9758e3 | 2011-06-12 22:03:23 +0200 | [diff] [blame] | 4185 | start = lnum - bigness * (linenr_T)(x - kind) + 1; |
| 4186 | end = start + bigness - 1; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4187 | curs = end; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4188 | break; |
| 4189 | |
| 4190 | case '=': |
Bram Moolenaar | 2a8d1f8 | 2005-02-05 21:43:56 +0000 | [diff] [blame] | 4191 | start = lnum - (bigness + 1) / 2 + 1; |
| 4192 | end = lnum + (bigness + 1) / 2 - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4193 | curs = lnum; |
| 4194 | minus = 1; |
| 4195 | break; |
| 4196 | |
| 4197 | case '^': |
| 4198 | start = lnum - bigness * 2; |
| 4199 | end = lnum - bigness; |
| 4200 | curs = lnum - bigness; |
| 4201 | break; |
| 4202 | |
| 4203 | case '.': |
Bram Moolenaar | 2a8d1f8 | 2005-02-05 21:43:56 +0000 | [diff] [blame] | 4204 | start = lnum - (bigness + 1) / 2 + 1; |
| 4205 | end = lnum + (bigness + 1) / 2 - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4206 | curs = end; |
| 4207 | break; |
| 4208 | |
| 4209 | default: /* '+' */ |
| 4210 | start = lnum; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4211 | if (*kind == '+') |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 4212 | start += bigness * (linenr_T)(x - kind - 1) + 1; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4213 | else if (eap->addr_count == 0) |
| 4214 | ++start; |
| 4215 | end = start + bigness - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4216 | curs = end; |
| 4217 | break; |
| 4218 | } |
| 4219 | |
| 4220 | if (start < 1) |
| 4221 | start = 1; |
| 4222 | |
| 4223 | if (end > curbuf->b_ml.ml_line_count) |
| 4224 | end = curbuf->b_ml.ml_line_count; |
| 4225 | |
| 4226 | if (curs > curbuf->b_ml.ml_line_count) |
| 4227 | curs = curbuf->b_ml.ml_line_count; |
| 4228 | |
| 4229 | for (i = start; i <= end; i++) |
| 4230 | { |
| 4231 | if (minus && i == lnum) |
| 4232 | { |
| 4233 | msg_putchar('\n'); |
| 4234 | |
| 4235 | for (j = 1; j < Columns; j++) |
| 4236 | msg_putchar('-'); |
| 4237 | } |
| 4238 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4239 | print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4240 | |
| 4241 | if (minus && i == lnum) |
| 4242 | { |
| 4243 | msg_putchar('\n'); |
| 4244 | |
| 4245 | for (j = 1; j < Columns; j++) |
| 4246 | msg_putchar('-'); |
| 4247 | } |
| 4248 | } |
| 4249 | |
| 4250 | curwin->w_cursor.lnum = curs; |
| 4251 | ex_no_reprint = TRUE; |
| 4252 | } |
| 4253 | |
| 4254 | /* |
| 4255 | * Check if the restricted flag is set. |
| 4256 | * If so, give an error message and return TRUE. |
| 4257 | * Otherwise, return FALSE. |
| 4258 | */ |
| 4259 | int |
| 4260 | check_restricted() |
| 4261 | { |
| 4262 | if (restricted) |
| 4263 | { |
| 4264 | EMSG(_("E145: Shell commands not allowed in rvim")); |
| 4265 | return TRUE; |
| 4266 | } |
| 4267 | return FALSE; |
| 4268 | } |
| 4269 | |
| 4270 | /* |
| 4271 | * Check if the secure flag is set (.exrc or .vimrc in current directory). |
| 4272 | * If so, give an error message and return TRUE. |
| 4273 | * Otherwise, return FALSE. |
| 4274 | */ |
| 4275 | int |
| 4276 | check_secure() |
| 4277 | { |
| 4278 | if (secure) |
| 4279 | { |
| 4280 | secure = 2; |
| 4281 | EMSG(_(e_curdir)); |
| 4282 | return TRUE; |
| 4283 | } |
| 4284 | #ifdef HAVE_SANDBOX |
| 4285 | /* |
| 4286 | * In the sandbox more things are not allowed, including the things |
| 4287 | * disallowed in secure mode. |
| 4288 | */ |
| 4289 | if (sandbox != 0) |
| 4290 | { |
| 4291 | EMSG(_(e_sandbox)); |
| 4292 | return TRUE; |
| 4293 | } |
| 4294 | #endif |
| 4295 | return FALSE; |
| 4296 | } |
| 4297 | |
| 4298 | static char_u *old_sub = NULL; /* previous substitute pattern */ |
| 4299 | static int global_need_beginline; /* call beginline() after ":g" */ |
| 4300 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4301 | /* do_sub() |
| 4302 | * |
| 4303 | * Perform a substitution from line eap->line1 to line eap->line2 using the |
| 4304 | * command pointed to by eap->arg which should be of the form: |
| 4305 | * |
| 4306 | * /pattern/substitution/{flags} |
| 4307 | * |
| 4308 | * The usual escapes are supported as described in the regexp docs. |
| 4309 | */ |
| 4310 | void |
| 4311 | do_sub(eap) |
| 4312 | exarg_T *eap; |
| 4313 | { |
| 4314 | linenr_T lnum; |
| 4315 | long i = 0; |
| 4316 | regmmatch_T regmatch; |
| 4317 | static int do_all = FALSE; /* do multiple substitutions per line */ |
| 4318 | static int do_ask = FALSE; /* ask for confirmation */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4319 | static int do_count = FALSE; /* count only */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4320 | static int do_error = TRUE; /* if false, ignore errors */ |
| 4321 | static int do_print = FALSE; /* print last line with subs. */ |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4322 | static int do_list = FALSE; /* list last line with subs. */ |
| 4323 | static int do_number = FALSE; /* list last line with line nr*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4324 | static int do_ic = 0; /* ignore case flag */ |
| 4325 | char_u *pat = NULL, *sub = NULL; /* init for GCC */ |
| 4326 | int delimiter; |
| 4327 | int sublen; |
| 4328 | int got_quit = FALSE; |
| 4329 | int got_match = FALSE; |
| 4330 | int temp; |
| 4331 | int which_pat; |
| 4332 | char_u *cmd; |
| 4333 | int save_State; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4334 | linenr_T first_line = 0; /* first changed line */ |
| 4335 | linenr_T last_line= 0; /* below last changed line AFTER the |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4336 | * change */ |
| 4337 | linenr_T old_line_count = curbuf->b_ml.ml_line_count; |
| 4338 | linenr_T line2; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4339 | long nmatch; /* number of lines in match */ |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4340 | char_u *sub_firstline; /* allocated copy of first sub line */ |
| 4341 | int endcolumn = FALSE; /* cursor in last column when done */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4342 | pos_T old_cursor = curwin->w_cursor; |
Bram Moolenaar | 4647552 | 2010-03-23 17:36:29 +0100 | [diff] [blame] | 4343 | int start_nsubs; |
Bram Moolenaar | 07e31c5 | 2012-08-08 16:51:15 +0200 | [diff] [blame] | 4344 | #ifdef FEAT_EVAL |
Bram Moolenaar | 75a8d74 | 2014-05-07 15:10:21 +0200 | [diff] [blame] | 4345 | int save_ma = 0; |
Bram Moolenaar | 07e31c5 | 2012-08-08 16:51:15 +0200 | [diff] [blame] | 4346 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4347 | |
| 4348 | cmd = eap->arg; |
| 4349 | if (!global_busy) |
| 4350 | { |
| 4351 | sub_nsubs = 0; |
| 4352 | sub_nlines = 0; |
| 4353 | } |
Bram Moolenaar | 4647552 | 2010-03-23 17:36:29 +0100 | [diff] [blame] | 4354 | start_nsubs = sub_nsubs; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4355 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4356 | if (eap->cmdidx == CMD_tilde) |
| 4357 | which_pat = RE_LAST; /* use last used regexp */ |
| 4358 | else |
| 4359 | which_pat = RE_SUBST; /* use last substitute regexp */ |
| 4360 | |
| 4361 | /* new pattern and substitution */ |
| 4362 | if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd) |
| 4363 | && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL) |
| 4364 | { |
| 4365 | /* don't accept alphanumeric for separator */ |
| 4366 | if (isalpha(*cmd)) |
| 4367 | { |
| 4368 | EMSG(_("E146: Regular expressions can't be delimited by letters")); |
| 4369 | return; |
| 4370 | } |
| 4371 | /* |
| 4372 | * undocumented vi feature: |
| 4373 | * "\/sub/" and "\?sub?" use last used search pattern (almost like |
| 4374 | * //sub/r). "\&sub&" use last substitute pattern (like //sub/). |
| 4375 | */ |
| 4376 | if (*cmd == '\\') |
| 4377 | { |
| 4378 | ++cmd; |
| 4379 | if (vim_strchr((char_u *)"/?&", *cmd) == NULL) |
| 4380 | { |
| 4381 | EMSG(_(e_backslash)); |
| 4382 | return; |
| 4383 | } |
| 4384 | if (*cmd != '&') |
| 4385 | which_pat = RE_SEARCH; /* use last '/' pattern */ |
| 4386 | pat = (char_u *)""; /* empty search pattern */ |
| 4387 | delimiter = *cmd++; /* remember delimiter character */ |
| 4388 | } |
| 4389 | else /* find the end of the regexp */ |
| 4390 | { |
Bram Moolenaar | 3a169c3 | 2008-01-02 12:59:21 +0000 | [diff] [blame] | 4391 | #ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */ |
| 4392 | if (p_altkeymap && curwin->w_p_rl) |
| 4393 | lrF_sub(cmd); |
| 4394 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4395 | which_pat = RE_LAST; /* use last used regexp */ |
| 4396 | delimiter = *cmd++; /* remember delimiter character */ |
| 4397 | pat = cmd; /* remember start of search pat */ |
| 4398 | cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg); |
| 4399 | if (cmd[0] == delimiter) /* end delimiter found */ |
| 4400 | *cmd++ = NUL; /* replace it with a NUL */ |
| 4401 | } |
| 4402 | |
| 4403 | /* |
| 4404 | * Small incompatibility: vi sees '\n' as end of the command, but in |
| 4405 | * Vim we want to use '\n' to find/substitute a NUL. |
| 4406 | */ |
| 4407 | sub = cmd; /* remember the start of the substitution */ |
| 4408 | |
| 4409 | while (cmd[0]) |
| 4410 | { |
| 4411 | if (cmd[0] == delimiter) /* end delimiter found */ |
| 4412 | { |
| 4413 | *cmd++ = NUL; /* replace it with a NUL */ |
| 4414 | break; |
| 4415 | } |
| 4416 | if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */ |
| 4417 | ++cmd; |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4418 | mb_ptr_adv(cmd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4419 | } |
| 4420 | |
| 4421 | if (!eap->skip) |
| 4422 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4423 | /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */ |
| 4424 | if (STRCMP(sub, "%") == 0 |
| 4425 | && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL) |
| 4426 | { |
| 4427 | if (old_sub == NULL) /* there is no previous command */ |
| 4428 | { |
| 4429 | EMSG(_(e_nopresub)); |
| 4430 | return; |
| 4431 | } |
| 4432 | sub = old_sub; |
| 4433 | } |
| 4434 | else |
| 4435 | { |
| 4436 | vim_free(old_sub); |
| 4437 | old_sub = vim_strsave(sub); |
| 4438 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4439 | } |
| 4440 | } |
| 4441 | else if (!eap->skip) /* use previous pattern and substitution */ |
| 4442 | { |
| 4443 | if (old_sub == NULL) /* there is no previous command */ |
| 4444 | { |
| 4445 | EMSG(_(e_nopresub)); |
| 4446 | return; |
| 4447 | } |
| 4448 | pat = NULL; /* search_regcomp() will use previous pattern */ |
| 4449 | sub = old_sub; |
Bram Moolenaar | b11bd7e | 2005-02-07 22:05:52 +0000 | [diff] [blame] | 4450 | |
| 4451 | /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the |
| 4452 | * last column after using "$". */ |
| 4453 | endcolumn = (curwin->w_curswant == MAXCOL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4454 | } |
| 4455 | |
Bram Moolenaar | fd3fe98 | 2014-04-01 17:49:44 +0200 | [diff] [blame] | 4456 | /* Recognize ":%s/\n//" and turn it into a join command, which is much |
| 4457 | * more efficient. |
| 4458 | * TODO: find a generic solution to make line-joining operations more |
| 4459 | * efficient, avoid allocating a string that grows in size. |
| 4460 | */ |
Bram Moolenaar | 21e854e | 2014-04-04 19:00:48 +0200 | [diff] [blame] | 4461 | if (pat != NULL && STRCMP(pat, "\\n") == 0 |
Bram Moolenaar | fd3fe98 | 2014-04-01 17:49:44 +0200 | [diff] [blame] | 4462 | && *sub == NUL |
| 4463 | && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l' |
| 4464 | || *cmd == 'p' || *cmd == '#')))) |
| 4465 | { |
| 4466 | curwin->w_cursor.lnum = eap->line1; |
| 4467 | if (*cmd == 'l') |
| 4468 | eap->flags = EXFLAG_LIST; |
| 4469 | else if (*cmd == '#') |
| 4470 | eap->flags = EXFLAG_NR; |
| 4471 | else if (*cmd == 'p') |
| 4472 | eap->flags = EXFLAG_PRINT; |
| 4473 | |
Bram Moolenaar | d69bd9a | 2014-04-29 12:15:40 +0200 | [diff] [blame] | 4474 | (void)do_join(eap->line2 - eap->line1 + 1, FALSE, TRUE, FALSE, TRUE); |
Bram Moolenaar | fd3fe98 | 2014-04-01 17:49:44 +0200 | [diff] [blame] | 4475 | sub_nlines = sub_nsubs = eap->line2 - eap->line1 + 1; |
| 4476 | (void)do_sub_msg(FALSE); |
| 4477 | ex_may_print(eap); |
| 4478 | return; |
| 4479 | } |
| 4480 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4481 | /* |
| 4482 | * Find trailing options. When '&' is used, keep old options. |
| 4483 | */ |
| 4484 | if (*cmd == '&') |
| 4485 | ++cmd; |
| 4486 | else |
| 4487 | { |
| 4488 | if (!p_ed) |
| 4489 | { |
| 4490 | if (p_gd) /* default is global on */ |
| 4491 | do_all = TRUE; |
| 4492 | else |
| 4493 | do_all = FALSE; |
| 4494 | do_ask = FALSE; |
| 4495 | } |
| 4496 | do_error = TRUE; |
| 4497 | do_print = FALSE; |
Bram Moolenaar | cc016f5 | 2005-12-10 20:23:46 +0000 | [diff] [blame] | 4498 | do_count = FALSE; |
Bram Moolenaar | fe40d1a | 2007-07-24 09:16:38 +0000 | [diff] [blame] | 4499 | do_number = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4500 | do_ic = 0; |
| 4501 | } |
| 4502 | while (*cmd) |
| 4503 | { |
| 4504 | /* |
| 4505 | * Note that 'g' and 'c' are always inverted, also when p_ed is off. |
| 4506 | * 'r' is never inverted. |
| 4507 | */ |
| 4508 | if (*cmd == 'g') |
| 4509 | do_all = !do_all; |
| 4510 | else if (*cmd == 'c') |
| 4511 | do_ask = !do_ask; |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4512 | else if (*cmd == 'n') |
| 4513 | do_count = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4514 | else if (*cmd == 'e') |
| 4515 | do_error = !do_error; |
| 4516 | else if (*cmd == 'r') /* use last used regexp */ |
| 4517 | which_pat = RE_LAST; |
| 4518 | else if (*cmd == 'p') |
| 4519 | do_print = TRUE; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4520 | else if (*cmd == '#') |
| 4521 | { |
| 4522 | do_print = TRUE; |
| 4523 | do_number = TRUE; |
| 4524 | } |
| 4525 | else if (*cmd == 'l') |
| 4526 | { |
| 4527 | do_print = TRUE; |
| 4528 | do_list = TRUE; |
| 4529 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4530 | else if (*cmd == 'i') /* ignore case */ |
| 4531 | do_ic = 'i'; |
| 4532 | else if (*cmd == 'I') /* don't ignore case */ |
| 4533 | do_ic = 'I'; |
| 4534 | else |
| 4535 | break; |
| 4536 | ++cmd; |
| 4537 | } |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4538 | if (do_count) |
| 4539 | do_ask = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4540 | |
| 4541 | /* |
| 4542 | * check for a trailing count |
| 4543 | */ |
| 4544 | cmd = skipwhite(cmd); |
| 4545 | if (VIM_ISDIGIT(*cmd)) |
| 4546 | { |
| 4547 | i = getdigits(&cmd); |
| 4548 | if (i <= 0 && !eap->skip && do_error) |
| 4549 | { |
| 4550 | EMSG(_(e_zerocount)); |
| 4551 | return; |
| 4552 | } |
| 4553 | eap->line1 = eap->line2; |
| 4554 | eap->line2 += i - 1; |
| 4555 | if (eap->line2 > curbuf->b_ml.ml_line_count) |
| 4556 | eap->line2 = curbuf->b_ml.ml_line_count; |
| 4557 | } |
| 4558 | |
| 4559 | /* |
| 4560 | * check for trailing command or garbage |
| 4561 | */ |
| 4562 | cmd = skipwhite(cmd); |
| 4563 | if (*cmd && *cmd != '"') /* if not end-of-line or comment */ |
| 4564 | { |
| 4565 | eap->nextcmd = check_nextcmd(cmd); |
| 4566 | if (eap->nextcmd == NULL) |
| 4567 | { |
| 4568 | EMSG(_(e_trailing)); |
| 4569 | return; |
| 4570 | } |
| 4571 | } |
| 4572 | |
| 4573 | if (eap->skip) /* not executing commands, only parsing */ |
| 4574 | return; |
| 4575 | |
Bram Moolenaar | 61660ea | 2006-04-07 21:40:07 +0000 | [diff] [blame] | 4576 | if (!do_count && !curbuf->b_p_ma) |
| 4577 | { |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 4578 | /* Substitution is not allowed in non-'modifiable' buffer */ |
Bram Moolenaar | 61660ea | 2006-04-07 21:40:07 +0000 | [diff] [blame] | 4579 | EMSG(_(e_modifiable)); |
| 4580 | return; |
| 4581 | } |
| 4582 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4583 | if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, ®match) == FAIL) |
| 4584 | { |
| 4585 | if (do_error) |
| 4586 | EMSG(_(e_invcmd)); |
| 4587 | return; |
| 4588 | } |
| 4589 | |
| 4590 | /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */ |
| 4591 | if (do_ic == 'i') |
| 4592 | regmatch.rmm_ic = TRUE; |
| 4593 | else if (do_ic == 'I') |
| 4594 | regmatch.rmm_ic = FALSE; |
| 4595 | |
| 4596 | sub_firstline = NULL; |
| 4597 | |
| 4598 | /* |
| 4599 | * ~ in the substitute pattern is replaced with the old pattern. |
| 4600 | * We do it here once to avoid it to be replaced over and over again. |
| 4601 | * But don't do it when it starts with "\=", then it's an expression. |
| 4602 | */ |
| 4603 | if (!(sub[0] == '\\' && sub[1] == '=')) |
| 4604 | sub = regtilde(sub, p_magic); |
| 4605 | |
| 4606 | /* |
| 4607 | * Check for a match on each line. |
| 4608 | */ |
| 4609 | line2 = eap->line2; |
| 4610 | for (lnum = eap->line1; lnum <= line2 && !(got_quit |
| 4611 | #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) |
| 4612 | || aborting() |
| 4613 | #endif |
| 4614 | ); ++lnum) |
| 4615 | { |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 4616 | nmatch = vim_regexec_multi(®match, curwin, curbuf, lnum, |
| 4617 | (colnr_T)0, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4618 | if (nmatch) |
| 4619 | { |
| 4620 | colnr_T copycol; |
| 4621 | colnr_T matchcol; |
| 4622 | colnr_T prev_matchcol = MAXCOL; |
| 4623 | char_u *new_end, *new_start = NULL; |
| 4624 | unsigned new_start_len = 0; |
| 4625 | char_u *p1; |
| 4626 | int did_sub = FALSE; |
| 4627 | int lastone; |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 4628 | int len, copy_len, needed_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4629 | long nmatch_tl = 0; /* nr of lines matched below lnum */ |
| 4630 | int do_again; /* do it again after joining lines */ |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 4631 | int skip_match = FALSE; |
Bram Moolenaar | bd7cc03 | 2008-01-09 21:40:50 +0000 | [diff] [blame] | 4632 | linenr_T sub_firstlnum; /* nr of first sub line */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4633 | |
| 4634 | /* |
| 4635 | * The new text is build up step by step, to avoid too much |
| 4636 | * copying. There are these pieces: |
Bram Moolenaar | a9aafe5 | 2008-05-07 11:10:28 +0000 | [diff] [blame] | 4637 | * sub_firstline The old text, unmodified. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4638 | * copycol Column in the old text where we started |
| 4639 | * looking for a match; from here old text still |
| 4640 | * needs to be copied to the new text. |
| 4641 | * matchcol Column number of the old text where to look |
| 4642 | * for the next match. It's just after the |
| 4643 | * previous match or one further. |
| 4644 | * prev_matchcol Column just after the previous match (if any). |
| 4645 | * Mostly equal to matchcol, except for the first |
| 4646 | * match and after skipping an empty match. |
| 4647 | * regmatch.*pos Where the pattern matched in the old text. |
| 4648 | * new_start The new text, all that has been produced so |
| 4649 | * far. |
| 4650 | * new_end The new text, where to append new text. |
| 4651 | * |
Bram Moolenaar | bd7cc03 | 2008-01-09 21:40:50 +0000 | [diff] [blame] | 4652 | * lnum The line number where we found the start of |
| 4653 | * the match. Can be below the line we searched |
| 4654 | * when there is a \n before a \zs in the |
| 4655 | * pattern. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4656 | * sub_firstlnum The line number in the buffer where to look |
| 4657 | * for a match. Can be different from "lnum" |
| 4658 | * when the pattern or substitute string contains |
| 4659 | * line breaks. |
| 4660 | * |
| 4661 | * Special situations: |
| 4662 | * - When the substitute string contains a line break, the part up |
| 4663 | * to the line break is inserted in the text, but the copy of |
| 4664 | * the original line is kept. "sub_firstlnum" is adjusted for |
| 4665 | * the inserted lines. |
| 4666 | * - When the matched pattern contains a line break, the old line |
| 4667 | * is taken from the line at the end of the pattern. The lines |
| 4668 | * in the match are deleted later, "sub_firstlnum" is adjusted |
| 4669 | * accordingly. |
| 4670 | * |
| 4671 | * The new text is built up in new_start[]. It has some extra |
| 4672 | * room to avoid using alloc()/free() too often. new_start_len is |
Bram Moolenaar | 61abfd1 | 2007-09-13 16:26:47 +0000 | [diff] [blame] | 4673 | * the length of the allocated memory at new_start. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4674 | * |
| 4675 | * Make a copy of the old line, so it won't be taken away when |
| 4676 | * updating the screen or handling a multi-line match. The "old_" |
| 4677 | * pointers point into this copy. |
| 4678 | */ |
Bram Moolenaar | bd7cc03 | 2008-01-09 21:40:50 +0000 | [diff] [blame] | 4679 | sub_firstlnum = lnum; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4680 | copycol = 0; |
| 4681 | matchcol = 0; |
| 4682 | |
| 4683 | /* At first match, remember current cursor position. */ |
| 4684 | if (!got_match) |
| 4685 | { |
| 4686 | setpcmark(); |
| 4687 | got_match = TRUE; |
| 4688 | } |
| 4689 | |
| 4690 | /* |
| 4691 | * Loop until nothing more to replace in this line. |
| 4692 | * 1. Handle match with empty string. |
| 4693 | * 2. If do_ask is set, ask for confirmation. |
| 4694 | * 3. substitute the string. |
| 4695 | * 4. if do_all is set, find next match |
| 4696 | * 5. break if there isn't another match in this line |
| 4697 | */ |
| 4698 | for (;;) |
| 4699 | { |
Bram Moolenaar | bd7cc03 | 2008-01-09 21:40:50 +0000 | [diff] [blame] | 4700 | /* Advance "lnum" to the line where the match starts. The |
| 4701 | * match does not start in the first line when there is a line |
| 4702 | * break before \zs. */ |
| 4703 | if (regmatch.startpos[0].lnum > 0) |
| 4704 | { |
| 4705 | lnum += regmatch.startpos[0].lnum; |
| 4706 | sub_firstlnum += regmatch.startpos[0].lnum; |
| 4707 | nmatch -= regmatch.startpos[0].lnum; |
| 4708 | vim_free(sub_firstline); |
| 4709 | sub_firstline = NULL; |
| 4710 | } |
| 4711 | |
| 4712 | if (sub_firstline == NULL) |
| 4713 | { |
| 4714 | sub_firstline = vim_strsave(ml_get(sub_firstlnum)); |
| 4715 | if (sub_firstline == NULL) |
| 4716 | { |
| 4717 | vim_free(new_start); |
| 4718 | goto outofmem; |
| 4719 | } |
| 4720 | } |
| 4721 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4722 | /* Save the line number of the last change for the final |
| 4723 | * cursor position (just like Vi). */ |
| 4724 | curwin->w_cursor.lnum = lnum; |
| 4725 | do_again = FALSE; |
| 4726 | |
| 4727 | /* |
| 4728 | * 1. Match empty string does not count, except for first |
| 4729 | * match. This reproduces the strange vi behaviour. |
| 4730 | * This also catches endless loops. |
| 4731 | */ |
| 4732 | if (matchcol == prev_matchcol |
| 4733 | && regmatch.endpos[0].lnum == 0 |
| 4734 | && matchcol == regmatch.endpos[0].col) |
| 4735 | { |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 4736 | if (sub_firstline[matchcol] == NUL) |
| 4737 | /* We already were at the end of the line. Don't look |
| 4738 | * for a match in this line again. */ |
| 4739 | skip_match = TRUE; |
| 4740 | else |
Bram Moolenaar | 0df1102 | 2011-05-19 14:30:16 +0200 | [diff] [blame] | 4741 | { |
| 4742 | /* search for a match at next column */ |
| 4743 | #ifdef FEAT_MBYTE |
| 4744 | if (has_mbyte) |
| 4745 | matchcol += mb_ptr2len(sub_firstline + matchcol); |
| 4746 | else |
| 4747 | #endif |
| 4748 | ++matchcol; |
| 4749 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4750 | goto skip; |
| 4751 | } |
| 4752 | |
| 4753 | /* Normally we continue searching for a match just after the |
| 4754 | * previous match. */ |
| 4755 | matchcol = regmatch.endpos[0].col; |
| 4756 | prev_matchcol = matchcol; |
| 4757 | |
| 4758 | /* |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4759 | * 2. If do_count is set only increase the counter. |
| 4760 | * If do_ask is set, ask for confirmation. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4761 | */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4762 | if (do_count) |
| 4763 | { |
| 4764 | /* For a multi-line match, put matchcol at the NUL at |
| 4765 | * the end of the line and set nmatch to one, so that |
| 4766 | * we continue looking for a match on the next line. |
| 4767 | * Avoids that ":s/\nB\@=//gc" get stuck. */ |
| 4768 | if (nmatch > 1) |
| 4769 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 4770 | matchcol = (colnr_T)STRLEN(sub_firstline); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4771 | nmatch = 1; |
Bram Moolenaar | 12ddc3e | 2008-01-04 13:53:09 +0000 | [diff] [blame] | 4772 | skip_match = TRUE; |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4773 | } |
| 4774 | sub_nsubs++; |
| 4775 | did_sub = TRUE; |
Bram Moolenaar | 07e31c5 | 2012-08-08 16:51:15 +0200 | [diff] [blame] | 4776 | #ifdef FEAT_EVAL |
| 4777 | /* Skip the substitution, unless an expression is used, |
| 4778 | * then it is evaluated in the sandbox. */ |
| 4779 | if (!(sub[0] == '\\' && sub[1] == '=')) |
| 4780 | #endif |
| 4781 | goto skip; |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4782 | } |
| 4783 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4784 | if (do_ask) |
| 4785 | { |
Bram Moolenaar | 985cb44 | 2009-05-14 19:51:46 +0000 | [diff] [blame] | 4786 | int typed = 0; |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 4787 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4788 | /* change State to CONFIRM, so that the mouse works |
| 4789 | * properly */ |
| 4790 | save_State = State; |
| 4791 | State = CONFIRM; |
| 4792 | #ifdef FEAT_MOUSE |
| 4793 | setmouse(); /* disable mouse in xterm */ |
| 4794 | #endif |
| 4795 | curwin->w_cursor.col = regmatch.startpos[0].col; |
| 4796 | |
| 4797 | /* When 'cpoptions' contains "u" don't sync undo when |
| 4798 | * asking for confirmation. */ |
| 4799 | if (vim_strchr(p_cpo, CPO_UNDO) != NULL) |
| 4800 | ++no_u_sync; |
| 4801 | |
| 4802 | /* |
| 4803 | * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed. |
| 4804 | */ |
| 4805 | while (do_ask) |
| 4806 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4807 | if (exmode_active) |
| 4808 | { |
| 4809 | char_u *resp; |
| 4810 | colnr_T sc, ec; |
| 4811 | |
Bram Moolenaar | 3eead7c | 2013-10-02 18:43:06 +0200 | [diff] [blame] | 4812 | print_line_no_prefix(lnum, do_number, do_list); |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4813 | |
| 4814 | getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL); |
| 4815 | curwin->w_cursor.col = regmatch.endpos[0].col - 1; |
| 4816 | getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec); |
Bram Moolenaar | 3eead7c | 2013-10-02 18:43:06 +0200 | [diff] [blame] | 4817 | if (do_number || curwin->w_p_nu) |
| 4818 | { |
| 4819 | int numw = number_width(curwin) + 1; |
| 4820 | sc += numw; |
| 4821 | ec += numw; |
| 4822 | } |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4823 | msg_start(); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4824 | for (i = 0; i < (long)sc; ++i) |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4825 | msg_putchar(' '); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4826 | for ( ; i <= (long)ec; ++i) |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4827 | msg_putchar('^'); |
| 4828 | |
| 4829 | resp = getexmodeline('?', NULL, 0); |
| 4830 | if (resp != NULL) |
| 4831 | { |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 4832 | typed = *resp; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4833 | vim_free(resp); |
| 4834 | } |
| 4835 | } |
| 4836 | else |
| 4837 | { |
Bram Moolenaar | 4bc8cf0 | 2013-01-30 16:30:26 +0100 | [diff] [blame] | 4838 | char_u *orig_line = NULL; |
| 4839 | int len_change = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4840 | #ifdef FEAT_FOLDING |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4841 | int save_p_fen = curwin->w_p_fen; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4842 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4843 | curwin->w_p_fen = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4844 | #endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4845 | /* Invert the matched string. |
| 4846 | * Remove the inversion afterwards. */ |
| 4847 | temp = RedrawingDisabled; |
| 4848 | RedrawingDisabled = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4849 | |
Bram Moolenaar | 4bc8cf0 | 2013-01-30 16:30:26 +0100 | [diff] [blame] | 4850 | if (new_start != NULL) |
| 4851 | { |
| 4852 | /* There already was a substitution, we would |
| 4853 | * like to show this to the user. We cannot |
| 4854 | * really update the line, it would change |
| 4855 | * what matches. Temporarily replace the line |
| 4856 | * and change it back afterwards. */ |
| 4857 | orig_line = vim_strsave(ml_get(lnum)); |
| 4858 | if (orig_line != NULL) |
| 4859 | { |
| 4860 | char_u *new_line = concat_str(new_start, |
| 4861 | sub_firstline + copycol); |
| 4862 | |
| 4863 | if (new_line == NULL) |
| 4864 | { |
| 4865 | vim_free(orig_line); |
| 4866 | orig_line = NULL; |
| 4867 | } |
| 4868 | else |
| 4869 | { |
| 4870 | /* Position the cursor relative to the |
| 4871 | * end of the line, the previous |
| 4872 | * substitute may have inserted or |
| 4873 | * deleted characters before the |
| 4874 | * cursor. */ |
Bram Moolenaar | 04e5b5a | 2013-01-30 21:56:21 +0100 | [diff] [blame] | 4875 | len_change = (int)STRLEN(new_line) |
| 4876 | - (int)STRLEN(orig_line); |
Bram Moolenaar | 4bc8cf0 | 2013-01-30 16:30:26 +0100 | [diff] [blame] | 4877 | curwin->w_cursor.col += len_change; |
| 4878 | ml_replace(lnum, new_line, FALSE); |
| 4879 | } |
| 4880 | } |
| 4881 | } |
| 4882 | |
Bram Moolenaar | bd7cc03 | 2008-01-09 21:40:50 +0000 | [diff] [blame] | 4883 | search_match_lines = regmatch.endpos[0].lnum |
| 4884 | - regmatch.startpos[0].lnum; |
Bram Moolenaar | 4bc8cf0 | 2013-01-30 16:30:26 +0100 | [diff] [blame] | 4885 | search_match_endcol = regmatch.endpos[0].col |
| 4886 | + len_change; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4887 | highlight_match = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4888 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4889 | update_topline(); |
| 4890 | validate_cursor(); |
Bram Moolenaar | a1956f6 | 2006-03-12 22:18:00 +0000 | [diff] [blame] | 4891 | update_screen(SOME_VALID); |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4892 | highlight_match = FALSE; |
Bram Moolenaar | a1956f6 | 2006-03-12 22:18:00 +0000 | [diff] [blame] | 4893 | redraw_later(SOME_VALID); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4894 | |
| 4895 | #ifdef FEAT_FOLDING |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4896 | curwin->w_p_fen = save_p_fen; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4897 | #endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4898 | if (msg_row == Rows - 1) |
| 4899 | msg_didout = FALSE; /* avoid a scroll-up */ |
| 4900 | msg_starthere(); |
| 4901 | i = msg_scroll; |
| 4902 | msg_scroll = 0; /* truncate msg when |
| 4903 | needed */ |
| 4904 | msg_no_more = TRUE; |
| 4905 | /* write message same highlighting as for |
| 4906 | * wait_return */ |
| 4907 | smsg_attr(hl_attr(HLF_R), |
| 4908 | (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub); |
| 4909 | msg_no_more = FALSE; |
| 4910 | msg_scroll = i; |
| 4911 | showruler(TRUE); |
| 4912 | windgoto(msg_row, msg_col); |
| 4913 | RedrawingDisabled = temp; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4914 | |
| 4915 | #ifdef USE_ON_FLY_SCROLL |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4916 | dont_scroll = FALSE; /* allow scrolling here */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4917 | #endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4918 | ++no_mapping; /* don't map this key */ |
| 4919 | ++allow_keys; /* allow special keys */ |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 4920 | typed = plain_vgetc(); |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4921 | --allow_keys; |
| 4922 | --no_mapping; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4923 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4924 | /* clear the question */ |
| 4925 | msg_didout = FALSE; /* don't scroll up */ |
| 4926 | msg_col = 0; |
| 4927 | gotocmdline(TRUE); |
Bram Moolenaar | 4bc8cf0 | 2013-01-30 16:30:26 +0100 | [diff] [blame] | 4928 | |
| 4929 | /* restore the line */ |
| 4930 | if (orig_line != NULL) |
| 4931 | ml_replace(lnum, orig_line, FALSE); |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4932 | } |
| 4933 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4934 | need_wait_return = FALSE; /* no hit-return prompt */ |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 4935 | if (typed == 'q' || typed == ESC || typed == Ctrl_C |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4936 | #ifdef UNIX |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 4937 | || typed == intr_char |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4938 | #endif |
| 4939 | ) |
| 4940 | { |
| 4941 | got_quit = TRUE; |
| 4942 | break; |
| 4943 | } |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 4944 | if (typed == 'n') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4945 | break; |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 4946 | if (typed == 'y') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4947 | break; |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 4948 | if (typed == 'l') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4949 | { |
| 4950 | /* last: replace and then stop */ |
| 4951 | do_all = FALSE; |
| 4952 | line2 = lnum; |
| 4953 | break; |
| 4954 | } |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 4955 | if (typed == 'a') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4956 | { |
| 4957 | do_ask = FALSE; |
| 4958 | break; |
| 4959 | } |
| 4960 | #ifdef FEAT_INS_EXPAND |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 4961 | if (typed == Ctrl_E) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4962 | scrollup_clamp(); |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 4963 | else if (typed == Ctrl_Y) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4964 | scrolldown_clamp(); |
| 4965 | #endif |
| 4966 | } |
| 4967 | State = save_State; |
| 4968 | #ifdef FEAT_MOUSE |
| 4969 | setmouse(); |
| 4970 | #endif |
| 4971 | if (vim_strchr(p_cpo, CPO_UNDO) != NULL) |
| 4972 | --no_u_sync; |
| 4973 | |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 4974 | if (typed == 'n') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4975 | { |
| 4976 | /* For a multi-line match, put matchcol at the NUL at |
| 4977 | * the end of the line and set nmatch to one, so that |
| 4978 | * we continue looking for a match on the next line. |
Bram Moolenaar | c432b50 | 2007-03-15 20:38:26 +0000 | [diff] [blame] | 4979 | * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc" |
| 4980 | * get stuck when pressing 'n'. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4981 | if (nmatch > 1) |
| 4982 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 4983 | matchcol = (colnr_T)STRLEN(sub_firstline); |
Bram Moolenaar | c432b50 | 2007-03-15 20:38:26 +0000 | [diff] [blame] | 4984 | skip_match = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4985 | } |
| 4986 | goto skip; |
| 4987 | } |
| 4988 | if (got_quit) |
Bram Moolenaar | 11cb6e6 | 2013-02-06 18:24:02 +0100 | [diff] [blame] | 4989 | goto skip; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4990 | } |
| 4991 | |
| 4992 | /* Move the cursor to the start of the match, so that we can |
| 4993 | * use "\=col("."). */ |
| 4994 | curwin->w_cursor.col = regmatch.startpos[0].col; |
| 4995 | |
| 4996 | /* |
| 4997 | * 3. substitute the string. |
| 4998 | */ |
Bram Moolenaar | 07e31c5 | 2012-08-08 16:51:15 +0200 | [diff] [blame] | 4999 | #ifdef FEAT_EVAL |
| 5000 | if (do_count) |
| 5001 | { |
Bram Moolenaar | 7c0a86b | 2012-09-05 15:15:07 +0200 | [diff] [blame] | 5002 | /* prevent accidentally changing the buffer by a function */ |
Bram Moolenaar | 07e31c5 | 2012-08-08 16:51:15 +0200 | [diff] [blame] | 5003 | save_ma = curbuf->b_p_ma; |
| 5004 | curbuf->b_p_ma = FALSE; |
| 5005 | sandbox++; |
| 5006 | } |
| 5007 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5008 | /* get length of substitution part */ |
Bram Moolenaar | bd7cc03 | 2008-01-09 21:40:50 +0000 | [diff] [blame] | 5009 | sublen = vim_regsub_multi(®match, |
| 5010 | sub_firstlnum - regmatch.startpos[0].lnum, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5011 | sub, sub_firstline, FALSE, p_magic, TRUE); |
Bram Moolenaar | 07e31c5 | 2012-08-08 16:51:15 +0200 | [diff] [blame] | 5012 | #ifdef FEAT_EVAL |
| 5013 | if (do_count) |
| 5014 | { |
| 5015 | curbuf->b_p_ma = save_ma; |
| 5016 | sandbox--; |
| 5017 | goto skip; |
| 5018 | } |
| 5019 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5020 | |
Bram Moolenaar | 4463f29 | 2005-09-25 22:20:24 +0000 | [diff] [blame] | 5021 | /* When the match included the "$" of the last line it may |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 5022 | * go beyond the last line of the buffer. */ |
Bram Moolenaar | 4463f29 | 2005-09-25 22:20:24 +0000 | [diff] [blame] | 5023 | if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) |
| 5024 | { |
| 5025 | nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; |
| 5026 | skip_match = TRUE; |
| 5027 | } |
| 5028 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5029 | /* Need room for: |
| 5030 | * - result so far in new_start (not for first sub in line) |
| 5031 | * - original text up to match |
| 5032 | * - length of substituted part |
| 5033 | * - original text after match |
| 5034 | */ |
| 5035 | if (nmatch == 1) |
| 5036 | p1 = sub_firstline; |
| 5037 | else |
| 5038 | { |
| 5039 | p1 = ml_get(sub_firstlnum + nmatch - 1); |
| 5040 | nmatch_tl += nmatch - 1; |
| 5041 | } |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 5042 | copy_len = regmatch.startpos[0].col - copycol; |
| 5043 | needed_len = copy_len + ((unsigned)STRLEN(p1) |
| 5044 | - regmatch.endpos[0].col) + sublen + 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5045 | if (new_start == NULL) |
| 5046 | { |
| 5047 | /* |
| 5048 | * Get some space for a temporary buffer to do the |
| 5049 | * substitution into (and some extra space to avoid |
| 5050 | * too many calls to alloc()/free()). |
| 5051 | */ |
| 5052 | new_start_len = needed_len + 50; |
| 5053 | if ((new_start = alloc_check(new_start_len)) == NULL) |
| 5054 | goto outofmem; |
| 5055 | *new_start = NUL; |
| 5056 | new_end = new_start; |
| 5057 | } |
| 5058 | else |
| 5059 | { |
| 5060 | /* |
| 5061 | * Check if the temporary buffer is long enough to do the |
| 5062 | * substitution into. If not, make it larger (with a bit |
| 5063 | * extra to avoid too many calls to alloc()/free()). |
| 5064 | */ |
| 5065 | len = (unsigned)STRLEN(new_start); |
| 5066 | needed_len += len; |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 5067 | if (needed_len > (int)new_start_len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5068 | { |
| 5069 | new_start_len = needed_len + 50; |
| 5070 | if ((p1 = alloc_check(new_start_len)) == NULL) |
| 5071 | { |
| 5072 | vim_free(new_start); |
| 5073 | goto outofmem; |
| 5074 | } |
| 5075 | mch_memmove(p1, new_start, (size_t)(len + 1)); |
| 5076 | vim_free(new_start); |
| 5077 | new_start = p1; |
| 5078 | } |
| 5079 | new_end = new_start + len; |
| 5080 | } |
| 5081 | |
| 5082 | /* |
| 5083 | * copy the text up to the part that matched |
| 5084 | */ |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 5085 | mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len); |
| 5086 | new_end += copy_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5087 | |
Bram Moolenaar | bd7cc03 | 2008-01-09 21:40:50 +0000 | [diff] [blame] | 5088 | (void)vim_regsub_multi(®match, |
| 5089 | sub_firstlnum - regmatch.startpos[0].lnum, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5090 | sub, new_end, TRUE, p_magic, TRUE); |
| 5091 | sub_nsubs++; |
| 5092 | did_sub = TRUE; |
| 5093 | |
| 5094 | /* Move the cursor to the start of the line, to avoid that it |
| 5095 | * is beyond the end of the line after the substitution. */ |
| 5096 | curwin->w_cursor.col = 0; |
| 5097 | |
| 5098 | /* For a multi-line match, make a copy of the last matched |
| 5099 | * line and continue in that one. */ |
| 5100 | if (nmatch > 1) |
| 5101 | { |
| 5102 | sub_firstlnum += nmatch - 1; |
| 5103 | vim_free(sub_firstline); |
| 5104 | sub_firstline = vim_strsave(ml_get(sub_firstlnum)); |
| 5105 | /* When going beyond the last line, stop substituting. */ |
| 5106 | if (sub_firstlnum <= line2) |
| 5107 | do_again = TRUE; |
| 5108 | else |
| 5109 | do_all = FALSE; |
| 5110 | } |
| 5111 | |
| 5112 | /* Remember next character to be copied. */ |
| 5113 | copycol = regmatch.endpos[0].col; |
| 5114 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 5115 | if (skip_match) |
| 5116 | { |
| 5117 | /* Already hit end of the buffer, sub_firstlnum is one |
| 5118 | * less than what it ought to be. */ |
| 5119 | vim_free(sub_firstline); |
| 5120 | sub_firstline = vim_strsave((char_u *)""); |
| 5121 | copycol = 0; |
| 5122 | } |
| 5123 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5124 | /* |
| 5125 | * Now the trick is to replace CTRL-M chars with a real line |
| 5126 | * break. This would make it impossible to insert a CTRL-M in |
| 5127 | * the text. The line break can be avoided by preceding the |
| 5128 | * CTRL-M with a backslash. To be able to insert a backslash, |
| 5129 | * they must be doubled in the string and are halved here. |
| 5130 | * That is Vi compatible. |
| 5131 | */ |
| 5132 | for (p1 = new_end; *p1; ++p1) |
| 5133 | { |
| 5134 | if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */ |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 5135 | STRMOVE(p1, p1 + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5136 | else if (*p1 == CAR) |
| 5137 | { |
| 5138 | if (u_inssub(lnum) == OK) /* prepare for undo */ |
| 5139 | { |
| 5140 | *p1 = NUL; /* truncate up to the CR */ |
| 5141 | ml_append(lnum - 1, new_start, |
| 5142 | (colnr_T)(p1 - new_start + 1), FALSE); |
| 5143 | mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L); |
| 5144 | if (do_ask) |
| 5145 | appended_lines(lnum - 1, 1L); |
| 5146 | else |
| 5147 | { |
| 5148 | if (first_line == 0) |
| 5149 | first_line = lnum; |
| 5150 | last_line = lnum + 1; |
| 5151 | } |
| 5152 | /* All line numbers increase. */ |
| 5153 | ++sub_firstlnum; |
| 5154 | ++lnum; |
| 5155 | ++line2; |
| 5156 | /* move the cursor to the new line, like Vi */ |
| 5157 | ++curwin->w_cursor.lnum; |
Bram Moolenaar | f9ffd18 | 2007-11-20 17:04:29 +0000 | [diff] [blame] | 5158 | /* copy the rest */ |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 5159 | STRMOVE(new_start, p1 + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5160 | p1 = new_start - 1; |
| 5161 | } |
| 5162 | } |
| 5163 | #ifdef FEAT_MBYTE |
| 5164 | else if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 5165 | p1 += (*mb_ptr2len)(p1) - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5166 | #endif |
| 5167 | } |
| 5168 | |
| 5169 | /* |
| 5170 | * 4. If do_all is set, find next match. |
| 5171 | * Prevent endless loop with patterns that match empty |
| 5172 | * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g. |
| 5173 | * But ":s/\n/#/" is OK. |
| 5174 | */ |
| 5175 | skip: |
| 5176 | /* We already know that we did the last subst when we are at |
| 5177 | * the end of the line, except that a pattern like |
Bram Moolenaar | bd7cc03 | 2008-01-09 21:40:50 +0000 | [diff] [blame] | 5178 | * "bar\|\nfoo" may match at the NUL. "lnum" can be below |
| 5179 | * "line2" when there is a \zs in the pattern after a line |
| 5180 | * break. */ |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 5181 | lastone = (skip_match |
| 5182 | || got_int |
| 5183 | || got_quit |
Bram Moolenaar | bd7cc03 | 2008-01-09 21:40:50 +0000 | [diff] [blame] | 5184 | || lnum > line2 |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 5185 | || !(do_all || do_again) |
| 5186 | || (sub_firstline[matchcol] == NUL && nmatch <= 1 |
| 5187 | && !re_multiline(regmatch.regprog))); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5188 | nmatch = -1; |
| 5189 | |
| 5190 | /* |
| 5191 | * Replace the line in the buffer when needed. This is |
| 5192 | * skipped when there are more matches. |
| 5193 | * The check for nmatch_tl is needed for when multi-line |
| 5194 | * matching must replace the lines before trying to do another |
| 5195 | * match, otherwise "\@<=" won't work. |
Bram Moolenaar | bd7cc03 | 2008-01-09 21:40:50 +0000 | [diff] [blame] | 5196 | * When the match starts below where we start searching also |
| 5197 | * need to replace the line first (using \zs after \n). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5198 | */ |
| 5199 | if (lastone |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5200 | || nmatch_tl > 0 |
| 5201 | || (nmatch = vim_regexec_multi(®match, curwin, |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 5202 | curbuf, sub_firstlnum, |
| 5203 | matchcol, NULL)) == 0 |
Bram Moolenaar | bd7cc03 | 2008-01-09 21:40:50 +0000 | [diff] [blame] | 5204 | || regmatch.startpos[0].lnum > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5205 | { |
| 5206 | if (new_start != NULL) |
| 5207 | { |
| 5208 | /* |
| 5209 | * Copy the rest of the line, that didn't match. |
| 5210 | * "matchcol" has to be adjusted, we use the end of |
| 5211 | * the line as reference, because the substitute may |
| 5212 | * have changed the number of characters. Same for |
| 5213 | * "prev_matchcol". |
| 5214 | */ |
| 5215 | STRCAT(new_start, sub_firstline + copycol); |
| 5216 | matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; |
| 5217 | prev_matchcol = (colnr_T)STRLEN(sub_firstline) |
| 5218 | - prev_matchcol; |
| 5219 | |
| 5220 | if (u_savesub(lnum) != OK) |
| 5221 | break; |
| 5222 | ml_replace(lnum, new_start, TRUE); |
| 5223 | |
| 5224 | if (nmatch_tl > 0) |
| 5225 | { |
| 5226 | /* |
| 5227 | * Matched lines have now been substituted and are |
| 5228 | * useless, delete them. The part after the match |
| 5229 | * has been appended to new_start, we don't need |
| 5230 | * it in the buffer. |
| 5231 | */ |
| 5232 | ++lnum; |
| 5233 | if (u_savedel(lnum, nmatch_tl) != OK) |
| 5234 | break; |
| 5235 | for (i = 0; i < nmatch_tl; ++i) |
| 5236 | ml_delete(lnum, (int)FALSE); |
| 5237 | mark_adjust(lnum, lnum + nmatch_tl - 1, |
| 5238 | (long)MAXLNUM, -nmatch_tl); |
| 5239 | if (do_ask) |
| 5240 | deleted_lines(lnum, nmatch_tl); |
| 5241 | --lnum; |
| 5242 | line2 -= nmatch_tl; /* nr of lines decreases */ |
| 5243 | nmatch_tl = 0; |
| 5244 | } |
| 5245 | |
| 5246 | /* When asking, undo is saved each time, must also set |
| 5247 | * changed flag each time. */ |
| 5248 | if (do_ask) |
| 5249 | changed_bytes(lnum, 0); |
| 5250 | else |
| 5251 | { |
| 5252 | if (first_line == 0) |
| 5253 | first_line = lnum; |
| 5254 | last_line = lnum + 1; |
| 5255 | } |
| 5256 | |
| 5257 | sub_firstlnum = lnum; |
| 5258 | vim_free(sub_firstline); /* free the temp buffer */ |
| 5259 | sub_firstline = new_start; |
| 5260 | new_start = NULL; |
| 5261 | matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; |
| 5262 | prev_matchcol = (colnr_T)STRLEN(sub_firstline) |
| 5263 | - prev_matchcol; |
| 5264 | copycol = 0; |
| 5265 | } |
| 5266 | if (nmatch == -1 && !lastone) |
| 5267 | nmatch = vim_regexec_multi(®match, curwin, curbuf, |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 5268 | sub_firstlnum, matchcol, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5269 | |
| 5270 | /* |
| 5271 | * 5. break if there isn't another match in this line |
| 5272 | */ |
| 5273 | if (nmatch <= 0) |
Bram Moolenaar | bd7cc03 | 2008-01-09 21:40:50 +0000 | [diff] [blame] | 5274 | { |
| 5275 | /* If the match found didn't start where we were |
| 5276 | * searching, do the next search in the line where we |
| 5277 | * found the match. */ |
| 5278 | if (nmatch == -1) |
| 5279 | lnum -= regmatch.startpos[0].lnum; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5280 | break; |
Bram Moolenaar | bd7cc03 | 2008-01-09 21:40:50 +0000 | [diff] [blame] | 5281 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5282 | } |
| 5283 | |
| 5284 | line_breakcheck(); |
| 5285 | } |
| 5286 | |
| 5287 | if (did_sub) |
| 5288 | ++sub_nlines; |
Bram Moolenaar | da2bd6f | 2008-09-14 19:41:30 +0000 | [diff] [blame] | 5289 | vim_free(new_start); /* for when substitute was cancelled */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5290 | vim_free(sub_firstline); /* free the copy of the original line */ |
| 5291 | sub_firstline = NULL; |
| 5292 | } |
| 5293 | |
| 5294 | line_breakcheck(); |
| 5295 | } |
| 5296 | |
| 5297 | if (first_line != 0) |
| 5298 | { |
| 5299 | /* Need to subtract the number of added lines from "last_line" to get |
| 5300 | * the line number before the change (same as adding the number of |
| 5301 | * deleted lines). */ |
| 5302 | i = curbuf->b_ml.ml_line_count - old_line_count; |
| 5303 | changed_lines(first_line, 0, last_line - i, i); |
| 5304 | } |
| 5305 | |
| 5306 | outofmem: |
| 5307 | vim_free(sub_firstline); /* may have to free allocated copy of the line */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5308 | |
| 5309 | /* ":s/pat//n" doesn't move the cursor */ |
| 5310 | if (do_count) |
| 5311 | curwin->w_cursor = old_cursor; |
| 5312 | |
Bram Moolenaar | 4647552 | 2010-03-23 17:36:29 +0100 | [diff] [blame] | 5313 | if (sub_nsubs > start_nsubs) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5314 | { |
| 5315 | /* Set the '[ and '] marks. */ |
| 5316 | curbuf->b_op_start.lnum = eap->line1; |
| 5317 | curbuf->b_op_end.lnum = line2; |
| 5318 | curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
| 5319 | |
| 5320 | if (!global_busy) |
| 5321 | { |
Bram Moolenaar | 0faaeb8 | 2012-03-07 14:57:52 +0100 | [diff] [blame] | 5322 | if (!do_ask) /* when interactive leave cursor on the match */ |
| 5323 | { |
| 5324 | if (endcolumn) |
| 5325 | coladvance((colnr_T)MAXCOL); |
| 5326 | else |
| 5327 | beginline(BL_WHITE | BL_FIX); |
| 5328 | } |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5329 | if (!do_sub_msg(do_count) && do_ask) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5330 | MSG(""); |
| 5331 | } |
| 5332 | else |
| 5333 | global_need_beginline = TRUE; |
| 5334 | if (do_print) |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 5335 | print_line(curwin->w_cursor.lnum, do_number, do_list); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5336 | } |
| 5337 | else if (!global_busy) |
| 5338 | { |
| 5339 | if (got_int) /* interrupted */ |
| 5340 | EMSG(_(e_interr)); |
| 5341 | else if (got_match) /* did find something but nothing substituted */ |
| 5342 | MSG(""); |
| 5343 | else if (do_error) /* nothing found */ |
| 5344 | EMSG2(_(e_patnotf2), get_search_pat()); |
| 5345 | } |
| 5346 | |
Bram Moolenaar | 8c4fbd1 | 2013-01-17 18:34:05 +0100 | [diff] [blame] | 5347 | #ifdef FEAT_FOLDING |
| 5348 | if (do_ask && hasAnyFolding(curwin)) |
| 5349 | /* Cursor position may require updating */ |
| 5350 | changed_window_setting(); |
| 5351 | #endif |
| 5352 | |
Bram Moolenaar | 473de61 | 2013-06-08 18:19:48 +0200 | [diff] [blame] | 5353 | vim_regfree(regmatch.regprog); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5354 | } |
| 5355 | |
| 5356 | /* |
| 5357 | * Give message for number of substitutions. |
| 5358 | * Can also be used after a ":global" command. |
| 5359 | * Return TRUE if a message was given. |
| 5360 | */ |
Bram Moolenaar | 8aff23a | 2005-08-19 20:40:30 +0000 | [diff] [blame] | 5361 | int |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5362 | do_sub_msg(count_only) |
| 5363 | int count_only; /* used 'n' flag for ":s" */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5364 | { |
| 5365 | /* |
| 5366 | * Only report substitutions when: |
| 5367 | * - more than 'report' substitutions |
| 5368 | * - command was typed by user, or number of changed lines > 'report' |
| 5369 | * - giving messages is not disabled by 'lazyredraw' |
| 5370 | */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5371 | if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1)) |
| 5372 | || count_only) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5373 | && messaging()) |
| 5374 | { |
| 5375 | if (got_int) |
| 5376 | STRCPY(msg_buf, _("(Interrupted) ")); |
Bram Moolenaar | 0bc380a | 2010-07-10 13:52:13 +0200 | [diff] [blame] | 5377 | else |
| 5378 | *msg_buf = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5379 | if (sub_nsubs == 1) |
Bram Moolenaar | a800b42 | 2010-06-27 01:15:55 +0200 | [diff] [blame] | 5380 | vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5381 | "%s", count_only ? _("1 match") : _("1 substitution")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5382 | else |
Bram Moolenaar | a800b42 | 2010-06-27 01:15:55 +0200 | [diff] [blame] | 5383 | vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5384 | count_only ? _("%ld matches") : _("%ld substitutions"), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5385 | sub_nsubs); |
| 5386 | if (sub_nlines == 1) |
Bram Moolenaar | a800b42 | 2010-06-27 01:15:55 +0200 | [diff] [blame] | 5387 | vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5388 | "%s", _(" on 1 line")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5389 | else |
Bram Moolenaar | a800b42 | 2010-06-27 01:15:55 +0200 | [diff] [blame] | 5390 | vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5391 | _(" on %ld lines"), (long)sub_nlines); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5392 | if (msg(msg_buf)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5393 | /* save message to display it after redraw */ |
Bram Moolenaar | 238a564 | 2006-02-21 22:12:05 +0000 | [diff] [blame] | 5394 | set_keep_msg(msg_buf, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5395 | return TRUE; |
| 5396 | } |
| 5397 | if (got_int) |
| 5398 | { |
| 5399 | EMSG(_(e_interr)); |
| 5400 | return TRUE; |
| 5401 | } |
| 5402 | return FALSE; |
| 5403 | } |
| 5404 | |
| 5405 | /* |
| 5406 | * Execute a global command of the form: |
| 5407 | * |
| 5408 | * g/pattern/X : execute X on all lines where pattern matches |
| 5409 | * v/pattern/X : execute X on all lines where pattern does not match |
| 5410 | * |
| 5411 | * where 'X' is an EX command |
| 5412 | * |
| 5413 | * The command character (as well as the trailing slash) is optional, and |
| 5414 | * is assumed to be 'p' if missing. |
| 5415 | * |
| 5416 | * This is implemented in two passes: first we scan the file for the pattern and |
Bram Moolenaar | 7c0a86b | 2012-09-05 15:15:07 +0200 | [diff] [blame] | 5417 | * set a mark for each line that (not) matches. Secondly we execute the command |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5418 | * for each line that has a mark. This is required because after deleting |
| 5419 | * lines we do not know where to search for the next match. |
| 5420 | */ |
| 5421 | void |
| 5422 | ex_global(eap) |
| 5423 | exarg_T *eap; |
| 5424 | { |
| 5425 | linenr_T lnum; /* line number according to old situation */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5426 | int ndone = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5427 | int type; /* first char of cmd: 'v' or 'g' */ |
| 5428 | char_u *cmd; /* command argument */ |
| 5429 | |
| 5430 | char_u delim; /* delimiter, normally '/' */ |
| 5431 | char_u *pat; |
| 5432 | regmmatch_T regmatch; |
| 5433 | int match; |
| 5434 | int which_pat; |
| 5435 | |
| 5436 | if (global_busy) |
| 5437 | { |
| 5438 | EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */ |
| 5439 | return; |
| 5440 | } |
| 5441 | |
| 5442 | if (eap->forceit) /* ":global!" is like ":vglobal" */ |
| 5443 | type = 'v'; |
| 5444 | else |
| 5445 | type = *eap->cmd; |
| 5446 | cmd = eap->arg; |
| 5447 | which_pat = RE_LAST; /* default: use last used regexp */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5448 | |
| 5449 | /* |
| 5450 | * undocumented vi feature: |
| 5451 | * "\/" and "\?": use previous search pattern. |
| 5452 | * "\&": use previous substitute pattern. |
| 5453 | */ |
| 5454 | if (*cmd == '\\') |
| 5455 | { |
| 5456 | ++cmd; |
| 5457 | if (vim_strchr((char_u *)"/?&", *cmd) == NULL) |
| 5458 | { |
| 5459 | EMSG(_(e_backslash)); |
| 5460 | return; |
| 5461 | } |
| 5462 | if (*cmd == '&') |
| 5463 | which_pat = RE_SUBST; /* use previous substitute pattern */ |
| 5464 | else |
| 5465 | which_pat = RE_SEARCH; /* use previous search pattern */ |
| 5466 | ++cmd; |
| 5467 | pat = (char_u *)""; |
| 5468 | } |
| 5469 | else if (*cmd == NUL) |
| 5470 | { |
| 5471 | EMSG(_("E148: Regular expression missing from global")); |
| 5472 | return; |
| 5473 | } |
| 5474 | else |
| 5475 | { |
| 5476 | delim = *cmd; /* get the delimiter */ |
| 5477 | if (delim) |
| 5478 | ++cmd; /* skip delimiter if there is one */ |
| 5479 | pat = cmd; /* remember start of pattern */ |
| 5480 | cmd = skip_regexp(cmd, delim, p_magic, &eap->arg); |
| 5481 | if (cmd[0] == delim) /* end delimiter found */ |
| 5482 | *cmd++ = NUL; /* replace it with a NUL */ |
| 5483 | } |
| 5484 | |
| 5485 | #ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */ |
| 5486 | if (p_altkeymap && curwin->w_p_rl) |
| 5487 | lrFswap(pat,0); |
| 5488 | #endif |
| 5489 | |
| 5490 | if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, ®match) == FAIL) |
| 5491 | { |
| 5492 | EMSG(_(e_invcmd)); |
| 5493 | return; |
| 5494 | } |
| 5495 | |
| 5496 | /* |
| 5497 | * pass 1: set marks for each (not) matching line |
| 5498 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5499 | for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum) |
| 5500 | { |
| 5501 | /* a match on this line? */ |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 5502 | match = vim_regexec_multi(®match, curwin, curbuf, lnum, |
| 5503 | (colnr_T)0, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5504 | if ((type == 'g' && match) || (type == 'v' && !match)) |
| 5505 | { |
| 5506 | ml_setmarked(lnum); |
| 5507 | ndone++; |
| 5508 | } |
| 5509 | line_breakcheck(); |
| 5510 | } |
| 5511 | |
| 5512 | /* |
| 5513 | * pass 2: execute the command for each line that has been marked |
| 5514 | */ |
| 5515 | if (got_int) |
| 5516 | MSG(_(e_interr)); |
| 5517 | else if (ndone == 0) |
| 5518 | { |
| 5519 | if (type == 'v') |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5520 | smsg((char_u *)_("Pattern found in every line: %s"), pat); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5521 | else |
Bram Moolenaar | c389fd3 | 2013-03-07 16:08:35 +0100 | [diff] [blame] | 5522 | smsg((char_u *)_("Pattern not found: %s"), pat); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5523 | } |
| 5524 | else |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 5525 | { |
| 5526 | #ifdef FEAT_CLIPBOARD |
| 5527 | start_global_changes(); |
| 5528 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5529 | global_exe(cmd); |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 5530 | #ifdef FEAT_CLIPBOARD |
| 5531 | end_global_changes(); |
| 5532 | #endif |
| 5533 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5534 | |
| 5535 | ml_clearmarked(); /* clear rest of the marks */ |
Bram Moolenaar | 473de61 | 2013-06-08 18:19:48 +0200 | [diff] [blame] | 5536 | vim_regfree(regmatch.regprog); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5537 | } |
| 5538 | |
| 5539 | /* |
| 5540 | * Execute "cmd" on lines marked with ml_setmarked(). |
| 5541 | */ |
| 5542 | void |
| 5543 | global_exe(cmd) |
| 5544 | char_u *cmd; |
| 5545 | { |
Bram Moolenaar | bb99322 | 2011-05-10 16:00:47 +0200 | [diff] [blame] | 5546 | linenr_T old_lcount; /* b_ml.ml_line_count before the command */ |
| 5547 | buf_T *old_buf = curbuf; /* remember what buffer we started in */ |
| 5548 | linenr_T lnum; /* line number according to old situation */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5549 | |
| 5550 | /* |
| 5551 | * Set current position only once for a global command. |
| 5552 | * If global_busy is set, setpcmark() will not do anything. |
| 5553 | * If there is an error, global_busy will be incremented. |
| 5554 | */ |
| 5555 | setpcmark(); |
| 5556 | |
| 5557 | /* When the command writes a message, don't overwrite the command. */ |
| 5558 | msg_didout = TRUE; |
| 5559 | |
Bram Moolenaar | d25bc23 | 2010-03-23 17:49:24 +0100 | [diff] [blame] | 5560 | sub_nsubs = 0; |
| 5561 | sub_nlines = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5562 | global_need_beginline = FALSE; |
| 5563 | global_busy = 1; |
| 5564 | old_lcount = curbuf->b_ml.ml_line_count; |
| 5565 | while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1) |
| 5566 | { |
| 5567 | curwin->w_cursor.lnum = lnum; |
| 5568 | curwin->w_cursor.col = 0; |
| 5569 | if (*cmd == NUL || *cmd == '\n') |
| 5570 | do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT); |
| 5571 | else |
| 5572 | do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT); |
| 5573 | ui_breakcheck(); |
| 5574 | } |
| 5575 | |
| 5576 | global_busy = 0; |
| 5577 | if (global_need_beginline) |
| 5578 | beginline(BL_WHITE | BL_FIX); |
| 5579 | else |
| 5580 | check_cursor(); /* cursor may be beyond the end of the line */ |
| 5581 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5582 | /* the cursor may not have moved in the text but a change in a previous |
| 5583 | * line may move it on the screen */ |
| 5584 | changed_line_abv_curs(); |
| 5585 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5586 | /* If it looks like no message was written, allow overwriting the |
| 5587 | * command with the report for number of changes. */ |
| 5588 | if (msg_col == 0 && msg_scrolled == 0) |
| 5589 | msg_didout = FALSE; |
| 5590 | |
Bram Moolenaar | 4566751 | 2007-05-10 19:24:43 +0000 | [diff] [blame] | 5591 | /* If substitutes done, report number of substitutes, otherwise report |
Bram Moolenaar | bb99322 | 2011-05-10 16:00:47 +0200 | [diff] [blame] | 5592 | * number of extra or deleted lines. |
| 5593 | * Don't report extra or deleted lines in the edge case where the buffer |
| 5594 | * we are in after execution is different from the buffer we started in. */ |
| 5595 | if (!do_sub_msg(FALSE) && curbuf == old_buf) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5596 | msgmore(curbuf->b_ml.ml_line_count - old_lcount); |
| 5597 | } |
| 5598 | |
| 5599 | #ifdef FEAT_VIMINFO |
| 5600 | int |
| 5601 | read_viminfo_sub_string(virp, force) |
| 5602 | vir_T *virp; |
| 5603 | int force; |
| 5604 | { |
Bram Moolenaar | 3c2d653 | 2011-02-01 13:48:53 +0100 | [diff] [blame] | 5605 | if (force) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5606 | vim_free(old_sub); |
| 5607 | if (force || old_sub == NULL) |
| 5608 | old_sub = viminfo_readstring(virp, 1, TRUE); |
| 5609 | return viminfo_readline(virp); |
| 5610 | } |
| 5611 | |
| 5612 | void |
| 5613 | write_viminfo_sub_string(fp) |
| 5614 | FILE *fp; |
| 5615 | { |
| 5616 | if (get_viminfo_parameter('/') != 0 && old_sub != NULL) |
| 5617 | { |
Bram Moolenaar | 2f1e050 | 2010-08-13 11:18:02 +0200 | [diff] [blame] | 5618 | fputs(_("\n# Last Substitute String:\n$"), fp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5619 | viminfo_writestring(fp, old_sub); |
| 5620 | } |
| 5621 | } |
| 5622 | #endif /* FEAT_VIMINFO */ |
| 5623 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5624 | #if defined(EXITFREE) || defined(PROTO) |
| 5625 | void |
| 5626 | free_old_sub() |
| 5627 | { |
| 5628 | vim_free(old_sub); |
| 5629 | } |
| 5630 | #endif |
| 5631 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5632 | #if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO) |
| 5633 | /* |
| 5634 | * Set up for a tagpreview. |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5635 | * Return TRUE when it was created. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5636 | */ |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5637 | int |
Bram Moolenaar | d2cec5b | 2006-03-28 21:08:56 +0000 | [diff] [blame] | 5638 | prepare_tagpreview(undo_sync) |
| 5639 | int undo_sync; /* sync undo when leaving the window */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5640 | { |
| 5641 | win_T *wp; |
| 5642 | |
| 5643 | # ifdef FEAT_GUI |
| 5644 | need_mouse_correct = TRUE; |
| 5645 | # endif |
| 5646 | |
| 5647 | /* |
| 5648 | * If there is already a preview window open, use that one. |
| 5649 | */ |
| 5650 | if (!curwin->w_p_pvw) |
| 5651 | { |
| 5652 | for (wp = firstwin; wp != NULL; wp = wp->w_next) |
| 5653 | if (wp->w_p_pvw) |
| 5654 | break; |
| 5655 | if (wp != NULL) |
Bram Moolenaar | d2cec5b | 2006-03-28 21:08:56 +0000 | [diff] [blame] | 5656 | win_enter(wp, undo_sync); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5657 | else |
| 5658 | { |
| 5659 | /* |
| 5660 | * There is no preview window open yet. Create one. |
| 5661 | */ |
| 5662 | if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0) |
| 5663 | == FAIL) |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5664 | return FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5665 | curwin->w_p_pvw = TRUE; |
| 5666 | curwin->w_p_wfh = TRUE; |
Bram Moolenaar | 3368ea2 | 2010-09-21 16:56:35 +0200 | [diff] [blame] | 5667 | RESET_BINDING(curwin); /* don't take over 'scrollbind' |
| 5668 | and 'cursorbind' */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5669 | # ifdef FEAT_DIFF |
| 5670 | curwin->w_p_diff = FALSE; /* no 'diff' */ |
| 5671 | # endif |
| 5672 | # ifdef FEAT_FOLDING |
| 5673 | curwin->w_p_fdc = 0; /* no 'foldcolumn' */ |
| 5674 | # endif |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5675 | return TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5676 | } |
| 5677 | } |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5678 | return FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5679 | } |
| 5680 | |
| 5681 | #endif |
| 5682 | |
| 5683 | |
| 5684 | /* |
| 5685 | * ":help": open a read-only window on a help file |
| 5686 | */ |
| 5687 | void |
| 5688 | ex_help(eap) |
| 5689 | exarg_T *eap; |
| 5690 | { |
| 5691 | char_u *arg; |
| 5692 | char_u *tag; |
| 5693 | FILE *helpfd; /* file descriptor of help file */ |
| 5694 | int n; |
| 5695 | int i; |
| 5696 | #ifdef FEAT_WINDOWS |
| 5697 | win_T *wp; |
| 5698 | #endif |
| 5699 | int num_matches; |
| 5700 | char_u **matches; |
| 5701 | char_u *p; |
| 5702 | int empty_fnum = 0; |
| 5703 | int alt_fnum = 0; |
| 5704 | buf_T *buf; |
| 5705 | #ifdef FEAT_MULTI_LANG |
| 5706 | int len; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5707 | char_u *lang; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5708 | #endif |
Bram Moolenaar | 8f53558 | 2011-09-30 17:30:31 +0200 | [diff] [blame] | 5709 | #ifdef FEAT_FOLDING |
| 5710 | int old_KeyTyped = KeyTyped; |
| 5711 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5712 | |
| 5713 | if (eap != NULL) |
| 5714 | { |
| 5715 | /* |
| 5716 | * A ":help" command ends at the first LF, or at a '|' that is |
| 5717 | * followed by some text. Set nextcmd to the following command. |
| 5718 | */ |
| 5719 | for (arg = eap->arg; *arg; ++arg) |
| 5720 | { |
| 5721 | if (*arg == '\n' || *arg == '\r' |
| 5722 | || (*arg == '|' && arg[1] != NUL && arg[1] != '|')) |
| 5723 | { |
| 5724 | *arg++ = NUL; |
| 5725 | eap->nextcmd = arg; |
| 5726 | break; |
| 5727 | } |
| 5728 | } |
| 5729 | arg = eap->arg; |
| 5730 | |
Bram Moolenaar | 3dbde62 | 2012-04-05 16:05:05 +0200 | [diff] [blame] | 5731 | if (eap->forceit && *arg == NUL && !curbuf->b_help) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5732 | { |
| 5733 | EMSG(_("E478: Don't panic!")); |
| 5734 | return; |
| 5735 | } |
| 5736 | |
| 5737 | if (eap->skip) /* not executing commands */ |
| 5738 | return; |
| 5739 | } |
| 5740 | else |
| 5741 | arg = (char_u *)""; |
| 5742 | |
| 5743 | /* remove trailing blanks */ |
| 5744 | p = arg + STRLEN(arg) - 1; |
| 5745 | while (p > arg && vim_iswhite(*p) && p[-1] != '\\') |
| 5746 | *p-- = NUL; |
| 5747 | |
| 5748 | #ifdef FEAT_MULTI_LANG |
| 5749 | /* Check for a specified language */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5750 | lang = check_help_lang(arg); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5751 | #endif |
| 5752 | |
| 5753 | /* When no argument given go to the index. */ |
| 5754 | if (*arg == NUL) |
| 5755 | arg = (char_u *)"help.txt"; |
| 5756 | |
| 5757 | /* |
| 5758 | * Check if there is a match for the argument. |
| 5759 | */ |
| 5760 | n = find_help_tags(arg, &num_matches, &matches, |
| 5761 | eap != NULL && eap->forceit); |
| 5762 | |
| 5763 | i = 0; |
| 5764 | #ifdef FEAT_MULTI_LANG |
| 5765 | if (n != FAIL && lang != NULL) |
| 5766 | /* Find first item with the requested language. */ |
| 5767 | for (i = 0; i < num_matches; ++i) |
| 5768 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 5769 | len = (int)STRLEN(matches[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5770 | if (len > 3 && matches[i][len - 3] == '@' |
| 5771 | && STRICMP(matches[i] + len - 2, lang) == 0) |
| 5772 | break; |
| 5773 | } |
| 5774 | #endif |
| 5775 | if (i >= num_matches || n == FAIL) |
| 5776 | { |
| 5777 | #ifdef FEAT_MULTI_LANG |
| 5778 | if (lang != NULL) |
| 5779 | EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg); |
| 5780 | else |
| 5781 | #endif |
| 5782 | EMSG2(_("E149: Sorry, no help for %s"), arg); |
| 5783 | if (n != FAIL) |
| 5784 | FreeWild(num_matches, matches); |
| 5785 | return; |
| 5786 | } |
| 5787 | |
| 5788 | /* The first match (in the requested language) is the best match. */ |
| 5789 | tag = vim_strsave(matches[i]); |
| 5790 | FreeWild(num_matches, matches); |
| 5791 | |
| 5792 | #ifdef FEAT_GUI |
| 5793 | need_mouse_correct = TRUE; |
| 5794 | #endif |
| 5795 | |
| 5796 | /* |
| 5797 | * Re-use an existing help window or open a new one. |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5798 | * Always open a new one for ":tab help". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5799 | */ |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5800 | if (!curwin->w_buffer->b_help |
| 5801 | #ifdef FEAT_WINDOWS |
| 5802 | || cmdmod.tab != 0 |
| 5803 | #endif |
| 5804 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5805 | { |
| 5806 | #ifdef FEAT_WINDOWS |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5807 | if (cmdmod.tab != 0) |
| 5808 | wp = NULL; |
| 5809 | else |
| 5810 | for (wp = firstwin; wp != NULL; wp = wp->w_next) |
| 5811 | if (wp->w_buffer != NULL && wp->w_buffer->b_help) |
| 5812 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5813 | if (wp != NULL && wp->w_buffer->b_nwindows > 0) |
| 5814 | win_enter(wp, TRUE); |
| 5815 | else |
| 5816 | #endif |
| 5817 | { |
| 5818 | /* |
| 5819 | * There is no help window yet. |
| 5820 | * Try to open the file specified by the "helpfile" option. |
| 5821 | */ |
| 5822 | if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL) |
| 5823 | { |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5824 | smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5825 | goto erret; |
| 5826 | } |
| 5827 | fclose(helpfd); |
| 5828 | |
| 5829 | #ifdef FEAT_WINDOWS |
| 5830 | /* Split off help window; put it at far top if no position |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5831 | * specified, the current window is vertically split and |
| 5832 | * narrow. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5833 | n = WSP_HELP; |
| 5834 | # ifdef FEAT_VERTSPLIT |
| 5835 | if (cmdmod.split == 0 && curwin->w_width != Columns |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5836 | && curwin->w_width < 80) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5837 | n |= WSP_TOP; |
| 5838 | # endif |
| 5839 | if (win_split(0, n) == FAIL) |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5840 | goto erret; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5841 | #else |
| 5842 | /* use current window */ |
| 5843 | if (!can_abandon(curbuf, FALSE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5844 | goto erret; |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5845 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5846 | |
| 5847 | #ifdef FEAT_WINDOWS |
| 5848 | if (curwin->w_height < p_hh) |
| 5849 | win_setheight((int)p_hh); |
| 5850 | #endif |
| 5851 | |
| 5852 | /* |
| 5853 | * Open help file (do_ecmd() will set b_help flag, readfile() will |
| 5854 | * set b_p_ro flag). |
| 5855 | * Set the alternate file to the previously edited file. |
| 5856 | */ |
| 5857 | alt_fnum = curbuf->b_fnum; |
| 5858 | (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL, |
Bram Moolenaar | 701f7af | 2008-11-15 13:12:07 +0000 | [diff] [blame] | 5859 | ECMD_HIDE + ECMD_SET_HELP, |
| 5860 | #ifdef FEAT_WINDOWS |
| 5861 | NULL /* buffer is still open, don't store info */ |
| 5862 | #else |
| 5863 | curwin |
| 5864 | #endif |
| 5865 | ); |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 5866 | if (!cmdmod.keepalt) |
| 5867 | curwin->w_alt_fnum = alt_fnum; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5868 | empty_fnum = curbuf->b_fnum; |
| 5869 | } |
| 5870 | } |
| 5871 | |
| 5872 | if (!p_im) |
| 5873 | restart_edit = 0; /* don't want insert mode in help file */ |
| 5874 | |
Bram Moolenaar | 8f53558 | 2011-09-30 17:30:31 +0200 | [diff] [blame] | 5875 | #ifdef FEAT_FOLDING |
| 5876 | /* Restore KeyTyped, setting 'filetype=help' may reset it. |
| 5877 | * It is needed for do_tag top open folds under the cursor. */ |
| 5878 | KeyTyped = old_KeyTyped; |
| 5879 | #endif |
| 5880 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5881 | if (tag != NULL) |
| 5882 | do_tag(tag, DT_HELP, 1, FALSE, TRUE); |
| 5883 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 5884 | /* Delete the empty buffer if we're not using it. Careful: autocommands |
| 5885 | * may have jumped to another window, check that the buffer is not in a |
| 5886 | * window. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5887 | if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum) |
| 5888 | { |
| 5889 | buf = buflist_findnr(empty_fnum); |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 5890 | if (buf != NULL && buf->b_nwindows == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5891 | wipe_buffer(buf, TRUE); |
| 5892 | } |
| 5893 | |
| 5894 | /* keep the previous alternate file */ |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 5895 | if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5896 | curwin->w_alt_fnum = alt_fnum; |
| 5897 | |
| 5898 | erret: |
| 5899 | vim_free(tag); |
| 5900 | } |
| 5901 | |
Bram Moolenaar | 5bfa2ed | 2014-09-19 19:39:34 +0200 | [diff] [blame] | 5902 | /* |
Bram Moolenaar | eb21e4c | 2014-09-19 22:05:53 +0200 | [diff] [blame^] | 5903 | * ":helpclose": Close one help window |
Bram Moolenaar | 5bfa2ed | 2014-09-19 19:39:34 +0200 | [diff] [blame] | 5904 | */ |
| 5905 | void |
| 5906 | ex_helpclose(eap) |
| 5907 | exarg_T *eap UNUSED; |
| 5908 | { |
| 5909 | win_T *win; |
| 5910 | |
| 5911 | FOR_ALL_WINDOWS(win) |
| 5912 | { |
| 5913 | if (win->w_buffer->b_help) |
| 5914 | { |
| 5915 | win_close(win, FALSE); |
Bram Moolenaar | eb21e4c | 2014-09-19 22:05:53 +0200 | [diff] [blame^] | 5916 | return; |
Bram Moolenaar | 5bfa2ed | 2014-09-19 19:39:34 +0200 | [diff] [blame] | 5917 | } |
| 5918 | } |
| 5919 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5920 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5921 | #if defined(FEAT_MULTI_LANG) || defined(PROTO) |
| 5922 | /* |
| 5923 | * In an argument search for a language specifiers in the form "@xx". |
| 5924 | * Changes the "@" to NUL if found, and returns a pointer to "xx". |
| 5925 | * Returns NULL if not found. |
| 5926 | */ |
| 5927 | char_u * |
| 5928 | check_help_lang(arg) |
| 5929 | char_u *arg; |
| 5930 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 5931 | int len = (int)STRLEN(arg); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5932 | |
| 5933 | if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2]) |
| 5934 | && ASCII_ISALPHA(arg[len - 1])) |
| 5935 | { |
| 5936 | arg[len - 3] = NUL; /* remove the '@' */ |
| 5937 | return arg + len - 2; |
| 5938 | } |
| 5939 | return NULL; |
| 5940 | } |
| 5941 | #endif |
| 5942 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5943 | /* |
| 5944 | * Return a heuristic indicating how well the given string matches. The |
| 5945 | * smaller the number, the better the match. This is the order of priorities, |
| 5946 | * from best match to worst match: |
| 5947 | * - Match with least alpha-numeric characters is better. |
| 5948 | * - Match with least total characters is better. |
| 5949 | * - Match towards the start is better. |
| 5950 | * - Match starting with "+" is worse (feature instead of command) |
| 5951 | * Assumption is made that the matched_string passed has already been found to |
| 5952 | * match some string for which help is requested. webb. |
| 5953 | */ |
| 5954 | int |
| 5955 | help_heuristic(matched_string, offset, wrong_case) |
| 5956 | char_u *matched_string; |
| 5957 | int offset; /* offset for match */ |
| 5958 | int wrong_case; /* no matching case */ |
| 5959 | { |
| 5960 | int num_letters; |
| 5961 | char_u *p; |
| 5962 | |
| 5963 | num_letters = 0; |
| 5964 | for (p = matched_string; *p; p++) |
| 5965 | if (ASCII_ISALNUM(*p)) |
| 5966 | num_letters++; |
| 5967 | |
| 5968 | /* |
| 5969 | * Multiply the number of letters by 100 to give it a much bigger |
| 5970 | * weighting than the number of characters. |
| 5971 | * If there only is a match while ignoring case, add 5000. |
| 5972 | * If the match starts in the middle of a word, add 10000 to put it |
| 5973 | * somewhere in the last half. |
| 5974 | * If the match is more than 2 chars from the start, multiply by 200 to |
| 5975 | * put it after matches at the start. |
| 5976 | */ |
| 5977 | if (ASCII_ISALNUM(matched_string[offset]) && offset > 0 |
| 5978 | && ASCII_ISALNUM(matched_string[offset - 1])) |
| 5979 | offset += 10000; |
| 5980 | else if (offset > 2) |
| 5981 | offset *= 200; |
| 5982 | if (wrong_case) |
| 5983 | offset += 5000; |
| 5984 | /* Features are less interesting than the subjects themselves, but "+" |
| 5985 | * alone is not a feature. */ |
| 5986 | if (matched_string[0] == '+' && matched_string[1] != NUL) |
| 5987 | offset += 100; |
| 5988 | return (int)(100 * num_letters + STRLEN(matched_string) + offset); |
| 5989 | } |
| 5990 | |
| 5991 | /* |
| 5992 | * Compare functions for qsort() below, that checks the help heuristics number |
| 5993 | * that has been put after the tagname by find_tags(). |
| 5994 | */ |
| 5995 | static int |
| 5996 | #ifdef __BORLANDC__ |
| 5997 | _RTLENTRYF |
| 5998 | #endif |
| 5999 | help_compare(s1, s2) |
| 6000 | const void *s1; |
| 6001 | const void *s2; |
| 6002 | { |
| 6003 | char *p1; |
| 6004 | char *p2; |
| 6005 | |
| 6006 | p1 = *(char **)s1 + strlen(*(char **)s1) + 1; |
| 6007 | p2 = *(char **)s2 + strlen(*(char **)s2) + 1; |
| 6008 | return strcmp(p1, p2); |
| 6009 | } |
| 6010 | |
| 6011 | /* |
| 6012 | * Find all help tags matching "arg", sort them and return in matches[], with |
| 6013 | * the number of matches in num_matches. |
| 6014 | * The matches will be sorted with a "best" match algorithm. |
| 6015 | * When "keep_lang" is TRUE try keeping the language of the current buffer. |
| 6016 | */ |
| 6017 | int |
| 6018 | find_help_tags(arg, num_matches, matches, keep_lang) |
| 6019 | char_u *arg; |
| 6020 | int *num_matches; |
| 6021 | char_u ***matches; |
| 6022 | int keep_lang; |
| 6023 | { |
| 6024 | char_u *s, *d; |
| 6025 | int i; |
| 6026 | static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 6027 | "/*", "/\\*", "\"*", "**", |
Bram Moolenaar | c528b1d | 2013-08-03 13:41:15 +0200 | [diff] [blame] | 6028 | "cpo-*", "/\\(\\)", "/\\%(\\)", |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 6029 | "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
Bram Moolenaar | f4630b6 | 2005-05-20 21:31:17 +0000 | [diff] [blame] | 6030 | "/\\?", "/\\z(\\)", "\\=", ":s\\=", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6031 | "[count]", "[quotex]", "[range]", |
Bram Moolenaar | c467d9b | 2014-02-11 12:15:43 +0100 | [diff] [blame] | 6032 | "[pattern]", "\\|", "\\%$", |
| 6033 | "s/\\~", "s/\\U", "s/\\L", |
| 6034 | "s/\\1", "s/\\2", "s/\\3", "s/\\9"}; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6035 | static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star", |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 6036 | "/star", "/\\\\star", "quotestar", "starstar", |
Bram Moolenaar | c528b1d | 2013-08-03 13:41:15 +0200 | [diff] [blame] | 6037 | "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)", |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 6038 | "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
Bram Moolenaar | f4630b6 | 2005-05-20 21:31:17 +0000 | [diff] [blame] | 6039 | "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6040 | "\\[count]", "\\[quotex]", "\\[range]", |
Bram Moolenaar | c467d9b | 2014-02-11 12:15:43 +0100 | [diff] [blame] | 6041 | "\\[pattern]", "\\\\bar", "/\\\\%\\$", |
Bram Moolenaar | 75a8d74 | 2014-05-07 15:10:21 +0200 | [diff] [blame] | 6042 | "s/\\\\\\~", "s/\\\\U", "s/\\\\L", |
Bram Moolenaar | c467d9b | 2014-02-11 12:15:43 +0100 | [diff] [blame] | 6043 | "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"}; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6044 | int flags; |
| 6045 | |
| 6046 | d = IObuff; /* assume IObuff is long enough! */ |
| 6047 | |
| 6048 | /* |
| 6049 | * Recognize a few exceptions to the rule. Some strings that contain '*' |
| 6050 | * with "star". Otherwise '*' is recognized as a wildcard. |
| 6051 | */ |
Bram Moolenaar | 5fd0ca7 | 2009-05-13 16:56:33 +0000 | [diff] [blame] | 6052 | for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6053 | if (STRCMP(arg, mtable[i]) == 0) |
| 6054 | { |
| 6055 | STRCPY(d, rtable[i]); |
| 6056 | break; |
| 6057 | } |
| 6058 | |
| 6059 | if (i < 0) /* no match in table */ |
| 6060 | { |
| 6061 | /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched. |
| 6062 | * Also replace "\%^" and "\%(", they match every tag too. |
| 6063 | * Also "\zs", "\z1", etc. |
| 6064 | * Also "\@<", "\@=", "\@<=", etc. |
| 6065 | * And also "\_$" and "\_^". */ |
| 6066 | if (arg[0] == '\\' |
| 6067 | && ((arg[1] != NUL && arg[2] == NUL) |
| 6068 | || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL |
| 6069 | && arg[2] != NUL))) |
| 6070 | { |
| 6071 | STRCPY(d, "/\\\\"); |
| 6072 | STRCPY(d + 3, arg + 1); |
| 6073 | /* Check for "/\\_$", should be "/\\_\$" */ |
| 6074 | if (d[3] == '_' && d[4] == '$') |
| 6075 | STRCPY(d + 4, "\\$"); |
| 6076 | } |
| 6077 | else |
| 6078 | { |
Bram Moolenaar | 7c0a86b | 2012-09-05 15:15:07 +0200 | [diff] [blame] | 6079 | /* Replace: |
| 6080 | * "[:...:]" with "\[:...:]" |
| 6081 | * "[++...]" with "\[++...]" |
Bram Moolenaar | 75a8d74 | 2014-05-07 15:10:21 +0200 | [diff] [blame] | 6082 | * "\{" with "\\{" -- matching "} \}" |
Bram Moolenaar | 7c0a86b | 2012-09-05 15:15:07 +0200 | [diff] [blame] | 6083 | */ |
| 6084 | if ((arg[0] == '[' && (arg[1] == ':' |
| 6085 | || (arg[1] == '+' && arg[2] == '+'))) |
| 6086 | || (arg[0] == '\\' && arg[1] == '{')) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6087 | *d++ = '\\'; |
| 6088 | |
| 6089 | for (s = arg; *s; ++s) |
| 6090 | { |
| 6091 | /* |
| 6092 | * Replace "|" with "bar" and '"' with "quote" to match the name of |
| 6093 | * the tags for these commands. |
| 6094 | * Replace "*" with ".*" and "?" with "." to match command line |
| 6095 | * completion. |
| 6096 | * Insert a backslash before '~', '$' and '.' to avoid their |
| 6097 | * special meaning. |
| 6098 | */ |
| 6099 | if (d - IObuff > IOSIZE - 10) /* getting too long!? */ |
| 6100 | break; |
| 6101 | switch (*s) |
| 6102 | { |
| 6103 | case '|': STRCPY(d, "bar"); |
| 6104 | d += 3; |
| 6105 | continue; |
| 6106 | case '"': STRCPY(d, "quote"); |
| 6107 | d += 5; |
| 6108 | continue; |
| 6109 | case '*': *d++ = '.'; |
| 6110 | break; |
| 6111 | case '?': *d++ = '.'; |
| 6112 | continue; |
| 6113 | case '$': |
| 6114 | case '.': |
| 6115 | case '~': *d++ = '\\'; |
| 6116 | break; |
| 6117 | } |
| 6118 | |
| 6119 | /* |
| 6120 | * Replace "^x" by "CTRL-X". Don't do this for "^_" to make |
| 6121 | * ":help i_^_CTRL-D" work. |
| 6122 | * Insert '-' before and after "CTRL-X" when applicable. |
| 6123 | */ |
| 6124 | if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1]) |
| 6125 | || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL))) |
| 6126 | { |
Bram Moolenaar | d82db60 | 2013-08-07 15:24:41 +0200 | [diff] [blame] | 6127 | if (d > IObuff && d[-1] != '_' && d[-1] != '\\') |
| 6128 | *d++ = '_'; /* prepend a '_' to make x_CTRL-x */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6129 | STRCPY(d, "CTRL-"); |
| 6130 | d += 5; |
| 6131 | if (*s < ' ') |
| 6132 | { |
| 6133 | #ifdef EBCDIC |
| 6134 | *d++ = CtrlChar(*s); |
| 6135 | #else |
| 6136 | *d++ = *s + '@'; |
| 6137 | #endif |
| 6138 | if (d[-1] == '\\') |
| 6139 | *d++ = '\\'; /* double a backslash */ |
| 6140 | } |
| 6141 | else |
| 6142 | *d++ = *++s; |
| 6143 | if (s[1] != NUL && s[1] != '_') |
| 6144 | *d++ = '_'; /* append a '_' */ |
| 6145 | continue; |
| 6146 | } |
| 6147 | else if (*s == '^') /* "^" or "CTRL-^" or "^_" */ |
| 6148 | *d++ = '\\'; |
| 6149 | |
| 6150 | /* |
| 6151 | * Insert a backslash before a backslash after a slash, for search |
| 6152 | * pattern tags: "/\|" --> "/\\|". |
| 6153 | */ |
| 6154 | else if (s[0] == '\\' && s[1] != '\\' |
| 6155 | && *arg == '/' && s == arg + 1) |
| 6156 | *d++ = '\\'; |
| 6157 | |
| 6158 | /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in |
| 6159 | * "CTRL-\_CTRL-N" */ |
| 6160 | if (STRNICMP(s, "CTRL-\\_", 7) == 0) |
| 6161 | { |
| 6162 | STRCPY(d, "CTRL-\\\\"); |
| 6163 | d += 7; |
| 6164 | s += 6; |
| 6165 | } |
| 6166 | |
| 6167 | *d++ = *s; |
| 6168 | |
| 6169 | /* |
| 6170 | * If tag starts with ', toss everything after a second '. Fixes |
| 6171 | * CTRL-] on 'option'. (would include the trailing '.'). |
| 6172 | */ |
| 6173 | if (*s == '\'' && s > arg && *arg == '\'') |
| 6174 | break; |
| 6175 | } |
| 6176 | *d = NUL; |
Bram Moolenaar | 720ce53 | 2012-04-25 12:57:28 +0200 | [diff] [blame] | 6177 | |
| 6178 | if (*IObuff == '`') |
| 6179 | { |
| 6180 | if (d > IObuff + 2 && d[-1] == '`') |
| 6181 | { |
| 6182 | /* remove the backticks from `command` */ |
| 6183 | mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); |
| 6184 | d[-2] = NUL; |
| 6185 | } |
| 6186 | else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',') |
| 6187 | { |
| 6188 | /* remove the backticks and comma from `command`, */ |
| 6189 | mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); |
| 6190 | d[-3] = NUL; |
| 6191 | } |
| 6192 | else if (d > IObuff + 4 && d[-3] == '`' |
| 6193 | && d[-2] == '\\' && d[-1] == '.') |
| 6194 | { |
| 6195 | /* remove the backticks and dot from `command`\. */ |
| 6196 | mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); |
| 6197 | d[-4] = NUL; |
| 6198 | } |
| 6199 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6200 | } |
| 6201 | } |
| 6202 | |
| 6203 | *matches = (char_u **)""; |
| 6204 | *num_matches = 0; |
| 6205 | flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE; |
| 6206 | if (keep_lang) |
| 6207 | flags |= TAG_KEEP_LANG; |
Bram Moolenaar | c62e2fe | 2008-08-06 13:03:07 +0000 | [diff] [blame] | 6208 | if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6209 | && *num_matches > 0) |
Bram Moolenaar | c62e2fe | 2008-08-06 13:03:07 +0000 | [diff] [blame] | 6210 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6211 | /* Sort the matches found on the heuristic number that is after the |
| 6212 | * tag name. */ |
| 6213 | qsort((void *)*matches, (size_t)*num_matches, |
| 6214 | sizeof(char_u *), help_compare); |
Bram Moolenaar | c62e2fe | 2008-08-06 13:03:07 +0000 | [diff] [blame] | 6215 | /* Delete more than TAG_MANY to reduce the size of the listing. */ |
| 6216 | while (*num_matches > TAG_MANY) |
| 6217 | vim_free((*matches)[--*num_matches]); |
| 6218 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6219 | return OK; |
| 6220 | } |
| 6221 | |
| 6222 | /* |
| 6223 | * After reading a help file: May cleanup a help buffer when syntax |
| 6224 | * highlighting is not used. |
| 6225 | */ |
| 6226 | void |
| 6227 | fix_help_buffer() |
| 6228 | { |
| 6229 | linenr_T lnum; |
| 6230 | char_u *line; |
| 6231 | int in_example = FALSE; |
| 6232 | int len; |
Bram Moolenaar | 667b4d2 | 2011-10-20 18:17:42 +0200 | [diff] [blame] | 6233 | char_u *fname; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6234 | char_u *p; |
| 6235 | char_u *rt; |
| 6236 | int mustfree; |
| 6237 | |
| 6238 | /* set filetype to "help". */ |
| 6239 | set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL); |
| 6240 | |
| 6241 | #ifdef FEAT_SYN_HL |
Bram Moolenaar | 860cae1 | 2010-06-05 23:22:07 +0200 | [diff] [blame] | 6242 | if (!syntax_present(curwin)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6243 | #endif |
| 6244 | { |
| 6245 | for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) |
| 6246 | { |
| 6247 | line = ml_get_buf(curbuf, lnum, FALSE); |
| 6248 | len = (int)STRLEN(line); |
| 6249 | if (in_example && len > 0 && !vim_iswhite(line[0])) |
| 6250 | { |
| 6251 | /* End of example: non-white or '<' in first column. */ |
| 6252 | if (line[0] == '<') |
| 6253 | { |
| 6254 | /* blank-out a '<' in the first column */ |
| 6255 | line = ml_get_buf(curbuf, lnum, TRUE); |
| 6256 | line[0] = ' '; |
| 6257 | } |
| 6258 | in_example = FALSE; |
| 6259 | } |
| 6260 | if (!in_example && len > 0) |
| 6261 | { |
| 6262 | if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' ')) |
| 6263 | { |
| 6264 | /* blank-out a '>' in the last column (start of example) */ |
| 6265 | line = ml_get_buf(curbuf, lnum, TRUE); |
| 6266 | line[len - 1] = ' '; |
| 6267 | in_example = TRUE; |
| 6268 | } |
| 6269 | else if (line[len - 1] == '~') |
| 6270 | { |
| 6271 | /* blank-out a '~' at the end of line (header marker) */ |
| 6272 | line = ml_get_buf(curbuf, lnum, TRUE); |
| 6273 | line[len - 1] = ' '; |
| 6274 | } |
| 6275 | } |
| 6276 | } |
| 6277 | } |
| 6278 | |
| 6279 | /* |
Bram Moolenaar | 667b4d2 | 2011-10-20 18:17:42 +0200 | [diff] [blame] | 6280 | * In the "help.txt" and "help.abx" file, add the locally added help |
| 6281 | * files. This uses the very first line in the help file. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6282 | */ |
Bram Moolenaar | 667b4d2 | 2011-10-20 18:17:42 +0200 | [diff] [blame] | 6283 | fname = gettail(curbuf->b_fname); |
| 6284 | if (fnamecmp(fname, "help.txt") == 0 |
| 6285 | #ifdef FEAT_MULTI_LANG |
| 6286 | || (fnamencmp(fname, "help.", 5) == 0 |
| 6287 | && ASCII_ISALPHA(fname[5]) |
| 6288 | && ASCII_ISALPHA(fname[6]) |
| 6289 | && TOLOWER_ASC(fname[7]) == 'x' |
| 6290 | && fname[8] == NUL) |
| 6291 | #endif |
| 6292 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6293 | { |
| 6294 | for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum) |
| 6295 | { |
| 6296 | line = ml_get_buf(curbuf, lnum, FALSE); |
Bram Moolenaar | 667b4d2 | 2011-10-20 18:17:42 +0200 | [diff] [blame] | 6297 | if (strstr((char *)line, "*local-additions*") == NULL) |
| 6298 | continue; |
| 6299 | |
| 6300 | /* Go through all directories in 'runtimepath', skipping |
| 6301 | * $VIMRUNTIME. */ |
| 6302 | p = p_rtp; |
| 6303 | while (*p != NUL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6304 | { |
Bram Moolenaar | 667b4d2 | 2011-10-20 18:17:42 +0200 | [diff] [blame] | 6305 | copy_option_part(&p, NameBuff, MAXPATHL, ","); |
| 6306 | mustfree = FALSE; |
| 6307 | rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree); |
| 6308 | if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6309 | { |
Bram Moolenaar | 667b4d2 | 2011-10-20 18:17:42 +0200 | [diff] [blame] | 6310 | int fcount; |
| 6311 | char_u **fnames; |
| 6312 | FILE *fd; |
| 6313 | char_u *s; |
| 6314 | int fi; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6315 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 667b4d2 | 2011-10-20 18:17:42 +0200 | [diff] [blame] | 6316 | vimconv_T vc; |
| 6317 | char_u *cp; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6318 | #endif |
| 6319 | |
Bram Moolenaar | 667b4d2 | 2011-10-20 18:17:42 +0200 | [diff] [blame] | 6320 | /* Find all "doc/ *.txt" files in this directory. */ |
| 6321 | add_pathsep(NameBuff); |
| 6322 | #ifdef FEAT_MULTI_LANG |
| 6323 | STRCAT(NameBuff, "doc/*.??[tx]"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6324 | #else |
Bram Moolenaar | 667b4d2 | 2011-10-20 18:17:42 +0200 | [diff] [blame] | 6325 | STRCAT(NameBuff, "doc/*.txt"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6326 | #endif |
Bram Moolenaar | 667b4d2 | 2011-10-20 18:17:42 +0200 | [diff] [blame] | 6327 | if (gen_expand_wildcards(1, &NameBuff, &fcount, |
| 6328 | &fnames, EW_FILE|EW_SILENT) == OK |
| 6329 | && fcount > 0) |
| 6330 | { |
| 6331 | #ifdef FEAT_MULTI_LANG |
| 6332 | int i1; |
| 6333 | int i2; |
| 6334 | char_u *f1; |
| 6335 | char_u *f2; |
| 6336 | char_u *t1; |
| 6337 | char_u *e1; |
| 6338 | char_u *e2; |
| 6339 | |
| 6340 | /* If foo.abx is found use it instead of foo.txt in |
| 6341 | * the same directory. */ |
| 6342 | for (i1 = 0; i1 < fcount; ++i1) |
| 6343 | { |
| 6344 | for (i2 = 0; i2 < fcount; ++i2) |
| 6345 | { |
| 6346 | if (i1 == i2) |
| 6347 | continue; |
| 6348 | if (fnames[i1] == NULL || fnames[i2] == NULL) |
| 6349 | continue; |
| 6350 | f1 = fnames[i1]; |
| 6351 | f2 = fnames[i2]; |
| 6352 | t1 = gettail(f1); |
| 6353 | if (fnamencmp(f1, f2, t1 - f1) != 0) |
| 6354 | continue; |
| 6355 | e1 = vim_strrchr(t1, '.'); |
| 6356 | e2 = vim_strrchr(gettail(f2), '.'); |
| 6357 | if (e1 == NUL || e2 == NUL) |
| 6358 | continue; |
| 6359 | if (fnamecmp(e1, ".txt") != 0 |
| 6360 | && fnamecmp(e1, fname + 4) != 0) |
| 6361 | { |
| 6362 | /* Not .txt and not .abx, remove it. */ |
| 6363 | vim_free(fnames[i1]); |
| 6364 | fnames[i1] = NULL; |
| 6365 | continue; |
| 6366 | } |
| 6367 | if (fnamencmp(f1, f2, e1 - f1) != 0) |
| 6368 | continue; |
| 6369 | if (fnamecmp(e1, ".txt") == 0 |
| 6370 | && fnamecmp(e2, fname + 4) == 0) |
| 6371 | { |
| 6372 | /* use .abx instead of .txt */ |
| 6373 | vim_free(fnames[i1]); |
| 6374 | fnames[i1] = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6375 | } |
| 6376 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6377 | } |
Bram Moolenaar | 667b4d2 | 2011-10-20 18:17:42 +0200 | [diff] [blame] | 6378 | #endif |
| 6379 | for (fi = 0; fi < fcount; ++fi) |
| 6380 | { |
| 6381 | if (fnames[fi] == NULL) |
| 6382 | continue; |
| 6383 | fd = mch_fopen((char *)fnames[fi], "r"); |
| 6384 | if (fd != NULL) |
| 6385 | { |
| 6386 | vim_fgets(IObuff, IOSIZE, fd); |
| 6387 | if (IObuff[0] == '*' |
| 6388 | && (s = vim_strchr(IObuff + 1, '*')) |
| 6389 | != NULL) |
| 6390 | { |
| 6391 | #ifdef FEAT_MBYTE |
| 6392 | int this_utf = MAYBE; |
| 6393 | #endif |
| 6394 | /* Change tag definition to a |
| 6395 | * reference and remove <CR>/<NL>. */ |
| 6396 | IObuff[0] = '|'; |
| 6397 | *s = '|'; |
| 6398 | while (*s != NUL) |
| 6399 | { |
| 6400 | if (*s == '\r' || *s == '\n') |
| 6401 | *s = NUL; |
| 6402 | #ifdef FEAT_MBYTE |
| 6403 | /* The text is utf-8 when a byte |
| 6404 | * above 127 is found and no |
| 6405 | * illegal byte sequence is found. |
| 6406 | */ |
| 6407 | if (*s >= 0x80 && this_utf != FALSE) |
| 6408 | { |
| 6409 | int l; |
| 6410 | |
| 6411 | this_utf = TRUE; |
| 6412 | l = utf_ptr2len(s); |
| 6413 | if (l == 1) |
| 6414 | this_utf = FALSE; |
| 6415 | s += l - 1; |
| 6416 | } |
| 6417 | #endif |
| 6418 | ++s; |
| 6419 | } |
| 6420 | #ifdef FEAT_MBYTE |
| 6421 | /* The help file is latin1 or utf-8; |
| 6422 | * conversion to the current |
| 6423 | * 'encoding' may be required. */ |
| 6424 | vc.vc_type = CONV_NONE; |
| 6425 | convert_setup(&vc, (char_u *)( |
| 6426 | this_utf == TRUE ? "utf-8" |
| 6427 | : "latin1"), p_enc); |
| 6428 | if (vc.vc_type == CONV_NONE) |
| 6429 | /* No conversion needed. */ |
| 6430 | cp = IObuff; |
| 6431 | else |
| 6432 | { |
| 6433 | /* Do the conversion. If it fails |
| 6434 | * use the unconverted text. */ |
| 6435 | cp = string_convert(&vc, IObuff, |
| 6436 | NULL); |
| 6437 | if (cp == NULL) |
| 6438 | cp = IObuff; |
| 6439 | } |
| 6440 | convert_setup(&vc, NULL, NULL); |
| 6441 | |
| 6442 | ml_append(lnum, cp, (colnr_T)0, FALSE); |
| 6443 | if (cp != IObuff) |
| 6444 | vim_free(cp); |
| 6445 | #else |
| 6446 | ml_append(lnum, IObuff, (colnr_T)0, |
| 6447 | FALSE); |
| 6448 | #endif |
| 6449 | ++lnum; |
| 6450 | } |
| 6451 | fclose(fd); |
| 6452 | } |
| 6453 | } |
| 6454 | FreeWild(fcount, fnames); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6455 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6456 | } |
Bram Moolenaar | 667b4d2 | 2011-10-20 18:17:42 +0200 | [diff] [blame] | 6457 | if (mustfree) |
| 6458 | vim_free(rt); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6459 | } |
Bram Moolenaar | 667b4d2 | 2011-10-20 18:17:42 +0200 | [diff] [blame] | 6460 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6461 | } |
| 6462 | } |
| 6463 | } |
| 6464 | |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 6465 | /* |
| 6466 | * ":exusage" |
| 6467 | */ |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 6468 | void |
| 6469 | ex_exusage(eap) |
Bram Moolenaar | 0c094b9 | 2009-05-14 20:20:33 +0000 | [diff] [blame] | 6470 | exarg_T *eap UNUSED; |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 6471 | { |
| 6472 | do_cmdline_cmd((char_u *)"help ex-cmd-index"); |
| 6473 | } |
| 6474 | |
| 6475 | /* |
| 6476 | * ":viusage" |
| 6477 | */ |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 6478 | void |
| 6479 | ex_viusage(eap) |
Bram Moolenaar | 0c094b9 | 2009-05-14 20:20:33 +0000 | [diff] [blame] | 6480 | exarg_T *eap UNUSED; |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 6481 | { |
| 6482 | do_cmdline_cmd((char_u *)"help normal-index"); |
| 6483 | } |
| 6484 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6485 | #if defined(FEAT_EX_EXTRA) || defined(PROTO) |
Bram Moolenaar | 426e5c9 | 2008-01-11 20:02:02 +0000 | [diff] [blame] | 6486 | static void helptags_one __ARGS((char_u *dir, char_u *ext, char_u *lang, int add_help_tags)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6487 | |
| 6488 | /* |
| 6489 | * ":helptags" |
| 6490 | */ |
| 6491 | void |
| 6492 | ex_helptags(eap) |
| 6493 | exarg_T *eap; |
| 6494 | { |
| 6495 | garray_T ga; |
| 6496 | int i, j; |
| 6497 | int len; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6498 | #ifdef FEAT_MULTI_LANG |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6499 | char_u lang[2]; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6500 | #endif |
Bram Moolenaar | 0e25314 | 2008-01-13 12:31:34 +0000 | [diff] [blame] | 6501 | expand_T xpc; |
| 6502 | char_u *dirname; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6503 | char_u ext[5]; |
| 6504 | char_u fname[8]; |
| 6505 | int filecount; |
| 6506 | char_u **files; |
Bram Moolenaar | 426e5c9 | 2008-01-11 20:02:02 +0000 | [diff] [blame] | 6507 | int add_help_tags = FALSE; |
| 6508 | |
| 6509 | /* Check for ":helptags ++t {dir}". */ |
| 6510 | if (STRNCMP(eap->arg, "++t", 3) == 0 && vim_iswhite(eap->arg[3])) |
| 6511 | { |
| 6512 | add_help_tags = TRUE; |
| 6513 | eap->arg = skipwhite(eap->arg + 3); |
| 6514 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6515 | |
Bram Moolenaar | 0e25314 | 2008-01-13 12:31:34 +0000 | [diff] [blame] | 6516 | ExpandInit(&xpc); |
| 6517 | xpc.xp_context = EXPAND_DIRECTORIES; |
| 6518 | dirname = ExpandOne(&xpc, eap->arg, NULL, |
| 6519 | WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE); |
| 6520 | if (dirname == NULL || !mch_isdir(dirname)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6521 | { |
| 6522 | EMSG2(_("E150: Not a directory: %s"), eap->arg); |
| 6523 | return; |
| 6524 | } |
| 6525 | |
| 6526 | #ifdef FEAT_MULTI_LANG |
Bram Moolenaar | 442b5c4 | 2012-11-28 16:06:22 +0100 | [diff] [blame] | 6527 | /* Get a list of all files in the help directory and in subdirectories. */ |
Bram Moolenaar | 0e25314 | 2008-01-13 12:31:34 +0000 | [diff] [blame] | 6528 | STRCPY(NameBuff, dirname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6529 | add_pathsep(NameBuff); |
Bram Moolenaar | 442b5c4 | 2012-11-28 16:06:22 +0100 | [diff] [blame] | 6530 | STRCAT(NameBuff, "**"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6531 | if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, |
| 6532 | EW_FILE|EW_SILENT) == FAIL |
| 6533 | || filecount == 0) |
| 6534 | { |
| 6535 | EMSG2("E151: No match: %s", NameBuff); |
Bram Moolenaar | 0e25314 | 2008-01-13 12:31:34 +0000 | [diff] [blame] | 6536 | vim_free(dirname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6537 | return; |
| 6538 | } |
| 6539 | |
| 6540 | /* Go over all files in the directory to find out what languages are |
| 6541 | * present. */ |
| 6542 | ga_init2(&ga, 1, 10); |
| 6543 | for (i = 0; i < filecount; ++i) |
| 6544 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 6545 | len = (int)STRLEN(files[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6546 | if (len > 4) |
| 6547 | { |
| 6548 | if (STRICMP(files[i] + len - 4, ".txt") == 0) |
| 6549 | { |
| 6550 | /* ".txt" -> language "en" */ |
| 6551 | lang[0] = 'e'; |
| 6552 | lang[1] = 'n'; |
| 6553 | } |
| 6554 | else if (files[i][len - 4] == '.' |
| 6555 | && ASCII_ISALPHA(files[i][len - 3]) |
| 6556 | && ASCII_ISALPHA(files[i][len - 2]) |
| 6557 | && TOLOWER_ASC(files[i][len - 1]) == 'x') |
| 6558 | { |
| 6559 | /* ".abx" -> language "ab" */ |
| 6560 | lang[0] = TOLOWER_ASC(files[i][len - 3]); |
| 6561 | lang[1] = TOLOWER_ASC(files[i][len - 2]); |
| 6562 | } |
| 6563 | else |
| 6564 | continue; |
| 6565 | |
| 6566 | /* Did we find this language already? */ |
| 6567 | for (j = 0; j < ga.ga_len; j += 2) |
| 6568 | if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0) |
| 6569 | break; |
| 6570 | if (j == ga.ga_len) |
| 6571 | { |
| 6572 | /* New language, add it. */ |
| 6573 | if (ga_grow(&ga, 2) == FAIL) |
| 6574 | break; |
| 6575 | ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0]; |
| 6576 | ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6577 | } |
| 6578 | } |
| 6579 | } |
| 6580 | |
| 6581 | /* |
| 6582 | * Loop over the found languages to generate a tags file for each one. |
| 6583 | */ |
| 6584 | for (j = 0; j < ga.ga_len; j += 2) |
| 6585 | { |
| 6586 | STRCPY(fname, "tags-xx"); |
| 6587 | fname[5] = ((char_u *)ga.ga_data)[j]; |
| 6588 | fname[6] = ((char_u *)ga.ga_data)[j + 1]; |
| 6589 | if (fname[5] == 'e' && fname[6] == 'n') |
| 6590 | { |
| 6591 | /* English is an exception: use ".txt" and "tags". */ |
| 6592 | fname[4] = NUL; |
| 6593 | STRCPY(ext, ".txt"); |
| 6594 | } |
| 6595 | else |
| 6596 | { |
| 6597 | /* Language "ab" uses ".abx" and "tags-ab". */ |
| 6598 | STRCPY(ext, ".xxx"); |
| 6599 | ext[1] = fname[5]; |
| 6600 | ext[2] = fname[6]; |
| 6601 | } |
Bram Moolenaar | 0e25314 | 2008-01-13 12:31:34 +0000 | [diff] [blame] | 6602 | helptags_one(dirname, ext, fname, add_help_tags); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6603 | } |
| 6604 | |
| 6605 | ga_clear(&ga); |
| 6606 | FreeWild(filecount, files); |
| 6607 | |
| 6608 | #else |
| 6609 | /* No language support, just use "*.txt" and "tags". */ |
Bram Moolenaar | 0e25314 | 2008-01-13 12:31:34 +0000 | [diff] [blame] | 6610 | helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6611 | #endif |
Bram Moolenaar | 0e25314 | 2008-01-13 12:31:34 +0000 | [diff] [blame] | 6612 | vim_free(dirname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6613 | } |
| 6614 | |
| 6615 | static void |
Bram Moolenaar | 426e5c9 | 2008-01-11 20:02:02 +0000 | [diff] [blame] | 6616 | helptags_one(dir, ext, tagfname, add_help_tags) |
| 6617 | char_u *dir; /* doc directory */ |
| 6618 | char_u *ext; /* suffix, ".txt", ".itx", ".frx", etc. */ |
Bram Moolenaar | 442b5c4 | 2012-11-28 16:06:22 +0100 | [diff] [blame] | 6619 | char_u *tagfname; /* "tags" for English, "tags-fr" for French. */ |
| 6620 | int add_help_tags; /* add "help-tags" tag */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6621 | { |
| 6622 | FILE *fd_tags; |
| 6623 | FILE *fd; |
| 6624 | garray_T ga; |
| 6625 | int filecount; |
| 6626 | char_u **files; |
| 6627 | char_u *p1, *p2; |
| 6628 | int fi; |
| 6629 | char_u *s; |
| 6630 | int i; |
| 6631 | char_u *fname; |
Bram Moolenaar | 442b5c4 | 2012-11-28 16:06:22 +0100 | [diff] [blame] | 6632 | int dirlen; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6633 | # ifdef FEAT_MBYTE |
| 6634 | int utf8 = MAYBE; |
| 6635 | int this_utf8; |
| 6636 | int firstline; |
| 6637 | int mix = FALSE; /* detected mixed encodings */ |
| 6638 | # endif |
| 6639 | |
| 6640 | /* |
| 6641 | * Find all *.txt files. |
| 6642 | */ |
Bram Moolenaar | 862cfa3 | 2012-11-29 20:10:00 +0100 | [diff] [blame] | 6643 | dirlen = (int)STRLEN(dir); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6644 | STRCPY(NameBuff, dir); |
Bram Moolenaar | 442b5c4 | 2012-11-28 16:06:22 +0100 | [diff] [blame] | 6645 | STRCAT(NameBuff, "/**/*"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6646 | STRCAT(NameBuff, ext); |
| 6647 | if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, |
| 6648 | EW_FILE|EW_SILENT) == FAIL |
| 6649 | || filecount == 0) |
| 6650 | { |
| 6651 | if (!got_int) |
| 6652 | EMSG2("E151: No match: %s", NameBuff); |
| 6653 | return; |
| 6654 | } |
| 6655 | |
| 6656 | /* |
| 6657 | * Open the tags file for writing. |
| 6658 | * Do this before scanning through all the files. |
| 6659 | */ |
| 6660 | STRCPY(NameBuff, dir); |
| 6661 | add_pathsep(NameBuff); |
| 6662 | STRCAT(NameBuff, tagfname); |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 6663 | fd_tags = mch_fopen((char *)NameBuff, "w"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6664 | if (fd_tags == NULL) |
| 6665 | { |
| 6666 | EMSG2(_("E152: Cannot open %s for writing"), NameBuff); |
| 6667 | FreeWild(filecount, files); |
| 6668 | return; |
| 6669 | } |
| 6670 | |
| 6671 | /* |
Bram Moolenaar | 426e5c9 | 2008-01-11 20:02:02 +0000 | [diff] [blame] | 6672 | * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc" |
| 6673 | * add the "help-tags" tag. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6674 | */ |
| 6675 | ga_init2(&ga, (int)sizeof(char_u *), 100); |
Bram Moolenaar | 426e5c9 | 2008-01-11 20:02:02 +0000 | [diff] [blame] | 6676 | if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc", |
| 6677 | dir, FALSE) == FPC_SAME) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6678 | { |
| 6679 | if (ga_grow(&ga, 1) == FAIL) |
| 6680 | got_int = TRUE; |
| 6681 | else |
| 6682 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 6683 | s = alloc(18 + (unsigned)STRLEN(tagfname)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6684 | if (s == NULL) |
| 6685 | got_int = TRUE; |
| 6686 | else |
| 6687 | { |
| 6688 | sprintf((char *)s, "help-tags\t%s\t1\n", tagfname); |
| 6689 | ((char_u **)ga.ga_data)[ga.ga_len] = s; |
| 6690 | ++ga.ga_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6691 | } |
| 6692 | } |
| 6693 | } |
| 6694 | |
| 6695 | /* |
| 6696 | * Go over all the files and extract the tags. |
| 6697 | */ |
| 6698 | for (fi = 0; fi < filecount && !got_int; ++fi) |
| 6699 | { |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 6700 | fd = mch_fopen((char *)files[fi], "r"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6701 | if (fd == NULL) |
| 6702 | { |
| 6703 | EMSG2(_("E153: Unable to open %s for reading"), files[fi]); |
| 6704 | continue; |
| 6705 | } |
Bram Moolenaar | 442b5c4 | 2012-11-28 16:06:22 +0100 | [diff] [blame] | 6706 | fname = files[fi] + dirlen + 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6707 | |
| 6708 | # ifdef FEAT_MBYTE |
| 6709 | firstline = TRUE; |
| 6710 | # endif |
| 6711 | while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) |
| 6712 | { |
| 6713 | # ifdef FEAT_MBYTE |
| 6714 | if (firstline) |
| 6715 | { |
| 6716 | /* Detect utf-8 file by a non-ASCII char in the first line. */ |
| 6717 | this_utf8 = MAYBE; |
| 6718 | for (s = IObuff; *s != NUL; ++s) |
| 6719 | if (*s >= 0x80) |
| 6720 | { |
| 6721 | int l; |
| 6722 | |
| 6723 | this_utf8 = TRUE; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 6724 | l = utf_ptr2len(s); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6725 | if (l == 1) |
| 6726 | { |
| 6727 | /* Illegal UTF-8 byte sequence. */ |
| 6728 | this_utf8 = FALSE; |
| 6729 | break; |
| 6730 | } |
| 6731 | s += l - 1; |
| 6732 | } |
| 6733 | if (this_utf8 == MAYBE) /* only ASCII characters found */ |
| 6734 | this_utf8 = FALSE; |
| 6735 | if (utf8 == MAYBE) /* first file */ |
| 6736 | utf8 = this_utf8; |
| 6737 | else if (utf8 != this_utf8) |
| 6738 | { |
| 6739 | EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]); |
| 6740 | mix = !got_int; |
| 6741 | got_int = TRUE; |
| 6742 | } |
| 6743 | firstline = FALSE; |
| 6744 | } |
| 6745 | # endif |
| 6746 | p1 = vim_strchr(IObuff, '*'); /* find first '*' */ |
| 6747 | while (p1 != NULL) |
| 6748 | { |
Bram Moolenaar | a0149c7 | 2012-05-18 16:24:11 +0200 | [diff] [blame] | 6749 | /* Use vim_strbyte() instead of vim_strchr() so that when |
| 6750 | * 'encoding' is dbcs it still works, don't find '*' in the |
| 6751 | * second byte. */ |
| 6752 | p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6753 | if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */ |
| 6754 | { |
| 6755 | for (s = p1 + 1; s < p2; ++s) |
| 6756 | if (*s == ' ' || *s == '\t' || *s == '|') |
| 6757 | break; |
| 6758 | |
| 6759 | /* |
| 6760 | * Only accept a *tag* when it consists of valid |
| 6761 | * characters, there is white space before it and is |
| 6762 | * followed by a white character or end-of-line. |
| 6763 | */ |
| 6764 | if (s == p2 |
| 6765 | && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t') |
| 6766 | && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL |
| 6767 | || s[1] == '\0')) |
| 6768 | { |
| 6769 | *p2 = '\0'; |
| 6770 | ++p1; |
| 6771 | if (ga_grow(&ga, 1) == FAIL) |
| 6772 | { |
| 6773 | got_int = TRUE; |
| 6774 | break; |
| 6775 | } |
| 6776 | s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2)); |
| 6777 | if (s == NULL) |
| 6778 | { |
| 6779 | got_int = TRUE; |
| 6780 | break; |
| 6781 | } |
| 6782 | ((char_u **)ga.ga_data)[ga.ga_len] = s; |
| 6783 | ++ga.ga_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6784 | sprintf((char *)s, "%s\t%s", p1, fname); |
| 6785 | |
| 6786 | /* find next '*' */ |
| 6787 | p2 = vim_strchr(p2 + 1, '*'); |
| 6788 | } |
| 6789 | } |
| 6790 | p1 = p2; |
| 6791 | } |
| 6792 | line_breakcheck(); |
| 6793 | } |
| 6794 | |
| 6795 | fclose(fd); |
| 6796 | } |
| 6797 | |
| 6798 | FreeWild(filecount, files); |
| 6799 | |
| 6800 | if (!got_int) |
| 6801 | { |
| 6802 | /* |
| 6803 | * Sort the tags. |
| 6804 | */ |
| 6805 | sort_strings((char_u **)ga.ga_data, ga.ga_len); |
| 6806 | |
| 6807 | /* |
| 6808 | * Check for duplicates. |
| 6809 | */ |
| 6810 | for (i = 1; i < ga.ga_len; ++i) |
| 6811 | { |
| 6812 | p1 = ((char_u **)ga.ga_data)[i - 1]; |
| 6813 | p2 = ((char_u **)ga.ga_data)[i]; |
| 6814 | while (*p1 == *p2) |
| 6815 | { |
| 6816 | if (*p2 == '\t') |
| 6817 | { |
| 6818 | *p2 = NUL; |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 6819 | vim_snprintf((char *)NameBuff, MAXPATHL, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6820 | _("E154: Duplicate tag \"%s\" in file %s/%s"), |
| 6821 | ((char_u **)ga.ga_data)[i], dir, p2 + 1); |
| 6822 | EMSG(NameBuff); |
| 6823 | *p2 = '\t'; |
| 6824 | break; |
| 6825 | } |
| 6826 | ++p1; |
| 6827 | ++p2; |
| 6828 | } |
| 6829 | } |
| 6830 | |
| 6831 | # ifdef FEAT_MBYTE |
| 6832 | if (utf8 == TRUE) |
| 6833 | fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n"); |
| 6834 | # endif |
| 6835 | |
| 6836 | /* |
| 6837 | * Write the tags into the file. |
| 6838 | */ |
| 6839 | for (i = 0; i < ga.ga_len; ++i) |
| 6840 | { |
| 6841 | s = ((char_u **)ga.ga_data)[i]; |
Bram Moolenaar | f621048 | 2007-07-25 20:56:39 +0000 | [diff] [blame] | 6842 | if (STRNCMP(s, "help-tags\t", 10) == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6843 | /* help-tags entry was added in formatted form */ |
Bram Moolenaar | f621048 | 2007-07-25 20:56:39 +0000 | [diff] [blame] | 6844 | fputs((char *)s, fd_tags); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6845 | else |
| 6846 | { |
| 6847 | fprintf(fd_tags, "%s\t/*", s); |
| 6848 | for (p1 = s; *p1 != '\t'; ++p1) |
| 6849 | { |
| 6850 | /* insert backslash before '\\' and '/' */ |
| 6851 | if (*p1 == '\\' || *p1 == '/') |
| 6852 | putc('\\', fd_tags); |
| 6853 | putc(*p1, fd_tags); |
| 6854 | } |
| 6855 | fprintf(fd_tags, "*\n"); |
| 6856 | } |
| 6857 | } |
| 6858 | } |
| 6859 | #ifdef FEAT_MBYTE |
| 6860 | if (mix) |
| 6861 | got_int = FALSE; /* continue with other languages */ |
| 6862 | #endif |
| 6863 | |
| 6864 | for (i = 0; i < ga.ga_len; ++i) |
| 6865 | vim_free(((char_u **)ga.ga_data)[i]); |
| 6866 | ga_clear(&ga); |
| 6867 | fclose(fd_tags); /* there is no check for an error... */ |
| 6868 | } |
| 6869 | #endif |
| 6870 | |
| 6871 | #if defined(FEAT_SIGNS) || defined(PROTO) |
| 6872 | |
| 6873 | /* |
| 6874 | * Struct to hold the sign properties. |
| 6875 | */ |
| 6876 | typedef struct sign sign_T; |
| 6877 | |
| 6878 | struct sign |
| 6879 | { |
| 6880 | sign_T *sn_next; /* next sign in list */ |
Bram Moolenaar | f75d498 | 2010-10-15 20:20:05 +0200 | [diff] [blame] | 6881 | int sn_typenr; /* type number of sign */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6882 | char_u *sn_name; /* name of sign */ |
| 6883 | char_u *sn_icon; /* name of pixmap */ |
| 6884 | #ifdef FEAT_SIGN_ICONS |
| 6885 | void *sn_image; /* icon image */ |
| 6886 | #endif |
| 6887 | char_u *sn_text; /* text used instead of pixmap */ |
| 6888 | int sn_line_hl; /* highlight ID for line */ |
| 6889 | int sn_text_hl; /* highlight ID for text */ |
| 6890 | }; |
| 6891 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6892 | static sign_T *first_sign = NULL; |
Bram Moolenaar | b60574b | 2010-10-14 21:29:37 +0200 | [diff] [blame] | 6893 | static int next_sign_typenr = 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6894 | |
Bram Moolenaar | 985cb44 | 2009-05-14 19:51:46 +0000 | [diff] [blame] | 6895 | static int sign_cmd_idx __ARGS((char_u *begin_cmd, char_u *end_cmd)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6896 | static void sign_list_defined __ARGS((sign_T *sp)); |
Bram Moolenaar | de0dfed | 2009-02-24 03:30:14 +0000 | [diff] [blame] | 6897 | static void sign_undefine __ARGS((sign_T *sp, sign_T *sp_prev)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6898 | |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 6899 | static char *cmds[] = { |
| 6900 | "define", |
| 6901 | #define SIGNCMD_DEFINE 0 |
| 6902 | "undefine", |
| 6903 | #define SIGNCMD_UNDEFINE 1 |
| 6904 | "list", |
| 6905 | #define SIGNCMD_LIST 2 |
| 6906 | "place", |
| 6907 | #define SIGNCMD_PLACE 3 |
| 6908 | "unplace", |
| 6909 | #define SIGNCMD_UNPLACE 4 |
| 6910 | "jump", |
| 6911 | #define SIGNCMD_JUMP 5 |
| 6912 | NULL |
| 6913 | #define SIGNCMD_LAST 6 |
| 6914 | }; |
| 6915 | |
| 6916 | /* |
| 6917 | * Find index of a ":sign" subcmd from its name. |
| 6918 | * "*end_cmd" must be writable. |
| 6919 | */ |
| 6920 | static int |
| 6921 | sign_cmd_idx(begin_cmd, end_cmd) |
Bram Moolenaar | 985cb44 | 2009-05-14 19:51:46 +0000 | [diff] [blame] | 6922 | char_u *begin_cmd; /* begin of sign subcmd */ |
| 6923 | char_u *end_cmd; /* just after sign subcmd */ |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 6924 | { |
| 6925 | int idx; |
| 6926 | char save = *end_cmd; |
| 6927 | |
| 6928 | *end_cmd = NUL; |
| 6929 | for (idx = 0; ; ++idx) |
| 6930 | if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0) |
| 6931 | break; |
| 6932 | *end_cmd = save; |
| 6933 | return idx; |
| 6934 | } |
| 6935 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6936 | /* |
| 6937 | * ":sign" command |
| 6938 | */ |
| 6939 | void |
| 6940 | ex_sign(eap) |
| 6941 | exarg_T *eap; |
| 6942 | { |
| 6943 | char_u *arg = eap->arg; |
| 6944 | char_u *p; |
| 6945 | int idx; |
| 6946 | sign_T *sp; |
| 6947 | sign_T *sp_prev; |
| 6948 | buf_T *buf; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6949 | |
| 6950 | /* Parse the subcommand. */ |
| 6951 | p = skiptowhite(arg); |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 6952 | idx = sign_cmd_idx(arg, p); |
| 6953 | if (idx == SIGNCMD_LAST) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6954 | { |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 6955 | EMSG2(_("E160: Unknown sign command: %s"), arg); |
| 6956 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6957 | } |
| 6958 | arg = skipwhite(p); |
| 6959 | |
| 6960 | if (idx <= SIGNCMD_LIST) |
| 6961 | { |
| 6962 | /* |
| 6963 | * Define, undefine or list signs. |
| 6964 | */ |
| 6965 | if (idx == SIGNCMD_LIST && *arg == NUL) |
| 6966 | { |
| 6967 | /* ":sign list": list all defined signs */ |
Bram Moolenaar | 1c0b03e | 2012-03-16 14:32:15 +0100 | [diff] [blame] | 6968 | for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6969 | sign_list_defined(sp); |
| 6970 | } |
| 6971 | else if (*arg == NUL) |
| 6972 | EMSG(_("E156: Missing sign name")); |
| 6973 | else |
| 6974 | { |
Bram Moolenaar | b60574b | 2010-10-14 21:29:37 +0200 | [diff] [blame] | 6975 | /* Isolate the sign name. If it's a number skip leading zeroes, |
| 6976 | * so that "099" and "99" are the same sign. But keep "0". */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6977 | p = skiptowhite(arg); |
| 6978 | if (*p != NUL) |
| 6979 | *p++ = NUL; |
Bram Moolenaar | b60574b | 2010-10-14 21:29:37 +0200 | [diff] [blame] | 6980 | while (arg[0] == '0' && arg[1] != NUL) |
| 6981 | ++arg; |
| 6982 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6983 | sp_prev = NULL; |
| 6984 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6985 | { |
| 6986 | if (STRCMP(sp->sn_name, arg) == 0) |
| 6987 | break; |
| 6988 | sp_prev = sp; |
| 6989 | } |
| 6990 | if (idx == SIGNCMD_DEFINE) |
| 6991 | { |
| 6992 | /* ":sign define {name} ...": define a sign */ |
| 6993 | if (sp == NULL) |
| 6994 | { |
Bram Moolenaar | b60574b | 2010-10-14 21:29:37 +0200 | [diff] [blame] | 6995 | sign_T *lp; |
| 6996 | int start = next_sign_typenr; |
| 6997 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6998 | /* Allocate a new sign. */ |
| 6999 | sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T)); |
| 7000 | if (sp == NULL) |
| 7001 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7002 | |
Bram Moolenaar | b60574b | 2010-10-14 21:29:37 +0200 | [diff] [blame] | 7003 | /* Check that next_sign_typenr is not already being used. |
| 7004 | * This only happens after wrapping around. Hopefully |
| 7005 | * another one got deleted and we can use its number. */ |
| 7006 | for (lp = first_sign; lp != NULL; ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7007 | { |
Bram Moolenaar | b60574b | 2010-10-14 21:29:37 +0200 | [diff] [blame] | 7008 | if (lp->sn_typenr == next_sign_typenr) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7009 | { |
Bram Moolenaar | b60574b | 2010-10-14 21:29:37 +0200 | [diff] [blame] | 7010 | ++next_sign_typenr; |
| 7011 | if (next_sign_typenr == MAX_TYPENR) |
| 7012 | next_sign_typenr = 1; |
| 7013 | if (next_sign_typenr == start) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7014 | { |
Bram Moolenaar | b60574b | 2010-10-14 21:29:37 +0200 | [diff] [blame] | 7015 | vim_free(sp); |
| 7016 | EMSG(_("E612: Too many signs defined")); |
| 7017 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7018 | } |
Bram Moolenaar | b60574b | 2010-10-14 21:29:37 +0200 | [diff] [blame] | 7019 | lp = first_sign; /* start all over */ |
| 7020 | continue; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7021 | } |
Bram Moolenaar | b60574b | 2010-10-14 21:29:37 +0200 | [diff] [blame] | 7022 | lp = lp->sn_next; |
| 7023 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7024 | |
Bram Moolenaar | b60574b | 2010-10-14 21:29:37 +0200 | [diff] [blame] | 7025 | sp->sn_typenr = next_sign_typenr; |
| 7026 | if (++next_sign_typenr == MAX_TYPENR) |
| 7027 | next_sign_typenr = 1; /* wrap around */ |
| 7028 | |
| 7029 | sp->sn_name = vim_strsave(arg); |
| 7030 | if (sp->sn_name == NULL) /* out of memory */ |
| 7031 | { |
| 7032 | vim_free(sp); |
| 7033 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7034 | } |
Bram Moolenaar | a4f332b | 2010-10-13 16:44:23 +0200 | [diff] [blame] | 7035 | |
| 7036 | /* add the new sign to the list of signs */ |
| 7037 | if (sp_prev == NULL) |
| 7038 | first_sign = sp; |
| 7039 | else |
| 7040 | sp_prev->sn_next = sp; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7041 | } |
| 7042 | |
| 7043 | /* set values for a defined sign. */ |
| 7044 | for (;;) |
| 7045 | { |
| 7046 | arg = skipwhite(p); |
| 7047 | if (*arg == NUL) |
| 7048 | break; |
| 7049 | p = skiptowhite_esc(arg); |
| 7050 | if (STRNCMP(arg, "icon=", 5) == 0) |
| 7051 | { |
| 7052 | arg += 5; |
| 7053 | vim_free(sp->sn_icon); |
| 7054 | sp->sn_icon = vim_strnsave(arg, (int)(p - arg)); |
| 7055 | backslash_halve(sp->sn_icon); |
| 7056 | #ifdef FEAT_SIGN_ICONS |
| 7057 | if (gui.in_use) |
| 7058 | { |
| 7059 | out_flush(); |
| 7060 | if (sp->sn_image != NULL) |
| 7061 | gui_mch_destroy_sign(sp->sn_image); |
| 7062 | sp->sn_image = gui_mch_register_sign(sp->sn_icon); |
| 7063 | } |
| 7064 | #endif |
| 7065 | } |
| 7066 | else if (STRNCMP(arg, "text=", 5) == 0) |
| 7067 | { |
| 7068 | char_u *s; |
| 7069 | int cells; |
| 7070 | int len; |
| 7071 | |
| 7072 | arg += 5; |
| 7073 | #ifdef FEAT_MBYTE |
| 7074 | /* Count cells and check for non-printable chars */ |
| 7075 | if (has_mbyte) |
| 7076 | { |
| 7077 | cells = 0; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 7078 | for (s = arg; s < p; s += (*mb_ptr2len)(s)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7079 | { |
| 7080 | if (!vim_isprintc((*mb_ptr2char)(s))) |
| 7081 | break; |
| 7082 | cells += (*mb_ptr2cells)(s); |
| 7083 | } |
| 7084 | } |
| 7085 | else |
| 7086 | #endif |
| 7087 | { |
| 7088 | for (s = arg; s < p; ++s) |
| 7089 | if (!vim_isprintc(*s)) |
| 7090 | break; |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 7091 | cells = (int)(s - arg); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7092 | } |
| 7093 | /* Currently must be one or two display cells */ |
| 7094 | if (s != p || cells < 1 || cells > 2) |
| 7095 | { |
| 7096 | *p = NUL; |
| 7097 | EMSG2(_("E239: Invalid sign text: %s"), arg); |
| 7098 | return; |
| 7099 | } |
| 7100 | |
| 7101 | vim_free(sp->sn_text); |
| 7102 | /* Allocate one byte more if we need to pad up |
| 7103 | * with a space. */ |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 7104 | len = (int)(p - arg + ((cells == 1) ? 1 : 0)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7105 | sp->sn_text = vim_strnsave(arg, len); |
| 7106 | |
| 7107 | if (sp->sn_text != NULL && cells == 1) |
| 7108 | STRCPY(sp->sn_text + len - 1, " "); |
| 7109 | } |
| 7110 | else if (STRNCMP(arg, "linehl=", 7) == 0) |
| 7111 | { |
| 7112 | arg += 7; |
| 7113 | sp->sn_line_hl = syn_check_group(arg, (int)(p - arg)); |
| 7114 | } |
| 7115 | else if (STRNCMP(arg, "texthl=", 7) == 0) |
| 7116 | { |
| 7117 | arg += 7; |
| 7118 | sp->sn_text_hl = syn_check_group(arg, (int)(p - arg)); |
| 7119 | } |
| 7120 | else |
| 7121 | { |
| 7122 | EMSG2(_(e_invarg2), arg); |
| 7123 | return; |
| 7124 | } |
| 7125 | } |
| 7126 | } |
| 7127 | else if (sp == NULL) |
| 7128 | EMSG2(_("E155: Unknown sign: %s"), arg); |
| 7129 | else if (idx == SIGNCMD_LIST) |
| 7130 | /* ":sign list {name}" */ |
| 7131 | sign_list_defined(sp); |
| 7132 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7133 | /* ":sign undefine {name}" */ |
Bram Moolenaar | de0dfed | 2009-02-24 03:30:14 +0000 | [diff] [blame] | 7134 | sign_undefine(sp, sp_prev); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7135 | } |
| 7136 | } |
| 7137 | else |
| 7138 | { |
| 7139 | int id = -1; |
| 7140 | linenr_T lnum = -1; |
| 7141 | char_u *sign_name = NULL; |
| 7142 | char_u *arg1; |
| 7143 | |
| 7144 | if (*arg == NUL) |
| 7145 | { |
| 7146 | if (idx == SIGNCMD_PLACE) |
| 7147 | { |
| 7148 | /* ":sign place": list placed signs in all buffers */ |
| 7149 | sign_list_placed(NULL); |
| 7150 | } |
| 7151 | else if (idx == SIGNCMD_UNPLACE) |
| 7152 | { |
| 7153 | /* ":sign unplace": remove placed sign at cursor */ |
| 7154 | id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum); |
| 7155 | if (id > 0) |
| 7156 | { |
| 7157 | buf_delsign(curwin->w_buffer, id); |
| 7158 | update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum); |
| 7159 | } |
| 7160 | else |
| 7161 | EMSG(_("E159: Missing sign number")); |
| 7162 | } |
| 7163 | else |
| 7164 | EMSG(_(e_argreq)); |
| 7165 | return; |
| 7166 | } |
| 7167 | |
| 7168 | if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL) |
| 7169 | { |
| 7170 | /* ":sign unplace *": remove all placed signs */ |
| 7171 | buf_delete_all_signs(); |
| 7172 | return; |
| 7173 | } |
| 7174 | |
| 7175 | /* first arg could be placed sign id */ |
| 7176 | arg1 = arg; |
| 7177 | if (VIM_ISDIGIT(*arg)) |
| 7178 | { |
| 7179 | id = getdigits(&arg); |
| 7180 | if (!vim_iswhite(*arg) && *arg != NUL) |
| 7181 | { |
| 7182 | id = -1; |
| 7183 | arg = arg1; |
| 7184 | } |
| 7185 | else |
| 7186 | { |
| 7187 | arg = skipwhite(arg); |
| 7188 | if (idx == SIGNCMD_UNPLACE && *arg == NUL) |
| 7189 | { |
| 7190 | /* ":sign unplace {id}": remove placed sign by number */ |
| 7191 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 7192 | if ((lnum = buf_delsign(buf, id)) != 0) |
| 7193 | update_debug_sign(buf, lnum); |
| 7194 | return; |
| 7195 | } |
| 7196 | } |
| 7197 | } |
| 7198 | |
| 7199 | /* |
| 7200 | * Check for line={lnum} name={name} and file={fname} or buffer={nr}. |
| 7201 | * Leave "arg" pointing to {fname}. |
| 7202 | */ |
| 7203 | for (;;) |
| 7204 | { |
| 7205 | if (STRNCMP(arg, "line=", 5) == 0) |
| 7206 | { |
| 7207 | arg += 5; |
| 7208 | lnum = atoi((char *)arg); |
| 7209 | arg = skiptowhite(arg); |
| 7210 | } |
Bram Moolenaar | f65e566 | 2012-07-10 15:18:22 +0200 | [diff] [blame] | 7211 | else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE) |
| 7212 | { |
| 7213 | if (id != -1) |
| 7214 | { |
| 7215 | EMSG(_(e_invarg)); |
| 7216 | return; |
| 7217 | } |
| 7218 | id = -2; |
| 7219 | arg = skiptowhite(arg + 1); |
| 7220 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7221 | else if (STRNCMP(arg, "name=", 5) == 0) |
| 7222 | { |
| 7223 | arg += 5; |
| 7224 | sign_name = arg; |
| 7225 | arg = skiptowhite(arg); |
| 7226 | if (*arg != NUL) |
| 7227 | *arg++ = NUL; |
Bram Moolenaar | b60574b | 2010-10-14 21:29:37 +0200 | [diff] [blame] | 7228 | while (sign_name[0] == '0' && sign_name[1] != NUL) |
| 7229 | ++sign_name; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7230 | } |
| 7231 | else if (STRNCMP(arg, "file=", 5) == 0) |
| 7232 | { |
| 7233 | arg += 5; |
| 7234 | buf = buflist_findname(arg); |
| 7235 | break; |
| 7236 | } |
| 7237 | else if (STRNCMP(arg, "buffer=", 7) == 0) |
| 7238 | { |
| 7239 | arg += 7; |
| 7240 | buf = buflist_findnr((int)getdigits(&arg)); |
| 7241 | if (*skipwhite(arg) != NUL) |
| 7242 | EMSG(_(e_trailing)); |
| 7243 | break; |
| 7244 | } |
| 7245 | else |
| 7246 | { |
| 7247 | EMSG(_(e_invarg)); |
| 7248 | return; |
| 7249 | } |
| 7250 | arg = skipwhite(arg); |
| 7251 | } |
| 7252 | |
| 7253 | if (buf == NULL) |
| 7254 | { |
| 7255 | EMSG2(_("E158: Invalid buffer name: %s"), arg); |
| 7256 | } |
Bram Moolenaar | f65e566 | 2012-07-10 15:18:22 +0200 | [diff] [blame] | 7257 | else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7258 | { |
| 7259 | if (lnum >= 0 || sign_name != NULL) |
| 7260 | EMSG(_(e_invarg)); |
| 7261 | else |
| 7262 | /* ":sign place file={fname}": list placed signs in one file */ |
| 7263 | sign_list_placed(buf); |
| 7264 | } |
| 7265 | else if (idx == SIGNCMD_JUMP) |
| 7266 | { |
| 7267 | /* ":sign jump {id} file={fname}" */ |
| 7268 | if (lnum >= 0 || sign_name != NULL) |
| 7269 | EMSG(_(e_invarg)); |
| 7270 | else if ((lnum = buf_findsign(buf, id)) > 0) |
| 7271 | { /* goto a sign ... */ |
| 7272 | if (buf_jump_open_win(buf) != NULL) |
| 7273 | { /* ... in a current window */ |
| 7274 | curwin->w_cursor.lnum = lnum; |
| 7275 | check_cursor_lnum(); |
| 7276 | beginline(BL_WHITE); |
| 7277 | } |
| 7278 | else |
| 7279 | { /* ... not currently in a window */ |
| 7280 | char_u *cmd; |
| 7281 | |
| 7282 | cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25); |
| 7283 | if (cmd == NULL) |
| 7284 | return; |
| 7285 | sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname); |
| 7286 | do_cmdline_cmd(cmd); |
| 7287 | vim_free(cmd); |
| 7288 | } |
| 7289 | #ifdef FEAT_FOLDING |
| 7290 | foldOpenCursor(); |
| 7291 | #endif |
| 7292 | } |
| 7293 | else |
| 7294 | EMSGN(_("E157: Invalid sign ID: %ld"), id); |
| 7295 | } |
| 7296 | else if (idx == SIGNCMD_UNPLACE) |
| 7297 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7298 | if (lnum >= 0 || sign_name != NULL) |
| 7299 | EMSG(_(e_invarg)); |
Bram Moolenaar | f65e566 | 2012-07-10 15:18:22 +0200 | [diff] [blame] | 7300 | else if (id == -2) |
| 7301 | { |
| 7302 | /* ":sign unplace * file={fname}" */ |
| 7303 | redraw_buf_later(buf, NOT_VALID); |
| 7304 | buf_delete_signs(buf); |
| 7305 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7306 | else |
| 7307 | { |
Bram Moolenaar | f65e566 | 2012-07-10 15:18:22 +0200 | [diff] [blame] | 7308 | /* ":sign unplace {id} file={fname}" */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7309 | lnum = buf_delsign(buf, id); |
| 7310 | update_debug_sign(buf, lnum); |
| 7311 | } |
| 7312 | } |
| 7313 | /* idx == SIGNCMD_PLACE */ |
| 7314 | else if (sign_name != NULL) |
| 7315 | { |
| 7316 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 7317 | if (STRCMP(sp->sn_name, sign_name) == 0) |
| 7318 | break; |
| 7319 | if (sp == NULL) |
| 7320 | { |
| 7321 | EMSG2(_("E155: Unknown sign: %s"), sign_name); |
| 7322 | return; |
| 7323 | } |
| 7324 | if (lnum > 0) |
| 7325 | /* ":sign place {id} line={lnum} name={name} file={fname}": |
| 7326 | * place a sign */ |
| 7327 | buf_addsign(buf, id, lnum, sp->sn_typenr); |
| 7328 | else |
| 7329 | /* ":sign place {id} file={fname}": change sign type */ |
| 7330 | lnum = buf_change_sign_type(buf, id, sp->sn_typenr); |
Bram Moolenaar | f4d7f16 | 2014-05-07 14:38:44 +0200 | [diff] [blame] | 7331 | if (lnum > 0) |
| 7332 | update_debug_sign(buf, lnum); |
| 7333 | else |
| 7334 | EMSG2(_("E885: Not possible to change sign %s"), sign_name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7335 | } |
| 7336 | else |
| 7337 | EMSG(_(e_invarg)); |
| 7338 | } |
| 7339 | } |
| 7340 | |
| 7341 | #if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
| 7342 | /* |
| 7343 | * Allocate the icons. Called when the GUI has started. Allows defining |
| 7344 | * signs before it starts. |
| 7345 | */ |
| 7346 | void |
| 7347 | sign_gui_started() |
| 7348 | { |
| 7349 | sign_T *sp; |
| 7350 | |
| 7351 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 7352 | if (sp->sn_icon != NULL) |
| 7353 | sp->sn_image = gui_mch_register_sign(sp->sn_icon); |
| 7354 | } |
| 7355 | #endif |
| 7356 | |
| 7357 | /* |
| 7358 | * List one sign. |
| 7359 | */ |
| 7360 | static void |
| 7361 | sign_list_defined(sp) |
| 7362 | sign_T *sp; |
| 7363 | { |
| 7364 | char_u *p; |
| 7365 | |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 7366 | smsg((char_u *)"sign %s", sp->sn_name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7367 | if (sp->sn_icon != NULL) |
| 7368 | { |
| 7369 | MSG_PUTS(" icon="); |
| 7370 | msg_outtrans(sp->sn_icon); |
| 7371 | #ifdef FEAT_SIGN_ICONS |
| 7372 | if (sp->sn_image == NULL) |
| 7373 | MSG_PUTS(_(" (NOT FOUND)")); |
| 7374 | #else |
| 7375 | MSG_PUTS(_(" (not supported)")); |
| 7376 | #endif |
| 7377 | } |
| 7378 | if (sp->sn_text != NULL) |
| 7379 | { |
| 7380 | MSG_PUTS(" text="); |
| 7381 | msg_outtrans(sp->sn_text); |
| 7382 | } |
| 7383 | if (sp->sn_line_hl > 0) |
| 7384 | { |
| 7385 | MSG_PUTS(" linehl="); |
| 7386 | p = get_highlight_name(NULL, sp->sn_line_hl - 1); |
| 7387 | if (p == NULL) |
| 7388 | MSG_PUTS("NONE"); |
| 7389 | else |
| 7390 | msg_puts(p); |
| 7391 | } |
| 7392 | if (sp->sn_text_hl > 0) |
| 7393 | { |
| 7394 | MSG_PUTS(" texthl="); |
| 7395 | p = get_highlight_name(NULL, sp->sn_text_hl - 1); |
| 7396 | if (p == NULL) |
| 7397 | MSG_PUTS("NONE"); |
| 7398 | else |
| 7399 | msg_puts(p); |
| 7400 | } |
| 7401 | } |
| 7402 | |
| 7403 | /* |
Bram Moolenaar | de0dfed | 2009-02-24 03:30:14 +0000 | [diff] [blame] | 7404 | * Undefine a sign and free its memory. |
| 7405 | */ |
| 7406 | static void |
| 7407 | sign_undefine(sp, sp_prev) |
| 7408 | sign_T *sp; |
| 7409 | sign_T *sp_prev; |
| 7410 | { |
| 7411 | vim_free(sp->sn_name); |
| 7412 | vim_free(sp->sn_icon); |
| 7413 | #ifdef FEAT_SIGN_ICONS |
| 7414 | if (sp->sn_image != NULL) |
| 7415 | { |
| 7416 | out_flush(); |
| 7417 | gui_mch_destroy_sign(sp->sn_image); |
| 7418 | } |
| 7419 | #endif |
| 7420 | vim_free(sp->sn_text); |
| 7421 | if (sp_prev == NULL) |
| 7422 | first_sign = sp->sn_next; |
| 7423 | else |
| 7424 | sp_prev->sn_next = sp->sn_next; |
| 7425 | vim_free(sp); |
| 7426 | } |
| 7427 | |
| 7428 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7429 | * Get highlighting attribute for sign "typenr". |
| 7430 | * If "line" is TRUE: line highl, if FALSE: text highl. |
| 7431 | */ |
| 7432 | int |
| 7433 | sign_get_attr(typenr, line) |
| 7434 | int typenr; |
| 7435 | int line; |
| 7436 | { |
| 7437 | sign_T *sp; |
| 7438 | |
| 7439 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 7440 | if (sp->sn_typenr == typenr) |
| 7441 | { |
| 7442 | if (line) |
| 7443 | { |
| 7444 | if (sp->sn_line_hl > 0) |
| 7445 | return syn_id2attr(sp->sn_line_hl); |
| 7446 | } |
| 7447 | else |
| 7448 | { |
| 7449 | if (sp->sn_text_hl > 0) |
| 7450 | return syn_id2attr(sp->sn_text_hl); |
| 7451 | } |
| 7452 | break; |
| 7453 | } |
| 7454 | return 0; |
| 7455 | } |
| 7456 | |
| 7457 | /* |
| 7458 | * Get text mark for sign "typenr". |
| 7459 | * Returns NULL if there isn't one. |
| 7460 | */ |
| 7461 | char_u * |
| 7462 | sign_get_text(typenr) |
| 7463 | int typenr; |
| 7464 | { |
| 7465 | sign_T *sp; |
| 7466 | |
| 7467 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 7468 | if (sp->sn_typenr == typenr) |
| 7469 | return sp->sn_text; |
| 7470 | return NULL; |
| 7471 | } |
| 7472 | |
| 7473 | #if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
| 7474 | void * |
| 7475 | sign_get_image(typenr) |
| 7476 | int typenr; /* the attribute which may have a sign */ |
| 7477 | { |
| 7478 | sign_T *sp; |
| 7479 | |
| 7480 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 7481 | if (sp->sn_typenr == typenr) |
| 7482 | return sp->sn_image; |
| 7483 | return NULL; |
| 7484 | } |
| 7485 | #endif |
| 7486 | |
| 7487 | /* |
| 7488 | * Get the name of a sign by its typenr. |
| 7489 | */ |
| 7490 | char_u * |
| 7491 | sign_typenr2name(typenr) |
| 7492 | int typenr; |
| 7493 | { |
| 7494 | sign_T *sp; |
| 7495 | |
| 7496 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 7497 | if (sp->sn_typenr == typenr) |
| 7498 | return sp->sn_name; |
| 7499 | return (char_u *)_("[Deleted]"); |
| 7500 | } |
| 7501 | |
Bram Moolenaar | de0dfed | 2009-02-24 03:30:14 +0000 | [diff] [blame] | 7502 | #if defined(EXITFREE) || defined(PROTO) |
| 7503 | /* |
| 7504 | * Undefine/free all signs. |
| 7505 | */ |
| 7506 | void |
| 7507 | free_signs() |
| 7508 | { |
| 7509 | while (first_sign != NULL) |
| 7510 | sign_undefine(first_sign, NULL); |
| 7511 | } |
| 7512 | #endif |
| 7513 | |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 7514 | #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
| 7515 | static enum |
| 7516 | { |
| 7517 | EXP_SUBCMD, /* expand :sign sub-commands */ |
| 7518 | EXP_DEFINE, /* expand :sign define {name} args */ |
| 7519 | EXP_PLACE, /* expand :sign place {id} args */ |
| 7520 | EXP_UNPLACE, /* expand :sign unplace" */ |
| 7521 | EXP_SIGN_NAMES /* expand with name of placed signs */ |
| 7522 | } expand_what; |
| 7523 | |
| 7524 | /* |
| 7525 | * Function given to ExpandGeneric() to obtain the sign command |
| 7526 | * expansion. |
| 7527 | */ |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 7528 | char_u * |
| 7529 | get_sign_name(xp, idx) |
Bram Moolenaar | 0c094b9 | 2009-05-14 20:20:33 +0000 | [diff] [blame] | 7530 | expand_T *xp UNUSED; |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 7531 | int idx; |
| 7532 | { |
| 7533 | sign_T *sp; |
| 7534 | int current_idx; |
| 7535 | |
| 7536 | switch (expand_what) |
| 7537 | { |
| 7538 | case EXP_SUBCMD: |
| 7539 | return (char_u *)cmds[idx]; |
| 7540 | case EXP_DEFINE: |
| 7541 | { |
| 7542 | char *define_arg[] = |
| 7543 | { |
| 7544 | "icon=", "linehl=", "text=", "texthl=", NULL |
| 7545 | }; |
| 7546 | return (char_u *)define_arg[idx]; |
| 7547 | } |
| 7548 | case EXP_PLACE: |
| 7549 | { |
| 7550 | char *place_arg[] = |
| 7551 | { |
| 7552 | "line=", "name=", "file=", "buffer=", NULL |
| 7553 | }; |
| 7554 | return (char_u *)place_arg[idx]; |
| 7555 | } |
| 7556 | case EXP_UNPLACE: |
| 7557 | { |
| 7558 | char *unplace_arg[] = { "file=", "buffer=", NULL }; |
| 7559 | return (char_u *)unplace_arg[idx]; |
| 7560 | } |
| 7561 | case EXP_SIGN_NAMES: |
| 7562 | /* Complete with name of signs already defined */ |
| 7563 | current_idx = 0; |
| 7564 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 7565 | if (current_idx++ == idx) |
| 7566 | return sp->sn_name; |
| 7567 | return NULL; |
| 7568 | default: |
| 7569 | return NULL; |
| 7570 | } |
| 7571 | } |
| 7572 | |
| 7573 | /* |
| 7574 | * Handle command line completion for :sign command. |
| 7575 | */ |
| 7576 | void |
| 7577 | set_context_in_sign_cmd(xp, arg) |
| 7578 | expand_T *xp; |
| 7579 | char_u *arg; |
| 7580 | { |
| 7581 | char_u *p; |
| 7582 | char_u *end_subcmd; |
| 7583 | char_u *last; |
| 7584 | int cmd_idx; |
| 7585 | char_u *begin_subcmd_args; |
| 7586 | |
| 7587 | /* Default: expand subcommands. */ |
| 7588 | xp->xp_context = EXPAND_SIGN; |
| 7589 | expand_what = EXP_SUBCMD; |
| 7590 | xp->xp_pattern = arg; |
| 7591 | |
| 7592 | end_subcmd = skiptowhite(arg); |
| 7593 | if (*end_subcmd == NUL) |
| 7594 | /* expand subcmd name |
| 7595 | * :sign {subcmd}<CTRL-D>*/ |
| 7596 | return; |
| 7597 | |
| 7598 | cmd_idx = sign_cmd_idx(arg, end_subcmd); |
| 7599 | |
| 7600 | /* :sign {subcmd} {subcmd_args} |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 7601 | * | |
| 7602 | * begin_subcmd_args */ |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 7603 | begin_subcmd_args = skipwhite(end_subcmd); |
| 7604 | p = skiptowhite(begin_subcmd_args); |
| 7605 | if (*p == NUL) |
| 7606 | { |
| 7607 | /* |
| 7608 | * Expand first argument of subcmd when possible. |
| 7609 | * For ":jump {id}" and ":unplace {id}", we could |
| 7610 | * possibly expand the ids of all signs already placed. |
| 7611 | */ |
| 7612 | xp->xp_pattern = begin_subcmd_args; |
| 7613 | switch (cmd_idx) |
| 7614 | { |
| 7615 | case SIGNCMD_LIST: |
| 7616 | case SIGNCMD_UNDEFINE: |
| 7617 | /* :sign list <CTRL-D> |
| 7618 | * :sign undefine <CTRL-D> */ |
| 7619 | expand_what = EXP_SIGN_NAMES; |
| 7620 | break; |
| 7621 | default: |
| 7622 | xp->xp_context = EXPAND_NOTHING; |
| 7623 | } |
| 7624 | return; |
| 7625 | } |
| 7626 | |
| 7627 | /* expand last argument of subcmd */ |
| 7628 | |
| 7629 | /* :sign define {name} {args}... |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 7630 | * | |
| 7631 | * p */ |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 7632 | |
| 7633 | /* Loop until reaching last argument. */ |
| 7634 | do |
| 7635 | { |
| 7636 | p = skipwhite(p); |
| 7637 | last = p; |
| 7638 | p = skiptowhite(p); |
| 7639 | } while (*p != NUL); |
| 7640 | |
| 7641 | p = vim_strchr(last, '='); |
| 7642 | |
| 7643 | /* :sign define {name} {args}... {last}= |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 7644 | * | | |
| 7645 | * last p */ |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 7646 | if (p == NUL) |
| 7647 | { |
| 7648 | /* Expand last argument name (before equal sign). */ |
| 7649 | xp->xp_pattern = last; |
| 7650 | switch (cmd_idx) |
| 7651 | { |
| 7652 | case SIGNCMD_DEFINE: |
| 7653 | expand_what = EXP_DEFINE; |
| 7654 | break; |
| 7655 | case SIGNCMD_PLACE: |
| 7656 | expand_what = EXP_PLACE; |
| 7657 | break; |
| 7658 | case SIGNCMD_JUMP: |
| 7659 | case SIGNCMD_UNPLACE: |
| 7660 | expand_what = EXP_UNPLACE; |
| 7661 | break; |
| 7662 | default: |
| 7663 | xp->xp_context = EXPAND_NOTHING; |
| 7664 | } |
| 7665 | } |
| 7666 | else |
| 7667 | { |
| 7668 | /* Expand last argument value (after equal sign). */ |
| 7669 | xp->xp_pattern = p + 1; |
| 7670 | switch (cmd_idx) |
| 7671 | { |
| 7672 | case SIGNCMD_DEFINE: |
| 7673 | if (STRNCMP(last, "texthl", p - last) == 0 || |
| 7674 | STRNCMP(last, "linehl", p - last) == 0) |
| 7675 | xp->xp_context = EXPAND_HIGHLIGHT; |
| 7676 | else if (STRNCMP(last, "icon", p - last) == 0) |
| 7677 | xp->xp_context = EXPAND_FILES; |
| 7678 | else |
| 7679 | xp->xp_context = EXPAND_NOTHING; |
| 7680 | break; |
| 7681 | case SIGNCMD_PLACE: |
| 7682 | if (STRNCMP(last, "name", p - last) == 0) |
| 7683 | expand_what = EXP_SIGN_NAMES; |
| 7684 | else |
| 7685 | xp->xp_context = EXPAND_NOTHING; |
| 7686 | break; |
| 7687 | default: |
| 7688 | xp->xp_context = EXPAND_NOTHING; |
| 7689 | } |
| 7690 | } |
| 7691 | } |
| 7692 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7693 | #endif |
| 7694 | |
| 7695 | #if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO) |
| 7696 | /* |
| 7697 | * ":drop" |
| 7698 | * Opens the first argument in a window. When there are two or more arguments |
| 7699 | * the argument list is redefined. |
| 7700 | */ |
| 7701 | void |
| 7702 | ex_drop(eap) |
| 7703 | exarg_T *eap; |
| 7704 | { |
| 7705 | int split = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7706 | win_T *wp; |
| 7707 | buf_T *buf; |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7708 | # ifdef FEAT_WINDOWS |
| 7709 | tabpage_T *tp; |
| 7710 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7711 | |
| 7712 | /* |
| 7713 | * Check if the first argument is already being edited in a window. If |
| 7714 | * so, jump to that window. |
| 7715 | * We would actually need to check all arguments, but that's complicated |
| 7716 | * and mostly only one file is dropped. |
| 7717 | * This also ignores wildcards, since it is very unlikely the user is |
| 7718 | * editing a file name with a wildcard character. |
| 7719 | */ |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7720 | set_arglist(eap->arg); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7721 | |
Bram Moolenaar | b01a8b7 | 2007-02-13 02:47:22 +0000 | [diff] [blame] | 7722 | /* |
| 7723 | * Expanding wildcards may result in an empty argument list. E.g. when |
| 7724 | * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we |
| 7725 | * already did an error message for this. |
| 7726 | */ |
| 7727 | if (ARGCOUNT == 0) |
| 7728 | return; |
| 7729 | |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7730 | # ifdef FEAT_WINDOWS |
| 7731 | if (cmdmod.tab) |
| 7732 | { |
| 7733 | /* ":tab drop file ...": open a tab for each argument that isn't |
| 7734 | * edited in a window yet. It's like ":tab all" but without closing |
| 7735 | * windows or tabs. */ |
| 7736 | ex_all(eap); |
| 7737 | } |
| 7738 | else |
| 7739 | # endif |
| 7740 | { |
| 7741 | /* ":drop file ...": Edit the first argument. Jump to an existing |
| 7742 | * window if possible, edit in current window if the current buffer |
| 7743 | * can be abandoned, otherwise open a new window. */ |
| 7744 | buf = buflist_findnr(ARGLIST[0].ae_fnum); |
| 7745 | |
| 7746 | FOR_ALL_TAB_WINDOWS(tp, wp) |
| 7747 | { |
| 7748 | if (wp->w_buffer == buf) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7749 | { |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7750 | # ifdef FEAT_WINDOWS |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 7751 | goto_tabpage_win(tp, wp); |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7752 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7753 | curwin->w_arg_idx = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7754 | return; |
| 7755 | } |
| 7756 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7757 | |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7758 | /* |
| 7759 | * Check whether the current buffer is changed. If so, we will need |
| 7760 | * to split the current window or data could be lost. |
| 7761 | * Skip the check if the 'hidden' option is set, as in this case the |
| 7762 | * buffer won't be lost. |
| 7763 | */ |
| 7764 | if (!P_HID(curbuf)) |
| 7765 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7766 | # ifdef FEAT_WINDOWS |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7767 | ++emsg_off; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7768 | # endif |
Bram Moolenaar | 45d3b14 | 2013-11-09 03:31:51 +0100 | [diff] [blame] | 7769 | split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7770 | # ifdef FEAT_WINDOWS |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7771 | --emsg_off; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7772 | # else |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7773 | if (split) |
| 7774 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7775 | # endif |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7776 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7777 | |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7778 | /* Fake a ":sfirst" or ":first" command edit the first argument. */ |
| 7779 | if (split) |
| 7780 | { |
| 7781 | eap->cmdidx = CMD_sfirst; |
| 7782 | eap->cmd[0] = 's'; |
| 7783 | } |
| 7784 | else |
| 7785 | eap->cmdidx = CMD_first; |
| 7786 | ex_rewind(eap); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7787 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7788 | } |
| 7789 | #endif |