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 | |
| 14 | #include "vim.h" |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 15 | #ifdef HAVE_FCNTL_H |
| 16 | # include <fcntl.h> |
| 17 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 18 | #include "version.h" |
| 19 | |
| 20 | #ifdef FEAT_EX_EXTRA |
| 21 | static int linelen __ARGS((int *has_tab)); |
| 22 | #endif |
| 23 | static void do_filter __ARGS((linenr_T line1, linenr_T line2, exarg_T *eap, char_u *cmd, int do_in, int do_out)); |
| 24 | #ifdef FEAT_VIMINFO |
| 25 | static char_u *viminfo_filename __ARGS((char_u *)); |
| 26 | static void do_viminfo __ARGS((FILE *fp_in, FILE *fp_out, int want_info, int want_marks, int force_read)); |
| 27 | static int viminfo_encoding __ARGS((vir_T *virp)); |
| 28 | static int read_viminfo_up_to_marks __ARGS((vir_T *virp, int forceit, int writing)); |
| 29 | #endif |
| 30 | |
| 31 | static int check_overwrite __ARGS((exarg_T *eap, buf_T *buf, char_u *fname, char_u *ffname, int other)); |
| 32 | static int check_readonly __ARGS((int *forceit, buf_T *buf)); |
| 33 | #ifdef FEAT_AUTOCMD |
| 34 | static void delbuf_msg __ARGS((char_u *name)); |
| 35 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 36 | static int |
| 37 | #ifdef __BORLANDC__ |
| 38 | _RTLENTRYF |
| 39 | #endif |
| 40 | help_compare __ARGS((const void *s1, const void *s2)); |
| 41 | |
| 42 | /* |
| 43 | * ":ascii" and "ga". |
| 44 | */ |
| 45 | /*ARGSUSED*/ |
| 46 | void |
| 47 | do_ascii(eap) |
| 48 | exarg_T *eap; |
| 49 | { |
| 50 | int c; |
| 51 | char buf1[20]; |
| 52 | char buf2[20]; |
| 53 | char_u buf3[7]; |
| 54 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 55 | int cc[MAX_MCO]; |
| 56 | int ci = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 57 | int len; |
| 58 | |
| 59 | if (enc_utf8) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 60 | c = utfc_ptr2char(ml_get_cursor(), cc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 61 | else |
| 62 | #endif |
| 63 | c = gchar_cursor(); |
| 64 | if (c == NUL) |
| 65 | { |
| 66 | MSG("NUL"); |
| 67 | return; |
| 68 | } |
| 69 | |
| 70 | #ifdef FEAT_MBYTE |
| 71 | IObuff[0] = NUL; |
| 72 | if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80) |
| 73 | #endif |
| 74 | { |
| 75 | if (c == NL) /* NUL is stored as NL */ |
| 76 | c = NUL; |
| 77 | if (vim_isprintc_strict(c) && (c < ' ' |
| 78 | #ifndef EBCDIC |
| 79 | || c > '~' |
| 80 | #endif |
| 81 | )) |
| 82 | { |
| 83 | transchar_nonprint(buf3, c); |
| 84 | sprintf(buf1, " <%s>", (char *)buf3); |
| 85 | } |
| 86 | else |
| 87 | buf1[0] = NUL; |
| 88 | #ifndef EBCDIC |
| 89 | if (c >= 0x80) |
| 90 | sprintf(buf2, " <M-%s>", transchar(c & 0x7f)); |
| 91 | else |
| 92 | #endif |
| 93 | buf2[0] = NUL; |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 94 | vim_snprintf((char *)IObuff, IOSIZE, |
| 95 | _("<%s>%s%s %d, Hex %02x, Octal %03o"), |
| 96 | transchar(c), buf1, buf2, c, c, c); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 97 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 1f788e7 | 2006-09-05 16:30:40 +0000 | [diff] [blame] | 98 | if (enc_utf8) |
| 99 | c = cc[ci++]; |
| 100 | else |
| 101 | c = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 102 | #endif |
| 103 | } |
| 104 | |
| 105 | #ifdef FEAT_MBYTE |
| 106 | /* Repeat for combining characters. */ |
| 107 | while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80))) |
| 108 | { |
| 109 | len = (int)STRLEN(IObuff); |
| 110 | /* This assumes every multi-byte char is printable... */ |
| 111 | if (len > 0) |
| 112 | IObuff[len++] = ' '; |
| 113 | IObuff[len++] = '<'; |
Bram Moolenaar | 1f788e7 | 2006-09-05 16:30:40 +0000 | [diff] [blame] | 114 | if (enc_utf8 && utf_iscomposing(c) |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 115 | # ifdef USE_GUI |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 116 | && !gui.in_use |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 117 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 118 | ) |
| 119 | IObuff[len++] = ' '; /* draw composing char on top of a space */ |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 120 | len += (*mb_char2bytes)(c, IObuff + len); |
| 121 | vim_snprintf((char *)IObuff + len, IOSIZE - len, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 122 | c < 0x10000 ? _("> %d, Hex %04x, Octal %o") |
| 123 | : _("> %d, Hex %08x, Octal %o"), c, c, c); |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 124 | if (ci == MAX_MCO) |
| 125 | break; |
Bram Moolenaar | 1f788e7 | 2006-09-05 16:30:40 +0000 | [diff] [blame] | 126 | if (enc_utf8) |
| 127 | c = cc[ci++]; |
| 128 | else |
| 129 | c = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 130 | } |
| 131 | #endif |
| 132 | |
| 133 | msg(IObuff); |
| 134 | } |
| 135 | |
| 136 | #if defined(FEAT_EX_EXTRA) || defined(PROTO) |
| 137 | /* |
| 138 | * ":left", ":center" and ":right": align text. |
| 139 | */ |
| 140 | void |
| 141 | ex_align(eap) |
| 142 | exarg_T *eap; |
| 143 | { |
| 144 | pos_T save_curpos; |
| 145 | int len; |
| 146 | int indent = 0; |
| 147 | int new_indent; |
| 148 | int has_tab; |
| 149 | int width; |
| 150 | |
| 151 | #ifdef FEAT_RIGHTLEFT |
| 152 | if (curwin->w_p_rl) |
| 153 | { |
| 154 | /* switch left and right aligning */ |
| 155 | if (eap->cmdidx == CMD_right) |
| 156 | eap->cmdidx = CMD_left; |
| 157 | else if (eap->cmdidx == CMD_left) |
| 158 | eap->cmdidx = CMD_right; |
| 159 | } |
| 160 | #endif |
| 161 | |
| 162 | width = atoi((char *)eap->arg); |
| 163 | save_curpos = curwin->w_cursor; |
| 164 | if (eap->cmdidx == CMD_left) /* width is used for new indent */ |
| 165 | { |
| 166 | if (width >= 0) |
| 167 | indent = width; |
| 168 | } |
| 169 | else |
| 170 | { |
| 171 | /* |
| 172 | * if 'textwidth' set, use it |
| 173 | * else if 'wrapmargin' set, use it |
| 174 | * if invalid value, use 80 |
| 175 | */ |
| 176 | if (width <= 0) |
| 177 | width = curbuf->b_p_tw; |
| 178 | if (width == 0 && curbuf->b_p_wm > 0) |
| 179 | width = W_WIDTH(curwin) - curbuf->b_p_wm; |
| 180 | if (width <= 0) |
| 181 | width = 80; |
| 182 | } |
| 183 | |
| 184 | if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) |
| 185 | return; |
| 186 | |
| 187 | for (curwin->w_cursor.lnum = eap->line1; |
| 188 | curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum) |
| 189 | { |
| 190 | if (eap->cmdidx == CMD_left) /* left align */ |
| 191 | new_indent = indent; |
| 192 | else |
| 193 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 194 | has_tab = FALSE; /* avoid uninit warnings */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 195 | len = linelen(eap->cmdidx == CMD_right ? &has_tab |
| 196 | : NULL) - get_indent(); |
| 197 | |
| 198 | if (len <= 0) /* skip blank lines */ |
| 199 | continue; |
| 200 | |
| 201 | if (eap->cmdidx == CMD_center) |
| 202 | new_indent = (width - len) / 2; |
| 203 | else |
| 204 | { |
| 205 | new_indent = width - len; /* right align */ |
| 206 | |
| 207 | /* |
| 208 | * Make sure that embedded TABs don't make the text go too far |
| 209 | * to the right. |
| 210 | */ |
| 211 | if (has_tab) |
| 212 | while (new_indent > 0) |
| 213 | { |
| 214 | (void)set_indent(new_indent, 0); |
| 215 | if (linelen(NULL) <= width) |
| 216 | { |
| 217 | /* |
| 218 | * Now try to move the line as much as possible to |
| 219 | * the right. Stop when it moves too far. |
| 220 | */ |
| 221 | do |
| 222 | (void)set_indent(++new_indent, 0); |
| 223 | while (linelen(NULL) <= width); |
| 224 | --new_indent; |
| 225 | break; |
| 226 | } |
| 227 | --new_indent; |
| 228 | } |
| 229 | } |
| 230 | } |
| 231 | if (new_indent < 0) |
| 232 | new_indent = 0; |
| 233 | (void)set_indent(new_indent, 0); /* set indent */ |
| 234 | } |
| 235 | changed_lines(eap->line1, 0, eap->line2 + 1, 0L); |
| 236 | curwin->w_cursor = save_curpos; |
| 237 | beginline(BL_WHITE | BL_FIX); |
| 238 | } |
| 239 | |
| 240 | /* |
| 241 | * Get the length of the current line, excluding trailing white space. |
| 242 | */ |
| 243 | static int |
| 244 | linelen(has_tab) |
| 245 | int *has_tab; |
| 246 | { |
| 247 | char_u *line; |
| 248 | char_u *first; |
| 249 | char_u *last; |
| 250 | int save; |
| 251 | int len; |
| 252 | |
| 253 | /* find the first non-blank character */ |
| 254 | line = ml_get_curline(); |
| 255 | first = skipwhite(line); |
| 256 | |
| 257 | /* find the character after the last non-blank character */ |
| 258 | for (last = first + STRLEN(first); |
| 259 | last > first && vim_iswhite(last[-1]); --last) |
| 260 | ; |
| 261 | save = *last; |
| 262 | *last = NUL; |
| 263 | len = linetabsize(line); /* get line length */ |
| 264 | if (has_tab != NULL) /* check for embedded TAB */ |
| 265 | *has_tab = (vim_strrchr(first, TAB) != NULL); |
| 266 | *last = save; |
| 267 | |
| 268 | return len; |
| 269 | } |
| 270 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 271 | /* Buffer for two lines used during sorting. They are allocated to |
| 272 | * contain the longest line being sorted. */ |
| 273 | static char_u *sortbuf1; |
| 274 | static char_u *sortbuf2; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 275 | |
| 276 | static int sort_ic; /* ignore case */ |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 277 | static int sort_nr; /* sort on number */ |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 278 | static int sort_rx; /* sort on regex instead of skipping it */ |
| 279 | |
| 280 | static int sort_abort; /* flag to indicate if sorting has been interrupted */ |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 281 | |
| 282 | /* Struct to store info to be sorted. */ |
| 283 | typedef struct |
| 284 | { |
| 285 | linenr_T lnum; /* line number */ |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 286 | long start_col_nr; /* starting column number or number */ |
| 287 | long end_col_nr; /* ending column number */ |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 288 | } sorti_T; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 289 | |
| 290 | static int |
| 291 | #ifdef __BORLANDC__ |
| 292 | _RTLENTRYF |
| 293 | #endif |
| 294 | sort_compare __ARGS((const void *s1, const void *s2)); |
| 295 | |
| 296 | static int |
| 297 | #ifdef __BORLANDC__ |
| 298 | _RTLENTRYF |
| 299 | #endif |
| 300 | sort_compare(s1, s2) |
| 301 | const void *s1; |
| 302 | const void *s2; |
| 303 | { |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 304 | sorti_T l1 = *(sorti_T *)s1; |
| 305 | sorti_T l2 = *(sorti_T *)s2; |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 306 | int result = 0; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 307 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 308 | /* 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] | 309 | * if we return 0 every time, qsort will assume it's done sorting and |
| 310 | * exit. */ |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 311 | if (sort_abort) |
| 312 | return 0; |
| 313 | fast_breakcheck(); |
| 314 | if (got_int) |
| 315 | sort_abort = TRUE; |
| 316 | |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 317 | /* When sorting numbers "start_col_nr" is the number, not the column |
| 318 | * number. */ |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 319 | if (sort_nr) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 320 | result = l1.start_col_nr - l2.start_col_nr; |
| 321 | else |
| 322 | { |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 323 | /* We need to copy one line into "sortbuf1", because there is no |
| 324 | * guarantee that the first pointer becomes invalid when obtaining the |
| 325 | * second one. */ |
| 326 | STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.start_col_nr, |
| 327 | l1.end_col_nr - l1.start_col_nr + 1); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 328 | sortbuf1[l1.end_col_nr - l1.start_col_nr] = 0; |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 329 | STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.start_col_nr, |
| 330 | l2.end_col_nr - l2.start_col_nr + 1); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 331 | sortbuf2[l2.end_col_nr - l2.start_col_nr] = 0; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 332 | |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 333 | result = sort_ic ? STRICMP(sortbuf1, sortbuf2) |
| 334 | : STRCMP(sortbuf1, sortbuf2); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 335 | } |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 336 | |
| 337 | /* If two lines have the same value, preserve the original line order. */ |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 338 | if (result == 0) |
Bram Moolenaar | b21e584 | 2006-04-16 18:30:08 +0000 | [diff] [blame] | 339 | return (int)(l1.lnum - l2.lnum); |
| 340 | return result; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | /* |
| 344 | * ":sort". |
| 345 | */ |
| 346 | void |
| 347 | ex_sort(eap) |
| 348 | exarg_T *eap; |
| 349 | { |
| 350 | regmatch_T regmatch; |
| 351 | int len; |
| 352 | linenr_T lnum; |
| 353 | long maxlen = 0; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 354 | sorti_T *nrs; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 355 | size_t count = eap->line2 - eap->line1 + 1; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 356 | size_t i; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 357 | char_u *p; |
| 358 | char_u *s; |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 359 | char_u *s2; |
| 360 | char_u c; /* temporary character storage */ |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 361 | int unique = FALSE; |
| 362 | long deleted; |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 363 | colnr_T start_col; |
| 364 | colnr_T end_col; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 365 | int sort_oct; /* sort on octal number */ |
| 366 | int sort_hex; /* sort on hex number */ |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 367 | |
| 368 | if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) |
| 369 | return; |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 370 | sortbuf1 = NULL; |
| 371 | sortbuf2 = NULL; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 372 | regmatch.regprog = NULL; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 373 | nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 374 | if (nrs == NULL) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 375 | goto sortend; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 376 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 377 | 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] | 378 | |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 379 | for (p = eap->arg; *p != NUL; ++p) |
| 380 | { |
| 381 | if (vim_iswhite(*p)) |
| 382 | ; |
| 383 | else if (*p == 'i') |
| 384 | sort_ic = TRUE; |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 385 | else if (*p == 'r') |
| 386 | sort_rx = TRUE; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 387 | else if (*p == 'n') |
| 388 | sort_nr = 2; |
| 389 | else if (*p == 'o') |
| 390 | sort_oct = 2; |
| 391 | else if (*p == 'x') |
| 392 | sort_hex = 2; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 393 | else if (*p == 'u') |
| 394 | unique = TRUE; |
Bram Moolenaar | 0e6830e | 2005-05-27 20:23:44 +0000 | [diff] [blame] | 395 | else if (*p == '"') /* comment start */ |
| 396 | break; |
| 397 | else if (check_nextcmd(p) != NULL) |
| 398 | { |
| 399 | eap->nextcmd = check_nextcmd(p); |
| 400 | break; |
| 401 | } |
| 402 | else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL) |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 403 | { |
| 404 | s = skip_regexp(p + 1, *p, TRUE, NULL); |
| 405 | if (*s != *p) |
| 406 | { |
| 407 | EMSG(_(e_invalpat)); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 408 | goto sortend; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 409 | } |
| 410 | *s = NUL; |
| 411 | regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC); |
| 412 | if (regmatch.regprog == NULL) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 413 | goto sortend; |
Bram Moolenaar | 0e6830e | 2005-05-27 20:23:44 +0000 | [diff] [blame] | 414 | p = s; /* continue after the regexp */ |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 415 | regmatch.rm_ic = p_ic; |
| 416 | } |
| 417 | else |
| 418 | { |
| 419 | EMSG2(_(e_invarg2), p); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 420 | goto sortend; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 421 | } |
| 422 | } |
| 423 | |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 424 | /* Can only have one of 'n', 'o' and 'x'. */ |
| 425 | if (sort_nr + sort_oct + sort_hex > 2) |
| 426 | { |
| 427 | EMSG(_(e_invarg)); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 428 | goto sortend; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | /* From here on "sort_nr" is used as a flag for any number sorting. */ |
| 432 | sort_nr += sort_oct + sort_hex; |
| 433 | |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 434 | /* |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 435 | * 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] | 436 | * the lines into allocated memory. |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 437 | * When sorting on strings "start_col_nr" is the offset in the line, for |
| 438 | * numbers sorting it's the number to sort on. This means the pattern |
| 439 | * matching and number conversion only has to be done once per line. |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 440 | * Also get the longest line length for allocating "sortbuf". |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 441 | */ |
| 442 | for (lnum = eap->line1; lnum <= eap->line2; ++lnum) |
| 443 | { |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 444 | s = ml_get(lnum); |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 445 | len = (int)STRLEN(s); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 446 | if (maxlen < len) |
| 447 | maxlen = len; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 448 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 449 | start_col = 0; |
| 450 | end_col = len; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 451 | if (regmatch.regprog != NULL && vim_regexec(®match, s, 0)) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 452 | { |
| 453 | if (sort_rx) |
| 454 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 455 | start_col = (colnr_T)(regmatch.startp[0] - s); |
| 456 | end_col = (colnr_T)(regmatch.endp[0] - s); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 457 | } |
| 458 | else |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 459 | start_col = (colnr_T)(regmatch.endp[0] - s); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 460 | } |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 461 | else |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 462 | if (regmatch.regprog != NULL) |
| 463 | end_col = 0; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 464 | |
| 465 | if (sort_nr) |
| 466 | { |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 467 | /* Make sure vim_str2nr doesn't read any digits past the end |
| 468 | * of the match, by temporarily terminating the string there */ |
| 469 | s2 = s + end_col; |
| 470 | c = *s2; |
| 471 | (*s2) = 0; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 472 | /* Sorting on number: Store the number itself. */ |
| 473 | if (sort_hex) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 474 | s = skiptohex(s + start_col); |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 475 | else |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 476 | s = skiptodigit(s + start_col); |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 477 | vim_str2nr(s, NULL, NULL, sort_oct, sort_hex, |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 478 | &nrs[lnum - eap->line1].start_col_nr, NULL); |
| 479 | (*s2) = c; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 480 | } |
| 481 | else |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 482 | { |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 483 | /* Store the column to sort at. */ |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 484 | nrs[lnum - eap->line1].start_col_nr = start_col; |
| 485 | nrs[lnum - eap->line1].end_col_nr = end_col; |
| 486 | } |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 487 | |
| 488 | nrs[lnum - eap->line1].lnum = lnum; |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 489 | |
| 490 | if (regmatch.regprog != NULL) |
| 491 | fast_breakcheck(); |
| 492 | if (got_int) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 493 | goto sortend; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 494 | } |
| 495 | |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 496 | /* Allocate a buffer that can hold the longest line. */ |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 497 | sortbuf1 = alloc((unsigned)maxlen + 1); |
| 498 | if (sortbuf1 == NULL) |
| 499 | goto sortend; |
| 500 | sortbuf2 = alloc((unsigned)maxlen + 1); |
| 501 | if (sortbuf2 == NULL) |
| 502 | goto sortend; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 503 | |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 504 | /* Sort the array of line numbers. Note: can't be interrupted! */ |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 505 | qsort((void *)nrs, count, sizeof(sorti_T), sort_compare); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 506 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 507 | if (sort_abort) |
| 508 | goto sortend; |
| 509 | |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 510 | /* Insert the lines in the sorted order below the last one. */ |
| 511 | lnum = eap->line2; |
| 512 | for (i = 0; i < count; ++i) |
| 513 | { |
| 514 | s = ml_get(nrs[eap->forceit ? count - i - 1 : i].lnum); |
| 515 | if (!unique || i == 0 |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 516 | || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0) |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 517 | { |
| 518 | if (ml_append(lnum++, s, (colnr_T)0, FALSE) == FAIL) |
| 519 | break; |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 520 | if (unique) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 521 | STRCPY(sortbuf1, s); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 522 | } |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 523 | fast_breakcheck(); |
| 524 | if (got_int) |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 525 | goto sortend; |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 526 | } |
| 527 | |
| 528 | /* delete the original lines if appending worked */ |
| 529 | if (i == count) |
| 530 | for (i = 0; i < count; ++i) |
| 531 | ml_delete(eap->line1, FALSE); |
| 532 | else |
| 533 | count = 0; |
| 534 | |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 535 | /* Adjust marks for deleted (or added) lines and prepare for displaying. */ |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 536 | deleted = (long)(count - (lnum - eap->line2)); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 537 | if (deleted > 0) |
| 538 | mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted); |
| 539 | else if (deleted < 0) |
| 540 | mark_adjust(eap->line2, MAXLNUM, -deleted, 0L); |
| 541 | changed_lines(eap->line1, 0, eap->line2 + 1, -deleted); |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 542 | |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 543 | curwin->w_cursor.lnum = eap->line1; |
| 544 | beginline(BL_WHITE | BL_FIX); |
| 545 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 546 | sortend: |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 547 | vim_free(nrs); |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 548 | vim_free(sortbuf1); |
| 549 | vim_free(sortbuf2); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 550 | vim_free(regmatch.regprog); |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 551 | if (got_int) |
| 552 | EMSG(_(e_interr)); |
Bram Moolenaar | 67fe1a1 | 2005-05-22 22:12:58 +0000 | [diff] [blame] | 553 | } |
| 554 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 555 | /* |
| 556 | * ":retab". |
| 557 | */ |
| 558 | void |
| 559 | ex_retab(eap) |
| 560 | exarg_T *eap; |
| 561 | { |
| 562 | linenr_T lnum; |
| 563 | int got_tab = FALSE; |
| 564 | long num_spaces = 0; |
| 565 | long num_tabs; |
| 566 | long len; |
| 567 | long col; |
| 568 | long vcol; |
| 569 | long start_col = 0; /* For start of white-space string */ |
| 570 | long start_vcol = 0; /* For start of white-space string */ |
| 571 | int temp; |
| 572 | long old_len; |
| 573 | char_u *ptr; |
| 574 | char_u *new_line = (char_u *)1; /* init to non-NULL */ |
| 575 | int did_undo; /* called u_save for current line */ |
| 576 | int new_ts; |
| 577 | int save_list; |
| 578 | linenr_T first_line = 0; /* first changed line */ |
| 579 | linenr_T last_line = 0; /* last changed line */ |
| 580 | |
| 581 | save_list = curwin->w_p_list; |
| 582 | curwin->w_p_list = 0; /* don't want list mode here */ |
| 583 | |
| 584 | new_ts = getdigits(&(eap->arg)); |
| 585 | if (new_ts < 0) |
| 586 | { |
| 587 | EMSG(_(e_positive)); |
| 588 | return; |
| 589 | } |
| 590 | if (new_ts == 0) |
| 591 | new_ts = curbuf->b_p_ts; |
| 592 | for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum) |
| 593 | { |
| 594 | ptr = ml_get(lnum); |
| 595 | col = 0; |
| 596 | vcol = 0; |
| 597 | did_undo = FALSE; |
| 598 | for (;;) |
| 599 | { |
| 600 | if (vim_iswhite(ptr[col])) |
| 601 | { |
| 602 | if (!got_tab && num_spaces == 0) |
| 603 | { |
| 604 | /* First consecutive white-space */ |
| 605 | start_vcol = vcol; |
| 606 | start_col = col; |
| 607 | } |
| 608 | if (ptr[col] == ' ') |
| 609 | num_spaces++; |
| 610 | else |
| 611 | got_tab = TRUE; |
| 612 | } |
| 613 | else |
| 614 | { |
| 615 | if (got_tab || (eap->forceit && num_spaces > 1)) |
| 616 | { |
| 617 | /* Retabulate this string of white-space */ |
| 618 | |
| 619 | /* len is virtual length of white string */ |
| 620 | len = num_spaces = vcol - start_vcol; |
| 621 | num_tabs = 0; |
| 622 | if (!curbuf->b_p_et) |
| 623 | { |
| 624 | temp = new_ts - (start_vcol % new_ts); |
| 625 | if (num_spaces >= temp) |
| 626 | { |
| 627 | num_spaces -= temp; |
| 628 | num_tabs++; |
| 629 | } |
| 630 | num_tabs += num_spaces / new_ts; |
| 631 | num_spaces -= (num_spaces / new_ts) * new_ts; |
| 632 | } |
| 633 | if (curbuf->b_p_et || got_tab || |
| 634 | (num_spaces + num_tabs < len)) |
| 635 | { |
| 636 | if (did_undo == FALSE) |
| 637 | { |
| 638 | did_undo = TRUE; |
| 639 | if (u_save((linenr_T)(lnum - 1), |
| 640 | (linenr_T)(lnum + 1)) == FAIL) |
| 641 | { |
| 642 | new_line = NULL; /* flag out-of-memory */ |
| 643 | break; |
| 644 | } |
| 645 | } |
| 646 | |
| 647 | /* len is actual number of white characters used */ |
| 648 | len = num_spaces + num_tabs; |
| 649 | old_len = (long)STRLEN(ptr); |
| 650 | new_line = lalloc(old_len - col + start_col + len + 1, |
| 651 | TRUE); |
| 652 | if (new_line == NULL) |
| 653 | break; |
| 654 | if (start_col > 0) |
| 655 | mch_memmove(new_line, ptr, (size_t)start_col); |
| 656 | mch_memmove(new_line + start_col + len, |
| 657 | ptr + col, (size_t)(old_len - col + 1)); |
| 658 | ptr = new_line + start_col; |
| 659 | for (col = 0; col < len; col++) |
| 660 | ptr[col] = (col < num_tabs) ? '\t' : ' '; |
| 661 | ml_replace(lnum, new_line, FALSE); |
| 662 | if (first_line == 0) |
| 663 | first_line = lnum; |
| 664 | last_line = lnum; |
| 665 | ptr = new_line; |
| 666 | col = start_col + len; |
| 667 | } |
| 668 | } |
| 669 | got_tab = FALSE; |
| 670 | num_spaces = 0; |
| 671 | } |
| 672 | if (ptr[col] == NUL) |
| 673 | break; |
| 674 | vcol += chartabsize(ptr + col, (colnr_T)vcol); |
| 675 | #ifdef FEAT_MBYTE |
| 676 | if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 677 | col += (*mb_ptr2len)(ptr + col); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 678 | else |
| 679 | #endif |
| 680 | ++col; |
| 681 | } |
| 682 | if (new_line == NULL) /* out of memory */ |
| 683 | break; |
| 684 | line_breakcheck(); |
| 685 | } |
| 686 | if (got_int) |
| 687 | EMSG(_(e_interr)); |
| 688 | |
| 689 | if (curbuf->b_p_ts != new_ts) |
| 690 | redraw_curbuf_later(NOT_VALID); |
| 691 | if (first_line != 0) |
| 692 | changed_lines(first_line, 0, last_line + 1, 0L); |
| 693 | |
| 694 | curwin->w_p_list = save_list; /* restore 'list' */ |
| 695 | |
| 696 | curbuf->b_p_ts = new_ts; |
| 697 | coladvance(curwin->w_curswant); |
| 698 | |
| 699 | u_clearline(); |
| 700 | } |
| 701 | #endif |
| 702 | |
| 703 | /* |
| 704 | * :move command - move lines line1-line2 to line dest |
| 705 | * |
| 706 | * return FAIL for failure, OK otherwise |
| 707 | */ |
| 708 | int |
| 709 | do_move(line1, line2, dest) |
| 710 | linenr_T line1; |
| 711 | linenr_T line2; |
| 712 | linenr_T dest; |
| 713 | { |
| 714 | char_u *str; |
| 715 | linenr_T l; |
| 716 | linenr_T extra; /* Num lines added before line1 */ |
| 717 | linenr_T num_lines; /* Num lines moved */ |
| 718 | linenr_T last_line; /* Last line in file after adding new text */ |
| 719 | |
| 720 | if (dest >= line1 && dest < line2) |
| 721 | { |
| 722 | EMSG(_("E134: Move lines into themselves")); |
| 723 | return FAIL; |
| 724 | } |
| 725 | |
| 726 | num_lines = line2 - line1 + 1; |
| 727 | |
| 728 | /* |
| 729 | * First we copy the old text to its new location -- webb |
| 730 | * Also copy the flag that ":global" command uses. |
| 731 | */ |
| 732 | if (u_save(dest, dest + 1) == FAIL) |
| 733 | return FAIL; |
| 734 | for (extra = 0, l = line1; l <= line2; l++) |
| 735 | { |
| 736 | str = vim_strsave(ml_get(l + extra)); |
| 737 | if (str != NULL) |
| 738 | { |
| 739 | ml_append(dest + l - line1, str, (colnr_T)0, FALSE); |
| 740 | vim_free(str); |
| 741 | if (dest < line1) |
| 742 | extra++; |
| 743 | } |
| 744 | } |
| 745 | |
| 746 | /* |
| 747 | * Now we must be careful adjusting our marks so that we don't overlap our |
| 748 | * mark_adjust() calls. |
| 749 | * |
| 750 | * We adjust the marks within the old text so that they refer to the |
| 751 | * last lines of the file (temporarily), because we know no other marks |
| 752 | * will be set there since these line numbers did not exist until we added |
| 753 | * our new lines. |
| 754 | * |
| 755 | * Then we adjust the marks on lines between the old and new text positions |
| 756 | * (either forwards or backwards). |
| 757 | * |
| 758 | * And Finally we adjust the marks we put at the end of the file back to |
| 759 | * their final destination at the new text position -- webb |
| 760 | */ |
| 761 | last_line = curbuf->b_ml.ml_line_count; |
| 762 | mark_adjust(line1, line2, last_line - line2, 0L); |
| 763 | if (dest >= line2) |
| 764 | { |
| 765 | mark_adjust(line2 + 1, dest, -num_lines, 0L); |
| 766 | curbuf->b_op_start.lnum = dest - num_lines + 1; |
| 767 | curbuf->b_op_end.lnum = dest; |
| 768 | } |
| 769 | else |
| 770 | { |
| 771 | mark_adjust(dest + 1, line1 - 1, num_lines, 0L); |
| 772 | curbuf->b_op_start.lnum = dest + 1; |
| 773 | curbuf->b_op_end.lnum = dest + num_lines; |
| 774 | } |
| 775 | curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
| 776 | mark_adjust(last_line - num_lines + 1, last_line, |
| 777 | -(last_line - dest - extra), 0L); |
| 778 | |
| 779 | /* |
| 780 | * Now we delete the original text -- webb |
| 781 | */ |
| 782 | if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL) |
| 783 | return FAIL; |
| 784 | |
| 785 | for (l = line1; l <= line2; l++) |
| 786 | ml_delete(line1 + extra, TRUE); |
| 787 | |
| 788 | if (!global_busy && num_lines > p_report) |
| 789 | { |
| 790 | if (num_lines == 1) |
| 791 | MSG(_("1 line moved")); |
| 792 | else |
| 793 | smsg((char_u *)_("%ld lines moved"), num_lines); |
| 794 | } |
| 795 | |
| 796 | /* |
| 797 | * Leave the cursor on the last of the moved lines. |
| 798 | */ |
| 799 | if (dest >= line1) |
| 800 | curwin->w_cursor.lnum = dest; |
| 801 | else |
| 802 | curwin->w_cursor.lnum = dest + (line2 - line1) + 1; |
| 803 | |
| 804 | if (line1 < dest) |
| 805 | changed_lines(line1, 0, dest + num_lines + 1, 0L); |
| 806 | else |
| 807 | changed_lines(dest + 1, 0, line1 + num_lines, 0L); |
| 808 | |
| 809 | return OK; |
| 810 | } |
| 811 | |
| 812 | /* |
| 813 | * ":copy" |
| 814 | */ |
| 815 | void |
| 816 | ex_copy(line1, line2, n) |
| 817 | linenr_T line1; |
| 818 | linenr_T line2; |
| 819 | linenr_T n; |
| 820 | { |
| 821 | linenr_T count; |
| 822 | char_u *p; |
| 823 | |
| 824 | count = line2 - line1 + 1; |
| 825 | curbuf->b_op_start.lnum = n + 1; |
| 826 | curbuf->b_op_end.lnum = n + count; |
| 827 | curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
| 828 | |
| 829 | /* |
| 830 | * there are three situations: |
| 831 | * 1. destination is above line1 |
| 832 | * 2. destination is between line1 and line2 |
| 833 | * 3. destination is below line2 |
| 834 | * |
| 835 | * n = destination (when starting) |
| 836 | * curwin->w_cursor.lnum = destination (while copying) |
| 837 | * line1 = start of source (while copying) |
| 838 | * line2 = end of source (while copying) |
| 839 | */ |
| 840 | if (u_save(n, n + 1) == FAIL) |
| 841 | return; |
| 842 | |
| 843 | curwin->w_cursor.lnum = n; |
| 844 | while (line1 <= line2) |
| 845 | { |
| 846 | /* need to use vim_strsave() because the line will be unlocked within |
| 847 | * ml_append() */ |
| 848 | p = vim_strsave(ml_get(line1)); |
| 849 | if (p != NULL) |
| 850 | { |
| 851 | ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE); |
| 852 | vim_free(p); |
| 853 | } |
| 854 | /* situation 2: skip already copied lines */ |
| 855 | if (line1 == n) |
| 856 | line1 = curwin->w_cursor.lnum; |
| 857 | ++line1; |
| 858 | if (curwin->w_cursor.lnum < line1) |
| 859 | ++line1; |
| 860 | if (curwin->w_cursor.lnum < line2) |
| 861 | ++line2; |
| 862 | ++curwin->w_cursor.lnum; |
| 863 | } |
| 864 | |
| 865 | appended_lines_mark(n, count); |
| 866 | |
| 867 | msgmore((long)count); |
| 868 | } |
| 869 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 870 | static char_u *prevcmd = NULL; /* the previous command */ |
| 871 | |
| 872 | #if defined(EXITFREE) || defined(PROTO) |
| 873 | void |
| 874 | free_prev_shellcmd() |
| 875 | { |
| 876 | vim_free(prevcmd); |
| 877 | } |
| 878 | #endif |
| 879 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 880 | /* |
| 881 | * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd" |
| 882 | * Bangs in the argument are replaced with the previously entered command. |
| 883 | * Remember the argument. |
| 884 | * |
| 885 | * RISCOS: Bangs only replaced when followed by a space, since many |
| 886 | * pathnames contain one. |
| 887 | */ |
| 888 | void |
| 889 | do_bang(addr_count, eap, forceit, do_in, do_out) |
| 890 | int addr_count; |
| 891 | exarg_T *eap; |
| 892 | int forceit; |
| 893 | int do_in, do_out; |
| 894 | { |
| 895 | char_u *arg = eap->arg; /* command */ |
| 896 | linenr_T line1 = eap->line1; /* start of range */ |
| 897 | linenr_T line2 = eap->line2; /* end of range */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 898 | char_u *newcmd = NULL; /* the new command */ |
| 899 | int free_newcmd = FALSE; /* need to free() newcmd */ |
| 900 | int ins_prevcmd; |
| 901 | char_u *t; |
| 902 | char_u *p; |
| 903 | char_u *trailarg; |
| 904 | int len; |
| 905 | int scroll_save = msg_scroll; |
| 906 | |
| 907 | /* |
| 908 | * Disallow shell commands for "rvim". |
| 909 | * Disallow shell commands from .exrc and .vimrc in current directory for |
| 910 | * security reasons. |
| 911 | */ |
| 912 | if (check_restricted() || check_secure()) |
| 913 | return; |
| 914 | |
| 915 | if (addr_count == 0) /* :! */ |
| 916 | { |
| 917 | msg_scroll = FALSE; /* don't scroll here */ |
| 918 | autowrite_all(); |
| 919 | msg_scroll = scroll_save; |
| 920 | } |
| 921 | |
| 922 | /* |
| 923 | * Try to find an embedded bang, like in :!<cmd> ! [args] |
| 924 | * (:!! is indicated by the 'forceit' variable) |
| 925 | */ |
| 926 | ins_prevcmd = forceit; |
| 927 | trailarg = arg; |
| 928 | do |
| 929 | { |
| 930 | len = (int)STRLEN(trailarg) + 1; |
| 931 | if (newcmd != NULL) |
| 932 | len += (int)STRLEN(newcmd); |
| 933 | if (ins_prevcmd) |
| 934 | { |
| 935 | if (prevcmd == NULL) |
| 936 | { |
| 937 | EMSG(_(e_noprev)); |
| 938 | vim_free(newcmd); |
| 939 | return; |
| 940 | } |
| 941 | len += (int)STRLEN(prevcmd); |
| 942 | } |
| 943 | if ((t = alloc(len)) == NULL) |
| 944 | { |
| 945 | vim_free(newcmd); |
| 946 | return; |
| 947 | } |
| 948 | *t = NUL; |
| 949 | if (newcmd != NULL) |
| 950 | STRCAT(t, newcmd); |
| 951 | if (ins_prevcmd) |
| 952 | STRCAT(t, prevcmd); |
| 953 | p = t + STRLEN(t); |
| 954 | STRCAT(t, trailarg); |
| 955 | vim_free(newcmd); |
| 956 | newcmd = t; |
| 957 | |
| 958 | /* |
| 959 | * Scan the rest of the argument for '!', which is replaced by the |
| 960 | * previous command. "\!" is replaced by "!" (this is vi compatible). |
| 961 | */ |
| 962 | trailarg = NULL; |
| 963 | while (*p) |
| 964 | { |
| 965 | if (*p == '!' |
| 966 | #ifdef RISCOS |
| 967 | && (p[1] == ' ' || p[1] == NUL) |
| 968 | #endif |
| 969 | ) |
| 970 | { |
| 971 | if (p > newcmd && p[-1] == '\\') |
| 972 | mch_memmove(p - 1, p, (size_t)(STRLEN(p) + 1)); |
| 973 | else |
| 974 | { |
| 975 | trailarg = p; |
| 976 | *trailarg++ = NUL; |
| 977 | ins_prevcmd = TRUE; |
| 978 | break; |
| 979 | } |
| 980 | } |
| 981 | ++p; |
| 982 | } |
| 983 | } while (trailarg != NULL); |
| 984 | |
| 985 | vim_free(prevcmd); |
| 986 | prevcmd = newcmd; |
| 987 | |
| 988 | if (bangredo) /* put cmd in redo buffer for ! command */ |
| 989 | { |
Bram Moolenaar | ebefac6 | 2005-12-28 22:39:57 +0000 | [diff] [blame] | 990 | AppendToRedobuffLit(prevcmd, -1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 991 | AppendToRedobuff((char_u *)"\n"); |
| 992 | bangredo = FALSE; |
| 993 | } |
| 994 | /* |
| 995 | * Add quotes around the command, for shells that need them. |
| 996 | */ |
| 997 | if (*p_shq != NUL) |
| 998 | { |
| 999 | newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1)); |
| 1000 | if (newcmd == NULL) |
| 1001 | return; |
| 1002 | STRCPY(newcmd, p_shq); |
| 1003 | STRCAT(newcmd, prevcmd); |
| 1004 | STRCAT(newcmd, p_shq); |
| 1005 | free_newcmd = TRUE; |
| 1006 | } |
| 1007 | if (addr_count == 0) /* :! */ |
| 1008 | { |
| 1009 | /* echo the command */ |
| 1010 | msg_start(); |
| 1011 | msg_putchar(':'); |
| 1012 | msg_putchar('!'); |
| 1013 | msg_outtrans(newcmd); |
| 1014 | msg_clr_eos(); |
| 1015 | windgoto(msg_row, msg_col); |
| 1016 | |
| 1017 | do_shell(newcmd, 0); |
| 1018 | } |
| 1019 | else /* :range! */ |
Bram Moolenaar | ade0083 | 2006-03-10 21:46:58 +0000 | [diff] [blame] | 1020 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1021 | /* Careful: This may recursively call do_bang() again! (because of |
| 1022 | * autocommands) */ |
| 1023 | do_filter(line1, line2, eap, newcmd, do_in, do_out); |
Bram Moolenaar | ade0083 | 2006-03-10 21:46:58 +0000 | [diff] [blame] | 1024 | #ifdef FEAT_AUTOCMD |
| 1025 | apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf); |
| 1026 | #endif |
| 1027 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1028 | if (free_newcmd) |
| 1029 | vim_free(newcmd); |
| 1030 | } |
| 1031 | |
| 1032 | /* |
| 1033 | * do_filter: filter lines through a command given by the user |
| 1034 | * |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1035 | * We mostly use temp files and the call_shell() routine here. This would |
| 1036 | * normally be done using pipes on a UNIX machine, but this is more portable |
| 1037 | * to non-unix machines. The call_shell() routine needs to be able |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1038 | * to deal with redirection somehow, and should handle things like looking |
| 1039 | * at the PATH env. variable, and adding reasonable extensions to the |
| 1040 | * command name given by the user. All reasonable versions of call_shell() |
| 1041 | * do this. |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1042 | * Alternatively, if on Unix and redirecting input or output, but not both, |
| 1043 | * and the 'shelltemp' option isn't set, use pipes. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1044 | * We use input redirection if do_in is TRUE. |
| 1045 | * We use output redirection if do_out is TRUE. |
| 1046 | */ |
| 1047 | static void |
| 1048 | do_filter(line1, line2, eap, cmd, do_in, do_out) |
| 1049 | linenr_T line1, line2; |
| 1050 | exarg_T *eap; /* for forced 'ff' and 'fenc' */ |
| 1051 | char_u *cmd; |
| 1052 | int do_in, do_out; |
| 1053 | { |
| 1054 | char_u *itmp = NULL; |
| 1055 | char_u *otmp = NULL; |
| 1056 | linenr_T linecount; |
| 1057 | linenr_T read_linecount; |
| 1058 | pos_T cursor_save; |
| 1059 | char_u *cmd_buf; |
| 1060 | #ifdef FEAT_AUTOCMD |
| 1061 | buf_T *old_curbuf = curbuf; |
| 1062 | #endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1063 | int shell_flags = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1064 | |
| 1065 | if (*cmd == NUL) /* no filter command */ |
| 1066 | return; |
| 1067 | |
| 1068 | #ifdef WIN3264 |
| 1069 | /* |
| 1070 | * Check if external commands are allowed now. |
| 1071 | */ |
| 1072 | if (can_end_termcap_mode(TRUE) == FALSE) |
| 1073 | return; |
| 1074 | #endif |
| 1075 | |
| 1076 | cursor_save = curwin->w_cursor; |
| 1077 | linecount = line2 - line1 + 1; |
| 1078 | curwin->w_cursor.lnum = line1; |
| 1079 | curwin->w_cursor.col = 0; |
| 1080 | changed_line_abv_curs(); |
| 1081 | invalidate_botline(); |
| 1082 | |
| 1083 | /* |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1084 | * When using temp files: |
| 1085 | * 1. * Form temp file names |
| 1086 | * 2. * Write the lines to a temp file |
| 1087 | * 3. Run the filter command on the temp file |
| 1088 | * 4. * Read the output of the command into the buffer |
| 1089 | * 5. * Delete the original lines to be filtered |
| 1090 | * 6. * Remove the temp files |
| 1091 | * |
| 1092 | * When writing the input with a pipe or when catching the output with a |
| 1093 | * pipe only need to do 3. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1094 | */ |
| 1095 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1096 | if (do_out) |
| 1097 | shell_flags |= SHELL_DOOUT; |
| 1098 | |
| 1099 | #if !defined(USE_SYSTEM) && defined(UNIX) |
| 1100 | if (!do_in && do_out && !p_stmp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1101 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1102 | /* Use a pipe to fetch stdout of the command, do not use a temp file. */ |
| 1103 | shell_flags |= SHELL_READ; |
| 1104 | curwin->w_cursor.lnum = line2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1105 | } |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1106 | else if (do_in && !do_out && !p_stmp) |
| 1107 | { |
| 1108 | /* Use a pipe to write stdin of the command, do not use a temp file. */ |
| 1109 | shell_flags |= SHELL_WRITE; |
| 1110 | curbuf->b_op_start.lnum = line1; |
| 1111 | curbuf->b_op_end.lnum = line2; |
| 1112 | } |
| 1113 | else if (do_in && do_out && !p_stmp) |
| 1114 | { |
| 1115 | /* Use a pipe to write stdin and fetch stdout of the command, do not |
| 1116 | * use a temp file. */ |
| 1117 | shell_flags |= SHELL_READ|SHELL_WRITE; |
| 1118 | curbuf->b_op_start.lnum = line1; |
| 1119 | curbuf->b_op_end.lnum = line2; |
| 1120 | curwin->w_cursor.lnum = line2; |
| 1121 | } |
| 1122 | else |
| 1123 | #endif |
| 1124 | if ((do_in && (itmp = vim_tempname('i')) == NULL) |
| 1125 | || (do_out && (otmp = vim_tempname('o')) == NULL)) |
| 1126 | { |
| 1127 | EMSG(_(e_notmp)); |
| 1128 | goto filterend; |
| 1129 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1130 | |
| 1131 | /* |
| 1132 | * The writing and reading of temp files will not be shown. |
| 1133 | * Vi also doesn't do this and the messages are not very informative. |
| 1134 | */ |
| 1135 | ++no_wait_return; /* don't call wait_return() while busy */ |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1136 | if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1137 | FALSE, FALSE, FALSE, TRUE) == FAIL) |
| 1138 | { |
| 1139 | msg_putchar('\n'); /* keep message from buf_write() */ |
| 1140 | --no_wait_return; |
| 1141 | #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
| 1142 | if (!aborting()) |
| 1143 | #endif |
| 1144 | (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */ |
| 1145 | goto filterend; |
| 1146 | } |
| 1147 | #ifdef FEAT_AUTOCMD |
| 1148 | if (curbuf != old_curbuf) |
| 1149 | goto filterend; |
| 1150 | #endif |
| 1151 | |
| 1152 | if (!do_out) |
| 1153 | msg_putchar('\n'); |
| 1154 | |
| 1155 | cmd_buf = make_filter_cmd(cmd, itmp, otmp); |
| 1156 | if (cmd_buf == NULL) |
| 1157 | goto filterend; |
| 1158 | |
| 1159 | windgoto((int)Rows - 1, 0); |
| 1160 | cursor_on(); |
| 1161 | |
| 1162 | /* |
| 1163 | * When not redirecting the output the command can write anything to the |
| 1164 | * screen. If 'shellredir' is equal to ">", screen may be messed up by |
| 1165 | * stderr output of external command. Clear the screen later. |
| 1166 | * If do_in is FALSE, this could be something like ":r !cat", which may |
| 1167 | * also mess up the screen, clear it later. |
| 1168 | */ |
| 1169 | if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in) |
| 1170 | redraw_later_clear(); |
| 1171 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1172 | if (do_out) |
| 1173 | { |
| 1174 | if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL) |
| 1175 | goto error; |
| 1176 | redraw_curbuf_later(VALID); |
| 1177 | } |
| 1178 | read_linecount = curbuf->b_ml.ml_line_count; |
| 1179 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1180 | /* |
| 1181 | * When call_shell() fails wait_return() is called to give the user a |
| 1182 | * chance to read the error messages. Otherwise errors are ignored, so you |
| 1183 | * can see the error messages from the command that appear on stdout; use |
| 1184 | * 'u' to fix the text |
| 1185 | * Switch to cooked mode when not redirecting stdin, avoids that something |
| 1186 | * like ":r !cat" hangs. |
| 1187 | * Pass on the SHELL_DOOUT flag when the output is being redirected. |
| 1188 | */ |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1189 | if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1190 | { |
| 1191 | redraw_later_clear(); |
| 1192 | wait_return(FALSE); |
| 1193 | } |
| 1194 | vim_free(cmd_buf); |
| 1195 | |
| 1196 | did_check_timestamps = FALSE; |
| 1197 | need_check_timestamps = TRUE; |
| 1198 | |
| 1199 | /* When interrupting the shell command, it may still have produced some |
| 1200 | * useful output. Reset got_int here, so that readfile() won't cancel |
| 1201 | * reading. */ |
| 1202 | ui_breakcheck(); |
| 1203 | got_int = FALSE; |
| 1204 | |
| 1205 | if (do_out) |
| 1206 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1207 | if (otmp != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1208 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1209 | if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM, |
| 1210 | eap, READ_FILTER) == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1211 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1212 | #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
| 1213 | if (!aborting()) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1214 | #endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1215 | { |
| 1216 | msg_putchar('\n'); |
| 1217 | EMSG2(_(e_notread), otmp); |
| 1218 | } |
| 1219 | goto error; |
| 1220 | } |
| 1221 | #ifdef FEAT_AUTOCMD |
| 1222 | if (curbuf != old_curbuf) |
| 1223 | goto filterend; |
| 1224 | #endif |
| 1225 | } |
| 1226 | |
| 1227 | read_linecount = curbuf->b_ml.ml_line_count - read_linecount; |
| 1228 | |
| 1229 | if (shell_flags & SHELL_READ) |
| 1230 | { |
| 1231 | curbuf->b_op_start.lnum = line2 + 1; |
| 1232 | curbuf->b_op_end.lnum = curwin->w_cursor.lnum; |
| 1233 | appended_lines_mark(line2, read_linecount); |
| 1234 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1235 | |
| 1236 | if (do_in) |
| 1237 | { |
| 1238 | if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL) |
| 1239 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1240 | if (read_linecount >= linecount) |
| 1241 | /* move all marks from old lines to new lines */ |
| 1242 | mark_adjust(line1, line2, linecount, 0L); |
| 1243 | else |
| 1244 | { |
| 1245 | /* move marks from old lines to new lines, delete marks |
| 1246 | * that are in deleted lines */ |
| 1247 | mark_adjust(line1, line1 + read_linecount - 1, |
| 1248 | linecount, 0L); |
| 1249 | mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L); |
| 1250 | } |
| 1251 | } |
| 1252 | |
| 1253 | /* |
| 1254 | * Put cursor on first filtered line for ":range!cmd". |
| 1255 | * Adjust '[ and '] (set by buf_write()). |
| 1256 | */ |
| 1257 | curwin->w_cursor.lnum = line1; |
| 1258 | del_lines(linecount, TRUE); |
| 1259 | curbuf->b_op_start.lnum -= linecount; /* adjust '[ */ |
| 1260 | curbuf->b_op_end.lnum -= linecount; /* adjust '] */ |
| 1261 | write_lnum_adjust(-linecount); /* adjust last line |
| 1262 | for next write */ |
Bram Moolenaar | 8c71145 | 2005-01-14 21:53:12 +0000 | [diff] [blame] | 1263 | #ifdef FEAT_FOLDING |
| 1264 | foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum); |
| 1265 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1266 | } |
| 1267 | else |
| 1268 | { |
| 1269 | /* |
| 1270 | * Put cursor on last new line for ":r !cmd". |
| 1271 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1272 | linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1273 | curwin->w_cursor.lnum = curbuf->b_op_end.lnum; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1274 | } |
Bram Moolenaar | 8c71145 | 2005-01-14 21:53:12 +0000 | [diff] [blame] | 1275 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1276 | beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */ |
| 1277 | --no_wait_return; |
| 1278 | |
| 1279 | if (linecount > p_report) |
| 1280 | { |
| 1281 | if (do_in) |
| 1282 | { |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 1283 | vim_snprintf((char *)msg_buf, sizeof(msg_buf), |
| 1284 | _("%ld lines filtered"), (long)linecount); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1285 | if (msg(msg_buf) && !msg_scroll) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1286 | /* save message to display it after redraw */ |
Bram Moolenaar | 238a564 | 2006-02-21 22:12:05 +0000 | [diff] [blame] | 1287 | set_keep_msg(msg_buf, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1288 | } |
| 1289 | else |
| 1290 | msgmore((long)linecount); |
| 1291 | } |
| 1292 | } |
| 1293 | else |
| 1294 | { |
| 1295 | error: |
| 1296 | /* put cursor back in same position for ":w !cmd" */ |
| 1297 | curwin->w_cursor = cursor_save; |
| 1298 | --no_wait_return; |
| 1299 | wait_return(FALSE); |
| 1300 | } |
| 1301 | |
| 1302 | filterend: |
| 1303 | |
| 1304 | #ifdef FEAT_AUTOCMD |
| 1305 | if (curbuf != old_curbuf) |
| 1306 | { |
| 1307 | --no_wait_return; |
| 1308 | EMSG(_("E135: *Filter* Autocommands must not change current buffer")); |
| 1309 | } |
| 1310 | #endif |
| 1311 | if (itmp != NULL) |
| 1312 | mch_remove(itmp); |
| 1313 | if (otmp != NULL) |
| 1314 | mch_remove(otmp); |
| 1315 | vim_free(itmp); |
| 1316 | vim_free(otmp); |
| 1317 | } |
| 1318 | |
| 1319 | /* |
| 1320 | * Call a shell to execute a command. |
| 1321 | * When "cmd" is NULL start an interactive shell. |
| 1322 | */ |
| 1323 | void |
| 1324 | do_shell(cmd, flags) |
| 1325 | char_u *cmd; |
| 1326 | int flags; /* may be SHELL_DOOUT when output is redirected */ |
| 1327 | { |
| 1328 | buf_T *buf; |
| 1329 | #ifndef FEAT_GUI_MSWIN |
| 1330 | int save_nwr; |
| 1331 | #endif |
| 1332 | #ifdef MSWIN |
| 1333 | int winstart = FALSE; |
| 1334 | #endif |
| 1335 | |
| 1336 | /* |
| 1337 | * Disallow shell commands for "rvim". |
| 1338 | * Disallow shell commands from .exrc and .vimrc in current directory for |
| 1339 | * security reasons. |
| 1340 | */ |
| 1341 | if (check_restricted() || check_secure()) |
| 1342 | { |
| 1343 | msg_end(); |
| 1344 | return; |
| 1345 | } |
| 1346 | |
| 1347 | #ifdef MSWIN |
| 1348 | /* |
| 1349 | * Check if external commands are allowed now. |
| 1350 | */ |
| 1351 | if (can_end_termcap_mode(TRUE) == FALSE) |
| 1352 | return; |
| 1353 | |
| 1354 | /* |
| 1355 | * Check if ":!start" is used. |
| 1356 | */ |
| 1357 | if (cmd != NULL) |
| 1358 | winstart = (STRNICMP(cmd, "start ", 6) == 0); |
| 1359 | #endif |
| 1360 | |
| 1361 | /* |
| 1362 | * For autocommands we want to get the output on the current screen, to |
| 1363 | * avoid having to type return below. |
| 1364 | */ |
| 1365 | msg_putchar('\r'); /* put cursor at start of line */ |
| 1366 | #ifdef FEAT_AUTOCMD |
| 1367 | if (!autocmd_busy) |
| 1368 | #endif |
| 1369 | { |
| 1370 | #ifdef MSWIN |
| 1371 | if (!winstart) |
| 1372 | #endif |
| 1373 | stoptermcap(); |
| 1374 | } |
| 1375 | #ifdef MSWIN |
| 1376 | if (!winstart) |
| 1377 | #endif |
| 1378 | msg_putchar('\n'); /* may shift screen one line up */ |
| 1379 | |
| 1380 | /* warning message before calling the shell */ |
| 1381 | if (p_warn |
| 1382 | #ifdef FEAT_AUTOCMD |
| 1383 | && !autocmd_busy |
| 1384 | #endif |
| 1385 | && msg_silent == 0) |
| 1386 | for (buf = firstbuf; buf; buf = buf->b_next) |
| 1387 | if (bufIsChanged(buf)) |
| 1388 | { |
| 1389 | #ifdef FEAT_GUI_MSWIN |
| 1390 | if (!winstart) |
| 1391 | starttermcap(); /* don't want a message box here */ |
| 1392 | #endif |
| 1393 | MSG_PUTS(_("[No write since last change]\n")); |
| 1394 | #ifdef FEAT_GUI_MSWIN |
| 1395 | if (!winstart) |
| 1396 | stoptermcap(); |
| 1397 | #endif |
| 1398 | break; |
| 1399 | } |
| 1400 | |
| 1401 | /* This windgoto is required for when the '\n' resulted in a "delete line |
| 1402 | * 1" command to the terminal. */ |
| 1403 | if (!swapping_screen()) |
| 1404 | windgoto(msg_row, msg_col); |
| 1405 | cursor_on(); |
| 1406 | (void)call_shell(cmd, SHELL_COOKED | flags); |
| 1407 | did_check_timestamps = FALSE; |
| 1408 | need_check_timestamps = TRUE; |
| 1409 | |
| 1410 | /* |
| 1411 | * put the message cursor at the end of the screen, avoids wait_return() |
| 1412 | * to overwrite the text that the external command showed |
| 1413 | */ |
| 1414 | if (!swapping_screen()) |
| 1415 | { |
| 1416 | msg_row = Rows - 1; |
| 1417 | msg_col = 0; |
| 1418 | } |
| 1419 | |
| 1420 | #ifdef FEAT_AUTOCMD |
| 1421 | if (autocmd_busy) |
| 1422 | { |
| 1423 | if (msg_silent == 0) |
| 1424 | redraw_later_clear(); |
| 1425 | } |
| 1426 | else |
| 1427 | #endif |
| 1428 | { |
| 1429 | /* |
| 1430 | * For ":sh" there is no need to call wait_return(), just redraw. |
| 1431 | * Also for the Win32 GUI (the output is in a console window). |
| 1432 | * Otherwise there is probably text on the screen that the user wants |
| 1433 | * to read before redrawing, so call wait_return(). |
| 1434 | */ |
| 1435 | #ifndef FEAT_GUI_MSWIN |
| 1436 | if (cmd == NULL |
| 1437 | # ifdef WIN3264 |
| 1438 | || (winstart && !need_wait_return) |
| 1439 | # endif |
| 1440 | ) |
| 1441 | { |
| 1442 | if (msg_silent == 0) |
| 1443 | redraw_later_clear(); |
| 1444 | need_wait_return = FALSE; |
| 1445 | } |
| 1446 | else |
| 1447 | { |
| 1448 | /* |
| 1449 | * If we switch screens when starttermcap() is called, we really |
| 1450 | * want to wait for "hit return to continue". |
| 1451 | */ |
| 1452 | save_nwr = no_wait_return; |
| 1453 | if (swapping_screen()) |
| 1454 | no_wait_return = FALSE; |
| 1455 | # ifdef AMIGA |
| 1456 | wait_return(term_console ? -1 : msg_silent == 0); /* see below */ |
| 1457 | # else |
| 1458 | wait_return(msg_silent == 0); |
| 1459 | # endif |
| 1460 | no_wait_return = save_nwr; |
| 1461 | } |
| 1462 | #endif /* FEAT_GUI_W32 */ |
| 1463 | |
| 1464 | #ifdef MSWIN |
| 1465 | if (!winstart) /* if winstart==TRUE, never stopped termcap! */ |
| 1466 | #endif |
| 1467 | starttermcap(); /* start termcap if not done by wait_return() */ |
| 1468 | |
| 1469 | /* |
| 1470 | * In an Amiga window redrawing is caused by asking the window size. |
| 1471 | * If we got an interrupt this will not work. The chance that the |
| 1472 | * window size is wrong is very small, but we need to redraw the |
| 1473 | * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY |
| 1474 | * but it saves an extra redraw. |
| 1475 | */ |
| 1476 | #ifdef AMIGA |
| 1477 | if (skip_redraw) /* ':' hit in wait_return() */ |
| 1478 | { |
| 1479 | if (msg_silent == 0) |
| 1480 | redraw_later_clear(); |
| 1481 | } |
| 1482 | else if (term_console) |
| 1483 | { |
| 1484 | OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */ |
| 1485 | if (got_int && msg_silent == 0) |
| 1486 | redraw_later_clear(); /* if got_int is TRUE, redraw needed */ |
| 1487 | else |
| 1488 | must_redraw = 0; /* no extra redraw needed */ |
| 1489 | } |
| 1490 | #endif |
| 1491 | } |
| 1492 | |
| 1493 | /* display any error messages now */ |
| 1494 | display_errors(); |
Bram Moolenaar | ade0083 | 2006-03-10 21:46:58 +0000 | [diff] [blame] | 1495 | |
| 1496 | #ifdef FEAT_AUTOCMD |
| 1497 | apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf); |
| 1498 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1499 | } |
| 1500 | |
| 1501 | /* |
| 1502 | * Create a shell command from a command string, input redirection file and |
| 1503 | * output redirection file. |
| 1504 | * Returns an allocated string with the shell command, or NULL for failure. |
| 1505 | */ |
| 1506 | char_u * |
| 1507 | make_filter_cmd(cmd, itmp, otmp) |
| 1508 | char_u *cmd; /* command */ |
| 1509 | char_u *itmp; /* NULL or name of input file */ |
| 1510 | char_u *otmp; /* NULL or name of output file */ |
| 1511 | { |
| 1512 | char_u *buf; |
| 1513 | long_u len; |
| 1514 | |
| 1515 | len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */ |
| 1516 | if (itmp != NULL) |
| 1517 | len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */ |
| 1518 | if (otmp != NULL) |
| 1519 | len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */ |
| 1520 | buf = lalloc(len, TRUE); |
| 1521 | if (buf == NULL) |
| 1522 | return NULL; |
| 1523 | |
| 1524 | #if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2) |
| 1525 | /* |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1526 | * Put braces around the command (for concatenated commands) when |
| 1527 | * redirecting input and/or output. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1528 | */ |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 1529 | if (itmp != NULL || otmp != NULL) |
| 1530 | sprintf((char *)buf, "(%s)", (char *)cmd); |
| 1531 | else |
| 1532 | STRCPY(buf, cmd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1533 | if (itmp != NULL) |
| 1534 | { |
| 1535 | STRCAT(buf, " < "); |
| 1536 | STRCAT(buf, itmp); |
| 1537 | } |
| 1538 | #else |
| 1539 | /* |
| 1540 | * for shells that don't understand braces around commands, at least allow |
| 1541 | * the use of commands in a pipe. |
| 1542 | */ |
| 1543 | STRCPY(buf, cmd); |
| 1544 | if (itmp != NULL) |
| 1545 | { |
| 1546 | char_u *p; |
| 1547 | |
| 1548 | /* |
| 1549 | * If there is a pipe, we have to put the '<' in front of it. |
| 1550 | * Don't do this when 'shellquote' is not empty, otherwise the |
| 1551 | * redirection would be inside the quotes. |
| 1552 | */ |
| 1553 | if (*p_shq == NUL) |
| 1554 | { |
| 1555 | p = vim_strchr(buf, '|'); |
| 1556 | if (p != NULL) |
| 1557 | *p = NUL; |
| 1558 | } |
| 1559 | # ifdef RISCOS |
| 1560 | STRCAT(buf, " { < "); /* Use RISC OS notation for input. */ |
| 1561 | STRCAT(buf, itmp); |
| 1562 | STRCAT(buf, " } "); |
| 1563 | # else |
| 1564 | STRCAT(buf, " <"); /* " < " causes problems on Amiga */ |
| 1565 | STRCAT(buf, itmp); |
| 1566 | # endif |
| 1567 | if (*p_shq == NUL) |
| 1568 | { |
| 1569 | p = vim_strchr(cmd, '|'); |
| 1570 | if (p != NULL) |
| 1571 | { |
| 1572 | STRCAT(buf, " "); /* insert a space before the '|' for DOS */ |
| 1573 | STRCAT(buf, p); |
| 1574 | } |
| 1575 | } |
| 1576 | } |
| 1577 | #endif |
| 1578 | if (otmp != NULL) |
| 1579 | append_redir(buf, p_srr, otmp); |
| 1580 | |
| 1581 | return buf; |
| 1582 | } |
| 1583 | |
| 1584 | /* |
| 1585 | * Append output redirection for file "fname" to the end of string buffer "buf" |
| 1586 | * Works with the 'shellredir' and 'shellpipe' options. |
| 1587 | * The caller should make sure that there is enough room: |
| 1588 | * STRLEN(opt) + STRLEN(fname) + 3 |
| 1589 | */ |
| 1590 | void |
| 1591 | append_redir(buf, opt, fname) |
| 1592 | char_u *buf; |
| 1593 | char_u *opt; |
| 1594 | char_u *fname; |
| 1595 | { |
| 1596 | char_u *p; |
| 1597 | |
| 1598 | buf += STRLEN(buf); |
| 1599 | /* find "%s", skipping "%%" */ |
| 1600 | for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p) |
| 1601 | if (p[1] == 's') |
| 1602 | break; |
| 1603 | if (p != NULL) |
| 1604 | { |
| 1605 | *buf = ' '; /* not really needed? Not with sh, ksh or bash */ |
| 1606 | sprintf((char *)buf + 1, (char *)opt, (char *)fname); |
| 1607 | } |
| 1608 | else |
| 1609 | sprintf((char *)buf, |
| 1610 | #ifdef FEAT_QUICKFIX |
| 1611 | # ifndef RISCOS |
| 1612 | opt != p_sp ? " %s%s" : |
| 1613 | # endif |
| 1614 | " %s %s", |
| 1615 | #else |
| 1616 | # ifndef RISCOS |
| 1617 | " %s%s", /* " > %s" causes problems on Amiga */ |
| 1618 | # else |
| 1619 | " %s %s", /* But is needed for 'shellpipe' and RISC OS */ |
| 1620 | # endif |
| 1621 | #endif |
| 1622 | (char *)opt, (char *)fname); |
| 1623 | } |
| 1624 | |
| 1625 | #ifdef FEAT_VIMINFO |
| 1626 | |
| 1627 | static int no_viminfo __ARGS((void)); |
| 1628 | static int viminfo_errcnt; |
| 1629 | |
| 1630 | static int |
| 1631 | no_viminfo() |
| 1632 | { |
| 1633 | /* "vim -i NONE" does not read or write a viminfo file */ |
| 1634 | return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0); |
| 1635 | } |
| 1636 | |
| 1637 | /* |
| 1638 | * Report an error for reading a viminfo file. |
| 1639 | * Count the number of errors. When there are more than 10, return TRUE. |
| 1640 | */ |
| 1641 | int |
| 1642 | viminfo_error(errnum, message, line) |
| 1643 | char *errnum; |
| 1644 | char *message; |
| 1645 | char_u *line; |
| 1646 | { |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 1647 | vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "), |
| 1648 | errnum, message); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1649 | STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff)); |
Bram Moolenaar | 758711c | 2005-02-02 23:11:38 +0000 | [diff] [blame] | 1650 | if (IObuff[STRLEN(IObuff) - 1] == '\n') |
| 1651 | IObuff[STRLEN(IObuff) - 1] = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1652 | emsg(IObuff); |
| 1653 | if (++viminfo_errcnt >= 10) |
| 1654 | { |
| 1655 | EMSG(_("E136: viminfo: Too many errors, skipping rest of file")); |
| 1656 | return TRUE; |
| 1657 | } |
| 1658 | return FALSE; |
| 1659 | } |
| 1660 | |
| 1661 | /* |
| 1662 | * read_viminfo() -- Read the viminfo file. Registers etc. which are already |
| 1663 | * set are not over-written unless force is TRUE. -- webb |
| 1664 | */ |
| 1665 | int |
| 1666 | read_viminfo(file, want_info, want_marks, forceit) |
| 1667 | char_u *file; |
| 1668 | int want_info; |
| 1669 | int want_marks; |
| 1670 | int forceit; |
| 1671 | { |
| 1672 | FILE *fp; |
| 1673 | char_u *fname; |
| 1674 | |
| 1675 | if (no_viminfo()) |
| 1676 | return FAIL; |
| 1677 | |
| 1678 | fname = viminfo_filename(file); /* may set to default if NULL */ |
| 1679 | if (fname == NULL) |
| 1680 | return FAIL; |
| 1681 | fp = mch_fopen((char *)fname, READBIN); |
| 1682 | |
| 1683 | if (p_verbose > 0) |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 1684 | { |
| 1685 | verbose_enter(); |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 1686 | smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"), |
| 1687 | fname, |
| 1688 | want_info ? _(" info") : "", |
| 1689 | want_marks ? _(" marks") : "", |
| 1690 | fp == NULL ? _(" FAILED") : ""); |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 1691 | verbose_leave(); |
| 1692 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1693 | |
| 1694 | vim_free(fname); |
| 1695 | if (fp == NULL) |
| 1696 | return FAIL; |
| 1697 | |
| 1698 | viminfo_errcnt = 0; |
| 1699 | do_viminfo(fp, NULL, want_info, want_marks, forceit); |
| 1700 | |
| 1701 | fclose(fp); |
| 1702 | |
| 1703 | return OK; |
| 1704 | } |
| 1705 | |
| 1706 | /* |
| 1707 | * write_viminfo() -- Write the viminfo file. The old one is read in first so |
| 1708 | * that effectively a merge of current info and old info is done. This allows |
| 1709 | * multiple vims to run simultaneously, without losing any marks etc. If |
| 1710 | * forceit is TRUE, then the old file is not read in, and only internal info is |
| 1711 | * written to the file. -- webb |
| 1712 | */ |
| 1713 | void |
| 1714 | write_viminfo(file, forceit) |
| 1715 | char_u *file; |
| 1716 | int forceit; |
| 1717 | { |
| 1718 | char_u *fname; |
| 1719 | FILE *fp_in = NULL; /* input viminfo file, if any */ |
| 1720 | FILE *fp_out = NULL; /* output viminfo file */ |
| 1721 | char_u *tempname = NULL; /* name of temp viminfo file */ |
| 1722 | struct stat st_new; /* mch_stat() of potential new file */ |
| 1723 | char_u *wp; |
| 1724 | #if defined(UNIX) || defined(VMS) |
| 1725 | mode_t umask_save; |
| 1726 | #endif |
| 1727 | #ifdef UNIX |
| 1728 | int shortname = FALSE; /* use 8.3 file name */ |
| 1729 | struct stat st_old; /* mch_stat() of existing viminfo file */ |
| 1730 | #endif |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1731 | #ifdef WIN3264 |
| 1732 | long perm = -1; |
| 1733 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1734 | |
| 1735 | if (no_viminfo()) |
| 1736 | return; |
| 1737 | |
| 1738 | fname = viminfo_filename(file); /* may set to default if NULL */ |
| 1739 | if (fname == NULL) |
| 1740 | return; |
| 1741 | |
| 1742 | fp_in = mch_fopen((char *)fname, READBIN); |
| 1743 | if (fp_in == NULL) |
| 1744 | { |
| 1745 | /* if it does exist, but we can't read it, don't try writing */ |
| 1746 | if (mch_stat((char *)fname, &st_new) == 0) |
| 1747 | goto end; |
| 1748 | #if defined(UNIX) || defined(VMS) |
| 1749 | /* |
| 1750 | * For Unix we create the .viminfo non-accessible for others, |
| 1751 | * because it may contain text from non-accessible documents. |
| 1752 | */ |
| 1753 | umask_save = umask(077); |
| 1754 | #endif |
| 1755 | fp_out = mch_fopen((char *)fname, WRITEBIN); |
| 1756 | #if defined(UNIX) || defined(VMS) |
| 1757 | (void)umask(umask_save); |
| 1758 | #endif |
| 1759 | } |
| 1760 | else |
| 1761 | { |
| 1762 | /* |
| 1763 | * There is an existing viminfo file. Create a temporary file to |
| 1764 | * write the new viminfo into, in the same directory as the |
| 1765 | * existing viminfo file, which will be renamed later. |
| 1766 | */ |
| 1767 | #ifdef UNIX |
| 1768 | /* |
| 1769 | * For Unix we check the owner of the file. It's not very nice to |
| 1770 | * overwrite a user's viminfo file after a "su root", with a |
| 1771 | * viminfo file that the user can't read. |
| 1772 | */ |
| 1773 | st_old.st_dev = st_old.st_ino = 0; |
| 1774 | st_old.st_mode = 0600; |
Bram Moolenaar | 311d982 | 2007-02-27 15:48:28 +0000 | [diff] [blame] | 1775 | if (mch_stat((char *)fname, &st_old) == 0 |
| 1776 | && getuid() != ROOT_UID |
Bram Moolenaar | 12625ca | 2005-11-25 19:58:47 +0000 | [diff] [blame] | 1777 | && !(st_old.st_uid == getuid() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1778 | ? (st_old.st_mode & 0200) |
| 1779 | : (st_old.st_gid == getgid() |
| 1780 | ? (st_old.st_mode & 0020) |
| 1781 | : (st_old.st_mode & 0002)))) |
| 1782 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 1783 | int tt = msg_didany; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1784 | |
| 1785 | /* avoid a wait_return for this message, it's annoying */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1786 | EMSG2(_("E137: Viminfo file is not writable: %s"), fname); |
| 1787 | msg_didany = tt; |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 1788 | fclose(fp_in); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1789 | goto end; |
| 1790 | } |
| 1791 | #endif |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1792 | #ifdef WIN3264 |
| 1793 | /* Get the file attributes of the existing viminfo file. */ |
| 1794 | perm = mch_getperm(fname); |
| 1795 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1796 | |
| 1797 | /* |
| 1798 | * Make tempname. |
| 1799 | * May try twice: Once normal and once with shortname set, just in |
| 1800 | * case somebody puts his viminfo file in an 8.3 filesystem. |
| 1801 | */ |
| 1802 | for (;;) |
| 1803 | { |
| 1804 | tempname = buf_modname( |
| 1805 | #ifdef UNIX |
| 1806 | shortname, |
| 1807 | #else |
| 1808 | # ifdef SHORT_FNAME |
| 1809 | TRUE, |
| 1810 | # else |
| 1811 | # ifdef FEAT_GUI_W32 |
| 1812 | gui_is_win32s(), |
| 1813 | # else |
| 1814 | FALSE, |
| 1815 | # endif |
| 1816 | # endif |
| 1817 | #endif |
| 1818 | fname, |
| 1819 | #ifdef VMS |
| 1820 | (char_u *)"-tmp", |
| 1821 | #else |
| 1822 | # ifdef RISCOS |
| 1823 | (char_u *)"/tmp", |
| 1824 | # else |
| 1825 | (char_u *)".tmp", |
| 1826 | # endif |
| 1827 | #endif |
| 1828 | FALSE); |
| 1829 | if (tempname == NULL) /* out of memory */ |
| 1830 | break; |
| 1831 | |
| 1832 | /* |
| 1833 | * Check if tempfile already exists. Never overwrite an |
| 1834 | * existing file! |
| 1835 | */ |
| 1836 | if (mch_stat((char *)tempname, &st_new) == 0) |
| 1837 | { |
| 1838 | #ifdef UNIX |
| 1839 | /* |
| 1840 | * Check if tempfile is same as original file. May happen |
| 1841 | * when modname() gave the same file back. E.g. silly |
| 1842 | * link, or file name-length reached. Try again with |
| 1843 | * shortname set. |
| 1844 | */ |
Bram Moolenaar | 12625ca | 2005-11-25 19:58:47 +0000 | [diff] [blame] | 1845 | if (!shortname && st_new.st_dev == st_old.st_dev |
| 1846 | && st_new.st_ino == st_old.st_ino) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1847 | { |
| 1848 | vim_free(tempname); |
| 1849 | tempname = NULL; |
| 1850 | shortname = TRUE; |
| 1851 | continue; |
| 1852 | } |
| 1853 | #endif |
| 1854 | /* |
| 1855 | * Try another name. Change one character, just before |
| 1856 | * the extension. This should also work for an 8.3 |
| 1857 | * file name, when after adding the extension it still is |
| 1858 | * the same file as the original. |
| 1859 | */ |
| 1860 | wp = tempname + STRLEN(tempname) - 5; |
| 1861 | if (wp < gettail(tempname)) /* empty file name? */ |
| 1862 | wp = gettail(tempname); |
| 1863 | for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0; |
| 1864 | --*wp) |
| 1865 | { |
| 1866 | /* |
| 1867 | * They all exist? Must be something wrong! Don't |
| 1868 | * write the viminfo file then. |
| 1869 | */ |
| 1870 | if (*wp == 'a') |
| 1871 | { |
| 1872 | vim_free(tempname); |
| 1873 | tempname = NULL; |
| 1874 | break; |
| 1875 | } |
| 1876 | } |
| 1877 | } |
| 1878 | break; |
| 1879 | } |
| 1880 | |
| 1881 | if (tempname != NULL) |
| 1882 | { |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1883 | #ifdef VMS |
| 1884 | /* fdopen() fails for some reason */ |
Bram Moolenaar | cf03447 | 2006-03-15 23:07:59 +0000 | [diff] [blame] | 1885 | umask_save = umask(077); |
| 1886 | fp_out = mch_fopen((char *)tempname, WRITEBIN); |
| 1887 | (void)umask(umask_save); |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1888 | #else |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1889 | int fd; |
| 1890 | |
| 1891 | /* 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] | 1892 | * protection: |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 1893 | * Unix: same as original file, but strip s-bit. Reset umask to |
| 1894 | * avoid it getting in the way. |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1895 | * Others: r&w for user only. */ |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1896 | # ifdef UNIX |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 1897 | umask_save = umask(0); |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1898 | fd = mch_open((char *)tempname, |
| 1899 | O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, |
Bram Moolenaar | bba577a | 2005-11-28 23:05:55 +0000 | [diff] [blame] | 1900 | (int)((st_old.st_mode & 0777) | 0600)); |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 1901 | (void)umask(umask_save); |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1902 | # else |
Bram Moolenaar | bba577a | 2005-11-28 23:05:55 +0000 | [diff] [blame] | 1903 | fd = mch_open((char *)tempname, |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 1904 | O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600); |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1905 | # endif |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1906 | if (fd < 0) |
| 1907 | fp_out = NULL; |
| 1908 | else |
| 1909 | fp_out = fdopen(fd, WRITEBIN); |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1910 | #endif /* VMS */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1911 | |
| 1912 | /* |
| 1913 | * If we can't create in the same directory, try creating a |
| 1914 | * "normal" temp file. |
| 1915 | */ |
| 1916 | if (fp_out == NULL) |
| 1917 | { |
| 1918 | vim_free(tempname); |
| 1919 | if ((tempname = vim_tempname('o')) != NULL) |
| 1920 | fp_out = mch_fopen((char *)tempname, WRITEBIN); |
| 1921 | } |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1922 | |
| 1923 | #if defined(UNIX) && defined(HAVE_FCHOWN) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1924 | /* |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1925 | * Make sure the owner can read/write it. This only works for |
| 1926 | * root. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1927 | */ |
| 1928 | if (fp_out != NULL) |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1929 | (void)fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1930 | #endif |
| 1931 | } |
| 1932 | } |
| 1933 | |
| 1934 | /* |
| 1935 | * Check if the new viminfo file can be written to. |
| 1936 | */ |
| 1937 | if (fp_out == NULL) |
| 1938 | { |
| 1939 | EMSG2(_("E138: Can't write viminfo file %s!"), |
Bram Moolenaar | 75c50c4 | 2005-06-04 22:06:24 +0000 | [diff] [blame] | 1940 | (fp_in == NULL || tempname == NULL) ? fname : tempname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1941 | if (fp_in != NULL) |
| 1942 | fclose(fp_in); |
| 1943 | goto end; |
| 1944 | } |
| 1945 | |
| 1946 | if (p_verbose > 0) |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 1947 | { |
| 1948 | verbose_enter(); |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 1949 | smsg((char_u *)_("Writing viminfo file \"%s\""), fname); |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 1950 | verbose_leave(); |
| 1951 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1952 | |
| 1953 | viminfo_errcnt = 0; |
| 1954 | do_viminfo(fp_in, fp_out, !forceit, !forceit, FALSE); |
| 1955 | |
| 1956 | fclose(fp_out); /* errors are ignored !? */ |
| 1957 | if (fp_in != NULL) |
| 1958 | { |
| 1959 | fclose(fp_in); |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1960 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1961 | /* |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1962 | * In case of an error keep the original viminfo file. |
| 1963 | * Otherwise rename the newly written file. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1964 | */ |
| 1965 | if (viminfo_errcnt || vim_rename(tempname, fname) == -1) |
| 1966 | mch_remove(tempname); |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1967 | |
| 1968 | #ifdef WIN3264 |
| 1969 | /* If the viminfo file was hidden then also hide the new file. */ |
| 1970 | if (perm > 0 && (perm & FILE_ATTRIBUTE_HIDDEN)) |
| 1971 | mch_hide(fname); |
| 1972 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1973 | } |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1974 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1975 | end: |
| 1976 | vim_free(fname); |
| 1977 | vim_free(tempname); |
| 1978 | } |
| 1979 | |
| 1980 | /* |
| 1981 | * Get the viminfo file name to use. |
| 1982 | * If "file" is given and not empty, use it (has already been expanded by |
| 1983 | * cmdline functions). |
| 1984 | * Otherwise use "-i file_name", value from 'viminfo' or the default, and |
| 1985 | * expand environment variables. |
| 1986 | * Returns an allocated string. NULL when out of memory. |
| 1987 | */ |
| 1988 | static char_u * |
| 1989 | viminfo_filename(file) |
| 1990 | char_u *file; |
| 1991 | { |
| 1992 | if (file == NULL || *file == NUL) |
| 1993 | { |
| 1994 | if (use_viminfo != NULL) |
| 1995 | file = use_viminfo; |
| 1996 | else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL) |
| 1997 | { |
| 1998 | #ifdef VIMINFO_FILE2 |
| 1999 | /* don't use $HOME when not defined (turned into "c:/"!). */ |
| 2000 | # ifdef VMS |
| 2001 | if (mch_getenv((char_u *)"SYS$LOGIN") == NULL) |
| 2002 | # else |
| 2003 | if (mch_getenv((char_u *)"HOME") == NULL) |
| 2004 | # endif |
| 2005 | { |
| 2006 | /* don't use $VIM when not available. */ |
| 2007 | expand_env((char_u *)"$VIM", NameBuff, MAXPATHL); |
| 2008 | if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */ |
| 2009 | file = (char_u *)VIMINFO_FILE2; |
| 2010 | else |
| 2011 | file = (char_u *)VIMINFO_FILE; |
| 2012 | } |
| 2013 | else |
| 2014 | #endif |
| 2015 | file = (char_u *)VIMINFO_FILE; |
| 2016 | } |
| 2017 | expand_env(file, NameBuff, MAXPATHL); |
| 2018 | file = NameBuff; |
| 2019 | } |
| 2020 | return vim_strsave(file); |
| 2021 | } |
| 2022 | |
| 2023 | /* |
| 2024 | * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo(). |
| 2025 | */ |
| 2026 | static void |
| 2027 | do_viminfo(fp_in, fp_out, want_info, want_marks, force_read) |
| 2028 | FILE *fp_in; |
| 2029 | FILE *fp_out; |
| 2030 | int want_info; |
| 2031 | int want_marks; |
| 2032 | int force_read; |
| 2033 | { |
| 2034 | int count = 0; |
| 2035 | int eof = FALSE; |
| 2036 | vir_T vir; |
| 2037 | |
| 2038 | if ((vir.vir_line = alloc(LSIZE)) == NULL) |
| 2039 | return; |
| 2040 | vir.vir_fd = fp_in; |
| 2041 | #ifdef FEAT_MBYTE |
| 2042 | vir.vir_conv.vc_type = CONV_NONE; |
| 2043 | #endif |
| 2044 | |
| 2045 | if (fp_in != NULL) |
| 2046 | { |
| 2047 | if (want_info) |
| 2048 | eof = read_viminfo_up_to_marks(&vir, force_read, fp_out != NULL); |
| 2049 | else |
| 2050 | /* Skip info, find start of marks */ |
| 2051 | while (!(eof = viminfo_readline(&vir)) |
| 2052 | && vir.vir_line[0] != '>') |
| 2053 | ; |
| 2054 | } |
| 2055 | if (fp_out != NULL) |
| 2056 | { |
| 2057 | /* Write the info: */ |
| 2058 | fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"), |
| 2059 | VIM_VERSION_MEDIUM); |
| 2060 | fprintf(fp_out, _("# You may edit it if you're careful!\n\n")); |
| 2061 | #ifdef FEAT_MBYTE |
| 2062 | fprintf(fp_out, _("# Value of 'encoding' when this file was written\n")); |
| 2063 | fprintf(fp_out, "*encoding=%s\n\n", p_enc); |
| 2064 | #endif |
| 2065 | write_viminfo_search_pattern(fp_out); |
| 2066 | write_viminfo_sub_string(fp_out); |
| 2067 | #ifdef FEAT_CMDHIST |
| 2068 | write_viminfo_history(fp_out); |
| 2069 | #endif |
| 2070 | write_viminfo_registers(fp_out); |
| 2071 | #ifdef FEAT_EVAL |
| 2072 | write_viminfo_varlist(fp_out); |
| 2073 | #endif |
| 2074 | write_viminfo_filemarks(fp_out); |
| 2075 | write_viminfo_bufferlist(fp_out); |
| 2076 | count = write_viminfo_marks(fp_out); |
| 2077 | } |
| 2078 | if (fp_in != NULL && want_marks) |
| 2079 | copy_viminfo_marks(&vir, fp_out, count, eof); |
| 2080 | |
| 2081 | vim_free(vir.vir_line); |
| 2082 | #ifdef FEAT_MBYTE |
| 2083 | if (vir.vir_conv.vc_type != CONV_NONE) |
| 2084 | convert_setup(&vir.vir_conv, NULL, NULL); |
| 2085 | #endif |
| 2086 | } |
| 2087 | |
| 2088 | /* |
| 2089 | * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the |
| 2090 | * first part of the viminfo file which contains everything but the marks that |
| 2091 | * are local to a file. Returns TRUE when end-of-file is reached. -- webb |
| 2092 | */ |
| 2093 | static int |
| 2094 | read_viminfo_up_to_marks(virp, forceit, writing) |
| 2095 | vir_T *virp; |
| 2096 | int forceit; |
| 2097 | int writing; |
| 2098 | { |
| 2099 | int eof; |
| 2100 | buf_T *buf; |
| 2101 | |
| 2102 | #ifdef FEAT_CMDHIST |
| 2103 | prepare_viminfo_history(forceit ? 9999 : 0); |
| 2104 | #endif |
| 2105 | eof = viminfo_readline(virp); |
| 2106 | while (!eof && virp->vir_line[0] != '>') |
| 2107 | { |
| 2108 | switch (virp->vir_line[0]) |
| 2109 | { |
| 2110 | /* Characters reserved for future expansion, ignored now */ |
| 2111 | case '+': /* "+40 /path/dir file", for running vim without args */ |
| 2112 | case '|': /* to be defined */ |
| 2113 | case '^': /* to be defined */ |
| 2114 | case '<': /* long line - ignored */ |
| 2115 | /* A comment or empty line. */ |
| 2116 | case NUL: |
| 2117 | case '\r': |
| 2118 | case '\n': |
| 2119 | case '#': |
| 2120 | eof = viminfo_readline(virp); |
| 2121 | break; |
| 2122 | case '*': /* "*encoding=value" */ |
| 2123 | eof = viminfo_encoding(virp); |
| 2124 | break; |
| 2125 | case '!': /* global variable */ |
| 2126 | #ifdef FEAT_EVAL |
| 2127 | eof = read_viminfo_varlist(virp, writing); |
| 2128 | #else |
| 2129 | eof = viminfo_readline(virp); |
| 2130 | #endif |
| 2131 | break; |
| 2132 | case '%': /* entry for buffer list */ |
| 2133 | eof = read_viminfo_bufferlist(virp, writing); |
| 2134 | break; |
| 2135 | case '"': |
| 2136 | eof = read_viminfo_register(virp, forceit); |
| 2137 | break; |
| 2138 | case '/': /* Search string */ |
| 2139 | case '&': /* Substitute search string */ |
| 2140 | case '~': /* Last search string, followed by '/' or '&' */ |
| 2141 | eof = read_viminfo_search_pattern(virp, forceit); |
| 2142 | break; |
| 2143 | case '$': |
| 2144 | eof = read_viminfo_sub_string(virp, forceit); |
| 2145 | break; |
| 2146 | case ':': |
| 2147 | case '?': |
| 2148 | case '=': |
| 2149 | case '@': |
| 2150 | #ifdef FEAT_CMDHIST |
| 2151 | eof = read_viminfo_history(virp); |
| 2152 | #else |
| 2153 | eof = viminfo_readline(virp); |
| 2154 | #endif |
| 2155 | break; |
| 2156 | case '-': |
| 2157 | case '\'': |
| 2158 | eof = read_viminfo_filemark(virp, forceit); |
| 2159 | break; |
| 2160 | default: |
| 2161 | if (viminfo_error("E575: ", _("Illegal starting char"), |
| 2162 | virp->vir_line)) |
| 2163 | eof = TRUE; |
| 2164 | else |
| 2165 | eof = viminfo_readline(virp); |
| 2166 | break; |
| 2167 | } |
| 2168 | } |
| 2169 | |
| 2170 | #ifdef FEAT_CMDHIST |
| 2171 | /* Finish reading history items. */ |
| 2172 | finish_viminfo_history(); |
| 2173 | #endif |
| 2174 | |
| 2175 | /* Change file names to buffer numbers for fmarks. */ |
| 2176 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 2177 | fmarks_check_names(buf); |
| 2178 | |
| 2179 | return eof; |
| 2180 | } |
| 2181 | |
| 2182 | /* |
| 2183 | * Compare the 'encoding' value in the viminfo file with the current value of |
| 2184 | * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for |
| 2185 | * conversion of text with iconv() in viminfo_readstring(). |
| 2186 | */ |
| 2187 | static int |
| 2188 | viminfo_encoding(virp) |
| 2189 | vir_T *virp; |
| 2190 | { |
| 2191 | #ifdef FEAT_MBYTE |
| 2192 | char_u *p; |
| 2193 | int i; |
| 2194 | |
| 2195 | if (get_viminfo_parameter('c') != 0) |
| 2196 | { |
| 2197 | p = vim_strchr(virp->vir_line, '='); |
| 2198 | if (p != NULL) |
| 2199 | { |
| 2200 | /* remove trailing newline */ |
| 2201 | ++p; |
| 2202 | for (i = 0; vim_isprintc(p[i]); ++i) |
| 2203 | ; |
| 2204 | p[i] = NUL; |
| 2205 | |
| 2206 | convert_setup(&virp->vir_conv, p, p_enc); |
| 2207 | } |
| 2208 | } |
| 2209 | #endif |
| 2210 | return viminfo_readline(virp); |
| 2211 | } |
| 2212 | |
| 2213 | /* |
| 2214 | * Read a line from the viminfo file. |
| 2215 | * Returns TRUE for end-of-file; |
| 2216 | */ |
| 2217 | int |
| 2218 | viminfo_readline(virp) |
| 2219 | vir_T *virp; |
| 2220 | { |
| 2221 | return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd); |
| 2222 | } |
| 2223 | |
| 2224 | /* |
| 2225 | * check string read from viminfo file |
| 2226 | * remove '\n' at the end of the line |
| 2227 | * - replace CTRL-V CTRL-V with CTRL-V |
| 2228 | * - replace CTRL-V 'n' with '\n' |
| 2229 | * |
| 2230 | * Check for a long line as written by viminfo_writestring(). |
| 2231 | * |
| 2232 | * Return the string in allocated memory (NULL when out of memory). |
| 2233 | */ |
| 2234 | /*ARGSUSED*/ |
| 2235 | char_u * |
| 2236 | viminfo_readstring(virp, off, convert) |
| 2237 | vir_T *virp; |
| 2238 | int off; /* offset for virp->vir_line */ |
| 2239 | int convert; /* convert the string */ |
| 2240 | { |
| 2241 | char_u *retval; |
| 2242 | char_u *s, *d; |
| 2243 | long len; |
| 2244 | |
| 2245 | if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1])) |
| 2246 | { |
| 2247 | len = atol((char *)virp->vir_line + off + 1); |
| 2248 | retval = lalloc(len, TRUE); |
| 2249 | if (retval == NULL) |
| 2250 | { |
| 2251 | /* Line too long? File messed up? Skip next line. */ |
| 2252 | (void)vim_fgets(virp->vir_line, 10, virp->vir_fd); |
| 2253 | return NULL; |
| 2254 | } |
| 2255 | (void)vim_fgets(retval, (int)len, virp->vir_fd); |
| 2256 | s = retval + 1; /* Skip the leading '<' */ |
| 2257 | } |
| 2258 | else |
| 2259 | { |
| 2260 | retval = vim_strsave(virp->vir_line + off); |
| 2261 | if (retval == NULL) |
| 2262 | return NULL; |
| 2263 | s = retval; |
| 2264 | } |
| 2265 | |
| 2266 | /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */ |
| 2267 | d = retval; |
| 2268 | while (*s != NUL && *s != '\n') |
| 2269 | { |
| 2270 | if (s[0] == Ctrl_V && s[1] != NUL) |
| 2271 | { |
| 2272 | if (s[1] == 'n') |
| 2273 | *d++ = '\n'; |
| 2274 | else |
| 2275 | *d++ = Ctrl_V; |
| 2276 | s += 2; |
| 2277 | } |
| 2278 | else |
| 2279 | *d++ = *s++; |
| 2280 | } |
| 2281 | *d = NUL; |
| 2282 | |
| 2283 | #ifdef FEAT_MBYTE |
| 2284 | if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL) |
| 2285 | { |
| 2286 | d = string_convert(&virp->vir_conv, retval, NULL); |
| 2287 | if (d != NULL) |
| 2288 | { |
| 2289 | vim_free(retval); |
| 2290 | retval = d; |
| 2291 | } |
| 2292 | } |
| 2293 | #endif |
| 2294 | |
| 2295 | return retval; |
| 2296 | } |
| 2297 | |
| 2298 | /* |
| 2299 | * write string to viminfo file |
| 2300 | * - replace CTRL-V with CTRL-V CTRL-V |
| 2301 | * - replace '\n' with CTRL-V 'n' |
| 2302 | * - add a '\n' at the end |
| 2303 | * |
| 2304 | * For a long line: |
| 2305 | * - write " CTRL-V <length> \n " in first line |
| 2306 | * - write " < <string> \n " in second line |
| 2307 | */ |
| 2308 | void |
| 2309 | viminfo_writestring(fd, p) |
| 2310 | FILE *fd; |
| 2311 | char_u *p; |
| 2312 | { |
| 2313 | int c; |
| 2314 | char_u *s; |
| 2315 | int len = 0; |
| 2316 | |
| 2317 | for (s = p; *s != NUL; ++s) |
| 2318 | { |
| 2319 | if (*s == Ctrl_V || *s == '\n') |
| 2320 | ++len; |
| 2321 | ++len; |
| 2322 | } |
| 2323 | |
| 2324 | /* If the string will be too long, write its length and put it in the next |
| 2325 | * line. Take into account that some room is needed for what comes before |
| 2326 | * the string (e.g., variable name). Add something to the length for the |
| 2327 | * '<', NL and trailing NUL. */ |
| 2328 | if (len > LSIZE / 2) |
| 2329 | fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3); |
| 2330 | |
| 2331 | while ((c = *p++) != NUL) |
| 2332 | { |
| 2333 | if (c == Ctrl_V || c == '\n') |
| 2334 | { |
| 2335 | putc(Ctrl_V, fd); |
| 2336 | if (c == '\n') |
| 2337 | c = 'n'; |
| 2338 | } |
| 2339 | putc(c, fd); |
| 2340 | } |
| 2341 | putc('\n', fd); |
| 2342 | } |
| 2343 | #endif /* FEAT_VIMINFO */ |
| 2344 | |
| 2345 | /* |
| 2346 | * Implementation of ":fixdel", also used by get_stty(). |
| 2347 | * <BS> resulting <Del> |
| 2348 | * ^? ^H |
| 2349 | * not ^? ^? |
| 2350 | */ |
| 2351 | /*ARGSUSED*/ |
| 2352 | void |
| 2353 | do_fixdel(eap) |
| 2354 | exarg_T *eap; |
| 2355 | { |
| 2356 | char_u *p; |
| 2357 | |
| 2358 | p = find_termcode((char_u *)"kb"); |
| 2359 | add_termcode((char_u *)"kD", p != NULL |
| 2360 | && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE); |
| 2361 | } |
| 2362 | |
| 2363 | void |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2364 | print_line_no_prefix(lnum, use_number, list) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2365 | linenr_T lnum; |
| 2366 | int use_number; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2367 | int list; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2368 | { |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 2369 | char_u numbuf[30]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2370 | |
| 2371 | if (curwin->w_p_nu || use_number) |
| 2372 | { |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 2373 | sprintf((char *)numbuf, "%*ld ", number_width(curwin), (long)lnum); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2374 | msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */ |
| 2375 | } |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2376 | msg_prt_line(ml_get(lnum), list); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2377 | } |
| 2378 | |
| 2379 | /* |
| 2380 | * Print a text line. Also in silent mode ("ex -s"). |
| 2381 | */ |
| 2382 | void |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2383 | print_line(lnum, use_number, list) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2384 | linenr_T lnum; |
| 2385 | int use_number; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2386 | int list; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2387 | { |
| 2388 | int save_silent = silent_mode; |
| 2389 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2390 | msg_start(); |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2391 | silent_mode = FALSE; |
| 2392 | info_message = TRUE; /* use mch_msg(), not mch_errmsg() */ |
| 2393 | print_line_no_prefix(lnum, use_number, list); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2394 | if (save_silent) |
| 2395 | { |
| 2396 | msg_putchar('\n'); |
| 2397 | cursor_on(); /* msg_start() switches it off */ |
| 2398 | out_flush(); |
| 2399 | silent_mode = save_silent; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2400 | info_message = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2401 | } |
| 2402 | } |
| 2403 | |
| 2404 | /* |
| 2405 | * ":file[!] [fname]". |
| 2406 | */ |
| 2407 | void |
| 2408 | ex_file(eap) |
| 2409 | exarg_T *eap; |
| 2410 | { |
| 2411 | char_u *fname, *sfname, *xfname; |
| 2412 | buf_T *buf; |
| 2413 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 2414 | /* ":0file" removes the file name. Check for illegal uses ":3file", |
| 2415 | * "0file name", etc. */ |
| 2416 | if (eap->addr_count > 0 |
| 2417 | && (*eap->arg != NUL |
| 2418 | || eap->line2 > 0 |
| 2419 | || eap->addr_count > 1)) |
| 2420 | { |
| 2421 | EMSG(_(e_invarg)); |
| 2422 | return; |
| 2423 | } |
| 2424 | |
| 2425 | if (*eap->arg != NUL || eap->addr_count == 1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2426 | { |
| 2427 | #ifdef FEAT_AUTOCMD |
| 2428 | buf = curbuf; |
| 2429 | apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); |
| 2430 | /* buffer changed, don't change name now */ |
| 2431 | if (buf != curbuf) |
| 2432 | return; |
| 2433 | # ifdef FEAT_EVAL |
| 2434 | if (aborting()) /* autocmds may abort script processing */ |
| 2435 | return; |
| 2436 | # endif |
| 2437 | #endif |
| 2438 | /* |
| 2439 | * The name of the current buffer will be changed. |
| 2440 | * A new (unlisted) buffer entry needs to be made to hold the old file |
| 2441 | * name, which will become the alternate file name. |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 2442 | * But don't set the alternate file name if the buffer didn't have a |
| 2443 | * name. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2444 | */ |
| 2445 | fname = curbuf->b_ffname; |
| 2446 | sfname = curbuf->b_sfname; |
| 2447 | xfname = curbuf->b_fname; |
| 2448 | curbuf->b_ffname = NULL; |
| 2449 | curbuf->b_sfname = NULL; |
| 2450 | if (setfname(curbuf, eap->arg, NULL, TRUE) == FAIL) |
| 2451 | { |
| 2452 | curbuf->b_ffname = fname; |
| 2453 | curbuf->b_sfname = sfname; |
| 2454 | return; |
| 2455 | } |
| 2456 | curbuf->b_flags |= BF_NOTEDITED; |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 2457 | if (xfname != NULL && *xfname != NUL) |
| 2458 | { |
| 2459 | buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0); |
| 2460 | if (buf != NULL && !cmdmod.keepalt) |
| 2461 | curwin->w_alt_fnum = buf->b_fnum; |
| 2462 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2463 | vim_free(fname); |
| 2464 | vim_free(sfname); |
| 2465 | #ifdef FEAT_AUTOCMD |
| 2466 | apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
| 2467 | #endif |
Bram Moolenaar | 498efdb | 2006-09-05 14:31:54 +0000 | [diff] [blame] | 2468 | /* Change directories when the 'acd' option is set. */ |
| 2469 | DO_AUTOCHDIR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2470 | } |
| 2471 | /* print full file name if :cd used */ |
| 2472 | fileinfo(FALSE, FALSE, eap->forceit); |
| 2473 | } |
| 2474 | |
| 2475 | /* |
| 2476 | * ":update". |
| 2477 | */ |
| 2478 | void |
| 2479 | ex_update(eap) |
| 2480 | exarg_T *eap; |
| 2481 | { |
| 2482 | if (curbufIsChanged()) |
| 2483 | (void)do_write(eap); |
| 2484 | } |
| 2485 | |
| 2486 | /* |
| 2487 | * ":write" and ":saveas". |
| 2488 | */ |
| 2489 | void |
| 2490 | ex_write(eap) |
| 2491 | exarg_T *eap; |
| 2492 | { |
| 2493 | if (eap->usefilter) /* input lines to shell command */ |
| 2494 | do_bang(1, eap, FALSE, TRUE, FALSE); |
| 2495 | else |
| 2496 | (void)do_write(eap); |
| 2497 | } |
| 2498 | |
| 2499 | /* |
| 2500 | * write current buffer to file 'eap->arg' |
| 2501 | * if 'eap->append' is TRUE, append to the file |
| 2502 | * |
| 2503 | * if *eap->arg == NUL write to current file |
| 2504 | * |
| 2505 | * return FAIL for failure, OK otherwise |
| 2506 | */ |
| 2507 | int |
| 2508 | do_write(eap) |
| 2509 | exarg_T *eap; |
| 2510 | { |
| 2511 | int other; |
| 2512 | char_u *fname = NULL; /* init to shut up gcc */ |
| 2513 | char_u *ffname; |
| 2514 | int retval = FAIL; |
| 2515 | char_u *free_fname = NULL; |
| 2516 | #ifdef FEAT_BROWSE |
| 2517 | char_u *browse_file = NULL; |
| 2518 | #endif |
| 2519 | buf_T *alt_buf = NULL; |
| 2520 | |
| 2521 | if (not_writing()) /* check 'write' option */ |
| 2522 | return FAIL; |
| 2523 | |
| 2524 | ffname = eap->arg; |
| 2525 | #ifdef FEAT_BROWSE |
| 2526 | if (cmdmod.browse) |
| 2527 | { |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 2528 | browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2529 | NULL, NULL, NULL, curbuf); |
| 2530 | if (browse_file == NULL) |
| 2531 | goto theend; |
| 2532 | ffname = browse_file; |
| 2533 | } |
| 2534 | #endif |
| 2535 | if (*ffname == NUL) |
| 2536 | { |
| 2537 | if (eap->cmdidx == CMD_saveas) |
| 2538 | { |
| 2539 | EMSG(_(e_argreq)); |
| 2540 | goto theend; |
| 2541 | } |
| 2542 | other = FALSE; |
| 2543 | } |
| 2544 | else |
| 2545 | { |
| 2546 | fname = ffname; |
| 2547 | free_fname = fix_fname(ffname); |
| 2548 | /* |
| 2549 | * When out-of-memory, keep unexpanded file name, because we MUST be |
| 2550 | * able to write the file in this situation. |
| 2551 | */ |
| 2552 | if (free_fname != NULL) |
| 2553 | ffname = free_fname; |
| 2554 | other = otherfile(ffname); |
| 2555 | } |
| 2556 | |
| 2557 | /* |
| 2558 | * If we have a new file, put its name in the list of alternate file names. |
| 2559 | */ |
| 2560 | if (other) |
| 2561 | { |
| 2562 | if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL |
| 2563 | || eap->cmdidx == CMD_saveas) |
| 2564 | alt_buf = setaltfname(ffname, fname, (linenr_T)1); |
| 2565 | else |
| 2566 | alt_buf = buflist_findname(ffname); |
| 2567 | if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL) |
| 2568 | { |
| 2569 | /* Overwriting a file that is loaded in another buffer is not a |
| 2570 | * good idea. */ |
Bram Moolenaar | 0e4d877 | 2005-06-07 21:12:49 +0000 | [diff] [blame] | 2571 | EMSG(_(e_bufloaded)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2572 | goto theend; |
| 2573 | } |
| 2574 | } |
| 2575 | |
| 2576 | /* |
| 2577 | * Writing to the current file is not allowed in readonly mode |
| 2578 | * and a file name is required. |
| 2579 | * "nofile" and "nowrite" buffers cannot be written implicitly either. |
| 2580 | */ |
| 2581 | if (!other && ( |
| 2582 | #ifdef FEAT_QUICKFIX |
| 2583 | bt_dontwrite_msg(curbuf) || |
| 2584 | #endif |
| 2585 | check_fname() == FAIL || check_readonly(&eap->forceit, curbuf))) |
| 2586 | goto theend; |
| 2587 | |
| 2588 | if (!other) |
| 2589 | { |
| 2590 | ffname = curbuf->b_ffname; |
| 2591 | fname = curbuf->b_fname; |
| 2592 | /* |
| 2593 | * Not writing the whole file is only allowed with '!'. |
| 2594 | */ |
| 2595 | if ( (eap->line1 != 1 |
| 2596 | || eap->line2 != curbuf->b_ml.ml_line_count) |
| 2597 | && !eap->forceit |
| 2598 | && !eap->append |
| 2599 | && !p_wa) |
| 2600 | { |
| 2601 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 2602 | if (p_confirm || cmdmod.confirm) |
| 2603 | { |
| 2604 | if (vim_dialog_yesno(VIM_QUESTION, NULL, |
| 2605 | (char_u *)_("Write partial file?"), 2) != VIM_YES) |
| 2606 | goto theend; |
| 2607 | eap->forceit = TRUE; |
| 2608 | } |
| 2609 | else |
| 2610 | #endif |
| 2611 | { |
| 2612 | EMSG(_("E140: Use ! to write partial buffer")); |
| 2613 | goto theend; |
| 2614 | } |
| 2615 | } |
| 2616 | } |
| 2617 | |
| 2618 | if (check_overwrite(eap, curbuf, fname, ffname, other) == OK) |
| 2619 | { |
| 2620 | if (eap->cmdidx == CMD_saveas && alt_buf != NULL) |
| 2621 | { |
| 2622 | #ifdef FEAT_AUTOCMD |
| 2623 | buf_T *was_curbuf = curbuf; |
| 2624 | |
| 2625 | apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); |
Bram Moolenaar | 269ec65 | 2004-07-29 08:43:53 +0000 | [diff] [blame] | 2626 | apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2627 | # ifdef FEAT_EVAL |
| 2628 | if (curbuf != was_curbuf || aborting()) |
| 2629 | # else |
| 2630 | if (curbuf != was_curbuf) |
| 2631 | # endif |
| 2632 | { |
| 2633 | /* buffer changed, don't change name now */ |
| 2634 | retval = FAIL; |
| 2635 | goto theend; |
| 2636 | } |
| 2637 | #endif |
| 2638 | /* Exchange the file names for the current and the alternate |
| 2639 | * buffer. This makes it look like we are now editing the buffer |
| 2640 | * under the new name. Must be done before buf_write(), because |
| 2641 | * if there is no file name and 'cpo' contains 'F', it will set |
| 2642 | * the file name. */ |
| 2643 | fname = alt_buf->b_fname; |
| 2644 | alt_buf->b_fname = curbuf->b_fname; |
| 2645 | curbuf->b_fname = fname; |
| 2646 | fname = alt_buf->b_ffname; |
| 2647 | alt_buf->b_ffname = curbuf->b_ffname; |
| 2648 | curbuf->b_ffname = fname; |
| 2649 | fname = alt_buf->b_sfname; |
| 2650 | alt_buf->b_sfname = curbuf->b_sfname; |
| 2651 | curbuf->b_sfname = fname; |
| 2652 | buf_name_changed(curbuf); |
| 2653 | #ifdef FEAT_AUTOCMD |
| 2654 | apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
Bram Moolenaar | 269ec65 | 2004-07-29 08:43:53 +0000 | [diff] [blame] | 2655 | apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2656 | if (!alt_buf->b_p_bl) |
| 2657 | { |
| 2658 | alt_buf->b_p_bl = TRUE; |
| 2659 | apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf); |
| 2660 | } |
| 2661 | # ifdef FEAT_EVAL |
| 2662 | if (curbuf != was_curbuf || aborting()) |
| 2663 | # else |
| 2664 | if (curbuf != was_curbuf) |
| 2665 | # endif |
| 2666 | { |
| 2667 | /* buffer changed, don't write the file */ |
| 2668 | retval = FAIL; |
| 2669 | goto theend; |
| 2670 | } |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2671 | |
| 2672 | /* If 'filetype' was empty try detecting it now. */ |
| 2673 | if (*curbuf->b_p_ft == NUL) |
| 2674 | { |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2675 | if (au_has_group((char_u *)"filetypedetect")) |
| 2676 | (void)do_doautocmd((char_u *)"filetypedetect BufRead", |
| 2677 | TRUE); |
Bram Moolenaar | a3227e2 | 2006-03-08 21:32:40 +0000 | [diff] [blame] | 2678 | do_modelines(0); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2679 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2680 | #endif |
| 2681 | } |
| 2682 | |
| 2683 | retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2, |
| 2684 | eap, eap->append, eap->forceit, TRUE, FALSE); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2685 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2686 | /* After ":saveas fname" reset 'readonly'. */ |
Bram Moolenaar | 498efdb | 2006-09-05 14:31:54 +0000 | [diff] [blame] | 2687 | if (eap->cmdidx == CMD_saveas) |
| 2688 | { |
| 2689 | if (retval == OK) |
| 2690 | curbuf->b_p_ro = FALSE; |
| 2691 | /* Change directories when the 'acd' option is set. */ |
| 2692 | DO_AUTOCHDIR |
| 2693 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2694 | } |
| 2695 | |
| 2696 | theend: |
| 2697 | #ifdef FEAT_BROWSE |
| 2698 | vim_free(browse_file); |
| 2699 | #endif |
| 2700 | vim_free(free_fname); |
| 2701 | return retval; |
| 2702 | } |
| 2703 | |
| 2704 | /* |
| 2705 | * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED, |
| 2706 | * BF_NEW or BF_READERR, check for overwriting current file. |
| 2707 | * May set eap->forceit if a dialog says it's OK to overwrite. |
| 2708 | * Return OK if it's OK, FAIL if it is not. |
| 2709 | */ |
| 2710 | /*ARGSUSED*/ |
| 2711 | static int |
| 2712 | check_overwrite(eap, buf, fname, ffname, other) |
| 2713 | exarg_T *eap; |
| 2714 | buf_T *buf; |
| 2715 | char_u *fname; /* file name to be used (can differ from |
| 2716 | buf->ffname) */ |
| 2717 | char_u *ffname; /* full path version of fname */ |
| 2718 | int other; /* writing under other name */ |
| 2719 | { |
| 2720 | /* |
| 2721 | * write to other file or b_flags set or not writing the whole file: |
| 2722 | * overwriting only allowed with '!' |
| 2723 | */ |
| 2724 | if ( (other |
| 2725 | || (buf->b_flags & BF_NOTEDITED) |
| 2726 | || ((buf->b_flags & BF_NEW) |
| 2727 | && vim_strchr(p_cpo, CPO_OVERNEW) == NULL) |
| 2728 | || (buf->b_flags & BF_READERR)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2729 | && !p_wa |
| 2730 | && vim_fexists(ffname)) |
| 2731 | { |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2732 | if (!eap->forceit && !eap->append) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2733 | { |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2734 | #ifdef UNIX |
Bram Moolenaar | 0ac9379 | 2006-01-21 22:16:51 +0000 | [diff] [blame] | 2735 | /* with UNIX it is possible to open a directory */ |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2736 | if (mch_isdir(ffname)) |
| 2737 | { |
| 2738 | EMSG2(_(e_isadir2), ffname); |
| 2739 | return FAIL; |
| 2740 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2741 | #endif |
| 2742 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2743 | if (p_confirm || cmdmod.confirm) |
| 2744 | { |
| 2745 | char_u buff[IOSIZE]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2746 | |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2747 | dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname); |
| 2748 | if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES) |
| 2749 | return FAIL; |
| 2750 | eap->forceit = TRUE; |
| 2751 | } |
| 2752 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2753 | #endif |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2754 | { |
| 2755 | EMSG(_(e_exists)); |
| 2756 | return FAIL; |
| 2757 | } |
| 2758 | } |
| 2759 | |
| 2760 | /* For ":w! filename" check that no swap file exists for "filename". */ |
| 2761 | if (other && !emsg_silent) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2762 | { |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2763 | char_u dir[MAXPATHL]; |
| 2764 | char_u *p; |
| 2765 | int r; |
| 2766 | char_u *swapname; |
| 2767 | |
| 2768 | /* We only try the first entry in 'directory', without checking if |
| 2769 | * it's writable. If the "." directory is not writable the write |
| 2770 | * will probably fail anyway. |
| 2771 | * Use 'shortname' of the current buffer, since there is no buffer |
| 2772 | * for the written file. */ |
| 2773 | if (*p_dir == NUL) |
| 2774 | STRCPY(dir, "."); |
| 2775 | else |
| 2776 | { |
| 2777 | p = p_dir; |
| 2778 | copy_option_part(&p, dir, MAXPATHL, ","); |
| 2779 | } |
| 2780 | swapname = makeswapname(fname, ffname, curbuf, dir); |
| 2781 | r = vim_fexists(swapname); |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2782 | if (r) |
| 2783 | { |
| 2784 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 2785 | if (p_confirm || cmdmod.confirm) |
| 2786 | { |
| 2787 | char_u buff[IOSIZE]; |
| 2788 | |
| 2789 | dialog_msg(buff, |
| 2790 | _("Swap file \"%s\" exists, overwrite anyway?"), |
| 2791 | swapname); |
| 2792 | if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) |
| 2793 | != VIM_YES) |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2794 | { |
| 2795 | vim_free(swapname); |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2796 | return FAIL; |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2797 | } |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2798 | eap->forceit = TRUE; |
| 2799 | } |
| 2800 | else |
| 2801 | #endif |
| 2802 | { |
| 2803 | EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"), |
| 2804 | swapname); |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2805 | vim_free(swapname); |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2806 | return FAIL; |
| 2807 | } |
| 2808 | } |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2809 | vim_free(swapname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2810 | } |
| 2811 | } |
| 2812 | return OK; |
| 2813 | } |
| 2814 | |
| 2815 | /* |
| 2816 | * Handle ":wnext", ":wNext" and ":wprevious" commands. |
| 2817 | */ |
| 2818 | void |
| 2819 | ex_wnext(eap) |
| 2820 | exarg_T *eap; |
| 2821 | { |
| 2822 | int i; |
| 2823 | |
| 2824 | if (eap->cmd[1] == 'n') |
| 2825 | i = curwin->w_arg_idx + (int)eap->line2; |
| 2826 | else |
| 2827 | i = curwin->w_arg_idx - (int)eap->line2; |
| 2828 | eap->line1 = 1; |
| 2829 | eap->line2 = curbuf->b_ml.ml_line_count; |
| 2830 | if (do_write(eap) != FAIL) |
| 2831 | do_argfile(eap, i); |
| 2832 | } |
| 2833 | |
| 2834 | /* |
| 2835 | * ":wall", ":wqall" and ":xall": Write all changed files (and exit). |
| 2836 | */ |
| 2837 | void |
| 2838 | do_wqall(eap) |
| 2839 | exarg_T *eap; |
| 2840 | { |
| 2841 | buf_T *buf; |
| 2842 | int error = 0; |
| 2843 | int save_forceit = eap->forceit; |
| 2844 | |
| 2845 | if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall) |
| 2846 | exiting = TRUE; |
| 2847 | |
| 2848 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 2849 | { |
| 2850 | if (bufIsChanged(buf)) |
| 2851 | { |
| 2852 | /* |
| 2853 | * Check if there is a reason the buffer cannot be written: |
| 2854 | * 1. if the 'write' option is set |
| 2855 | * 2. if there is no file name (even after browsing) |
| 2856 | * 3. if the 'readonly' is set (even after a dialog) |
| 2857 | * 4. if overwriting is allowed (even after a dialog) |
| 2858 | */ |
| 2859 | if (not_writing()) |
| 2860 | { |
| 2861 | ++error; |
| 2862 | break; |
| 2863 | } |
| 2864 | #ifdef FEAT_BROWSE |
| 2865 | /* ":browse wall": ask for file name if there isn't one */ |
| 2866 | if (buf->b_ffname == NULL && cmdmod.browse) |
| 2867 | browse_save_fname(buf); |
| 2868 | #endif |
| 2869 | if (buf->b_ffname == NULL) |
| 2870 | { |
| 2871 | EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum); |
| 2872 | ++error; |
| 2873 | } |
| 2874 | else if (check_readonly(&eap->forceit, buf) |
| 2875 | || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname, |
| 2876 | FALSE) == FAIL) |
| 2877 | { |
| 2878 | ++error; |
| 2879 | } |
| 2880 | else |
| 2881 | { |
| 2882 | if (buf_write_all(buf, eap->forceit) == FAIL) |
| 2883 | ++error; |
| 2884 | #ifdef FEAT_AUTOCMD |
| 2885 | /* an autocommand may have deleted the buffer */ |
| 2886 | if (!buf_valid(buf)) |
| 2887 | buf = firstbuf; |
| 2888 | #endif |
| 2889 | } |
| 2890 | eap->forceit = save_forceit; /* check_overwrite() may set it */ |
| 2891 | } |
| 2892 | } |
| 2893 | if (exiting) |
| 2894 | { |
| 2895 | if (!error) |
| 2896 | getout(0); /* exit Vim */ |
| 2897 | not_exiting(); |
| 2898 | } |
| 2899 | } |
| 2900 | |
| 2901 | /* |
| 2902 | * Check the 'write' option. |
| 2903 | * Return TRUE and give a message when it's not st. |
| 2904 | */ |
| 2905 | int |
| 2906 | not_writing() |
| 2907 | { |
| 2908 | if (p_write) |
| 2909 | return FALSE; |
| 2910 | EMSG(_("E142: File not written: Writing is disabled by 'write' option")); |
| 2911 | return TRUE; |
| 2912 | } |
| 2913 | |
| 2914 | /* |
| 2915 | * Check if a buffer is read-only. Ask for overruling in a dialog. |
| 2916 | * Return TRUE and give an error message when the buffer is readonly. |
| 2917 | */ |
| 2918 | static int |
| 2919 | check_readonly(forceit, buf) |
| 2920 | int *forceit; |
| 2921 | buf_T *buf; |
| 2922 | { |
| 2923 | if (!*forceit && buf->b_p_ro) |
| 2924 | { |
| 2925 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 2926 | if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL) |
| 2927 | { |
| 2928 | char_u buff[IOSIZE]; |
| 2929 | |
Bram Moolenaar | 0e4d877 | 2005-06-07 21:12:49 +0000 | [diff] [blame] | 2930 | dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2931 | buf->b_fname); |
| 2932 | |
| 2933 | if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES) |
| 2934 | { |
| 2935 | /* Set forceit, to force the writing of a readonly file */ |
| 2936 | *forceit = TRUE; |
| 2937 | return FALSE; |
| 2938 | } |
| 2939 | else |
| 2940 | return TRUE; |
| 2941 | } |
| 2942 | else |
| 2943 | #endif |
| 2944 | EMSG(_(e_readonly)); |
| 2945 | return TRUE; |
| 2946 | } |
| 2947 | return FALSE; |
| 2948 | } |
| 2949 | |
| 2950 | /* |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2951 | * Try to abandon current file and edit a new or existing file. |
| 2952 | * 'fnum' is the number of the file, if zero use ffname/sfname. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2953 | * |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2954 | * Return 1 for "normal" error, 2 for "not written" error, 0 for success |
| 2955 | * -1 for succesfully opening another file. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2956 | * 'lnum' is the line number for the cursor in the new file (if non-zero). |
| 2957 | */ |
| 2958 | int |
| 2959 | getfile(fnum, ffname, sfname, setpm, lnum, forceit) |
| 2960 | int fnum; |
| 2961 | char_u *ffname; |
| 2962 | char_u *sfname; |
| 2963 | int setpm; |
| 2964 | linenr_T lnum; |
| 2965 | int forceit; |
| 2966 | { |
| 2967 | int other; |
| 2968 | int retval; |
| 2969 | char_u *free_me = NULL; |
| 2970 | |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2971 | if (text_locked()) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2972 | return 1; |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2973 | #ifdef FEAT_AUTOCMD |
| 2974 | if (curbuf_locked()) |
| 2975 | return 1; |
| 2976 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2977 | |
| 2978 | if (fnum == 0) |
| 2979 | { |
| 2980 | /* make ffname full path, set sfname */ |
| 2981 | fname_expand(curbuf, &ffname, &sfname); |
| 2982 | other = otherfile(ffname); |
| 2983 | free_me = ffname; /* has been allocated, free() later */ |
| 2984 | } |
| 2985 | else |
| 2986 | other = (fnum != curbuf->b_fnum); |
| 2987 | |
| 2988 | if (other) |
| 2989 | ++no_wait_return; /* don't wait for autowrite message */ |
| 2990 | if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf) |
| 2991 | && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL) |
| 2992 | { |
| 2993 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 2994 | if (p_confirm && p_write) |
| 2995 | dialog_changed(curbuf, FALSE); |
| 2996 | if (curbufIsChanged()) |
| 2997 | #endif |
| 2998 | { |
| 2999 | if (other) |
| 3000 | --no_wait_return; |
| 3001 | EMSG(_(e_nowrtmsg)); |
| 3002 | retval = 2; /* file has been changed */ |
| 3003 | goto theend; |
| 3004 | } |
| 3005 | } |
| 3006 | if (other) |
| 3007 | --no_wait_return; |
| 3008 | if (setpm) |
| 3009 | setpcmark(); |
| 3010 | if (!other) |
| 3011 | { |
| 3012 | if (lnum != 0) |
| 3013 | curwin->w_cursor.lnum = lnum; |
| 3014 | check_cursor_lnum(); |
| 3015 | beginline(BL_SOL | BL_FIX); |
| 3016 | retval = 0; /* it's in the same file */ |
| 3017 | } |
| 3018 | else if (do_ecmd(fnum, ffname, sfname, NULL, lnum, |
| 3019 | (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0)) == OK) |
| 3020 | retval = -1; /* opened another file */ |
| 3021 | else |
| 3022 | retval = 1; /* error encountered */ |
| 3023 | |
| 3024 | theend: |
| 3025 | vim_free(free_me); |
| 3026 | return retval; |
| 3027 | } |
| 3028 | |
| 3029 | /* |
| 3030 | * start editing a new file |
| 3031 | * |
| 3032 | * fnum: file number; if zero use ffname/sfname |
| 3033 | * ffname: the file name |
| 3034 | * - full path if sfname used, |
| 3035 | * - any file name if sfname is NULL |
| 3036 | * - empty string to re-edit with the same file name (but may be |
| 3037 | * in a different directory) |
| 3038 | * - NULL to start an empty buffer |
| 3039 | * sfname: the short file name (or NULL) |
| 3040 | * eap: contains the command to be executed after loading the file and |
| 3041 | * forced 'ff' and 'fenc' |
| 3042 | * newlnum: if > 0: put cursor on this line number (if possible) |
| 3043 | * if ECMD_LASTL: use last position in loaded file |
| 3044 | * if ECMD_LAST: use last position in all files |
| 3045 | * if ECMD_ONE: use first line |
| 3046 | * flags: |
| 3047 | * ECMD_HIDE: if TRUE don't free the current buffer |
| 3048 | * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file |
| 3049 | * ECMD_OLDBUF: use existing buffer if it exists |
| 3050 | * ECMD_FORCEIT: ! used for Ex command |
| 3051 | * ECMD_ADDBUF: don't edit, just add to buffer list |
| 3052 | * |
| 3053 | * return FAIL for failure, OK otherwise |
| 3054 | */ |
| 3055 | int |
| 3056 | do_ecmd(fnum, ffname, sfname, eap, newlnum, flags) |
| 3057 | int fnum; |
| 3058 | char_u *ffname; |
| 3059 | char_u *sfname; |
| 3060 | exarg_T *eap; /* can be NULL! */ |
| 3061 | linenr_T newlnum; |
| 3062 | int flags; |
| 3063 | { |
| 3064 | int other_file; /* TRUE if editing another file */ |
| 3065 | int oldbuf; /* TRUE if using existing buffer */ |
| 3066 | #ifdef FEAT_AUTOCMD |
| 3067 | int auto_buf = FALSE; /* TRUE if autocommands brought us |
| 3068 | into the buffer unexpectedly */ |
| 3069 | char_u *new_name = NULL; |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 3070 | int did_set_swapcommand = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3071 | #endif |
| 3072 | buf_T *buf; |
| 3073 | #if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 3074 | buf_T *old_curbuf = curbuf; |
| 3075 | #endif |
| 3076 | char_u *free_fname = NULL; |
| 3077 | #ifdef FEAT_BROWSE |
| 3078 | char_u *browse_file = NULL; |
| 3079 | #endif |
| 3080 | int retval = FAIL; |
| 3081 | long n; |
| 3082 | linenr_T lnum; |
| 3083 | linenr_T topline = 0; |
| 3084 | int newcol = -1; |
| 3085 | int solcol = -1; |
| 3086 | pos_T *pos; |
| 3087 | #ifdef FEAT_SUN_WORKSHOP |
| 3088 | char_u *cp; |
| 3089 | #endif |
| 3090 | char_u *command = NULL; |
Bram Moolenaar | 706cdeb | 2007-05-06 21:55:31 +0000 | [diff] [blame] | 3091 | #ifdef FEAT_SPELL |
| 3092 | int did_get_winopts = FALSE; |
| 3093 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3094 | |
| 3095 | if (eap != NULL) |
| 3096 | command = eap->do_ecmd_cmd; |
| 3097 | |
| 3098 | if (fnum != 0) |
| 3099 | { |
| 3100 | if (fnum == curbuf->b_fnum) /* file is already being edited */ |
| 3101 | return OK; /* nothing to do */ |
| 3102 | other_file = TRUE; |
| 3103 | } |
| 3104 | else |
| 3105 | { |
| 3106 | #ifdef FEAT_BROWSE |
| 3107 | if (cmdmod.browse) |
| 3108 | { |
Bram Moolenaar | 0be6e64 | 2005-08-04 21:32:22 +0000 | [diff] [blame] | 3109 | if ( |
| 3110 | # ifdef FEAT_GUI |
| 3111 | !gui.in_use && |
| 3112 | # endif |
| 3113 | au_has_group((char_u *)"FileExplorer")) |
| 3114 | { |
| 3115 | /* No browsing supported but we do have the file explorer: |
| 3116 | * Edit the directory. */ |
| 3117 | if (ffname == NULL || !mch_isdir(ffname)) |
| 3118 | ffname = (char_u *)"."; |
| 3119 | } |
| 3120 | else |
| 3121 | { |
| 3122 | browse_file = do_browse(0, (char_u *)_("Edit File"), ffname, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3123 | NULL, NULL, NULL, curbuf); |
Bram Moolenaar | 0be6e64 | 2005-08-04 21:32:22 +0000 | [diff] [blame] | 3124 | if (browse_file == NULL) |
| 3125 | goto theend; |
| 3126 | ffname = browse_file; |
| 3127 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3128 | } |
| 3129 | #endif |
| 3130 | /* if no short name given, use ffname for short name */ |
| 3131 | if (sfname == NULL) |
| 3132 | sfname = ffname; |
| 3133 | #ifdef USE_FNAME_CASE |
| 3134 | # ifdef USE_LONG_FNAME |
| 3135 | if (USE_LONG_FNAME) |
| 3136 | # endif |
Bram Moolenaar | 342337a | 2005-07-21 21:11:17 +0000 | [diff] [blame] | 3137 | if (sfname != NULL) |
| 3138 | fname_case(sfname, 0); /* set correct case for sfname */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3139 | #endif |
| 3140 | |
| 3141 | #ifdef FEAT_LISTCMDS |
| 3142 | if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL)) |
| 3143 | goto theend; |
| 3144 | #endif |
| 3145 | |
| 3146 | if (ffname == NULL) |
| 3147 | other_file = TRUE; |
| 3148 | /* there is no file name */ |
| 3149 | else if (*ffname == NUL && curbuf->b_ffname == NULL) |
| 3150 | other_file = FALSE; |
| 3151 | else |
| 3152 | { |
| 3153 | if (*ffname == NUL) /* re-edit with same file name */ |
| 3154 | { |
| 3155 | ffname = curbuf->b_ffname; |
| 3156 | sfname = curbuf->b_fname; |
| 3157 | } |
| 3158 | free_fname = fix_fname(ffname); /* may expand to full path name */ |
| 3159 | if (free_fname != NULL) |
| 3160 | ffname = free_fname; |
| 3161 | other_file = otherfile(ffname); |
| 3162 | #ifdef FEAT_SUN_WORKSHOP |
| 3163 | if (usingSunWorkShop && p_acd |
| 3164 | && (cp = vim_strrchr(sfname, '/')) != NULL) |
| 3165 | sfname = ++cp; |
| 3166 | #endif |
| 3167 | } |
| 3168 | } |
| 3169 | |
| 3170 | /* |
| 3171 | * if the file was changed we may not be allowed to abandon it |
| 3172 | * - if we are going to re-edit the same file |
| 3173 | * - or if we are the only window on this file and if ECMD_HIDE is FALSE |
| 3174 | */ |
| 3175 | if ( ((!other_file && !(flags & ECMD_OLDBUF)) |
| 3176 | || (curbuf->b_nwindows == 1 |
| 3177 | && !(flags & (ECMD_HIDE | ECMD_ADDBUF)))) |
| 3178 | && check_changed(curbuf, p_awa, !other_file, |
| 3179 | (flags & ECMD_FORCEIT), FALSE)) |
| 3180 | { |
| 3181 | if (fnum == 0 && other_file && ffname != NULL) |
| 3182 | (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum); |
| 3183 | goto theend; |
| 3184 | } |
| 3185 | |
| 3186 | #ifdef FEAT_VISUAL |
| 3187 | /* |
| 3188 | * End Visual mode before switching to another buffer, so the text can be |
| 3189 | * copied into the GUI selection buffer. |
| 3190 | */ |
| 3191 | reset_VIsual(); |
| 3192 | #endif |
| 3193 | |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 3194 | #ifdef FEAT_AUTOCMD |
| 3195 | if ((command != NULL || newlnum > (linenr_T)0) |
| 3196 | && *get_vim_var_str(VV_SWAPCOMMAND) == NUL) |
| 3197 | { |
| 3198 | int len; |
| 3199 | char_u *p; |
| 3200 | |
| 3201 | /* Set v:swapcommand for the SwapExists autocommands. */ |
| 3202 | if (command != NULL) |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 3203 | len = (int)STRLEN(command) + 3; |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 3204 | else |
| 3205 | len = 30; |
| 3206 | p = alloc((unsigned)len); |
| 3207 | if (p != NULL) |
| 3208 | { |
| 3209 | if (command != NULL) |
| 3210 | vim_snprintf((char *)p, len, ":%s\r", command); |
| 3211 | else |
| 3212 | vim_snprintf((char *)p, len, "%ldG", (long)newlnum); |
| 3213 | set_vim_var_string(VV_SWAPCOMMAND, p, -1); |
| 3214 | did_set_swapcommand = TRUE; |
| 3215 | vim_free(p); |
| 3216 | } |
| 3217 | } |
| 3218 | #endif |
| 3219 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3220 | /* |
| 3221 | * If we are starting to edit another file, open a (new) buffer. |
| 3222 | * Otherwise we re-use the current buffer. |
| 3223 | */ |
| 3224 | if (other_file) |
| 3225 | { |
| 3226 | #ifdef FEAT_LISTCMDS |
| 3227 | if (!(flags & ECMD_ADDBUF)) |
| 3228 | #endif |
| 3229 | { |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 3230 | if (!cmdmod.keepalt) |
| 3231 | curwin->w_alt_fnum = curbuf->b_fnum; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3232 | buflist_altfpos(); |
| 3233 | } |
| 3234 | |
| 3235 | if (fnum) |
| 3236 | buf = buflist_findnr(fnum); |
| 3237 | else |
| 3238 | { |
| 3239 | #ifdef FEAT_LISTCMDS |
| 3240 | if (flags & ECMD_ADDBUF) |
| 3241 | { |
| 3242 | linenr_T tlnum = 1L; |
| 3243 | |
| 3244 | if (command != NULL) |
| 3245 | { |
| 3246 | tlnum = atol((char *)command); |
| 3247 | if (tlnum <= 0) |
| 3248 | tlnum = 1L; |
| 3249 | } |
| 3250 | (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED); |
| 3251 | goto theend; |
| 3252 | } |
| 3253 | #endif |
| 3254 | buf = buflist_new(ffname, sfname, 0L, |
| 3255 | BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED)); |
| 3256 | } |
| 3257 | if (buf == NULL) |
| 3258 | goto theend; |
| 3259 | if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */ |
| 3260 | { |
| 3261 | oldbuf = FALSE; |
| 3262 | buf->b_nwindows = 0; |
| 3263 | } |
| 3264 | else /* existing memfile */ |
| 3265 | { |
| 3266 | oldbuf = TRUE; |
| 3267 | (void)buf_check_timestamp(buf, FALSE); |
| 3268 | /* Check if autocommands made buffer invalid or changed the current |
| 3269 | * buffer. */ |
| 3270 | if (!buf_valid(buf) |
| 3271 | #ifdef FEAT_AUTOCMD |
| 3272 | || curbuf != old_curbuf |
| 3273 | #endif |
| 3274 | ) |
| 3275 | goto theend; |
| 3276 | #ifdef FEAT_EVAL |
| 3277 | if (aborting()) /* autocmds may abort script processing */ |
| 3278 | goto theend; |
| 3279 | #endif |
| 3280 | } |
| 3281 | |
| 3282 | /* May jump to last used line number for a loaded buffer or when asked |
| 3283 | * for explicitly */ |
| 3284 | if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST) |
| 3285 | { |
| 3286 | pos = buflist_findfpos(buf); |
| 3287 | newlnum = pos->lnum; |
| 3288 | solcol = pos->col; |
| 3289 | } |
| 3290 | |
| 3291 | /* |
| 3292 | * Make the (new) buffer the one used by the current window. |
| 3293 | * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE. |
| 3294 | * If the current buffer was empty and has no file name, curbuf |
| 3295 | * is returned by buflist_new(). |
| 3296 | */ |
| 3297 | if (buf != curbuf) |
| 3298 | { |
| 3299 | #ifdef FEAT_AUTOCMD |
| 3300 | /* |
| 3301 | * Be careful: The autocommands may delete any buffer and change |
| 3302 | * the current buffer. |
| 3303 | * - If the buffer we are going to edit is deleted, give up. |
| 3304 | * - If the current buffer is deleted, prefer to load the new |
| 3305 | * buffer when loading a buffer is required. This avoids |
| 3306 | * loading another buffer which then must be closed again. |
| 3307 | * - If we ended up in the new buffer already, need to skip a few |
| 3308 | * things, set auto_buf. |
| 3309 | */ |
| 3310 | if (buf->b_fname != NULL) |
| 3311 | new_name = vim_strsave(buf->b_fname); |
| 3312 | au_new_curbuf = buf; |
| 3313 | apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); |
| 3314 | if (!buf_valid(buf)) /* new buffer has been deleted */ |
| 3315 | { |
| 3316 | delbuf_msg(new_name); /* frees new_name */ |
| 3317 | goto theend; |
| 3318 | } |
| 3319 | # ifdef FEAT_EVAL |
| 3320 | if (aborting()) /* autocmds may abort script processing */ |
| 3321 | { |
| 3322 | vim_free(new_name); |
| 3323 | goto theend; |
| 3324 | } |
| 3325 | # endif |
| 3326 | if (buf == curbuf) /* already in new buffer */ |
| 3327 | auto_buf = TRUE; |
| 3328 | else |
| 3329 | { |
| 3330 | if (curbuf == old_curbuf) |
| 3331 | #endif |
| 3332 | buf_copy_options(buf, BCO_ENTER); |
| 3333 | |
| 3334 | /* close the link to the current buffer */ |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 3335 | u_sync(FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3336 | close_buffer(curwin, curbuf, |
| 3337 | (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD); |
| 3338 | |
| 3339 | #ifdef FEAT_AUTOCMD |
| 3340 | # ifdef FEAT_EVAL |
| 3341 | if (aborting()) /* autocmds may abort script processing */ |
| 3342 | { |
| 3343 | vim_free(new_name); |
| 3344 | goto theend; |
| 3345 | } |
| 3346 | # endif |
| 3347 | /* Be careful again, like above. */ |
| 3348 | if (!buf_valid(buf)) /* new buffer has been deleted */ |
| 3349 | { |
| 3350 | delbuf_msg(new_name); /* frees new_name */ |
| 3351 | goto theend; |
| 3352 | } |
| 3353 | if (buf == curbuf) /* already in new buffer */ |
| 3354 | auto_buf = TRUE; |
| 3355 | else |
| 3356 | #endif |
| 3357 | { |
| 3358 | curwin->w_buffer = buf; |
| 3359 | curbuf = buf; |
| 3360 | ++curbuf->b_nwindows; |
| 3361 | /* set 'fileformat' */ |
| 3362 | if (*p_ffs && !oldbuf) |
| 3363 | set_fileformat(default_fileformat(), OPT_LOCAL); |
| 3364 | } |
| 3365 | |
| 3366 | /* May get the window options from the last time this buffer |
| 3367 | * was in this window (or another window). If not used |
| 3368 | * before, reset the local window options to the global |
| 3369 | * values. Also restores old folding stuff. */ |
Bram Moolenaar | b1269f1 | 2007-06-19 09:51:25 +0000 | [diff] [blame] | 3370 | get_winopts(curbuf); |
Bram Moolenaar | 706cdeb | 2007-05-06 21:55:31 +0000 | [diff] [blame] | 3371 | #ifdef FEAT_SPELL |
| 3372 | did_get_winopts = TRUE; |
| 3373 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3374 | |
| 3375 | #ifdef FEAT_AUTOCMD |
| 3376 | } |
| 3377 | vim_free(new_name); |
| 3378 | au_new_curbuf = NULL; |
| 3379 | #endif |
| 3380 | } |
| 3381 | else |
| 3382 | ++curbuf->b_nwindows; |
| 3383 | |
| 3384 | curwin->w_pcmark.lnum = 1; |
| 3385 | curwin->w_pcmark.col = 0; |
| 3386 | } |
| 3387 | else /* !other_file */ |
| 3388 | { |
| 3389 | if ( |
| 3390 | #ifdef FEAT_LISTCMDS |
| 3391 | (flags & ECMD_ADDBUF) || |
| 3392 | #endif |
| 3393 | check_fname() == FAIL) |
| 3394 | goto theend; |
| 3395 | oldbuf = (flags & ECMD_OLDBUF); |
| 3396 | } |
| 3397 | |
| 3398 | if ((flags & ECMD_SET_HELP) || keep_help_flag) |
| 3399 | { |
| 3400 | char_u *p; |
| 3401 | |
| 3402 | curbuf->b_help = TRUE; |
| 3403 | #ifdef FEAT_QUICKFIX |
| 3404 | set_string_option_direct((char_u *)"buftype", -1, |
Bram Moolenaar | 5e3cb7e | 2006-02-27 23:58:35 +0000 | [diff] [blame] | 3405 | (char_u *)"help", OPT_FREE|OPT_LOCAL, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3406 | #endif |
| 3407 | |
| 3408 | /* |
| 3409 | * Always set these options after jumping to a help tag, because the |
| 3410 | * user may have an autocommand that gets in the way. |
| 3411 | * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and |
| 3412 | * latin1 word characters (for translated help files). |
| 3413 | * Only set it when needed, buf_init_chartab() is some work. |
| 3414 | */ |
| 3415 | p = |
| 3416 | #ifdef EBCDIC |
| 3417 | (char_u *)"65-255,^*,^|,^\""; |
| 3418 | #else |
| 3419 | (char_u *)"!-~,^*,^|,^\",192-255"; |
| 3420 | #endif |
| 3421 | if (STRCMP(curbuf->b_p_isk, p) != 0) |
| 3422 | { |
| 3423 | set_string_option_direct((char_u *)"isk", -1, p, |
Bram Moolenaar | 5e3cb7e | 2006-02-27 23:58:35 +0000 | [diff] [blame] | 3424 | OPT_FREE|OPT_LOCAL, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3425 | check_buf_options(curbuf); |
| 3426 | (void)buf_init_chartab(curbuf, FALSE); |
| 3427 | } |
| 3428 | |
| 3429 | curbuf->b_p_ts = 8; /* 'tabstop' is 8 */ |
| 3430 | curwin->w_p_list = FALSE; /* no list mode */ |
| 3431 | |
| 3432 | curbuf->b_p_ma = FALSE; /* not modifiable */ |
| 3433 | curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */ |
| 3434 | curwin->w_p_nu = 0; /* no line numbers */ |
| 3435 | #ifdef FEAT_SCROLLBIND |
| 3436 | curwin->w_p_scb = FALSE; /* no scroll binding */ |
| 3437 | #endif |
| 3438 | #ifdef FEAT_ARABIC |
| 3439 | curwin->w_p_arab = FALSE; /* no arabic mode */ |
| 3440 | #endif |
| 3441 | #ifdef FEAT_RIGHTLEFT |
| 3442 | curwin->w_p_rl = FALSE; /* help window is left-to-right */ |
| 3443 | #endif |
| 3444 | #ifdef FEAT_FOLDING |
| 3445 | curwin->w_p_fen = FALSE; /* No folding in the help window */ |
| 3446 | #endif |
| 3447 | #ifdef FEAT_DIFF |
| 3448 | curwin->w_p_diff = FALSE; /* No 'diff' */ |
| 3449 | #endif |
Bram Moolenaar | a1956f6 | 2006-03-12 22:18:00 +0000 | [diff] [blame] | 3450 | #ifdef FEAT_SPELL |
Bram Moolenaar | 9a50b1b | 2005-06-27 22:48:21 +0000 | [diff] [blame] | 3451 | curwin->w_p_spell = FALSE; /* No spell checking */ |
| 3452 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3453 | |
| 3454 | #ifdef FEAT_AUTOCMD |
| 3455 | buf = curbuf; |
| 3456 | #endif |
| 3457 | set_buflisted(FALSE); |
| 3458 | } |
| 3459 | else |
| 3460 | { |
| 3461 | #ifdef FEAT_AUTOCMD |
| 3462 | buf = curbuf; |
| 3463 | #endif |
| 3464 | /* Don't make a buffer listed if it's a help buffer. Useful when |
| 3465 | * using CTRL-O to go back to a help file. */ |
| 3466 | if (!curbuf->b_help) |
| 3467 | set_buflisted(TRUE); |
| 3468 | } |
| 3469 | |
| 3470 | #ifdef FEAT_AUTOCMD |
| 3471 | /* If autocommands change buffers under our fingers, forget about |
| 3472 | * editing the file. */ |
| 3473 | if (buf != curbuf) |
| 3474 | goto theend; |
| 3475 | # ifdef FEAT_EVAL |
| 3476 | if (aborting()) /* autocmds may abort script processing */ |
| 3477 | goto theend; |
| 3478 | # endif |
| 3479 | |
| 3480 | /* Since we are starting to edit a file, consider the filetype to be |
| 3481 | * unset. Helps for when an autocommand changes files and expects syntax |
| 3482 | * highlighting to work in the other file. */ |
| 3483 | did_filetype = FALSE; |
| 3484 | #endif |
| 3485 | |
| 3486 | /* |
| 3487 | * other_file oldbuf |
| 3488 | * FALSE FALSE re-edit same file, buffer is re-used |
| 3489 | * FALSE TRUE re-edit same file, nothing changes |
| 3490 | * TRUE FALSE start editing new file, new buffer |
| 3491 | * TRUE TRUE start editing in existing buffer (nothing to do) |
| 3492 | */ |
| 3493 | if (!other_file && !oldbuf) /* re-use the buffer */ |
| 3494 | { |
| 3495 | set_last_cursor(curwin); /* may set b_last_cursor */ |
| 3496 | if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL) |
| 3497 | { |
| 3498 | newlnum = curwin->w_cursor.lnum; |
| 3499 | solcol = curwin->w_cursor.col; |
| 3500 | } |
| 3501 | #ifdef FEAT_AUTOCMD |
| 3502 | buf = curbuf; |
| 3503 | if (buf->b_fname != NULL) |
| 3504 | new_name = vim_strsave(buf->b_fname); |
| 3505 | else |
| 3506 | new_name = NULL; |
| 3507 | #endif |
| 3508 | buf_freeall(curbuf, FALSE, FALSE); /* free all things for buffer */ |
| 3509 | #ifdef FEAT_AUTOCMD |
| 3510 | /* If autocommands deleted the buffer we were going to re-edit, give |
| 3511 | * up and jump to the end. */ |
| 3512 | if (!buf_valid(buf)) |
| 3513 | { |
| 3514 | delbuf_msg(new_name); /* frees new_name */ |
| 3515 | goto theend; |
| 3516 | } |
| 3517 | vim_free(new_name); |
| 3518 | |
| 3519 | /* If autocommands change buffers under our fingers, forget about |
| 3520 | * re-editing the file. Should do the buf_clear_file(), but perhaps |
| 3521 | * the autocommands changed the buffer... */ |
| 3522 | if (buf != curbuf) |
| 3523 | goto theend; |
| 3524 | # ifdef FEAT_EVAL |
| 3525 | if (aborting()) /* autocmds may abort script processing */ |
| 3526 | goto theend; |
| 3527 | # endif |
| 3528 | #endif |
| 3529 | buf_clear_file(curbuf); |
| 3530 | curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */ |
| 3531 | curbuf->b_op_end.lnum = 0; |
| 3532 | } |
| 3533 | |
| 3534 | /* |
| 3535 | * If we get here we are sure to start editing |
| 3536 | */ |
| 3537 | /* don't redraw until the cursor is in the right line */ |
| 3538 | ++RedrawingDisabled; |
| 3539 | |
| 3540 | /* Assume success now */ |
| 3541 | retval = OK; |
| 3542 | |
| 3543 | /* |
| 3544 | * Reset cursor position, could be used by autocommands. |
| 3545 | */ |
| 3546 | check_cursor(); |
| 3547 | |
| 3548 | /* |
| 3549 | * Check if we are editing the w_arg_idx file in the argument list. |
| 3550 | */ |
| 3551 | check_arg_idx(curwin); |
| 3552 | |
| 3553 | #ifdef FEAT_AUTOCMD |
| 3554 | if (!auto_buf) |
| 3555 | #endif |
| 3556 | { |
| 3557 | /* |
| 3558 | * Set cursor and init window before reading the file and executing |
| 3559 | * autocommands. This allows for the autocommands to position the |
| 3560 | * cursor. |
| 3561 | */ |
Bram Moolenaar | faa959a | 2006-02-20 21:37:40 +0000 | [diff] [blame] | 3562 | curwin_init(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3563 | |
| 3564 | #ifdef FEAT_FOLDING |
| 3565 | /* It's like all lines in the buffer changed. Need to update |
| 3566 | * automatic folding. */ |
| 3567 | foldUpdateAll(curwin); |
| 3568 | #endif |
| 3569 | |
Bram Moolenaar | 498efdb | 2006-09-05 14:31:54 +0000 | [diff] [blame] | 3570 | /* Change directories when the 'acd' option is set. */ |
| 3571 | DO_AUTOCHDIR |
| 3572 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3573 | /* |
| 3574 | * Careful: open_buffer() and apply_autocmds() may change the current |
| 3575 | * buffer and window. |
| 3576 | */ |
| 3577 | lnum = curwin->w_cursor.lnum; |
| 3578 | topline = curwin->w_topline; |
| 3579 | if (!oldbuf) /* need to read the file */ |
| 3580 | { |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 3581 | #if defined(HAS_SWAP_EXISTS_ACTION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3582 | swap_exists_action = SEA_DIALOG; |
| 3583 | #endif |
| 3584 | curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */ |
| 3585 | |
| 3586 | /* |
| 3587 | * Open the buffer and read the file. |
| 3588 | */ |
| 3589 | #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
| 3590 | if (should_abort(open_buffer(FALSE, eap))) |
| 3591 | retval = FAIL; |
| 3592 | #else |
| 3593 | (void)open_buffer(FALSE, eap); |
| 3594 | #endif |
| 3595 | |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 3596 | #if defined(HAS_SWAP_EXISTS_ACTION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3597 | if (swap_exists_action == SEA_QUIT) |
| 3598 | retval = FAIL; |
| 3599 | handle_swap_exists(old_curbuf); |
| 3600 | #endif |
| 3601 | } |
| 3602 | #ifdef FEAT_AUTOCMD |
| 3603 | else |
| 3604 | { |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 3605 | /* Read the modelines, but only to set window-local options. Any |
| 3606 | * buffer-local options have already been set and may have been |
| 3607 | * changed by the user. */ |
Bram Moolenaar | a3227e2 | 2006-03-08 21:32:40 +0000 | [diff] [blame] | 3608 | do_modelines(OPT_WINONLY); |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 3609 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3610 | apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, |
| 3611 | &retval); |
| 3612 | apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf, |
| 3613 | &retval); |
| 3614 | } |
| 3615 | check_arg_idx(curwin); |
| 3616 | #endif |
| 3617 | |
| 3618 | /* |
| 3619 | * If autocommands change the cursor position or topline, we should |
| 3620 | * keep it. |
| 3621 | */ |
| 3622 | if (curwin->w_cursor.lnum != lnum) |
| 3623 | { |
| 3624 | newlnum = curwin->w_cursor.lnum; |
| 3625 | newcol = curwin->w_cursor.col; |
| 3626 | } |
| 3627 | if (curwin->w_topline == topline) |
| 3628 | topline = 0; |
| 3629 | |
| 3630 | /* Even when cursor didn't move we need to recompute topline. */ |
| 3631 | changed_line_abv_curs(); |
| 3632 | |
| 3633 | #ifdef FEAT_TITLE |
| 3634 | maketitle(); |
| 3635 | #endif |
| 3636 | } |
| 3637 | |
| 3638 | #ifdef FEAT_DIFF |
| 3639 | /* Tell the diff stuff that this buffer is new and/or needs updating. |
| 3640 | * Also needed when re-editing the same buffer, because unloading will |
| 3641 | * have removed it as a diff buffer. */ |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 3642 | if (curwin->w_p_diff) |
| 3643 | { |
| 3644 | diff_buf_add(curbuf); |
| 3645 | diff_invalidate(curbuf); |
| 3646 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3647 | #endif |
| 3648 | |
Bram Moolenaar | 706cdeb | 2007-05-06 21:55:31 +0000 | [diff] [blame] | 3649 | #ifdef FEAT_SPELL |
| 3650 | /* If the window options were changed may need to set the spell language. |
| 3651 | * Can only do this after the buffer has been properly setup. */ |
Bram Moolenaar | b1269f1 | 2007-06-19 09:51:25 +0000 | [diff] [blame] | 3652 | if (did_get_winopts && curwin->w_p_spell && *curbuf->b_p_spl != NUL) |
| 3653 | did_set_spelllang(curbuf); |
Bram Moolenaar | 706cdeb | 2007-05-06 21:55:31 +0000 | [diff] [blame] | 3654 | #endif |
| 3655 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3656 | if (command == NULL) |
| 3657 | { |
| 3658 | if (newcol >= 0) /* position set by autocommands */ |
| 3659 | { |
| 3660 | curwin->w_cursor.lnum = newlnum; |
| 3661 | curwin->w_cursor.col = newcol; |
| 3662 | check_cursor(); |
| 3663 | } |
| 3664 | else if (newlnum > 0) /* line number from caller or old position */ |
| 3665 | { |
| 3666 | curwin->w_cursor.lnum = newlnum; |
| 3667 | check_cursor_lnum(); |
| 3668 | if (solcol >= 0 && !p_sol) |
| 3669 | { |
| 3670 | /* 'sol' is off: Use last known column. */ |
| 3671 | curwin->w_cursor.col = solcol; |
| 3672 | check_cursor_col(); |
| 3673 | #ifdef FEAT_VIRTUALEDIT |
| 3674 | curwin->w_cursor.coladd = 0; |
| 3675 | #endif |
| 3676 | curwin->w_set_curswant = TRUE; |
| 3677 | } |
| 3678 | else |
| 3679 | beginline(BL_SOL | BL_FIX); |
| 3680 | } |
| 3681 | else /* no line number, go to last line in Ex mode */ |
| 3682 | { |
| 3683 | if (exmode_active) |
| 3684 | curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; |
| 3685 | beginline(BL_WHITE | BL_FIX); |
| 3686 | } |
| 3687 | } |
| 3688 | |
| 3689 | #ifdef FEAT_WINDOWS |
| 3690 | /* Check if cursors in other windows on the same buffer are still valid */ |
| 3691 | check_lnums(FALSE); |
| 3692 | #endif |
| 3693 | |
| 3694 | /* |
| 3695 | * Did not read the file, need to show some info about the file. |
| 3696 | * Do this after setting the cursor. |
| 3697 | */ |
| 3698 | if (oldbuf |
| 3699 | #ifdef FEAT_AUTOCMD |
| 3700 | && !auto_buf |
| 3701 | #endif |
| 3702 | ) |
| 3703 | { |
| 3704 | int msg_scroll_save = msg_scroll; |
| 3705 | |
| 3706 | /* Obey the 'O' flag in 'cpoptions': overwrite any previous file |
| 3707 | * message. */ |
| 3708 | if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0) |
| 3709 | msg_scroll = FALSE; |
| 3710 | if (!msg_scroll) /* wait a bit when overwriting an error msg */ |
| 3711 | check_for_delay(FALSE); |
| 3712 | msg_start(); |
| 3713 | msg_scroll = msg_scroll_save; |
| 3714 | msg_scrolled_ign = TRUE; |
| 3715 | |
| 3716 | fileinfo(FALSE, TRUE, FALSE); |
| 3717 | |
| 3718 | msg_scrolled_ign = FALSE; |
| 3719 | } |
| 3720 | |
| 3721 | if (command != NULL) |
| 3722 | do_cmdline(command, NULL, NULL, DOCMD_VERBOSE); |
| 3723 | |
| 3724 | #ifdef FEAT_KEYMAP |
| 3725 | if (curbuf->b_kmap_state & KEYMAP_INIT) |
| 3726 | keymap_init(); |
| 3727 | #endif |
| 3728 | |
| 3729 | --RedrawingDisabled; |
| 3730 | if (!skip_redraw) |
| 3731 | { |
| 3732 | n = p_so; |
| 3733 | if (topline == 0 && command == NULL) |
| 3734 | p_so = 999; /* force cursor halfway the window */ |
| 3735 | update_topline(); |
| 3736 | #ifdef FEAT_SCROLLBIND |
| 3737 | curwin->w_scbind_pos = curwin->w_topline; |
| 3738 | #endif |
| 3739 | p_so = n; |
| 3740 | redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */ |
| 3741 | } |
| 3742 | |
| 3743 | if (p_im) |
| 3744 | need_start_insertmode = TRUE; |
| 3745 | |
Bram Moolenaar | 498efdb | 2006-09-05 14:31:54 +0000 | [diff] [blame] | 3746 | /* Change directories when the 'acd' option is set. */ |
| 3747 | DO_AUTOCHDIR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3748 | |
Bram Moolenaar | 7b89edc | 2006-04-06 20:21:51 +0000 | [diff] [blame] | 3749 | #if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3750 | if (gui.in_use && curbuf->b_ffname != NULL) |
| 3751 | { |
| 3752 | # ifdef FEAT_SUN_WORKSHOP |
| 3753 | if (usingSunWorkShop) |
| 3754 | workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro); |
| 3755 | # endif |
| 3756 | # ifdef FEAT_NETBEANS_INTG |
Bram Moolenaar | 35a9aaa | 2004-10-24 19:23:07 +0000 | [diff] [blame] | 3757 | if (usingNetbeans & ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)) |
| 3758 | netbeans_file_opened(curbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3759 | # endif |
| 3760 | } |
| 3761 | #endif |
| 3762 | |
| 3763 | theend: |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 3764 | #ifdef FEAT_AUTOCMD |
| 3765 | if (did_set_swapcommand) |
| 3766 | set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); |
| 3767 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3768 | #ifdef FEAT_BROWSE |
| 3769 | vim_free(browse_file); |
| 3770 | #endif |
| 3771 | vim_free(free_fname); |
| 3772 | return retval; |
| 3773 | } |
| 3774 | |
| 3775 | #ifdef FEAT_AUTOCMD |
| 3776 | static void |
| 3777 | delbuf_msg(name) |
| 3778 | char_u *name; |
| 3779 | { |
| 3780 | EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"), |
| 3781 | name == NULL ? (char_u *)"" : name); |
| 3782 | vim_free(name); |
| 3783 | au_new_curbuf = NULL; |
| 3784 | } |
| 3785 | #endif |
| 3786 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3787 | static int append_indent = 0; /* autoindent for first line */ |
| 3788 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3789 | /* |
| 3790 | * ":insert" and ":append", also used by ":change" |
| 3791 | */ |
| 3792 | void |
| 3793 | ex_append(eap) |
| 3794 | exarg_T *eap; |
| 3795 | { |
| 3796 | char_u *theline; |
| 3797 | int did_undo = FALSE; |
| 3798 | linenr_T lnum = eap->line2; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3799 | int indent = 0; |
| 3800 | char_u *p; |
| 3801 | int vcol; |
| 3802 | int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3803 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3804 | /* the ! flag toggles autoindent */ |
| 3805 | if (eap->forceit) |
| 3806 | curbuf->b_p_ai = !curbuf->b_p_ai; |
| 3807 | |
| 3808 | /* First autoindent comes from the line we start on */ |
| 3809 | if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0) |
| 3810 | append_indent = get_indent_lnum(lnum); |
| 3811 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3812 | if (eap->cmdidx != CMD_append) |
| 3813 | --lnum; |
| 3814 | |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3815 | /* when the buffer is empty append to line 0 and delete the dummy line */ |
| 3816 | if (empty && lnum == 1) |
| 3817 | lnum = 0; |
| 3818 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3819 | State = INSERT; /* behave like in Insert mode */ |
| 3820 | if (curbuf->b_p_iminsert == B_IMODE_LMAP) |
| 3821 | State |= LANGMAP; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3822 | |
Bram Moolenaar | d8e9bb2 | 2005-07-09 21:14:46 +0000 | [diff] [blame] | 3823 | for (;;) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3824 | { |
| 3825 | msg_scroll = TRUE; |
| 3826 | need_wait_return = FALSE; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3827 | if (curbuf->b_p_ai) |
| 3828 | { |
| 3829 | if (append_indent >= 0) |
| 3830 | { |
| 3831 | indent = append_indent; |
| 3832 | append_indent = -1; |
| 3833 | } |
| 3834 | else if (lnum > 0) |
| 3835 | indent = get_indent_lnum(lnum); |
| 3836 | } |
| 3837 | ex_keep_indent = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3838 | if (eap->getline == NULL) |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3839 | { |
| 3840 | /* No getline() function, use the lines that follow. This ends |
| 3841 | * when there is no more. */ |
| 3842 | if (eap->nextcmd == NULL || *eap->nextcmd == NUL) |
| 3843 | break; |
| 3844 | p = vim_strchr(eap->nextcmd, NL); |
| 3845 | if (p == NULL) |
| 3846 | p = eap->nextcmd + STRLEN(eap->nextcmd); |
| 3847 | theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd)); |
| 3848 | if (*p != NUL) |
| 3849 | ++p; |
| 3850 | eap->nextcmd = p; |
| 3851 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3852 | else |
| 3853 | theline = eap->getline( |
| 3854 | #ifdef FEAT_EVAL |
Bram Moolenaar | 3d60ec2 | 2005-01-05 22:19:46 +0000 | [diff] [blame] | 3855 | eap->cstack->cs_looplevel > 0 ? -1 : |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3856 | #endif |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3857 | NUL, eap->cookie, indent); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3858 | lines_left = Rows - 1; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3859 | if (theline == NULL) |
| 3860 | break; |
| 3861 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3862 | /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */ |
| 3863 | if (ex_keep_indent) |
| 3864 | append_indent = indent; |
| 3865 | |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3866 | /* Look for the "." after automatic indent. */ |
| 3867 | vcol = 0; |
| 3868 | for (p = theline; indent > vcol; ++p) |
| 3869 | { |
| 3870 | if (*p == ' ') |
| 3871 | ++vcol; |
| 3872 | else if (*p == TAB) |
| 3873 | vcol += 8 - vcol % 8; |
| 3874 | else |
| 3875 | break; |
| 3876 | } |
| 3877 | if ((p[0] == '.' && p[1] == NUL) |
Bram Moolenaar | eaa48e7 | 2005-06-08 22:07:37 +0000 | [diff] [blame] | 3878 | || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0)) |
| 3879 | == FAIL)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3880 | { |
| 3881 | vim_free(theline); |
| 3882 | break; |
| 3883 | } |
| 3884 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3885 | /* don't use autoindent if nothing was typed. */ |
| 3886 | if (p[0] == NUL) |
| 3887 | theline[0] = NUL; |
| 3888 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3889 | did_undo = TRUE; |
| 3890 | ml_append(lnum, theline, (colnr_T)0, FALSE); |
| 3891 | appended_lines_mark(lnum, 1L); |
| 3892 | |
| 3893 | vim_free(theline); |
| 3894 | ++lnum; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3895 | |
| 3896 | if (empty) |
| 3897 | { |
| 3898 | ml_delete(2L, FALSE); |
| 3899 | empty = FALSE; |
| 3900 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3901 | } |
| 3902 | State = NORMAL; |
| 3903 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3904 | if (eap->forceit) |
| 3905 | curbuf->b_p_ai = !curbuf->b_p_ai; |
| 3906 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3907 | /* "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] | 3908 | * 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] | 3909 | * "end" is set to lnum when something has been appended, otherwise |
| 3910 | * it is the same than "start" -- Acevedo */ |
| 3911 | curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ? |
| 3912 | eap->line2 + 1 : curbuf->b_ml.ml_line_count; |
| 3913 | if (eap->cmdidx != CMD_append) |
| 3914 | --curbuf->b_op_start.lnum; |
| 3915 | curbuf->b_op_end.lnum = (eap->line2 < lnum) |
| 3916 | ? lnum : curbuf->b_op_start.lnum; |
| 3917 | curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
| 3918 | curwin->w_cursor.lnum = lnum; |
| 3919 | check_cursor_lnum(); |
| 3920 | beginline(BL_SOL | BL_FIX); |
| 3921 | |
| 3922 | need_wait_return = FALSE; /* don't use wait_return() now */ |
| 3923 | ex_no_reprint = TRUE; |
| 3924 | } |
| 3925 | |
| 3926 | /* |
| 3927 | * ":change" |
| 3928 | */ |
| 3929 | void |
| 3930 | ex_change(eap) |
| 3931 | exarg_T *eap; |
| 3932 | { |
| 3933 | linenr_T lnum; |
| 3934 | |
| 3935 | if (eap->line2 >= eap->line1 |
| 3936 | && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL) |
| 3937 | return; |
| 3938 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3939 | /* the ! flag toggles autoindent */ |
| 3940 | if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai) |
| 3941 | append_indent = get_indent_lnum(eap->line1); |
| 3942 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3943 | for (lnum = eap->line2; lnum >= eap->line1; --lnum) |
| 3944 | { |
| 3945 | if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */ |
| 3946 | break; |
| 3947 | ml_delete(eap->line1, FALSE); |
| 3948 | } |
| 3949 | deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum)); |
| 3950 | |
| 3951 | /* ":append" on the line above the deleted lines. */ |
| 3952 | eap->line2 = eap->line1; |
| 3953 | ex_append(eap); |
| 3954 | } |
| 3955 | |
| 3956 | void |
| 3957 | ex_z(eap) |
| 3958 | exarg_T *eap; |
| 3959 | { |
| 3960 | char_u *x; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3961 | int bigness; |
| 3962 | char_u *kind; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3963 | int minus = 0; |
| 3964 | linenr_T start, end, curs, i; |
| 3965 | int j; |
| 3966 | linenr_T lnum = eap->line2; |
| 3967 | |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3968 | /* Vi compatible: ":z!" uses display height, without a count uses |
| 3969 | * 'scroll' */ |
| 3970 | if (eap->forceit) |
| 3971 | bigness = curwin->w_height; |
| 3972 | else if (firstwin == lastwin) |
| 3973 | bigness = curwin->w_p_scr * 2; |
| 3974 | else |
| 3975 | bigness = curwin->w_height - 3; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3976 | if (bigness < 1) |
| 3977 | bigness = 1; |
| 3978 | |
| 3979 | x = eap->arg; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3980 | kind = x; |
| 3981 | if (*kind == '-' || *kind == '+' || *kind == '=' |
| 3982 | || *kind == '^' || *kind == '.') |
| 3983 | ++x; |
| 3984 | while (*x == '-' || *x == '+') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3985 | ++x; |
| 3986 | |
| 3987 | if (*x != 0) |
| 3988 | { |
| 3989 | if (!VIM_ISDIGIT(*x)) |
| 3990 | { |
| 3991 | EMSG(_("E144: non-numeric argument to :z")); |
| 3992 | return; |
| 3993 | } |
| 3994 | else |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3995 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3996 | bigness = atoi((char *)x); |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3997 | p_window = bigness; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3998 | if (*kind == '=') |
| 3999 | bigness += 2; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4000 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4001 | } |
| 4002 | |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4003 | /* the number of '-' and '+' multiplies the distance */ |
| 4004 | if (*kind == '-' || *kind == '+') |
| 4005 | for (x = kind + 1; *x == *kind; ++x) |
| 4006 | ; |
| 4007 | |
| 4008 | switch (*kind) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4009 | { |
| 4010 | case '-': |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 4011 | start = lnum - bigness * (linenr_T)(x - kind); |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4012 | end = start + bigness; |
| 4013 | curs = end; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4014 | break; |
| 4015 | |
| 4016 | case '=': |
Bram Moolenaar | 2a8d1f8 | 2005-02-05 21:43:56 +0000 | [diff] [blame] | 4017 | start = lnum - (bigness + 1) / 2 + 1; |
| 4018 | end = lnum + (bigness + 1) / 2 - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4019 | curs = lnum; |
| 4020 | minus = 1; |
| 4021 | break; |
| 4022 | |
| 4023 | case '^': |
| 4024 | start = lnum - bigness * 2; |
| 4025 | end = lnum - bigness; |
| 4026 | curs = lnum - bigness; |
| 4027 | break; |
| 4028 | |
| 4029 | case '.': |
Bram Moolenaar | 2a8d1f8 | 2005-02-05 21:43:56 +0000 | [diff] [blame] | 4030 | start = lnum - (bigness + 1) / 2 + 1; |
| 4031 | end = lnum + (bigness + 1) / 2 - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4032 | curs = end; |
| 4033 | break; |
| 4034 | |
| 4035 | default: /* '+' */ |
| 4036 | start = lnum; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4037 | if (*kind == '+') |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 4038 | start += bigness * (linenr_T)(x - kind - 1) + 1; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4039 | else if (eap->addr_count == 0) |
| 4040 | ++start; |
| 4041 | end = start + bigness - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4042 | curs = end; |
| 4043 | break; |
| 4044 | } |
| 4045 | |
| 4046 | if (start < 1) |
| 4047 | start = 1; |
| 4048 | |
| 4049 | if (end > curbuf->b_ml.ml_line_count) |
| 4050 | end = curbuf->b_ml.ml_line_count; |
| 4051 | |
| 4052 | if (curs > curbuf->b_ml.ml_line_count) |
| 4053 | curs = curbuf->b_ml.ml_line_count; |
| 4054 | |
| 4055 | for (i = start; i <= end; i++) |
| 4056 | { |
| 4057 | if (minus && i == lnum) |
| 4058 | { |
| 4059 | msg_putchar('\n'); |
| 4060 | |
| 4061 | for (j = 1; j < Columns; j++) |
| 4062 | msg_putchar('-'); |
| 4063 | } |
| 4064 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4065 | print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4066 | |
| 4067 | if (minus && i == lnum) |
| 4068 | { |
| 4069 | msg_putchar('\n'); |
| 4070 | |
| 4071 | for (j = 1; j < Columns; j++) |
| 4072 | msg_putchar('-'); |
| 4073 | } |
| 4074 | } |
| 4075 | |
| 4076 | curwin->w_cursor.lnum = curs; |
| 4077 | ex_no_reprint = TRUE; |
| 4078 | } |
| 4079 | |
| 4080 | /* |
| 4081 | * Check if the restricted flag is set. |
| 4082 | * If so, give an error message and return TRUE. |
| 4083 | * Otherwise, return FALSE. |
| 4084 | */ |
| 4085 | int |
| 4086 | check_restricted() |
| 4087 | { |
| 4088 | if (restricted) |
| 4089 | { |
| 4090 | EMSG(_("E145: Shell commands not allowed in rvim")); |
| 4091 | return TRUE; |
| 4092 | } |
| 4093 | return FALSE; |
| 4094 | } |
| 4095 | |
| 4096 | /* |
| 4097 | * Check if the secure flag is set (.exrc or .vimrc in current directory). |
| 4098 | * If so, give an error message and return TRUE. |
| 4099 | * Otherwise, return FALSE. |
| 4100 | */ |
| 4101 | int |
| 4102 | check_secure() |
| 4103 | { |
| 4104 | if (secure) |
| 4105 | { |
| 4106 | secure = 2; |
| 4107 | EMSG(_(e_curdir)); |
| 4108 | return TRUE; |
| 4109 | } |
| 4110 | #ifdef HAVE_SANDBOX |
| 4111 | /* |
| 4112 | * In the sandbox more things are not allowed, including the things |
| 4113 | * disallowed in secure mode. |
| 4114 | */ |
| 4115 | if (sandbox != 0) |
| 4116 | { |
| 4117 | EMSG(_(e_sandbox)); |
| 4118 | return TRUE; |
| 4119 | } |
| 4120 | #endif |
| 4121 | return FALSE; |
| 4122 | } |
| 4123 | |
| 4124 | static char_u *old_sub = NULL; /* previous substitute pattern */ |
| 4125 | static int global_need_beginline; /* call beginline() after ":g" */ |
| 4126 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4127 | /* do_sub() |
| 4128 | * |
| 4129 | * Perform a substitution from line eap->line1 to line eap->line2 using the |
| 4130 | * command pointed to by eap->arg which should be of the form: |
| 4131 | * |
| 4132 | * /pattern/substitution/{flags} |
| 4133 | * |
| 4134 | * The usual escapes are supported as described in the regexp docs. |
| 4135 | */ |
| 4136 | void |
| 4137 | do_sub(eap) |
| 4138 | exarg_T *eap; |
| 4139 | { |
| 4140 | linenr_T lnum; |
| 4141 | long i = 0; |
| 4142 | regmmatch_T regmatch; |
| 4143 | static int do_all = FALSE; /* do multiple substitutions per line */ |
| 4144 | static int do_ask = FALSE; /* ask for confirmation */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4145 | static int do_count = FALSE; /* count only */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4146 | static int do_error = TRUE; /* if false, ignore errors */ |
| 4147 | static int do_print = FALSE; /* print last line with subs. */ |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4148 | static int do_list = FALSE; /* list last line with subs. */ |
| 4149 | static int do_number = FALSE; /* list last line with line nr*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4150 | static int do_ic = 0; /* ignore case flag */ |
| 4151 | char_u *pat = NULL, *sub = NULL; /* init for GCC */ |
| 4152 | int delimiter; |
| 4153 | int sublen; |
| 4154 | int got_quit = FALSE; |
| 4155 | int got_match = FALSE; |
| 4156 | int temp; |
| 4157 | int which_pat; |
| 4158 | char_u *cmd; |
| 4159 | int save_State; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4160 | linenr_T first_line = 0; /* first changed line */ |
| 4161 | linenr_T last_line= 0; /* below last changed line AFTER the |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4162 | * change */ |
| 4163 | linenr_T old_line_count = curbuf->b_ml.ml_line_count; |
| 4164 | linenr_T line2; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4165 | long nmatch; /* number of lines in match */ |
| 4166 | linenr_T sub_firstlnum; /* nr of first sub line */ |
| 4167 | char_u *sub_firstline; /* allocated copy of first sub line */ |
| 4168 | int endcolumn = FALSE; /* cursor in last column when done */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4169 | pos_T old_cursor = curwin->w_cursor; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4170 | |
| 4171 | cmd = eap->arg; |
| 4172 | if (!global_busy) |
| 4173 | { |
| 4174 | sub_nsubs = 0; |
| 4175 | sub_nlines = 0; |
| 4176 | } |
| 4177 | |
| 4178 | #ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */ |
| 4179 | if (p_altkeymap && curwin->w_p_rl) |
| 4180 | lrF_sub(cmd); |
| 4181 | #endif |
| 4182 | |
| 4183 | if (eap->cmdidx == CMD_tilde) |
| 4184 | which_pat = RE_LAST; /* use last used regexp */ |
| 4185 | else |
| 4186 | which_pat = RE_SUBST; /* use last substitute regexp */ |
| 4187 | |
| 4188 | /* new pattern and substitution */ |
| 4189 | if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd) |
| 4190 | && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL) |
| 4191 | { |
| 4192 | /* don't accept alphanumeric for separator */ |
| 4193 | if (isalpha(*cmd)) |
| 4194 | { |
| 4195 | EMSG(_("E146: Regular expressions can't be delimited by letters")); |
| 4196 | return; |
| 4197 | } |
| 4198 | /* |
| 4199 | * undocumented vi feature: |
| 4200 | * "\/sub/" and "\?sub?" use last used search pattern (almost like |
| 4201 | * //sub/r). "\&sub&" use last substitute pattern (like //sub/). |
| 4202 | */ |
| 4203 | if (*cmd == '\\') |
| 4204 | { |
| 4205 | ++cmd; |
| 4206 | if (vim_strchr((char_u *)"/?&", *cmd) == NULL) |
| 4207 | { |
| 4208 | EMSG(_(e_backslash)); |
| 4209 | return; |
| 4210 | } |
| 4211 | if (*cmd != '&') |
| 4212 | which_pat = RE_SEARCH; /* use last '/' pattern */ |
| 4213 | pat = (char_u *)""; /* empty search pattern */ |
| 4214 | delimiter = *cmd++; /* remember delimiter character */ |
| 4215 | } |
| 4216 | else /* find the end of the regexp */ |
| 4217 | { |
| 4218 | which_pat = RE_LAST; /* use last used regexp */ |
| 4219 | delimiter = *cmd++; /* remember delimiter character */ |
| 4220 | pat = cmd; /* remember start of search pat */ |
| 4221 | cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg); |
| 4222 | if (cmd[0] == delimiter) /* end delimiter found */ |
| 4223 | *cmd++ = NUL; /* replace it with a NUL */ |
| 4224 | } |
| 4225 | |
| 4226 | /* |
| 4227 | * Small incompatibility: vi sees '\n' as end of the command, but in |
| 4228 | * Vim we want to use '\n' to find/substitute a NUL. |
| 4229 | */ |
| 4230 | sub = cmd; /* remember the start of the substitution */ |
| 4231 | |
| 4232 | while (cmd[0]) |
| 4233 | { |
| 4234 | if (cmd[0] == delimiter) /* end delimiter found */ |
| 4235 | { |
| 4236 | *cmd++ = NUL; /* replace it with a NUL */ |
| 4237 | break; |
| 4238 | } |
| 4239 | if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */ |
| 4240 | ++cmd; |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4241 | mb_ptr_adv(cmd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4242 | } |
| 4243 | |
| 4244 | if (!eap->skip) |
| 4245 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4246 | /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */ |
| 4247 | if (STRCMP(sub, "%") == 0 |
| 4248 | && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL) |
| 4249 | { |
| 4250 | if (old_sub == NULL) /* there is no previous command */ |
| 4251 | { |
| 4252 | EMSG(_(e_nopresub)); |
| 4253 | return; |
| 4254 | } |
| 4255 | sub = old_sub; |
| 4256 | } |
| 4257 | else |
| 4258 | { |
| 4259 | vim_free(old_sub); |
| 4260 | old_sub = vim_strsave(sub); |
| 4261 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4262 | } |
| 4263 | } |
| 4264 | else if (!eap->skip) /* use previous pattern and substitution */ |
| 4265 | { |
| 4266 | if (old_sub == NULL) /* there is no previous command */ |
| 4267 | { |
| 4268 | EMSG(_(e_nopresub)); |
| 4269 | return; |
| 4270 | } |
| 4271 | pat = NULL; /* search_regcomp() will use previous pattern */ |
| 4272 | sub = old_sub; |
Bram Moolenaar | b11bd7e | 2005-02-07 22:05:52 +0000 | [diff] [blame] | 4273 | |
| 4274 | /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the |
| 4275 | * last column after using "$". */ |
| 4276 | endcolumn = (curwin->w_curswant == MAXCOL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4277 | } |
| 4278 | |
| 4279 | /* |
| 4280 | * Find trailing options. When '&' is used, keep old options. |
| 4281 | */ |
| 4282 | if (*cmd == '&') |
| 4283 | ++cmd; |
| 4284 | else |
| 4285 | { |
| 4286 | if (!p_ed) |
| 4287 | { |
| 4288 | if (p_gd) /* default is global on */ |
| 4289 | do_all = TRUE; |
| 4290 | else |
| 4291 | do_all = FALSE; |
| 4292 | do_ask = FALSE; |
| 4293 | } |
| 4294 | do_error = TRUE; |
| 4295 | do_print = FALSE; |
Bram Moolenaar | cc016f5 | 2005-12-10 20:23:46 +0000 | [diff] [blame] | 4296 | do_count = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4297 | do_ic = 0; |
| 4298 | } |
| 4299 | while (*cmd) |
| 4300 | { |
| 4301 | /* |
| 4302 | * Note that 'g' and 'c' are always inverted, also when p_ed is off. |
| 4303 | * 'r' is never inverted. |
| 4304 | */ |
| 4305 | if (*cmd == 'g') |
| 4306 | do_all = !do_all; |
| 4307 | else if (*cmd == 'c') |
| 4308 | do_ask = !do_ask; |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4309 | else if (*cmd == 'n') |
| 4310 | do_count = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4311 | else if (*cmd == 'e') |
| 4312 | do_error = !do_error; |
| 4313 | else if (*cmd == 'r') /* use last used regexp */ |
| 4314 | which_pat = RE_LAST; |
| 4315 | else if (*cmd == 'p') |
| 4316 | do_print = TRUE; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4317 | else if (*cmd == '#') |
| 4318 | { |
| 4319 | do_print = TRUE; |
| 4320 | do_number = TRUE; |
| 4321 | } |
| 4322 | else if (*cmd == 'l') |
| 4323 | { |
| 4324 | do_print = TRUE; |
| 4325 | do_list = TRUE; |
| 4326 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4327 | else if (*cmd == 'i') /* ignore case */ |
| 4328 | do_ic = 'i'; |
| 4329 | else if (*cmd == 'I') /* don't ignore case */ |
| 4330 | do_ic = 'I'; |
| 4331 | else |
| 4332 | break; |
| 4333 | ++cmd; |
| 4334 | } |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4335 | if (do_count) |
| 4336 | do_ask = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4337 | |
| 4338 | /* |
| 4339 | * check for a trailing count |
| 4340 | */ |
| 4341 | cmd = skipwhite(cmd); |
| 4342 | if (VIM_ISDIGIT(*cmd)) |
| 4343 | { |
| 4344 | i = getdigits(&cmd); |
| 4345 | if (i <= 0 && !eap->skip && do_error) |
| 4346 | { |
| 4347 | EMSG(_(e_zerocount)); |
| 4348 | return; |
| 4349 | } |
| 4350 | eap->line1 = eap->line2; |
| 4351 | eap->line2 += i - 1; |
| 4352 | if (eap->line2 > curbuf->b_ml.ml_line_count) |
| 4353 | eap->line2 = curbuf->b_ml.ml_line_count; |
| 4354 | } |
| 4355 | |
| 4356 | /* |
| 4357 | * check for trailing command or garbage |
| 4358 | */ |
| 4359 | cmd = skipwhite(cmd); |
| 4360 | if (*cmd && *cmd != '"') /* if not end-of-line or comment */ |
| 4361 | { |
| 4362 | eap->nextcmd = check_nextcmd(cmd); |
| 4363 | if (eap->nextcmd == NULL) |
| 4364 | { |
| 4365 | EMSG(_(e_trailing)); |
| 4366 | return; |
| 4367 | } |
| 4368 | } |
| 4369 | |
| 4370 | if (eap->skip) /* not executing commands, only parsing */ |
| 4371 | return; |
| 4372 | |
Bram Moolenaar | 61660ea | 2006-04-07 21:40:07 +0000 | [diff] [blame] | 4373 | if (!do_count && !curbuf->b_p_ma) |
| 4374 | { |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 4375 | /* Substitution is not allowed in non-'modifiable' buffer */ |
Bram Moolenaar | 61660ea | 2006-04-07 21:40:07 +0000 | [diff] [blame] | 4376 | EMSG(_(e_modifiable)); |
| 4377 | return; |
| 4378 | } |
| 4379 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4380 | if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, ®match) == FAIL) |
| 4381 | { |
| 4382 | if (do_error) |
| 4383 | EMSG(_(e_invcmd)); |
| 4384 | return; |
| 4385 | } |
| 4386 | |
| 4387 | /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */ |
| 4388 | if (do_ic == 'i') |
| 4389 | regmatch.rmm_ic = TRUE; |
| 4390 | else if (do_ic == 'I') |
| 4391 | regmatch.rmm_ic = FALSE; |
| 4392 | |
| 4393 | sub_firstline = NULL; |
| 4394 | |
| 4395 | /* |
| 4396 | * ~ in the substitute pattern is replaced with the old pattern. |
| 4397 | * We do it here once to avoid it to be replaced over and over again. |
| 4398 | * But don't do it when it starts with "\=", then it's an expression. |
| 4399 | */ |
| 4400 | if (!(sub[0] == '\\' && sub[1] == '=')) |
| 4401 | sub = regtilde(sub, p_magic); |
| 4402 | |
| 4403 | /* |
| 4404 | * Check for a match on each line. |
| 4405 | */ |
| 4406 | line2 = eap->line2; |
| 4407 | for (lnum = eap->line1; lnum <= line2 && !(got_quit |
| 4408 | #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) |
| 4409 | || aborting() |
| 4410 | #endif |
| 4411 | ); ++lnum) |
| 4412 | { |
| 4413 | sub_firstlnum = lnum; |
| 4414 | nmatch = vim_regexec_multi(®match, curwin, curbuf, lnum, (colnr_T)0); |
| 4415 | if (nmatch) |
| 4416 | { |
| 4417 | colnr_T copycol; |
| 4418 | colnr_T matchcol; |
| 4419 | colnr_T prev_matchcol = MAXCOL; |
| 4420 | char_u *new_end, *new_start = NULL; |
| 4421 | unsigned new_start_len = 0; |
| 4422 | char_u *p1; |
| 4423 | int did_sub = FALSE; |
| 4424 | int lastone; |
| 4425 | unsigned len, needed_len; |
| 4426 | long nmatch_tl = 0; /* nr of lines matched below lnum */ |
| 4427 | int do_again; /* do it again after joining lines */ |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 4428 | int skip_match = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4429 | |
| 4430 | /* |
| 4431 | * The new text is build up step by step, to avoid too much |
| 4432 | * copying. There are these pieces: |
| 4433 | * sub_firstline The old text, unmodifed. |
| 4434 | * copycol Column in the old text where we started |
| 4435 | * looking for a match; from here old text still |
| 4436 | * needs to be copied to the new text. |
| 4437 | * matchcol Column number of the old text where to look |
| 4438 | * for the next match. It's just after the |
| 4439 | * previous match or one further. |
| 4440 | * prev_matchcol Column just after the previous match (if any). |
| 4441 | * Mostly equal to matchcol, except for the first |
| 4442 | * match and after skipping an empty match. |
| 4443 | * regmatch.*pos Where the pattern matched in the old text. |
| 4444 | * new_start The new text, all that has been produced so |
| 4445 | * far. |
| 4446 | * new_end The new text, where to append new text. |
| 4447 | * |
| 4448 | * lnum The line number where we were looking for the |
| 4449 | * first match in the old line. |
| 4450 | * sub_firstlnum The line number in the buffer where to look |
| 4451 | * for a match. Can be different from "lnum" |
| 4452 | * when the pattern or substitute string contains |
| 4453 | * line breaks. |
| 4454 | * |
| 4455 | * Special situations: |
| 4456 | * - When the substitute string contains a line break, the part up |
| 4457 | * to the line break is inserted in the text, but the copy of |
| 4458 | * the original line is kept. "sub_firstlnum" is adjusted for |
| 4459 | * the inserted lines. |
| 4460 | * - When the matched pattern contains a line break, the old line |
| 4461 | * is taken from the line at the end of the pattern. The lines |
| 4462 | * in the match are deleted later, "sub_firstlnum" is adjusted |
| 4463 | * accordingly. |
| 4464 | * |
| 4465 | * The new text is built up in new_start[]. It has some extra |
| 4466 | * room to avoid using alloc()/free() too often. new_start_len is |
| 4467 | * the lenght of the allocated memory at new_start. |
| 4468 | * |
| 4469 | * Make a copy of the old line, so it won't be taken away when |
| 4470 | * updating the screen or handling a multi-line match. The "old_" |
| 4471 | * pointers point into this copy. |
| 4472 | */ |
| 4473 | sub_firstline = vim_strsave(ml_get(sub_firstlnum)); |
| 4474 | if (sub_firstline == NULL) |
| 4475 | { |
| 4476 | vim_free(new_start); |
| 4477 | goto outofmem; |
| 4478 | } |
| 4479 | copycol = 0; |
| 4480 | matchcol = 0; |
| 4481 | |
| 4482 | /* At first match, remember current cursor position. */ |
| 4483 | if (!got_match) |
| 4484 | { |
| 4485 | setpcmark(); |
| 4486 | got_match = TRUE; |
| 4487 | } |
| 4488 | |
| 4489 | /* |
| 4490 | * Loop until nothing more to replace in this line. |
| 4491 | * 1. Handle match with empty string. |
| 4492 | * 2. If do_ask is set, ask for confirmation. |
| 4493 | * 3. substitute the string. |
| 4494 | * 4. if do_all is set, find next match |
| 4495 | * 5. break if there isn't another match in this line |
| 4496 | */ |
| 4497 | for (;;) |
| 4498 | { |
| 4499 | /* Save the line number of the last change for the final |
| 4500 | * cursor position (just like Vi). */ |
| 4501 | curwin->w_cursor.lnum = lnum; |
| 4502 | do_again = FALSE; |
| 4503 | |
| 4504 | /* |
| 4505 | * 1. Match empty string does not count, except for first |
| 4506 | * match. This reproduces the strange vi behaviour. |
| 4507 | * This also catches endless loops. |
| 4508 | */ |
| 4509 | if (matchcol == prev_matchcol |
| 4510 | && regmatch.endpos[0].lnum == 0 |
| 4511 | && matchcol == regmatch.endpos[0].col) |
| 4512 | { |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 4513 | if (sub_firstline[matchcol] == NUL) |
| 4514 | /* We already were at the end of the line. Don't look |
| 4515 | * for a match in this line again. */ |
| 4516 | skip_match = TRUE; |
| 4517 | else |
| 4518 | ++matchcol; /* search for a match at next column */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4519 | goto skip; |
| 4520 | } |
| 4521 | |
| 4522 | /* Normally we continue searching for a match just after the |
| 4523 | * previous match. */ |
| 4524 | matchcol = regmatch.endpos[0].col; |
| 4525 | prev_matchcol = matchcol; |
| 4526 | |
| 4527 | /* |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4528 | * 2. If do_count is set only increase the counter. |
| 4529 | * If do_ask is set, ask for confirmation. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4530 | */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4531 | if (do_count) |
| 4532 | { |
| 4533 | /* For a multi-line match, put matchcol at the NUL at |
| 4534 | * the end of the line and set nmatch to one, so that |
| 4535 | * we continue looking for a match on the next line. |
| 4536 | * Avoids that ":s/\nB\@=//gc" get stuck. */ |
| 4537 | if (nmatch > 1) |
| 4538 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 4539 | matchcol = (colnr_T)STRLEN(sub_firstline); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4540 | nmatch = 1; |
| 4541 | } |
| 4542 | sub_nsubs++; |
| 4543 | did_sub = TRUE; |
| 4544 | goto skip; |
| 4545 | } |
| 4546 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4547 | if (do_ask) |
| 4548 | { |
| 4549 | /* change State to CONFIRM, so that the mouse works |
| 4550 | * properly */ |
| 4551 | save_State = State; |
| 4552 | State = CONFIRM; |
| 4553 | #ifdef FEAT_MOUSE |
| 4554 | setmouse(); /* disable mouse in xterm */ |
| 4555 | #endif |
| 4556 | curwin->w_cursor.col = regmatch.startpos[0].col; |
| 4557 | |
| 4558 | /* When 'cpoptions' contains "u" don't sync undo when |
| 4559 | * asking for confirmation. */ |
| 4560 | if (vim_strchr(p_cpo, CPO_UNDO) != NULL) |
| 4561 | ++no_u_sync; |
| 4562 | |
| 4563 | /* |
| 4564 | * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed. |
| 4565 | */ |
| 4566 | while (do_ask) |
| 4567 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4568 | if (exmode_active) |
| 4569 | { |
| 4570 | char_u *resp; |
| 4571 | colnr_T sc, ec; |
| 4572 | |
| 4573 | print_line_no_prefix(lnum, FALSE, FALSE); |
| 4574 | |
| 4575 | getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL); |
| 4576 | curwin->w_cursor.col = regmatch.endpos[0].col - 1; |
| 4577 | getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec); |
| 4578 | msg_start(); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4579 | for (i = 0; i < (long)sc; ++i) |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4580 | msg_putchar(' '); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4581 | for ( ; i <= (long)ec; ++i) |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4582 | msg_putchar('^'); |
| 4583 | |
| 4584 | resp = getexmodeline('?', NULL, 0); |
| 4585 | if (resp != NULL) |
| 4586 | { |
| 4587 | i = *resp; |
| 4588 | vim_free(resp); |
| 4589 | } |
| 4590 | } |
| 4591 | else |
| 4592 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4593 | #ifdef FEAT_FOLDING |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4594 | int save_p_fen = curwin->w_p_fen; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4595 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4596 | curwin->w_p_fen = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4597 | #endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4598 | /* Invert the matched string. |
| 4599 | * Remove the inversion afterwards. */ |
| 4600 | temp = RedrawingDisabled; |
| 4601 | RedrawingDisabled = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4602 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4603 | search_match_lines = regmatch.endpos[0].lnum; |
| 4604 | search_match_endcol = regmatch.endpos[0].col; |
| 4605 | highlight_match = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4606 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4607 | update_topline(); |
| 4608 | validate_cursor(); |
Bram Moolenaar | a1956f6 | 2006-03-12 22:18:00 +0000 | [diff] [blame] | 4609 | update_screen(SOME_VALID); |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4610 | highlight_match = FALSE; |
Bram Moolenaar | a1956f6 | 2006-03-12 22:18:00 +0000 | [diff] [blame] | 4611 | redraw_later(SOME_VALID); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4612 | |
| 4613 | #ifdef FEAT_FOLDING |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4614 | curwin->w_p_fen = save_p_fen; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4615 | #endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4616 | if (msg_row == Rows - 1) |
| 4617 | msg_didout = FALSE; /* avoid a scroll-up */ |
| 4618 | msg_starthere(); |
| 4619 | i = msg_scroll; |
| 4620 | msg_scroll = 0; /* truncate msg when |
| 4621 | needed */ |
| 4622 | msg_no_more = TRUE; |
| 4623 | /* write message same highlighting as for |
| 4624 | * wait_return */ |
| 4625 | smsg_attr(hl_attr(HLF_R), |
| 4626 | (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub); |
| 4627 | msg_no_more = FALSE; |
| 4628 | msg_scroll = i; |
| 4629 | showruler(TRUE); |
| 4630 | windgoto(msg_row, msg_col); |
| 4631 | RedrawingDisabled = temp; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4632 | |
| 4633 | #ifdef USE_ON_FLY_SCROLL |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4634 | dont_scroll = FALSE; /* allow scrolling here */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4635 | #endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4636 | ++no_mapping; /* don't map this key */ |
| 4637 | ++allow_keys; /* allow special keys */ |
| 4638 | i = safe_vgetc(); |
| 4639 | --allow_keys; |
| 4640 | --no_mapping; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4641 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4642 | /* clear the question */ |
| 4643 | msg_didout = FALSE; /* don't scroll up */ |
| 4644 | msg_col = 0; |
| 4645 | gotocmdline(TRUE); |
| 4646 | } |
| 4647 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4648 | need_wait_return = FALSE; /* no hit-return prompt */ |
| 4649 | if (i == 'q' || i == ESC || i == Ctrl_C |
| 4650 | #ifdef UNIX |
| 4651 | || i == intr_char |
| 4652 | #endif |
| 4653 | ) |
| 4654 | { |
| 4655 | got_quit = TRUE; |
| 4656 | break; |
| 4657 | } |
| 4658 | if (i == 'n') |
| 4659 | break; |
| 4660 | if (i == 'y') |
| 4661 | break; |
| 4662 | if (i == 'l') |
| 4663 | { |
| 4664 | /* last: replace and then stop */ |
| 4665 | do_all = FALSE; |
| 4666 | line2 = lnum; |
| 4667 | break; |
| 4668 | } |
| 4669 | if (i == 'a') |
| 4670 | { |
| 4671 | do_ask = FALSE; |
| 4672 | break; |
| 4673 | } |
| 4674 | #ifdef FEAT_INS_EXPAND |
| 4675 | if (i == Ctrl_E) |
| 4676 | scrollup_clamp(); |
| 4677 | else if (i == Ctrl_Y) |
| 4678 | scrolldown_clamp(); |
| 4679 | #endif |
| 4680 | } |
| 4681 | State = save_State; |
| 4682 | #ifdef FEAT_MOUSE |
| 4683 | setmouse(); |
| 4684 | #endif |
| 4685 | if (vim_strchr(p_cpo, CPO_UNDO) != NULL) |
| 4686 | --no_u_sync; |
| 4687 | |
| 4688 | if (i == 'n') |
| 4689 | { |
| 4690 | /* For a multi-line match, put matchcol at the NUL at |
| 4691 | * the end of the line and set nmatch to one, so that |
| 4692 | * we continue looking for a match on the next line. |
Bram Moolenaar | c432b50 | 2007-03-15 20:38:26 +0000 | [diff] [blame] | 4693 | * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc" |
| 4694 | * get stuck when pressing 'n'. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4695 | if (nmatch > 1) |
| 4696 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 4697 | matchcol = (colnr_T)STRLEN(sub_firstline); |
Bram Moolenaar | c432b50 | 2007-03-15 20:38:26 +0000 | [diff] [blame] | 4698 | skip_match = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4699 | } |
| 4700 | goto skip; |
| 4701 | } |
| 4702 | if (got_quit) |
| 4703 | break; |
| 4704 | } |
| 4705 | |
| 4706 | /* Move the cursor to the start of the match, so that we can |
| 4707 | * use "\=col("."). */ |
| 4708 | curwin->w_cursor.col = regmatch.startpos[0].col; |
| 4709 | |
| 4710 | /* |
| 4711 | * 3. substitute the string. |
| 4712 | */ |
| 4713 | /* get length of substitution part */ |
| 4714 | sublen = vim_regsub_multi(®match, sub_firstlnum, |
| 4715 | sub, sub_firstline, FALSE, p_magic, TRUE); |
| 4716 | |
Bram Moolenaar | 4463f29 | 2005-09-25 22:20:24 +0000 | [diff] [blame] | 4717 | /* When the match included the "$" of the last line it may |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 4718 | * go beyond the last line of the buffer. */ |
Bram Moolenaar | 4463f29 | 2005-09-25 22:20:24 +0000 | [diff] [blame] | 4719 | if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) |
| 4720 | { |
| 4721 | nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; |
| 4722 | skip_match = TRUE; |
| 4723 | } |
| 4724 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4725 | /* Need room for: |
| 4726 | * - result so far in new_start (not for first sub in line) |
| 4727 | * - original text up to match |
| 4728 | * - length of substituted part |
| 4729 | * - original text after match |
| 4730 | */ |
| 4731 | if (nmatch == 1) |
| 4732 | p1 = sub_firstline; |
| 4733 | else |
| 4734 | { |
| 4735 | p1 = ml_get(sub_firstlnum + nmatch - 1); |
| 4736 | nmatch_tl += nmatch - 1; |
| 4737 | } |
| 4738 | i = regmatch.startpos[0].col - copycol; |
| 4739 | needed_len = i + ((unsigned)STRLEN(p1) - regmatch.endpos[0].col) |
| 4740 | + sublen + 1; |
| 4741 | if (new_start == NULL) |
| 4742 | { |
| 4743 | /* |
| 4744 | * Get some space for a temporary buffer to do the |
| 4745 | * substitution into (and some extra space to avoid |
| 4746 | * too many calls to alloc()/free()). |
| 4747 | */ |
| 4748 | new_start_len = needed_len + 50; |
| 4749 | if ((new_start = alloc_check(new_start_len)) == NULL) |
| 4750 | goto outofmem; |
| 4751 | *new_start = NUL; |
| 4752 | new_end = new_start; |
| 4753 | } |
| 4754 | else |
| 4755 | { |
| 4756 | /* |
| 4757 | * Check if the temporary buffer is long enough to do the |
| 4758 | * substitution into. If not, make it larger (with a bit |
| 4759 | * extra to avoid too many calls to alloc()/free()). |
| 4760 | */ |
| 4761 | len = (unsigned)STRLEN(new_start); |
| 4762 | needed_len += len; |
| 4763 | if (needed_len > new_start_len) |
| 4764 | { |
| 4765 | new_start_len = needed_len + 50; |
| 4766 | if ((p1 = alloc_check(new_start_len)) == NULL) |
| 4767 | { |
| 4768 | vim_free(new_start); |
| 4769 | goto outofmem; |
| 4770 | } |
| 4771 | mch_memmove(p1, new_start, (size_t)(len + 1)); |
| 4772 | vim_free(new_start); |
| 4773 | new_start = p1; |
| 4774 | } |
| 4775 | new_end = new_start + len; |
| 4776 | } |
| 4777 | |
| 4778 | /* |
| 4779 | * copy the text up to the part that matched |
| 4780 | */ |
| 4781 | mch_memmove(new_end, sub_firstline + copycol, (size_t)i); |
| 4782 | new_end += i; |
| 4783 | |
| 4784 | (void)vim_regsub_multi(®match, sub_firstlnum, |
| 4785 | sub, new_end, TRUE, p_magic, TRUE); |
| 4786 | sub_nsubs++; |
| 4787 | did_sub = TRUE; |
| 4788 | |
| 4789 | /* Move the cursor to the start of the line, to avoid that it |
| 4790 | * is beyond the end of the line after the substitution. */ |
| 4791 | curwin->w_cursor.col = 0; |
| 4792 | |
| 4793 | /* For a multi-line match, make a copy of the last matched |
| 4794 | * line and continue in that one. */ |
| 4795 | if (nmatch > 1) |
| 4796 | { |
| 4797 | sub_firstlnum += nmatch - 1; |
| 4798 | vim_free(sub_firstline); |
| 4799 | sub_firstline = vim_strsave(ml_get(sub_firstlnum)); |
| 4800 | /* When going beyond the last line, stop substituting. */ |
| 4801 | if (sub_firstlnum <= line2) |
| 4802 | do_again = TRUE; |
| 4803 | else |
| 4804 | do_all = FALSE; |
| 4805 | } |
| 4806 | |
| 4807 | /* Remember next character to be copied. */ |
| 4808 | copycol = regmatch.endpos[0].col; |
| 4809 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 4810 | if (skip_match) |
| 4811 | { |
| 4812 | /* Already hit end of the buffer, sub_firstlnum is one |
| 4813 | * less than what it ought to be. */ |
| 4814 | vim_free(sub_firstline); |
| 4815 | sub_firstline = vim_strsave((char_u *)""); |
| 4816 | copycol = 0; |
| 4817 | } |
| 4818 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4819 | /* |
| 4820 | * Now the trick is to replace CTRL-M chars with a real line |
| 4821 | * break. This would make it impossible to insert a CTRL-M in |
| 4822 | * the text. The line break can be avoided by preceding the |
| 4823 | * CTRL-M with a backslash. To be able to insert a backslash, |
| 4824 | * they must be doubled in the string and are halved here. |
| 4825 | * That is Vi compatible. |
| 4826 | */ |
| 4827 | for (p1 = new_end; *p1; ++p1) |
| 4828 | { |
| 4829 | if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */ |
| 4830 | mch_memmove(p1, p1 + 1, STRLEN(p1)); |
| 4831 | else if (*p1 == CAR) |
| 4832 | { |
| 4833 | if (u_inssub(lnum) == OK) /* prepare for undo */ |
| 4834 | { |
| 4835 | *p1 = NUL; /* truncate up to the CR */ |
| 4836 | ml_append(lnum - 1, new_start, |
| 4837 | (colnr_T)(p1 - new_start + 1), FALSE); |
| 4838 | mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L); |
| 4839 | if (do_ask) |
| 4840 | appended_lines(lnum - 1, 1L); |
| 4841 | else |
| 4842 | { |
| 4843 | if (first_line == 0) |
| 4844 | first_line = lnum; |
| 4845 | last_line = lnum + 1; |
| 4846 | } |
| 4847 | /* All line numbers increase. */ |
| 4848 | ++sub_firstlnum; |
| 4849 | ++lnum; |
| 4850 | ++line2; |
| 4851 | /* move the cursor to the new line, like Vi */ |
| 4852 | ++curwin->w_cursor.lnum; |
| 4853 | STRCPY(new_start, p1 + 1); /* copy the rest */ |
| 4854 | p1 = new_start - 1; |
| 4855 | } |
| 4856 | } |
| 4857 | #ifdef FEAT_MBYTE |
| 4858 | else if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 4859 | p1 += (*mb_ptr2len)(p1) - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4860 | #endif |
| 4861 | } |
| 4862 | |
| 4863 | /* |
| 4864 | * 4. If do_all is set, find next match. |
| 4865 | * Prevent endless loop with patterns that match empty |
| 4866 | * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g. |
| 4867 | * But ":s/\n/#/" is OK. |
| 4868 | */ |
| 4869 | skip: |
| 4870 | /* We already know that we did the last subst when we are at |
| 4871 | * the end of the line, except that a pattern like |
| 4872 | * "bar\|\nfoo" may match at the NUL. */ |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 4873 | lastone = (skip_match |
| 4874 | || got_int |
| 4875 | || got_quit |
| 4876 | || !(do_all || do_again) |
| 4877 | || (sub_firstline[matchcol] == NUL && nmatch <= 1 |
| 4878 | && !re_multiline(regmatch.regprog))); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4879 | nmatch = -1; |
| 4880 | |
| 4881 | /* |
| 4882 | * Replace the line in the buffer when needed. This is |
| 4883 | * skipped when there are more matches. |
| 4884 | * The check for nmatch_tl is needed for when multi-line |
| 4885 | * matching must replace the lines before trying to do another |
| 4886 | * match, otherwise "\@<=" won't work. |
| 4887 | * When asking the user we like to show the already replaced |
| 4888 | * text, but don't do it when "\<@=" or "\<@!" is used, it |
| 4889 | * changes what matches. |
| 4890 | */ |
| 4891 | if (lastone |
| 4892 | || (do_ask && !re_lookbehind(regmatch.regprog)) |
| 4893 | || nmatch_tl > 0 |
| 4894 | || (nmatch = vim_regexec_multi(®match, curwin, |
| 4895 | curbuf, sub_firstlnum, matchcol)) == 0) |
| 4896 | { |
| 4897 | if (new_start != NULL) |
| 4898 | { |
| 4899 | /* |
| 4900 | * Copy the rest of the line, that didn't match. |
| 4901 | * "matchcol" has to be adjusted, we use the end of |
| 4902 | * the line as reference, because the substitute may |
| 4903 | * have changed the number of characters. Same for |
| 4904 | * "prev_matchcol". |
| 4905 | */ |
| 4906 | STRCAT(new_start, sub_firstline + copycol); |
| 4907 | matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; |
| 4908 | prev_matchcol = (colnr_T)STRLEN(sub_firstline) |
| 4909 | - prev_matchcol; |
| 4910 | |
| 4911 | if (u_savesub(lnum) != OK) |
| 4912 | break; |
| 4913 | ml_replace(lnum, new_start, TRUE); |
| 4914 | |
| 4915 | if (nmatch_tl > 0) |
| 4916 | { |
| 4917 | /* |
| 4918 | * Matched lines have now been substituted and are |
| 4919 | * useless, delete them. The part after the match |
| 4920 | * has been appended to new_start, we don't need |
| 4921 | * it in the buffer. |
| 4922 | */ |
| 4923 | ++lnum; |
| 4924 | if (u_savedel(lnum, nmatch_tl) != OK) |
| 4925 | break; |
| 4926 | for (i = 0; i < nmatch_tl; ++i) |
| 4927 | ml_delete(lnum, (int)FALSE); |
| 4928 | mark_adjust(lnum, lnum + nmatch_tl - 1, |
| 4929 | (long)MAXLNUM, -nmatch_tl); |
| 4930 | if (do_ask) |
| 4931 | deleted_lines(lnum, nmatch_tl); |
| 4932 | --lnum; |
| 4933 | line2 -= nmatch_tl; /* nr of lines decreases */ |
| 4934 | nmatch_tl = 0; |
| 4935 | } |
| 4936 | |
| 4937 | /* When asking, undo is saved each time, must also set |
| 4938 | * changed flag each time. */ |
| 4939 | if (do_ask) |
| 4940 | changed_bytes(lnum, 0); |
| 4941 | else |
| 4942 | { |
| 4943 | if (first_line == 0) |
| 4944 | first_line = lnum; |
| 4945 | last_line = lnum + 1; |
| 4946 | } |
| 4947 | |
| 4948 | sub_firstlnum = lnum; |
| 4949 | vim_free(sub_firstline); /* free the temp buffer */ |
| 4950 | sub_firstline = new_start; |
| 4951 | new_start = NULL; |
| 4952 | matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; |
| 4953 | prev_matchcol = (colnr_T)STRLEN(sub_firstline) |
| 4954 | - prev_matchcol; |
| 4955 | copycol = 0; |
| 4956 | } |
| 4957 | if (nmatch == -1 && !lastone) |
| 4958 | nmatch = vim_regexec_multi(®match, curwin, curbuf, |
| 4959 | sub_firstlnum, matchcol); |
| 4960 | |
| 4961 | /* |
| 4962 | * 5. break if there isn't another match in this line |
| 4963 | */ |
| 4964 | if (nmatch <= 0) |
| 4965 | break; |
| 4966 | } |
| 4967 | |
| 4968 | line_breakcheck(); |
| 4969 | } |
| 4970 | |
| 4971 | if (did_sub) |
| 4972 | ++sub_nlines; |
| 4973 | vim_free(sub_firstline); /* free the copy of the original line */ |
| 4974 | sub_firstline = NULL; |
| 4975 | } |
| 4976 | |
| 4977 | line_breakcheck(); |
| 4978 | } |
| 4979 | |
| 4980 | if (first_line != 0) |
| 4981 | { |
| 4982 | /* Need to subtract the number of added lines from "last_line" to get |
| 4983 | * the line number before the change (same as adding the number of |
| 4984 | * deleted lines). */ |
| 4985 | i = curbuf->b_ml.ml_line_count - old_line_count; |
| 4986 | changed_lines(first_line, 0, last_line - i, i); |
| 4987 | } |
| 4988 | |
| 4989 | outofmem: |
| 4990 | 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] | 4991 | |
| 4992 | /* ":s/pat//n" doesn't move the cursor */ |
| 4993 | if (do_count) |
| 4994 | curwin->w_cursor = old_cursor; |
| 4995 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4996 | if (sub_nsubs) |
| 4997 | { |
| 4998 | /* Set the '[ and '] marks. */ |
| 4999 | curbuf->b_op_start.lnum = eap->line1; |
| 5000 | curbuf->b_op_end.lnum = line2; |
| 5001 | curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
| 5002 | |
| 5003 | if (!global_busy) |
| 5004 | { |
Bram Moolenaar | b11bd7e | 2005-02-07 22:05:52 +0000 | [diff] [blame] | 5005 | if (endcolumn) |
| 5006 | coladvance((colnr_T)MAXCOL); |
| 5007 | else |
| 5008 | beginline(BL_WHITE | BL_FIX); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5009 | if (!do_sub_msg(do_count) && do_ask) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5010 | MSG(""); |
| 5011 | } |
| 5012 | else |
| 5013 | global_need_beginline = TRUE; |
| 5014 | if (do_print) |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 5015 | print_line(curwin->w_cursor.lnum, do_number, do_list); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5016 | } |
| 5017 | else if (!global_busy) |
| 5018 | { |
| 5019 | if (got_int) /* interrupted */ |
| 5020 | EMSG(_(e_interr)); |
| 5021 | else if (got_match) /* did find something but nothing substituted */ |
| 5022 | MSG(""); |
| 5023 | else if (do_error) /* nothing found */ |
| 5024 | EMSG2(_(e_patnotf2), get_search_pat()); |
| 5025 | } |
| 5026 | |
| 5027 | vim_free(regmatch.regprog); |
| 5028 | } |
| 5029 | |
| 5030 | /* |
| 5031 | * Give message for number of substitutions. |
| 5032 | * Can also be used after a ":global" command. |
| 5033 | * Return TRUE if a message was given. |
| 5034 | */ |
Bram Moolenaar | 8aff23a | 2005-08-19 20:40:30 +0000 | [diff] [blame] | 5035 | int |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5036 | do_sub_msg(count_only) |
| 5037 | int count_only; /* used 'n' flag for ":s" */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5038 | { |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5039 | int len = 0; |
| 5040 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5041 | /* |
| 5042 | * Only report substitutions when: |
| 5043 | * - more than 'report' substitutions |
| 5044 | * - command was typed by user, or number of changed lines > 'report' |
| 5045 | * - giving messages is not disabled by 'lazyredraw' |
| 5046 | */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5047 | if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1)) |
| 5048 | || count_only) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5049 | && messaging()) |
| 5050 | { |
| 5051 | if (got_int) |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5052 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5053 | STRCPY(msg_buf, _("(Interrupted) ")); |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 5054 | len = (int)STRLEN(msg_buf); |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5055 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5056 | if (sub_nsubs == 1) |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5057 | vim_snprintf((char *)msg_buf + len, sizeof(msg_buf) - len, |
| 5058 | "%s", count_only ? _("1 match") : _("1 substitution")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5059 | else |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5060 | vim_snprintf((char *)msg_buf + len, sizeof(msg_buf) - len, |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5061 | count_only ? _("%ld matches") : _("%ld substitutions"), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5062 | sub_nsubs); |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 5063 | len = (int)STRLEN(msg_buf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5064 | if (sub_nlines == 1) |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5065 | vim_snprintf((char *)msg_buf + len, sizeof(msg_buf) - len, |
| 5066 | "%s", _(" on 1 line")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5067 | else |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5068 | vim_snprintf((char *)msg_buf + len, sizeof(msg_buf) - len, |
| 5069 | _(" on %ld lines"), (long)sub_nlines); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5070 | if (msg(msg_buf)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5071 | /* save message to display it after redraw */ |
Bram Moolenaar | 238a564 | 2006-02-21 22:12:05 +0000 | [diff] [blame] | 5072 | set_keep_msg(msg_buf, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5073 | return TRUE; |
| 5074 | } |
| 5075 | if (got_int) |
| 5076 | { |
| 5077 | EMSG(_(e_interr)); |
| 5078 | return TRUE; |
| 5079 | } |
| 5080 | return FALSE; |
| 5081 | } |
| 5082 | |
| 5083 | /* |
| 5084 | * Execute a global command of the form: |
| 5085 | * |
| 5086 | * g/pattern/X : execute X on all lines where pattern matches |
| 5087 | * v/pattern/X : execute X on all lines where pattern does not match |
| 5088 | * |
| 5089 | * where 'X' is an EX command |
| 5090 | * |
| 5091 | * The command character (as well as the trailing slash) is optional, and |
| 5092 | * is assumed to be 'p' if missing. |
| 5093 | * |
| 5094 | * This is implemented in two passes: first we scan the file for the pattern and |
| 5095 | * set a mark for each line that (not) matches. secondly we execute the command |
| 5096 | * for each line that has a mark. This is required because after deleting |
| 5097 | * lines we do not know where to search for the next match. |
| 5098 | */ |
| 5099 | void |
| 5100 | ex_global(eap) |
| 5101 | exarg_T *eap; |
| 5102 | { |
| 5103 | linenr_T lnum; /* line number according to old situation */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5104 | int ndone = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5105 | int type; /* first char of cmd: 'v' or 'g' */ |
| 5106 | char_u *cmd; /* command argument */ |
| 5107 | |
| 5108 | char_u delim; /* delimiter, normally '/' */ |
| 5109 | char_u *pat; |
| 5110 | regmmatch_T regmatch; |
| 5111 | int match; |
| 5112 | int which_pat; |
| 5113 | |
| 5114 | if (global_busy) |
| 5115 | { |
| 5116 | EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */ |
| 5117 | return; |
| 5118 | } |
| 5119 | |
| 5120 | if (eap->forceit) /* ":global!" is like ":vglobal" */ |
| 5121 | type = 'v'; |
| 5122 | else |
| 5123 | type = *eap->cmd; |
| 5124 | cmd = eap->arg; |
| 5125 | which_pat = RE_LAST; /* default: use last used regexp */ |
| 5126 | sub_nsubs = 0; |
| 5127 | sub_nlines = 0; |
| 5128 | |
| 5129 | /* |
| 5130 | * undocumented vi feature: |
| 5131 | * "\/" and "\?": use previous search pattern. |
| 5132 | * "\&": use previous substitute pattern. |
| 5133 | */ |
| 5134 | if (*cmd == '\\') |
| 5135 | { |
| 5136 | ++cmd; |
| 5137 | if (vim_strchr((char_u *)"/?&", *cmd) == NULL) |
| 5138 | { |
| 5139 | EMSG(_(e_backslash)); |
| 5140 | return; |
| 5141 | } |
| 5142 | if (*cmd == '&') |
| 5143 | which_pat = RE_SUBST; /* use previous substitute pattern */ |
| 5144 | else |
| 5145 | which_pat = RE_SEARCH; /* use previous search pattern */ |
| 5146 | ++cmd; |
| 5147 | pat = (char_u *)""; |
| 5148 | } |
| 5149 | else if (*cmd == NUL) |
| 5150 | { |
| 5151 | EMSG(_("E148: Regular expression missing from global")); |
| 5152 | return; |
| 5153 | } |
| 5154 | else |
| 5155 | { |
| 5156 | delim = *cmd; /* get the delimiter */ |
| 5157 | if (delim) |
| 5158 | ++cmd; /* skip delimiter if there is one */ |
| 5159 | pat = cmd; /* remember start of pattern */ |
| 5160 | cmd = skip_regexp(cmd, delim, p_magic, &eap->arg); |
| 5161 | if (cmd[0] == delim) /* end delimiter found */ |
| 5162 | *cmd++ = NUL; /* replace it with a NUL */ |
| 5163 | } |
| 5164 | |
| 5165 | #ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */ |
| 5166 | if (p_altkeymap && curwin->w_p_rl) |
| 5167 | lrFswap(pat,0); |
| 5168 | #endif |
| 5169 | |
| 5170 | if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, ®match) == FAIL) |
| 5171 | { |
| 5172 | EMSG(_(e_invcmd)); |
| 5173 | return; |
| 5174 | } |
| 5175 | |
| 5176 | /* |
| 5177 | * pass 1: set marks for each (not) matching line |
| 5178 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5179 | for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum) |
| 5180 | { |
| 5181 | /* a match on this line? */ |
| 5182 | match = vim_regexec_multi(®match, curwin, curbuf, lnum, (colnr_T)0); |
| 5183 | if ((type == 'g' && match) || (type == 'v' && !match)) |
| 5184 | { |
| 5185 | ml_setmarked(lnum); |
| 5186 | ndone++; |
| 5187 | } |
| 5188 | line_breakcheck(); |
| 5189 | } |
| 5190 | |
| 5191 | /* |
| 5192 | * pass 2: execute the command for each line that has been marked |
| 5193 | */ |
| 5194 | if (got_int) |
| 5195 | MSG(_(e_interr)); |
| 5196 | else if (ndone == 0) |
| 5197 | { |
| 5198 | if (type == 'v') |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5199 | smsg((char_u *)_("Pattern found in every line: %s"), pat); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5200 | else |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5201 | smsg((char_u *)_(e_patnotf2), pat); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5202 | } |
| 5203 | else |
| 5204 | global_exe(cmd); |
| 5205 | |
| 5206 | ml_clearmarked(); /* clear rest of the marks */ |
| 5207 | vim_free(regmatch.regprog); |
| 5208 | } |
| 5209 | |
| 5210 | /* |
| 5211 | * Execute "cmd" on lines marked with ml_setmarked(). |
| 5212 | */ |
| 5213 | void |
| 5214 | global_exe(cmd) |
| 5215 | char_u *cmd; |
| 5216 | { |
| 5217 | linenr_T old_lcount; /* b_ml.ml_line_count before the command */ |
| 5218 | linenr_T lnum; /* line number according to old situation */ |
| 5219 | |
| 5220 | /* |
| 5221 | * Set current position only once for a global command. |
| 5222 | * If global_busy is set, setpcmark() will not do anything. |
| 5223 | * If there is an error, global_busy will be incremented. |
| 5224 | */ |
| 5225 | setpcmark(); |
| 5226 | |
| 5227 | /* When the command writes a message, don't overwrite the command. */ |
| 5228 | msg_didout = TRUE; |
| 5229 | |
| 5230 | global_need_beginline = FALSE; |
| 5231 | global_busy = 1; |
| 5232 | old_lcount = curbuf->b_ml.ml_line_count; |
| 5233 | while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1) |
| 5234 | { |
| 5235 | curwin->w_cursor.lnum = lnum; |
| 5236 | curwin->w_cursor.col = 0; |
| 5237 | if (*cmd == NUL || *cmd == '\n') |
| 5238 | do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT); |
| 5239 | else |
| 5240 | do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT); |
| 5241 | ui_breakcheck(); |
| 5242 | } |
| 5243 | |
| 5244 | global_busy = 0; |
| 5245 | if (global_need_beginline) |
| 5246 | beginline(BL_WHITE | BL_FIX); |
| 5247 | else |
| 5248 | check_cursor(); /* cursor may be beyond the end of the line */ |
| 5249 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5250 | /* the cursor may not have moved in the text but a change in a previous |
| 5251 | * line may move it on the screen */ |
| 5252 | changed_line_abv_curs(); |
| 5253 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5254 | /* If it looks like no message was written, allow overwriting the |
| 5255 | * command with the report for number of changes. */ |
| 5256 | if (msg_col == 0 && msg_scrolled == 0) |
| 5257 | msg_didout = FALSE; |
| 5258 | |
Bram Moolenaar | 4566751 | 2007-05-10 19:24:43 +0000 | [diff] [blame] | 5259 | /* If substitutes done, report number of substitutes, otherwise report |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5260 | * number of extra or deleted lines. */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5261 | if (!do_sub_msg(FALSE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5262 | msgmore(curbuf->b_ml.ml_line_count - old_lcount); |
| 5263 | } |
| 5264 | |
| 5265 | #ifdef FEAT_VIMINFO |
| 5266 | int |
| 5267 | read_viminfo_sub_string(virp, force) |
| 5268 | vir_T *virp; |
| 5269 | int force; |
| 5270 | { |
| 5271 | if (old_sub != NULL && force) |
| 5272 | vim_free(old_sub); |
| 5273 | if (force || old_sub == NULL) |
| 5274 | old_sub = viminfo_readstring(virp, 1, TRUE); |
| 5275 | return viminfo_readline(virp); |
| 5276 | } |
| 5277 | |
| 5278 | void |
| 5279 | write_viminfo_sub_string(fp) |
| 5280 | FILE *fp; |
| 5281 | { |
| 5282 | if (get_viminfo_parameter('/') != 0 && old_sub != NULL) |
| 5283 | { |
| 5284 | fprintf(fp, _("\n# Last Substitute String:\n$")); |
| 5285 | viminfo_writestring(fp, old_sub); |
| 5286 | } |
| 5287 | } |
| 5288 | #endif /* FEAT_VIMINFO */ |
| 5289 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5290 | #if defined(EXITFREE) || defined(PROTO) |
| 5291 | void |
| 5292 | free_old_sub() |
| 5293 | { |
| 5294 | vim_free(old_sub); |
| 5295 | } |
| 5296 | #endif |
| 5297 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5298 | #if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO) |
| 5299 | /* |
| 5300 | * Set up for a tagpreview. |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5301 | * Return TRUE when it was created. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5302 | */ |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5303 | int |
Bram Moolenaar | d2cec5b | 2006-03-28 21:08:56 +0000 | [diff] [blame] | 5304 | prepare_tagpreview(undo_sync) |
| 5305 | int undo_sync; /* sync undo when leaving the window */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5306 | { |
| 5307 | win_T *wp; |
| 5308 | |
| 5309 | # ifdef FEAT_GUI |
| 5310 | need_mouse_correct = TRUE; |
| 5311 | # endif |
| 5312 | |
| 5313 | /* |
| 5314 | * If there is already a preview window open, use that one. |
| 5315 | */ |
| 5316 | if (!curwin->w_p_pvw) |
| 5317 | { |
| 5318 | for (wp = firstwin; wp != NULL; wp = wp->w_next) |
| 5319 | if (wp->w_p_pvw) |
| 5320 | break; |
| 5321 | if (wp != NULL) |
Bram Moolenaar | d2cec5b | 2006-03-28 21:08:56 +0000 | [diff] [blame] | 5322 | win_enter(wp, undo_sync); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5323 | else |
| 5324 | { |
| 5325 | /* |
| 5326 | * There is no preview window open yet. Create one. |
| 5327 | */ |
| 5328 | if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0) |
| 5329 | == FAIL) |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5330 | return FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5331 | curwin->w_p_pvw = TRUE; |
| 5332 | curwin->w_p_wfh = TRUE; |
| 5333 | # ifdef FEAT_SCROLLBIND |
| 5334 | curwin->w_p_scb = FALSE; /* don't take over 'scrollbind' */ |
| 5335 | # endif |
| 5336 | # ifdef FEAT_DIFF |
| 5337 | curwin->w_p_diff = FALSE; /* no 'diff' */ |
| 5338 | # endif |
| 5339 | # ifdef FEAT_FOLDING |
| 5340 | curwin->w_p_fdc = 0; /* no 'foldcolumn' */ |
| 5341 | # endif |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5342 | return TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5343 | } |
| 5344 | } |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5345 | return FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5346 | } |
| 5347 | |
| 5348 | #endif |
| 5349 | |
| 5350 | |
| 5351 | /* |
| 5352 | * ":help": open a read-only window on a help file |
| 5353 | */ |
| 5354 | void |
| 5355 | ex_help(eap) |
| 5356 | exarg_T *eap; |
| 5357 | { |
| 5358 | char_u *arg; |
| 5359 | char_u *tag; |
| 5360 | FILE *helpfd; /* file descriptor of help file */ |
| 5361 | int n; |
| 5362 | int i; |
| 5363 | #ifdef FEAT_WINDOWS |
| 5364 | win_T *wp; |
| 5365 | #endif |
| 5366 | int num_matches; |
| 5367 | char_u **matches; |
| 5368 | char_u *p; |
| 5369 | int empty_fnum = 0; |
| 5370 | int alt_fnum = 0; |
| 5371 | buf_T *buf; |
| 5372 | #ifdef FEAT_MULTI_LANG |
| 5373 | int len; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5374 | char_u *lang; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5375 | #endif |
| 5376 | |
| 5377 | if (eap != NULL) |
| 5378 | { |
| 5379 | /* |
| 5380 | * A ":help" command ends at the first LF, or at a '|' that is |
| 5381 | * followed by some text. Set nextcmd to the following command. |
| 5382 | */ |
| 5383 | for (arg = eap->arg; *arg; ++arg) |
| 5384 | { |
| 5385 | if (*arg == '\n' || *arg == '\r' |
| 5386 | || (*arg == '|' && arg[1] != NUL && arg[1] != '|')) |
| 5387 | { |
| 5388 | *arg++ = NUL; |
| 5389 | eap->nextcmd = arg; |
| 5390 | break; |
| 5391 | } |
| 5392 | } |
| 5393 | arg = eap->arg; |
| 5394 | |
| 5395 | if (eap->forceit && *arg == NUL) |
| 5396 | { |
| 5397 | EMSG(_("E478: Don't panic!")); |
| 5398 | return; |
| 5399 | } |
| 5400 | |
| 5401 | if (eap->skip) /* not executing commands */ |
| 5402 | return; |
| 5403 | } |
| 5404 | else |
| 5405 | arg = (char_u *)""; |
| 5406 | |
| 5407 | /* remove trailing blanks */ |
| 5408 | p = arg + STRLEN(arg) - 1; |
| 5409 | while (p > arg && vim_iswhite(*p) && p[-1] != '\\') |
| 5410 | *p-- = NUL; |
| 5411 | |
| 5412 | #ifdef FEAT_MULTI_LANG |
| 5413 | /* Check for a specified language */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5414 | lang = check_help_lang(arg); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5415 | #endif |
| 5416 | |
| 5417 | /* When no argument given go to the index. */ |
| 5418 | if (*arg == NUL) |
| 5419 | arg = (char_u *)"help.txt"; |
| 5420 | |
| 5421 | /* |
| 5422 | * Check if there is a match for the argument. |
| 5423 | */ |
| 5424 | n = find_help_tags(arg, &num_matches, &matches, |
| 5425 | eap != NULL && eap->forceit); |
| 5426 | |
| 5427 | i = 0; |
| 5428 | #ifdef FEAT_MULTI_LANG |
| 5429 | if (n != FAIL && lang != NULL) |
| 5430 | /* Find first item with the requested language. */ |
| 5431 | for (i = 0; i < num_matches; ++i) |
| 5432 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 5433 | len = (int)STRLEN(matches[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5434 | if (len > 3 && matches[i][len - 3] == '@' |
| 5435 | && STRICMP(matches[i] + len - 2, lang) == 0) |
| 5436 | break; |
| 5437 | } |
| 5438 | #endif |
| 5439 | if (i >= num_matches || n == FAIL) |
| 5440 | { |
| 5441 | #ifdef FEAT_MULTI_LANG |
| 5442 | if (lang != NULL) |
| 5443 | EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg); |
| 5444 | else |
| 5445 | #endif |
| 5446 | EMSG2(_("E149: Sorry, no help for %s"), arg); |
| 5447 | if (n != FAIL) |
| 5448 | FreeWild(num_matches, matches); |
| 5449 | return; |
| 5450 | } |
| 5451 | |
| 5452 | /* The first match (in the requested language) is the best match. */ |
| 5453 | tag = vim_strsave(matches[i]); |
| 5454 | FreeWild(num_matches, matches); |
| 5455 | |
| 5456 | #ifdef FEAT_GUI |
| 5457 | need_mouse_correct = TRUE; |
| 5458 | #endif |
| 5459 | |
| 5460 | /* |
| 5461 | * Re-use an existing help window or open a new one. |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5462 | * Always open a new one for ":tab help". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5463 | */ |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5464 | if (!curwin->w_buffer->b_help |
| 5465 | #ifdef FEAT_WINDOWS |
| 5466 | || cmdmod.tab != 0 |
| 5467 | #endif |
| 5468 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5469 | { |
| 5470 | #ifdef FEAT_WINDOWS |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5471 | if (cmdmod.tab != 0) |
| 5472 | wp = NULL; |
| 5473 | else |
| 5474 | for (wp = firstwin; wp != NULL; wp = wp->w_next) |
| 5475 | if (wp->w_buffer != NULL && wp->w_buffer->b_help) |
| 5476 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5477 | if (wp != NULL && wp->w_buffer->b_nwindows > 0) |
| 5478 | win_enter(wp, TRUE); |
| 5479 | else |
| 5480 | #endif |
| 5481 | { |
| 5482 | /* |
| 5483 | * There is no help window yet. |
| 5484 | * Try to open the file specified by the "helpfile" option. |
| 5485 | */ |
| 5486 | if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL) |
| 5487 | { |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5488 | smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5489 | goto erret; |
| 5490 | } |
| 5491 | fclose(helpfd); |
| 5492 | |
| 5493 | #ifdef FEAT_WINDOWS |
| 5494 | /* Split off help window; put it at far top if no position |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5495 | * specified, the current window is vertically split and |
| 5496 | * narrow. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5497 | n = WSP_HELP; |
| 5498 | # ifdef FEAT_VERTSPLIT |
| 5499 | if (cmdmod.split == 0 && curwin->w_width != Columns |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5500 | && curwin->w_width < 80) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5501 | n |= WSP_TOP; |
| 5502 | # endif |
| 5503 | if (win_split(0, n) == FAIL) |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5504 | goto erret; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5505 | #else |
| 5506 | /* use current window */ |
| 5507 | if (!can_abandon(curbuf, FALSE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5508 | goto erret; |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5509 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5510 | |
| 5511 | #ifdef FEAT_WINDOWS |
| 5512 | if (curwin->w_height < p_hh) |
| 5513 | win_setheight((int)p_hh); |
| 5514 | #endif |
| 5515 | |
| 5516 | /* |
| 5517 | * Open help file (do_ecmd() will set b_help flag, readfile() will |
| 5518 | * set b_p_ro flag). |
| 5519 | * Set the alternate file to the previously edited file. |
| 5520 | */ |
| 5521 | alt_fnum = curbuf->b_fnum; |
| 5522 | (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL, |
| 5523 | ECMD_HIDE + ECMD_SET_HELP); |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 5524 | if (!cmdmod.keepalt) |
| 5525 | curwin->w_alt_fnum = alt_fnum; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5526 | empty_fnum = curbuf->b_fnum; |
| 5527 | } |
| 5528 | } |
| 5529 | |
| 5530 | if (!p_im) |
| 5531 | restart_edit = 0; /* don't want insert mode in help file */ |
| 5532 | |
| 5533 | if (tag != NULL) |
| 5534 | do_tag(tag, DT_HELP, 1, FALSE, TRUE); |
| 5535 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 5536 | /* Delete the empty buffer if we're not using it. Careful: autocommands |
| 5537 | * may have jumped to another window, check that the buffer is not in a |
| 5538 | * window. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5539 | if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum) |
| 5540 | { |
| 5541 | buf = buflist_findnr(empty_fnum); |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 5542 | if (buf != NULL && buf->b_nwindows == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5543 | wipe_buffer(buf, TRUE); |
| 5544 | } |
| 5545 | |
| 5546 | /* keep the previous alternate file */ |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 5547 | if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5548 | curwin->w_alt_fnum = alt_fnum; |
| 5549 | |
| 5550 | erret: |
| 5551 | vim_free(tag); |
| 5552 | } |
| 5553 | |
| 5554 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5555 | #if defined(FEAT_MULTI_LANG) || defined(PROTO) |
| 5556 | /* |
| 5557 | * In an argument search for a language specifiers in the form "@xx". |
| 5558 | * Changes the "@" to NUL if found, and returns a pointer to "xx". |
| 5559 | * Returns NULL if not found. |
| 5560 | */ |
| 5561 | char_u * |
| 5562 | check_help_lang(arg) |
| 5563 | char_u *arg; |
| 5564 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 5565 | int len = (int)STRLEN(arg); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5566 | |
| 5567 | if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2]) |
| 5568 | && ASCII_ISALPHA(arg[len - 1])) |
| 5569 | { |
| 5570 | arg[len - 3] = NUL; /* remove the '@' */ |
| 5571 | return arg + len - 2; |
| 5572 | } |
| 5573 | return NULL; |
| 5574 | } |
| 5575 | #endif |
| 5576 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5577 | /* |
| 5578 | * Return a heuristic indicating how well the given string matches. The |
| 5579 | * smaller the number, the better the match. This is the order of priorities, |
| 5580 | * from best match to worst match: |
| 5581 | * - Match with least alpha-numeric characters is better. |
| 5582 | * - Match with least total characters is better. |
| 5583 | * - Match towards the start is better. |
| 5584 | * - Match starting with "+" is worse (feature instead of command) |
| 5585 | * Assumption is made that the matched_string passed has already been found to |
| 5586 | * match some string for which help is requested. webb. |
| 5587 | */ |
| 5588 | int |
| 5589 | help_heuristic(matched_string, offset, wrong_case) |
| 5590 | char_u *matched_string; |
| 5591 | int offset; /* offset for match */ |
| 5592 | int wrong_case; /* no matching case */ |
| 5593 | { |
| 5594 | int num_letters; |
| 5595 | char_u *p; |
| 5596 | |
| 5597 | num_letters = 0; |
| 5598 | for (p = matched_string; *p; p++) |
| 5599 | if (ASCII_ISALNUM(*p)) |
| 5600 | num_letters++; |
| 5601 | |
| 5602 | /* |
| 5603 | * Multiply the number of letters by 100 to give it a much bigger |
| 5604 | * weighting than the number of characters. |
| 5605 | * If there only is a match while ignoring case, add 5000. |
| 5606 | * If the match starts in the middle of a word, add 10000 to put it |
| 5607 | * somewhere in the last half. |
| 5608 | * If the match is more than 2 chars from the start, multiply by 200 to |
| 5609 | * put it after matches at the start. |
| 5610 | */ |
| 5611 | if (ASCII_ISALNUM(matched_string[offset]) && offset > 0 |
| 5612 | && ASCII_ISALNUM(matched_string[offset - 1])) |
| 5613 | offset += 10000; |
| 5614 | else if (offset > 2) |
| 5615 | offset *= 200; |
| 5616 | if (wrong_case) |
| 5617 | offset += 5000; |
| 5618 | /* Features are less interesting than the subjects themselves, but "+" |
| 5619 | * alone is not a feature. */ |
| 5620 | if (matched_string[0] == '+' && matched_string[1] != NUL) |
| 5621 | offset += 100; |
| 5622 | return (int)(100 * num_letters + STRLEN(matched_string) + offset); |
| 5623 | } |
| 5624 | |
| 5625 | /* |
| 5626 | * Compare functions for qsort() below, that checks the help heuristics number |
| 5627 | * that has been put after the tagname by find_tags(). |
| 5628 | */ |
| 5629 | static int |
| 5630 | #ifdef __BORLANDC__ |
| 5631 | _RTLENTRYF |
| 5632 | #endif |
| 5633 | help_compare(s1, s2) |
| 5634 | const void *s1; |
| 5635 | const void *s2; |
| 5636 | { |
| 5637 | char *p1; |
| 5638 | char *p2; |
| 5639 | |
| 5640 | p1 = *(char **)s1 + strlen(*(char **)s1) + 1; |
| 5641 | p2 = *(char **)s2 + strlen(*(char **)s2) + 1; |
| 5642 | return strcmp(p1, p2); |
| 5643 | } |
| 5644 | |
| 5645 | /* |
| 5646 | * Find all help tags matching "arg", sort them and return in matches[], with |
| 5647 | * the number of matches in num_matches. |
| 5648 | * The matches will be sorted with a "best" match algorithm. |
| 5649 | * When "keep_lang" is TRUE try keeping the language of the current buffer. |
| 5650 | */ |
| 5651 | int |
| 5652 | find_help_tags(arg, num_matches, matches, keep_lang) |
| 5653 | char_u *arg; |
| 5654 | int *num_matches; |
| 5655 | char_u ***matches; |
| 5656 | int keep_lang; |
| 5657 | { |
| 5658 | char_u *s, *d; |
| 5659 | int i; |
| 5660 | static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5661 | "/*", "/\\*", "\"*", "**", |
| 5662 | "/\\(\\)", |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 5663 | "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
Bram Moolenaar | f4630b6 | 2005-05-20 21:31:17 +0000 | [diff] [blame] | 5664 | "/\\?", "/\\z(\\)", "\\=", ":s\\=", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5665 | "[count]", "[quotex]", "[range]", |
| 5666 | "[pattern]", "\\|", "\\%$"}; |
| 5667 | static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star", |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5668 | "/star", "/\\\\star", "quotestar", "starstar", |
| 5669 | "/\\\\(\\\\)", |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 5670 | "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
Bram Moolenaar | f4630b6 | 2005-05-20 21:31:17 +0000 | [diff] [blame] | 5671 | "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5672 | "\\[count]", "\\[quotex]", "\\[range]", |
| 5673 | "\\[pattern]", "\\\\bar", "/\\\\%\\$"}; |
| 5674 | int flags; |
| 5675 | |
| 5676 | d = IObuff; /* assume IObuff is long enough! */ |
| 5677 | |
| 5678 | /* |
| 5679 | * Recognize a few exceptions to the rule. Some strings that contain '*' |
| 5680 | * with "star". Otherwise '*' is recognized as a wildcard. |
| 5681 | */ |
| 5682 | for (i = sizeof(mtable) / sizeof(char *); --i >= 0; ) |
| 5683 | if (STRCMP(arg, mtable[i]) == 0) |
| 5684 | { |
| 5685 | STRCPY(d, rtable[i]); |
| 5686 | break; |
| 5687 | } |
| 5688 | |
| 5689 | if (i < 0) /* no match in table */ |
| 5690 | { |
| 5691 | /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched. |
| 5692 | * Also replace "\%^" and "\%(", they match every tag too. |
| 5693 | * Also "\zs", "\z1", etc. |
| 5694 | * Also "\@<", "\@=", "\@<=", etc. |
| 5695 | * And also "\_$" and "\_^". */ |
| 5696 | if (arg[0] == '\\' |
| 5697 | && ((arg[1] != NUL && arg[2] == NUL) |
| 5698 | || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL |
| 5699 | && arg[2] != NUL))) |
| 5700 | { |
| 5701 | STRCPY(d, "/\\\\"); |
| 5702 | STRCPY(d + 3, arg + 1); |
| 5703 | /* Check for "/\\_$", should be "/\\_\$" */ |
| 5704 | if (d[3] == '_' && d[4] == '$') |
| 5705 | STRCPY(d + 4, "\\$"); |
| 5706 | } |
| 5707 | else |
| 5708 | { |
| 5709 | /* replace "[:...:]" with "\[:...:]"; "[+...]" with "\[++...]" */ |
| 5710 | if (arg[0] == '[' && (arg[1] == ':' |
| 5711 | || (arg[1] == '+' && arg[2] == '+'))) |
| 5712 | *d++ = '\\'; |
| 5713 | |
| 5714 | for (s = arg; *s; ++s) |
| 5715 | { |
| 5716 | /* |
| 5717 | * Replace "|" with "bar" and '"' with "quote" to match the name of |
| 5718 | * the tags for these commands. |
| 5719 | * Replace "*" with ".*" and "?" with "." to match command line |
| 5720 | * completion. |
| 5721 | * Insert a backslash before '~', '$' and '.' to avoid their |
| 5722 | * special meaning. |
| 5723 | */ |
| 5724 | if (d - IObuff > IOSIZE - 10) /* getting too long!? */ |
| 5725 | break; |
| 5726 | switch (*s) |
| 5727 | { |
| 5728 | case '|': STRCPY(d, "bar"); |
| 5729 | d += 3; |
| 5730 | continue; |
| 5731 | case '"': STRCPY(d, "quote"); |
| 5732 | d += 5; |
| 5733 | continue; |
| 5734 | case '*': *d++ = '.'; |
| 5735 | break; |
| 5736 | case '?': *d++ = '.'; |
| 5737 | continue; |
| 5738 | case '$': |
| 5739 | case '.': |
| 5740 | case '~': *d++ = '\\'; |
| 5741 | break; |
| 5742 | } |
| 5743 | |
| 5744 | /* |
| 5745 | * Replace "^x" by "CTRL-X". Don't do this for "^_" to make |
| 5746 | * ":help i_^_CTRL-D" work. |
| 5747 | * Insert '-' before and after "CTRL-X" when applicable. |
| 5748 | */ |
| 5749 | if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1]) |
| 5750 | || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL))) |
| 5751 | { |
| 5752 | if (d > IObuff && d[-1] != '_') |
| 5753 | *d++ = '_'; /* prepend a '_' */ |
| 5754 | STRCPY(d, "CTRL-"); |
| 5755 | d += 5; |
| 5756 | if (*s < ' ') |
| 5757 | { |
| 5758 | #ifdef EBCDIC |
| 5759 | *d++ = CtrlChar(*s); |
| 5760 | #else |
| 5761 | *d++ = *s + '@'; |
| 5762 | #endif |
| 5763 | if (d[-1] == '\\') |
| 5764 | *d++ = '\\'; /* double a backslash */ |
| 5765 | } |
| 5766 | else |
| 5767 | *d++ = *++s; |
| 5768 | if (s[1] != NUL && s[1] != '_') |
| 5769 | *d++ = '_'; /* append a '_' */ |
| 5770 | continue; |
| 5771 | } |
| 5772 | else if (*s == '^') /* "^" or "CTRL-^" or "^_" */ |
| 5773 | *d++ = '\\'; |
| 5774 | |
| 5775 | /* |
| 5776 | * Insert a backslash before a backslash after a slash, for search |
| 5777 | * pattern tags: "/\|" --> "/\\|". |
| 5778 | */ |
| 5779 | else if (s[0] == '\\' && s[1] != '\\' |
| 5780 | && *arg == '/' && s == arg + 1) |
| 5781 | *d++ = '\\'; |
| 5782 | |
| 5783 | /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in |
| 5784 | * "CTRL-\_CTRL-N" */ |
| 5785 | if (STRNICMP(s, "CTRL-\\_", 7) == 0) |
| 5786 | { |
| 5787 | STRCPY(d, "CTRL-\\\\"); |
| 5788 | d += 7; |
| 5789 | s += 6; |
| 5790 | } |
| 5791 | |
| 5792 | *d++ = *s; |
| 5793 | |
| 5794 | /* |
| 5795 | * If tag starts with ', toss everything after a second '. Fixes |
| 5796 | * CTRL-] on 'option'. (would include the trailing '.'). |
| 5797 | */ |
| 5798 | if (*s == '\'' && s > arg && *arg == '\'') |
| 5799 | break; |
| 5800 | } |
| 5801 | *d = NUL; |
| 5802 | } |
| 5803 | } |
| 5804 | |
| 5805 | *matches = (char_u **)""; |
| 5806 | *num_matches = 0; |
| 5807 | flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE; |
| 5808 | if (keep_lang) |
| 5809 | flags |= TAG_KEEP_LANG; |
| 5810 | if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK |
| 5811 | && *num_matches > 0) |
| 5812 | /* Sort the matches found on the heuristic number that is after the |
| 5813 | * tag name. */ |
| 5814 | qsort((void *)*matches, (size_t)*num_matches, |
| 5815 | sizeof(char_u *), help_compare); |
| 5816 | return OK; |
| 5817 | } |
| 5818 | |
| 5819 | /* |
| 5820 | * After reading a help file: May cleanup a help buffer when syntax |
| 5821 | * highlighting is not used. |
| 5822 | */ |
| 5823 | void |
| 5824 | fix_help_buffer() |
| 5825 | { |
| 5826 | linenr_T lnum; |
| 5827 | char_u *line; |
| 5828 | int in_example = FALSE; |
| 5829 | int len; |
| 5830 | char_u *p; |
| 5831 | char_u *rt; |
| 5832 | int mustfree; |
| 5833 | |
| 5834 | /* set filetype to "help". */ |
| 5835 | set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL); |
| 5836 | |
| 5837 | #ifdef FEAT_SYN_HL |
| 5838 | if (!syntax_present(curbuf)) |
| 5839 | #endif |
| 5840 | { |
| 5841 | for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) |
| 5842 | { |
| 5843 | line = ml_get_buf(curbuf, lnum, FALSE); |
| 5844 | len = (int)STRLEN(line); |
| 5845 | if (in_example && len > 0 && !vim_iswhite(line[0])) |
| 5846 | { |
| 5847 | /* End of example: non-white or '<' in first column. */ |
| 5848 | if (line[0] == '<') |
| 5849 | { |
| 5850 | /* blank-out a '<' in the first column */ |
| 5851 | line = ml_get_buf(curbuf, lnum, TRUE); |
| 5852 | line[0] = ' '; |
| 5853 | } |
| 5854 | in_example = FALSE; |
| 5855 | } |
| 5856 | if (!in_example && len > 0) |
| 5857 | { |
| 5858 | if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' ')) |
| 5859 | { |
| 5860 | /* blank-out a '>' in the last column (start of example) */ |
| 5861 | line = ml_get_buf(curbuf, lnum, TRUE); |
| 5862 | line[len - 1] = ' '; |
| 5863 | in_example = TRUE; |
| 5864 | } |
| 5865 | else if (line[len - 1] == '~') |
| 5866 | { |
| 5867 | /* blank-out a '~' at the end of line (header marker) */ |
| 5868 | line = ml_get_buf(curbuf, lnum, TRUE); |
| 5869 | line[len - 1] = ' '; |
| 5870 | } |
| 5871 | } |
| 5872 | } |
| 5873 | } |
| 5874 | |
| 5875 | /* |
| 5876 | * In the "help.txt" file, add the locally added help files. |
| 5877 | * This uses the very first line in the help file. |
| 5878 | */ |
| 5879 | if (fnamecmp(gettail(curbuf->b_fname), "help.txt") == 0) |
| 5880 | { |
| 5881 | for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum) |
| 5882 | { |
| 5883 | line = ml_get_buf(curbuf, lnum, FALSE); |
| 5884 | if (strstr((char *)line, "*local-additions*") != NULL) |
| 5885 | { |
| 5886 | /* Go through all directories in 'runtimepath', skipping |
| 5887 | * $VIMRUNTIME. */ |
| 5888 | p = p_rtp; |
| 5889 | while (*p != NUL) |
| 5890 | { |
| 5891 | copy_option_part(&p, NameBuff, MAXPATHL, ","); |
| 5892 | mustfree = FALSE; |
| 5893 | rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree); |
| 5894 | if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME) |
| 5895 | { |
| 5896 | int fcount; |
| 5897 | char_u **fnames; |
| 5898 | FILE *fd; |
| 5899 | char_u *s; |
| 5900 | int fi; |
| 5901 | #ifdef FEAT_MBYTE |
| 5902 | vimconv_T vc; |
| 5903 | char_u *cp; |
| 5904 | #endif |
| 5905 | |
| 5906 | /* Find all "doc/ *.txt" files in this directory. */ |
| 5907 | add_pathsep(NameBuff); |
| 5908 | STRCAT(NameBuff, "doc/*.txt"); |
| 5909 | if (gen_expand_wildcards(1, &NameBuff, &fcount, |
| 5910 | &fnames, EW_FILE|EW_SILENT) == OK |
| 5911 | && fcount > 0) |
| 5912 | { |
| 5913 | for (fi = 0; fi < fcount; ++fi) |
| 5914 | { |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 5915 | fd = mch_fopen((char *)fnames[fi], "r"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5916 | if (fd != NULL) |
| 5917 | { |
| 5918 | vim_fgets(IObuff, IOSIZE, fd); |
| 5919 | if (IObuff[0] == '*' |
| 5920 | && (s = vim_strchr(IObuff + 1, '*')) |
| 5921 | != NULL) |
| 5922 | { |
| 5923 | #ifdef FEAT_MBYTE |
| 5924 | int this_utf = MAYBE; |
| 5925 | #endif |
| 5926 | /* Change tag definition to a |
| 5927 | * reference and remove <CR>/<NL>. */ |
| 5928 | IObuff[0] = '|'; |
| 5929 | *s = '|'; |
| 5930 | while (*s != NUL) |
| 5931 | { |
| 5932 | if (*s == '\r' || *s == '\n') |
| 5933 | *s = NUL; |
| 5934 | #ifdef FEAT_MBYTE |
| 5935 | /* The text is utf-8 when a byte |
| 5936 | * above 127 is found and no |
| 5937 | * illegal byte sequence is found. |
| 5938 | */ |
| 5939 | if (*s >= 0x80 && this_utf != FALSE) |
| 5940 | { |
| 5941 | int l; |
| 5942 | |
| 5943 | this_utf = TRUE; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 5944 | l = utf_ptr2len(s); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5945 | if (l == 1) |
| 5946 | this_utf = FALSE; |
| 5947 | s += l - 1; |
| 5948 | } |
| 5949 | #endif |
| 5950 | ++s; |
| 5951 | } |
| 5952 | #ifdef FEAT_MBYTE |
| 5953 | /* The help file is latin1 or utf-8; |
| 5954 | * conversion to the current |
| 5955 | * 'encoding' may be required. */ |
| 5956 | vc.vc_type = CONV_NONE; |
| 5957 | convert_setup(&vc, (char_u *)( |
| 5958 | this_utf == TRUE ? "utf-8" |
| 5959 | : "latin1"), p_enc); |
| 5960 | if (vc.vc_type == CONV_NONE) |
| 5961 | /* No conversion needed. */ |
| 5962 | cp = IObuff; |
| 5963 | else |
| 5964 | { |
| 5965 | /* Do the conversion. If it fails |
| 5966 | * use the unconverted text. */ |
| 5967 | cp = string_convert(&vc, IObuff, |
| 5968 | NULL); |
| 5969 | if (cp == NULL) |
| 5970 | cp = IObuff; |
| 5971 | } |
| 5972 | convert_setup(&vc, NULL, NULL); |
| 5973 | |
| 5974 | ml_append(lnum, cp, (colnr_T)0, FALSE); |
| 5975 | if (cp != IObuff) |
| 5976 | vim_free(cp); |
| 5977 | #else |
| 5978 | ml_append(lnum, IObuff, (colnr_T)0, |
| 5979 | FALSE); |
| 5980 | #endif |
| 5981 | ++lnum; |
| 5982 | } |
| 5983 | fclose(fd); |
| 5984 | } |
| 5985 | } |
| 5986 | FreeWild(fcount, fnames); |
| 5987 | } |
| 5988 | } |
| 5989 | if (mustfree) |
| 5990 | vim_free(rt); |
| 5991 | } |
| 5992 | break; |
| 5993 | } |
| 5994 | } |
| 5995 | } |
| 5996 | } |
| 5997 | |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 5998 | /* |
| 5999 | * ":exusage" |
| 6000 | */ |
| 6001 | /*ARGSUSED*/ |
| 6002 | void |
| 6003 | ex_exusage(eap) |
| 6004 | exarg_T *eap; |
| 6005 | { |
| 6006 | do_cmdline_cmd((char_u *)"help ex-cmd-index"); |
| 6007 | } |
| 6008 | |
| 6009 | /* |
| 6010 | * ":viusage" |
| 6011 | */ |
| 6012 | /*ARGSUSED*/ |
| 6013 | void |
| 6014 | ex_viusage(eap) |
| 6015 | exarg_T *eap; |
| 6016 | { |
| 6017 | do_cmdline_cmd((char_u *)"help normal-index"); |
| 6018 | } |
| 6019 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6020 | #if defined(FEAT_EX_EXTRA) || defined(PROTO) |
| 6021 | static void helptags_one __ARGS((char_u *dir, char_u *ext, char_u *lang)); |
| 6022 | |
| 6023 | /* |
| 6024 | * ":helptags" |
| 6025 | */ |
| 6026 | void |
| 6027 | ex_helptags(eap) |
| 6028 | exarg_T *eap; |
| 6029 | { |
| 6030 | garray_T ga; |
| 6031 | int i, j; |
| 6032 | int len; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6033 | #ifdef FEAT_MULTI_LANG |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6034 | char_u lang[2]; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6035 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6036 | char_u ext[5]; |
| 6037 | char_u fname[8]; |
| 6038 | int filecount; |
| 6039 | char_u **files; |
| 6040 | |
| 6041 | if (!mch_isdir(eap->arg)) |
| 6042 | { |
| 6043 | EMSG2(_("E150: Not a directory: %s"), eap->arg); |
| 6044 | return; |
| 6045 | } |
| 6046 | |
| 6047 | #ifdef FEAT_MULTI_LANG |
| 6048 | /* Get a list of all files in the directory. */ |
| 6049 | STRCPY(NameBuff, eap->arg); |
| 6050 | add_pathsep(NameBuff); |
| 6051 | STRCAT(NameBuff, "*"); |
| 6052 | if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, |
| 6053 | EW_FILE|EW_SILENT) == FAIL |
| 6054 | || filecount == 0) |
| 6055 | { |
| 6056 | EMSG2("E151: No match: %s", NameBuff); |
| 6057 | return; |
| 6058 | } |
| 6059 | |
| 6060 | /* Go over all files in the directory to find out what languages are |
| 6061 | * present. */ |
| 6062 | ga_init2(&ga, 1, 10); |
| 6063 | for (i = 0; i < filecount; ++i) |
| 6064 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 6065 | len = (int)STRLEN(files[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6066 | if (len > 4) |
| 6067 | { |
| 6068 | if (STRICMP(files[i] + len - 4, ".txt") == 0) |
| 6069 | { |
| 6070 | /* ".txt" -> language "en" */ |
| 6071 | lang[0] = 'e'; |
| 6072 | lang[1] = 'n'; |
| 6073 | } |
| 6074 | else if (files[i][len - 4] == '.' |
| 6075 | && ASCII_ISALPHA(files[i][len - 3]) |
| 6076 | && ASCII_ISALPHA(files[i][len - 2]) |
| 6077 | && TOLOWER_ASC(files[i][len - 1]) == 'x') |
| 6078 | { |
| 6079 | /* ".abx" -> language "ab" */ |
| 6080 | lang[0] = TOLOWER_ASC(files[i][len - 3]); |
| 6081 | lang[1] = TOLOWER_ASC(files[i][len - 2]); |
| 6082 | } |
| 6083 | else |
| 6084 | continue; |
| 6085 | |
| 6086 | /* Did we find this language already? */ |
| 6087 | for (j = 0; j < ga.ga_len; j += 2) |
| 6088 | if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0) |
| 6089 | break; |
| 6090 | if (j == ga.ga_len) |
| 6091 | { |
| 6092 | /* New language, add it. */ |
| 6093 | if (ga_grow(&ga, 2) == FAIL) |
| 6094 | break; |
| 6095 | ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0]; |
| 6096 | ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6097 | } |
| 6098 | } |
| 6099 | } |
| 6100 | |
| 6101 | /* |
| 6102 | * Loop over the found languages to generate a tags file for each one. |
| 6103 | */ |
| 6104 | for (j = 0; j < ga.ga_len; j += 2) |
| 6105 | { |
| 6106 | STRCPY(fname, "tags-xx"); |
| 6107 | fname[5] = ((char_u *)ga.ga_data)[j]; |
| 6108 | fname[6] = ((char_u *)ga.ga_data)[j + 1]; |
| 6109 | if (fname[5] == 'e' && fname[6] == 'n') |
| 6110 | { |
| 6111 | /* English is an exception: use ".txt" and "tags". */ |
| 6112 | fname[4] = NUL; |
| 6113 | STRCPY(ext, ".txt"); |
| 6114 | } |
| 6115 | else |
| 6116 | { |
| 6117 | /* Language "ab" uses ".abx" and "tags-ab". */ |
| 6118 | STRCPY(ext, ".xxx"); |
| 6119 | ext[1] = fname[5]; |
| 6120 | ext[2] = fname[6]; |
| 6121 | } |
| 6122 | helptags_one(eap->arg, ext, fname); |
| 6123 | } |
| 6124 | |
| 6125 | ga_clear(&ga); |
| 6126 | FreeWild(filecount, files); |
| 6127 | |
| 6128 | #else |
| 6129 | /* No language support, just use "*.txt" and "tags". */ |
| 6130 | helptags_one(eap->arg, (char_u *)".txt", (char_u *)"tags"); |
| 6131 | #endif |
| 6132 | } |
| 6133 | |
| 6134 | static void |
| 6135 | helptags_one(dir, ext, tagfname) |
| 6136 | char_u *dir; /* doc directory */ |
| 6137 | char_u *ext; /* suffix, ".txt", ".itx", ".frx", etc. */ |
| 6138 | char_u *tagfname; /* "tags" for English, "tags-it" for Italian. */ |
| 6139 | { |
| 6140 | FILE *fd_tags; |
| 6141 | FILE *fd; |
| 6142 | garray_T ga; |
| 6143 | int filecount; |
| 6144 | char_u **files; |
| 6145 | char_u *p1, *p2; |
| 6146 | int fi; |
| 6147 | char_u *s; |
| 6148 | int i; |
| 6149 | char_u *fname; |
| 6150 | # ifdef FEAT_MBYTE |
| 6151 | int utf8 = MAYBE; |
| 6152 | int this_utf8; |
| 6153 | int firstline; |
| 6154 | int mix = FALSE; /* detected mixed encodings */ |
| 6155 | # endif |
| 6156 | |
| 6157 | /* |
| 6158 | * Find all *.txt files. |
| 6159 | */ |
| 6160 | STRCPY(NameBuff, dir); |
| 6161 | add_pathsep(NameBuff); |
| 6162 | STRCAT(NameBuff, "*"); |
| 6163 | STRCAT(NameBuff, ext); |
| 6164 | if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, |
| 6165 | EW_FILE|EW_SILENT) == FAIL |
| 6166 | || filecount == 0) |
| 6167 | { |
| 6168 | if (!got_int) |
| 6169 | EMSG2("E151: No match: %s", NameBuff); |
| 6170 | return; |
| 6171 | } |
| 6172 | |
| 6173 | /* |
| 6174 | * Open the tags file for writing. |
| 6175 | * Do this before scanning through all the files. |
| 6176 | */ |
| 6177 | STRCPY(NameBuff, dir); |
| 6178 | add_pathsep(NameBuff); |
| 6179 | STRCAT(NameBuff, tagfname); |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 6180 | fd_tags = mch_fopen((char *)NameBuff, "w"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6181 | if (fd_tags == NULL) |
| 6182 | { |
| 6183 | EMSG2(_("E152: Cannot open %s for writing"), NameBuff); |
| 6184 | FreeWild(filecount, files); |
| 6185 | return; |
| 6186 | } |
| 6187 | |
| 6188 | /* |
| 6189 | * If generating tags for "$VIMRUNTIME/doc" add the "help-tags" tag. |
| 6190 | */ |
| 6191 | ga_init2(&ga, (int)sizeof(char_u *), 100); |
| 6192 | if (fullpathcmp((char_u *)"$VIMRUNTIME/doc", dir, FALSE) == FPC_SAME) |
| 6193 | { |
| 6194 | if (ga_grow(&ga, 1) == FAIL) |
| 6195 | got_int = TRUE; |
| 6196 | else |
| 6197 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 6198 | s = alloc(18 + (unsigned)STRLEN(tagfname)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6199 | if (s == NULL) |
| 6200 | got_int = TRUE; |
| 6201 | else |
| 6202 | { |
| 6203 | sprintf((char *)s, "help-tags\t%s\t1\n", tagfname); |
| 6204 | ((char_u **)ga.ga_data)[ga.ga_len] = s; |
| 6205 | ++ga.ga_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6206 | } |
| 6207 | } |
| 6208 | } |
| 6209 | |
| 6210 | /* |
| 6211 | * Go over all the files and extract the tags. |
| 6212 | */ |
| 6213 | for (fi = 0; fi < filecount && !got_int; ++fi) |
| 6214 | { |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 6215 | fd = mch_fopen((char *)files[fi], "r"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6216 | if (fd == NULL) |
| 6217 | { |
| 6218 | EMSG2(_("E153: Unable to open %s for reading"), files[fi]); |
| 6219 | continue; |
| 6220 | } |
| 6221 | fname = gettail(files[fi]); |
| 6222 | |
| 6223 | # ifdef FEAT_MBYTE |
| 6224 | firstline = TRUE; |
| 6225 | # endif |
| 6226 | while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) |
| 6227 | { |
| 6228 | # ifdef FEAT_MBYTE |
| 6229 | if (firstline) |
| 6230 | { |
| 6231 | /* Detect utf-8 file by a non-ASCII char in the first line. */ |
| 6232 | this_utf8 = MAYBE; |
| 6233 | for (s = IObuff; *s != NUL; ++s) |
| 6234 | if (*s >= 0x80) |
| 6235 | { |
| 6236 | int l; |
| 6237 | |
| 6238 | this_utf8 = TRUE; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 6239 | l = utf_ptr2len(s); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6240 | if (l == 1) |
| 6241 | { |
| 6242 | /* Illegal UTF-8 byte sequence. */ |
| 6243 | this_utf8 = FALSE; |
| 6244 | break; |
| 6245 | } |
| 6246 | s += l - 1; |
| 6247 | } |
| 6248 | if (this_utf8 == MAYBE) /* only ASCII characters found */ |
| 6249 | this_utf8 = FALSE; |
| 6250 | if (utf8 == MAYBE) /* first file */ |
| 6251 | utf8 = this_utf8; |
| 6252 | else if (utf8 != this_utf8) |
| 6253 | { |
| 6254 | EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]); |
| 6255 | mix = !got_int; |
| 6256 | got_int = TRUE; |
| 6257 | } |
| 6258 | firstline = FALSE; |
| 6259 | } |
| 6260 | # endif |
| 6261 | p1 = vim_strchr(IObuff, '*'); /* find first '*' */ |
| 6262 | while (p1 != NULL) |
| 6263 | { |
| 6264 | p2 = vim_strchr(p1 + 1, '*'); /* find second '*' */ |
| 6265 | if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */ |
| 6266 | { |
| 6267 | for (s = p1 + 1; s < p2; ++s) |
| 6268 | if (*s == ' ' || *s == '\t' || *s == '|') |
| 6269 | break; |
| 6270 | |
| 6271 | /* |
| 6272 | * Only accept a *tag* when it consists of valid |
| 6273 | * characters, there is white space before it and is |
| 6274 | * followed by a white character or end-of-line. |
| 6275 | */ |
| 6276 | if (s == p2 |
| 6277 | && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t') |
| 6278 | && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL |
| 6279 | || s[1] == '\0')) |
| 6280 | { |
| 6281 | *p2 = '\0'; |
| 6282 | ++p1; |
| 6283 | if (ga_grow(&ga, 1) == FAIL) |
| 6284 | { |
| 6285 | got_int = TRUE; |
| 6286 | break; |
| 6287 | } |
| 6288 | s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2)); |
| 6289 | if (s == NULL) |
| 6290 | { |
| 6291 | got_int = TRUE; |
| 6292 | break; |
| 6293 | } |
| 6294 | ((char_u **)ga.ga_data)[ga.ga_len] = s; |
| 6295 | ++ga.ga_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6296 | sprintf((char *)s, "%s\t%s", p1, fname); |
| 6297 | |
| 6298 | /* find next '*' */ |
| 6299 | p2 = vim_strchr(p2 + 1, '*'); |
| 6300 | } |
| 6301 | } |
| 6302 | p1 = p2; |
| 6303 | } |
| 6304 | line_breakcheck(); |
| 6305 | } |
| 6306 | |
| 6307 | fclose(fd); |
| 6308 | } |
| 6309 | |
| 6310 | FreeWild(filecount, files); |
| 6311 | |
| 6312 | if (!got_int) |
| 6313 | { |
| 6314 | /* |
| 6315 | * Sort the tags. |
| 6316 | */ |
| 6317 | sort_strings((char_u **)ga.ga_data, ga.ga_len); |
| 6318 | |
| 6319 | /* |
| 6320 | * Check for duplicates. |
| 6321 | */ |
| 6322 | for (i = 1; i < ga.ga_len; ++i) |
| 6323 | { |
| 6324 | p1 = ((char_u **)ga.ga_data)[i - 1]; |
| 6325 | p2 = ((char_u **)ga.ga_data)[i]; |
| 6326 | while (*p1 == *p2) |
| 6327 | { |
| 6328 | if (*p2 == '\t') |
| 6329 | { |
| 6330 | *p2 = NUL; |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 6331 | vim_snprintf((char *)NameBuff, MAXPATHL, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6332 | _("E154: Duplicate tag \"%s\" in file %s/%s"), |
| 6333 | ((char_u **)ga.ga_data)[i], dir, p2 + 1); |
| 6334 | EMSG(NameBuff); |
| 6335 | *p2 = '\t'; |
| 6336 | break; |
| 6337 | } |
| 6338 | ++p1; |
| 6339 | ++p2; |
| 6340 | } |
| 6341 | } |
| 6342 | |
| 6343 | # ifdef FEAT_MBYTE |
| 6344 | if (utf8 == TRUE) |
| 6345 | fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n"); |
| 6346 | # endif |
| 6347 | |
| 6348 | /* |
| 6349 | * Write the tags into the file. |
| 6350 | */ |
| 6351 | for (i = 0; i < ga.ga_len; ++i) |
| 6352 | { |
| 6353 | s = ((char_u **)ga.ga_data)[i]; |
| 6354 | if (STRNCMP(s, "help-tags", 9) == 0) |
| 6355 | /* help-tags entry was added in formatted form */ |
| 6356 | fprintf(fd_tags, (char *)s); |
| 6357 | else |
| 6358 | { |
| 6359 | fprintf(fd_tags, "%s\t/*", s); |
| 6360 | for (p1 = s; *p1 != '\t'; ++p1) |
| 6361 | { |
| 6362 | /* insert backslash before '\\' and '/' */ |
| 6363 | if (*p1 == '\\' || *p1 == '/') |
| 6364 | putc('\\', fd_tags); |
| 6365 | putc(*p1, fd_tags); |
| 6366 | } |
| 6367 | fprintf(fd_tags, "*\n"); |
| 6368 | } |
| 6369 | } |
| 6370 | } |
| 6371 | #ifdef FEAT_MBYTE |
| 6372 | if (mix) |
| 6373 | got_int = FALSE; /* continue with other languages */ |
| 6374 | #endif |
| 6375 | |
| 6376 | for (i = 0; i < ga.ga_len; ++i) |
| 6377 | vim_free(((char_u **)ga.ga_data)[i]); |
| 6378 | ga_clear(&ga); |
| 6379 | fclose(fd_tags); /* there is no check for an error... */ |
| 6380 | } |
| 6381 | #endif |
| 6382 | |
| 6383 | #if defined(FEAT_SIGNS) || defined(PROTO) |
| 6384 | |
| 6385 | /* |
| 6386 | * Struct to hold the sign properties. |
| 6387 | */ |
| 6388 | typedef struct sign sign_T; |
| 6389 | |
| 6390 | struct sign |
| 6391 | { |
| 6392 | sign_T *sn_next; /* next sign in list */ |
| 6393 | int sn_typenr; /* type number of sign (negative if not equal |
| 6394 | to name) */ |
| 6395 | char_u *sn_name; /* name of sign */ |
| 6396 | char_u *sn_icon; /* name of pixmap */ |
| 6397 | #ifdef FEAT_SIGN_ICONS |
| 6398 | void *sn_image; /* icon image */ |
| 6399 | #endif |
| 6400 | char_u *sn_text; /* text used instead of pixmap */ |
| 6401 | int sn_line_hl; /* highlight ID for line */ |
| 6402 | int sn_text_hl; /* highlight ID for text */ |
| 6403 | }; |
| 6404 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6405 | static sign_T *first_sign = NULL; |
| 6406 | static int last_sign_typenr = MAX_TYPENR; /* is decremented */ |
| 6407 | |
| 6408 | static void sign_list_defined __ARGS((sign_T *sp)); |
| 6409 | |
| 6410 | /* |
| 6411 | * ":sign" command |
| 6412 | */ |
| 6413 | void |
| 6414 | ex_sign(eap) |
| 6415 | exarg_T *eap; |
| 6416 | { |
| 6417 | char_u *arg = eap->arg; |
| 6418 | char_u *p; |
| 6419 | int idx; |
| 6420 | sign_T *sp; |
| 6421 | sign_T *sp_prev; |
| 6422 | buf_T *buf; |
| 6423 | static char *cmds[] = { |
| 6424 | "define", |
| 6425 | #define SIGNCMD_DEFINE 0 |
| 6426 | "undefine", |
| 6427 | #define SIGNCMD_UNDEFINE 1 |
| 6428 | "list", |
| 6429 | #define SIGNCMD_LIST 2 |
| 6430 | "place", |
| 6431 | #define SIGNCMD_PLACE 3 |
| 6432 | "unplace", |
| 6433 | #define SIGNCMD_UNPLACE 4 |
| 6434 | "jump", |
| 6435 | #define SIGNCMD_JUMP 5 |
| 6436 | #define SIGNCMD_LAST 6 |
| 6437 | }; |
| 6438 | |
| 6439 | /* Parse the subcommand. */ |
| 6440 | p = skiptowhite(arg); |
| 6441 | if (*p != NUL) |
| 6442 | *p++ = NUL; |
| 6443 | for (idx = 0; ; ++idx) |
| 6444 | { |
| 6445 | if (idx == SIGNCMD_LAST) |
| 6446 | { |
| 6447 | EMSG2(_("E160: Unknown sign command: %s"), arg); |
| 6448 | return; |
| 6449 | } |
| 6450 | if (STRCMP(arg, cmds[idx]) == 0) |
| 6451 | break; |
| 6452 | } |
| 6453 | arg = skipwhite(p); |
| 6454 | |
| 6455 | if (idx <= SIGNCMD_LIST) |
| 6456 | { |
| 6457 | /* |
| 6458 | * Define, undefine or list signs. |
| 6459 | */ |
| 6460 | if (idx == SIGNCMD_LIST && *arg == NUL) |
| 6461 | { |
| 6462 | /* ":sign list": list all defined signs */ |
| 6463 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6464 | sign_list_defined(sp); |
| 6465 | } |
| 6466 | else if (*arg == NUL) |
| 6467 | EMSG(_("E156: Missing sign name")); |
| 6468 | else |
| 6469 | { |
| 6470 | p = skiptowhite(arg); |
| 6471 | if (*p != NUL) |
| 6472 | *p++ = NUL; |
| 6473 | sp_prev = NULL; |
| 6474 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6475 | { |
| 6476 | if (STRCMP(sp->sn_name, arg) == 0) |
| 6477 | break; |
| 6478 | sp_prev = sp; |
| 6479 | } |
| 6480 | if (idx == SIGNCMD_DEFINE) |
| 6481 | { |
| 6482 | /* ":sign define {name} ...": define a sign */ |
| 6483 | if (sp == NULL) |
| 6484 | { |
| 6485 | /* Allocate a new sign. */ |
| 6486 | sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T)); |
| 6487 | if (sp == NULL) |
| 6488 | return; |
| 6489 | if (sp_prev == NULL) |
| 6490 | first_sign = sp; |
| 6491 | else |
| 6492 | sp_prev->sn_next = sp; |
| 6493 | sp->sn_name = vim_strnsave(arg, (int)(p - arg)); |
| 6494 | |
| 6495 | /* If the name is a number use that for the typenr, |
| 6496 | * otherwise use a negative number. */ |
| 6497 | if (VIM_ISDIGIT(*arg)) |
| 6498 | sp->sn_typenr = atoi((char *)arg); |
| 6499 | else |
| 6500 | { |
| 6501 | sign_T *lp; |
| 6502 | int start = last_sign_typenr; |
| 6503 | |
| 6504 | for (lp = first_sign; lp != NULL; lp = lp->sn_next) |
| 6505 | { |
| 6506 | if (lp->sn_typenr == last_sign_typenr) |
| 6507 | { |
| 6508 | --last_sign_typenr; |
| 6509 | if (last_sign_typenr == 0) |
| 6510 | last_sign_typenr = MAX_TYPENR; |
| 6511 | if (last_sign_typenr == start) |
| 6512 | { |
| 6513 | EMSG(_("E612: Too many signs defined")); |
| 6514 | return; |
| 6515 | } |
| 6516 | lp = first_sign; |
| 6517 | continue; |
| 6518 | } |
| 6519 | } |
| 6520 | |
| 6521 | sp->sn_typenr = last_sign_typenr--; |
| 6522 | if (last_sign_typenr == 0) |
| 6523 | last_sign_typenr = MAX_TYPENR; /* wrap around */ |
| 6524 | } |
| 6525 | } |
| 6526 | |
| 6527 | /* set values for a defined sign. */ |
| 6528 | for (;;) |
| 6529 | { |
| 6530 | arg = skipwhite(p); |
| 6531 | if (*arg == NUL) |
| 6532 | break; |
| 6533 | p = skiptowhite_esc(arg); |
| 6534 | if (STRNCMP(arg, "icon=", 5) == 0) |
| 6535 | { |
| 6536 | arg += 5; |
| 6537 | vim_free(sp->sn_icon); |
| 6538 | sp->sn_icon = vim_strnsave(arg, (int)(p - arg)); |
| 6539 | backslash_halve(sp->sn_icon); |
| 6540 | #ifdef FEAT_SIGN_ICONS |
| 6541 | if (gui.in_use) |
| 6542 | { |
| 6543 | out_flush(); |
| 6544 | if (sp->sn_image != NULL) |
| 6545 | gui_mch_destroy_sign(sp->sn_image); |
| 6546 | sp->sn_image = gui_mch_register_sign(sp->sn_icon); |
| 6547 | } |
| 6548 | #endif |
| 6549 | } |
| 6550 | else if (STRNCMP(arg, "text=", 5) == 0) |
| 6551 | { |
| 6552 | char_u *s; |
| 6553 | int cells; |
| 6554 | int len; |
| 6555 | |
| 6556 | arg += 5; |
| 6557 | #ifdef FEAT_MBYTE |
| 6558 | /* Count cells and check for non-printable chars */ |
| 6559 | if (has_mbyte) |
| 6560 | { |
| 6561 | cells = 0; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 6562 | for (s = arg; s < p; s += (*mb_ptr2len)(s)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6563 | { |
| 6564 | if (!vim_isprintc((*mb_ptr2char)(s))) |
| 6565 | break; |
| 6566 | cells += (*mb_ptr2cells)(s); |
| 6567 | } |
| 6568 | } |
| 6569 | else |
| 6570 | #endif |
| 6571 | { |
| 6572 | for (s = arg; s < p; ++s) |
| 6573 | if (!vim_isprintc(*s)) |
| 6574 | break; |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 6575 | cells = (int)(s - arg); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6576 | } |
| 6577 | /* Currently must be one or two display cells */ |
| 6578 | if (s != p || cells < 1 || cells > 2) |
| 6579 | { |
| 6580 | *p = NUL; |
| 6581 | EMSG2(_("E239: Invalid sign text: %s"), arg); |
| 6582 | return; |
| 6583 | } |
| 6584 | |
| 6585 | vim_free(sp->sn_text); |
| 6586 | /* Allocate one byte more if we need to pad up |
| 6587 | * with a space. */ |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 6588 | len = (int)(p - arg + ((cells == 1) ? 1 : 0)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6589 | sp->sn_text = vim_strnsave(arg, len); |
| 6590 | |
| 6591 | if (sp->sn_text != NULL && cells == 1) |
| 6592 | STRCPY(sp->sn_text + len - 1, " "); |
| 6593 | } |
| 6594 | else if (STRNCMP(arg, "linehl=", 7) == 0) |
| 6595 | { |
| 6596 | arg += 7; |
| 6597 | sp->sn_line_hl = syn_check_group(arg, (int)(p - arg)); |
| 6598 | } |
| 6599 | else if (STRNCMP(arg, "texthl=", 7) == 0) |
| 6600 | { |
| 6601 | arg += 7; |
| 6602 | sp->sn_text_hl = syn_check_group(arg, (int)(p - arg)); |
| 6603 | } |
| 6604 | else |
| 6605 | { |
| 6606 | EMSG2(_(e_invarg2), arg); |
| 6607 | return; |
| 6608 | } |
| 6609 | } |
| 6610 | } |
| 6611 | else if (sp == NULL) |
| 6612 | EMSG2(_("E155: Unknown sign: %s"), arg); |
| 6613 | else if (idx == SIGNCMD_LIST) |
| 6614 | /* ":sign list {name}" */ |
| 6615 | sign_list_defined(sp); |
| 6616 | else |
| 6617 | { |
| 6618 | /* ":sign undefine {name}" */ |
| 6619 | vim_free(sp->sn_name); |
| 6620 | vim_free(sp->sn_icon); |
| 6621 | #ifdef FEAT_SIGN_ICONS |
| 6622 | if (sp->sn_image != NULL) |
| 6623 | { |
| 6624 | out_flush(); |
| 6625 | gui_mch_destroy_sign(sp->sn_image); |
| 6626 | } |
| 6627 | #endif |
| 6628 | vim_free(sp->sn_text); |
| 6629 | if (sp_prev == NULL) |
| 6630 | first_sign = sp->sn_next; |
| 6631 | else |
| 6632 | sp_prev->sn_next = sp->sn_next; |
| 6633 | vim_free(sp); |
| 6634 | } |
| 6635 | } |
| 6636 | } |
| 6637 | else |
| 6638 | { |
| 6639 | int id = -1; |
| 6640 | linenr_T lnum = -1; |
| 6641 | char_u *sign_name = NULL; |
| 6642 | char_u *arg1; |
| 6643 | |
| 6644 | if (*arg == NUL) |
| 6645 | { |
| 6646 | if (idx == SIGNCMD_PLACE) |
| 6647 | { |
| 6648 | /* ":sign place": list placed signs in all buffers */ |
| 6649 | sign_list_placed(NULL); |
| 6650 | } |
| 6651 | else if (idx == SIGNCMD_UNPLACE) |
| 6652 | { |
| 6653 | /* ":sign unplace": remove placed sign at cursor */ |
| 6654 | id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum); |
| 6655 | if (id > 0) |
| 6656 | { |
| 6657 | buf_delsign(curwin->w_buffer, id); |
| 6658 | update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum); |
| 6659 | } |
| 6660 | else |
| 6661 | EMSG(_("E159: Missing sign number")); |
| 6662 | } |
| 6663 | else |
| 6664 | EMSG(_(e_argreq)); |
| 6665 | return; |
| 6666 | } |
| 6667 | |
| 6668 | if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL) |
| 6669 | { |
| 6670 | /* ":sign unplace *": remove all placed signs */ |
| 6671 | buf_delete_all_signs(); |
| 6672 | return; |
| 6673 | } |
| 6674 | |
| 6675 | /* first arg could be placed sign id */ |
| 6676 | arg1 = arg; |
| 6677 | if (VIM_ISDIGIT(*arg)) |
| 6678 | { |
| 6679 | id = getdigits(&arg); |
| 6680 | if (!vim_iswhite(*arg) && *arg != NUL) |
| 6681 | { |
| 6682 | id = -1; |
| 6683 | arg = arg1; |
| 6684 | } |
| 6685 | else |
| 6686 | { |
| 6687 | arg = skipwhite(arg); |
| 6688 | if (idx == SIGNCMD_UNPLACE && *arg == NUL) |
| 6689 | { |
| 6690 | /* ":sign unplace {id}": remove placed sign by number */ |
| 6691 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 6692 | if ((lnum = buf_delsign(buf, id)) != 0) |
| 6693 | update_debug_sign(buf, lnum); |
| 6694 | return; |
| 6695 | } |
| 6696 | } |
| 6697 | } |
| 6698 | |
| 6699 | /* |
| 6700 | * Check for line={lnum} name={name} and file={fname} or buffer={nr}. |
| 6701 | * Leave "arg" pointing to {fname}. |
| 6702 | */ |
| 6703 | for (;;) |
| 6704 | { |
| 6705 | if (STRNCMP(arg, "line=", 5) == 0) |
| 6706 | { |
| 6707 | arg += 5; |
| 6708 | lnum = atoi((char *)arg); |
| 6709 | arg = skiptowhite(arg); |
| 6710 | } |
| 6711 | else if (STRNCMP(arg, "name=", 5) == 0) |
| 6712 | { |
| 6713 | arg += 5; |
| 6714 | sign_name = arg; |
| 6715 | arg = skiptowhite(arg); |
| 6716 | if (*arg != NUL) |
| 6717 | *arg++ = NUL; |
| 6718 | } |
| 6719 | else if (STRNCMP(arg, "file=", 5) == 0) |
| 6720 | { |
| 6721 | arg += 5; |
| 6722 | buf = buflist_findname(arg); |
| 6723 | break; |
| 6724 | } |
| 6725 | else if (STRNCMP(arg, "buffer=", 7) == 0) |
| 6726 | { |
| 6727 | arg += 7; |
| 6728 | buf = buflist_findnr((int)getdigits(&arg)); |
| 6729 | if (*skipwhite(arg) != NUL) |
| 6730 | EMSG(_(e_trailing)); |
| 6731 | break; |
| 6732 | } |
| 6733 | else |
| 6734 | { |
| 6735 | EMSG(_(e_invarg)); |
| 6736 | return; |
| 6737 | } |
| 6738 | arg = skipwhite(arg); |
| 6739 | } |
| 6740 | |
| 6741 | if (buf == NULL) |
| 6742 | { |
| 6743 | EMSG2(_("E158: Invalid buffer name: %s"), arg); |
| 6744 | } |
| 6745 | else if (id <= 0) |
| 6746 | { |
| 6747 | if (lnum >= 0 || sign_name != NULL) |
| 6748 | EMSG(_(e_invarg)); |
| 6749 | else |
| 6750 | /* ":sign place file={fname}": list placed signs in one file */ |
| 6751 | sign_list_placed(buf); |
| 6752 | } |
| 6753 | else if (idx == SIGNCMD_JUMP) |
| 6754 | { |
| 6755 | /* ":sign jump {id} file={fname}" */ |
| 6756 | if (lnum >= 0 || sign_name != NULL) |
| 6757 | EMSG(_(e_invarg)); |
| 6758 | else if ((lnum = buf_findsign(buf, id)) > 0) |
| 6759 | { /* goto a sign ... */ |
| 6760 | if (buf_jump_open_win(buf) != NULL) |
| 6761 | { /* ... in a current window */ |
| 6762 | curwin->w_cursor.lnum = lnum; |
| 6763 | check_cursor_lnum(); |
| 6764 | beginline(BL_WHITE); |
| 6765 | } |
| 6766 | else |
| 6767 | { /* ... not currently in a window */ |
| 6768 | char_u *cmd; |
| 6769 | |
| 6770 | cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25); |
| 6771 | if (cmd == NULL) |
| 6772 | return; |
| 6773 | sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname); |
| 6774 | do_cmdline_cmd(cmd); |
| 6775 | vim_free(cmd); |
| 6776 | } |
| 6777 | #ifdef FEAT_FOLDING |
| 6778 | foldOpenCursor(); |
| 6779 | #endif |
| 6780 | } |
| 6781 | else |
| 6782 | EMSGN(_("E157: Invalid sign ID: %ld"), id); |
| 6783 | } |
| 6784 | else if (idx == SIGNCMD_UNPLACE) |
| 6785 | { |
| 6786 | /* ":sign unplace {id} file={fname}" */ |
| 6787 | if (lnum >= 0 || sign_name != NULL) |
| 6788 | EMSG(_(e_invarg)); |
| 6789 | else |
| 6790 | { |
| 6791 | lnum = buf_delsign(buf, id); |
| 6792 | update_debug_sign(buf, lnum); |
| 6793 | } |
| 6794 | } |
| 6795 | /* idx == SIGNCMD_PLACE */ |
| 6796 | else if (sign_name != NULL) |
| 6797 | { |
| 6798 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6799 | if (STRCMP(sp->sn_name, sign_name) == 0) |
| 6800 | break; |
| 6801 | if (sp == NULL) |
| 6802 | { |
| 6803 | EMSG2(_("E155: Unknown sign: %s"), sign_name); |
| 6804 | return; |
| 6805 | } |
| 6806 | if (lnum > 0) |
| 6807 | /* ":sign place {id} line={lnum} name={name} file={fname}": |
| 6808 | * place a sign */ |
| 6809 | buf_addsign(buf, id, lnum, sp->sn_typenr); |
| 6810 | else |
| 6811 | /* ":sign place {id} file={fname}": change sign type */ |
| 6812 | lnum = buf_change_sign_type(buf, id, sp->sn_typenr); |
| 6813 | update_debug_sign(buf, lnum); |
| 6814 | } |
| 6815 | else |
| 6816 | EMSG(_(e_invarg)); |
| 6817 | } |
| 6818 | } |
| 6819 | |
| 6820 | #if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
| 6821 | /* |
| 6822 | * Allocate the icons. Called when the GUI has started. Allows defining |
| 6823 | * signs before it starts. |
| 6824 | */ |
| 6825 | void |
| 6826 | sign_gui_started() |
| 6827 | { |
| 6828 | sign_T *sp; |
| 6829 | |
| 6830 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6831 | if (sp->sn_icon != NULL) |
| 6832 | sp->sn_image = gui_mch_register_sign(sp->sn_icon); |
| 6833 | } |
| 6834 | #endif |
| 6835 | |
| 6836 | /* |
| 6837 | * List one sign. |
| 6838 | */ |
| 6839 | static void |
| 6840 | sign_list_defined(sp) |
| 6841 | sign_T *sp; |
| 6842 | { |
| 6843 | char_u *p; |
| 6844 | |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 6845 | smsg((char_u *)"sign %s", sp->sn_name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6846 | if (sp->sn_icon != NULL) |
| 6847 | { |
| 6848 | MSG_PUTS(" icon="); |
| 6849 | msg_outtrans(sp->sn_icon); |
| 6850 | #ifdef FEAT_SIGN_ICONS |
| 6851 | if (sp->sn_image == NULL) |
| 6852 | MSG_PUTS(_(" (NOT FOUND)")); |
| 6853 | #else |
| 6854 | MSG_PUTS(_(" (not supported)")); |
| 6855 | #endif |
| 6856 | } |
| 6857 | if (sp->sn_text != NULL) |
| 6858 | { |
| 6859 | MSG_PUTS(" text="); |
| 6860 | msg_outtrans(sp->sn_text); |
| 6861 | } |
| 6862 | if (sp->sn_line_hl > 0) |
| 6863 | { |
| 6864 | MSG_PUTS(" linehl="); |
| 6865 | p = get_highlight_name(NULL, sp->sn_line_hl - 1); |
| 6866 | if (p == NULL) |
| 6867 | MSG_PUTS("NONE"); |
| 6868 | else |
| 6869 | msg_puts(p); |
| 6870 | } |
| 6871 | if (sp->sn_text_hl > 0) |
| 6872 | { |
| 6873 | MSG_PUTS(" texthl="); |
| 6874 | p = get_highlight_name(NULL, sp->sn_text_hl - 1); |
| 6875 | if (p == NULL) |
| 6876 | MSG_PUTS("NONE"); |
| 6877 | else |
| 6878 | msg_puts(p); |
| 6879 | } |
| 6880 | } |
| 6881 | |
| 6882 | /* |
| 6883 | * Get highlighting attribute for sign "typenr". |
| 6884 | * If "line" is TRUE: line highl, if FALSE: text highl. |
| 6885 | */ |
| 6886 | int |
| 6887 | sign_get_attr(typenr, line) |
| 6888 | int typenr; |
| 6889 | int line; |
| 6890 | { |
| 6891 | sign_T *sp; |
| 6892 | |
| 6893 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6894 | if (sp->sn_typenr == typenr) |
| 6895 | { |
| 6896 | if (line) |
| 6897 | { |
| 6898 | if (sp->sn_line_hl > 0) |
| 6899 | return syn_id2attr(sp->sn_line_hl); |
| 6900 | } |
| 6901 | else |
| 6902 | { |
| 6903 | if (sp->sn_text_hl > 0) |
| 6904 | return syn_id2attr(sp->sn_text_hl); |
| 6905 | } |
| 6906 | break; |
| 6907 | } |
| 6908 | return 0; |
| 6909 | } |
| 6910 | |
| 6911 | /* |
| 6912 | * Get text mark for sign "typenr". |
| 6913 | * Returns NULL if there isn't one. |
| 6914 | */ |
| 6915 | char_u * |
| 6916 | sign_get_text(typenr) |
| 6917 | int typenr; |
| 6918 | { |
| 6919 | sign_T *sp; |
| 6920 | |
| 6921 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6922 | if (sp->sn_typenr == typenr) |
| 6923 | return sp->sn_text; |
| 6924 | return NULL; |
| 6925 | } |
| 6926 | |
| 6927 | #if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
| 6928 | void * |
| 6929 | sign_get_image(typenr) |
| 6930 | int typenr; /* the attribute which may have a sign */ |
| 6931 | { |
| 6932 | sign_T *sp; |
| 6933 | |
| 6934 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6935 | if (sp->sn_typenr == typenr) |
| 6936 | return sp->sn_image; |
| 6937 | return NULL; |
| 6938 | } |
| 6939 | #endif |
| 6940 | |
| 6941 | /* |
| 6942 | * Get the name of a sign by its typenr. |
| 6943 | */ |
| 6944 | char_u * |
| 6945 | sign_typenr2name(typenr) |
| 6946 | int typenr; |
| 6947 | { |
| 6948 | sign_T *sp; |
| 6949 | |
| 6950 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6951 | if (sp->sn_typenr == typenr) |
| 6952 | return sp->sn_name; |
| 6953 | return (char_u *)_("[Deleted]"); |
| 6954 | } |
| 6955 | |
| 6956 | #endif |
| 6957 | |
| 6958 | #if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO) |
| 6959 | /* |
| 6960 | * ":drop" |
| 6961 | * Opens the first argument in a window. When there are two or more arguments |
| 6962 | * the argument list is redefined. |
| 6963 | */ |
| 6964 | void |
| 6965 | ex_drop(eap) |
| 6966 | exarg_T *eap; |
| 6967 | { |
| 6968 | int split = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6969 | win_T *wp; |
| 6970 | buf_T *buf; |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 6971 | # ifdef FEAT_WINDOWS |
| 6972 | tabpage_T *tp; |
| 6973 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6974 | |
| 6975 | /* |
| 6976 | * Check if the first argument is already being edited in a window. If |
| 6977 | * so, jump to that window. |
| 6978 | * We would actually need to check all arguments, but that's complicated |
| 6979 | * and mostly only one file is dropped. |
| 6980 | * This also ignores wildcards, since it is very unlikely the user is |
| 6981 | * editing a file name with a wildcard character. |
| 6982 | */ |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 6983 | set_arglist(eap->arg); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6984 | |
Bram Moolenaar | b01a8b7 | 2007-02-13 02:47:22 +0000 | [diff] [blame] | 6985 | /* |
| 6986 | * Expanding wildcards may result in an empty argument list. E.g. when |
| 6987 | * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we |
| 6988 | * already did an error message for this. |
| 6989 | */ |
| 6990 | if (ARGCOUNT == 0) |
| 6991 | return; |
| 6992 | |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 6993 | # ifdef FEAT_WINDOWS |
| 6994 | if (cmdmod.tab) |
| 6995 | { |
| 6996 | /* ":tab drop file ...": open a tab for each argument that isn't |
| 6997 | * edited in a window yet. It's like ":tab all" but without closing |
| 6998 | * windows or tabs. */ |
| 6999 | ex_all(eap); |
| 7000 | } |
| 7001 | else |
| 7002 | # endif |
| 7003 | { |
| 7004 | /* ":drop file ...": Edit the first argument. Jump to an existing |
| 7005 | * window if possible, edit in current window if the current buffer |
| 7006 | * can be abandoned, otherwise open a new window. */ |
| 7007 | buf = buflist_findnr(ARGLIST[0].ae_fnum); |
| 7008 | |
| 7009 | FOR_ALL_TAB_WINDOWS(tp, wp) |
| 7010 | { |
| 7011 | if (wp->w_buffer == buf) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7012 | { |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7013 | # ifdef FEAT_WINDOWS |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 7014 | goto_tabpage_win(tp, wp); |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7015 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7016 | curwin->w_arg_idx = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7017 | return; |
| 7018 | } |
| 7019 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7020 | |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7021 | /* |
| 7022 | * Check whether the current buffer is changed. If so, we will need |
| 7023 | * to split the current window or data could be lost. |
| 7024 | * Skip the check if the 'hidden' option is set, as in this case the |
| 7025 | * buffer won't be lost. |
| 7026 | */ |
| 7027 | if (!P_HID(curbuf)) |
| 7028 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7029 | # ifdef FEAT_WINDOWS |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7030 | ++emsg_off; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7031 | # endif |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7032 | split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7033 | # ifdef FEAT_WINDOWS |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7034 | --emsg_off; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7035 | # else |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7036 | if (split) |
| 7037 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7038 | # endif |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7039 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7040 | |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7041 | /* Fake a ":sfirst" or ":first" command edit the first argument. */ |
| 7042 | if (split) |
| 7043 | { |
| 7044 | eap->cmdidx = CMD_sfirst; |
| 7045 | eap->cmd[0] = 's'; |
| 7046 | } |
| 7047 | else |
| 7048 | eap->cmdidx = CMD_first; |
| 7049 | ex_rewind(eap); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7050 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7051 | } |
| 7052 | #endif |