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 | 12625ca | 2005-11-25 19:58:47 +0000 | [diff] [blame] | 1775 | if (mch_stat((char *)fname, &st_old) == 0 && getuid() |
| 1776 | && !(st_old.st_uid == getuid() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1777 | ? (st_old.st_mode & 0200) |
| 1778 | : (st_old.st_gid == getgid() |
| 1779 | ? (st_old.st_mode & 0020) |
| 1780 | : (st_old.st_mode & 0002)))) |
| 1781 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 1782 | int tt = msg_didany; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1783 | |
| 1784 | /* avoid a wait_return for this message, it's annoying */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1785 | EMSG2(_("E137: Viminfo file is not writable: %s"), fname); |
| 1786 | msg_didany = tt; |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 1787 | fclose(fp_in); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1788 | goto end; |
| 1789 | } |
| 1790 | #endif |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1791 | #ifdef WIN3264 |
| 1792 | /* Get the file attributes of the existing viminfo file. */ |
| 1793 | perm = mch_getperm(fname); |
| 1794 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1795 | |
| 1796 | /* |
| 1797 | * Make tempname. |
| 1798 | * May try twice: Once normal and once with shortname set, just in |
| 1799 | * case somebody puts his viminfo file in an 8.3 filesystem. |
| 1800 | */ |
| 1801 | for (;;) |
| 1802 | { |
| 1803 | tempname = buf_modname( |
| 1804 | #ifdef UNIX |
| 1805 | shortname, |
| 1806 | #else |
| 1807 | # ifdef SHORT_FNAME |
| 1808 | TRUE, |
| 1809 | # else |
| 1810 | # ifdef FEAT_GUI_W32 |
| 1811 | gui_is_win32s(), |
| 1812 | # else |
| 1813 | FALSE, |
| 1814 | # endif |
| 1815 | # endif |
| 1816 | #endif |
| 1817 | fname, |
| 1818 | #ifdef VMS |
| 1819 | (char_u *)"-tmp", |
| 1820 | #else |
| 1821 | # ifdef RISCOS |
| 1822 | (char_u *)"/tmp", |
| 1823 | # else |
| 1824 | (char_u *)".tmp", |
| 1825 | # endif |
| 1826 | #endif |
| 1827 | FALSE); |
| 1828 | if (tempname == NULL) /* out of memory */ |
| 1829 | break; |
| 1830 | |
| 1831 | /* |
| 1832 | * Check if tempfile already exists. Never overwrite an |
| 1833 | * existing file! |
| 1834 | */ |
| 1835 | if (mch_stat((char *)tempname, &st_new) == 0) |
| 1836 | { |
| 1837 | #ifdef UNIX |
| 1838 | /* |
| 1839 | * Check if tempfile is same as original file. May happen |
| 1840 | * when modname() gave the same file back. E.g. silly |
| 1841 | * link, or file name-length reached. Try again with |
| 1842 | * shortname set. |
| 1843 | */ |
Bram Moolenaar | 12625ca | 2005-11-25 19:58:47 +0000 | [diff] [blame] | 1844 | if (!shortname && st_new.st_dev == st_old.st_dev |
| 1845 | && st_new.st_ino == st_old.st_ino) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1846 | { |
| 1847 | vim_free(tempname); |
| 1848 | tempname = NULL; |
| 1849 | shortname = TRUE; |
| 1850 | continue; |
| 1851 | } |
| 1852 | #endif |
| 1853 | /* |
| 1854 | * Try another name. Change one character, just before |
| 1855 | * the extension. This should also work for an 8.3 |
| 1856 | * file name, when after adding the extension it still is |
| 1857 | * the same file as the original. |
| 1858 | */ |
| 1859 | wp = tempname + STRLEN(tempname) - 5; |
| 1860 | if (wp < gettail(tempname)) /* empty file name? */ |
| 1861 | wp = gettail(tempname); |
| 1862 | for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0; |
| 1863 | --*wp) |
| 1864 | { |
| 1865 | /* |
| 1866 | * They all exist? Must be something wrong! Don't |
| 1867 | * write the viminfo file then. |
| 1868 | */ |
| 1869 | if (*wp == 'a') |
| 1870 | { |
| 1871 | vim_free(tempname); |
| 1872 | tempname = NULL; |
| 1873 | break; |
| 1874 | } |
| 1875 | } |
| 1876 | } |
| 1877 | break; |
| 1878 | } |
| 1879 | |
| 1880 | if (tempname != NULL) |
| 1881 | { |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1882 | #ifdef VMS |
| 1883 | /* fdopen() fails for some reason */ |
Bram Moolenaar | cf03447 | 2006-03-15 23:07:59 +0000 | [diff] [blame] | 1884 | umask_save = umask(077); |
| 1885 | fp_out = mch_fopen((char *)tempname, WRITEBIN); |
| 1886 | (void)umask(umask_save); |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1887 | #else |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1888 | int fd; |
| 1889 | |
| 1890 | /* 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] | 1891 | * protection: |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 1892 | * Unix: same as original file, but strip s-bit. Reset umask to |
| 1893 | * avoid it getting in the way. |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1894 | * Others: r&w for user only. */ |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1895 | # ifdef UNIX |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 1896 | umask_save = umask(0); |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1897 | fd = mch_open((char *)tempname, |
| 1898 | O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, |
Bram Moolenaar | bba577a | 2005-11-28 23:05:55 +0000 | [diff] [blame] | 1899 | (int)((st_old.st_mode & 0777) | 0600)); |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 1900 | (void)umask(umask_save); |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1901 | # else |
Bram Moolenaar | bba577a | 2005-11-28 23:05:55 +0000 | [diff] [blame] | 1902 | fd = mch_open((char *)tempname, |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 1903 | O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600); |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1904 | # endif |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1905 | if (fd < 0) |
| 1906 | fp_out = NULL; |
| 1907 | else |
| 1908 | fp_out = fdopen(fd, WRITEBIN); |
Bram Moolenaar | 114216c | 2006-03-14 23:08:30 +0000 | [diff] [blame] | 1909 | #endif /* VMS */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1910 | |
| 1911 | /* |
| 1912 | * If we can't create in the same directory, try creating a |
| 1913 | * "normal" temp file. |
| 1914 | */ |
| 1915 | if (fp_out == NULL) |
| 1916 | { |
| 1917 | vim_free(tempname); |
| 1918 | if ((tempname = vim_tempname('o')) != NULL) |
| 1919 | fp_out = mch_fopen((char *)tempname, WRITEBIN); |
| 1920 | } |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1921 | |
| 1922 | #if defined(UNIX) && defined(HAVE_FCHOWN) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1923 | /* |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1924 | * Make sure the owner can read/write it. This only works for |
| 1925 | * root. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1926 | */ |
| 1927 | if (fp_out != NULL) |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 1928 | (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] | 1929 | #endif |
| 1930 | } |
| 1931 | } |
| 1932 | |
| 1933 | /* |
| 1934 | * Check if the new viminfo file can be written to. |
| 1935 | */ |
| 1936 | if (fp_out == NULL) |
| 1937 | { |
| 1938 | EMSG2(_("E138: Can't write viminfo file %s!"), |
Bram Moolenaar | 75c50c4 | 2005-06-04 22:06:24 +0000 | [diff] [blame] | 1939 | (fp_in == NULL || tempname == NULL) ? fname : tempname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1940 | if (fp_in != NULL) |
| 1941 | fclose(fp_in); |
| 1942 | goto end; |
| 1943 | } |
| 1944 | |
| 1945 | if (p_verbose > 0) |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 1946 | { |
| 1947 | verbose_enter(); |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 1948 | smsg((char_u *)_("Writing viminfo file \"%s\""), fname); |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 1949 | verbose_leave(); |
| 1950 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1951 | |
| 1952 | viminfo_errcnt = 0; |
| 1953 | do_viminfo(fp_in, fp_out, !forceit, !forceit, FALSE); |
| 1954 | |
| 1955 | fclose(fp_out); /* errors are ignored !? */ |
| 1956 | if (fp_in != NULL) |
| 1957 | { |
| 1958 | fclose(fp_in); |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1959 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1960 | /* |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1961 | * In case of an error keep the original viminfo file. |
| 1962 | * Otherwise rename the newly written file. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1963 | */ |
| 1964 | if (viminfo_errcnt || vim_rename(tempname, fname) == -1) |
| 1965 | mch_remove(tempname); |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1966 | |
| 1967 | #ifdef WIN3264 |
| 1968 | /* If the viminfo file was hidden then also hide the new file. */ |
| 1969 | if (perm > 0 && (perm & FILE_ATTRIBUTE_HIDDEN)) |
| 1970 | mch_hide(fname); |
| 1971 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1972 | } |
Bram Moolenaar | bca84a1 | 2005-12-14 22:08:35 +0000 | [diff] [blame] | 1973 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1974 | end: |
| 1975 | vim_free(fname); |
| 1976 | vim_free(tempname); |
| 1977 | } |
| 1978 | |
| 1979 | /* |
| 1980 | * Get the viminfo file name to use. |
| 1981 | * If "file" is given and not empty, use it (has already been expanded by |
| 1982 | * cmdline functions). |
| 1983 | * Otherwise use "-i file_name", value from 'viminfo' or the default, and |
| 1984 | * expand environment variables. |
| 1985 | * Returns an allocated string. NULL when out of memory. |
| 1986 | */ |
| 1987 | static char_u * |
| 1988 | viminfo_filename(file) |
| 1989 | char_u *file; |
| 1990 | { |
| 1991 | if (file == NULL || *file == NUL) |
| 1992 | { |
| 1993 | if (use_viminfo != NULL) |
| 1994 | file = use_viminfo; |
| 1995 | else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL) |
| 1996 | { |
| 1997 | #ifdef VIMINFO_FILE2 |
| 1998 | /* don't use $HOME when not defined (turned into "c:/"!). */ |
| 1999 | # ifdef VMS |
| 2000 | if (mch_getenv((char_u *)"SYS$LOGIN") == NULL) |
| 2001 | # else |
| 2002 | if (mch_getenv((char_u *)"HOME") == NULL) |
| 2003 | # endif |
| 2004 | { |
| 2005 | /* don't use $VIM when not available. */ |
| 2006 | expand_env((char_u *)"$VIM", NameBuff, MAXPATHL); |
| 2007 | if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */ |
| 2008 | file = (char_u *)VIMINFO_FILE2; |
| 2009 | else |
| 2010 | file = (char_u *)VIMINFO_FILE; |
| 2011 | } |
| 2012 | else |
| 2013 | #endif |
| 2014 | file = (char_u *)VIMINFO_FILE; |
| 2015 | } |
| 2016 | expand_env(file, NameBuff, MAXPATHL); |
| 2017 | file = NameBuff; |
| 2018 | } |
| 2019 | return vim_strsave(file); |
| 2020 | } |
| 2021 | |
| 2022 | /* |
| 2023 | * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo(). |
| 2024 | */ |
| 2025 | static void |
| 2026 | do_viminfo(fp_in, fp_out, want_info, want_marks, force_read) |
| 2027 | FILE *fp_in; |
| 2028 | FILE *fp_out; |
| 2029 | int want_info; |
| 2030 | int want_marks; |
| 2031 | int force_read; |
| 2032 | { |
| 2033 | int count = 0; |
| 2034 | int eof = FALSE; |
| 2035 | vir_T vir; |
| 2036 | |
| 2037 | if ((vir.vir_line = alloc(LSIZE)) == NULL) |
| 2038 | return; |
| 2039 | vir.vir_fd = fp_in; |
| 2040 | #ifdef FEAT_MBYTE |
| 2041 | vir.vir_conv.vc_type = CONV_NONE; |
| 2042 | #endif |
| 2043 | |
| 2044 | if (fp_in != NULL) |
| 2045 | { |
| 2046 | if (want_info) |
| 2047 | eof = read_viminfo_up_to_marks(&vir, force_read, fp_out != NULL); |
| 2048 | else |
| 2049 | /* Skip info, find start of marks */ |
| 2050 | while (!(eof = viminfo_readline(&vir)) |
| 2051 | && vir.vir_line[0] != '>') |
| 2052 | ; |
| 2053 | } |
| 2054 | if (fp_out != NULL) |
| 2055 | { |
| 2056 | /* Write the info: */ |
| 2057 | fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"), |
| 2058 | VIM_VERSION_MEDIUM); |
| 2059 | fprintf(fp_out, _("# You may edit it if you're careful!\n\n")); |
| 2060 | #ifdef FEAT_MBYTE |
| 2061 | fprintf(fp_out, _("# Value of 'encoding' when this file was written\n")); |
| 2062 | fprintf(fp_out, "*encoding=%s\n\n", p_enc); |
| 2063 | #endif |
| 2064 | write_viminfo_search_pattern(fp_out); |
| 2065 | write_viminfo_sub_string(fp_out); |
| 2066 | #ifdef FEAT_CMDHIST |
| 2067 | write_viminfo_history(fp_out); |
| 2068 | #endif |
| 2069 | write_viminfo_registers(fp_out); |
| 2070 | #ifdef FEAT_EVAL |
| 2071 | write_viminfo_varlist(fp_out); |
| 2072 | #endif |
| 2073 | write_viminfo_filemarks(fp_out); |
| 2074 | write_viminfo_bufferlist(fp_out); |
| 2075 | count = write_viminfo_marks(fp_out); |
| 2076 | } |
| 2077 | if (fp_in != NULL && want_marks) |
| 2078 | copy_viminfo_marks(&vir, fp_out, count, eof); |
| 2079 | |
| 2080 | vim_free(vir.vir_line); |
| 2081 | #ifdef FEAT_MBYTE |
| 2082 | if (vir.vir_conv.vc_type != CONV_NONE) |
| 2083 | convert_setup(&vir.vir_conv, NULL, NULL); |
| 2084 | #endif |
| 2085 | } |
| 2086 | |
| 2087 | /* |
| 2088 | * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the |
| 2089 | * first part of the viminfo file which contains everything but the marks that |
| 2090 | * are local to a file. Returns TRUE when end-of-file is reached. -- webb |
| 2091 | */ |
| 2092 | static int |
| 2093 | read_viminfo_up_to_marks(virp, forceit, writing) |
| 2094 | vir_T *virp; |
| 2095 | int forceit; |
| 2096 | int writing; |
| 2097 | { |
| 2098 | int eof; |
| 2099 | buf_T *buf; |
| 2100 | |
| 2101 | #ifdef FEAT_CMDHIST |
| 2102 | prepare_viminfo_history(forceit ? 9999 : 0); |
| 2103 | #endif |
| 2104 | eof = viminfo_readline(virp); |
| 2105 | while (!eof && virp->vir_line[0] != '>') |
| 2106 | { |
| 2107 | switch (virp->vir_line[0]) |
| 2108 | { |
| 2109 | /* Characters reserved for future expansion, ignored now */ |
| 2110 | case '+': /* "+40 /path/dir file", for running vim without args */ |
| 2111 | case '|': /* to be defined */ |
| 2112 | case '^': /* to be defined */ |
| 2113 | case '<': /* long line - ignored */ |
| 2114 | /* A comment or empty line. */ |
| 2115 | case NUL: |
| 2116 | case '\r': |
| 2117 | case '\n': |
| 2118 | case '#': |
| 2119 | eof = viminfo_readline(virp); |
| 2120 | break; |
| 2121 | case '*': /* "*encoding=value" */ |
| 2122 | eof = viminfo_encoding(virp); |
| 2123 | break; |
| 2124 | case '!': /* global variable */ |
| 2125 | #ifdef FEAT_EVAL |
| 2126 | eof = read_viminfo_varlist(virp, writing); |
| 2127 | #else |
| 2128 | eof = viminfo_readline(virp); |
| 2129 | #endif |
| 2130 | break; |
| 2131 | case '%': /* entry for buffer list */ |
| 2132 | eof = read_viminfo_bufferlist(virp, writing); |
| 2133 | break; |
| 2134 | case '"': |
| 2135 | eof = read_viminfo_register(virp, forceit); |
| 2136 | break; |
| 2137 | case '/': /* Search string */ |
| 2138 | case '&': /* Substitute search string */ |
| 2139 | case '~': /* Last search string, followed by '/' or '&' */ |
| 2140 | eof = read_viminfo_search_pattern(virp, forceit); |
| 2141 | break; |
| 2142 | case '$': |
| 2143 | eof = read_viminfo_sub_string(virp, forceit); |
| 2144 | break; |
| 2145 | case ':': |
| 2146 | case '?': |
| 2147 | case '=': |
| 2148 | case '@': |
| 2149 | #ifdef FEAT_CMDHIST |
| 2150 | eof = read_viminfo_history(virp); |
| 2151 | #else |
| 2152 | eof = viminfo_readline(virp); |
| 2153 | #endif |
| 2154 | break; |
| 2155 | case '-': |
| 2156 | case '\'': |
| 2157 | eof = read_viminfo_filemark(virp, forceit); |
| 2158 | break; |
| 2159 | default: |
| 2160 | if (viminfo_error("E575: ", _("Illegal starting char"), |
| 2161 | virp->vir_line)) |
| 2162 | eof = TRUE; |
| 2163 | else |
| 2164 | eof = viminfo_readline(virp); |
| 2165 | break; |
| 2166 | } |
| 2167 | } |
| 2168 | |
| 2169 | #ifdef FEAT_CMDHIST |
| 2170 | /* Finish reading history items. */ |
| 2171 | finish_viminfo_history(); |
| 2172 | #endif |
| 2173 | |
| 2174 | /* Change file names to buffer numbers for fmarks. */ |
| 2175 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 2176 | fmarks_check_names(buf); |
| 2177 | |
| 2178 | return eof; |
| 2179 | } |
| 2180 | |
| 2181 | /* |
| 2182 | * Compare the 'encoding' value in the viminfo file with the current value of |
| 2183 | * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for |
| 2184 | * conversion of text with iconv() in viminfo_readstring(). |
| 2185 | */ |
| 2186 | static int |
| 2187 | viminfo_encoding(virp) |
| 2188 | vir_T *virp; |
| 2189 | { |
| 2190 | #ifdef FEAT_MBYTE |
| 2191 | char_u *p; |
| 2192 | int i; |
| 2193 | |
| 2194 | if (get_viminfo_parameter('c') != 0) |
| 2195 | { |
| 2196 | p = vim_strchr(virp->vir_line, '='); |
| 2197 | if (p != NULL) |
| 2198 | { |
| 2199 | /* remove trailing newline */ |
| 2200 | ++p; |
| 2201 | for (i = 0; vim_isprintc(p[i]); ++i) |
| 2202 | ; |
| 2203 | p[i] = NUL; |
| 2204 | |
| 2205 | convert_setup(&virp->vir_conv, p, p_enc); |
| 2206 | } |
| 2207 | } |
| 2208 | #endif |
| 2209 | return viminfo_readline(virp); |
| 2210 | } |
| 2211 | |
| 2212 | /* |
| 2213 | * Read a line from the viminfo file. |
| 2214 | * Returns TRUE for end-of-file; |
| 2215 | */ |
| 2216 | int |
| 2217 | viminfo_readline(virp) |
| 2218 | vir_T *virp; |
| 2219 | { |
| 2220 | return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd); |
| 2221 | } |
| 2222 | |
| 2223 | /* |
| 2224 | * check string read from viminfo file |
| 2225 | * remove '\n' at the end of the line |
| 2226 | * - replace CTRL-V CTRL-V with CTRL-V |
| 2227 | * - replace CTRL-V 'n' with '\n' |
| 2228 | * |
| 2229 | * Check for a long line as written by viminfo_writestring(). |
| 2230 | * |
| 2231 | * Return the string in allocated memory (NULL when out of memory). |
| 2232 | */ |
| 2233 | /*ARGSUSED*/ |
| 2234 | char_u * |
| 2235 | viminfo_readstring(virp, off, convert) |
| 2236 | vir_T *virp; |
| 2237 | int off; /* offset for virp->vir_line */ |
| 2238 | int convert; /* convert the string */ |
| 2239 | { |
| 2240 | char_u *retval; |
| 2241 | char_u *s, *d; |
| 2242 | long len; |
| 2243 | |
| 2244 | if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1])) |
| 2245 | { |
| 2246 | len = atol((char *)virp->vir_line + off + 1); |
| 2247 | retval = lalloc(len, TRUE); |
| 2248 | if (retval == NULL) |
| 2249 | { |
| 2250 | /* Line too long? File messed up? Skip next line. */ |
| 2251 | (void)vim_fgets(virp->vir_line, 10, virp->vir_fd); |
| 2252 | return NULL; |
| 2253 | } |
| 2254 | (void)vim_fgets(retval, (int)len, virp->vir_fd); |
| 2255 | s = retval + 1; /* Skip the leading '<' */ |
| 2256 | } |
| 2257 | else |
| 2258 | { |
| 2259 | retval = vim_strsave(virp->vir_line + off); |
| 2260 | if (retval == NULL) |
| 2261 | return NULL; |
| 2262 | s = retval; |
| 2263 | } |
| 2264 | |
| 2265 | /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */ |
| 2266 | d = retval; |
| 2267 | while (*s != NUL && *s != '\n') |
| 2268 | { |
| 2269 | if (s[0] == Ctrl_V && s[1] != NUL) |
| 2270 | { |
| 2271 | if (s[1] == 'n') |
| 2272 | *d++ = '\n'; |
| 2273 | else |
| 2274 | *d++ = Ctrl_V; |
| 2275 | s += 2; |
| 2276 | } |
| 2277 | else |
| 2278 | *d++ = *s++; |
| 2279 | } |
| 2280 | *d = NUL; |
| 2281 | |
| 2282 | #ifdef FEAT_MBYTE |
| 2283 | if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL) |
| 2284 | { |
| 2285 | d = string_convert(&virp->vir_conv, retval, NULL); |
| 2286 | if (d != NULL) |
| 2287 | { |
| 2288 | vim_free(retval); |
| 2289 | retval = d; |
| 2290 | } |
| 2291 | } |
| 2292 | #endif |
| 2293 | |
| 2294 | return retval; |
| 2295 | } |
| 2296 | |
| 2297 | /* |
| 2298 | * write string to viminfo file |
| 2299 | * - replace CTRL-V with CTRL-V CTRL-V |
| 2300 | * - replace '\n' with CTRL-V 'n' |
| 2301 | * - add a '\n' at the end |
| 2302 | * |
| 2303 | * For a long line: |
| 2304 | * - write " CTRL-V <length> \n " in first line |
| 2305 | * - write " < <string> \n " in second line |
| 2306 | */ |
| 2307 | void |
| 2308 | viminfo_writestring(fd, p) |
| 2309 | FILE *fd; |
| 2310 | char_u *p; |
| 2311 | { |
| 2312 | int c; |
| 2313 | char_u *s; |
| 2314 | int len = 0; |
| 2315 | |
| 2316 | for (s = p; *s != NUL; ++s) |
| 2317 | { |
| 2318 | if (*s == Ctrl_V || *s == '\n') |
| 2319 | ++len; |
| 2320 | ++len; |
| 2321 | } |
| 2322 | |
| 2323 | /* If the string will be too long, write its length and put it in the next |
| 2324 | * line. Take into account that some room is needed for what comes before |
| 2325 | * the string (e.g., variable name). Add something to the length for the |
| 2326 | * '<', NL and trailing NUL. */ |
| 2327 | if (len > LSIZE / 2) |
| 2328 | fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3); |
| 2329 | |
| 2330 | while ((c = *p++) != NUL) |
| 2331 | { |
| 2332 | if (c == Ctrl_V || c == '\n') |
| 2333 | { |
| 2334 | putc(Ctrl_V, fd); |
| 2335 | if (c == '\n') |
| 2336 | c = 'n'; |
| 2337 | } |
| 2338 | putc(c, fd); |
| 2339 | } |
| 2340 | putc('\n', fd); |
| 2341 | } |
| 2342 | #endif /* FEAT_VIMINFO */ |
| 2343 | |
| 2344 | /* |
| 2345 | * Implementation of ":fixdel", also used by get_stty(). |
| 2346 | * <BS> resulting <Del> |
| 2347 | * ^? ^H |
| 2348 | * not ^? ^? |
| 2349 | */ |
| 2350 | /*ARGSUSED*/ |
| 2351 | void |
| 2352 | do_fixdel(eap) |
| 2353 | exarg_T *eap; |
| 2354 | { |
| 2355 | char_u *p; |
| 2356 | |
| 2357 | p = find_termcode((char_u *)"kb"); |
| 2358 | add_termcode((char_u *)"kD", p != NULL |
| 2359 | && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE); |
| 2360 | } |
| 2361 | |
| 2362 | void |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2363 | print_line_no_prefix(lnum, use_number, list) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2364 | linenr_T lnum; |
| 2365 | int use_number; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2366 | int list; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2367 | { |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 2368 | char_u numbuf[30]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2369 | |
| 2370 | if (curwin->w_p_nu || use_number) |
| 2371 | { |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 2372 | sprintf((char *)numbuf, "%*ld ", number_width(curwin), (long)lnum); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2373 | msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */ |
| 2374 | } |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2375 | msg_prt_line(ml_get(lnum), list); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2376 | } |
| 2377 | |
| 2378 | /* |
| 2379 | * Print a text line. Also in silent mode ("ex -s"). |
| 2380 | */ |
| 2381 | void |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2382 | print_line(lnum, use_number, list) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2383 | linenr_T lnum; |
| 2384 | int use_number; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2385 | int list; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2386 | { |
| 2387 | int save_silent = silent_mode; |
| 2388 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2389 | msg_start(); |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2390 | silent_mode = FALSE; |
| 2391 | info_message = TRUE; /* use mch_msg(), not mch_errmsg() */ |
| 2392 | print_line_no_prefix(lnum, use_number, list); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2393 | if (save_silent) |
| 2394 | { |
| 2395 | msg_putchar('\n'); |
| 2396 | cursor_on(); /* msg_start() switches it off */ |
| 2397 | out_flush(); |
| 2398 | silent_mode = save_silent; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2399 | info_message = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2400 | } |
| 2401 | } |
| 2402 | |
| 2403 | /* |
| 2404 | * ":file[!] [fname]". |
| 2405 | */ |
| 2406 | void |
| 2407 | ex_file(eap) |
| 2408 | exarg_T *eap; |
| 2409 | { |
| 2410 | char_u *fname, *sfname, *xfname; |
| 2411 | buf_T *buf; |
| 2412 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 2413 | /* ":0file" removes the file name. Check for illegal uses ":3file", |
| 2414 | * "0file name", etc. */ |
| 2415 | if (eap->addr_count > 0 |
| 2416 | && (*eap->arg != NUL |
| 2417 | || eap->line2 > 0 |
| 2418 | || eap->addr_count > 1)) |
| 2419 | { |
| 2420 | EMSG(_(e_invarg)); |
| 2421 | return; |
| 2422 | } |
| 2423 | |
| 2424 | if (*eap->arg != NUL || eap->addr_count == 1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2425 | { |
| 2426 | #ifdef FEAT_AUTOCMD |
| 2427 | buf = curbuf; |
| 2428 | apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); |
| 2429 | /* buffer changed, don't change name now */ |
| 2430 | if (buf != curbuf) |
| 2431 | return; |
| 2432 | # ifdef FEAT_EVAL |
| 2433 | if (aborting()) /* autocmds may abort script processing */ |
| 2434 | return; |
| 2435 | # endif |
| 2436 | #endif |
| 2437 | /* |
| 2438 | * The name of the current buffer will be changed. |
| 2439 | * A new (unlisted) buffer entry needs to be made to hold the old file |
| 2440 | * name, which will become the alternate file name. |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 2441 | * But don't set the alternate file name if the buffer didn't have a |
| 2442 | * name. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2443 | */ |
| 2444 | fname = curbuf->b_ffname; |
| 2445 | sfname = curbuf->b_sfname; |
| 2446 | xfname = curbuf->b_fname; |
| 2447 | curbuf->b_ffname = NULL; |
| 2448 | curbuf->b_sfname = NULL; |
| 2449 | if (setfname(curbuf, eap->arg, NULL, TRUE) == FAIL) |
| 2450 | { |
| 2451 | curbuf->b_ffname = fname; |
| 2452 | curbuf->b_sfname = sfname; |
| 2453 | return; |
| 2454 | } |
| 2455 | curbuf->b_flags |= BF_NOTEDITED; |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 2456 | if (xfname != NULL && *xfname != NUL) |
| 2457 | { |
| 2458 | buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0); |
| 2459 | if (buf != NULL && !cmdmod.keepalt) |
| 2460 | curwin->w_alt_fnum = buf->b_fnum; |
| 2461 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2462 | vim_free(fname); |
| 2463 | vim_free(sfname); |
| 2464 | #ifdef FEAT_AUTOCMD |
| 2465 | apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
| 2466 | #endif |
Bram Moolenaar | 498efdb | 2006-09-05 14:31:54 +0000 | [diff] [blame] | 2467 | /* Change directories when the 'acd' option is set. */ |
| 2468 | DO_AUTOCHDIR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2469 | } |
| 2470 | /* print full file name if :cd used */ |
| 2471 | fileinfo(FALSE, FALSE, eap->forceit); |
| 2472 | } |
| 2473 | |
| 2474 | /* |
| 2475 | * ":update". |
| 2476 | */ |
| 2477 | void |
| 2478 | ex_update(eap) |
| 2479 | exarg_T *eap; |
| 2480 | { |
| 2481 | if (curbufIsChanged()) |
| 2482 | (void)do_write(eap); |
| 2483 | } |
| 2484 | |
| 2485 | /* |
| 2486 | * ":write" and ":saveas". |
| 2487 | */ |
| 2488 | void |
| 2489 | ex_write(eap) |
| 2490 | exarg_T *eap; |
| 2491 | { |
| 2492 | if (eap->usefilter) /* input lines to shell command */ |
| 2493 | do_bang(1, eap, FALSE, TRUE, FALSE); |
| 2494 | else |
| 2495 | (void)do_write(eap); |
| 2496 | } |
| 2497 | |
| 2498 | /* |
| 2499 | * write current buffer to file 'eap->arg' |
| 2500 | * if 'eap->append' is TRUE, append to the file |
| 2501 | * |
| 2502 | * if *eap->arg == NUL write to current file |
| 2503 | * |
| 2504 | * return FAIL for failure, OK otherwise |
| 2505 | */ |
| 2506 | int |
| 2507 | do_write(eap) |
| 2508 | exarg_T *eap; |
| 2509 | { |
| 2510 | int other; |
| 2511 | char_u *fname = NULL; /* init to shut up gcc */ |
| 2512 | char_u *ffname; |
| 2513 | int retval = FAIL; |
| 2514 | char_u *free_fname = NULL; |
| 2515 | #ifdef FEAT_BROWSE |
| 2516 | char_u *browse_file = NULL; |
| 2517 | #endif |
| 2518 | buf_T *alt_buf = NULL; |
| 2519 | |
| 2520 | if (not_writing()) /* check 'write' option */ |
| 2521 | return FAIL; |
| 2522 | |
| 2523 | ffname = eap->arg; |
| 2524 | #ifdef FEAT_BROWSE |
| 2525 | if (cmdmod.browse) |
| 2526 | { |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 2527 | browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2528 | NULL, NULL, NULL, curbuf); |
| 2529 | if (browse_file == NULL) |
| 2530 | goto theend; |
| 2531 | ffname = browse_file; |
| 2532 | } |
| 2533 | #endif |
| 2534 | if (*ffname == NUL) |
| 2535 | { |
| 2536 | if (eap->cmdidx == CMD_saveas) |
| 2537 | { |
| 2538 | EMSG(_(e_argreq)); |
| 2539 | goto theend; |
| 2540 | } |
| 2541 | other = FALSE; |
| 2542 | } |
| 2543 | else |
| 2544 | { |
| 2545 | fname = ffname; |
| 2546 | free_fname = fix_fname(ffname); |
| 2547 | /* |
| 2548 | * When out-of-memory, keep unexpanded file name, because we MUST be |
| 2549 | * able to write the file in this situation. |
| 2550 | */ |
| 2551 | if (free_fname != NULL) |
| 2552 | ffname = free_fname; |
| 2553 | other = otherfile(ffname); |
| 2554 | } |
| 2555 | |
| 2556 | /* |
| 2557 | * If we have a new file, put its name in the list of alternate file names. |
| 2558 | */ |
| 2559 | if (other) |
| 2560 | { |
| 2561 | if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL |
| 2562 | || eap->cmdidx == CMD_saveas) |
| 2563 | alt_buf = setaltfname(ffname, fname, (linenr_T)1); |
| 2564 | else |
| 2565 | alt_buf = buflist_findname(ffname); |
| 2566 | if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL) |
| 2567 | { |
| 2568 | /* Overwriting a file that is loaded in another buffer is not a |
| 2569 | * good idea. */ |
Bram Moolenaar | 0e4d877 | 2005-06-07 21:12:49 +0000 | [diff] [blame] | 2570 | EMSG(_(e_bufloaded)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2571 | goto theend; |
| 2572 | } |
| 2573 | } |
| 2574 | |
| 2575 | /* |
| 2576 | * Writing to the current file is not allowed in readonly mode |
| 2577 | * and a file name is required. |
| 2578 | * "nofile" and "nowrite" buffers cannot be written implicitly either. |
| 2579 | */ |
| 2580 | if (!other && ( |
| 2581 | #ifdef FEAT_QUICKFIX |
| 2582 | bt_dontwrite_msg(curbuf) || |
| 2583 | #endif |
| 2584 | check_fname() == FAIL || check_readonly(&eap->forceit, curbuf))) |
| 2585 | goto theend; |
| 2586 | |
| 2587 | if (!other) |
| 2588 | { |
| 2589 | ffname = curbuf->b_ffname; |
| 2590 | fname = curbuf->b_fname; |
| 2591 | /* |
| 2592 | * Not writing the whole file is only allowed with '!'. |
| 2593 | */ |
| 2594 | if ( (eap->line1 != 1 |
| 2595 | || eap->line2 != curbuf->b_ml.ml_line_count) |
| 2596 | && !eap->forceit |
| 2597 | && !eap->append |
| 2598 | && !p_wa) |
| 2599 | { |
| 2600 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 2601 | if (p_confirm || cmdmod.confirm) |
| 2602 | { |
| 2603 | if (vim_dialog_yesno(VIM_QUESTION, NULL, |
| 2604 | (char_u *)_("Write partial file?"), 2) != VIM_YES) |
| 2605 | goto theend; |
| 2606 | eap->forceit = TRUE; |
| 2607 | } |
| 2608 | else |
| 2609 | #endif |
| 2610 | { |
| 2611 | EMSG(_("E140: Use ! to write partial buffer")); |
| 2612 | goto theend; |
| 2613 | } |
| 2614 | } |
| 2615 | } |
| 2616 | |
| 2617 | if (check_overwrite(eap, curbuf, fname, ffname, other) == OK) |
| 2618 | { |
| 2619 | if (eap->cmdidx == CMD_saveas && alt_buf != NULL) |
| 2620 | { |
| 2621 | #ifdef FEAT_AUTOCMD |
| 2622 | buf_T *was_curbuf = curbuf; |
| 2623 | |
| 2624 | apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); |
Bram Moolenaar | 269ec65 | 2004-07-29 08:43:53 +0000 | [diff] [blame] | 2625 | apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2626 | # ifdef FEAT_EVAL |
| 2627 | if (curbuf != was_curbuf || aborting()) |
| 2628 | # else |
| 2629 | if (curbuf != was_curbuf) |
| 2630 | # endif |
| 2631 | { |
| 2632 | /* buffer changed, don't change name now */ |
| 2633 | retval = FAIL; |
| 2634 | goto theend; |
| 2635 | } |
| 2636 | #endif |
| 2637 | /* Exchange the file names for the current and the alternate |
| 2638 | * buffer. This makes it look like we are now editing the buffer |
| 2639 | * under the new name. Must be done before buf_write(), because |
| 2640 | * if there is no file name and 'cpo' contains 'F', it will set |
| 2641 | * the file name. */ |
| 2642 | fname = alt_buf->b_fname; |
| 2643 | alt_buf->b_fname = curbuf->b_fname; |
| 2644 | curbuf->b_fname = fname; |
| 2645 | fname = alt_buf->b_ffname; |
| 2646 | alt_buf->b_ffname = curbuf->b_ffname; |
| 2647 | curbuf->b_ffname = fname; |
| 2648 | fname = alt_buf->b_sfname; |
| 2649 | alt_buf->b_sfname = curbuf->b_sfname; |
| 2650 | curbuf->b_sfname = fname; |
| 2651 | buf_name_changed(curbuf); |
| 2652 | #ifdef FEAT_AUTOCMD |
| 2653 | apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
Bram Moolenaar | 269ec65 | 2004-07-29 08:43:53 +0000 | [diff] [blame] | 2654 | apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2655 | if (!alt_buf->b_p_bl) |
| 2656 | { |
| 2657 | alt_buf->b_p_bl = TRUE; |
| 2658 | apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf); |
| 2659 | } |
| 2660 | # ifdef FEAT_EVAL |
| 2661 | if (curbuf != was_curbuf || aborting()) |
| 2662 | # else |
| 2663 | if (curbuf != was_curbuf) |
| 2664 | # endif |
| 2665 | { |
| 2666 | /* buffer changed, don't write the file */ |
| 2667 | retval = FAIL; |
| 2668 | goto theend; |
| 2669 | } |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2670 | |
| 2671 | /* If 'filetype' was empty try detecting it now. */ |
| 2672 | if (*curbuf->b_p_ft == NUL) |
| 2673 | { |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2674 | if (au_has_group((char_u *)"filetypedetect")) |
| 2675 | (void)do_doautocmd((char_u *)"filetypedetect BufRead", |
| 2676 | TRUE); |
Bram Moolenaar | a3227e2 | 2006-03-08 21:32:40 +0000 | [diff] [blame] | 2677 | do_modelines(0); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2678 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2679 | #endif |
| 2680 | } |
| 2681 | |
| 2682 | retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2, |
| 2683 | eap, eap->append, eap->forceit, TRUE, FALSE); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2684 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2685 | /* After ":saveas fname" reset 'readonly'. */ |
Bram Moolenaar | 498efdb | 2006-09-05 14:31:54 +0000 | [diff] [blame] | 2686 | if (eap->cmdidx == CMD_saveas) |
| 2687 | { |
| 2688 | if (retval == OK) |
| 2689 | curbuf->b_p_ro = FALSE; |
| 2690 | /* Change directories when the 'acd' option is set. */ |
| 2691 | DO_AUTOCHDIR |
| 2692 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2693 | } |
| 2694 | |
| 2695 | theend: |
| 2696 | #ifdef FEAT_BROWSE |
| 2697 | vim_free(browse_file); |
| 2698 | #endif |
| 2699 | vim_free(free_fname); |
| 2700 | return retval; |
| 2701 | } |
| 2702 | |
| 2703 | /* |
| 2704 | * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED, |
| 2705 | * BF_NEW or BF_READERR, check for overwriting current file. |
| 2706 | * May set eap->forceit if a dialog says it's OK to overwrite. |
| 2707 | * Return OK if it's OK, FAIL if it is not. |
| 2708 | */ |
| 2709 | /*ARGSUSED*/ |
| 2710 | static int |
| 2711 | check_overwrite(eap, buf, fname, ffname, other) |
| 2712 | exarg_T *eap; |
| 2713 | buf_T *buf; |
| 2714 | char_u *fname; /* file name to be used (can differ from |
| 2715 | buf->ffname) */ |
| 2716 | char_u *ffname; /* full path version of fname */ |
| 2717 | int other; /* writing under other name */ |
| 2718 | { |
| 2719 | /* |
| 2720 | * write to other file or b_flags set or not writing the whole file: |
| 2721 | * overwriting only allowed with '!' |
| 2722 | */ |
| 2723 | if ( (other |
| 2724 | || (buf->b_flags & BF_NOTEDITED) |
| 2725 | || ((buf->b_flags & BF_NEW) |
| 2726 | && vim_strchr(p_cpo, CPO_OVERNEW) == NULL) |
| 2727 | || (buf->b_flags & BF_READERR)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2728 | && !p_wa |
| 2729 | && vim_fexists(ffname)) |
| 2730 | { |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2731 | if (!eap->forceit && !eap->append) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2732 | { |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2733 | #ifdef UNIX |
Bram Moolenaar | 0ac9379 | 2006-01-21 22:16:51 +0000 | [diff] [blame] | 2734 | /* with UNIX it is possible to open a directory */ |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2735 | if (mch_isdir(ffname)) |
| 2736 | { |
| 2737 | EMSG2(_(e_isadir2), ffname); |
| 2738 | return FAIL; |
| 2739 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2740 | #endif |
| 2741 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2742 | if (p_confirm || cmdmod.confirm) |
| 2743 | { |
| 2744 | char_u buff[IOSIZE]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2745 | |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2746 | dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname); |
| 2747 | if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES) |
| 2748 | return FAIL; |
| 2749 | eap->forceit = TRUE; |
| 2750 | } |
| 2751 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2752 | #endif |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2753 | { |
| 2754 | EMSG(_(e_exists)); |
| 2755 | return FAIL; |
| 2756 | } |
| 2757 | } |
| 2758 | |
| 2759 | /* For ":w! filename" check that no swap file exists for "filename". */ |
| 2760 | if (other && !emsg_silent) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2761 | { |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2762 | char_u dir[MAXPATHL]; |
| 2763 | char_u *p; |
| 2764 | int r; |
| 2765 | char_u *swapname; |
| 2766 | |
| 2767 | /* We only try the first entry in 'directory', without checking if |
| 2768 | * it's writable. If the "." directory is not writable the write |
| 2769 | * will probably fail anyway. |
| 2770 | * Use 'shortname' of the current buffer, since there is no buffer |
| 2771 | * for the written file. */ |
| 2772 | if (*p_dir == NUL) |
| 2773 | STRCPY(dir, "."); |
| 2774 | else |
| 2775 | { |
| 2776 | p = p_dir; |
| 2777 | copy_option_part(&p, dir, MAXPATHL, ","); |
| 2778 | } |
| 2779 | swapname = makeswapname(fname, ffname, curbuf, dir); |
| 2780 | r = vim_fexists(swapname); |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2781 | if (r) |
| 2782 | { |
| 2783 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 2784 | if (p_confirm || cmdmod.confirm) |
| 2785 | { |
| 2786 | char_u buff[IOSIZE]; |
| 2787 | |
| 2788 | dialog_msg(buff, |
| 2789 | _("Swap file \"%s\" exists, overwrite anyway?"), |
| 2790 | swapname); |
| 2791 | if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) |
| 2792 | != VIM_YES) |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2793 | { |
| 2794 | vim_free(swapname); |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2795 | return FAIL; |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2796 | } |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2797 | eap->forceit = TRUE; |
| 2798 | } |
| 2799 | else |
| 2800 | #endif |
| 2801 | { |
| 2802 | EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"), |
| 2803 | swapname); |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2804 | vim_free(swapname); |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 2805 | return FAIL; |
| 2806 | } |
| 2807 | } |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2808 | vim_free(swapname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2809 | } |
| 2810 | } |
| 2811 | return OK; |
| 2812 | } |
| 2813 | |
| 2814 | /* |
| 2815 | * Handle ":wnext", ":wNext" and ":wprevious" commands. |
| 2816 | */ |
| 2817 | void |
| 2818 | ex_wnext(eap) |
| 2819 | exarg_T *eap; |
| 2820 | { |
| 2821 | int i; |
| 2822 | |
| 2823 | if (eap->cmd[1] == 'n') |
| 2824 | i = curwin->w_arg_idx + (int)eap->line2; |
| 2825 | else |
| 2826 | i = curwin->w_arg_idx - (int)eap->line2; |
| 2827 | eap->line1 = 1; |
| 2828 | eap->line2 = curbuf->b_ml.ml_line_count; |
| 2829 | if (do_write(eap) != FAIL) |
| 2830 | do_argfile(eap, i); |
| 2831 | } |
| 2832 | |
| 2833 | /* |
| 2834 | * ":wall", ":wqall" and ":xall": Write all changed files (and exit). |
| 2835 | */ |
| 2836 | void |
| 2837 | do_wqall(eap) |
| 2838 | exarg_T *eap; |
| 2839 | { |
| 2840 | buf_T *buf; |
| 2841 | int error = 0; |
| 2842 | int save_forceit = eap->forceit; |
| 2843 | |
| 2844 | if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall) |
| 2845 | exiting = TRUE; |
| 2846 | |
| 2847 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 2848 | { |
| 2849 | if (bufIsChanged(buf)) |
| 2850 | { |
| 2851 | /* |
| 2852 | * Check if there is a reason the buffer cannot be written: |
| 2853 | * 1. if the 'write' option is set |
| 2854 | * 2. if there is no file name (even after browsing) |
| 2855 | * 3. if the 'readonly' is set (even after a dialog) |
| 2856 | * 4. if overwriting is allowed (even after a dialog) |
| 2857 | */ |
| 2858 | if (not_writing()) |
| 2859 | { |
| 2860 | ++error; |
| 2861 | break; |
| 2862 | } |
| 2863 | #ifdef FEAT_BROWSE |
| 2864 | /* ":browse wall": ask for file name if there isn't one */ |
| 2865 | if (buf->b_ffname == NULL && cmdmod.browse) |
| 2866 | browse_save_fname(buf); |
| 2867 | #endif |
| 2868 | if (buf->b_ffname == NULL) |
| 2869 | { |
| 2870 | EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum); |
| 2871 | ++error; |
| 2872 | } |
| 2873 | else if (check_readonly(&eap->forceit, buf) |
| 2874 | || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname, |
| 2875 | FALSE) == FAIL) |
| 2876 | { |
| 2877 | ++error; |
| 2878 | } |
| 2879 | else |
| 2880 | { |
| 2881 | if (buf_write_all(buf, eap->forceit) == FAIL) |
| 2882 | ++error; |
| 2883 | #ifdef FEAT_AUTOCMD |
| 2884 | /* an autocommand may have deleted the buffer */ |
| 2885 | if (!buf_valid(buf)) |
| 2886 | buf = firstbuf; |
| 2887 | #endif |
| 2888 | } |
| 2889 | eap->forceit = save_forceit; /* check_overwrite() may set it */ |
| 2890 | } |
| 2891 | } |
| 2892 | if (exiting) |
| 2893 | { |
| 2894 | if (!error) |
| 2895 | getout(0); /* exit Vim */ |
| 2896 | not_exiting(); |
| 2897 | } |
| 2898 | } |
| 2899 | |
| 2900 | /* |
| 2901 | * Check the 'write' option. |
| 2902 | * Return TRUE and give a message when it's not st. |
| 2903 | */ |
| 2904 | int |
| 2905 | not_writing() |
| 2906 | { |
| 2907 | if (p_write) |
| 2908 | return FALSE; |
| 2909 | EMSG(_("E142: File not written: Writing is disabled by 'write' option")); |
| 2910 | return TRUE; |
| 2911 | } |
| 2912 | |
| 2913 | /* |
| 2914 | * Check if a buffer is read-only. Ask for overruling in a dialog. |
| 2915 | * Return TRUE and give an error message when the buffer is readonly. |
| 2916 | */ |
| 2917 | static int |
| 2918 | check_readonly(forceit, buf) |
| 2919 | int *forceit; |
| 2920 | buf_T *buf; |
| 2921 | { |
| 2922 | if (!*forceit && buf->b_p_ro) |
| 2923 | { |
| 2924 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 2925 | if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL) |
| 2926 | { |
| 2927 | char_u buff[IOSIZE]; |
| 2928 | |
Bram Moolenaar | 0e4d877 | 2005-06-07 21:12:49 +0000 | [diff] [blame] | 2929 | 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] | 2930 | buf->b_fname); |
| 2931 | |
| 2932 | if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES) |
| 2933 | { |
| 2934 | /* Set forceit, to force the writing of a readonly file */ |
| 2935 | *forceit = TRUE; |
| 2936 | return FALSE; |
| 2937 | } |
| 2938 | else |
| 2939 | return TRUE; |
| 2940 | } |
| 2941 | else |
| 2942 | #endif |
| 2943 | EMSG(_(e_readonly)); |
| 2944 | return TRUE; |
| 2945 | } |
| 2946 | return FALSE; |
| 2947 | } |
| 2948 | |
| 2949 | /* |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2950 | * Try to abandon current file and edit a new or existing file. |
| 2951 | * 'fnum' is the number of the file, if zero use ffname/sfname. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2952 | * |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2953 | * Return 1 for "normal" error, 2 for "not written" error, 0 for success |
| 2954 | * -1 for succesfully opening another file. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2955 | * 'lnum' is the line number for the cursor in the new file (if non-zero). |
| 2956 | */ |
| 2957 | int |
| 2958 | getfile(fnum, ffname, sfname, setpm, lnum, forceit) |
| 2959 | int fnum; |
| 2960 | char_u *ffname; |
| 2961 | char_u *sfname; |
| 2962 | int setpm; |
| 2963 | linenr_T lnum; |
| 2964 | int forceit; |
| 2965 | { |
| 2966 | int other; |
| 2967 | int retval; |
| 2968 | char_u *free_me = NULL; |
| 2969 | |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2970 | if (text_locked()) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2971 | return 1; |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2972 | #ifdef FEAT_AUTOCMD |
| 2973 | if (curbuf_locked()) |
| 2974 | return 1; |
| 2975 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2976 | |
| 2977 | if (fnum == 0) |
| 2978 | { |
| 2979 | /* make ffname full path, set sfname */ |
| 2980 | fname_expand(curbuf, &ffname, &sfname); |
| 2981 | other = otherfile(ffname); |
| 2982 | free_me = ffname; /* has been allocated, free() later */ |
| 2983 | } |
| 2984 | else |
| 2985 | other = (fnum != curbuf->b_fnum); |
| 2986 | |
| 2987 | if (other) |
| 2988 | ++no_wait_return; /* don't wait for autowrite message */ |
| 2989 | if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf) |
| 2990 | && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL) |
| 2991 | { |
| 2992 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 2993 | if (p_confirm && p_write) |
| 2994 | dialog_changed(curbuf, FALSE); |
| 2995 | if (curbufIsChanged()) |
| 2996 | #endif |
| 2997 | { |
| 2998 | if (other) |
| 2999 | --no_wait_return; |
| 3000 | EMSG(_(e_nowrtmsg)); |
| 3001 | retval = 2; /* file has been changed */ |
| 3002 | goto theend; |
| 3003 | } |
| 3004 | } |
| 3005 | if (other) |
| 3006 | --no_wait_return; |
| 3007 | if (setpm) |
| 3008 | setpcmark(); |
| 3009 | if (!other) |
| 3010 | { |
| 3011 | if (lnum != 0) |
| 3012 | curwin->w_cursor.lnum = lnum; |
| 3013 | check_cursor_lnum(); |
| 3014 | beginline(BL_SOL | BL_FIX); |
| 3015 | retval = 0; /* it's in the same file */ |
| 3016 | } |
| 3017 | else if (do_ecmd(fnum, ffname, sfname, NULL, lnum, |
| 3018 | (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0)) == OK) |
| 3019 | retval = -1; /* opened another file */ |
| 3020 | else |
| 3021 | retval = 1; /* error encountered */ |
| 3022 | |
| 3023 | theend: |
| 3024 | vim_free(free_me); |
| 3025 | return retval; |
| 3026 | } |
| 3027 | |
| 3028 | /* |
| 3029 | * start editing a new file |
| 3030 | * |
| 3031 | * fnum: file number; if zero use ffname/sfname |
| 3032 | * ffname: the file name |
| 3033 | * - full path if sfname used, |
| 3034 | * - any file name if sfname is NULL |
| 3035 | * - empty string to re-edit with the same file name (but may be |
| 3036 | * in a different directory) |
| 3037 | * - NULL to start an empty buffer |
| 3038 | * sfname: the short file name (or NULL) |
| 3039 | * eap: contains the command to be executed after loading the file and |
| 3040 | * forced 'ff' and 'fenc' |
| 3041 | * newlnum: if > 0: put cursor on this line number (if possible) |
| 3042 | * if ECMD_LASTL: use last position in loaded file |
| 3043 | * if ECMD_LAST: use last position in all files |
| 3044 | * if ECMD_ONE: use first line |
| 3045 | * flags: |
| 3046 | * ECMD_HIDE: if TRUE don't free the current buffer |
| 3047 | * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file |
| 3048 | * ECMD_OLDBUF: use existing buffer if it exists |
| 3049 | * ECMD_FORCEIT: ! used for Ex command |
| 3050 | * ECMD_ADDBUF: don't edit, just add to buffer list |
| 3051 | * |
| 3052 | * return FAIL for failure, OK otherwise |
| 3053 | */ |
| 3054 | int |
| 3055 | do_ecmd(fnum, ffname, sfname, eap, newlnum, flags) |
| 3056 | int fnum; |
| 3057 | char_u *ffname; |
| 3058 | char_u *sfname; |
| 3059 | exarg_T *eap; /* can be NULL! */ |
| 3060 | linenr_T newlnum; |
| 3061 | int flags; |
| 3062 | { |
| 3063 | int other_file; /* TRUE if editing another file */ |
| 3064 | int oldbuf; /* TRUE if using existing buffer */ |
| 3065 | #ifdef FEAT_AUTOCMD |
| 3066 | int auto_buf = FALSE; /* TRUE if autocommands brought us |
| 3067 | into the buffer unexpectedly */ |
| 3068 | char_u *new_name = NULL; |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 3069 | int did_set_swapcommand = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3070 | #endif |
| 3071 | buf_T *buf; |
| 3072 | #if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 3073 | buf_T *old_curbuf = curbuf; |
| 3074 | #endif |
| 3075 | char_u *free_fname = NULL; |
| 3076 | #ifdef FEAT_BROWSE |
| 3077 | char_u *browse_file = NULL; |
| 3078 | #endif |
| 3079 | int retval = FAIL; |
| 3080 | long n; |
| 3081 | linenr_T lnum; |
| 3082 | linenr_T topline = 0; |
| 3083 | int newcol = -1; |
| 3084 | int solcol = -1; |
| 3085 | pos_T *pos; |
| 3086 | #ifdef FEAT_SUN_WORKSHOP |
| 3087 | char_u *cp; |
| 3088 | #endif |
| 3089 | char_u *command = NULL; |
| 3090 | |
| 3091 | if (eap != NULL) |
| 3092 | command = eap->do_ecmd_cmd; |
| 3093 | |
| 3094 | if (fnum != 0) |
| 3095 | { |
| 3096 | if (fnum == curbuf->b_fnum) /* file is already being edited */ |
| 3097 | return OK; /* nothing to do */ |
| 3098 | other_file = TRUE; |
| 3099 | } |
| 3100 | else |
| 3101 | { |
| 3102 | #ifdef FEAT_BROWSE |
| 3103 | if (cmdmod.browse) |
| 3104 | { |
Bram Moolenaar | 0be6e64 | 2005-08-04 21:32:22 +0000 | [diff] [blame] | 3105 | if ( |
| 3106 | # ifdef FEAT_GUI |
| 3107 | !gui.in_use && |
| 3108 | # endif |
| 3109 | au_has_group((char_u *)"FileExplorer")) |
| 3110 | { |
| 3111 | /* No browsing supported but we do have the file explorer: |
| 3112 | * Edit the directory. */ |
| 3113 | if (ffname == NULL || !mch_isdir(ffname)) |
| 3114 | ffname = (char_u *)"."; |
| 3115 | } |
| 3116 | else |
| 3117 | { |
| 3118 | browse_file = do_browse(0, (char_u *)_("Edit File"), ffname, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3119 | NULL, NULL, NULL, curbuf); |
Bram Moolenaar | 0be6e64 | 2005-08-04 21:32:22 +0000 | [diff] [blame] | 3120 | if (browse_file == NULL) |
| 3121 | goto theend; |
| 3122 | ffname = browse_file; |
| 3123 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3124 | } |
| 3125 | #endif |
| 3126 | /* if no short name given, use ffname for short name */ |
| 3127 | if (sfname == NULL) |
| 3128 | sfname = ffname; |
| 3129 | #ifdef USE_FNAME_CASE |
| 3130 | # ifdef USE_LONG_FNAME |
| 3131 | if (USE_LONG_FNAME) |
| 3132 | # endif |
Bram Moolenaar | 342337a | 2005-07-21 21:11:17 +0000 | [diff] [blame] | 3133 | if (sfname != NULL) |
| 3134 | fname_case(sfname, 0); /* set correct case for sfname */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3135 | #endif |
| 3136 | |
| 3137 | #ifdef FEAT_LISTCMDS |
| 3138 | if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL)) |
| 3139 | goto theend; |
| 3140 | #endif |
| 3141 | |
| 3142 | if (ffname == NULL) |
| 3143 | other_file = TRUE; |
| 3144 | /* there is no file name */ |
| 3145 | else if (*ffname == NUL && curbuf->b_ffname == NULL) |
| 3146 | other_file = FALSE; |
| 3147 | else |
| 3148 | { |
| 3149 | if (*ffname == NUL) /* re-edit with same file name */ |
| 3150 | { |
| 3151 | ffname = curbuf->b_ffname; |
| 3152 | sfname = curbuf->b_fname; |
| 3153 | } |
| 3154 | free_fname = fix_fname(ffname); /* may expand to full path name */ |
| 3155 | if (free_fname != NULL) |
| 3156 | ffname = free_fname; |
| 3157 | other_file = otherfile(ffname); |
| 3158 | #ifdef FEAT_SUN_WORKSHOP |
| 3159 | if (usingSunWorkShop && p_acd |
| 3160 | && (cp = vim_strrchr(sfname, '/')) != NULL) |
| 3161 | sfname = ++cp; |
| 3162 | #endif |
| 3163 | } |
| 3164 | } |
| 3165 | |
| 3166 | /* |
| 3167 | * if the file was changed we may not be allowed to abandon it |
| 3168 | * - if we are going to re-edit the same file |
| 3169 | * - or if we are the only window on this file and if ECMD_HIDE is FALSE |
| 3170 | */ |
| 3171 | if ( ((!other_file && !(flags & ECMD_OLDBUF)) |
| 3172 | || (curbuf->b_nwindows == 1 |
| 3173 | && !(flags & (ECMD_HIDE | ECMD_ADDBUF)))) |
| 3174 | && check_changed(curbuf, p_awa, !other_file, |
| 3175 | (flags & ECMD_FORCEIT), FALSE)) |
| 3176 | { |
| 3177 | if (fnum == 0 && other_file && ffname != NULL) |
| 3178 | (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum); |
| 3179 | goto theend; |
| 3180 | } |
| 3181 | |
| 3182 | #ifdef FEAT_VISUAL |
| 3183 | /* |
| 3184 | * End Visual mode before switching to another buffer, so the text can be |
| 3185 | * copied into the GUI selection buffer. |
| 3186 | */ |
| 3187 | reset_VIsual(); |
| 3188 | #endif |
| 3189 | |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 3190 | #ifdef FEAT_AUTOCMD |
| 3191 | if ((command != NULL || newlnum > (linenr_T)0) |
| 3192 | && *get_vim_var_str(VV_SWAPCOMMAND) == NUL) |
| 3193 | { |
| 3194 | int len; |
| 3195 | char_u *p; |
| 3196 | |
| 3197 | /* Set v:swapcommand for the SwapExists autocommands. */ |
| 3198 | if (command != NULL) |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 3199 | len = (int)STRLEN(command) + 3; |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 3200 | else |
| 3201 | len = 30; |
| 3202 | p = alloc((unsigned)len); |
| 3203 | if (p != NULL) |
| 3204 | { |
| 3205 | if (command != NULL) |
| 3206 | vim_snprintf((char *)p, len, ":%s\r", command); |
| 3207 | else |
| 3208 | vim_snprintf((char *)p, len, "%ldG", (long)newlnum); |
| 3209 | set_vim_var_string(VV_SWAPCOMMAND, p, -1); |
| 3210 | did_set_swapcommand = TRUE; |
| 3211 | vim_free(p); |
| 3212 | } |
| 3213 | } |
| 3214 | #endif |
| 3215 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3216 | /* |
| 3217 | * If we are starting to edit another file, open a (new) buffer. |
| 3218 | * Otherwise we re-use the current buffer. |
| 3219 | */ |
| 3220 | if (other_file) |
| 3221 | { |
| 3222 | #ifdef FEAT_LISTCMDS |
| 3223 | if (!(flags & ECMD_ADDBUF)) |
| 3224 | #endif |
| 3225 | { |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 3226 | if (!cmdmod.keepalt) |
| 3227 | curwin->w_alt_fnum = curbuf->b_fnum; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3228 | buflist_altfpos(); |
| 3229 | } |
| 3230 | |
| 3231 | if (fnum) |
| 3232 | buf = buflist_findnr(fnum); |
| 3233 | else |
| 3234 | { |
| 3235 | #ifdef FEAT_LISTCMDS |
| 3236 | if (flags & ECMD_ADDBUF) |
| 3237 | { |
| 3238 | linenr_T tlnum = 1L; |
| 3239 | |
| 3240 | if (command != NULL) |
| 3241 | { |
| 3242 | tlnum = atol((char *)command); |
| 3243 | if (tlnum <= 0) |
| 3244 | tlnum = 1L; |
| 3245 | } |
| 3246 | (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED); |
| 3247 | goto theend; |
| 3248 | } |
| 3249 | #endif |
| 3250 | buf = buflist_new(ffname, sfname, 0L, |
| 3251 | BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED)); |
| 3252 | } |
| 3253 | if (buf == NULL) |
| 3254 | goto theend; |
| 3255 | if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */ |
| 3256 | { |
| 3257 | oldbuf = FALSE; |
| 3258 | buf->b_nwindows = 0; |
| 3259 | } |
| 3260 | else /* existing memfile */ |
| 3261 | { |
| 3262 | oldbuf = TRUE; |
| 3263 | (void)buf_check_timestamp(buf, FALSE); |
| 3264 | /* Check if autocommands made buffer invalid or changed the current |
| 3265 | * buffer. */ |
| 3266 | if (!buf_valid(buf) |
| 3267 | #ifdef FEAT_AUTOCMD |
| 3268 | || curbuf != old_curbuf |
| 3269 | #endif |
| 3270 | ) |
| 3271 | goto theend; |
| 3272 | #ifdef FEAT_EVAL |
| 3273 | if (aborting()) /* autocmds may abort script processing */ |
| 3274 | goto theend; |
| 3275 | #endif |
| 3276 | } |
| 3277 | |
| 3278 | /* May jump to last used line number for a loaded buffer or when asked |
| 3279 | * for explicitly */ |
| 3280 | if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST) |
| 3281 | { |
| 3282 | pos = buflist_findfpos(buf); |
| 3283 | newlnum = pos->lnum; |
| 3284 | solcol = pos->col; |
| 3285 | } |
| 3286 | |
| 3287 | /* |
| 3288 | * Make the (new) buffer the one used by the current window. |
| 3289 | * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE. |
| 3290 | * If the current buffer was empty and has no file name, curbuf |
| 3291 | * is returned by buflist_new(). |
| 3292 | */ |
| 3293 | if (buf != curbuf) |
| 3294 | { |
| 3295 | #ifdef FEAT_AUTOCMD |
| 3296 | /* |
| 3297 | * Be careful: The autocommands may delete any buffer and change |
| 3298 | * the current buffer. |
| 3299 | * - If the buffer we are going to edit is deleted, give up. |
| 3300 | * - If the current buffer is deleted, prefer to load the new |
| 3301 | * buffer when loading a buffer is required. This avoids |
| 3302 | * loading another buffer which then must be closed again. |
| 3303 | * - If we ended up in the new buffer already, need to skip a few |
| 3304 | * things, set auto_buf. |
| 3305 | */ |
| 3306 | if (buf->b_fname != NULL) |
| 3307 | new_name = vim_strsave(buf->b_fname); |
| 3308 | au_new_curbuf = buf; |
| 3309 | apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); |
| 3310 | if (!buf_valid(buf)) /* new buffer has been deleted */ |
| 3311 | { |
| 3312 | delbuf_msg(new_name); /* frees new_name */ |
| 3313 | goto theend; |
| 3314 | } |
| 3315 | # ifdef FEAT_EVAL |
| 3316 | if (aborting()) /* autocmds may abort script processing */ |
| 3317 | { |
| 3318 | vim_free(new_name); |
| 3319 | goto theend; |
| 3320 | } |
| 3321 | # endif |
| 3322 | if (buf == curbuf) /* already in new buffer */ |
| 3323 | auto_buf = TRUE; |
| 3324 | else |
| 3325 | { |
| 3326 | if (curbuf == old_curbuf) |
| 3327 | #endif |
| 3328 | buf_copy_options(buf, BCO_ENTER); |
| 3329 | |
| 3330 | /* close the link to the current buffer */ |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 3331 | u_sync(FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3332 | close_buffer(curwin, curbuf, |
| 3333 | (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD); |
| 3334 | |
| 3335 | #ifdef FEAT_AUTOCMD |
| 3336 | # ifdef FEAT_EVAL |
| 3337 | if (aborting()) /* autocmds may abort script processing */ |
| 3338 | { |
| 3339 | vim_free(new_name); |
| 3340 | goto theend; |
| 3341 | } |
| 3342 | # endif |
| 3343 | /* Be careful again, like above. */ |
| 3344 | if (!buf_valid(buf)) /* new buffer has been deleted */ |
| 3345 | { |
| 3346 | delbuf_msg(new_name); /* frees new_name */ |
| 3347 | goto theend; |
| 3348 | } |
| 3349 | if (buf == curbuf) /* already in new buffer */ |
| 3350 | auto_buf = TRUE; |
| 3351 | else |
| 3352 | #endif |
| 3353 | { |
| 3354 | curwin->w_buffer = buf; |
| 3355 | curbuf = buf; |
| 3356 | ++curbuf->b_nwindows; |
| 3357 | /* set 'fileformat' */ |
| 3358 | if (*p_ffs && !oldbuf) |
| 3359 | set_fileformat(default_fileformat(), OPT_LOCAL); |
| 3360 | } |
| 3361 | |
| 3362 | /* May get the window options from the last time this buffer |
| 3363 | * was in this window (or another window). If not used |
| 3364 | * before, reset the local window options to the global |
| 3365 | * values. Also restores old folding stuff. */ |
| 3366 | get_winopts(buf); |
| 3367 | |
| 3368 | #ifdef FEAT_AUTOCMD |
| 3369 | } |
| 3370 | vim_free(new_name); |
| 3371 | au_new_curbuf = NULL; |
| 3372 | #endif |
| 3373 | } |
| 3374 | else |
| 3375 | ++curbuf->b_nwindows; |
| 3376 | |
| 3377 | curwin->w_pcmark.lnum = 1; |
| 3378 | curwin->w_pcmark.col = 0; |
| 3379 | } |
| 3380 | else /* !other_file */ |
| 3381 | { |
| 3382 | if ( |
| 3383 | #ifdef FEAT_LISTCMDS |
| 3384 | (flags & ECMD_ADDBUF) || |
| 3385 | #endif |
| 3386 | check_fname() == FAIL) |
| 3387 | goto theend; |
| 3388 | oldbuf = (flags & ECMD_OLDBUF); |
| 3389 | } |
| 3390 | |
| 3391 | if ((flags & ECMD_SET_HELP) || keep_help_flag) |
| 3392 | { |
| 3393 | char_u *p; |
| 3394 | |
| 3395 | curbuf->b_help = TRUE; |
| 3396 | #ifdef FEAT_QUICKFIX |
| 3397 | set_string_option_direct((char_u *)"buftype", -1, |
Bram Moolenaar | 5e3cb7e | 2006-02-27 23:58:35 +0000 | [diff] [blame] | 3398 | (char_u *)"help", OPT_FREE|OPT_LOCAL, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3399 | #endif |
| 3400 | |
| 3401 | /* |
| 3402 | * Always set these options after jumping to a help tag, because the |
| 3403 | * user may have an autocommand that gets in the way. |
| 3404 | * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and |
| 3405 | * latin1 word characters (for translated help files). |
| 3406 | * Only set it when needed, buf_init_chartab() is some work. |
| 3407 | */ |
| 3408 | p = |
| 3409 | #ifdef EBCDIC |
| 3410 | (char_u *)"65-255,^*,^|,^\""; |
| 3411 | #else |
| 3412 | (char_u *)"!-~,^*,^|,^\",192-255"; |
| 3413 | #endif |
| 3414 | if (STRCMP(curbuf->b_p_isk, p) != 0) |
| 3415 | { |
| 3416 | set_string_option_direct((char_u *)"isk", -1, p, |
Bram Moolenaar | 5e3cb7e | 2006-02-27 23:58:35 +0000 | [diff] [blame] | 3417 | OPT_FREE|OPT_LOCAL, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3418 | check_buf_options(curbuf); |
| 3419 | (void)buf_init_chartab(curbuf, FALSE); |
| 3420 | } |
| 3421 | |
| 3422 | curbuf->b_p_ts = 8; /* 'tabstop' is 8 */ |
| 3423 | curwin->w_p_list = FALSE; /* no list mode */ |
| 3424 | |
| 3425 | curbuf->b_p_ma = FALSE; /* not modifiable */ |
| 3426 | curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */ |
| 3427 | curwin->w_p_nu = 0; /* no line numbers */ |
| 3428 | #ifdef FEAT_SCROLLBIND |
| 3429 | curwin->w_p_scb = FALSE; /* no scroll binding */ |
| 3430 | #endif |
| 3431 | #ifdef FEAT_ARABIC |
| 3432 | curwin->w_p_arab = FALSE; /* no arabic mode */ |
| 3433 | #endif |
| 3434 | #ifdef FEAT_RIGHTLEFT |
| 3435 | curwin->w_p_rl = FALSE; /* help window is left-to-right */ |
| 3436 | #endif |
| 3437 | #ifdef FEAT_FOLDING |
| 3438 | curwin->w_p_fen = FALSE; /* No folding in the help window */ |
| 3439 | #endif |
| 3440 | #ifdef FEAT_DIFF |
| 3441 | curwin->w_p_diff = FALSE; /* No 'diff' */ |
| 3442 | #endif |
Bram Moolenaar | a1956f6 | 2006-03-12 22:18:00 +0000 | [diff] [blame] | 3443 | #ifdef FEAT_SPELL |
Bram Moolenaar | 9a50b1b | 2005-06-27 22:48:21 +0000 | [diff] [blame] | 3444 | curwin->w_p_spell = FALSE; /* No spell checking */ |
| 3445 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3446 | |
| 3447 | #ifdef FEAT_AUTOCMD |
| 3448 | buf = curbuf; |
| 3449 | #endif |
| 3450 | set_buflisted(FALSE); |
| 3451 | } |
| 3452 | else |
| 3453 | { |
| 3454 | #ifdef FEAT_AUTOCMD |
| 3455 | buf = curbuf; |
| 3456 | #endif |
| 3457 | /* Don't make a buffer listed if it's a help buffer. Useful when |
| 3458 | * using CTRL-O to go back to a help file. */ |
| 3459 | if (!curbuf->b_help) |
| 3460 | set_buflisted(TRUE); |
| 3461 | } |
| 3462 | |
| 3463 | #ifdef FEAT_AUTOCMD |
| 3464 | /* If autocommands change buffers under our fingers, forget about |
| 3465 | * editing the file. */ |
| 3466 | if (buf != curbuf) |
| 3467 | goto theend; |
| 3468 | # ifdef FEAT_EVAL |
| 3469 | if (aborting()) /* autocmds may abort script processing */ |
| 3470 | goto theend; |
| 3471 | # endif |
| 3472 | |
| 3473 | /* Since we are starting to edit a file, consider the filetype to be |
| 3474 | * unset. Helps for when an autocommand changes files and expects syntax |
| 3475 | * highlighting to work in the other file. */ |
| 3476 | did_filetype = FALSE; |
| 3477 | #endif |
| 3478 | |
| 3479 | /* |
| 3480 | * other_file oldbuf |
| 3481 | * FALSE FALSE re-edit same file, buffer is re-used |
| 3482 | * FALSE TRUE re-edit same file, nothing changes |
| 3483 | * TRUE FALSE start editing new file, new buffer |
| 3484 | * TRUE TRUE start editing in existing buffer (nothing to do) |
| 3485 | */ |
| 3486 | if (!other_file && !oldbuf) /* re-use the buffer */ |
| 3487 | { |
| 3488 | set_last_cursor(curwin); /* may set b_last_cursor */ |
| 3489 | if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL) |
| 3490 | { |
| 3491 | newlnum = curwin->w_cursor.lnum; |
| 3492 | solcol = curwin->w_cursor.col; |
| 3493 | } |
| 3494 | #ifdef FEAT_AUTOCMD |
| 3495 | buf = curbuf; |
| 3496 | if (buf->b_fname != NULL) |
| 3497 | new_name = vim_strsave(buf->b_fname); |
| 3498 | else |
| 3499 | new_name = NULL; |
| 3500 | #endif |
| 3501 | buf_freeall(curbuf, FALSE, FALSE); /* free all things for buffer */ |
| 3502 | #ifdef FEAT_AUTOCMD |
| 3503 | /* If autocommands deleted the buffer we were going to re-edit, give |
| 3504 | * up and jump to the end. */ |
| 3505 | if (!buf_valid(buf)) |
| 3506 | { |
| 3507 | delbuf_msg(new_name); /* frees new_name */ |
| 3508 | goto theend; |
| 3509 | } |
| 3510 | vim_free(new_name); |
| 3511 | |
| 3512 | /* If autocommands change buffers under our fingers, forget about |
| 3513 | * re-editing the file. Should do the buf_clear_file(), but perhaps |
| 3514 | * the autocommands changed the buffer... */ |
| 3515 | if (buf != curbuf) |
| 3516 | goto theend; |
| 3517 | # ifdef FEAT_EVAL |
| 3518 | if (aborting()) /* autocmds may abort script processing */ |
| 3519 | goto theend; |
| 3520 | # endif |
| 3521 | #endif |
| 3522 | buf_clear_file(curbuf); |
| 3523 | curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */ |
| 3524 | curbuf->b_op_end.lnum = 0; |
| 3525 | } |
| 3526 | |
| 3527 | /* |
| 3528 | * If we get here we are sure to start editing |
| 3529 | */ |
| 3530 | /* don't redraw until the cursor is in the right line */ |
| 3531 | ++RedrawingDisabled; |
| 3532 | |
| 3533 | /* Assume success now */ |
| 3534 | retval = OK; |
| 3535 | |
| 3536 | /* |
| 3537 | * Reset cursor position, could be used by autocommands. |
| 3538 | */ |
| 3539 | check_cursor(); |
| 3540 | |
| 3541 | /* |
| 3542 | * Check if we are editing the w_arg_idx file in the argument list. |
| 3543 | */ |
| 3544 | check_arg_idx(curwin); |
| 3545 | |
| 3546 | #ifdef FEAT_AUTOCMD |
| 3547 | if (!auto_buf) |
| 3548 | #endif |
| 3549 | { |
| 3550 | /* |
| 3551 | * Set cursor and init window before reading the file and executing |
| 3552 | * autocommands. This allows for the autocommands to position the |
| 3553 | * cursor. |
| 3554 | */ |
Bram Moolenaar | faa959a | 2006-02-20 21:37:40 +0000 | [diff] [blame] | 3555 | curwin_init(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3556 | |
| 3557 | #ifdef FEAT_FOLDING |
| 3558 | /* It's like all lines in the buffer changed. Need to update |
| 3559 | * automatic folding. */ |
| 3560 | foldUpdateAll(curwin); |
| 3561 | #endif |
| 3562 | |
Bram Moolenaar | 498efdb | 2006-09-05 14:31:54 +0000 | [diff] [blame] | 3563 | /* Change directories when the 'acd' option is set. */ |
| 3564 | DO_AUTOCHDIR |
| 3565 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3566 | /* |
| 3567 | * Careful: open_buffer() and apply_autocmds() may change the current |
| 3568 | * buffer and window. |
| 3569 | */ |
| 3570 | lnum = curwin->w_cursor.lnum; |
| 3571 | topline = curwin->w_topline; |
| 3572 | if (!oldbuf) /* need to read the file */ |
| 3573 | { |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 3574 | #if defined(HAS_SWAP_EXISTS_ACTION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3575 | swap_exists_action = SEA_DIALOG; |
| 3576 | #endif |
| 3577 | curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */ |
| 3578 | |
| 3579 | /* |
| 3580 | * Open the buffer and read the file. |
| 3581 | */ |
| 3582 | #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
| 3583 | if (should_abort(open_buffer(FALSE, eap))) |
| 3584 | retval = FAIL; |
| 3585 | #else |
| 3586 | (void)open_buffer(FALSE, eap); |
| 3587 | #endif |
| 3588 | |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 3589 | #if defined(HAS_SWAP_EXISTS_ACTION) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3590 | if (swap_exists_action == SEA_QUIT) |
| 3591 | retval = FAIL; |
| 3592 | handle_swap_exists(old_curbuf); |
| 3593 | #endif |
| 3594 | } |
| 3595 | #ifdef FEAT_AUTOCMD |
| 3596 | else |
| 3597 | { |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 3598 | /* Read the modelines, but only to set window-local options. Any |
| 3599 | * buffer-local options have already been set and may have been |
| 3600 | * changed by the user. */ |
Bram Moolenaar | a3227e2 | 2006-03-08 21:32:40 +0000 | [diff] [blame] | 3601 | do_modelines(OPT_WINONLY); |
Bram Moolenaar | 15d0a8c | 2004-09-06 17:44:46 +0000 | [diff] [blame] | 3602 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3603 | apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, |
| 3604 | &retval); |
| 3605 | apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf, |
| 3606 | &retval); |
| 3607 | } |
| 3608 | check_arg_idx(curwin); |
| 3609 | #endif |
| 3610 | |
| 3611 | /* |
| 3612 | * If autocommands change the cursor position or topline, we should |
| 3613 | * keep it. |
| 3614 | */ |
| 3615 | if (curwin->w_cursor.lnum != lnum) |
| 3616 | { |
| 3617 | newlnum = curwin->w_cursor.lnum; |
| 3618 | newcol = curwin->w_cursor.col; |
| 3619 | } |
| 3620 | if (curwin->w_topline == topline) |
| 3621 | topline = 0; |
| 3622 | |
| 3623 | /* Even when cursor didn't move we need to recompute topline. */ |
| 3624 | changed_line_abv_curs(); |
| 3625 | |
| 3626 | #ifdef FEAT_TITLE |
| 3627 | maketitle(); |
| 3628 | #endif |
| 3629 | } |
| 3630 | |
| 3631 | #ifdef FEAT_DIFF |
| 3632 | /* Tell the diff stuff that this buffer is new and/or needs updating. |
| 3633 | * Also needed when re-editing the same buffer, because unloading will |
| 3634 | * have removed it as a diff buffer. */ |
Bram Moolenaar | 997fb4b | 2006-02-17 21:53:23 +0000 | [diff] [blame] | 3635 | if (curwin->w_p_diff) |
| 3636 | { |
| 3637 | diff_buf_add(curbuf); |
| 3638 | diff_invalidate(curbuf); |
| 3639 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3640 | #endif |
| 3641 | |
| 3642 | if (command == NULL) |
| 3643 | { |
| 3644 | if (newcol >= 0) /* position set by autocommands */ |
| 3645 | { |
| 3646 | curwin->w_cursor.lnum = newlnum; |
| 3647 | curwin->w_cursor.col = newcol; |
| 3648 | check_cursor(); |
| 3649 | } |
| 3650 | else if (newlnum > 0) /* line number from caller or old position */ |
| 3651 | { |
| 3652 | curwin->w_cursor.lnum = newlnum; |
| 3653 | check_cursor_lnum(); |
| 3654 | if (solcol >= 0 && !p_sol) |
| 3655 | { |
| 3656 | /* 'sol' is off: Use last known column. */ |
| 3657 | curwin->w_cursor.col = solcol; |
| 3658 | check_cursor_col(); |
| 3659 | #ifdef FEAT_VIRTUALEDIT |
| 3660 | curwin->w_cursor.coladd = 0; |
| 3661 | #endif |
| 3662 | curwin->w_set_curswant = TRUE; |
| 3663 | } |
| 3664 | else |
| 3665 | beginline(BL_SOL | BL_FIX); |
| 3666 | } |
| 3667 | else /* no line number, go to last line in Ex mode */ |
| 3668 | { |
| 3669 | if (exmode_active) |
| 3670 | curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; |
| 3671 | beginline(BL_WHITE | BL_FIX); |
| 3672 | } |
| 3673 | } |
| 3674 | |
| 3675 | #ifdef FEAT_WINDOWS |
| 3676 | /* Check if cursors in other windows on the same buffer are still valid */ |
| 3677 | check_lnums(FALSE); |
| 3678 | #endif |
| 3679 | |
| 3680 | /* |
| 3681 | * Did not read the file, need to show some info about the file. |
| 3682 | * Do this after setting the cursor. |
| 3683 | */ |
| 3684 | if (oldbuf |
| 3685 | #ifdef FEAT_AUTOCMD |
| 3686 | && !auto_buf |
| 3687 | #endif |
| 3688 | ) |
| 3689 | { |
| 3690 | int msg_scroll_save = msg_scroll; |
| 3691 | |
| 3692 | /* Obey the 'O' flag in 'cpoptions': overwrite any previous file |
| 3693 | * message. */ |
| 3694 | if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0) |
| 3695 | msg_scroll = FALSE; |
| 3696 | if (!msg_scroll) /* wait a bit when overwriting an error msg */ |
| 3697 | check_for_delay(FALSE); |
| 3698 | msg_start(); |
| 3699 | msg_scroll = msg_scroll_save; |
| 3700 | msg_scrolled_ign = TRUE; |
| 3701 | |
| 3702 | fileinfo(FALSE, TRUE, FALSE); |
| 3703 | |
| 3704 | msg_scrolled_ign = FALSE; |
| 3705 | } |
| 3706 | |
| 3707 | if (command != NULL) |
| 3708 | do_cmdline(command, NULL, NULL, DOCMD_VERBOSE); |
| 3709 | |
| 3710 | #ifdef FEAT_KEYMAP |
| 3711 | if (curbuf->b_kmap_state & KEYMAP_INIT) |
| 3712 | keymap_init(); |
| 3713 | #endif |
| 3714 | |
| 3715 | --RedrawingDisabled; |
| 3716 | if (!skip_redraw) |
| 3717 | { |
| 3718 | n = p_so; |
| 3719 | if (topline == 0 && command == NULL) |
| 3720 | p_so = 999; /* force cursor halfway the window */ |
| 3721 | update_topline(); |
| 3722 | #ifdef FEAT_SCROLLBIND |
| 3723 | curwin->w_scbind_pos = curwin->w_topline; |
| 3724 | #endif |
| 3725 | p_so = n; |
| 3726 | redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */ |
| 3727 | } |
| 3728 | |
| 3729 | if (p_im) |
| 3730 | need_start_insertmode = TRUE; |
| 3731 | |
Bram Moolenaar | 498efdb | 2006-09-05 14:31:54 +0000 | [diff] [blame] | 3732 | /* Change directories when the 'acd' option is set. */ |
| 3733 | DO_AUTOCHDIR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3734 | |
Bram Moolenaar | 7b89edc | 2006-04-06 20:21:51 +0000 | [diff] [blame] | 3735 | #if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3736 | if (gui.in_use && curbuf->b_ffname != NULL) |
| 3737 | { |
| 3738 | # ifdef FEAT_SUN_WORKSHOP |
| 3739 | if (usingSunWorkShop) |
| 3740 | workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro); |
| 3741 | # endif |
| 3742 | # ifdef FEAT_NETBEANS_INTG |
Bram Moolenaar | 35a9aaa | 2004-10-24 19:23:07 +0000 | [diff] [blame] | 3743 | if (usingNetbeans & ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)) |
| 3744 | netbeans_file_opened(curbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3745 | # endif |
| 3746 | } |
| 3747 | #endif |
| 3748 | |
| 3749 | theend: |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 3750 | #ifdef FEAT_AUTOCMD |
| 3751 | if (did_set_swapcommand) |
| 3752 | set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); |
| 3753 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3754 | #ifdef FEAT_BROWSE |
| 3755 | vim_free(browse_file); |
| 3756 | #endif |
| 3757 | vim_free(free_fname); |
| 3758 | return retval; |
| 3759 | } |
| 3760 | |
| 3761 | #ifdef FEAT_AUTOCMD |
| 3762 | static void |
| 3763 | delbuf_msg(name) |
| 3764 | char_u *name; |
| 3765 | { |
| 3766 | EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"), |
| 3767 | name == NULL ? (char_u *)"" : name); |
| 3768 | vim_free(name); |
| 3769 | au_new_curbuf = NULL; |
| 3770 | } |
| 3771 | #endif |
| 3772 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3773 | static int append_indent = 0; /* autoindent for first line */ |
| 3774 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3775 | /* |
| 3776 | * ":insert" and ":append", also used by ":change" |
| 3777 | */ |
| 3778 | void |
| 3779 | ex_append(eap) |
| 3780 | exarg_T *eap; |
| 3781 | { |
| 3782 | char_u *theline; |
| 3783 | int did_undo = FALSE; |
| 3784 | linenr_T lnum = eap->line2; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3785 | int indent = 0; |
| 3786 | char_u *p; |
| 3787 | int vcol; |
| 3788 | int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3789 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3790 | /* the ! flag toggles autoindent */ |
| 3791 | if (eap->forceit) |
| 3792 | curbuf->b_p_ai = !curbuf->b_p_ai; |
| 3793 | |
| 3794 | /* First autoindent comes from the line we start on */ |
| 3795 | if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0) |
| 3796 | append_indent = get_indent_lnum(lnum); |
| 3797 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3798 | if (eap->cmdidx != CMD_append) |
| 3799 | --lnum; |
| 3800 | |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3801 | /* when the buffer is empty append to line 0 and delete the dummy line */ |
| 3802 | if (empty && lnum == 1) |
| 3803 | lnum = 0; |
| 3804 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3805 | State = INSERT; /* behave like in Insert mode */ |
| 3806 | if (curbuf->b_p_iminsert == B_IMODE_LMAP) |
| 3807 | State |= LANGMAP; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3808 | |
Bram Moolenaar | d8e9bb2 | 2005-07-09 21:14:46 +0000 | [diff] [blame] | 3809 | for (;;) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3810 | { |
| 3811 | msg_scroll = TRUE; |
| 3812 | need_wait_return = FALSE; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3813 | if (curbuf->b_p_ai) |
| 3814 | { |
| 3815 | if (append_indent >= 0) |
| 3816 | { |
| 3817 | indent = append_indent; |
| 3818 | append_indent = -1; |
| 3819 | } |
| 3820 | else if (lnum > 0) |
| 3821 | indent = get_indent_lnum(lnum); |
| 3822 | } |
| 3823 | ex_keep_indent = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3824 | if (eap->getline == NULL) |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3825 | { |
| 3826 | /* No getline() function, use the lines that follow. This ends |
| 3827 | * when there is no more. */ |
| 3828 | if (eap->nextcmd == NULL || *eap->nextcmd == NUL) |
| 3829 | break; |
| 3830 | p = vim_strchr(eap->nextcmd, NL); |
| 3831 | if (p == NULL) |
| 3832 | p = eap->nextcmd + STRLEN(eap->nextcmd); |
| 3833 | theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd)); |
| 3834 | if (*p != NUL) |
| 3835 | ++p; |
| 3836 | eap->nextcmd = p; |
| 3837 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3838 | else |
| 3839 | theline = eap->getline( |
| 3840 | #ifdef FEAT_EVAL |
Bram Moolenaar | 3d60ec2 | 2005-01-05 22:19:46 +0000 | [diff] [blame] | 3841 | eap->cstack->cs_looplevel > 0 ? -1 : |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3842 | #endif |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3843 | NUL, eap->cookie, indent); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3844 | lines_left = Rows - 1; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3845 | if (theline == NULL) |
| 3846 | break; |
| 3847 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3848 | /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */ |
| 3849 | if (ex_keep_indent) |
| 3850 | append_indent = indent; |
| 3851 | |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3852 | /* Look for the "." after automatic indent. */ |
| 3853 | vcol = 0; |
| 3854 | for (p = theline; indent > vcol; ++p) |
| 3855 | { |
| 3856 | if (*p == ' ') |
| 3857 | ++vcol; |
| 3858 | else if (*p == TAB) |
| 3859 | vcol += 8 - vcol % 8; |
| 3860 | else |
| 3861 | break; |
| 3862 | } |
| 3863 | if ((p[0] == '.' && p[1] == NUL) |
Bram Moolenaar | eaa48e7 | 2005-06-08 22:07:37 +0000 | [diff] [blame] | 3864 | || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0)) |
| 3865 | == FAIL)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3866 | { |
| 3867 | vim_free(theline); |
| 3868 | break; |
| 3869 | } |
| 3870 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3871 | /* don't use autoindent if nothing was typed. */ |
| 3872 | if (p[0] == NUL) |
| 3873 | theline[0] = NUL; |
| 3874 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3875 | did_undo = TRUE; |
| 3876 | ml_append(lnum, theline, (colnr_T)0, FALSE); |
| 3877 | appended_lines_mark(lnum, 1L); |
| 3878 | |
| 3879 | vim_free(theline); |
| 3880 | ++lnum; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3881 | |
| 3882 | if (empty) |
| 3883 | { |
| 3884 | ml_delete(2L, FALSE); |
| 3885 | empty = FALSE; |
| 3886 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3887 | } |
| 3888 | State = NORMAL; |
| 3889 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3890 | if (eap->forceit) |
| 3891 | curbuf->b_p_ai = !curbuf->b_p_ai; |
| 3892 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3893 | /* "start" is set to eap->line2+1 unless that position is invalid (when |
| 3894 | * eap->line2 pointed to the end of the buffer and nothig was appended) |
| 3895 | * "end" is set to lnum when something has been appended, otherwise |
| 3896 | * it is the same than "start" -- Acevedo */ |
| 3897 | curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ? |
| 3898 | eap->line2 + 1 : curbuf->b_ml.ml_line_count; |
| 3899 | if (eap->cmdidx != CMD_append) |
| 3900 | --curbuf->b_op_start.lnum; |
| 3901 | curbuf->b_op_end.lnum = (eap->line2 < lnum) |
| 3902 | ? lnum : curbuf->b_op_start.lnum; |
| 3903 | curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
| 3904 | curwin->w_cursor.lnum = lnum; |
| 3905 | check_cursor_lnum(); |
| 3906 | beginline(BL_SOL | BL_FIX); |
| 3907 | |
| 3908 | need_wait_return = FALSE; /* don't use wait_return() now */ |
| 3909 | ex_no_reprint = TRUE; |
| 3910 | } |
| 3911 | |
| 3912 | /* |
| 3913 | * ":change" |
| 3914 | */ |
| 3915 | void |
| 3916 | ex_change(eap) |
| 3917 | exarg_T *eap; |
| 3918 | { |
| 3919 | linenr_T lnum; |
| 3920 | |
| 3921 | if (eap->line2 >= eap->line1 |
| 3922 | && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL) |
| 3923 | return; |
| 3924 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3925 | /* the ! flag toggles autoindent */ |
| 3926 | if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai) |
| 3927 | append_indent = get_indent_lnum(eap->line1); |
| 3928 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3929 | for (lnum = eap->line2; lnum >= eap->line1; --lnum) |
| 3930 | { |
| 3931 | if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */ |
| 3932 | break; |
| 3933 | ml_delete(eap->line1, FALSE); |
| 3934 | } |
| 3935 | deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum)); |
| 3936 | |
| 3937 | /* ":append" on the line above the deleted lines. */ |
| 3938 | eap->line2 = eap->line1; |
| 3939 | ex_append(eap); |
| 3940 | } |
| 3941 | |
| 3942 | void |
| 3943 | ex_z(eap) |
| 3944 | exarg_T *eap; |
| 3945 | { |
| 3946 | char_u *x; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3947 | int bigness; |
| 3948 | char_u *kind; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3949 | int minus = 0; |
| 3950 | linenr_T start, end, curs, i; |
| 3951 | int j; |
| 3952 | linenr_T lnum = eap->line2; |
| 3953 | |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3954 | /* Vi compatible: ":z!" uses display height, without a count uses |
| 3955 | * 'scroll' */ |
| 3956 | if (eap->forceit) |
| 3957 | bigness = curwin->w_height; |
| 3958 | else if (firstwin == lastwin) |
| 3959 | bigness = curwin->w_p_scr * 2; |
| 3960 | else |
| 3961 | bigness = curwin->w_height - 3; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3962 | if (bigness < 1) |
| 3963 | bigness = 1; |
| 3964 | |
| 3965 | x = eap->arg; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3966 | kind = x; |
| 3967 | if (*kind == '-' || *kind == '+' || *kind == '=' |
| 3968 | || *kind == '^' || *kind == '.') |
| 3969 | ++x; |
| 3970 | while (*x == '-' || *x == '+') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3971 | ++x; |
| 3972 | |
| 3973 | if (*x != 0) |
| 3974 | { |
| 3975 | if (!VIM_ISDIGIT(*x)) |
| 3976 | { |
| 3977 | EMSG(_("E144: non-numeric argument to :z")); |
| 3978 | return; |
| 3979 | } |
| 3980 | else |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3981 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3982 | bigness = atoi((char *)x); |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3983 | p_window = bigness; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 3984 | if (*kind == '=') |
| 3985 | bigness += 2; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3986 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3987 | } |
| 3988 | |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3989 | /* the number of '-' and '+' multiplies the distance */ |
| 3990 | if (*kind == '-' || *kind == '+') |
| 3991 | for (x = kind + 1; *x == *kind; ++x) |
| 3992 | ; |
| 3993 | |
| 3994 | switch (*kind) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3995 | { |
| 3996 | case '-': |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 3997 | start = lnum - bigness * (linenr_T)(x - kind); |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 3998 | end = start + bigness; |
| 3999 | curs = end; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4000 | break; |
| 4001 | |
| 4002 | case '=': |
Bram Moolenaar | 2a8d1f8 | 2005-02-05 21:43:56 +0000 | [diff] [blame] | 4003 | start = lnum - (bigness + 1) / 2 + 1; |
| 4004 | end = lnum + (bigness + 1) / 2 - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4005 | curs = lnum; |
| 4006 | minus = 1; |
| 4007 | break; |
| 4008 | |
| 4009 | case '^': |
| 4010 | start = lnum - bigness * 2; |
| 4011 | end = lnum - bigness; |
| 4012 | curs = lnum - bigness; |
| 4013 | break; |
| 4014 | |
| 4015 | case '.': |
Bram Moolenaar | 2a8d1f8 | 2005-02-05 21:43:56 +0000 | [diff] [blame] | 4016 | start = lnum - (bigness + 1) / 2 + 1; |
| 4017 | end = lnum + (bigness + 1) / 2 - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4018 | curs = end; |
| 4019 | break; |
| 4020 | |
| 4021 | default: /* '+' */ |
| 4022 | start = lnum; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4023 | if (*kind == '+') |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 4024 | start += bigness * (linenr_T)(x - kind - 1) + 1; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4025 | else if (eap->addr_count == 0) |
| 4026 | ++start; |
| 4027 | end = start + bigness - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4028 | curs = end; |
| 4029 | break; |
| 4030 | } |
| 4031 | |
| 4032 | if (start < 1) |
| 4033 | start = 1; |
| 4034 | |
| 4035 | if (end > curbuf->b_ml.ml_line_count) |
| 4036 | end = curbuf->b_ml.ml_line_count; |
| 4037 | |
| 4038 | if (curs > curbuf->b_ml.ml_line_count) |
| 4039 | curs = curbuf->b_ml.ml_line_count; |
| 4040 | |
| 4041 | for (i = start; i <= end; i++) |
| 4042 | { |
| 4043 | if (minus && i == lnum) |
| 4044 | { |
| 4045 | msg_putchar('\n'); |
| 4046 | |
| 4047 | for (j = 1; j < Columns; j++) |
| 4048 | msg_putchar('-'); |
| 4049 | } |
| 4050 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4051 | print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4052 | |
| 4053 | if (minus && i == lnum) |
| 4054 | { |
| 4055 | msg_putchar('\n'); |
| 4056 | |
| 4057 | for (j = 1; j < Columns; j++) |
| 4058 | msg_putchar('-'); |
| 4059 | } |
| 4060 | } |
| 4061 | |
| 4062 | curwin->w_cursor.lnum = curs; |
| 4063 | ex_no_reprint = TRUE; |
| 4064 | } |
| 4065 | |
| 4066 | /* |
| 4067 | * Check if the restricted flag is set. |
| 4068 | * If so, give an error message and return TRUE. |
| 4069 | * Otherwise, return FALSE. |
| 4070 | */ |
| 4071 | int |
| 4072 | check_restricted() |
| 4073 | { |
| 4074 | if (restricted) |
| 4075 | { |
| 4076 | EMSG(_("E145: Shell commands not allowed in rvim")); |
| 4077 | return TRUE; |
| 4078 | } |
| 4079 | return FALSE; |
| 4080 | } |
| 4081 | |
| 4082 | /* |
| 4083 | * Check if the secure flag is set (.exrc or .vimrc in current directory). |
| 4084 | * If so, give an error message and return TRUE. |
| 4085 | * Otherwise, return FALSE. |
| 4086 | */ |
| 4087 | int |
| 4088 | check_secure() |
| 4089 | { |
| 4090 | if (secure) |
| 4091 | { |
| 4092 | secure = 2; |
| 4093 | EMSG(_(e_curdir)); |
| 4094 | return TRUE; |
| 4095 | } |
| 4096 | #ifdef HAVE_SANDBOX |
| 4097 | /* |
| 4098 | * In the sandbox more things are not allowed, including the things |
| 4099 | * disallowed in secure mode. |
| 4100 | */ |
| 4101 | if (sandbox != 0) |
| 4102 | { |
| 4103 | EMSG(_(e_sandbox)); |
| 4104 | return TRUE; |
| 4105 | } |
| 4106 | #endif |
| 4107 | return FALSE; |
| 4108 | } |
| 4109 | |
| 4110 | static char_u *old_sub = NULL; /* previous substitute pattern */ |
| 4111 | static int global_need_beginline; /* call beginline() after ":g" */ |
| 4112 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4113 | /* do_sub() |
| 4114 | * |
| 4115 | * Perform a substitution from line eap->line1 to line eap->line2 using the |
| 4116 | * command pointed to by eap->arg which should be of the form: |
| 4117 | * |
| 4118 | * /pattern/substitution/{flags} |
| 4119 | * |
| 4120 | * The usual escapes are supported as described in the regexp docs. |
| 4121 | */ |
| 4122 | void |
| 4123 | do_sub(eap) |
| 4124 | exarg_T *eap; |
| 4125 | { |
| 4126 | linenr_T lnum; |
| 4127 | long i = 0; |
| 4128 | regmmatch_T regmatch; |
| 4129 | static int do_all = FALSE; /* do multiple substitutions per line */ |
| 4130 | static int do_ask = FALSE; /* ask for confirmation */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4131 | static int do_count = FALSE; /* count only */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4132 | static int do_error = TRUE; /* if false, ignore errors */ |
| 4133 | static int do_print = FALSE; /* print last line with subs. */ |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4134 | static int do_list = FALSE; /* list last line with subs. */ |
| 4135 | static int do_number = FALSE; /* list last line with line nr*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4136 | static int do_ic = 0; /* ignore case flag */ |
| 4137 | char_u *pat = NULL, *sub = NULL; /* init for GCC */ |
| 4138 | int delimiter; |
| 4139 | int sublen; |
| 4140 | int got_quit = FALSE; |
| 4141 | int got_match = FALSE; |
| 4142 | int temp; |
| 4143 | int which_pat; |
| 4144 | char_u *cmd; |
| 4145 | int save_State; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4146 | linenr_T first_line = 0; /* first changed line */ |
| 4147 | linenr_T last_line= 0; /* below last changed line AFTER the |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4148 | * change */ |
| 4149 | linenr_T old_line_count = curbuf->b_ml.ml_line_count; |
| 4150 | linenr_T line2; |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 4151 | long nmatch; /* number of lines in match */ |
| 4152 | linenr_T sub_firstlnum; /* nr of first sub line */ |
| 4153 | char_u *sub_firstline; /* allocated copy of first sub line */ |
| 4154 | int endcolumn = FALSE; /* cursor in last column when done */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4155 | pos_T old_cursor = curwin->w_cursor; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4156 | |
| 4157 | cmd = eap->arg; |
| 4158 | if (!global_busy) |
| 4159 | { |
| 4160 | sub_nsubs = 0; |
| 4161 | sub_nlines = 0; |
| 4162 | } |
| 4163 | |
| 4164 | #ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */ |
| 4165 | if (p_altkeymap && curwin->w_p_rl) |
| 4166 | lrF_sub(cmd); |
| 4167 | #endif |
| 4168 | |
| 4169 | if (eap->cmdidx == CMD_tilde) |
| 4170 | which_pat = RE_LAST; /* use last used regexp */ |
| 4171 | else |
| 4172 | which_pat = RE_SUBST; /* use last substitute regexp */ |
| 4173 | |
| 4174 | /* new pattern and substitution */ |
| 4175 | if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd) |
| 4176 | && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL) |
| 4177 | { |
| 4178 | /* don't accept alphanumeric for separator */ |
| 4179 | if (isalpha(*cmd)) |
| 4180 | { |
| 4181 | EMSG(_("E146: Regular expressions can't be delimited by letters")); |
| 4182 | return; |
| 4183 | } |
| 4184 | /* |
| 4185 | * undocumented vi feature: |
| 4186 | * "\/sub/" and "\?sub?" use last used search pattern (almost like |
| 4187 | * //sub/r). "\&sub&" use last substitute pattern (like //sub/). |
| 4188 | */ |
| 4189 | if (*cmd == '\\') |
| 4190 | { |
| 4191 | ++cmd; |
| 4192 | if (vim_strchr((char_u *)"/?&", *cmd) == NULL) |
| 4193 | { |
| 4194 | EMSG(_(e_backslash)); |
| 4195 | return; |
| 4196 | } |
| 4197 | if (*cmd != '&') |
| 4198 | which_pat = RE_SEARCH; /* use last '/' pattern */ |
| 4199 | pat = (char_u *)""; /* empty search pattern */ |
| 4200 | delimiter = *cmd++; /* remember delimiter character */ |
| 4201 | } |
| 4202 | else /* find the end of the regexp */ |
| 4203 | { |
| 4204 | which_pat = RE_LAST; /* use last used regexp */ |
| 4205 | delimiter = *cmd++; /* remember delimiter character */ |
| 4206 | pat = cmd; /* remember start of search pat */ |
| 4207 | cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg); |
| 4208 | if (cmd[0] == delimiter) /* end delimiter found */ |
| 4209 | *cmd++ = NUL; /* replace it with a NUL */ |
| 4210 | } |
| 4211 | |
| 4212 | /* |
| 4213 | * Small incompatibility: vi sees '\n' as end of the command, but in |
| 4214 | * Vim we want to use '\n' to find/substitute a NUL. |
| 4215 | */ |
| 4216 | sub = cmd; /* remember the start of the substitution */ |
| 4217 | |
| 4218 | while (cmd[0]) |
| 4219 | { |
| 4220 | if (cmd[0] == delimiter) /* end delimiter found */ |
| 4221 | { |
| 4222 | *cmd++ = NUL; /* replace it with a NUL */ |
| 4223 | break; |
| 4224 | } |
| 4225 | if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */ |
| 4226 | ++cmd; |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4227 | mb_ptr_adv(cmd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4228 | } |
| 4229 | |
| 4230 | if (!eap->skip) |
| 4231 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4232 | /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */ |
| 4233 | if (STRCMP(sub, "%") == 0 |
| 4234 | && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL) |
| 4235 | { |
| 4236 | if (old_sub == NULL) /* there is no previous command */ |
| 4237 | { |
| 4238 | EMSG(_(e_nopresub)); |
| 4239 | return; |
| 4240 | } |
| 4241 | sub = old_sub; |
| 4242 | } |
| 4243 | else |
| 4244 | { |
| 4245 | vim_free(old_sub); |
| 4246 | old_sub = vim_strsave(sub); |
| 4247 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4248 | } |
| 4249 | } |
| 4250 | else if (!eap->skip) /* use previous pattern and substitution */ |
| 4251 | { |
| 4252 | if (old_sub == NULL) /* there is no previous command */ |
| 4253 | { |
| 4254 | EMSG(_(e_nopresub)); |
| 4255 | return; |
| 4256 | } |
| 4257 | pat = NULL; /* search_regcomp() will use previous pattern */ |
| 4258 | sub = old_sub; |
Bram Moolenaar | b11bd7e | 2005-02-07 22:05:52 +0000 | [diff] [blame] | 4259 | |
| 4260 | /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the |
| 4261 | * last column after using "$". */ |
| 4262 | endcolumn = (curwin->w_curswant == MAXCOL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4263 | } |
| 4264 | |
| 4265 | /* |
| 4266 | * Find trailing options. When '&' is used, keep old options. |
| 4267 | */ |
| 4268 | if (*cmd == '&') |
| 4269 | ++cmd; |
| 4270 | else |
| 4271 | { |
| 4272 | if (!p_ed) |
| 4273 | { |
| 4274 | if (p_gd) /* default is global on */ |
| 4275 | do_all = TRUE; |
| 4276 | else |
| 4277 | do_all = FALSE; |
| 4278 | do_ask = FALSE; |
| 4279 | } |
| 4280 | do_error = TRUE; |
| 4281 | do_print = FALSE; |
Bram Moolenaar | cc016f5 | 2005-12-10 20:23:46 +0000 | [diff] [blame] | 4282 | do_count = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4283 | do_ic = 0; |
| 4284 | } |
| 4285 | while (*cmd) |
| 4286 | { |
| 4287 | /* |
| 4288 | * Note that 'g' and 'c' are always inverted, also when p_ed is off. |
| 4289 | * 'r' is never inverted. |
| 4290 | */ |
| 4291 | if (*cmd == 'g') |
| 4292 | do_all = !do_all; |
| 4293 | else if (*cmd == 'c') |
| 4294 | do_ask = !do_ask; |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4295 | else if (*cmd == 'n') |
| 4296 | do_count = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4297 | else if (*cmd == 'e') |
| 4298 | do_error = !do_error; |
| 4299 | else if (*cmd == 'r') /* use last used regexp */ |
| 4300 | which_pat = RE_LAST; |
| 4301 | else if (*cmd == 'p') |
| 4302 | do_print = TRUE; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4303 | else if (*cmd == '#') |
| 4304 | { |
| 4305 | do_print = TRUE; |
| 4306 | do_number = TRUE; |
| 4307 | } |
| 4308 | else if (*cmd == 'l') |
| 4309 | { |
| 4310 | do_print = TRUE; |
| 4311 | do_list = TRUE; |
| 4312 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4313 | else if (*cmd == 'i') /* ignore case */ |
| 4314 | do_ic = 'i'; |
| 4315 | else if (*cmd == 'I') /* don't ignore case */ |
| 4316 | do_ic = 'I'; |
| 4317 | else |
| 4318 | break; |
| 4319 | ++cmd; |
| 4320 | } |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4321 | if (do_count) |
| 4322 | do_ask = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4323 | |
| 4324 | /* |
| 4325 | * check for a trailing count |
| 4326 | */ |
| 4327 | cmd = skipwhite(cmd); |
| 4328 | if (VIM_ISDIGIT(*cmd)) |
| 4329 | { |
| 4330 | i = getdigits(&cmd); |
| 4331 | if (i <= 0 && !eap->skip && do_error) |
| 4332 | { |
| 4333 | EMSG(_(e_zerocount)); |
| 4334 | return; |
| 4335 | } |
| 4336 | eap->line1 = eap->line2; |
| 4337 | eap->line2 += i - 1; |
| 4338 | if (eap->line2 > curbuf->b_ml.ml_line_count) |
| 4339 | eap->line2 = curbuf->b_ml.ml_line_count; |
| 4340 | } |
| 4341 | |
| 4342 | /* |
| 4343 | * check for trailing command or garbage |
| 4344 | */ |
| 4345 | cmd = skipwhite(cmd); |
| 4346 | if (*cmd && *cmd != '"') /* if not end-of-line or comment */ |
| 4347 | { |
| 4348 | eap->nextcmd = check_nextcmd(cmd); |
| 4349 | if (eap->nextcmd == NULL) |
| 4350 | { |
| 4351 | EMSG(_(e_trailing)); |
| 4352 | return; |
| 4353 | } |
| 4354 | } |
| 4355 | |
| 4356 | if (eap->skip) /* not executing commands, only parsing */ |
| 4357 | return; |
| 4358 | |
Bram Moolenaar | 61660ea | 2006-04-07 21:40:07 +0000 | [diff] [blame] | 4359 | if (!do_count && !curbuf->b_p_ma) |
| 4360 | { |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 4361 | /* Substitution is not allowed in non-'modifiable' buffer */ |
Bram Moolenaar | 61660ea | 2006-04-07 21:40:07 +0000 | [diff] [blame] | 4362 | EMSG(_(e_modifiable)); |
| 4363 | return; |
| 4364 | } |
| 4365 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4366 | if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, ®match) == FAIL) |
| 4367 | { |
| 4368 | if (do_error) |
| 4369 | EMSG(_(e_invcmd)); |
| 4370 | return; |
| 4371 | } |
| 4372 | |
| 4373 | /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */ |
| 4374 | if (do_ic == 'i') |
| 4375 | regmatch.rmm_ic = TRUE; |
| 4376 | else if (do_ic == 'I') |
| 4377 | regmatch.rmm_ic = FALSE; |
| 4378 | |
| 4379 | sub_firstline = NULL; |
| 4380 | |
| 4381 | /* |
| 4382 | * ~ in the substitute pattern is replaced with the old pattern. |
| 4383 | * We do it here once to avoid it to be replaced over and over again. |
| 4384 | * But don't do it when it starts with "\=", then it's an expression. |
| 4385 | */ |
| 4386 | if (!(sub[0] == '\\' && sub[1] == '=')) |
| 4387 | sub = regtilde(sub, p_magic); |
| 4388 | |
| 4389 | /* |
| 4390 | * Check for a match on each line. |
| 4391 | */ |
| 4392 | line2 = eap->line2; |
| 4393 | for (lnum = eap->line1; lnum <= line2 && !(got_quit |
| 4394 | #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) |
| 4395 | || aborting() |
| 4396 | #endif |
| 4397 | ); ++lnum) |
| 4398 | { |
| 4399 | sub_firstlnum = lnum; |
| 4400 | nmatch = vim_regexec_multi(®match, curwin, curbuf, lnum, (colnr_T)0); |
| 4401 | if (nmatch) |
| 4402 | { |
| 4403 | colnr_T copycol; |
| 4404 | colnr_T matchcol; |
| 4405 | colnr_T prev_matchcol = MAXCOL; |
| 4406 | char_u *new_end, *new_start = NULL; |
| 4407 | unsigned new_start_len = 0; |
| 4408 | char_u *p1; |
| 4409 | int did_sub = FALSE; |
| 4410 | int lastone; |
| 4411 | unsigned len, needed_len; |
| 4412 | long nmatch_tl = 0; /* nr of lines matched below lnum */ |
| 4413 | int do_again; /* do it again after joining lines */ |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 4414 | int skip_match = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4415 | |
| 4416 | /* |
| 4417 | * The new text is build up step by step, to avoid too much |
| 4418 | * copying. There are these pieces: |
| 4419 | * sub_firstline The old text, unmodifed. |
| 4420 | * copycol Column in the old text where we started |
| 4421 | * looking for a match; from here old text still |
| 4422 | * needs to be copied to the new text. |
| 4423 | * matchcol Column number of the old text where to look |
| 4424 | * for the next match. It's just after the |
| 4425 | * previous match or one further. |
| 4426 | * prev_matchcol Column just after the previous match (if any). |
| 4427 | * Mostly equal to matchcol, except for the first |
| 4428 | * match and after skipping an empty match. |
| 4429 | * regmatch.*pos Where the pattern matched in the old text. |
| 4430 | * new_start The new text, all that has been produced so |
| 4431 | * far. |
| 4432 | * new_end The new text, where to append new text. |
| 4433 | * |
| 4434 | * lnum The line number where we were looking for the |
| 4435 | * first match in the old line. |
| 4436 | * sub_firstlnum The line number in the buffer where to look |
| 4437 | * for a match. Can be different from "lnum" |
| 4438 | * when the pattern or substitute string contains |
| 4439 | * line breaks. |
| 4440 | * |
| 4441 | * Special situations: |
| 4442 | * - When the substitute string contains a line break, the part up |
| 4443 | * to the line break is inserted in the text, but the copy of |
| 4444 | * the original line is kept. "sub_firstlnum" is adjusted for |
| 4445 | * the inserted lines. |
| 4446 | * - When the matched pattern contains a line break, the old line |
| 4447 | * is taken from the line at the end of the pattern. The lines |
| 4448 | * in the match are deleted later, "sub_firstlnum" is adjusted |
| 4449 | * accordingly. |
| 4450 | * |
| 4451 | * The new text is built up in new_start[]. It has some extra |
| 4452 | * room to avoid using alloc()/free() too often. new_start_len is |
| 4453 | * the lenght of the allocated memory at new_start. |
| 4454 | * |
| 4455 | * Make a copy of the old line, so it won't be taken away when |
| 4456 | * updating the screen or handling a multi-line match. The "old_" |
| 4457 | * pointers point into this copy. |
| 4458 | */ |
| 4459 | sub_firstline = vim_strsave(ml_get(sub_firstlnum)); |
| 4460 | if (sub_firstline == NULL) |
| 4461 | { |
| 4462 | vim_free(new_start); |
| 4463 | goto outofmem; |
| 4464 | } |
| 4465 | copycol = 0; |
| 4466 | matchcol = 0; |
| 4467 | |
| 4468 | /* At first match, remember current cursor position. */ |
| 4469 | if (!got_match) |
| 4470 | { |
| 4471 | setpcmark(); |
| 4472 | got_match = TRUE; |
| 4473 | } |
| 4474 | |
| 4475 | /* |
| 4476 | * Loop until nothing more to replace in this line. |
| 4477 | * 1. Handle match with empty string. |
| 4478 | * 2. If do_ask is set, ask for confirmation. |
| 4479 | * 3. substitute the string. |
| 4480 | * 4. if do_all is set, find next match |
| 4481 | * 5. break if there isn't another match in this line |
| 4482 | */ |
| 4483 | for (;;) |
| 4484 | { |
| 4485 | /* Save the line number of the last change for the final |
| 4486 | * cursor position (just like Vi). */ |
| 4487 | curwin->w_cursor.lnum = lnum; |
| 4488 | do_again = FALSE; |
| 4489 | |
| 4490 | /* |
| 4491 | * 1. Match empty string does not count, except for first |
| 4492 | * match. This reproduces the strange vi behaviour. |
| 4493 | * This also catches endless loops. |
| 4494 | */ |
| 4495 | if (matchcol == prev_matchcol |
| 4496 | && regmatch.endpos[0].lnum == 0 |
| 4497 | && matchcol == regmatch.endpos[0].col) |
| 4498 | { |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 4499 | if (sub_firstline[matchcol] == NUL) |
| 4500 | /* We already were at the end of the line. Don't look |
| 4501 | * for a match in this line again. */ |
| 4502 | skip_match = TRUE; |
| 4503 | else |
| 4504 | ++matchcol; /* search for a match at next column */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4505 | goto skip; |
| 4506 | } |
| 4507 | |
| 4508 | /* Normally we continue searching for a match just after the |
| 4509 | * previous match. */ |
| 4510 | matchcol = regmatch.endpos[0].col; |
| 4511 | prev_matchcol = matchcol; |
| 4512 | |
| 4513 | /* |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4514 | * 2. If do_count is set only increase the counter. |
| 4515 | * If do_ask is set, ask for confirmation. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4516 | */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4517 | if (do_count) |
| 4518 | { |
| 4519 | /* For a multi-line match, put matchcol at the NUL at |
| 4520 | * the end of the line and set nmatch to one, so that |
| 4521 | * we continue looking for a match on the next line. |
| 4522 | * Avoids that ":s/\nB\@=//gc" get stuck. */ |
| 4523 | if (nmatch > 1) |
| 4524 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 4525 | matchcol = (colnr_T)STRLEN(sub_firstline); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4526 | nmatch = 1; |
| 4527 | } |
| 4528 | sub_nsubs++; |
| 4529 | did_sub = TRUE; |
| 4530 | goto skip; |
| 4531 | } |
| 4532 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4533 | if (do_ask) |
| 4534 | { |
| 4535 | /* change State to CONFIRM, so that the mouse works |
| 4536 | * properly */ |
| 4537 | save_State = State; |
| 4538 | State = CONFIRM; |
| 4539 | #ifdef FEAT_MOUSE |
| 4540 | setmouse(); /* disable mouse in xterm */ |
| 4541 | #endif |
| 4542 | curwin->w_cursor.col = regmatch.startpos[0].col; |
| 4543 | |
| 4544 | /* When 'cpoptions' contains "u" don't sync undo when |
| 4545 | * asking for confirmation. */ |
| 4546 | if (vim_strchr(p_cpo, CPO_UNDO) != NULL) |
| 4547 | ++no_u_sync; |
| 4548 | |
| 4549 | /* |
| 4550 | * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed. |
| 4551 | */ |
| 4552 | while (do_ask) |
| 4553 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4554 | if (exmode_active) |
| 4555 | { |
| 4556 | char_u *resp; |
| 4557 | colnr_T sc, ec; |
| 4558 | |
| 4559 | print_line_no_prefix(lnum, FALSE, FALSE); |
| 4560 | |
| 4561 | getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL); |
| 4562 | curwin->w_cursor.col = regmatch.endpos[0].col - 1; |
| 4563 | getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec); |
| 4564 | msg_start(); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4565 | for (i = 0; i < (long)sc; ++i) |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4566 | msg_putchar(' '); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4567 | for ( ; i <= (long)ec; ++i) |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4568 | msg_putchar('^'); |
| 4569 | |
| 4570 | resp = getexmodeline('?', NULL, 0); |
| 4571 | if (resp != NULL) |
| 4572 | { |
| 4573 | i = *resp; |
| 4574 | vim_free(resp); |
| 4575 | } |
| 4576 | } |
| 4577 | else |
| 4578 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4579 | #ifdef FEAT_FOLDING |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4580 | int save_p_fen = curwin->w_p_fen; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4581 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4582 | curwin->w_p_fen = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4583 | #endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4584 | /* Invert the matched string. |
| 4585 | * Remove the inversion afterwards. */ |
| 4586 | temp = RedrawingDisabled; |
| 4587 | RedrawingDisabled = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4588 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4589 | search_match_lines = regmatch.endpos[0].lnum; |
| 4590 | search_match_endcol = regmatch.endpos[0].col; |
| 4591 | highlight_match = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4592 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4593 | update_topline(); |
| 4594 | validate_cursor(); |
Bram Moolenaar | a1956f6 | 2006-03-12 22:18:00 +0000 | [diff] [blame] | 4595 | update_screen(SOME_VALID); |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4596 | highlight_match = FALSE; |
Bram Moolenaar | a1956f6 | 2006-03-12 22:18:00 +0000 | [diff] [blame] | 4597 | redraw_later(SOME_VALID); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4598 | |
| 4599 | #ifdef FEAT_FOLDING |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4600 | curwin->w_p_fen = save_p_fen; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4601 | #endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4602 | if (msg_row == Rows - 1) |
| 4603 | msg_didout = FALSE; /* avoid a scroll-up */ |
| 4604 | msg_starthere(); |
| 4605 | i = msg_scroll; |
| 4606 | msg_scroll = 0; /* truncate msg when |
| 4607 | needed */ |
| 4608 | msg_no_more = TRUE; |
| 4609 | /* write message same highlighting as for |
| 4610 | * wait_return */ |
| 4611 | smsg_attr(hl_attr(HLF_R), |
| 4612 | (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub); |
| 4613 | msg_no_more = FALSE; |
| 4614 | msg_scroll = i; |
| 4615 | showruler(TRUE); |
| 4616 | windgoto(msg_row, msg_col); |
| 4617 | RedrawingDisabled = temp; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4618 | |
| 4619 | #ifdef USE_ON_FLY_SCROLL |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4620 | dont_scroll = FALSE; /* allow scrolling here */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4621 | #endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4622 | ++no_mapping; /* don't map this key */ |
| 4623 | ++allow_keys; /* allow special keys */ |
| 4624 | i = safe_vgetc(); |
| 4625 | --allow_keys; |
| 4626 | --no_mapping; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4627 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4628 | /* clear the question */ |
| 4629 | msg_didout = FALSE; /* don't scroll up */ |
| 4630 | msg_col = 0; |
| 4631 | gotocmdline(TRUE); |
| 4632 | } |
| 4633 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4634 | need_wait_return = FALSE; /* no hit-return prompt */ |
| 4635 | if (i == 'q' || i == ESC || i == Ctrl_C |
| 4636 | #ifdef UNIX |
| 4637 | || i == intr_char |
| 4638 | #endif |
| 4639 | ) |
| 4640 | { |
| 4641 | got_quit = TRUE; |
| 4642 | break; |
| 4643 | } |
| 4644 | if (i == 'n') |
| 4645 | break; |
| 4646 | if (i == 'y') |
| 4647 | break; |
| 4648 | if (i == 'l') |
| 4649 | { |
| 4650 | /* last: replace and then stop */ |
| 4651 | do_all = FALSE; |
| 4652 | line2 = lnum; |
| 4653 | break; |
| 4654 | } |
| 4655 | if (i == 'a') |
| 4656 | { |
| 4657 | do_ask = FALSE; |
| 4658 | break; |
| 4659 | } |
| 4660 | #ifdef FEAT_INS_EXPAND |
| 4661 | if (i == Ctrl_E) |
| 4662 | scrollup_clamp(); |
| 4663 | else if (i == Ctrl_Y) |
| 4664 | scrolldown_clamp(); |
| 4665 | #endif |
| 4666 | } |
| 4667 | State = save_State; |
| 4668 | #ifdef FEAT_MOUSE |
| 4669 | setmouse(); |
| 4670 | #endif |
| 4671 | if (vim_strchr(p_cpo, CPO_UNDO) != NULL) |
| 4672 | --no_u_sync; |
| 4673 | |
| 4674 | if (i == 'n') |
| 4675 | { |
| 4676 | /* For a multi-line match, put matchcol at the NUL at |
| 4677 | * the end of the line and set nmatch to one, so that |
| 4678 | * we continue looking for a match on the next line. |
| 4679 | * Avoids that ":s/\nB\@=//gc" get stuck. */ |
| 4680 | if (nmatch > 1) |
| 4681 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 4682 | matchcol = (colnr_T)STRLEN(sub_firstline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4683 | nmatch = 1; |
| 4684 | } |
| 4685 | goto skip; |
| 4686 | } |
| 4687 | if (got_quit) |
| 4688 | break; |
| 4689 | } |
| 4690 | |
| 4691 | /* Move the cursor to the start of the match, so that we can |
| 4692 | * use "\=col("."). */ |
| 4693 | curwin->w_cursor.col = regmatch.startpos[0].col; |
| 4694 | |
| 4695 | /* |
| 4696 | * 3. substitute the string. |
| 4697 | */ |
| 4698 | /* get length of substitution part */ |
| 4699 | sublen = vim_regsub_multi(®match, sub_firstlnum, |
| 4700 | sub, sub_firstline, FALSE, p_magic, TRUE); |
| 4701 | |
Bram Moolenaar | 4463f29 | 2005-09-25 22:20:24 +0000 | [diff] [blame] | 4702 | /* When the match included the "$" of the last line it may |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 4703 | * go beyond the last line of the buffer. */ |
Bram Moolenaar | 4463f29 | 2005-09-25 22:20:24 +0000 | [diff] [blame] | 4704 | if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) |
| 4705 | { |
| 4706 | nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; |
| 4707 | skip_match = TRUE; |
| 4708 | } |
| 4709 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4710 | /* Need room for: |
| 4711 | * - result so far in new_start (not for first sub in line) |
| 4712 | * - original text up to match |
| 4713 | * - length of substituted part |
| 4714 | * - original text after match |
| 4715 | */ |
| 4716 | if (nmatch == 1) |
| 4717 | p1 = sub_firstline; |
| 4718 | else |
| 4719 | { |
| 4720 | p1 = ml_get(sub_firstlnum + nmatch - 1); |
| 4721 | nmatch_tl += nmatch - 1; |
| 4722 | } |
| 4723 | i = regmatch.startpos[0].col - copycol; |
| 4724 | needed_len = i + ((unsigned)STRLEN(p1) - regmatch.endpos[0].col) |
| 4725 | + sublen + 1; |
| 4726 | if (new_start == NULL) |
| 4727 | { |
| 4728 | /* |
| 4729 | * Get some space for a temporary buffer to do the |
| 4730 | * substitution into (and some extra space to avoid |
| 4731 | * too many calls to alloc()/free()). |
| 4732 | */ |
| 4733 | new_start_len = needed_len + 50; |
| 4734 | if ((new_start = alloc_check(new_start_len)) == NULL) |
| 4735 | goto outofmem; |
| 4736 | *new_start = NUL; |
| 4737 | new_end = new_start; |
| 4738 | } |
| 4739 | else |
| 4740 | { |
| 4741 | /* |
| 4742 | * Check if the temporary buffer is long enough to do the |
| 4743 | * substitution into. If not, make it larger (with a bit |
| 4744 | * extra to avoid too many calls to alloc()/free()). |
| 4745 | */ |
| 4746 | len = (unsigned)STRLEN(new_start); |
| 4747 | needed_len += len; |
| 4748 | if (needed_len > new_start_len) |
| 4749 | { |
| 4750 | new_start_len = needed_len + 50; |
| 4751 | if ((p1 = alloc_check(new_start_len)) == NULL) |
| 4752 | { |
| 4753 | vim_free(new_start); |
| 4754 | goto outofmem; |
| 4755 | } |
| 4756 | mch_memmove(p1, new_start, (size_t)(len + 1)); |
| 4757 | vim_free(new_start); |
| 4758 | new_start = p1; |
| 4759 | } |
| 4760 | new_end = new_start + len; |
| 4761 | } |
| 4762 | |
| 4763 | /* |
| 4764 | * copy the text up to the part that matched |
| 4765 | */ |
| 4766 | mch_memmove(new_end, sub_firstline + copycol, (size_t)i); |
| 4767 | new_end += i; |
| 4768 | |
| 4769 | (void)vim_regsub_multi(®match, sub_firstlnum, |
| 4770 | sub, new_end, TRUE, p_magic, TRUE); |
| 4771 | sub_nsubs++; |
| 4772 | did_sub = TRUE; |
| 4773 | |
| 4774 | /* Move the cursor to the start of the line, to avoid that it |
| 4775 | * is beyond the end of the line after the substitution. */ |
| 4776 | curwin->w_cursor.col = 0; |
| 4777 | |
| 4778 | /* For a multi-line match, make a copy of the last matched |
| 4779 | * line and continue in that one. */ |
| 4780 | if (nmatch > 1) |
| 4781 | { |
| 4782 | sub_firstlnum += nmatch - 1; |
| 4783 | vim_free(sub_firstline); |
| 4784 | sub_firstline = vim_strsave(ml_get(sub_firstlnum)); |
| 4785 | /* When going beyond the last line, stop substituting. */ |
| 4786 | if (sub_firstlnum <= line2) |
| 4787 | do_again = TRUE; |
| 4788 | else |
| 4789 | do_all = FALSE; |
| 4790 | } |
| 4791 | |
| 4792 | /* Remember next character to be copied. */ |
| 4793 | copycol = regmatch.endpos[0].col; |
| 4794 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 4795 | if (skip_match) |
| 4796 | { |
| 4797 | /* Already hit end of the buffer, sub_firstlnum is one |
| 4798 | * less than what it ought to be. */ |
| 4799 | vim_free(sub_firstline); |
| 4800 | sub_firstline = vim_strsave((char_u *)""); |
| 4801 | copycol = 0; |
| 4802 | } |
| 4803 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4804 | /* |
| 4805 | * Now the trick is to replace CTRL-M chars with a real line |
| 4806 | * break. This would make it impossible to insert a CTRL-M in |
| 4807 | * the text. The line break can be avoided by preceding the |
| 4808 | * CTRL-M with a backslash. To be able to insert a backslash, |
| 4809 | * they must be doubled in the string and are halved here. |
| 4810 | * That is Vi compatible. |
| 4811 | */ |
| 4812 | for (p1 = new_end; *p1; ++p1) |
| 4813 | { |
| 4814 | if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */ |
| 4815 | mch_memmove(p1, p1 + 1, STRLEN(p1)); |
| 4816 | else if (*p1 == CAR) |
| 4817 | { |
| 4818 | if (u_inssub(lnum) == OK) /* prepare for undo */ |
| 4819 | { |
| 4820 | *p1 = NUL; /* truncate up to the CR */ |
| 4821 | ml_append(lnum - 1, new_start, |
| 4822 | (colnr_T)(p1 - new_start + 1), FALSE); |
| 4823 | mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L); |
| 4824 | if (do_ask) |
| 4825 | appended_lines(lnum - 1, 1L); |
| 4826 | else |
| 4827 | { |
| 4828 | if (first_line == 0) |
| 4829 | first_line = lnum; |
| 4830 | last_line = lnum + 1; |
| 4831 | } |
| 4832 | /* All line numbers increase. */ |
| 4833 | ++sub_firstlnum; |
| 4834 | ++lnum; |
| 4835 | ++line2; |
| 4836 | /* move the cursor to the new line, like Vi */ |
| 4837 | ++curwin->w_cursor.lnum; |
| 4838 | STRCPY(new_start, p1 + 1); /* copy the rest */ |
| 4839 | p1 = new_start - 1; |
| 4840 | } |
| 4841 | } |
| 4842 | #ifdef FEAT_MBYTE |
| 4843 | else if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 4844 | p1 += (*mb_ptr2len)(p1) - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4845 | #endif |
| 4846 | } |
| 4847 | |
| 4848 | /* |
| 4849 | * 4. If do_all is set, find next match. |
| 4850 | * Prevent endless loop with patterns that match empty |
| 4851 | * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g. |
| 4852 | * But ":s/\n/#/" is OK. |
| 4853 | */ |
| 4854 | skip: |
| 4855 | /* We already know that we did the last subst when we are at |
| 4856 | * the end of the line, except that a pattern like |
| 4857 | * "bar\|\nfoo" may match at the NUL. */ |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 4858 | lastone = (skip_match |
| 4859 | || got_int |
| 4860 | || got_quit |
| 4861 | || !(do_all || do_again) |
| 4862 | || (sub_firstline[matchcol] == NUL && nmatch <= 1 |
| 4863 | && !re_multiline(regmatch.regprog))); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4864 | nmatch = -1; |
| 4865 | |
| 4866 | /* |
| 4867 | * Replace the line in the buffer when needed. This is |
| 4868 | * skipped when there are more matches. |
| 4869 | * The check for nmatch_tl is needed for when multi-line |
| 4870 | * matching must replace the lines before trying to do another |
| 4871 | * match, otherwise "\@<=" won't work. |
| 4872 | * When asking the user we like to show the already replaced |
| 4873 | * text, but don't do it when "\<@=" or "\<@!" is used, it |
| 4874 | * changes what matches. |
| 4875 | */ |
| 4876 | if (lastone |
| 4877 | || (do_ask && !re_lookbehind(regmatch.regprog)) |
| 4878 | || nmatch_tl > 0 |
| 4879 | || (nmatch = vim_regexec_multi(®match, curwin, |
| 4880 | curbuf, sub_firstlnum, matchcol)) == 0) |
| 4881 | { |
| 4882 | if (new_start != NULL) |
| 4883 | { |
| 4884 | /* |
| 4885 | * Copy the rest of the line, that didn't match. |
| 4886 | * "matchcol" has to be adjusted, we use the end of |
| 4887 | * the line as reference, because the substitute may |
| 4888 | * have changed the number of characters. Same for |
| 4889 | * "prev_matchcol". |
| 4890 | */ |
| 4891 | STRCAT(new_start, sub_firstline + copycol); |
| 4892 | matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; |
| 4893 | prev_matchcol = (colnr_T)STRLEN(sub_firstline) |
| 4894 | - prev_matchcol; |
| 4895 | |
| 4896 | if (u_savesub(lnum) != OK) |
| 4897 | break; |
| 4898 | ml_replace(lnum, new_start, TRUE); |
| 4899 | |
| 4900 | if (nmatch_tl > 0) |
| 4901 | { |
| 4902 | /* |
| 4903 | * Matched lines have now been substituted and are |
| 4904 | * useless, delete them. The part after the match |
| 4905 | * has been appended to new_start, we don't need |
| 4906 | * it in the buffer. |
| 4907 | */ |
| 4908 | ++lnum; |
| 4909 | if (u_savedel(lnum, nmatch_tl) != OK) |
| 4910 | break; |
| 4911 | for (i = 0; i < nmatch_tl; ++i) |
| 4912 | ml_delete(lnum, (int)FALSE); |
| 4913 | mark_adjust(lnum, lnum + nmatch_tl - 1, |
| 4914 | (long)MAXLNUM, -nmatch_tl); |
| 4915 | if (do_ask) |
| 4916 | deleted_lines(lnum, nmatch_tl); |
| 4917 | --lnum; |
| 4918 | line2 -= nmatch_tl; /* nr of lines decreases */ |
| 4919 | nmatch_tl = 0; |
| 4920 | } |
| 4921 | |
| 4922 | /* When asking, undo is saved each time, must also set |
| 4923 | * changed flag each time. */ |
| 4924 | if (do_ask) |
| 4925 | changed_bytes(lnum, 0); |
| 4926 | else |
| 4927 | { |
| 4928 | if (first_line == 0) |
| 4929 | first_line = lnum; |
| 4930 | last_line = lnum + 1; |
| 4931 | } |
| 4932 | |
| 4933 | sub_firstlnum = lnum; |
| 4934 | vim_free(sub_firstline); /* free the temp buffer */ |
| 4935 | sub_firstline = new_start; |
| 4936 | new_start = NULL; |
| 4937 | matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; |
| 4938 | prev_matchcol = (colnr_T)STRLEN(sub_firstline) |
| 4939 | - prev_matchcol; |
| 4940 | copycol = 0; |
| 4941 | } |
| 4942 | if (nmatch == -1 && !lastone) |
| 4943 | nmatch = vim_regexec_multi(®match, curwin, curbuf, |
| 4944 | sub_firstlnum, matchcol); |
| 4945 | |
| 4946 | /* |
| 4947 | * 5. break if there isn't another match in this line |
| 4948 | */ |
| 4949 | if (nmatch <= 0) |
| 4950 | break; |
| 4951 | } |
| 4952 | |
| 4953 | line_breakcheck(); |
| 4954 | } |
| 4955 | |
| 4956 | if (did_sub) |
| 4957 | ++sub_nlines; |
| 4958 | vim_free(sub_firstline); /* free the copy of the original line */ |
| 4959 | sub_firstline = NULL; |
| 4960 | } |
| 4961 | |
| 4962 | line_breakcheck(); |
| 4963 | } |
| 4964 | |
| 4965 | if (first_line != 0) |
| 4966 | { |
| 4967 | /* Need to subtract the number of added lines from "last_line" to get |
| 4968 | * the line number before the change (same as adding the number of |
| 4969 | * deleted lines). */ |
| 4970 | i = curbuf->b_ml.ml_line_count - old_line_count; |
| 4971 | changed_lines(first_line, 0, last_line - i, i); |
| 4972 | } |
| 4973 | |
| 4974 | outofmem: |
| 4975 | 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] | 4976 | |
| 4977 | /* ":s/pat//n" doesn't move the cursor */ |
| 4978 | if (do_count) |
| 4979 | curwin->w_cursor = old_cursor; |
| 4980 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4981 | if (sub_nsubs) |
| 4982 | { |
| 4983 | /* Set the '[ and '] marks. */ |
| 4984 | curbuf->b_op_start.lnum = eap->line1; |
| 4985 | curbuf->b_op_end.lnum = line2; |
| 4986 | curbuf->b_op_start.col = curbuf->b_op_end.col = 0; |
| 4987 | |
| 4988 | if (!global_busy) |
| 4989 | { |
Bram Moolenaar | b11bd7e | 2005-02-07 22:05:52 +0000 | [diff] [blame] | 4990 | if (endcolumn) |
| 4991 | coladvance((colnr_T)MAXCOL); |
| 4992 | else |
| 4993 | beginline(BL_WHITE | BL_FIX); |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 4994 | if (!do_sub_msg(do_count) && do_ask) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4995 | MSG(""); |
| 4996 | } |
| 4997 | else |
| 4998 | global_need_beginline = TRUE; |
| 4999 | if (do_print) |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 5000 | print_line(curwin->w_cursor.lnum, do_number, do_list); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5001 | } |
| 5002 | else if (!global_busy) |
| 5003 | { |
| 5004 | if (got_int) /* interrupted */ |
| 5005 | EMSG(_(e_interr)); |
| 5006 | else if (got_match) /* did find something but nothing substituted */ |
| 5007 | MSG(""); |
| 5008 | else if (do_error) /* nothing found */ |
| 5009 | EMSG2(_(e_patnotf2), get_search_pat()); |
| 5010 | } |
| 5011 | |
| 5012 | vim_free(regmatch.regprog); |
| 5013 | } |
| 5014 | |
| 5015 | /* |
| 5016 | * Give message for number of substitutions. |
| 5017 | * Can also be used after a ":global" command. |
| 5018 | * Return TRUE if a message was given. |
| 5019 | */ |
Bram Moolenaar | 8aff23a | 2005-08-19 20:40:30 +0000 | [diff] [blame] | 5020 | int |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5021 | do_sub_msg(count_only) |
| 5022 | int count_only; /* used 'n' flag for ":s" */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5023 | { |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5024 | int len = 0; |
| 5025 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5026 | /* |
| 5027 | * Only report substitutions when: |
| 5028 | * - more than 'report' substitutions |
| 5029 | * - command was typed by user, or number of changed lines > 'report' |
| 5030 | * - giving messages is not disabled by 'lazyredraw' |
| 5031 | */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5032 | if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1)) |
| 5033 | || count_only) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5034 | && messaging()) |
| 5035 | { |
| 5036 | if (got_int) |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5037 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5038 | STRCPY(msg_buf, _("(Interrupted) ")); |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 5039 | len = (int)STRLEN(msg_buf); |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5040 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5041 | if (sub_nsubs == 1) |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5042 | vim_snprintf((char *)msg_buf + len, sizeof(msg_buf) - len, |
| 5043 | "%s", count_only ? _("1 match") : _("1 substitution")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5044 | else |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5045 | vim_snprintf((char *)msg_buf + len, sizeof(msg_buf) - len, |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5046 | count_only ? _("%ld matches") : _("%ld substitutions"), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5047 | sub_nsubs); |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 5048 | len = (int)STRLEN(msg_buf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5049 | if (sub_nlines == 1) |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5050 | vim_snprintf((char *)msg_buf + len, sizeof(msg_buf) - len, |
| 5051 | "%s", _(" on 1 line")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5052 | else |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5053 | vim_snprintf((char *)msg_buf + len, sizeof(msg_buf) - len, |
| 5054 | _(" on %ld lines"), (long)sub_nlines); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5055 | if (msg(msg_buf)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5056 | /* save message to display it after redraw */ |
Bram Moolenaar | 238a564 | 2006-02-21 22:12:05 +0000 | [diff] [blame] | 5057 | set_keep_msg(msg_buf, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5058 | return TRUE; |
| 5059 | } |
| 5060 | if (got_int) |
| 5061 | { |
| 5062 | EMSG(_(e_interr)); |
| 5063 | return TRUE; |
| 5064 | } |
| 5065 | return FALSE; |
| 5066 | } |
| 5067 | |
| 5068 | /* |
| 5069 | * Execute a global command of the form: |
| 5070 | * |
| 5071 | * g/pattern/X : execute X on all lines where pattern matches |
| 5072 | * v/pattern/X : execute X on all lines where pattern does not match |
| 5073 | * |
| 5074 | * where 'X' is an EX command |
| 5075 | * |
| 5076 | * The command character (as well as the trailing slash) is optional, and |
| 5077 | * is assumed to be 'p' if missing. |
| 5078 | * |
| 5079 | * This is implemented in two passes: first we scan the file for the pattern and |
| 5080 | * set a mark for each line that (not) matches. secondly we execute the command |
| 5081 | * for each line that has a mark. This is required because after deleting |
| 5082 | * lines we do not know where to search for the next match. |
| 5083 | */ |
| 5084 | void |
| 5085 | ex_global(eap) |
| 5086 | exarg_T *eap; |
| 5087 | { |
| 5088 | linenr_T lnum; /* line number according to old situation */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5089 | int ndone = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5090 | int type; /* first char of cmd: 'v' or 'g' */ |
| 5091 | char_u *cmd; /* command argument */ |
| 5092 | |
| 5093 | char_u delim; /* delimiter, normally '/' */ |
| 5094 | char_u *pat; |
| 5095 | regmmatch_T regmatch; |
| 5096 | int match; |
| 5097 | int which_pat; |
| 5098 | |
| 5099 | if (global_busy) |
| 5100 | { |
| 5101 | EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */ |
| 5102 | return; |
| 5103 | } |
| 5104 | |
| 5105 | if (eap->forceit) /* ":global!" is like ":vglobal" */ |
| 5106 | type = 'v'; |
| 5107 | else |
| 5108 | type = *eap->cmd; |
| 5109 | cmd = eap->arg; |
| 5110 | which_pat = RE_LAST; /* default: use last used regexp */ |
| 5111 | sub_nsubs = 0; |
| 5112 | sub_nlines = 0; |
| 5113 | |
| 5114 | /* |
| 5115 | * undocumented vi feature: |
| 5116 | * "\/" and "\?": use previous search pattern. |
| 5117 | * "\&": use previous substitute pattern. |
| 5118 | */ |
| 5119 | if (*cmd == '\\') |
| 5120 | { |
| 5121 | ++cmd; |
| 5122 | if (vim_strchr((char_u *)"/?&", *cmd) == NULL) |
| 5123 | { |
| 5124 | EMSG(_(e_backslash)); |
| 5125 | return; |
| 5126 | } |
| 5127 | if (*cmd == '&') |
| 5128 | which_pat = RE_SUBST; /* use previous substitute pattern */ |
| 5129 | else |
| 5130 | which_pat = RE_SEARCH; /* use previous search pattern */ |
| 5131 | ++cmd; |
| 5132 | pat = (char_u *)""; |
| 5133 | } |
| 5134 | else if (*cmd == NUL) |
| 5135 | { |
| 5136 | EMSG(_("E148: Regular expression missing from global")); |
| 5137 | return; |
| 5138 | } |
| 5139 | else |
| 5140 | { |
| 5141 | delim = *cmd; /* get the delimiter */ |
| 5142 | if (delim) |
| 5143 | ++cmd; /* skip delimiter if there is one */ |
| 5144 | pat = cmd; /* remember start of pattern */ |
| 5145 | cmd = skip_regexp(cmd, delim, p_magic, &eap->arg); |
| 5146 | if (cmd[0] == delim) /* end delimiter found */ |
| 5147 | *cmd++ = NUL; /* replace it with a NUL */ |
| 5148 | } |
| 5149 | |
| 5150 | #ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */ |
| 5151 | if (p_altkeymap && curwin->w_p_rl) |
| 5152 | lrFswap(pat,0); |
| 5153 | #endif |
| 5154 | |
| 5155 | if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, ®match) == FAIL) |
| 5156 | { |
| 5157 | EMSG(_(e_invcmd)); |
| 5158 | return; |
| 5159 | } |
| 5160 | |
| 5161 | /* |
| 5162 | * pass 1: set marks for each (not) matching line |
| 5163 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5164 | for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum) |
| 5165 | { |
| 5166 | /* a match on this line? */ |
| 5167 | match = vim_regexec_multi(®match, curwin, curbuf, lnum, (colnr_T)0); |
| 5168 | if ((type == 'g' && match) || (type == 'v' && !match)) |
| 5169 | { |
| 5170 | ml_setmarked(lnum); |
| 5171 | ndone++; |
| 5172 | } |
| 5173 | line_breakcheck(); |
| 5174 | } |
| 5175 | |
| 5176 | /* |
| 5177 | * pass 2: execute the command for each line that has been marked |
| 5178 | */ |
| 5179 | if (got_int) |
| 5180 | MSG(_(e_interr)); |
| 5181 | else if (ndone == 0) |
| 5182 | { |
| 5183 | if (type == 'v') |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5184 | smsg((char_u *)_("Pattern found in every line: %s"), pat); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5185 | else |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5186 | smsg((char_u *)_(e_patnotf2), pat); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5187 | } |
| 5188 | else |
| 5189 | global_exe(cmd); |
| 5190 | |
| 5191 | ml_clearmarked(); /* clear rest of the marks */ |
| 5192 | vim_free(regmatch.regprog); |
| 5193 | } |
| 5194 | |
| 5195 | /* |
| 5196 | * Execute "cmd" on lines marked with ml_setmarked(). |
| 5197 | */ |
| 5198 | void |
| 5199 | global_exe(cmd) |
| 5200 | char_u *cmd; |
| 5201 | { |
| 5202 | linenr_T old_lcount; /* b_ml.ml_line_count before the command */ |
| 5203 | linenr_T lnum; /* line number according to old situation */ |
| 5204 | |
| 5205 | /* |
| 5206 | * Set current position only once for a global command. |
| 5207 | * If global_busy is set, setpcmark() will not do anything. |
| 5208 | * If there is an error, global_busy will be incremented. |
| 5209 | */ |
| 5210 | setpcmark(); |
| 5211 | |
| 5212 | /* When the command writes a message, don't overwrite the command. */ |
| 5213 | msg_didout = TRUE; |
| 5214 | |
| 5215 | global_need_beginline = FALSE; |
| 5216 | global_busy = 1; |
| 5217 | old_lcount = curbuf->b_ml.ml_line_count; |
| 5218 | while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1) |
| 5219 | { |
| 5220 | curwin->w_cursor.lnum = lnum; |
| 5221 | curwin->w_cursor.col = 0; |
| 5222 | if (*cmd == NUL || *cmd == '\n') |
| 5223 | do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT); |
| 5224 | else |
| 5225 | do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT); |
| 5226 | ui_breakcheck(); |
| 5227 | } |
| 5228 | |
| 5229 | global_busy = 0; |
| 5230 | if (global_need_beginline) |
| 5231 | beginline(BL_WHITE | BL_FIX); |
| 5232 | else |
| 5233 | check_cursor(); /* cursor may be beyond the end of the line */ |
| 5234 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 5235 | /* the cursor may not have moved in the text but a change in a previous |
| 5236 | * line may move it on the screen */ |
| 5237 | changed_line_abv_curs(); |
| 5238 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5239 | /* If it looks like no message was written, allow overwriting the |
| 5240 | * command with the report for number of changes. */ |
| 5241 | if (msg_col == 0 && msg_scrolled == 0) |
| 5242 | msg_didout = FALSE; |
| 5243 | |
| 5244 | /* If subsitutes done, report number of substitues, otherwise report |
| 5245 | * number of extra or deleted lines. */ |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 5246 | if (!do_sub_msg(FALSE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5247 | msgmore(curbuf->b_ml.ml_line_count - old_lcount); |
| 5248 | } |
| 5249 | |
| 5250 | #ifdef FEAT_VIMINFO |
| 5251 | int |
| 5252 | read_viminfo_sub_string(virp, force) |
| 5253 | vir_T *virp; |
| 5254 | int force; |
| 5255 | { |
| 5256 | if (old_sub != NULL && force) |
| 5257 | vim_free(old_sub); |
| 5258 | if (force || old_sub == NULL) |
| 5259 | old_sub = viminfo_readstring(virp, 1, TRUE); |
| 5260 | return viminfo_readline(virp); |
| 5261 | } |
| 5262 | |
| 5263 | void |
| 5264 | write_viminfo_sub_string(fp) |
| 5265 | FILE *fp; |
| 5266 | { |
| 5267 | if (get_viminfo_parameter('/') != 0 && old_sub != NULL) |
| 5268 | { |
| 5269 | fprintf(fp, _("\n# Last Substitute String:\n$")); |
| 5270 | viminfo_writestring(fp, old_sub); |
| 5271 | } |
| 5272 | } |
| 5273 | #endif /* FEAT_VIMINFO */ |
| 5274 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 5275 | #if defined(EXITFREE) || defined(PROTO) |
| 5276 | void |
| 5277 | free_old_sub() |
| 5278 | { |
| 5279 | vim_free(old_sub); |
| 5280 | } |
| 5281 | #endif |
| 5282 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5283 | #if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO) |
| 5284 | /* |
| 5285 | * Set up for a tagpreview. |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5286 | * Return TRUE when it was created. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5287 | */ |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5288 | int |
Bram Moolenaar | d2cec5b | 2006-03-28 21:08:56 +0000 | [diff] [blame] | 5289 | prepare_tagpreview(undo_sync) |
| 5290 | int undo_sync; /* sync undo when leaving the window */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5291 | { |
| 5292 | win_T *wp; |
| 5293 | |
| 5294 | # ifdef FEAT_GUI |
| 5295 | need_mouse_correct = TRUE; |
| 5296 | # endif |
| 5297 | |
| 5298 | /* |
| 5299 | * If there is already a preview window open, use that one. |
| 5300 | */ |
| 5301 | if (!curwin->w_p_pvw) |
| 5302 | { |
| 5303 | for (wp = firstwin; wp != NULL; wp = wp->w_next) |
| 5304 | if (wp->w_p_pvw) |
| 5305 | break; |
| 5306 | if (wp != NULL) |
Bram Moolenaar | d2cec5b | 2006-03-28 21:08:56 +0000 | [diff] [blame] | 5307 | win_enter(wp, undo_sync); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5308 | else |
| 5309 | { |
| 5310 | /* |
| 5311 | * There is no preview window open yet. Create one. |
| 5312 | */ |
| 5313 | if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0) |
| 5314 | == FAIL) |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5315 | return FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5316 | curwin->w_p_pvw = TRUE; |
| 5317 | curwin->w_p_wfh = TRUE; |
| 5318 | # ifdef FEAT_SCROLLBIND |
| 5319 | curwin->w_p_scb = FALSE; /* don't take over 'scrollbind' */ |
| 5320 | # endif |
| 5321 | # ifdef FEAT_DIFF |
| 5322 | curwin->w_p_diff = FALSE; /* no 'diff' */ |
| 5323 | # endif |
| 5324 | # ifdef FEAT_FOLDING |
| 5325 | curwin->w_p_fdc = 0; /* no 'foldcolumn' */ |
| 5326 | # endif |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 5327 | return TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5328 | } |
| 5329 | } |
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 | } |
| 5332 | |
| 5333 | #endif |
| 5334 | |
| 5335 | |
| 5336 | /* |
| 5337 | * ":help": open a read-only window on a help file |
| 5338 | */ |
| 5339 | void |
| 5340 | ex_help(eap) |
| 5341 | exarg_T *eap; |
| 5342 | { |
| 5343 | char_u *arg; |
| 5344 | char_u *tag; |
| 5345 | FILE *helpfd; /* file descriptor of help file */ |
| 5346 | int n; |
| 5347 | int i; |
| 5348 | #ifdef FEAT_WINDOWS |
| 5349 | win_T *wp; |
| 5350 | #endif |
| 5351 | int num_matches; |
| 5352 | char_u **matches; |
| 5353 | char_u *p; |
| 5354 | int empty_fnum = 0; |
| 5355 | int alt_fnum = 0; |
| 5356 | buf_T *buf; |
| 5357 | #ifdef FEAT_MULTI_LANG |
| 5358 | int len; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5359 | char_u *lang; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5360 | #endif |
| 5361 | |
| 5362 | if (eap != NULL) |
| 5363 | { |
| 5364 | /* |
| 5365 | * A ":help" command ends at the first LF, or at a '|' that is |
| 5366 | * followed by some text. Set nextcmd to the following command. |
| 5367 | */ |
| 5368 | for (arg = eap->arg; *arg; ++arg) |
| 5369 | { |
| 5370 | if (*arg == '\n' || *arg == '\r' |
| 5371 | || (*arg == '|' && arg[1] != NUL && arg[1] != '|')) |
| 5372 | { |
| 5373 | *arg++ = NUL; |
| 5374 | eap->nextcmd = arg; |
| 5375 | break; |
| 5376 | } |
| 5377 | } |
| 5378 | arg = eap->arg; |
| 5379 | |
| 5380 | if (eap->forceit && *arg == NUL) |
| 5381 | { |
| 5382 | EMSG(_("E478: Don't panic!")); |
| 5383 | return; |
| 5384 | } |
| 5385 | |
| 5386 | if (eap->skip) /* not executing commands */ |
| 5387 | return; |
| 5388 | } |
| 5389 | else |
| 5390 | arg = (char_u *)""; |
| 5391 | |
| 5392 | /* remove trailing blanks */ |
| 5393 | p = arg + STRLEN(arg) - 1; |
| 5394 | while (p > arg && vim_iswhite(*p) && p[-1] != '\\') |
| 5395 | *p-- = NUL; |
| 5396 | |
| 5397 | #ifdef FEAT_MULTI_LANG |
| 5398 | /* Check for a specified language */ |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5399 | lang = check_help_lang(arg); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5400 | #endif |
| 5401 | |
| 5402 | /* When no argument given go to the index. */ |
| 5403 | if (*arg == NUL) |
| 5404 | arg = (char_u *)"help.txt"; |
| 5405 | |
| 5406 | /* |
| 5407 | * Check if there is a match for the argument. |
| 5408 | */ |
| 5409 | n = find_help_tags(arg, &num_matches, &matches, |
| 5410 | eap != NULL && eap->forceit); |
| 5411 | |
| 5412 | i = 0; |
| 5413 | #ifdef FEAT_MULTI_LANG |
| 5414 | if (n != FAIL && lang != NULL) |
| 5415 | /* Find first item with the requested language. */ |
| 5416 | for (i = 0; i < num_matches; ++i) |
| 5417 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 5418 | len = (int)STRLEN(matches[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5419 | if (len > 3 && matches[i][len - 3] == '@' |
| 5420 | && STRICMP(matches[i] + len - 2, lang) == 0) |
| 5421 | break; |
| 5422 | } |
| 5423 | #endif |
| 5424 | if (i >= num_matches || n == FAIL) |
| 5425 | { |
| 5426 | #ifdef FEAT_MULTI_LANG |
| 5427 | if (lang != NULL) |
| 5428 | EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg); |
| 5429 | else |
| 5430 | #endif |
| 5431 | EMSG2(_("E149: Sorry, no help for %s"), arg); |
| 5432 | if (n != FAIL) |
| 5433 | FreeWild(num_matches, matches); |
| 5434 | return; |
| 5435 | } |
| 5436 | |
| 5437 | /* The first match (in the requested language) is the best match. */ |
| 5438 | tag = vim_strsave(matches[i]); |
| 5439 | FreeWild(num_matches, matches); |
| 5440 | |
| 5441 | #ifdef FEAT_GUI |
| 5442 | need_mouse_correct = TRUE; |
| 5443 | #endif |
| 5444 | |
| 5445 | /* |
| 5446 | * Re-use an existing help window or open a new one. |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5447 | * Always open a new one for ":tab help". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5448 | */ |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5449 | if (!curwin->w_buffer->b_help |
| 5450 | #ifdef FEAT_WINDOWS |
| 5451 | || cmdmod.tab != 0 |
| 5452 | #endif |
| 5453 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5454 | { |
| 5455 | #ifdef FEAT_WINDOWS |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5456 | if (cmdmod.tab != 0) |
| 5457 | wp = NULL; |
| 5458 | else |
| 5459 | for (wp = firstwin; wp != NULL; wp = wp->w_next) |
| 5460 | if (wp->w_buffer != NULL && wp->w_buffer->b_help) |
| 5461 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5462 | if (wp != NULL && wp->w_buffer->b_nwindows > 0) |
| 5463 | win_enter(wp, TRUE); |
| 5464 | else |
| 5465 | #endif |
| 5466 | { |
| 5467 | /* |
| 5468 | * There is no help window yet. |
| 5469 | * Try to open the file specified by the "helpfile" option. |
| 5470 | */ |
| 5471 | if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL) |
| 5472 | { |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 5473 | smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5474 | goto erret; |
| 5475 | } |
| 5476 | fclose(helpfd); |
| 5477 | |
| 5478 | #ifdef FEAT_WINDOWS |
| 5479 | /* Split off help window; put it at far top if no position |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5480 | * specified, the current window is vertically split and |
| 5481 | * narrow. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5482 | n = WSP_HELP; |
| 5483 | # ifdef FEAT_VERTSPLIT |
| 5484 | if (cmdmod.split == 0 && curwin->w_width != Columns |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5485 | && curwin->w_width < 80) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5486 | n |= WSP_TOP; |
| 5487 | # endif |
| 5488 | if (win_split(0, n) == FAIL) |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5489 | goto erret; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5490 | #else |
| 5491 | /* use current window */ |
| 5492 | if (!can_abandon(curbuf, FALSE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5493 | goto erret; |
Bram Moolenaar | 2a3f7ee | 2006-02-23 21:34:44 +0000 | [diff] [blame] | 5494 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5495 | |
| 5496 | #ifdef FEAT_WINDOWS |
| 5497 | if (curwin->w_height < p_hh) |
| 5498 | win_setheight((int)p_hh); |
| 5499 | #endif |
| 5500 | |
| 5501 | /* |
| 5502 | * Open help file (do_ecmd() will set b_help flag, readfile() will |
| 5503 | * set b_p_ro flag). |
| 5504 | * Set the alternate file to the previously edited file. |
| 5505 | */ |
| 5506 | alt_fnum = curbuf->b_fnum; |
| 5507 | (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL, |
| 5508 | ECMD_HIDE + ECMD_SET_HELP); |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 5509 | if (!cmdmod.keepalt) |
| 5510 | curwin->w_alt_fnum = alt_fnum; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5511 | empty_fnum = curbuf->b_fnum; |
| 5512 | } |
| 5513 | } |
| 5514 | |
| 5515 | if (!p_im) |
| 5516 | restart_edit = 0; /* don't want insert mode in help file */ |
| 5517 | |
| 5518 | if (tag != NULL) |
| 5519 | do_tag(tag, DT_HELP, 1, FALSE, TRUE); |
| 5520 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 5521 | /* Delete the empty buffer if we're not using it. Careful: autocommands |
| 5522 | * may have jumped to another window, check that the buffer is not in a |
| 5523 | * window. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5524 | if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum) |
| 5525 | { |
| 5526 | buf = buflist_findnr(empty_fnum); |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 5527 | if (buf != NULL && buf->b_nwindows == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5528 | wipe_buffer(buf, TRUE); |
| 5529 | } |
| 5530 | |
| 5531 | /* keep the previous alternate file */ |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 5532 | if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5533 | curwin->w_alt_fnum = alt_fnum; |
| 5534 | |
| 5535 | erret: |
| 5536 | vim_free(tag); |
| 5537 | } |
| 5538 | |
| 5539 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5540 | #if defined(FEAT_MULTI_LANG) || defined(PROTO) |
| 5541 | /* |
| 5542 | * In an argument search for a language specifiers in the form "@xx". |
| 5543 | * Changes the "@" to NUL if found, and returns a pointer to "xx". |
| 5544 | * Returns NULL if not found. |
| 5545 | */ |
| 5546 | char_u * |
| 5547 | check_help_lang(arg) |
| 5548 | char_u *arg; |
| 5549 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 5550 | int len = (int)STRLEN(arg); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 5551 | |
| 5552 | if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2]) |
| 5553 | && ASCII_ISALPHA(arg[len - 1])) |
| 5554 | { |
| 5555 | arg[len - 3] = NUL; /* remove the '@' */ |
| 5556 | return arg + len - 2; |
| 5557 | } |
| 5558 | return NULL; |
| 5559 | } |
| 5560 | #endif |
| 5561 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5562 | /* |
| 5563 | * Return a heuristic indicating how well the given string matches. The |
| 5564 | * smaller the number, the better the match. This is the order of priorities, |
| 5565 | * from best match to worst match: |
| 5566 | * - Match with least alpha-numeric characters is better. |
| 5567 | * - Match with least total characters is better. |
| 5568 | * - Match towards the start is better. |
| 5569 | * - Match starting with "+" is worse (feature instead of command) |
| 5570 | * Assumption is made that the matched_string passed has already been found to |
| 5571 | * match some string for which help is requested. webb. |
| 5572 | */ |
| 5573 | int |
| 5574 | help_heuristic(matched_string, offset, wrong_case) |
| 5575 | char_u *matched_string; |
| 5576 | int offset; /* offset for match */ |
| 5577 | int wrong_case; /* no matching case */ |
| 5578 | { |
| 5579 | int num_letters; |
| 5580 | char_u *p; |
| 5581 | |
| 5582 | num_letters = 0; |
| 5583 | for (p = matched_string; *p; p++) |
| 5584 | if (ASCII_ISALNUM(*p)) |
| 5585 | num_letters++; |
| 5586 | |
| 5587 | /* |
| 5588 | * Multiply the number of letters by 100 to give it a much bigger |
| 5589 | * weighting than the number of characters. |
| 5590 | * If there only is a match while ignoring case, add 5000. |
| 5591 | * If the match starts in the middle of a word, add 10000 to put it |
| 5592 | * somewhere in the last half. |
| 5593 | * If the match is more than 2 chars from the start, multiply by 200 to |
| 5594 | * put it after matches at the start. |
| 5595 | */ |
| 5596 | if (ASCII_ISALNUM(matched_string[offset]) && offset > 0 |
| 5597 | && ASCII_ISALNUM(matched_string[offset - 1])) |
| 5598 | offset += 10000; |
| 5599 | else if (offset > 2) |
| 5600 | offset *= 200; |
| 5601 | if (wrong_case) |
| 5602 | offset += 5000; |
| 5603 | /* Features are less interesting than the subjects themselves, but "+" |
| 5604 | * alone is not a feature. */ |
| 5605 | if (matched_string[0] == '+' && matched_string[1] != NUL) |
| 5606 | offset += 100; |
| 5607 | return (int)(100 * num_letters + STRLEN(matched_string) + offset); |
| 5608 | } |
| 5609 | |
| 5610 | /* |
| 5611 | * Compare functions for qsort() below, that checks the help heuristics number |
| 5612 | * that has been put after the tagname by find_tags(). |
| 5613 | */ |
| 5614 | static int |
| 5615 | #ifdef __BORLANDC__ |
| 5616 | _RTLENTRYF |
| 5617 | #endif |
| 5618 | help_compare(s1, s2) |
| 5619 | const void *s1; |
| 5620 | const void *s2; |
| 5621 | { |
| 5622 | char *p1; |
| 5623 | char *p2; |
| 5624 | |
| 5625 | p1 = *(char **)s1 + strlen(*(char **)s1) + 1; |
| 5626 | p2 = *(char **)s2 + strlen(*(char **)s2) + 1; |
| 5627 | return strcmp(p1, p2); |
| 5628 | } |
| 5629 | |
| 5630 | /* |
| 5631 | * Find all help tags matching "arg", sort them and return in matches[], with |
| 5632 | * the number of matches in num_matches. |
| 5633 | * The matches will be sorted with a "best" match algorithm. |
| 5634 | * When "keep_lang" is TRUE try keeping the language of the current buffer. |
| 5635 | */ |
| 5636 | int |
| 5637 | find_help_tags(arg, num_matches, matches, keep_lang) |
| 5638 | char_u *arg; |
| 5639 | int *num_matches; |
| 5640 | char_u ***matches; |
| 5641 | int keep_lang; |
| 5642 | { |
| 5643 | char_u *s, *d; |
| 5644 | int i; |
| 5645 | static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5646 | "/*", "/\\*", "\"*", "**", |
| 5647 | "/\\(\\)", |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 5648 | "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
Bram Moolenaar | f4630b6 | 2005-05-20 21:31:17 +0000 | [diff] [blame] | 5649 | "/\\?", "/\\z(\\)", "\\=", ":s\\=", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5650 | "[count]", "[quotex]", "[range]", |
| 5651 | "[pattern]", "\\|", "\\%$"}; |
| 5652 | static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star", |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 5653 | "/star", "/\\\\star", "quotestar", "starstar", |
| 5654 | "/\\\\(\\\\)", |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 5655 | "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
Bram Moolenaar | f4630b6 | 2005-05-20 21:31:17 +0000 | [diff] [blame] | 5656 | "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5657 | "\\[count]", "\\[quotex]", "\\[range]", |
| 5658 | "\\[pattern]", "\\\\bar", "/\\\\%\\$"}; |
| 5659 | int flags; |
| 5660 | |
| 5661 | d = IObuff; /* assume IObuff is long enough! */ |
| 5662 | |
| 5663 | /* |
| 5664 | * Recognize a few exceptions to the rule. Some strings that contain '*' |
| 5665 | * with "star". Otherwise '*' is recognized as a wildcard. |
| 5666 | */ |
| 5667 | for (i = sizeof(mtable) / sizeof(char *); --i >= 0; ) |
| 5668 | if (STRCMP(arg, mtable[i]) == 0) |
| 5669 | { |
| 5670 | STRCPY(d, rtable[i]); |
| 5671 | break; |
| 5672 | } |
| 5673 | |
| 5674 | if (i < 0) /* no match in table */ |
| 5675 | { |
| 5676 | /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched. |
| 5677 | * Also replace "\%^" and "\%(", they match every tag too. |
| 5678 | * Also "\zs", "\z1", etc. |
| 5679 | * Also "\@<", "\@=", "\@<=", etc. |
| 5680 | * And also "\_$" and "\_^". */ |
| 5681 | if (arg[0] == '\\' |
| 5682 | && ((arg[1] != NUL && arg[2] == NUL) |
| 5683 | || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL |
| 5684 | && arg[2] != NUL))) |
| 5685 | { |
| 5686 | STRCPY(d, "/\\\\"); |
| 5687 | STRCPY(d + 3, arg + 1); |
| 5688 | /* Check for "/\\_$", should be "/\\_\$" */ |
| 5689 | if (d[3] == '_' && d[4] == '$') |
| 5690 | STRCPY(d + 4, "\\$"); |
| 5691 | } |
| 5692 | else |
| 5693 | { |
| 5694 | /* replace "[:...:]" with "\[:...:]"; "[+...]" with "\[++...]" */ |
| 5695 | if (arg[0] == '[' && (arg[1] == ':' |
| 5696 | || (arg[1] == '+' && arg[2] == '+'))) |
| 5697 | *d++ = '\\'; |
| 5698 | |
| 5699 | for (s = arg; *s; ++s) |
| 5700 | { |
| 5701 | /* |
| 5702 | * Replace "|" with "bar" and '"' with "quote" to match the name of |
| 5703 | * the tags for these commands. |
| 5704 | * Replace "*" with ".*" and "?" with "." to match command line |
| 5705 | * completion. |
| 5706 | * Insert a backslash before '~', '$' and '.' to avoid their |
| 5707 | * special meaning. |
| 5708 | */ |
| 5709 | if (d - IObuff > IOSIZE - 10) /* getting too long!? */ |
| 5710 | break; |
| 5711 | switch (*s) |
| 5712 | { |
| 5713 | case '|': STRCPY(d, "bar"); |
| 5714 | d += 3; |
| 5715 | continue; |
| 5716 | case '"': STRCPY(d, "quote"); |
| 5717 | d += 5; |
| 5718 | continue; |
| 5719 | case '*': *d++ = '.'; |
| 5720 | break; |
| 5721 | case '?': *d++ = '.'; |
| 5722 | continue; |
| 5723 | case '$': |
| 5724 | case '.': |
| 5725 | case '~': *d++ = '\\'; |
| 5726 | break; |
| 5727 | } |
| 5728 | |
| 5729 | /* |
| 5730 | * Replace "^x" by "CTRL-X". Don't do this for "^_" to make |
| 5731 | * ":help i_^_CTRL-D" work. |
| 5732 | * Insert '-' before and after "CTRL-X" when applicable. |
| 5733 | */ |
| 5734 | if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1]) |
| 5735 | || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL))) |
| 5736 | { |
| 5737 | if (d > IObuff && d[-1] != '_') |
| 5738 | *d++ = '_'; /* prepend a '_' */ |
| 5739 | STRCPY(d, "CTRL-"); |
| 5740 | d += 5; |
| 5741 | if (*s < ' ') |
| 5742 | { |
| 5743 | #ifdef EBCDIC |
| 5744 | *d++ = CtrlChar(*s); |
| 5745 | #else |
| 5746 | *d++ = *s + '@'; |
| 5747 | #endif |
| 5748 | if (d[-1] == '\\') |
| 5749 | *d++ = '\\'; /* double a backslash */ |
| 5750 | } |
| 5751 | else |
| 5752 | *d++ = *++s; |
| 5753 | if (s[1] != NUL && s[1] != '_') |
| 5754 | *d++ = '_'; /* append a '_' */ |
| 5755 | continue; |
| 5756 | } |
| 5757 | else if (*s == '^') /* "^" or "CTRL-^" or "^_" */ |
| 5758 | *d++ = '\\'; |
| 5759 | |
| 5760 | /* |
| 5761 | * Insert a backslash before a backslash after a slash, for search |
| 5762 | * pattern tags: "/\|" --> "/\\|". |
| 5763 | */ |
| 5764 | else if (s[0] == '\\' && s[1] != '\\' |
| 5765 | && *arg == '/' && s == arg + 1) |
| 5766 | *d++ = '\\'; |
| 5767 | |
| 5768 | /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in |
| 5769 | * "CTRL-\_CTRL-N" */ |
| 5770 | if (STRNICMP(s, "CTRL-\\_", 7) == 0) |
| 5771 | { |
| 5772 | STRCPY(d, "CTRL-\\\\"); |
| 5773 | d += 7; |
| 5774 | s += 6; |
| 5775 | } |
| 5776 | |
| 5777 | *d++ = *s; |
| 5778 | |
| 5779 | /* |
| 5780 | * If tag starts with ', toss everything after a second '. Fixes |
| 5781 | * CTRL-] on 'option'. (would include the trailing '.'). |
| 5782 | */ |
| 5783 | if (*s == '\'' && s > arg && *arg == '\'') |
| 5784 | break; |
| 5785 | } |
| 5786 | *d = NUL; |
| 5787 | } |
| 5788 | } |
| 5789 | |
| 5790 | *matches = (char_u **)""; |
| 5791 | *num_matches = 0; |
| 5792 | flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE; |
| 5793 | if (keep_lang) |
| 5794 | flags |= TAG_KEEP_LANG; |
| 5795 | if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK |
| 5796 | && *num_matches > 0) |
| 5797 | /* Sort the matches found on the heuristic number that is after the |
| 5798 | * tag name. */ |
| 5799 | qsort((void *)*matches, (size_t)*num_matches, |
| 5800 | sizeof(char_u *), help_compare); |
| 5801 | return OK; |
| 5802 | } |
| 5803 | |
| 5804 | /* |
| 5805 | * After reading a help file: May cleanup a help buffer when syntax |
| 5806 | * highlighting is not used. |
| 5807 | */ |
| 5808 | void |
| 5809 | fix_help_buffer() |
| 5810 | { |
| 5811 | linenr_T lnum; |
| 5812 | char_u *line; |
| 5813 | int in_example = FALSE; |
| 5814 | int len; |
| 5815 | char_u *p; |
| 5816 | char_u *rt; |
| 5817 | int mustfree; |
| 5818 | |
| 5819 | /* set filetype to "help". */ |
| 5820 | set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL); |
| 5821 | |
| 5822 | #ifdef FEAT_SYN_HL |
| 5823 | if (!syntax_present(curbuf)) |
| 5824 | #endif |
| 5825 | { |
| 5826 | for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) |
| 5827 | { |
| 5828 | line = ml_get_buf(curbuf, lnum, FALSE); |
| 5829 | len = (int)STRLEN(line); |
| 5830 | if (in_example && len > 0 && !vim_iswhite(line[0])) |
| 5831 | { |
| 5832 | /* End of example: non-white or '<' in first column. */ |
| 5833 | if (line[0] == '<') |
| 5834 | { |
| 5835 | /* blank-out a '<' in the first column */ |
| 5836 | line = ml_get_buf(curbuf, lnum, TRUE); |
| 5837 | line[0] = ' '; |
| 5838 | } |
| 5839 | in_example = FALSE; |
| 5840 | } |
| 5841 | if (!in_example && len > 0) |
| 5842 | { |
| 5843 | if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' ')) |
| 5844 | { |
| 5845 | /* blank-out a '>' in the last column (start of example) */ |
| 5846 | line = ml_get_buf(curbuf, lnum, TRUE); |
| 5847 | line[len - 1] = ' '; |
| 5848 | in_example = TRUE; |
| 5849 | } |
| 5850 | else if (line[len - 1] == '~') |
| 5851 | { |
| 5852 | /* blank-out a '~' at the end of line (header marker) */ |
| 5853 | line = ml_get_buf(curbuf, lnum, TRUE); |
| 5854 | line[len - 1] = ' '; |
| 5855 | } |
| 5856 | } |
| 5857 | } |
| 5858 | } |
| 5859 | |
| 5860 | /* |
| 5861 | * In the "help.txt" file, add the locally added help files. |
| 5862 | * This uses the very first line in the help file. |
| 5863 | */ |
| 5864 | if (fnamecmp(gettail(curbuf->b_fname), "help.txt") == 0) |
| 5865 | { |
| 5866 | for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum) |
| 5867 | { |
| 5868 | line = ml_get_buf(curbuf, lnum, FALSE); |
| 5869 | if (strstr((char *)line, "*local-additions*") != NULL) |
| 5870 | { |
| 5871 | /* Go through all directories in 'runtimepath', skipping |
| 5872 | * $VIMRUNTIME. */ |
| 5873 | p = p_rtp; |
| 5874 | while (*p != NUL) |
| 5875 | { |
| 5876 | copy_option_part(&p, NameBuff, MAXPATHL, ","); |
| 5877 | mustfree = FALSE; |
| 5878 | rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree); |
| 5879 | if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME) |
| 5880 | { |
| 5881 | int fcount; |
| 5882 | char_u **fnames; |
| 5883 | FILE *fd; |
| 5884 | char_u *s; |
| 5885 | int fi; |
| 5886 | #ifdef FEAT_MBYTE |
| 5887 | vimconv_T vc; |
| 5888 | char_u *cp; |
| 5889 | #endif |
| 5890 | |
| 5891 | /* Find all "doc/ *.txt" files in this directory. */ |
| 5892 | add_pathsep(NameBuff); |
| 5893 | STRCAT(NameBuff, "doc/*.txt"); |
| 5894 | if (gen_expand_wildcards(1, &NameBuff, &fcount, |
| 5895 | &fnames, EW_FILE|EW_SILENT) == OK |
| 5896 | && fcount > 0) |
| 5897 | { |
| 5898 | for (fi = 0; fi < fcount; ++fi) |
| 5899 | { |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 5900 | fd = mch_fopen((char *)fnames[fi], "r"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5901 | if (fd != NULL) |
| 5902 | { |
| 5903 | vim_fgets(IObuff, IOSIZE, fd); |
| 5904 | if (IObuff[0] == '*' |
| 5905 | && (s = vim_strchr(IObuff + 1, '*')) |
| 5906 | != NULL) |
| 5907 | { |
| 5908 | #ifdef FEAT_MBYTE |
| 5909 | int this_utf = MAYBE; |
| 5910 | #endif |
| 5911 | /* Change tag definition to a |
| 5912 | * reference and remove <CR>/<NL>. */ |
| 5913 | IObuff[0] = '|'; |
| 5914 | *s = '|'; |
| 5915 | while (*s != NUL) |
| 5916 | { |
| 5917 | if (*s == '\r' || *s == '\n') |
| 5918 | *s = NUL; |
| 5919 | #ifdef FEAT_MBYTE |
| 5920 | /* The text is utf-8 when a byte |
| 5921 | * above 127 is found and no |
| 5922 | * illegal byte sequence is found. |
| 5923 | */ |
| 5924 | if (*s >= 0x80 && this_utf != FALSE) |
| 5925 | { |
| 5926 | int l; |
| 5927 | |
| 5928 | this_utf = TRUE; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 5929 | l = utf_ptr2len(s); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5930 | if (l == 1) |
| 5931 | this_utf = FALSE; |
| 5932 | s += l - 1; |
| 5933 | } |
| 5934 | #endif |
| 5935 | ++s; |
| 5936 | } |
| 5937 | #ifdef FEAT_MBYTE |
| 5938 | /* The help file is latin1 or utf-8; |
| 5939 | * conversion to the current |
| 5940 | * 'encoding' may be required. */ |
| 5941 | vc.vc_type = CONV_NONE; |
| 5942 | convert_setup(&vc, (char_u *)( |
| 5943 | this_utf == TRUE ? "utf-8" |
| 5944 | : "latin1"), p_enc); |
| 5945 | if (vc.vc_type == CONV_NONE) |
| 5946 | /* No conversion needed. */ |
| 5947 | cp = IObuff; |
| 5948 | else |
| 5949 | { |
| 5950 | /* Do the conversion. If it fails |
| 5951 | * use the unconverted text. */ |
| 5952 | cp = string_convert(&vc, IObuff, |
| 5953 | NULL); |
| 5954 | if (cp == NULL) |
| 5955 | cp = IObuff; |
| 5956 | } |
| 5957 | convert_setup(&vc, NULL, NULL); |
| 5958 | |
| 5959 | ml_append(lnum, cp, (colnr_T)0, FALSE); |
| 5960 | if (cp != IObuff) |
| 5961 | vim_free(cp); |
| 5962 | #else |
| 5963 | ml_append(lnum, IObuff, (colnr_T)0, |
| 5964 | FALSE); |
| 5965 | #endif |
| 5966 | ++lnum; |
| 5967 | } |
| 5968 | fclose(fd); |
| 5969 | } |
| 5970 | } |
| 5971 | FreeWild(fcount, fnames); |
| 5972 | } |
| 5973 | } |
| 5974 | if (mustfree) |
| 5975 | vim_free(rt); |
| 5976 | } |
| 5977 | break; |
| 5978 | } |
| 5979 | } |
| 5980 | } |
| 5981 | } |
| 5982 | |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 5983 | /* |
| 5984 | * ":exusage" |
| 5985 | */ |
| 5986 | /*ARGSUSED*/ |
| 5987 | void |
| 5988 | ex_exusage(eap) |
| 5989 | exarg_T *eap; |
| 5990 | { |
| 5991 | do_cmdline_cmd((char_u *)"help ex-cmd-index"); |
| 5992 | } |
| 5993 | |
| 5994 | /* |
| 5995 | * ":viusage" |
| 5996 | */ |
| 5997 | /*ARGSUSED*/ |
| 5998 | void |
| 5999 | ex_viusage(eap) |
| 6000 | exarg_T *eap; |
| 6001 | { |
| 6002 | do_cmdline_cmd((char_u *)"help normal-index"); |
| 6003 | } |
| 6004 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6005 | #if defined(FEAT_EX_EXTRA) || defined(PROTO) |
| 6006 | static void helptags_one __ARGS((char_u *dir, char_u *ext, char_u *lang)); |
| 6007 | |
| 6008 | /* |
| 6009 | * ":helptags" |
| 6010 | */ |
| 6011 | void |
| 6012 | ex_helptags(eap) |
| 6013 | exarg_T *eap; |
| 6014 | { |
| 6015 | garray_T ga; |
| 6016 | int i, j; |
| 6017 | int len; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6018 | #ifdef FEAT_MULTI_LANG |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6019 | char_u lang[2]; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 6020 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6021 | char_u ext[5]; |
| 6022 | char_u fname[8]; |
| 6023 | int filecount; |
| 6024 | char_u **files; |
| 6025 | |
| 6026 | if (!mch_isdir(eap->arg)) |
| 6027 | { |
| 6028 | EMSG2(_("E150: Not a directory: %s"), eap->arg); |
| 6029 | return; |
| 6030 | } |
| 6031 | |
| 6032 | #ifdef FEAT_MULTI_LANG |
| 6033 | /* Get a list of all files in the directory. */ |
| 6034 | STRCPY(NameBuff, eap->arg); |
| 6035 | add_pathsep(NameBuff); |
| 6036 | STRCAT(NameBuff, "*"); |
| 6037 | if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, |
| 6038 | EW_FILE|EW_SILENT) == FAIL |
| 6039 | || filecount == 0) |
| 6040 | { |
| 6041 | EMSG2("E151: No match: %s", NameBuff); |
| 6042 | return; |
| 6043 | } |
| 6044 | |
| 6045 | /* Go over all files in the directory to find out what languages are |
| 6046 | * present. */ |
| 6047 | ga_init2(&ga, 1, 10); |
| 6048 | for (i = 0; i < filecount; ++i) |
| 6049 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 6050 | len = (int)STRLEN(files[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6051 | if (len > 4) |
| 6052 | { |
| 6053 | if (STRICMP(files[i] + len - 4, ".txt") == 0) |
| 6054 | { |
| 6055 | /* ".txt" -> language "en" */ |
| 6056 | lang[0] = 'e'; |
| 6057 | lang[1] = 'n'; |
| 6058 | } |
| 6059 | else if (files[i][len - 4] == '.' |
| 6060 | && ASCII_ISALPHA(files[i][len - 3]) |
| 6061 | && ASCII_ISALPHA(files[i][len - 2]) |
| 6062 | && TOLOWER_ASC(files[i][len - 1]) == 'x') |
| 6063 | { |
| 6064 | /* ".abx" -> language "ab" */ |
| 6065 | lang[0] = TOLOWER_ASC(files[i][len - 3]); |
| 6066 | lang[1] = TOLOWER_ASC(files[i][len - 2]); |
| 6067 | } |
| 6068 | else |
| 6069 | continue; |
| 6070 | |
| 6071 | /* Did we find this language already? */ |
| 6072 | for (j = 0; j < ga.ga_len; j += 2) |
| 6073 | if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0) |
| 6074 | break; |
| 6075 | if (j == ga.ga_len) |
| 6076 | { |
| 6077 | /* New language, add it. */ |
| 6078 | if (ga_grow(&ga, 2) == FAIL) |
| 6079 | break; |
| 6080 | ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0]; |
| 6081 | ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6082 | } |
| 6083 | } |
| 6084 | } |
| 6085 | |
| 6086 | /* |
| 6087 | * Loop over the found languages to generate a tags file for each one. |
| 6088 | */ |
| 6089 | for (j = 0; j < ga.ga_len; j += 2) |
| 6090 | { |
| 6091 | STRCPY(fname, "tags-xx"); |
| 6092 | fname[5] = ((char_u *)ga.ga_data)[j]; |
| 6093 | fname[6] = ((char_u *)ga.ga_data)[j + 1]; |
| 6094 | if (fname[5] == 'e' && fname[6] == 'n') |
| 6095 | { |
| 6096 | /* English is an exception: use ".txt" and "tags". */ |
| 6097 | fname[4] = NUL; |
| 6098 | STRCPY(ext, ".txt"); |
| 6099 | } |
| 6100 | else |
| 6101 | { |
| 6102 | /* Language "ab" uses ".abx" and "tags-ab". */ |
| 6103 | STRCPY(ext, ".xxx"); |
| 6104 | ext[1] = fname[5]; |
| 6105 | ext[2] = fname[6]; |
| 6106 | } |
| 6107 | helptags_one(eap->arg, ext, fname); |
| 6108 | } |
| 6109 | |
| 6110 | ga_clear(&ga); |
| 6111 | FreeWild(filecount, files); |
| 6112 | |
| 6113 | #else |
| 6114 | /* No language support, just use "*.txt" and "tags". */ |
| 6115 | helptags_one(eap->arg, (char_u *)".txt", (char_u *)"tags"); |
| 6116 | #endif |
| 6117 | } |
| 6118 | |
| 6119 | static void |
| 6120 | helptags_one(dir, ext, tagfname) |
| 6121 | char_u *dir; /* doc directory */ |
| 6122 | char_u *ext; /* suffix, ".txt", ".itx", ".frx", etc. */ |
| 6123 | char_u *tagfname; /* "tags" for English, "tags-it" for Italian. */ |
| 6124 | { |
| 6125 | FILE *fd_tags; |
| 6126 | FILE *fd; |
| 6127 | garray_T ga; |
| 6128 | int filecount; |
| 6129 | char_u **files; |
| 6130 | char_u *p1, *p2; |
| 6131 | int fi; |
| 6132 | char_u *s; |
| 6133 | int i; |
| 6134 | char_u *fname; |
| 6135 | # ifdef FEAT_MBYTE |
| 6136 | int utf8 = MAYBE; |
| 6137 | int this_utf8; |
| 6138 | int firstline; |
| 6139 | int mix = FALSE; /* detected mixed encodings */ |
| 6140 | # endif |
| 6141 | |
| 6142 | /* |
| 6143 | * Find all *.txt files. |
| 6144 | */ |
| 6145 | STRCPY(NameBuff, dir); |
| 6146 | add_pathsep(NameBuff); |
| 6147 | STRCAT(NameBuff, "*"); |
| 6148 | STRCAT(NameBuff, ext); |
| 6149 | if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, |
| 6150 | EW_FILE|EW_SILENT) == FAIL |
| 6151 | || filecount == 0) |
| 6152 | { |
| 6153 | if (!got_int) |
| 6154 | EMSG2("E151: No match: %s", NameBuff); |
| 6155 | return; |
| 6156 | } |
| 6157 | |
| 6158 | /* |
| 6159 | * Open the tags file for writing. |
| 6160 | * Do this before scanning through all the files. |
| 6161 | */ |
| 6162 | STRCPY(NameBuff, dir); |
| 6163 | add_pathsep(NameBuff); |
| 6164 | STRCAT(NameBuff, tagfname); |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 6165 | fd_tags = mch_fopen((char *)NameBuff, "w"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6166 | if (fd_tags == NULL) |
| 6167 | { |
| 6168 | EMSG2(_("E152: Cannot open %s for writing"), NameBuff); |
| 6169 | FreeWild(filecount, files); |
| 6170 | return; |
| 6171 | } |
| 6172 | |
| 6173 | /* |
| 6174 | * If generating tags for "$VIMRUNTIME/doc" add the "help-tags" tag. |
| 6175 | */ |
| 6176 | ga_init2(&ga, (int)sizeof(char_u *), 100); |
| 6177 | if (fullpathcmp((char_u *)"$VIMRUNTIME/doc", dir, FALSE) == FPC_SAME) |
| 6178 | { |
| 6179 | if (ga_grow(&ga, 1) == FAIL) |
| 6180 | got_int = TRUE; |
| 6181 | else |
| 6182 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 6183 | s = alloc(18 + (unsigned)STRLEN(tagfname)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6184 | if (s == NULL) |
| 6185 | got_int = TRUE; |
| 6186 | else |
| 6187 | { |
| 6188 | sprintf((char *)s, "help-tags\t%s\t1\n", tagfname); |
| 6189 | ((char_u **)ga.ga_data)[ga.ga_len] = s; |
| 6190 | ++ga.ga_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6191 | } |
| 6192 | } |
| 6193 | } |
| 6194 | |
| 6195 | /* |
| 6196 | * Go over all the files and extract the tags. |
| 6197 | */ |
| 6198 | for (fi = 0; fi < filecount && !got_int; ++fi) |
| 6199 | { |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 6200 | fd = mch_fopen((char *)files[fi], "r"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6201 | if (fd == NULL) |
| 6202 | { |
| 6203 | EMSG2(_("E153: Unable to open %s for reading"), files[fi]); |
| 6204 | continue; |
| 6205 | } |
| 6206 | fname = gettail(files[fi]); |
| 6207 | |
| 6208 | # ifdef FEAT_MBYTE |
| 6209 | firstline = TRUE; |
| 6210 | # endif |
| 6211 | while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) |
| 6212 | { |
| 6213 | # ifdef FEAT_MBYTE |
| 6214 | if (firstline) |
| 6215 | { |
| 6216 | /* Detect utf-8 file by a non-ASCII char in the first line. */ |
| 6217 | this_utf8 = MAYBE; |
| 6218 | for (s = IObuff; *s != NUL; ++s) |
| 6219 | if (*s >= 0x80) |
| 6220 | { |
| 6221 | int l; |
| 6222 | |
| 6223 | this_utf8 = TRUE; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 6224 | l = utf_ptr2len(s); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6225 | if (l == 1) |
| 6226 | { |
| 6227 | /* Illegal UTF-8 byte sequence. */ |
| 6228 | this_utf8 = FALSE; |
| 6229 | break; |
| 6230 | } |
| 6231 | s += l - 1; |
| 6232 | } |
| 6233 | if (this_utf8 == MAYBE) /* only ASCII characters found */ |
| 6234 | this_utf8 = FALSE; |
| 6235 | if (utf8 == MAYBE) /* first file */ |
| 6236 | utf8 = this_utf8; |
| 6237 | else if (utf8 != this_utf8) |
| 6238 | { |
| 6239 | EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]); |
| 6240 | mix = !got_int; |
| 6241 | got_int = TRUE; |
| 6242 | } |
| 6243 | firstline = FALSE; |
| 6244 | } |
| 6245 | # endif |
| 6246 | p1 = vim_strchr(IObuff, '*'); /* find first '*' */ |
| 6247 | while (p1 != NULL) |
| 6248 | { |
| 6249 | p2 = vim_strchr(p1 + 1, '*'); /* find second '*' */ |
| 6250 | if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */ |
| 6251 | { |
| 6252 | for (s = p1 + 1; s < p2; ++s) |
| 6253 | if (*s == ' ' || *s == '\t' || *s == '|') |
| 6254 | break; |
| 6255 | |
| 6256 | /* |
| 6257 | * Only accept a *tag* when it consists of valid |
| 6258 | * characters, there is white space before it and is |
| 6259 | * followed by a white character or end-of-line. |
| 6260 | */ |
| 6261 | if (s == p2 |
| 6262 | && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t') |
| 6263 | && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL |
| 6264 | || s[1] == '\0')) |
| 6265 | { |
| 6266 | *p2 = '\0'; |
| 6267 | ++p1; |
| 6268 | if (ga_grow(&ga, 1) == FAIL) |
| 6269 | { |
| 6270 | got_int = TRUE; |
| 6271 | break; |
| 6272 | } |
| 6273 | s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2)); |
| 6274 | if (s == NULL) |
| 6275 | { |
| 6276 | got_int = TRUE; |
| 6277 | break; |
| 6278 | } |
| 6279 | ((char_u **)ga.ga_data)[ga.ga_len] = s; |
| 6280 | ++ga.ga_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6281 | sprintf((char *)s, "%s\t%s", p1, fname); |
| 6282 | |
| 6283 | /* find next '*' */ |
| 6284 | p2 = vim_strchr(p2 + 1, '*'); |
| 6285 | } |
| 6286 | } |
| 6287 | p1 = p2; |
| 6288 | } |
| 6289 | line_breakcheck(); |
| 6290 | } |
| 6291 | |
| 6292 | fclose(fd); |
| 6293 | } |
| 6294 | |
| 6295 | FreeWild(filecount, files); |
| 6296 | |
| 6297 | if (!got_int) |
| 6298 | { |
| 6299 | /* |
| 6300 | * Sort the tags. |
| 6301 | */ |
| 6302 | sort_strings((char_u **)ga.ga_data, ga.ga_len); |
| 6303 | |
| 6304 | /* |
| 6305 | * Check for duplicates. |
| 6306 | */ |
| 6307 | for (i = 1; i < ga.ga_len; ++i) |
| 6308 | { |
| 6309 | p1 = ((char_u **)ga.ga_data)[i - 1]; |
| 6310 | p2 = ((char_u **)ga.ga_data)[i]; |
| 6311 | while (*p1 == *p2) |
| 6312 | { |
| 6313 | if (*p2 == '\t') |
| 6314 | { |
| 6315 | *p2 = NUL; |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 6316 | vim_snprintf((char *)NameBuff, MAXPATHL, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6317 | _("E154: Duplicate tag \"%s\" in file %s/%s"), |
| 6318 | ((char_u **)ga.ga_data)[i], dir, p2 + 1); |
| 6319 | EMSG(NameBuff); |
| 6320 | *p2 = '\t'; |
| 6321 | break; |
| 6322 | } |
| 6323 | ++p1; |
| 6324 | ++p2; |
| 6325 | } |
| 6326 | } |
| 6327 | |
| 6328 | # ifdef FEAT_MBYTE |
| 6329 | if (utf8 == TRUE) |
| 6330 | fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n"); |
| 6331 | # endif |
| 6332 | |
| 6333 | /* |
| 6334 | * Write the tags into the file. |
| 6335 | */ |
| 6336 | for (i = 0; i < ga.ga_len; ++i) |
| 6337 | { |
| 6338 | s = ((char_u **)ga.ga_data)[i]; |
| 6339 | if (STRNCMP(s, "help-tags", 9) == 0) |
| 6340 | /* help-tags entry was added in formatted form */ |
| 6341 | fprintf(fd_tags, (char *)s); |
| 6342 | else |
| 6343 | { |
| 6344 | fprintf(fd_tags, "%s\t/*", s); |
| 6345 | for (p1 = s; *p1 != '\t'; ++p1) |
| 6346 | { |
| 6347 | /* insert backslash before '\\' and '/' */ |
| 6348 | if (*p1 == '\\' || *p1 == '/') |
| 6349 | putc('\\', fd_tags); |
| 6350 | putc(*p1, fd_tags); |
| 6351 | } |
| 6352 | fprintf(fd_tags, "*\n"); |
| 6353 | } |
| 6354 | } |
| 6355 | } |
| 6356 | #ifdef FEAT_MBYTE |
| 6357 | if (mix) |
| 6358 | got_int = FALSE; /* continue with other languages */ |
| 6359 | #endif |
| 6360 | |
| 6361 | for (i = 0; i < ga.ga_len; ++i) |
| 6362 | vim_free(((char_u **)ga.ga_data)[i]); |
| 6363 | ga_clear(&ga); |
| 6364 | fclose(fd_tags); /* there is no check for an error... */ |
| 6365 | } |
| 6366 | #endif |
| 6367 | |
| 6368 | #if defined(FEAT_SIGNS) || defined(PROTO) |
| 6369 | |
| 6370 | /* |
| 6371 | * Struct to hold the sign properties. |
| 6372 | */ |
| 6373 | typedef struct sign sign_T; |
| 6374 | |
| 6375 | struct sign |
| 6376 | { |
| 6377 | sign_T *sn_next; /* next sign in list */ |
| 6378 | int sn_typenr; /* type number of sign (negative if not equal |
| 6379 | to name) */ |
| 6380 | char_u *sn_name; /* name of sign */ |
| 6381 | char_u *sn_icon; /* name of pixmap */ |
| 6382 | #ifdef FEAT_SIGN_ICONS |
| 6383 | void *sn_image; /* icon image */ |
| 6384 | #endif |
| 6385 | char_u *sn_text; /* text used instead of pixmap */ |
| 6386 | int sn_line_hl; /* highlight ID for line */ |
| 6387 | int sn_text_hl; /* highlight ID for text */ |
| 6388 | }; |
| 6389 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6390 | static sign_T *first_sign = NULL; |
| 6391 | static int last_sign_typenr = MAX_TYPENR; /* is decremented */ |
| 6392 | |
| 6393 | static void sign_list_defined __ARGS((sign_T *sp)); |
| 6394 | |
| 6395 | /* |
| 6396 | * ":sign" command |
| 6397 | */ |
| 6398 | void |
| 6399 | ex_sign(eap) |
| 6400 | exarg_T *eap; |
| 6401 | { |
| 6402 | char_u *arg = eap->arg; |
| 6403 | char_u *p; |
| 6404 | int idx; |
| 6405 | sign_T *sp; |
| 6406 | sign_T *sp_prev; |
| 6407 | buf_T *buf; |
| 6408 | static char *cmds[] = { |
| 6409 | "define", |
| 6410 | #define SIGNCMD_DEFINE 0 |
| 6411 | "undefine", |
| 6412 | #define SIGNCMD_UNDEFINE 1 |
| 6413 | "list", |
| 6414 | #define SIGNCMD_LIST 2 |
| 6415 | "place", |
| 6416 | #define SIGNCMD_PLACE 3 |
| 6417 | "unplace", |
| 6418 | #define SIGNCMD_UNPLACE 4 |
| 6419 | "jump", |
| 6420 | #define SIGNCMD_JUMP 5 |
| 6421 | #define SIGNCMD_LAST 6 |
| 6422 | }; |
| 6423 | |
| 6424 | /* Parse the subcommand. */ |
| 6425 | p = skiptowhite(arg); |
| 6426 | if (*p != NUL) |
| 6427 | *p++ = NUL; |
| 6428 | for (idx = 0; ; ++idx) |
| 6429 | { |
| 6430 | if (idx == SIGNCMD_LAST) |
| 6431 | { |
| 6432 | EMSG2(_("E160: Unknown sign command: %s"), arg); |
| 6433 | return; |
| 6434 | } |
| 6435 | if (STRCMP(arg, cmds[idx]) == 0) |
| 6436 | break; |
| 6437 | } |
| 6438 | arg = skipwhite(p); |
| 6439 | |
| 6440 | if (idx <= SIGNCMD_LIST) |
| 6441 | { |
| 6442 | /* |
| 6443 | * Define, undefine or list signs. |
| 6444 | */ |
| 6445 | if (idx == SIGNCMD_LIST && *arg == NUL) |
| 6446 | { |
| 6447 | /* ":sign list": list all defined signs */ |
| 6448 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6449 | sign_list_defined(sp); |
| 6450 | } |
| 6451 | else if (*arg == NUL) |
| 6452 | EMSG(_("E156: Missing sign name")); |
| 6453 | else |
| 6454 | { |
| 6455 | p = skiptowhite(arg); |
| 6456 | if (*p != NUL) |
| 6457 | *p++ = NUL; |
| 6458 | sp_prev = NULL; |
| 6459 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6460 | { |
| 6461 | if (STRCMP(sp->sn_name, arg) == 0) |
| 6462 | break; |
| 6463 | sp_prev = sp; |
| 6464 | } |
| 6465 | if (idx == SIGNCMD_DEFINE) |
| 6466 | { |
| 6467 | /* ":sign define {name} ...": define a sign */ |
| 6468 | if (sp == NULL) |
| 6469 | { |
| 6470 | /* Allocate a new sign. */ |
| 6471 | sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T)); |
| 6472 | if (sp == NULL) |
| 6473 | return; |
| 6474 | if (sp_prev == NULL) |
| 6475 | first_sign = sp; |
| 6476 | else |
| 6477 | sp_prev->sn_next = sp; |
| 6478 | sp->sn_name = vim_strnsave(arg, (int)(p - arg)); |
| 6479 | |
| 6480 | /* If the name is a number use that for the typenr, |
| 6481 | * otherwise use a negative number. */ |
| 6482 | if (VIM_ISDIGIT(*arg)) |
| 6483 | sp->sn_typenr = atoi((char *)arg); |
| 6484 | else |
| 6485 | { |
| 6486 | sign_T *lp; |
| 6487 | int start = last_sign_typenr; |
| 6488 | |
| 6489 | for (lp = first_sign; lp != NULL; lp = lp->sn_next) |
| 6490 | { |
| 6491 | if (lp->sn_typenr == last_sign_typenr) |
| 6492 | { |
| 6493 | --last_sign_typenr; |
| 6494 | if (last_sign_typenr == 0) |
| 6495 | last_sign_typenr = MAX_TYPENR; |
| 6496 | if (last_sign_typenr == start) |
| 6497 | { |
| 6498 | EMSG(_("E612: Too many signs defined")); |
| 6499 | return; |
| 6500 | } |
| 6501 | lp = first_sign; |
| 6502 | continue; |
| 6503 | } |
| 6504 | } |
| 6505 | |
| 6506 | sp->sn_typenr = last_sign_typenr--; |
| 6507 | if (last_sign_typenr == 0) |
| 6508 | last_sign_typenr = MAX_TYPENR; /* wrap around */ |
| 6509 | } |
| 6510 | } |
| 6511 | |
| 6512 | /* set values for a defined sign. */ |
| 6513 | for (;;) |
| 6514 | { |
| 6515 | arg = skipwhite(p); |
| 6516 | if (*arg == NUL) |
| 6517 | break; |
| 6518 | p = skiptowhite_esc(arg); |
| 6519 | if (STRNCMP(arg, "icon=", 5) == 0) |
| 6520 | { |
| 6521 | arg += 5; |
| 6522 | vim_free(sp->sn_icon); |
| 6523 | sp->sn_icon = vim_strnsave(arg, (int)(p - arg)); |
| 6524 | backslash_halve(sp->sn_icon); |
| 6525 | #ifdef FEAT_SIGN_ICONS |
| 6526 | if (gui.in_use) |
| 6527 | { |
| 6528 | out_flush(); |
| 6529 | if (sp->sn_image != NULL) |
| 6530 | gui_mch_destroy_sign(sp->sn_image); |
| 6531 | sp->sn_image = gui_mch_register_sign(sp->sn_icon); |
| 6532 | } |
| 6533 | #endif |
| 6534 | } |
| 6535 | else if (STRNCMP(arg, "text=", 5) == 0) |
| 6536 | { |
| 6537 | char_u *s; |
| 6538 | int cells; |
| 6539 | int len; |
| 6540 | |
| 6541 | arg += 5; |
| 6542 | #ifdef FEAT_MBYTE |
| 6543 | /* Count cells and check for non-printable chars */ |
| 6544 | if (has_mbyte) |
| 6545 | { |
| 6546 | cells = 0; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 6547 | for (s = arg; s < p; s += (*mb_ptr2len)(s)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6548 | { |
| 6549 | if (!vim_isprintc((*mb_ptr2char)(s))) |
| 6550 | break; |
| 6551 | cells += (*mb_ptr2cells)(s); |
| 6552 | } |
| 6553 | } |
| 6554 | else |
| 6555 | #endif |
| 6556 | { |
| 6557 | for (s = arg; s < p; ++s) |
| 6558 | if (!vim_isprintc(*s)) |
| 6559 | break; |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 6560 | cells = (int)(s - arg); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6561 | } |
| 6562 | /* Currently must be one or two display cells */ |
| 6563 | if (s != p || cells < 1 || cells > 2) |
| 6564 | { |
| 6565 | *p = NUL; |
| 6566 | EMSG2(_("E239: Invalid sign text: %s"), arg); |
| 6567 | return; |
| 6568 | } |
| 6569 | |
| 6570 | vim_free(sp->sn_text); |
| 6571 | /* Allocate one byte more if we need to pad up |
| 6572 | * with a space. */ |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 6573 | len = (int)(p - arg + ((cells == 1) ? 1 : 0)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6574 | sp->sn_text = vim_strnsave(arg, len); |
| 6575 | |
| 6576 | if (sp->sn_text != NULL && cells == 1) |
| 6577 | STRCPY(sp->sn_text + len - 1, " "); |
| 6578 | } |
| 6579 | else if (STRNCMP(arg, "linehl=", 7) == 0) |
| 6580 | { |
| 6581 | arg += 7; |
| 6582 | sp->sn_line_hl = syn_check_group(arg, (int)(p - arg)); |
| 6583 | } |
| 6584 | else if (STRNCMP(arg, "texthl=", 7) == 0) |
| 6585 | { |
| 6586 | arg += 7; |
| 6587 | sp->sn_text_hl = syn_check_group(arg, (int)(p - arg)); |
| 6588 | } |
| 6589 | else |
| 6590 | { |
| 6591 | EMSG2(_(e_invarg2), arg); |
| 6592 | return; |
| 6593 | } |
| 6594 | } |
| 6595 | } |
| 6596 | else if (sp == NULL) |
| 6597 | EMSG2(_("E155: Unknown sign: %s"), arg); |
| 6598 | else if (idx == SIGNCMD_LIST) |
| 6599 | /* ":sign list {name}" */ |
| 6600 | sign_list_defined(sp); |
| 6601 | else |
| 6602 | { |
| 6603 | /* ":sign undefine {name}" */ |
| 6604 | vim_free(sp->sn_name); |
| 6605 | vim_free(sp->sn_icon); |
| 6606 | #ifdef FEAT_SIGN_ICONS |
| 6607 | if (sp->sn_image != NULL) |
| 6608 | { |
| 6609 | out_flush(); |
| 6610 | gui_mch_destroy_sign(sp->sn_image); |
| 6611 | } |
| 6612 | #endif |
| 6613 | vim_free(sp->sn_text); |
| 6614 | if (sp_prev == NULL) |
| 6615 | first_sign = sp->sn_next; |
| 6616 | else |
| 6617 | sp_prev->sn_next = sp->sn_next; |
| 6618 | vim_free(sp); |
| 6619 | } |
| 6620 | } |
| 6621 | } |
| 6622 | else |
| 6623 | { |
| 6624 | int id = -1; |
| 6625 | linenr_T lnum = -1; |
| 6626 | char_u *sign_name = NULL; |
| 6627 | char_u *arg1; |
| 6628 | |
| 6629 | if (*arg == NUL) |
| 6630 | { |
| 6631 | if (idx == SIGNCMD_PLACE) |
| 6632 | { |
| 6633 | /* ":sign place": list placed signs in all buffers */ |
| 6634 | sign_list_placed(NULL); |
| 6635 | } |
| 6636 | else if (idx == SIGNCMD_UNPLACE) |
| 6637 | { |
| 6638 | /* ":sign unplace": remove placed sign at cursor */ |
| 6639 | id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum); |
| 6640 | if (id > 0) |
| 6641 | { |
| 6642 | buf_delsign(curwin->w_buffer, id); |
| 6643 | update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum); |
| 6644 | } |
| 6645 | else |
| 6646 | EMSG(_("E159: Missing sign number")); |
| 6647 | } |
| 6648 | else |
| 6649 | EMSG(_(e_argreq)); |
| 6650 | return; |
| 6651 | } |
| 6652 | |
| 6653 | if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL) |
| 6654 | { |
| 6655 | /* ":sign unplace *": remove all placed signs */ |
| 6656 | buf_delete_all_signs(); |
| 6657 | return; |
| 6658 | } |
| 6659 | |
| 6660 | /* first arg could be placed sign id */ |
| 6661 | arg1 = arg; |
| 6662 | if (VIM_ISDIGIT(*arg)) |
| 6663 | { |
| 6664 | id = getdigits(&arg); |
| 6665 | if (!vim_iswhite(*arg) && *arg != NUL) |
| 6666 | { |
| 6667 | id = -1; |
| 6668 | arg = arg1; |
| 6669 | } |
| 6670 | else |
| 6671 | { |
| 6672 | arg = skipwhite(arg); |
| 6673 | if (idx == SIGNCMD_UNPLACE && *arg == NUL) |
| 6674 | { |
| 6675 | /* ":sign unplace {id}": remove placed sign by number */ |
| 6676 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 6677 | if ((lnum = buf_delsign(buf, id)) != 0) |
| 6678 | update_debug_sign(buf, lnum); |
| 6679 | return; |
| 6680 | } |
| 6681 | } |
| 6682 | } |
| 6683 | |
| 6684 | /* |
| 6685 | * Check for line={lnum} name={name} and file={fname} or buffer={nr}. |
| 6686 | * Leave "arg" pointing to {fname}. |
| 6687 | */ |
| 6688 | for (;;) |
| 6689 | { |
| 6690 | if (STRNCMP(arg, "line=", 5) == 0) |
| 6691 | { |
| 6692 | arg += 5; |
| 6693 | lnum = atoi((char *)arg); |
| 6694 | arg = skiptowhite(arg); |
| 6695 | } |
| 6696 | else if (STRNCMP(arg, "name=", 5) == 0) |
| 6697 | { |
| 6698 | arg += 5; |
| 6699 | sign_name = arg; |
| 6700 | arg = skiptowhite(arg); |
| 6701 | if (*arg != NUL) |
| 6702 | *arg++ = NUL; |
| 6703 | } |
| 6704 | else if (STRNCMP(arg, "file=", 5) == 0) |
| 6705 | { |
| 6706 | arg += 5; |
| 6707 | buf = buflist_findname(arg); |
| 6708 | break; |
| 6709 | } |
| 6710 | else if (STRNCMP(arg, "buffer=", 7) == 0) |
| 6711 | { |
| 6712 | arg += 7; |
| 6713 | buf = buflist_findnr((int)getdigits(&arg)); |
| 6714 | if (*skipwhite(arg) != NUL) |
| 6715 | EMSG(_(e_trailing)); |
| 6716 | break; |
| 6717 | } |
| 6718 | else |
| 6719 | { |
| 6720 | EMSG(_(e_invarg)); |
| 6721 | return; |
| 6722 | } |
| 6723 | arg = skipwhite(arg); |
| 6724 | } |
| 6725 | |
| 6726 | if (buf == NULL) |
| 6727 | { |
| 6728 | EMSG2(_("E158: Invalid buffer name: %s"), arg); |
| 6729 | } |
| 6730 | else if (id <= 0) |
| 6731 | { |
| 6732 | if (lnum >= 0 || sign_name != NULL) |
| 6733 | EMSG(_(e_invarg)); |
| 6734 | else |
| 6735 | /* ":sign place file={fname}": list placed signs in one file */ |
| 6736 | sign_list_placed(buf); |
| 6737 | } |
| 6738 | else if (idx == SIGNCMD_JUMP) |
| 6739 | { |
| 6740 | /* ":sign jump {id} file={fname}" */ |
| 6741 | if (lnum >= 0 || sign_name != NULL) |
| 6742 | EMSG(_(e_invarg)); |
| 6743 | else if ((lnum = buf_findsign(buf, id)) > 0) |
| 6744 | { /* goto a sign ... */ |
| 6745 | if (buf_jump_open_win(buf) != NULL) |
| 6746 | { /* ... in a current window */ |
| 6747 | curwin->w_cursor.lnum = lnum; |
| 6748 | check_cursor_lnum(); |
| 6749 | beginline(BL_WHITE); |
| 6750 | } |
| 6751 | else |
| 6752 | { /* ... not currently in a window */ |
| 6753 | char_u *cmd; |
| 6754 | |
| 6755 | cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25); |
| 6756 | if (cmd == NULL) |
| 6757 | return; |
| 6758 | sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname); |
| 6759 | do_cmdline_cmd(cmd); |
| 6760 | vim_free(cmd); |
| 6761 | } |
| 6762 | #ifdef FEAT_FOLDING |
| 6763 | foldOpenCursor(); |
| 6764 | #endif |
| 6765 | } |
| 6766 | else |
| 6767 | EMSGN(_("E157: Invalid sign ID: %ld"), id); |
| 6768 | } |
| 6769 | else if (idx == SIGNCMD_UNPLACE) |
| 6770 | { |
| 6771 | /* ":sign unplace {id} file={fname}" */ |
| 6772 | if (lnum >= 0 || sign_name != NULL) |
| 6773 | EMSG(_(e_invarg)); |
| 6774 | else |
| 6775 | { |
| 6776 | lnum = buf_delsign(buf, id); |
| 6777 | update_debug_sign(buf, lnum); |
| 6778 | } |
| 6779 | } |
| 6780 | /* idx == SIGNCMD_PLACE */ |
| 6781 | else if (sign_name != NULL) |
| 6782 | { |
| 6783 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6784 | if (STRCMP(sp->sn_name, sign_name) == 0) |
| 6785 | break; |
| 6786 | if (sp == NULL) |
| 6787 | { |
| 6788 | EMSG2(_("E155: Unknown sign: %s"), sign_name); |
| 6789 | return; |
| 6790 | } |
| 6791 | if (lnum > 0) |
| 6792 | /* ":sign place {id} line={lnum} name={name} file={fname}": |
| 6793 | * place a sign */ |
| 6794 | buf_addsign(buf, id, lnum, sp->sn_typenr); |
| 6795 | else |
| 6796 | /* ":sign place {id} file={fname}": change sign type */ |
| 6797 | lnum = buf_change_sign_type(buf, id, sp->sn_typenr); |
| 6798 | update_debug_sign(buf, lnum); |
| 6799 | } |
| 6800 | else |
| 6801 | EMSG(_(e_invarg)); |
| 6802 | } |
| 6803 | } |
| 6804 | |
| 6805 | #if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
| 6806 | /* |
| 6807 | * Allocate the icons. Called when the GUI has started. Allows defining |
| 6808 | * signs before it starts. |
| 6809 | */ |
| 6810 | void |
| 6811 | sign_gui_started() |
| 6812 | { |
| 6813 | sign_T *sp; |
| 6814 | |
| 6815 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6816 | if (sp->sn_icon != NULL) |
| 6817 | sp->sn_image = gui_mch_register_sign(sp->sn_icon); |
| 6818 | } |
| 6819 | #endif |
| 6820 | |
| 6821 | /* |
| 6822 | * List one sign. |
| 6823 | */ |
| 6824 | static void |
| 6825 | sign_list_defined(sp) |
| 6826 | sign_T *sp; |
| 6827 | { |
| 6828 | char_u *p; |
| 6829 | |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 6830 | smsg((char_u *)"sign %s", sp->sn_name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6831 | if (sp->sn_icon != NULL) |
| 6832 | { |
| 6833 | MSG_PUTS(" icon="); |
| 6834 | msg_outtrans(sp->sn_icon); |
| 6835 | #ifdef FEAT_SIGN_ICONS |
| 6836 | if (sp->sn_image == NULL) |
| 6837 | MSG_PUTS(_(" (NOT FOUND)")); |
| 6838 | #else |
| 6839 | MSG_PUTS(_(" (not supported)")); |
| 6840 | #endif |
| 6841 | } |
| 6842 | if (sp->sn_text != NULL) |
| 6843 | { |
| 6844 | MSG_PUTS(" text="); |
| 6845 | msg_outtrans(sp->sn_text); |
| 6846 | } |
| 6847 | if (sp->sn_line_hl > 0) |
| 6848 | { |
| 6849 | MSG_PUTS(" linehl="); |
| 6850 | p = get_highlight_name(NULL, sp->sn_line_hl - 1); |
| 6851 | if (p == NULL) |
| 6852 | MSG_PUTS("NONE"); |
| 6853 | else |
| 6854 | msg_puts(p); |
| 6855 | } |
| 6856 | if (sp->sn_text_hl > 0) |
| 6857 | { |
| 6858 | MSG_PUTS(" texthl="); |
| 6859 | p = get_highlight_name(NULL, sp->sn_text_hl - 1); |
| 6860 | if (p == NULL) |
| 6861 | MSG_PUTS("NONE"); |
| 6862 | else |
| 6863 | msg_puts(p); |
| 6864 | } |
| 6865 | } |
| 6866 | |
| 6867 | /* |
| 6868 | * Get highlighting attribute for sign "typenr". |
| 6869 | * If "line" is TRUE: line highl, if FALSE: text highl. |
| 6870 | */ |
| 6871 | int |
| 6872 | sign_get_attr(typenr, line) |
| 6873 | int typenr; |
| 6874 | int line; |
| 6875 | { |
| 6876 | sign_T *sp; |
| 6877 | |
| 6878 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6879 | if (sp->sn_typenr == typenr) |
| 6880 | { |
| 6881 | if (line) |
| 6882 | { |
| 6883 | if (sp->sn_line_hl > 0) |
| 6884 | return syn_id2attr(sp->sn_line_hl); |
| 6885 | } |
| 6886 | else |
| 6887 | { |
| 6888 | if (sp->sn_text_hl > 0) |
| 6889 | return syn_id2attr(sp->sn_text_hl); |
| 6890 | } |
| 6891 | break; |
| 6892 | } |
| 6893 | return 0; |
| 6894 | } |
| 6895 | |
| 6896 | /* |
| 6897 | * Get text mark for sign "typenr". |
| 6898 | * Returns NULL if there isn't one. |
| 6899 | */ |
| 6900 | char_u * |
| 6901 | sign_get_text(typenr) |
| 6902 | int typenr; |
| 6903 | { |
| 6904 | sign_T *sp; |
| 6905 | |
| 6906 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6907 | if (sp->sn_typenr == typenr) |
| 6908 | return sp->sn_text; |
| 6909 | return NULL; |
| 6910 | } |
| 6911 | |
| 6912 | #if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
| 6913 | void * |
| 6914 | sign_get_image(typenr) |
| 6915 | int typenr; /* the attribute which may have a sign */ |
| 6916 | { |
| 6917 | sign_T *sp; |
| 6918 | |
| 6919 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6920 | if (sp->sn_typenr == typenr) |
| 6921 | return sp->sn_image; |
| 6922 | return NULL; |
| 6923 | } |
| 6924 | #endif |
| 6925 | |
| 6926 | /* |
| 6927 | * Get the name of a sign by its typenr. |
| 6928 | */ |
| 6929 | char_u * |
| 6930 | sign_typenr2name(typenr) |
| 6931 | int typenr; |
| 6932 | { |
| 6933 | sign_T *sp; |
| 6934 | |
| 6935 | for (sp = first_sign; sp != NULL; sp = sp->sn_next) |
| 6936 | if (sp->sn_typenr == typenr) |
| 6937 | return sp->sn_name; |
| 6938 | return (char_u *)_("[Deleted]"); |
| 6939 | } |
| 6940 | |
| 6941 | #endif |
| 6942 | |
| 6943 | #if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO) |
| 6944 | /* |
| 6945 | * ":drop" |
| 6946 | * Opens the first argument in a window. When there are two or more arguments |
| 6947 | * the argument list is redefined. |
| 6948 | */ |
| 6949 | void |
| 6950 | ex_drop(eap) |
| 6951 | exarg_T *eap; |
| 6952 | { |
| 6953 | int split = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6954 | win_T *wp; |
| 6955 | buf_T *buf; |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 6956 | # ifdef FEAT_WINDOWS |
| 6957 | tabpage_T *tp; |
| 6958 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6959 | |
| 6960 | /* |
| 6961 | * Check if the first argument is already being edited in a window. If |
| 6962 | * so, jump to that window. |
| 6963 | * We would actually need to check all arguments, but that's complicated |
| 6964 | * and mostly only one file is dropped. |
| 6965 | * This also ignores wildcards, since it is very unlikely the user is |
| 6966 | * editing a file name with a wildcard character. |
| 6967 | */ |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 6968 | set_arglist(eap->arg); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6969 | |
Bram Moolenaar | b01a8b7 | 2007-02-13 02:47:22 +0000 | [diff] [blame] | 6970 | /* |
| 6971 | * Expanding wildcards may result in an empty argument list. E.g. when |
| 6972 | * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we |
| 6973 | * already did an error message for this. |
| 6974 | */ |
| 6975 | if (ARGCOUNT == 0) |
| 6976 | return; |
| 6977 | |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 6978 | # ifdef FEAT_WINDOWS |
| 6979 | if (cmdmod.tab) |
| 6980 | { |
| 6981 | /* ":tab drop file ...": open a tab for each argument that isn't |
| 6982 | * edited in a window yet. It's like ":tab all" but without closing |
| 6983 | * windows or tabs. */ |
| 6984 | ex_all(eap); |
| 6985 | } |
| 6986 | else |
| 6987 | # endif |
| 6988 | { |
| 6989 | /* ":drop file ...": Edit the first argument. Jump to an existing |
| 6990 | * window if possible, edit in current window if the current buffer |
| 6991 | * can be abandoned, otherwise open a new window. */ |
| 6992 | buf = buflist_findnr(ARGLIST[0].ae_fnum); |
| 6993 | |
| 6994 | FOR_ALL_TAB_WINDOWS(tp, wp) |
| 6995 | { |
| 6996 | if (wp->w_buffer == buf) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6997 | { |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 6998 | # ifdef FEAT_WINDOWS |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 6999 | goto_tabpage_win(tp, wp); |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7000 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7001 | curwin->w_arg_idx = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7002 | return; |
| 7003 | } |
| 7004 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7005 | |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7006 | /* |
| 7007 | * Check whether the current buffer is changed. If so, we will need |
| 7008 | * to split the current window or data could be lost. |
| 7009 | * Skip the check if the 'hidden' option is set, as in this case the |
| 7010 | * buffer won't be lost. |
| 7011 | */ |
| 7012 | if (!P_HID(curbuf)) |
| 7013 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7014 | # ifdef FEAT_WINDOWS |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7015 | ++emsg_off; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7016 | # endif |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7017 | split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7018 | # ifdef FEAT_WINDOWS |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7019 | --emsg_off; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7020 | # else |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7021 | if (split) |
| 7022 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7023 | # endif |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7024 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7025 | |
Bram Moolenaar | a5b6ad1 | 2006-03-11 21:36:59 +0000 | [diff] [blame] | 7026 | /* Fake a ":sfirst" or ":first" command edit the first argument. */ |
| 7027 | if (split) |
| 7028 | { |
| 7029 | eap->cmdidx = CMD_sfirst; |
| 7030 | eap->cmd[0] = 's'; |
| 7031 | } |
| 7032 | else |
| 7033 | eap->cmdidx = CMD_first; |
| 7034 | ex_rewind(eap); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7035 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7036 | } |
| 7037 | #endif |