blob: 45659a024225d8c2fd8bdfa8ffde7b4dc638f48e [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* 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 * quickfix.c: functions for quickfix mode, using a file with error messages
12 */
13
14#include "vim.h"
15
16#if defined(FEAT_QUICKFIX) || defined(PROTO)
17
18struct dir_stack_T
19{
20 struct dir_stack_T *next;
21 char_u *dirname;
22};
23
Bram Moolenaar071d4272004-06-13 20:20:40 +000024/*
Bram Moolenaar68b76a62005-03-25 21:53:48 +000025 * For each error the next struct is allocated and linked in a list.
Bram Moolenaar071d4272004-06-13 20:20:40 +000026 */
Bram Moolenaar68b76a62005-03-25 21:53:48 +000027typedef struct qfline_S qfline_T;
28struct qfline_S
Bram Moolenaar071d4272004-06-13 20:20:40 +000029{
Bram Moolenaar68b76a62005-03-25 21:53:48 +000030 qfline_T *qf_next; /* pointer to next error in the list */
31 qfline_T *qf_prev; /* pointer to previous error in the list */
32 linenr_T qf_lnum; /* line number where the error occurred */
33 int qf_fnum; /* file number for the line */
34 int qf_col; /* column where the error occurred */
35 int qf_nr; /* error number */
36 char_u *qf_pattern; /* search pattern for the error */
37 char_u *qf_text; /* description of the error */
38 char_u qf_viscol; /* set to TRUE if qf_col is screen column */
39 char_u qf_cleared; /* set to TRUE if line has been deleted */
40 char_u qf_type; /* type of the error (mostly 'E'); 1 for
Bram Moolenaar071d4272004-06-13 20:20:40 +000041 :helpgrep */
Bram Moolenaar68b76a62005-03-25 21:53:48 +000042 char_u qf_valid; /* valid error message detected */
Bram Moolenaar071d4272004-06-13 20:20:40 +000043};
44
45/*
46 * There is a stack of error lists.
47 */
48#define LISTCOUNT 10
49
Bram Moolenaard12f5c12006-01-25 22:10:52 +000050typedef struct qf_list_S
Bram Moolenaar071d4272004-06-13 20:20:40 +000051{
Bram Moolenaar68b76a62005-03-25 21:53:48 +000052 qfline_T *qf_start; /* pointer to the first error */
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +020053 qfline_T *qf_last; /* pointer to the last error */
Bram Moolenaar68b76a62005-03-25 21:53:48 +000054 qfline_T *qf_ptr; /* pointer to the current error */
55 int qf_count; /* number of errors (0 means no error list) */
56 int qf_index; /* current index in the error list */
57 int qf_nonevalid; /* TRUE if not a single valid entry found */
Bram Moolenaar7fd73202010-07-25 16:58:46 +020058 char_u *qf_title; /* title derived from the command that created
59 * the error list */
Bram Moolenaard12f5c12006-01-25 22:10:52 +000060} qf_list_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +000061
Bram Moolenaard12f5c12006-01-25 22:10:52 +000062struct qf_info_S
63{
64 /*
65 * Count of references to this list. Used only for location lists.
66 * When a location list window reference this list, qf_refcount
67 * will be 2. Otherwise, qf_refcount will be 1. When qf_refcount
68 * reaches 0, the list is freed.
69 */
70 int qf_refcount;
71 int qf_listcount; /* current number of lists */
72 int qf_curlist; /* current error list */
73 qf_list_T qf_lists[LISTCOUNT];
Bram Moolenaar361c8f02016-07-02 15:41:47 +020074
75 int qf_dir_curlist; /* error list for qf_dir_stack */
76 struct dir_stack_T *qf_dir_stack;
77 char_u *qf_directory;
78 struct dir_stack_T *qf_file_stack;
79 char_u *qf_currfile;
80 int qf_multiline;
81 int qf_multiignore;
82 int qf_multiscan;
Bram Moolenaard12f5c12006-01-25 22:10:52 +000083};
84
85static qf_info_T ql_info; /* global quickfix list */
Bram Moolenaar071d4272004-06-13 20:20:40 +000086
Bram Moolenaar68b76a62005-03-25 21:53:48 +000087#define FMT_PATTERNS 10 /* maximum number of % recognized */
Bram Moolenaar071d4272004-06-13 20:20:40 +000088
89/*
90 * Structure used to hold the info of one part of 'errorformat'
91 */
Bram Moolenaar01265852006-03-20 21:50:15 +000092typedef struct efm_S efm_T;
93struct efm_S
Bram Moolenaar071d4272004-06-13 20:20:40 +000094{
95 regprog_T *prog; /* pre-formatted part of 'errorformat' */
Bram Moolenaar01265852006-03-20 21:50:15 +000096 efm_T *next; /* pointer to next (NULL if last) */
Bram Moolenaar071d4272004-06-13 20:20:40 +000097 char_u addr[FMT_PATTERNS]; /* indices of used % patterns */
98 char_u prefix; /* prefix of this format line: */
99 /* 'D' enter directory */
100 /* 'X' leave directory */
101 /* 'A' start of multi-line message */
102 /* 'E' error message */
103 /* 'W' warning message */
104 /* 'I' informational message */
105 /* 'C' continuation line */
106 /* 'Z' end of multi-line message */
107 /* 'G' general, unspecific message */
108 /* 'P' push file (partial) message */
109 /* 'Q' pop/quit file (partial) message */
110 /* 'O' overread (partial) message */
111 char_u flags; /* additional flags given in prefix */
112 /* '-' do not include this line */
Bram Moolenaar4770d092006-01-12 23:22:24 +0000113 /* '+' include whole line in message */
Bram Moolenaar01265852006-03-20 21:50:15 +0000114 int conthere; /* %> used */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115};
116
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100117static int qf_init_ext(qf_info_T *qi, char_u *efile, buf_T *buf, typval_T *tv, char_u *errorformat, int newlist, linenr_T lnumfirst, linenr_T lnumlast, char_u *qf_title);
118static void qf_store_title(qf_info_T *qi, char_u *title);
119static void qf_new_list(qf_info_T *qi, char_u *qf_title);
120static void ll_free_all(qf_info_T **pqi);
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +0200121static int qf_add_entry(qf_info_T *qi, char_u *dir, char_u *fname, int bufnum, char_u *mesg, long lnum, int col, int vis_col, char_u *pattern, int nr, int type, int valid);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100122static qf_info_T *ll_new_list(void);
123static void qf_msg(qf_info_T *qi);
124static void qf_free(qf_info_T *qi, int idx);
125static char_u *qf_types(int, int);
Bram Moolenaar361c8f02016-07-02 15:41:47 +0200126static int qf_get_fnum(qf_info_T *qi, char_u *, char_u *);
127static char_u *qf_push_dir(char_u *, struct dir_stack_T **, int is_file_stack);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100128static char_u *qf_pop_dir(struct dir_stack_T **);
Bram Moolenaar361c8f02016-07-02 15:41:47 +0200129static char_u *qf_guess_filepath(qf_info_T *qi, char_u *);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100130static void qf_fmt_text(char_u *text, char_u *buf, int bufsize);
131static void qf_clean_dir_stack(struct dir_stack_T **);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132#ifdef FEAT_WINDOWS
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100133static int qf_win_pos_update(qf_info_T *qi, int old_qf_index);
134static int is_qf_win(win_T *win, qf_info_T *qi);
135static win_T *qf_find_win(qf_info_T *qi);
136static buf_T *qf_find_buf(qf_info_T *qi);
Bram Moolenaar864293a2016-06-02 13:40:04 +0200137static void qf_update_buffer(qf_info_T *qi, qfline_T *old_last);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100138static void qf_set_title_var(qf_info_T *qi);
Bram Moolenaar864293a2016-06-02 13:40:04 +0200139static void qf_fill_buffer(qf_info_T *qi, buf_T *buf, qfline_T *old_last);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100141static char_u *get_mef_name(void);
142static void restore_start_dir(char_u *dirname_start);
143static buf_T *load_dummy_buffer(char_u *fname, char_u *dirname_start, char_u *resulting_dir);
144static void wipe_dummy_buffer(buf_T *buf, char_u *dirname_start);
145static void unload_dummy_buffer(buf_T *buf, char_u *dirname_start);
146static qf_info_T *ll_get_or_alloc_list(win_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000148/* Quickfix window check helper macro */
149#define IS_QF_WINDOW(wp) (bt_quickfix(wp->w_buffer) && wp->w_llist_ref == NULL)
150/* Location list window check helper macro */
151#define IS_LL_WINDOW(wp) (bt_quickfix(wp->w_buffer) && wp->w_llist_ref != NULL)
152/*
153 * Return location list for window 'wp'
154 * For location list window, return the referenced location list
155 */
156#define GET_LOC_LIST(wp) (IS_LL_WINDOW(wp) ? wp->w_llist_ref : wp->w_llist)
157
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158/*
Bram Moolenaar86b68352004-12-27 21:59:20 +0000159 * Read the errorfile "efile" into memory, line by line, building the error
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200160 * list. Set the error list's title to qf_title.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 * Return -1 for error, number of errors for success.
162 */
163 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100164qf_init(
165 win_T *wp,
166 char_u *efile,
167 char_u *errorformat,
168 int newlist, /* TRUE: start a new error list */
169 char_u *qf_title)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170{
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000171 qf_info_T *qi = &ql_info;
172
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000173 if (wp != NULL)
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000174 {
175 qi = ll_get_or_alloc_list(wp);
176 if (qi == NULL)
177 return FAIL;
178 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000179
180 return qf_init_ext(qi, efile, curbuf, NULL, errorformat, newlist,
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200181 (linenr_T)0, (linenr_T)0,
182 qf_title);
Bram Moolenaar86b68352004-12-27 21:59:20 +0000183}
184
185/*
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200186 * Maximum number of bytes allowed per line while reading a errorfile.
187 */
188#define LINE_MAXLEN 4096
189
Bram Moolenaar2b2b8ae2016-05-24 19:59:51 +0200190 static char_u *
191qf_grow_linebuf(char_u **growbuf, int *growbufsiz, int newsz, int *allocsz)
192{
193 /*
194 * If the line exceeds LINE_MAXLEN exclude the last
195 * byte since it's not a NL character.
196 */
197 *allocsz = newsz > LINE_MAXLEN ? LINE_MAXLEN - 1 : newsz;
198 if (*growbuf == NULL)
199 {
200 *growbuf = alloc(*allocsz + 1);
201 if (*growbuf == NULL)
202 return NULL;
203 *growbufsiz = *allocsz;
204 }
205 else if (*allocsz > *growbufsiz)
206 {
207 *growbuf = vim_realloc(*growbuf, *allocsz + 1);
208 if (*growbuf == NULL)
209 return NULL;
210 *growbufsiz = *allocsz;
211 }
212 return *growbuf;
213}
214
Bram Moolenaar688e3d12016-06-26 22:05:54 +0200215static struct fmtpattern
216{
217 char_u convchar;
218 char *pattern;
219} fmt_pat[FMT_PATTERNS] =
220 {
221 {'f', ".\\+"}, /* only used when at end */
222 {'n', "\\d\\+"},
223 {'l', "\\d\\+"},
224 {'c', "\\d\\+"},
225 {'t', "."},
226 {'m', ".\\+"},
227 {'r', ".*"},
228 {'p', "[- .]*"},
229 {'v', "\\d\\+"},
230 {'s', ".\\+"}
231 };
232
233/*
234 * Converts a 'errorformat' string to regular expression pattern
235 */
236 static int
237efm_to_regpat(
238 char_u *efm,
239 int len,
240 efm_T *fmt_ptr,
241 char_u *regpat,
242 char_u *errmsg)
243{
244 char_u *ptr;
245 char_u *efmp;
246 char_u *srcptr;
247 int round;
248 int idx = 0;
249
250 /*
251 * Build regexp pattern from current 'errorformat' option
252 */
253 ptr = regpat;
254 *ptr++ = '^';
255 round = 0;
256 for (efmp = efm; efmp < efm + len; ++efmp)
257 {
258 if (*efmp == '%')
259 {
260 ++efmp;
261 for (idx = 0; idx < FMT_PATTERNS; ++idx)
262 if (fmt_pat[idx].convchar == *efmp)
263 break;
264 if (idx < FMT_PATTERNS)
265 {
266 if (fmt_ptr->addr[idx])
267 {
268 sprintf((char *)errmsg,
269 _("E372: Too many %%%c in format string"), *efmp);
270 EMSG(errmsg);
271 return -1;
272 }
273 if ((idx
274 && idx < 6
275 && vim_strchr((char_u *)"DXOPQ",
276 fmt_ptr->prefix) != NULL)
277 || (idx == 6
278 && vim_strchr((char_u *)"OPQ",
279 fmt_ptr->prefix) == NULL))
280 {
281 sprintf((char *)errmsg,
282 _("E373: Unexpected %%%c in format string"), *efmp);
283 EMSG(errmsg);
284 return -1;
285 }
286 fmt_ptr->addr[idx] = (char_u)++round;
287 *ptr++ = '\\';
288 *ptr++ = '(';
289#ifdef BACKSLASH_IN_FILENAME
290 if (*efmp == 'f')
291 {
292 /* Also match "c:" in the file name, even when
293 * checking for a colon next: "%f:".
294 * "\%(\a:\)\=" */
295 STRCPY(ptr, "\\%(\\a:\\)\\=");
296 ptr += 10;
297 }
298#endif
299 if (*efmp == 'f' && efmp[1] != NUL)
300 {
301 if (efmp[1] != '\\' && efmp[1] != '%')
302 {
303 /* A file name may contain spaces, but this isn't
304 * in "\f". For "%f:%l:%m" there may be a ":" in
305 * the file name. Use ".\{-1,}x" instead (x is
306 * the next character), the requirement that :999:
307 * follows should work. */
308 STRCPY(ptr, ".\\{-1,}");
309 ptr += 7;
310 }
311 else
312 {
313 /* File name followed by '\\' or '%': include as
314 * many file name chars as possible. */
315 STRCPY(ptr, "\\f\\+");
316 ptr += 4;
317 }
318 }
319 else
320 {
321 srcptr = (char_u *)fmt_pat[idx].pattern;
322 while ((*ptr = *srcptr++) != NUL)
323 ++ptr;
324 }
325 *ptr++ = '\\';
326 *ptr++ = ')';
327 }
328 else if (*efmp == '*')
329 {
330 if (*++efmp == '[' || *efmp == '\\')
331 {
332 if ((*ptr++ = *efmp) == '[') /* %*[^a-z0-9] etc. */
333 {
334 if (efmp[1] == '^')
335 *ptr++ = *++efmp;
336 if (efmp < efm + len)
337 {
338 *ptr++ = *++efmp; /* could be ']' */
339 while (efmp < efm + len
340 && (*ptr++ = *++efmp) != ']')
341 /* skip */;
342 if (efmp == efm + len)
343 {
344 EMSG(_("E374: Missing ] in format string"));
345 return -1;
346 }
347 }
348 }
349 else if (efmp < efm + len) /* %*\D, %*\s etc. */
350 *ptr++ = *++efmp;
351 *ptr++ = '\\';
352 *ptr++ = '+';
353 }
354 else
355 {
356 /* TODO: scanf()-like: %*ud, %*3c, %*f, ... ? */
357 sprintf((char *)errmsg,
358 _("E375: Unsupported %%%c in format string"), *efmp);
359 EMSG(errmsg);
360 return -1;
361 }
362 }
363 else if (vim_strchr((char_u *)"%\\.^$~[", *efmp) != NULL)
364 *ptr++ = *efmp; /* regexp magic characters */
365 else if (*efmp == '#')
366 *ptr++ = '*';
367 else if (*efmp == '>')
368 fmt_ptr->conthere = TRUE;
369 else if (efmp == efm + 1) /* analyse prefix */
370 {
371 if (vim_strchr((char_u *)"+-", *efmp) != NULL)
372 fmt_ptr->flags = *efmp++;
373 if (vim_strchr((char_u *)"DXAEWICZGOPQ", *efmp) != NULL)
374 fmt_ptr->prefix = *efmp;
375 else
376 {
377 sprintf((char *)errmsg,
378 _("E376: Invalid %%%c in format string prefix"), *efmp);
379 EMSG(errmsg);
380 return -1;
381 }
382 }
383 else
384 {
385 sprintf((char *)errmsg,
386 _("E377: Invalid %%%c in format string"), *efmp);
387 EMSG(errmsg);
388 return -1;
389 }
390 }
391 else /* copy normal character */
392 {
393 if (*efmp == '\\' && efmp + 1 < efm + len)
394 ++efmp;
395 else if (vim_strchr((char_u *)".*^$~[", *efmp) != NULL)
396 *ptr++ = '\\'; /* escape regexp atoms */
397 if (*efmp)
398 *ptr++ = *efmp;
399 }
400 }
401 *ptr++ = '$';
402 *ptr = NUL;
403
404 return 0;
405}
406
407 static void
408free_efm_list(efm_T **efm_first)
409{
410 efm_T *efm_ptr;
411
412 for (efm_ptr = *efm_first; efm_ptr != NULL; efm_ptr = *efm_first)
413 {
414 *efm_first = efm_ptr->next;
415 vim_regfree(efm_ptr->prog);
416 vim_free(efm_ptr);
417 }
418}
419
420/* Parse 'errorformat' option */
421 static efm_T *
422parse_efm_option(char_u *efm)
423{
424 char_u *errmsg = NULL;
425 int errmsglen;
426 efm_T *fmt_ptr = NULL;
427 efm_T *fmt_first = NULL;
428 efm_T *fmt_last = NULL;
429 char_u *fmtstr = NULL;
430 int len;
431 int i;
432 int round;
433
434 errmsglen = CMDBUFFSIZE + 1;
435 errmsg = alloc_id(errmsglen, aid_qf_errmsg);
436 if (errmsg == NULL)
437 goto parse_efm_end;
438
439 /*
440 * Get some space to modify the format string into.
441 */
442 i = (FMT_PATTERNS * 3) + ((int)STRLEN(efm) << 2);
443 for (round = FMT_PATTERNS; round > 0; )
444 i += (int)STRLEN(fmt_pat[--round].pattern);
445#ifdef COLON_IN_FILENAME
446 i += 12; /* "%f" can become twelve chars longer */
447#else
448 i += 2; /* "%f" can become two chars longer */
449#endif
450 if ((fmtstr = alloc(i)) == NULL)
451 goto parse_efm_error;
452
453 while (efm[0] != NUL)
454 {
455 /*
456 * Allocate a new eformat structure and put it at the end of the list
457 */
458 fmt_ptr = (efm_T *)alloc_clear((unsigned)sizeof(efm_T));
459 if (fmt_ptr == NULL)
460 goto parse_efm_error;
461 if (fmt_first == NULL) /* first one */
462 fmt_first = fmt_ptr;
463 else
464 fmt_last->next = fmt_ptr;
465 fmt_last = fmt_ptr;
466
467 /*
468 * Isolate one part in the 'errorformat' option
469 */
470 for (len = 0; efm[len] != NUL && efm[len] != ','; ++len)
471 if (efm[len] == '\\' && efm[len + 1] != NUL)
472 ++len;
473
474 if (efm_to_regpat(efm, len, fmt_ptr, fmtstr, errmsg) == -1)
475 goto parse_efm_error;
476 if ((fmt_ptr->prog = vim_regcomp(fmtstr, RE_MAGIC + RE_STRING)) == NULL)
477 goto parse_efm_error;
478 /*
479 * Advance to next part
480 */
481 efm = skip_to_option_part(efm + len); /* skip comma and spaces */
482 }
483
484 if (fmt_first == NULL) /* nothing found */
485 EMSG(_("E378: 'errorformat' contains no pattern"));
486
487 goto parse_efm_end;
488
489parse_efm_error:
490 free_efm_list(&fmt_first);
491
492parse_efm_end:
493 vim_free(fmtstr);
494 vim_free(errmsg);
495
496 return fmt_first;
497}
498
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200499/*
Bram Moolenaar86b68352004-12-27 21:59:20 +0000500 * Read the errorfile "efile" into memory, line by line, building the error
501 * list.
Bram Moolenaar864293a2016-06-02 13:40:04 +0200502 * Alternative: when "efile" is NULL read errors from buffer "buf".
503 * Alternative: when "tv" is not NULL get errors from the string or list.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000504 * Always use 'errorformat' from "buf" if there is a local value.
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200505 * Then "lnumfirst" and "lnumlast" specify the range of lines to use.
506 * Set the title of the list to "qf_title".
Bram Moolenaar86b68352004-12-27 21:59:20 +0000507 * Return -1 for error, number of errors for success.
508 */
509 static int
Bram Moolenaar05540972016-01-30 20:31:25 +0100510qf_init_ext(
511 qf_info_T *qi,
512 char_u *efile,
513 buf_T *buf,
514 typval_T *tv,
515 char_u *errorformat,
516 int newlist, /* TRUE: start a new error list */
517 linenr_T lnumfirst, /* first line number to use */
518 linenr_T lnumlast, /* last line number to use */
519 char_u *qf_title)
Bram Moolenaar86b68352004-12-27 21:59:20 +0000520{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 char_u *namebuf;
522 char_u *errmsg;
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200523 int errmsglen;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000524 char_u *pattern;
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200525 char_u *growbuf = NULL;
526 int growbuflen;
Bram Moolenaar9a3b3312016-05-01 20:20:49 +0200527 int growbufsiz = 0;
528 char_u *linebuf = NULL;
529 int linelen = 0;
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200530 int discard;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 int col = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000532 char_u use_viscol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533 int type = 0;
534 int valid;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000535 linenr_T buflnum = lnumfirst;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 long lnum = 0L;
537 int enr = 0;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000538 FILE *fd = NULL;
Bram Moolenaar864293a2016-06-02 13:40:04 +0200539#ifdef FEAT_WINDOWS
540 qfline_T *old_last = NULL;
541#endif
Bram Moolenaar361c8f02016-07-02 15:41:47 +0200542 static efm_T *fmt_first = NULL;
Bram Moolenaar01265852006-03-20 21:50:15 +0000543 efm_T *fmt_ptr;
544 efm_T *fmt_start = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 char_u *efm;
Bram Moolenaar361c8f02016-07-02 15:41:47 +0200546 static char_u *last_efm = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547 char_u *ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 int len;
549 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 int idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 int retval = -1; /* default: return error flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 char_u *tail = NULL;
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200553 char_u *p_buf = NULL;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000554 char_u *p_str = NULL;
555 listitem_T *p_li = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 regmatch_T regmatch;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557
Bram Moolenaarb86a3432016-01-10 16:00:53 +0100558 namebuf = alloc_id(CMDBUFFSIZE + 1, aid_qf_namebuf);
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200559 errmsglen = CMDBUFFSIZE + 1;
560 errmsg = alloc_id(errmsglen, aid_qf_errmsg);
Bram Moolenaarb86a3432016-01-10 16:00:53 +0100561 pattern = alloc_id(CMDBUFFSIZE + 1, aid_qf_pattern);
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000562 if (namebuf == NULL || errmsg == NULL || pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 goto qf_init_end;
564
Bram Moolenaar86b68352004-12-27 21:59:20 +0000565 if (efile != NULL && (fd = mch_fopen((char *)efile, "r")) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 {
567 EMSG2(_(e_openerrf), efile);
568 goto qf_init_end;
569 }
570
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000571 if (newlist || qi->qf_curlist == qi->qf_listcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 /* make place for a new list */
Bram Moolenaar94116152012-11-28 17:41:59 +0100573 qf_new_list(qi, qf_title);
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +0200574#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000575 else if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar864293a2016-06-02 13:40:04 +0200576 {
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +0200577 /* Adding to existing list, use last entry. */
578 old_last = qi->qf_lists[qi->qf_curlist].qf_last;
Bram Moolenaar864293a2016-06-02 13:40:04 +0200579 }
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +0200580#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581
582/*
583 * Each part of the format string is copied and modified from errorformat to
584 * regex prog. Only a few % characters are allowed.
585 */
586 /* Use the local value of 'errorformat' if it's set. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000587 if (errorformat == p_efm && tv == NULL && *buf->b_p_efm != NUL)
Bram Moolenaar86b68352004-12-27 21:59:20 +0000588 efm = buf->b_p_efm;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 else
590 efm = errorformat;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591
Bram Moolenaar361c8f02016-07-02 15:41:47 +0200592 /*
593 * If we are not adding or adding to another list: clear the state.
594 */
595 if (newlist || qi->qf_curlist != qi->qf_dir_curlist)
596 {
597 qi->qf_dir_curlist = qi->qf_curlist;
598 qf_clean_dir_stack(&qi->qf_dir_stack);
599 qi->qf_directory = NULL;
600 qf_clean_dir_stack(&qi->qf_file_stack);
601 qi->qf_currfile = NULL;
602 qi->qf_multiline = FALSE;
603 qi->qf_multiignore = FALSE;
604 qi->qf_multiscan = FALSE;
605 }
606
607 /*
608 * If the errorformat didn't change between calls, then reuse the
609 * previously parsed values.
610 */
611 if (last_efm == NULL || (STRCMP(last_efm, efm) != 0))
612 {
613 /* free the previously parsed data */
614 vim_free(last_efm);
615 last_efm = NULL;
616 free_efm_list(&fmt_first);
617
618 /* parse the current 'efm' */
619 fmt_first = parse_efm_option(efm);
620 if (fmt_first != NULL)
621 last_efm = vim_strsave(efm);
622 }
623
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 if (fmt_first == NULL) /* nothing found */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625 goto error2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626
627 /*
628 * got_int is reset here, because it was probably set when killing the
629 * ":make" command, but we still want to read the errorfile then.
630 */
631 got_int = FALSE;
632
633 /* Always ignore case when looking for a matching error. */
634 regmatch.rm_ic = TRUE;
635
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000636 if (tv != NULL)
637 {
638 if (tv->v_type == VAR_STRING)
639 p_str = tv->vval.v_string;
640 else if (tv->v_type == VAR_LIST)
641 p_li = tv->vval.v_list->lv_first;
642 }
643
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 /*
645 * Read the lines in the error file one by one.
646 * Try to recognize one of the error formats in each line.
647 */
Bram Moolenaar86b68352004-12-27 21:59:20 +0000648 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 {
Bram Moolenaar86b68352004-12-27 21:59:20 +0000650 /* Get the next line. */
651 if (fd == NULL)
652 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000653 if (tv != NULL)
654 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000655 if (tv->v_type == VAR_STRING)
656 {
657 /* Get the next line from the supplied string */
658 char_u *p;
659
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200660 if (*p_str == NUL) /* Reached the end of the string */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000661 break;
662
663 p = vim_strchr(p_str, '\n');
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200664 if (p != NULL)
665 len = (int)(p - p_str) + 1;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000666 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000667 len = (int)STRLEN(p_str);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000668
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200669 if (len > IOSIZE - 2)
670 {
Bram Moolenaar2b2b8ae2016-05-24 19:59:51 +0200671 linebuf = qf_grow_linebuf(&growbuf, &growbufsiz, len,
672 &linelen);
673 if (linebuf == NULL)
674 goto qf_init_end;
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200675 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000676 else
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200677 {
678 linebuf = IObuff;
679 linelen = len;
680 }
681 vim_strncpy(linebuf, p_str, linelen);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000682
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200683 /*
684 * Increment using len in order to discard the rest of the
685 * line if it exceeds LINE_MAXLEN.
686 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000687 p_str += len;
688 }
689 else if (tv->v_type == VAR_LIST)
690 {
691 /* Get the next line from the supplied list */
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200692 while (p_li != NULL
693 && (p_li->li_tv.v_type != VAR_STRING
694 || p_li->li_tv.vval.v_string == NULL))
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000695 p_li = p_li->li_next; /* Skip non-string items */
696
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200697 if (p_li == NULL) /* End of the list */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000698 break;
699
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000700 len = (int)STRLEN(p_li->li_tv.vval.v_string);
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200701 if (len > IOSIZE - 2)
702 {
Bram Moolenaar2b2b8ae2016-05-24 19:59:51 +0200703 linebuf = qf_grow_linebuf(&growbuf, &growbufsiz, len,
704 &linelen);
705 if (linebuf == NULL)
706 goto qf_init_end;
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200707 }
708 else
709 {
710 linebuf = IObuff;
711 linelen = len;
712 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000713
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200714 vim_strncpy(linebuf, p_li->li_tv.vval.v_string, linelen);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000715
716 p_li = p_li->li_next; /* next item */
717 }
718 }
719 else
720 {
721 /* Get the next line from the supplied buffer */
722 if (buflnum > lnumlast)
723 break;
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200724 p_buf = ml_get_buf(buf, buflnum++, FALSE);
Bram Moolenaar38df43b2016-06-20 21:41:12 +0200725 len = (int)STRLEN(p_buf);
726 if (len > IOSIZE - 2)
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200727 {
Bram Moolenaar2b2b8ae2016-05-24 19:59:51 +0200728 linebuf = qf_grow_linebuf(&growbuf, &growbufsiz, len,
729 &linelen);
730 if (linebuf == NULL)
731 goto qf_init_end;
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200732 }
733 else
Bram Moolenaar38df43b2016-06-20 21:41:12 +0200734 {
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200735 linebuf = IObuff;
Bram Moolenaar38df43b2016-06-20 21:41:12 +0200736 linelen = len;
737 }
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200738 vim_strncpy(linebuf, p_buf, linelen);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000739 }
Bram Moolenaar86b68352004-12-27 21:59:20 +0000740 }
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200741 else
742 {
743 if (fgets((char *)IObuff, IOSIZE, fd) == NULL)
744 break;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000745
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200746 discard = FALSE;
747 linelen = (int)STRLEN(IObuff);
Bram Moolenaarb37662a2016-06-02 22:18:47 +0200748 if (linelen == IOSIZE - 1 && !(IObuff[linelen - 1] == '\n'
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200749#ifdef USE_CRNL
Bram Moolenaarb37662a2016-06-02 22:18:47 +0200750 || IObuff[linelen - 1] == '\r'
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200751#endif
752 ))
753 {
754 /*
755 * The current line exceeds IObuff, continue reading using
756 * growbuf until EOL or LINE_MAXLEN bytes is read.
757 */
758 if (growbuf == NULL)
759 {
760 growbufsiz = 2 * (IOSIZE - 1);
761 growbuf = alloc(growbufsiz);
762 if (growbuf == NULL)
763 goto qf_init_end;
764 }
765
766 /* Copy the read part of the line, excluding null-terminator */
767 memcpy(growbuf, IObuff, IOSIZE - 1);
768 growbuflen = linelen;
769
770 for (;;)
771 {
772 if (fgets((char *)growbuf + growbuflen,
773 growbufsiz - growbuflen, fd) == NULL)
774 break;
Bram Moolenaard9db8b42016-05-08 12:52:05 +0200775 linelen = (int)STRLEN(growbuf + growbuflen);
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200776 growbuflen += linelen;
777 if (growbuf[growbuflen - 1] == '\n'
778#ifdef USE_CRNL
779 || growbuf[growbuflen - 1] == '\r'
780#endif
781 )
782 break;
783 if (growbufsiz == LINE_MAXLEN)
784 {
785 discard = TRUE;
786 break;
787 }
788
789 growbufsiz = 2 * growbufsiz < LINE_MAXLEN
790 ? 2 * growbufsiz : LINE_MAXLEN;
791 growbuf = vim_realloc(growbuf, 2 * growbufsiz);
792 if (growbuf == NULL)
793 goto qf_init_end;
794 }
795
796 while (discard)
797 {
798 /*
799 * The current line is longer than LINE_MAXLEN, continue
800 * reading but discard everything until EOL or EOF is
801 * reached.
802 */
803 if (fgets((char *)IObuff, IOSIZE, fd) == NULL
804 || (int)STRLEN(IObuff) < IOSIZE - 1
805 || IObuff[IOSIZE - 1] == '\n'
806#ifdef USE_CRNL
807 || IObuff[IOSIZE - 1] == '\r'
808#endif
809 )
810 break;
811 }
812
813 linebuf = growbuf;
814 linelen = growbuflen;
815 }
816 else
817 linebuf = IObuff;
818 }
819
820 if (linelen > 0 && linebuf[linelen - 1] == '\n')
821 linebuf[linelen - 1] = NUL;
822#ifdef USE_CRNL
823 if (linelen > 0 && linebuf[linelen - 1] == '\r')
824 linebuf[linelen - 1] = NUL;
Bram Moolenaar836082d2011-08-10 13:21:46 +0200825#endif
826
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200827#ifdef FEAT_MBYTE
828 remove_bom(linebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829#endif
830
Bram Moolenaar01265852006-03-20 21:50:15 +0000831 /* If there was no %> item start at the first pattern */
832 if (fmt_start == NULL)
833 fmt_ptr = fmt_first;
834 else
835 {
836 fmt_ptr = fmt_start;
837 fmt_start = NULL;
838 }
839
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 /*
841 * Try to match each part of 'errorformat' until we find a complete
842 * match or no match.
843 */
844 valid = TRUE;
845restofline:
Bram Moolenaar01265852006-03-20 21:50:15 +0000846 for ( ; fmt_ptr != NULL; fmt_ptr = fmt_ptr->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 {
Bram Moolenaar6f2dd9e2014-12-17 14:41:10 +0100848 int r;
849
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 idx = fmt_ptr->prefix;
Bram Moolenaar361c8f02016-07-02 15:41:47 +0200851 if (qi->qf_multiscan && vim_strchr((char_u *)"OPQ", idx) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 continue;
853 namebuf[0] = NUL;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000854 pattern[0] = NUL;
Bram Moolenaar361c8f02016-07-02 15:41:47 +0200855 if (!qi->qf_multiscan)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 errmsg[0] = NUL;
857 lnum = 0;
858 col = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000859 use_viscol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 enr = -1;
861 type = 0;
862 tail = NULL;
863
864 regmatch.regprog = fmt_ptr->prog;
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200865 r = vim_regexec(&regmatch, linebuf, (colnr_T)0);
Bram Moolenaar6f2dd9e2014-12-17 14:41:10 +0100866 fmt_ptr->prog = regmatch.regprog;
867 if (r)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 {
Bram Moolenaar361c8f02016-07-02 15:41:47 +0200869 if ((idx == 'C' || idx == 'Z') && !qi->qf_multiline)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 continue;
871 if (vim_strchr((char_u *)"EWI", idx) != NULL)
872 type = idx;
873 else
874 type = 0;
875 /*
Bram Moolenaar4169da72006-06-20 18:49:32 +0000876 * Extract error message data from matched line.
877 * We check for an actual submatch, because "\[" and "\]" in
878 * the 'errorformat' may cause the wrong submatch to be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 */
880 if ((i = (int)fmt_ptr->addr[0]) > 0) /* %f */
881 {
Bram Moolenaar4169da72006-06-20 18:49:32 +0000882 int c;
883
884 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL)
885 continue;
Bram Moolenaar35c54e52005-05-20 21:25:31 +0000886
887 /* Expand ~/file and $HOME/file to full path. */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000888 c = *regmatch.endp[i];
Bram Moolenaar35c54e52005-05-20 21:25:31 +0000889 *regmatch.endp[i] = NUL;
890 expand_env(regmatch.startp[i], namebuf, CMDBUFFSIZE);
891 *regmatch.endp[i] = c;
892
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 if (vim_strchr((char_u *)"OPQ", idx) != NULL
Bram Moolenaar35c54e52005-05-20 21:25:31 +0000894 && mch_getperm(namebuf) == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 continue;
896 }
897 if ((i = (int)fmt_ptr->addr[1]) > 0) /* %n */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000898 {
899 if (regmatch.startp[i] == NULL)
900 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 enr = (int)atol((char *)regmatch.startp[i]);
Bram Moolenaar4169da72006-06-20 18:49:32 +0000902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 if ((i = (int)fmt_ptr->addr[2]) > 0) /* %l */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000904 {
905 if (regmatch.startp[i] == NULL)
906 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 lnum = atol((char *)regmatch.startp[i]);
Bram Moolenaar4169da72006-06-20 18:49:32 +0000908 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 if ((i = (int)fmt_ptr->addr[3]) > 0) /* %c */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000910 {
911 if (regmatch.startp[i] == NULL)
912 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 col = (int)atol((char *)regmatch.startp[i]);
Bram Moolenaar4169da72006-06-20 18:49:32 +0000914 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 if ((i = (int)fmt_ptr->addr[4]) > 0) /* %t */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000916 {
917 if (regmatch.startp[i] == NULL)
918 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 type = *regmatch.startp[i];
Bram Moolenaar4169da72006-06-20 18:49:32 +0000920 }
Bram Moolenaar361c8f02016-07-02 15:41:47 +0200921 if (fmt_ptr->flags == '+' && !qi->qf_multiscan) /* %+ */
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200922 {
923 if (linelen > errmsglen) {
924 /* linelen + null terminator */
925 if ((errmsg = vim_realloc(errmsg, linelen + 1)) == NULL)
926 goto qf_init_end;
927 errmsglen = linelen + 1;
928 }
929 vim_strncpy(errmsg, linebuf, linelen);
930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 else if ((i = (int)fmt_ptr->addr[5]) > 0) /* %m */
932 {
Bram Moolenaar4169da72006-06-20 18:49:32 +0000933 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL)
934 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 len = (int)(regmatch.endp[i] - regmatch.startp[i]);
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +0200936 if (len > errmsglen) {
937 /* len + null terminator */
938 if ((errmsg = vim_realloc(errmsg, len + 1))
939 == NULL)
940 goto qf_init_end;
941 errmsglen = len + 1;
942 }
Bram Moolenaarbbebc852005-07-18 21:47:53 +0000943 vim_strncpy(errmsg, regmatch.startp[i], len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 }
945 if ((i = (int)fmt_ptr->addr[6]) > 0) /* %r */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000946 {
947 if (regmatch.startp[i] == NULL)
948 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 tail = regmatch.startp[i];
Bram Moolenaar4169da72006-06-20 18:49:32 +0000950 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 if ((i = (int)fmt_ptr->addr[7]) > 0) /* %p */
952 {
Bram Moolenaarf13de072012-06-01 18:34:41 +0200953 char_u *match_ptr;
954
Bram Moolenaar4169da72006-06-20 18:49:32 +0000955 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL)
956 continue;
Bram Moolenaarf13de072012-06-01 18:34:41 +0200957 col = 0;
958 for (match_ptr = regmatch.startp[i];
959 match_ptr != regmatch.endp[i]; ++match_ptr)
960 {
961 ++col;
962 if (*match_ptr == TAB)
963 {
964 col += 7;
965 col -= col % 8;
966 }
967 }
968 ++col;
969 use_viscol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970 }
971 if ((i = (int)fmt_ptr->addr[8]) > 0) /* %v */
972 {
Bram Moolenaar4169da72006-06-20 18:49:32 +0000973 if (regmatch.startp[i] == NULL)
974 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 col = (int)atol((char *)regmatch.startp[i]);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000976 use_viscol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000978 if ((i = (int)fmt_ptr->addr[9]) > 0) /* %s */
979 {
Bram Moolenaar4169da72006-06-20 18:49:32 +0000980 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL)
981 continue;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000982 len = (int)(regmatch.endp[i] - regmatch.startp[i]);
983 if (len > CMDBUFFSIZE - 5)
984 len = CMDBUFFSIZE - 5;
985 STRCPY(pattern, "^\\V");
986 STRNCAT(pattern, regmatch.startp[i], len);
987 pattern[len + 3] = '\\';
988 pattern[len + 4] = '$';
989 pattern[len + 5] = NUL;
990 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 break;
992 }
993 }
Bram Moolenaar361c8f02016-07-02 15:41:47 +0200994 qi->qf_multiscan = FALSE;
Bram Moolenaar01265852006-03-20 21:50:15 +0000995
Bram Moolenaar4770d092006-01-12 23:22:24 +0000996 if (fmt_ptr == NULL || idx == 'D' || idx == 'X')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 {
Bram Moolenaar4770d092006-01-12 23:22:24 +0000998 if (fmt_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 {
1000 if (idx == 'D') /* enter directory */
1001 {
1002 if (*namebuf == NUL)
1003 {
1004 EMSG(_("E379: Missing or empty directory name"));
1005 goto error2;
1006 }
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001007 qi->qf_directory =
1008 qf_push_dir(namebuf, &qi->qf_dir_stack, FALSE);
1009 if (qi->qf_directory == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 goto error2;
1011 }
1012 else if (idx == 'X') /* leave directory */
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001013 qi->qf_directory = qf_pop_dir(&qi->qf_dir_stack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 }
1015 namebuf[0] = NUL; /* no match found, remove file name */
1016 lnum = 0; /* don't jump to this line */
1017 valid = FALSE;
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +02001018 if (linelen > errmsglen) {
1019 /* linelen + null terminator */
1020 if ((errmsg = vim_realloc(errmsg, linelen + 1)) == NULL)
1021 goto qf_init_end;
1022 errmsglen = linelen + 1;
1023 }
1024 /* copy whole line to error message */
1025 vim_strncpy(errmsg, linebuf, linelen);
Bram Moolenaar4770d092006-01-12 23:22:24 +00001026 if (fmt_ptr == NULL)
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001027 qi->qf_multiline = qi->qf_multiignore = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 }
Bram Moolenaar4770d092006-01-12 23:22:24 +00001029 else if (fmt_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 {
Bram Moolenaar01265852006-03-20 21:50:15 +00001031 /* honor %> item */
1032 if (fmt_ptr->conthere)
1033 fmt_start = fmt_ptr;
1034
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 if (vim_strchr((char_u *)"AEWI", idx) != NULL)
Bram Moolenaar8eded092014-03-12 19:41:55 +01001036 {
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001037 qi->qf_multiline = TRUE; /* start of a multi-line message */
1038 qi->qf_multiignore = FALSE; /* reset continuation */
Bram Moolenaar8eded092014-03-12 19:41:55 +01001039 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 else if (vim_strchr((char_u *)"CZ", idx) != NULL)
1041 { /* continuation of multi-line msg */
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001042 qfline_T *qfprev = qi->qf_lists[qi->qf_curlist].qf_last;
1043
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 if (qfprev == NULL)
1045 goto error2;
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001046 if (*errmsg && !qi->qf_multiignore)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 {
1048 len = (int)STRLEN(qfprev->qf_text);
1049 if ((ptr = alloc((unsigned)(len + STRLEN(errmsg) + 2)))
1050 == NULL)
1051 goto error2;
1052 STRCPY(ptr, qfprev->qf_text);
1053 vim_free(qfprev->qf_text);
1054 qfprev->qf_text = ptr;
1055 *(ptr += len) = '\n';
1056 STRCPY(++ptr, errmsg);
1057 }
1058 if (qfprev->qf_nr == -1)
1059 qfprev->qf_nr = enr;
1060 if (vim_isprintc(type) && !qfprev->qf_type)
1061 qfprev->qf_type = type; /* only printable chars allowed */
1062 if (!qfprev->qf_lnum)
1063 qfprev->qf_lnum = lnum;
1064 if (!qfprev->qf_col)
1065 qfprev->qf_col = col;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001066 qfprev->qf_viscol = use_viscol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 if (!qfprev->qf_fnum)
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001068 qfprev->qf_fnum = qf_get_fnum(qi, qi->qf_directory,
1069 *namebuf || qi->qf_directory != NULL
1070 ? namebuf
1071 : qi->qf_currfile != NULL && valid
1072 ? qi->qf_currfile : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 if (idx == 'Z')
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001074 qi->qf_multiline = qi->qf_multiignore = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 line_breakcheck();
1076 continue;
1077 }
1078 else if (vim_strchr((char_u *)"OPQ", idx) != NULL)
1079 {
1080 /* global file names */
1081 valid = FALSE;
1082 if (*namebuf == NUL || mch_getperm(namebuf) >= 0)
1083 {
1084 if (*namebuf && idx == 'P')
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001085 qi->qf_currfile =
1086 qf_push_dir(namebuf, &qi->qf_file_stack, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 else if (idx == 'Q')
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001088 qi->qf_currfile = qf_pop_dir(&qi->qf_file_stack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 *namebuf = NUL;
1090 if (tail && *tail)
1091 {
Bram Moolenaarc236c162008-07-13 17:41:49 +00001092 STRMOVE(IObuff, skipwhite(tail));
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001093 qi->qf_multiscan = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 goto restofline;
1095 }
1096 }
1097 }
1098 if (fmt_ptr->flags == '-') /* generally exclude this line */
1099 {
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001100 if (qi->qf_multiline)
1101 /* also exclude continuation lines */
1102 qi->qf_multiignore = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 continue;
1104 }
1105 }
1106
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001107 if (qf_add_entry(qi,
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001108 qi->qf_directory,
1109 (*namebuf || qi->qf_directory != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110 ? namebuf
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001111 : ((qi->qf_currfile != NULL && valid)
1112 ? qi->qf_currfile : (char_u *)NULL),
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00001113 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 errmsg,
1115 lnum,
1116 col,
Bram Moolenaar05159a02005-02-26 23:04:13 +00001117 use_viscol,
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001118 pattern,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 enr,
1120 type,
1121 valid) == FAIL)
1122 goto error2;
1123 line_breakcheck();
1124 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00001125 if (fd == NULL || !ferror(fd))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001127 if (qi->qf_lists[qi->qf_curlist].qf_index == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001129 /* no valid entry found */
1130 qi->qf_lists[qi->qf_curlist].qf_ptr =
1131 qi->qf_lists[qi->qf_curlist].qf_start;
1132 qi->qf_lists[qi->qf_curlist].qf_index = 1;
1133 qi->qf_lists[qi->qf_curlist].qf_nonevalid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 }
1135 else
1136 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001137 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
1138 if (qi->qf_lists[qi->qf_curlist].qf_ptr == NULL)
1139 qi->qf_lists[qi->qf_curlist].qf_ptr =
1140 qi->qf_lists[qi->qf_curlist].qf_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001142 /* return number of matches */
1143 retval = qi->qf_lists[qi->qf_curlist].qf_count;
Bram Moolenaarbcf77722016-06-28 21:11:32 +02001144 goto qf_init_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 }
1146 EMSG(_(e_readerrf));
1147error2:
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001148 qf_free(qi, qi->qf_curlist);
1149 qi->qf_listcount--;
1150 if (qi->qf_curlist > 0)
1151 --qi->qf_curlist;
Bram Moolenaarbcf77722016-06-28 21:11:32 +02001152qf_init_end:
Bram Moolenaar86b68352004-12-27 21:59:20 +00001153 if (fd != NULL)
1154 fclose(fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 vim_free(namebuf);
1156 vim_free(errmsg);
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001157 vim_free(pattern);
Bram Moolenaar6be8c8e2016-04-30 13:17:09 +02001158 vim_free(growbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159
1160#ifdef FEAT_WINDOWS
Bram Moolenaar864293a2016-06-02 13:40:04 +02001161 qf_update_buffer(qi, old_last);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162#endif
1163
1164 return retval;
1165}
1166
Bram Moolenaarfb604092014-07-23 15:55:00 +02001167 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001168qf_store_title(qf_info_T *qi, char_u *title)
Bram Moolenaarfb604092014-07-23 15:55:00 +02001169{
1170 if (title != NULL)
1171 {
1172 char_u *p = alloc((int)STRLEN(title) + 2);
1173
1174 qi->qf_lists[qi->qf_curlist].qf_title = p;
1175 if (p != NULL)
1176 sprintf((char *)p, ":%s", (char *)title);
1177 }
1178}
1179
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180/*
1181 * Prepare for adding a new quickfix list.
1182 */
1183 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001184qf_new_list(qf_info_T *qi, char_u *qf_title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185{
1186 int i;
1187
1188 /*
Bram Moolenaarfb604092014-07-23 15:55:00 +02001189 * If the current entry is not the last entry, delete entries beyond
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 * the current entry. This makes it possible to browse in a tree-like
1191 * way with ":grep'.
1192 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001193 while (qi->qf_listcount > qi->qf_curlist + 1)
1194 qf_free(qi, --qi->qf_listcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195
1196 /*
1197 * When the stack is full, remove to oldest entry
1198 * Otherwise, add a new entry.
1199 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001200 if (qi->qf_listcount == LISTCOUNT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001202 qf_free(qi, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 for (i = 1; i < LISTCOUNT; ++i)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001204 qi->qf_lists[i - 1] = qi->qf_lists[i];
1205 qi->qf_curlist = LISTCOUNT - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 }
1207 else
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001208 qi->qf_curlist = qi->qf_listcount++;
Bram Moolenaara0f299b2012-01-10 17:13:52 +01001209 vim_memset(&qi->qf_lists[qi->qf_curlist], 0, (size_t)(sizeof(qf_list_T)));
Bram Moolenaarfb604092014-07-23 15:55:00 +02001210 qf_store_title(qi, qf_title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211}
1212
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001213/*
1214 * Free a location list
1215 */
1216 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001217ll_free_all(qf_info_T **pqi)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001218{
1219 int i;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001220 qf_info_T *qi;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001221
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001222 qi = *pqi;
1223 if (qi == NULL)
1224 return;
1225 *pqi = NULL; /* Remove reference to this list */
1226
1227 qi->qf_refcount--;
1228 if (qi->qf_refcount < 1)
1229 {
1230 /* No references to this location list */
1231 for (i = 0; i < qi->qf_listcount; ++i)
1232 qf_free(qi, i);
1233 vim_free(qi);
1234 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001235}
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001236
1237 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001238qf_free_all(win_T *wp)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001239{
1240 int i;
1241 qf_info_T *qi = &ql_info;
1242
1243 if (wp != NULL)
1244 {
1245 /* location list */
1246 ll_free_all(&wp->w_llist);
1247 ll_free_all(&wp->w_llist_ref);
1248 }
1249 else
1250 /* quickfix list */
1251 for (i = 0; i < qi->qf_listcount; ++i)
1252 qf_free(qi, i);
1253}
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001254
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255/*
1256 * Add an entry to the end of the list of errors.
1257 * Returns OK or FAIL.
1258 */
1259 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001260qf_add_entry(
1261 qf_info_T *qi, /* quickfix list */
Bram Moolenaar05540972016-01-30 20:31:25 +01001262 char_u *dir, /* optional directory name */
1263 char_u *fname, /* file name or NULL */
1264 int bufnum, /* buffer number or zero */
1265 char_u *mesg, /* message */
1266 long lnum, /* line number */
1267 int col, /* column */
1268 int vis_col, /* using visual column */
1269 char_u *pattern, /* search pattern */
1270 int nr, /* error number */
1271 int type, /* type character */
1272 int valid) /* valid entry */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001274 qfline_T *qfp;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001275 qfline_T **lastp; /* pointer to qf_last or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001277 if ((qfp = (qfline_T *)alloc((unsigned)sizeof(qfline_T))) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 return FAIL;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00001279 if (bufnum != 0)
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001280 {
1281 buf_T *buf = buflist_findnr(bufnum);
1282
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00001283 qfp->qf_fnum = bufnum;
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001284 if (buf != NULL)
1285 buf->b_has_qf_entry = TRUE;
1286 }
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00001287 else
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001288 qfp->qf_fnum = qf_get_fnum(qi, dir, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 if ((qfp->qf_text = vim_strsave(mesg)) == NULL)
1290 {
1291 vim_free(qfp);
1292 return FAIL;
1293 }
1294 qfp->qf_lnum = lnum;
1295 qfp->qf_col = col;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001296 qfp->qf_viscol = vis_col;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001297 if (pattern == NULL || *pattern == NUL)
1298 qfp->qf_pattern = NULL;
1299 else if ((qfp->qf_pattern = vim_strsave(pattern)) == NULL)
1300 {
1301 vim_free(qfp->qf_text);
1302 vim_free(qfp);
1303 return FAIL;
1304 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 qfp->qf_nr = nr;
1306 if (type != 1 && !vim_isprintc(type)) /* only printable chars allowed */
1307 type = 0;
1308 qfp->qf_type = type;
1309 qfp->qf_valid = valid;
1310
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001311 lastp = &qi->qf_lists[qi->qf_curlist].qf_last;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001312 if (qi->qf_lists[qi->qf_curlist].qf_count == 0)
1313 /* first element in the list */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001315 qi->qf_lists[qi->qf_curlist].qf_start = qfp;
Bram Moolenaar8b201792016-03-25 15:01:10 +01001316 qi->qf_lists[qi->qf_curlist].qf_ptr = qfp;
1317 qi->qf_lists[qi->qf_curlist].qf_index = 0;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001318 qfp->qf_prev = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 }
1320 else
1321 {
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001322 qfp->qf_prev = *lastp;
1323 (*lastp)->qf_next = qfp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 }
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001325 qfp->qf_next = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 qfp->qf_cleared = FALSE;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001327 *lastp = qfp;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001328 ++qi->qf_lists[qi->qf_curlist].qf_count;
1329 if (qi->qf_lists[qi->qf_curlist].qf_index == 0 && qfp->qf_valid)
1330 /* first valid entry */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001332 qi->qf_lists[qi->qf_curlist].qf_index =
1333 qi->qf_lists[qi->qf_curlist].qf_count;
1334 qi->qf_lists[qi->qf_curlist].qf_ptr = qfp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 }
1336
1337 return OK;
1338}
1339
1340/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001341 * Allocate a new location list
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001342 */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001343 static qf_info_T *
Bram Moolenaar05540972016-01-30 20:31:25 +01001344ll_new_list(void)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001345{
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001346 qf_info_T *qi;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001347
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001348 qi = (qf_info_T *)alloc((unsigned)sizeof(qf_info_T));
1349 if (qi != NULL)
1350 {
1351 vim_memset(qi, 0, (size_t)(sizeof(qf_info_T)));
1352 qi->qf_refcount++;
1353 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001354
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001355 return qi;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001356}
1357
1358/*
1359 * Return the location list for window 'wp'.
1360 * If not present, allocate a location list
1361 */
1362 static qf_info_T *
Bram Moolenaar05540972016-01-30 20:31:25 +01001363ll_get_or_alloc_list(win_T *wp)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001364{
1365 if (IS_LL_WINDOW(wp))
1366 /* For a location list window, use the referenced location list */
1367 return wp->w_llist_ref;
1368
1369 /*
1370 * For a non-location list window, w_llist_ref should not point to a
1371 * location list.
1372 */
1373 ll_free_all(&wp->w_llist_ref);
1374
1375 if (wp->w_llist == NULL)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001376 wp->w_llist = ll_new_list(); /* new location list */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001377 return wp->w_llist;
1378}
1379
1380/*
1381 * Copy the location list from window "from" to window "to".
1382 */
1383 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001384copy_loclist(win_T *from, win_T *to)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001385{
1386 qf_info_T *qi;
1387 int idx;
1388 int i;
1389
1390 /*
1391 * When copying from a location list window, copy the referenced
1392 * location list. For other windows, copy the location list for
1393 * that window.
1394 */
1395 if (IS_LL_WINDOW(from))
1396 qi = from->w_llist_ref;
1397 else
1398 qi = from->w_llist;
1399
1400 if (qi == NULL) /* no location list to copy */
1401 return;
1402
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001403 /* allocate a new location list */
1404 if ((to->w_llist = ll_new_list()) == NULL)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001405 return;
1406
1407 to->w_llist->qf_listcount = qi->qf_listcount;
1408
1409 /* Copy the location lists one at a time */
1410 for (idx = 0; idx < qi->qf_listcount; idx++)
1411 {
1412 qf_list_T *from_qfl;
1413 qf_list_T *to_qfl;
1414
1415 to->w_llist->qf_curlist = idx;
1416
1417 from_qfl = &qi->qf_lists[idx];
1418 to_qfl = &to->w_llist->qf_lists[idx];
1419
1420 /* Some of the fields are populated by qf_add_entry() */
1421 to_qfl->qf_nonevalid = from_qfl->qf_nonevalid;
1422 to_qfl->qf_count = 0;
1423 to_qfl->qf_index = 0;
1424 to_qfl->qf_start = NULL;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001425 to_qfl->qf_last = NULL;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001426 to_qfl->qf_ptr = NULL;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02001427 if (from_qfl->qf_title != NULL)
1428 to_qfl->qf_title = vim_strsave(from_qfl->qf_title);
1429 else
1430 to_qfl->qf_title = NULL;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001431
1432 if (from_qfl->qf_count)
1433 {
1434 qfline_T *from_qfp;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001435 qfline_T *prevp;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001436
1437 /* copy all the location entries in this list */
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001438 for (i = 0, from_qfp = from_qfl->qf_start;
1439 i < from_qfl->qf_count && from_qfp != NULL;
1440 ++i, from_qfp = from_qfp->qf_next)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001441 {
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001442 if (qf_add_entry(to->w_llist,
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001443 NULL,
1444 NULL,
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00001445 0,
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001446 from_qfp->qf_text,
1447 from_qfp->qf_lnum,
1448 from_qfp->qf_col,
1449 from_qfp->qf_viscol,
1450 from_qfp->qf_pattern,
1451 from_qfp->qf_nr,
1452 0,
1453 from_qfp->qf_valid) == FAIL)
1454 {
1455 qf_free_all(to);
1456 return;
1457 }
1458 /*
1459 * qf_add_entry() will not set the qf_num field, as the
1460 * directory and file names are not supplied. So the qf_fnum
1461 * field is copied here.
1462 */
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001463 prevp = to->w_llist->qf_lists[to->w_llist->qf_curlist].qf_last;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001464 prevp->qf_fnum = from_qfp->qf_fnum; /* file number */
1465 prevp->qf_type = from_qfp->qf_type; /* error type */
1466 if (from_qfl->qf_ptr == from_qfp)
1467 to_qfl->qf_ptr = prevp; /* current location */
1468 }
1469 }
1470
1471 to_qfl->qf_index = from_qfl->qf_index; /* current index in the list */
1472
1473 /* When no valid entries are present in the list, qf_ptr points to
1474 * the first item in the list */
Bram Moolenaard236ac02011-05-05 17:14:14 +02001475 if (to_qfl->qf_nonevalid)
Bram Moolenaar730d2c02013-06-30 13:33:58 +02001476 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001477 to_qfl->qf_ptr = to_qfl->qf_start;
Bram Moolenaar730d2c02013-06-30 13:33:58 +02001478 to_qfl->qf_index = 1;
1479 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001480 }
1481
1482 to->w_llist->qf_curlist = qi->qf_curlist; /* current list */
1483}
1484
1485/*
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001486 * Get buffer number for file "dir.name".
1487 * Also sets the b_has_qf_entry flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 */
1489 static int
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001490qf_get_fnum(qf_info_T *qi, char_u *directory, char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491{
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001492 char_u *ptr;
1493 buf_T *buf;
1494
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 if (fname == NULL || *fname == NUL) /* no file name */
1496 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497
Bram Moolenaare60acc12011-05-10 16:41:25 +02001498#ifdef VMS
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001499 vms_remove_version(fname);
Bram Moolenaare60acc12011-05-10 16:41:25 +02001500#endif
1501#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001502 if (directory != NULL)
1503 slash_adjust(directory);
1504 slash_adjust(fname);
Bram Moolenaare60acc12011-05-10 16:41:25 +02001505#endif
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001506 if (directory != NULL && !vim_isAbsName(fname)
1507 && (ptr = concat_fnames(directory, fname, TRUE)) != NULL)
1508 {
1509 /*
1510 * Here we check if the file really exists.
1511 * This should normally be true, but if make works without
1512 * "leaving directory"-messages we might have missed a
1513 * directory change.
1514 */
1515 if (mch_getperm(ptr) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 vim_free(ptr);
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001518 directory = qf_guess_filepath(qi, fname);
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001519 if (directory)
1520 ptr = concat_fnames(directory, fname, TRUE);
1521 else
1522 ptr = vim_strsave(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 }
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001524 /* Use concatenated directory name and file name */
1525 buf = buflist_new(ptr, NULL, (linenr_T)0, 0);
1526 vim_free(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 }
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001528 else
1529 buf = buflist_new(fname, NULL, (linenr_T)0, 0);
1530 if (buf == NULL)
1531 return 0;
1532 buf->b_has_qf_entry = TRUE;
1533 return buf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534}
1535
1536/*
Bram Moolenaar38df43b2016-06-20 21:41:12 +02001537 * Push dirbuf onto the directory stack and return pointer to actual dir or
1538 * NULL on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 */
1540 static char_u *
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001541qf_push_dir(char_u *dirbuf, struct dir_stack_T **stackptr, int is_file_stack)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542{
1543 struct dir_stack_T *ds_new;
1544 struct dir_stack_T *ds_ptr;
1545
1546 /* allocate new stack element and hook it in */
1547 ds_new = (struct dir_stack_T *)alloc((unsigned)sizeof(struct dir_stack_T));
1548 if (ds_new == NULL)
1549 return NULL;
1550
1551 ds_new->next = *stackptr;
1552 *stackptr = ds_new;
1553
1554 /* store directory on the stack */
1555 if (vim_isAbsName(dirbuf)
1556 || (*stackptr)->next == NULL
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001557 || (*stackptr && is_file_stack))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 (*stackptr)->dirname = vim_strsave(dirbuf);
1559 else
1560 {
1561 /* Okay we don't have an absolute path.
1562 * dirbuf must be a subdir of one of the directories on the stack.
1563 * Let's search...
1564 */
1565 ds_new = (*stackptr)->next;
1566 (*stackptr)->dirname = NULL;
1567 while (ds_new)
1568 {
1569 vim_free((*stackptr)->dirname);
1570 (*stackptr)->dirname = concat_fnames(ds_new->dirname, dirbuf,
1571 TRUE);
1572 if (mch_isdir((*stackptr)->dirname) == TRUE)
1573 break;
1574
1575 ds_new = ds_new->next;
1576 }
1577
1578 /* clean up all dirs we already left */
1579 while ((*stackptr)->next != ds_new)
1580 {
1581 ds_ptr = (*stackptr)->next;
1582 (*stackptr)->next = (*stackptr)->next->next;
1583 vim_free(ds_ptr->dirname);
1584 vim_free(ds_ptr);
1585 }
1586
1587 /* Nothing found -> it must be on top level */
1588 if (ds_new == NULL)
1589 {
1590 vim_free((*stackptr)->dirname);
1591 (*stackptr)->dirname = vim_strsave(dirbuf);
1592 }
1593 }
1594
1595 if ((*stackptr)->dirname != NULL)
1596 return (*stackptr)->dirname;
1597 else
1598 {
1599 ds_ptr = *stackptr;
1600 *stackptr = (*stackptr)->next;
1601 vim_free(ds_ptr);
1602 return NULL;
1603 }
1604}
1605
1606
1607/*
1608 * pop dirbuf from the directory stack and return previous directory or NULL if
1609 * stack is empty
1610 */
1611 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01001612qf_pop_dir(struct dir_stack_T **stackptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613{
1614 struct dir_stack_T *ds_ptr;
1615
1616 /* TODO: Should we check if dirbuf is the directory on top of the stack?
1617 * What to do if it isn't? */
1618
1619 /* pop top element and free it */
1620 if (*stackptr != NULL)
1621 {
1622 ds_ptr = *stackptr;
1623 *stackptr = (*stackptr)->next;
1624 vim_free(ds_ptr->dirname);
1625 vim_free(ds_ptr);
1626 }
1627
1628 /* return NEW top element as current dir or NULL if stack is empty*/
1629 return *stackptr ? (*stackptr)->dirname : NULL;
1630}
1631
1632/*
1633 * clean up directory stack
1634 */
1635 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001636qf_clean_dir_stack(struct dir_stack_T **stackptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637{
1638 struct dir_stack_T *ds_ptr;
1639
1640 while ((ds_ptr = *stackptr) != NULL)
1641 {
1642 *stackptr = (*stackptr)->next;
1643 vim_free(ds_ptr->dirname);
1644 vim_free(ds_ptr);
1645 }
1646}
1647
1648/*
1649 * Check in which directory of the directory stack the given file can be
1650 * found.
Bram Moolenaaraa23b372015-09-08 18:46:31 +02001651 * Returns a pointer to the directory name or NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 * Cleans up intermediate directory entries.
1653 *
1654 * TODO: How to solve the following problem?
1655 * If we have the this directory tree:
1656 * ./
1657 * ./aa
1658 * ./aa/bb
1659 * ./bb
1660 * ./bb/x.c
1661 * and make says:
1662 * making all in aa
1663 * making all in bb
1664 * x.c:9: Error
1665 * Then qf_push_dir thinks we are in ./aa/bb, but we are in ./bb.
1666 * qf_guess_filepath will return NULL.
1667 */
1668 static char_u *
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001669qf_guess_filepath(qf_info_T *qi, char_u *filename)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670{
1671 struct dir_stack_T *ds_ptr;
1672 struct dir_stack_T *ds_tmp;
1673 char_u *fullname;
1674
1675 /* no dirs on the stack - there's nothing we can do */
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001676 if (qi->qf_dir_stack == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 return NULL;
1678
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001679 ds_ptr = qi->qf_dir_stack->next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680 fullname = NULL;
1681 while (ds_ptr)
1682 {
1683 vim_free(fullname);
1684 fullname = concat_fnames(ds_ptr->dirname, filename, TRUE);
1685
1686 /* If concat_fnames failed, just go on. The worst thing that can happen
1687 * is that we delete the entire stack.
1688 */
1689 if ((fullname != NULL) && (mch_getperm(fullname) >= 0))
1690 break;
1691
1692 ds_ptr = ds_ptr->next;
1693 }
1694
1695 vim_free(fullname);
1696
1697 /* clean up all dirs we already left */
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001698 while (qi->qf_dir_stack->next != ds_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 {
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001700 ds_tmp = qi->qf_dir_stack->next;
1701 qi->qf_dir_stack->next = qi->qf_dir_stack->next->next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 vim_free(ds_tmp->dirname);
1703 vim_free(ds_tmp);
1704 }
1705
1706 return ds_ptr==NULL? NULL: ds_ptr->dirname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707}
1708
1709/*
Bram Moolenaarffec3c52016-03-23 20:55:42 +01001710 * When loading a file from the quickfix, the auto commands may modify it.
1711 * This may invalidate the current quickfix entry. This function checks
1712 * whether a entry is still present in the quickfix.
1713 * Similar to location list.
1714 */
1715 static int
1716is_qf_entry_present(qf_info_T *qi, qfline_T *qf_ptr)
1717{
1718 qf_list_T *qfl;
1719 qfline_T *qfp;
1720 int i;
1721
1722 qfl = &qi->qf_lists[qi->qf_curlist];
1723
1724 /* Search for the entry in the current list */
1725 for (i = 0, qfp = qfl->qf_start; i < qfl->qf_count;
1726 ++i, qfp = qfp->qf_next)
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001727 if (qfp == NULL || qfp == qf_ptr)
Bram Moolenaarffec3c52016-03-23 20:55:42 +01001728 break;
1729
1730 if (i == qfl->qf_count) /* Entry is not found */
1731 return FALSE;
1732
1733 return TRUE;
1734}
1735
1736/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 * jump to a quickfix line
1738 * if dir == FORWARD go "errornr" valid entries forward
1739 * if dir == BACKWARD go "errornr" valid entries backward
1740 * if dir == FORWARD_FILE go "errornr" valid entries files backward
1741 * if dir == BACKWARD_FILE go "errornr" valid entries files backward
1742 * else if "errornr" is zero, redisplay the same line
1743 * else go to entry "errornr"
1744 */
1745 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001746qf_jump(
1747 qf_info_T *qi,
1748 int dir,
1749 int errornr,
1750 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001752 qf_info_T *ll_ref;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001753 qfline_T *qf_ptr;
1754 qfline_T *old_qf_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 int qf_index;
1756 int old_qf_fnum;
1757 int old_qf_index;
1758 int prev_index;
1759 static char_u *e_no_more_items = (char_u *)N_("E553: No more items");
1760 char_u *err = e_no_more_items;
1761 linenr_T i;
1762 buf_T *old_curbuf;
1763 linenr_T old_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 colnr_T screen_col;
1765 colnr_T char_col;
1766 char_u *line;
1767#ifdef FEAT_WINDOWS
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00001768 char_u *old_swb = p_swb;
Bram Moolenaar446cb832008-06-24 21:56:24 +00001769 unsigned old_swb_flags = swb_flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 int opened_window = FALSE;
1771 win_T *win;
1772 win_T *altwin;
Bram Moolenaar884ae642009-02-22 01:37:59 +00001773 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774#endif
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001775 win_T *oldwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 int print_message = TRUE;
1777 int len;
1778#ifdef FEAT_FOLDING
1779 int old_KeyTyped = KeyTyped; /* getting file may reset it */
1780#endif
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001781 int ok = OK;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001782 int usable_win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001784 if (qi == NULL)
1785 qi = &ql_info;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001786
1787 if (qi->qf_curlist >= qi->qf_listcount
1788 || qi->qf_lists[qi->qf_curlist].qf_count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 {
1790 EMSG(_(e_quickfix));
1791 return;
1792 }
1793
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001794 qf_ptr = qi->qf_lists[qi->qf_curlist].qf_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 old_qf_ptr = qf_ptr;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001796 qf_index = qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 old_qf_index = qf_index;
1798 if (dir == FORWARD || dir == FORWARD_FILE) /* next valid entry */
1799 {
1800 while (errornr--)
1801 {
1802 old_qf_ptr = qf_ptr;
1803 prev_index = qf_index;
1804 old_qf_fnum = qf_ptr->qf_fnum;
1805 do
1806 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001807 if (qf_index == qi->qf_lists[qi->qf_curlist].qf_count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 || qf_ptr->qf_next == NULL)
1809 {
1810 qf_ptr = old_qf_ptr;
1811 qf_index = prev_index;
1812 if (err != NULL)
1813 {
1814 EMSG(_(err));
1815 goto theend;
1816 }
1817 errornr = 0;
1818 break;
1819 }
1820 ++qf_index;
1821 qf_ptr = qf_ptr->qf_next;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001822 } while ((!qi->qf_lists[qi->qf_curlist].qf_nonevalid
1823 && !qf_ptr->qf_valid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 || (dir == FORWARD_FILE && qf_ptr->qf_fnum == old_qf_fnum));
1825 err = NULL;
1826 }
1827 }
1828 else if (dir == BACKWARD || dir == BACKWARD_FILE) /* prev. valid entry */
1829 {
1830 while (errornr--)
1831 {
1832 old_qf_ptr = qf_ptr;
1833 prev_index = qf_index;
1834 old_qf_fnum = qf_ptr->qf_fnum;
1835 do
1836 {
1837 if (qf_index == 1 || qf_ptr->qf_prev == NULL)
1838 {
1839 qf_ptr = old_qf_ptr;
1840 qf_index = prev_index;
1841 if (err != NULL)
1842 {
1843 EMSG(_(err));
1844 goto theend;
1845 }
1846 errornr = 0;
1847 break;
1848 }
1849 --qf_index;
1850 qf_ptr = qf_ptr->qf_prev;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001851 } while ((!qi->qf_lists[qi->qf_curlist].qf_nonevalid
1852 && !qf_ptr->qf_valid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 || (dir == BACKWARD_FILE && qf_ptr->qf_fnum == old_qf_fnum));
1854 err = NULL;
1855 }
1856 }
1857 else if (errornr != 0) /* go to specified number */
1858 {
1859 while (errornr < qf_index && qf_index > 1 && qf_ptr->qf_prev != NULL)
1860 {
1861 --qf_index;
1862 qf_ptr = qf_ptr->qf_prev;
1863 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001864 while (errornr > qf_index && qf_index <
1865 qi->qf_lists[qi->qf_curlist].qf_count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 && qf_ptr->qf_next != NULL)
1867 {
1868 ++qf_index;
1869 qf_ptr = qf_ptr->qf_next;
1870 }
1871 }
1872
1873#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001874 qi->qf_lists[qi->qf_curlist].qf_index = qf_index;
1875 if (qf_win_pos_update(qi, old_qf_index))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 /* No need to print the error message if it's visible in the error
1877 * window */
1878 print_message = FALSE;
1879
1880 /*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001881 * For ":helpgrep" find a help window or open one.
1882 */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001883 if (qf_ptr->qf_type == 1 && (!curwin->w_buffer->b_help || cmdmod.tab != 0))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001884 {
1885 win_T *wp;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001886
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001887 if (cmdmod.tab != 0)
1888 wp = NULL;
1889 else
1890 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1891 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
1892 break;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001893 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
1894 win_enter(wp, TRUE);
1895 else
1896 {
1897 /*
1898 * Split off help window; put it at far top if no position
1899 * specified, the current window is vertically split and narrow.
1900 */
Bram Moolenaar884ae642009-02-22 01:37:59 +00001901 flags = WSP_HELP;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001902 if (cmdmod.split == 0 && curwin->w_width != Columns
1903 && curwin->w_width < 80)
Bram Moolenaar884ae642009-02-22 01:37:59 +00001904 flags |= WSP_TOP;
Bram Moolenaar884ae642009-02-22 01:37:59 +00001905 if (qi != &ql_info)
1906 flags |= WSP_NEWLOC; /* don't copy the location list */
1907
1908 if (win_split(0, flags) == FAIL)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001909 goto theend;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001910 opened_window = TRUE; /* close it when fail */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001911
1912 if (curwin->w_height < p_hh)
1913 win_setheight((int)p_hh);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001914
1915 if (qi != &ql_info) /* not a quickfix list */
1916 {
1917 /* The new window should use the supplied location list */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001918 curwin->w_llist = qi;
1919 qi->qf_refcount++;
1920 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001921 }
1922
1923 if (!p_im)
1924 restart_edit = 0; /* don't want insert mode in help file */
1925 }
1926
1927 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 * If currently in the quickfix window, find another window to show the
1929 * file in.
1930 */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001931 if (bt_quickfix(curbuf) && !opened_window)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 {
Bram Moolenaar24862852013-06-30 13:57:45 +02001933 win_T *usable_win_ptr = NULL;
1934
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 /*
1936 * If there is no file specified, we don't know where to go.
1937 * But do advance, otherwise ":cn" gets stuck.
1938 */
1939 if (qf_ptr->qf_fnum == 0)
1940 goto theend;
1941
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001942 usable_win = 0;
Bram Moolenaar24862852013-06-30 13:57:45 +02001943
1944 ll_ref = curwin->w_llist_ref;
1945 if (ll_ref != NULL)
1946 {
1947 /* Find a window using the same location list that is not a
1948 * quickfix window. */
1949 FOR_ALL_WINDOWS(usable_win_ptr)
1950 if (usable_win_ptr->w_llist == ll_ref
1951 && usable_win_ptr->w_buffer->b_p_bt[0] != 'q')
Bram Moolenaarf5901aa2013-07-01 21:25:25 +02001952 {
1953 usable_win = 1;
Bram Moolenaar24862852013-06-30 13:57:45 +02001954 break;
Bram Moolenaarf5901aa2013-07-01 21:25:25 +02001955 }
Bram Moolenaar24862852013-06-30 13:57:45 +02001956 }
1957
1958 if (!usable_win)
1959 {
1960 /* Locate a window showing a normal buffer */
1961 FOR_ALL_WINDOWS(win)
1962 if (win->w_buffer->b_p_bt[0] == NUL)
1963 {
1964 usable_win = 1;
1965 break;
1966 }
1967 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001968
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 /*
Bram Moolenaar446cb832008-06-24 21:56:24 +00001970 * If no usable window is found and 'switchbuf' contains "usetab"
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00001971 * then search in other tabs.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 */
Bram Moolenaar446cb832008-06-24 21:56:24 +00001973 if (!usable_win && (swb_flags & SWB_USETAB))
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00001974 {
1975 tabpage_T *tp;
1976 win_T *wp;
1977
1978 FOR_ALL_TAB_WINDOWS(tp, wp)
1979 {
1980 if (wp->w_buffer->b_fnum == qf_ptr->qf_fnum)
1981 {
1982 goto_tabpage_win(tp, wp);
1983 usable_win = 1;
Bram Moolenaarbb9c7d12009-02-21 23:03:09 +00001984 goto win_found;
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00001985 }
1986 }
1987 }
Bram Moolenaarbb9c7d12009-02-21 23:03:09 +00001988win_found:
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00001989
1990 /*
Bram Moolenaar1042fa32007-09-16 11:27:42 +00001991 * If there is only one window and it is the quickfix window, create a
1992 * new one above the quickfix window.
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00001993 */
1994 if (((firstwin == lastwin) && bt_quickfix(curbuf)) || !usable_win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995 {
Bram Moolenaar884ae642009-02-22 01:37:59 +00001996 flags = WSP_ABOVE;
1997 if (ll_ref != NULL)
1998 flags |= WSP_NEWLOC;
1999 if (win_split(0, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 goto failed; /* not enough room for window */
2001 opened_window = TRUE; /* close it when fail */
2002 p_swb = empty_option; /* don't split again */
Bram Moolenaar446cb832008-06-24 21:56:24 +00002003 swb_flags = 0;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002004 RESET_BINDING(curwin);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002005 if (ll_ref != NULL)
2006 {
2007 /* The new window should use the location list from the
2008 * location list window */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002009 curwin->w_llist = ll_ref;
2010 ll_ref->qf_refcount++;
2011 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 }
2013 else
2014 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002015 if (curwin->w_llist_ref != NULL)
2016 {
2017 /* In a location window */
Bram Moolenaar24862852013-06-30 13:57:45 +02002018 win = usable_win_ptr;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002019 if (win == NULL)
2020 {
2021 /* Find the window showing the selected file */
2022 FOR_ALL_WINDOWS(win)
2023 if (win->w_buffer->b_fnum == qf_ptr->qf_fnum)
2024 break;
2025 if (win == NULL)
2026 {
2027 /* Find a previous usable window */
2028 win = curwin;
2029 do
2030 {
2031 if (win->w_buffer->b_p_bt[0] == NUL)
2032 break;
2033 if (win->w_prev == NULL)
2034 win = lastwin; /* wrap around the top */
2035 else
2036 win = win->w_prev; /* go to previous window */
2037 } while (win != curwin);
2038 }
2039 }
2040 win_goto(win);
2041
2042 /* If the location list for the window is not set, then set it
2043 * to the location list from the location window */
2044 if (win->w_llist == NULL)
2045 {
2046 win->w_llist = ll_ref;
2047 ll_ref->qf_refcount++;
2048 }
2049 }
2050 else
2051 {
2052
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 /*
2054 * Try to find a window that shows the right buffer.
2055 * Default to the window just above the quickfix buffer.
2056 */
2057 win = curwin;
2058 altwin = NULL;
2059 for (;;)
2060 {
2061 if (win->w_buffer->b_fnum == qf_ptr->qf_fnum)
2062 break;
2063 if (win->w_prev == NULL)
2064 win = lastwin; /* wrap around the top */
2065 else
2066 win = win->w_prev; /* go to previous window */
2067
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002068 if (IS_QF_WINDOW(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 {
2070 /* Didn't find it, go to the window before the quickfix
2071 * window. */
2072 if (altwin != NULL)
2073 win = altwin;
2074 else if (curwin->w_prev != NULL)
2075 win = curwin->w_prev;
2076 else
2077 win = curwin->w_next;
2078 break;
2079 }
2080
2081 /* Remember a usable window. */
2082 if (altwin == NULL && !win->w_p_pvw
2083 && win->w_buffer->b_p_bt[0] == NUL)
2084 altwin = win;
2085 }
2086
2087 win_goto(win);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002088 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 }
2090 }
2091#endif
2092
2093 /*
2094 * If there is a file name,
2095 * read the wanted file if needed, and check autowrite etc.
2096 */
2097 old_curbuf = curbuf;
2098 old_lnum = curwin->w_cursor.lnum;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002099
2100 if (qf_ptr->qf_fnum != 0)
2101 {
2102 if (qf_ptr->qf_type == 1)
2103 {
2104 /* Open help file (do_ecmd() will set b_help flag, readfile() will
2105 * set b_p_ro flag). */
2106 if (!can_abandon(curbuf, forceit))
2107 {
2108 EMSG(_(e_nowrtmsg));
2109 ok = FALSE;
2110 }
2111 else
2112 ok = do_ecmd(qf_ptr->qf_fnum, NULL, NULL, NULL, (linenr_T)1,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002113 ECMD_HIDE + ECMD_SET_HELP,
2114 oldwin == curwin ? curwin : NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002115 }
2116 else
Bram Moolenaar0899d692016-03-19 13:35:03 +01002117 {
Bram Moolenaarffec3c52016-03-23 20:55:42 +01002118 int old_qf_curlist = qi->qf_curlist;
2119 int is_abort = FALSE;
2120
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002121 ok = buflist_getfile(qf_ptr->qf_fnum,
2122 (linenr_T)1, GETF_SETMARK | GETF_SWITCH, forceit);
Bram Moolenaar0899d692016-03-19 13:35:03 +01002123 if (qi != &ql_info && !win_valid(oldwin))
2124 {
2125 EMSG(_("E924: Current window was closed"));
Bram Moolenaarffec3c52016-03-23 20:55:42 +01002126 is_abort = TRUE;
2127 opened_window = FALSE;
2128 }
2129 else if (old_qf_curlist != qi->qf_curlist
2130 || !is_qf_entry_present(qi, qf_ptr))
2131 {
2132 if (qi == &ql_info)
2133 EMSG(_("E925: Current quickfix was changed"));
2134 else
2135 EMSG(_("E926: Current location list was changed"));
2136 is_abort = TRUE;
2137 }
2138
2139 if (is_abort)
2140 {
Bram Moolenaar0899d692016-03-19 13:35:03 +01002141 ok = FALSE;
2142 qi = NULL;
2143 qf_ptr = NULL;
Bram Moolenaar0899d692016-03-19 13:35:03 +01002144 }
2145 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002146 }
2147
2148 if (ok == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 {
2150 /* When not switched to another buffer, still need to set pc mark */
2151 if (curbuf == old_curbuf)
2152 setpcmark();
2153
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002154 if (qf_ptr->qf_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002156 /*
2157 * Go to line with error, unless qf_lnum is 0.
2158 */
2159 i = qf_ptr->qf_lnum;
2160 if (i > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002162 if (i > curbuf->b_ml.ml_line_count)
2163 i = curbuf->b_ml.ml_line_count;
2164 curwin->w_cursor.lnum = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002166 if (qf_ptr->qf_col > 0)
2167 {
2168 curwin->w_cursor.col = qf_ptr->qf_col - 1;
Bram Moolenaarb8c89002015-06-19 18:35:34 +02002169#ifdef FEAT_VIRTUALEDIT
2170 curwin->w_cursor.coladd = 0;
2171#endif
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002172 if (qf_ptr->qf_viscol == TRUE)
2173 {
2174 /*
2175 * Check each character from the beginning of the error
2176 * line up to the error column. For each tab character
2177 * found, reduce the error column value by the length of
2178 * a tab character.
2179 */
2180 line = ml_get_curline();
2181 screen_col = 0;
2182 for (char_col = 0; char_col < curwin->w_cursor.col; ++char_col)
2183 {
2184 if (*line == NUL)
2185 break;
2186 if (*line++ == '\t')
2187 {
2188 curwin->w_cursor.col -= 7 - (screen_col % 8);
2189 screen_col += 8 - (screen_col % 8);
2190 }
2191 else
2192 ++screen_col;
2193 }
2194 }
2195 check_cursor();
2196 }
2197 else
2198 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 }
2200 else
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002201 {
2202 pos_T save_cursor;
2203
2204 /* Move the cursor to the first line in the buffer */
2205 save_cursor = curwin->w_cursor;
2206 curwin->w_cursor.lnum = 0;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00002207 if (!do_search(NULL, '/', qf_ptr->qf_pattern, (long)1,
2208 SEARCH_KEEP, NULL))
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002209 curwin->w_cursor = save_cursor;
2210 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211
2212#ifdef FEAT_FOLDING
2213 if ((fdo_flags & FDO_QUICKFIX) && old_KeyTyped)
2214 foldOpenCursor();
2215#endif
2216 if (print_message)
2217 {
Bram Moolenaar8f55d102012-01-20 13:28:34 +01002218 /* Update the screen before showing the message, unless the screen
2219 * scrolled up. */
2220 if (!msg_scrolled)
2221 update_topline_redraw();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 sprintf((char *)IObuff, _("(%d of %d)%s%s: "), qf_index,
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002223 qi->qf_lists[qi->qf_curlist].qf_count,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 qf_ptr->qf_cleared ? _(" (line deleted)") : "",
2225 (char *)qf_types(qf_ptr->qf_type, qf_ptr->qf_nr));
2226 /* Add the message, skipping leading whitespace and newlines. */
2227 len = (int)STRLEN(IObuff);
2228 qf_fmt_text(skipwhite(qf_ptr->qf_text), IObuff + len, IOSIZE - len);
2229
2230 /* Output the message. Overwrite to avoid scrolling when the 'O'
2231 * flag is present in 'shortmess'; But when not jumping, print the
2232 * whole message. */
2233 i = msg_scroll;
2234 if (curbuf == old_curbuf && curwin->w_cursor.lnum == old_lnum)
2235 msg_scroll = TRUE;
2236 else if (!msg_scrolled && shortmess(SHM_OVERALL))
2237 msg_scroll = FALSE;
2238 msg_attr_keep(IObuff, 0, TRUE);
2239 msg_scroll = i;
2240 }
2241 }
2242 else
2243 {
2244#ifdef FEAT_WINDOWS
2245 if (opened_window)
2246 win_close(curwin, TRUE); /* Close opened window */
2247#endif
Bram Moolenaar0899d692016-03-19 13:35:03 +01002248 if (qf_ptr != NULL && qf_ptr->qf_fnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 {
2250 /*
2251 * Couldn't open file, so put index back where it was. This could
2252 * happen if the file was readonly and we changed something.
2253 */
2254#ifdef FEAT_WINDOWS
2255failed:
2256#endif
2257 qf_ptr = old_qf_ptr;
2258 qf_index = old_qf_index;
2259 }
2260 }
2261theend:
Bram Moolenaar0899d692016-03-19 13:35:03 +01002262 if (qi != NULL)
2263 {
2264 qi->qf_lists[qi->qf_curlist].qf_ptr = qf_ptr;
2265 qi->qf_lists[qi->qf_curlist].qf_index = qf_index;
2266 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267#ifdef FEAT_WINDOWS
2268 if (p_swb != old_swb && opened_window)
2269 {
2270 /* Restore old 'switchbuf' value, but not when an autocommand or
2271 * modeline has changed the value. */
2272 if (p_swb == empty_option)
Bram Moolenaar446cb832008-06-24 21:56:24 +00002273 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 p_swb = old_swb;
Bram Moolenaar446cb832008-06-24 21:56:24 +00002275 swb_flags = old_swb_flags;
2276 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 else
2278 free_string_option(old_swb);
2279 }
2280#endif
2281}
2282
2283/*
2284 * ":clist": list all errors
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002285 * ":llist": list all locations
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 */
2287 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002288qf_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002290 buf_T *buf;
2291 char_u *fname;
2292 qfline_T *qfp;
2293 int i;
2294 int idx1 = 1;
2295 int idx2 = -1;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002296 char_u *arg = eap->arg;
Bram Moolenaare8fea072016-07-01 14:48:27 +02002297 int plus = FALSE;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002298 int all = eap->forceit; /* if not :cl!, only show
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 recognised errors */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002300 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002302 if (eap->cmdidx == CMD_llist)
2303 {
2304 qi = GET_LOC_LIST(curwin);
2305 if (qi == NULL)
2306 {
2307 EMSG(_(e_loclist));
2308 return;
2309 }
2310 }
2311
2312 if (qi->qf_curlist >= qi->qf_listcount
2313 || qi->qf_lists[qi->qf_curlist].qf_count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 {
2315 EMSG(_(e_quickfix));
2316 return;
2317 }
Bram Moolenaare8fea072016-07-01 14:48:27 +02002318 if (*arg == '+')
2319 {
2320 ++arg;
2321 plus = TRUE;
2322 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 if (!get_list_range(&arg, &idx1, &idx2) || *arg != NUL)
2324 {
2325 EMSG(_(e_trailing));
2326 return;
2327 }
Bram Moolenaare8fea072016-07-01 14:48:27 +02002328 if (plus)
2329 {
2330 i = qi->qf_lists[qi->qf_curlist].qf_index;
2331 idx2 = i + idx1;
2332 idx1 = i;
2333 }
2334 else
2335 {
2336 i = qi->qf_lists[qi->qf_curlist].qf_count;
2337 if (idx1 < 0)
2338 idx1 = (-idx1 > i) ? 0 : idx1 + i + 1;
2339 if (idx2 < 0)
2340 idx2 = (-idx2 > i) ? 0 : idx2 + i + 1;
2341 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002343 if (qi->qf_lists[qi->qf_curlist].qf_nonevalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 all = TRUE;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002345 qfp = qi->qf_lists[qi->qf_curlist].qf_start;
2346 for (i = 1; !got_int && i <= qi->qf_lists[qi->qf_curlist].qf_count; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347 {
2348 if ((qfp->qf_valid || all) && idx1 <= i && i <= idx2)
2349 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002350 msg_putchar('\n');
2351 if (got_int)
2352 break;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002353
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002354 fname = NULL;
2355 if (qfp->qf_fnum != 0
2356 && (buf = buflist_findnr(qfp->qf_fnum)) != NULL)
2357 {
2358 fname = buf->b_fname;
2359 if (qfp->qf_type == 1) /* :helpgrep */
2360 fname = gettail(fname);
2361 }
2362 if (fname == NULL)
2363 sprintf((char *)IObuff, "%2d", i);
2364 else
2365 vim_snprintf((char *)IObuff, IOSIZE, "%2d %s",
2366 i, (char *)fname);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002367 msg_outtrans_attr(IObuff, i == qi->qf_lists[qi->qf_curlist].qf_index
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002368 ? hl_attr(HLF_L) : hl_attr(HLF_D));
2369 if (qfp->qf_lnum == 0)
2370 IObuff[0] = NUL;
2371 else if (qfp->qf_col == 0)
2372 sprintf((char *)IObuff, ":%ld", qfp->qf_lnum);
2373 else
2374 sprintf((char *)IObuff, ":%ld col %d",
2375 qfp->qf_lnum, qfp->qf_col);
2376 sprintf((char *)IObuff + STRLEN(IObuff), "%s:",
2377 (char *)qf_types(qfp->qf_type, qfp->qf_nr));
2378 msg_puts_attr(IObuff, hl_attr(HLF_N));
2379 if (qfp->qf_pattern != NULL)
2380 {
2381 qf_fmt_text(qfp->qf_pattern, IObuff, IOSIZE);
2382 STRCAT(IObuff, ":");
2383 msg_puts(IObuff);
2384 }
2385 msg_puts((char_u *)" ");
2386
2387 /* Remove newlines and leading whitespace from the text. For an
2388 * unrecognized line keep the indent, the compiler may mark a word
2389 * with ^^^^. */
2390 qf_fmt_text((fname != NULL || qfp->qf_lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 ? skipwhite(qfp->qf_text) : qfp->qf_text,
2392 IObuff, IOSIZE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002393 msg_prt_line(IObuff, FALSE);
2394 out_flush(); /* show one line at a time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002396
2397 qfp = qfp->qf_next;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002398 if (qfp == NULL)
2399 break;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002400 ++i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 ui_breakcheck();
2402 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403}
2404
2405/*
2406 * Remove newlines and leading whitespace from an error message.
2407 * Put the result in "buf[bufsize]".
2408 */
2409 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002410qf_fmt_text(char_u *text, char_u *buf, int bufsize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411{
2412 int i;
2413 char_u *p = text;
2414
2415 for (i = 0; *p != NUL && i < bufsize - 1; ++i)
2416 {
2417 if (*p == '\n')
2418 {
2419 buf[i] = ' ';
2420 while (*++p != NUL)
2421 if (!vim_iswhite(*p) && *p != '\n')
2422 break;
2423 }
2424 else
2425 buf[i] = *p++;
2426 }
2427 buf[i] = NUL;
2428}
2429
2430/*
2431 * ":colder [count]": Up in the quickfix stack.
2432 * ":cnewer [count]": Down in the quickfix stack.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002433 * ":lolder [count]": Up in the location list stack.
2434 * ":lnewer [count]": Down in the location list stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 */
2436 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002437qf_age(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002439 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 int count;
2441
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002442 if (eap->cmdidx == CMD_lolder || eap->cmdidx == CMD_lnewer)
2443 {
2444 qi = GET_LOC_LIST(curwin);
2445 if (qi == NULL)
2446 {
2447 EMSG(_(e_loclist));
2448 return;
2449 }
2450 }
2451
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 if (eap->addr_count != 0)
2453 count = eap->line2;
2454 else
2455 count = 1;
2456 while (count--)
2457 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002458 if (eap->cmdidx == CMD_colder || eap->cmdidx == CMD_lolder)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002460 if (qi->qf_curlist == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 {
2462 EMSG(_("E380: At bottom of quickfix stack"));
Bram Moolenaar82e803b2013-05-11 15:50:33 +02002463 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002465 --qi->qf_curlist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 }
2467 else
2468 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002469 if (qi->qf_curlist >= qi->qf_listcount - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 {
2471 EMSG(_("E381: At top of quickfix stack"));
Bram Moolenaar82e803b2013-05-11 15:50:33 +02002472 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002474 ++qi->qf_curlist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 }
2476 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002477 qf_msg(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478}
2479
2480 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002481qf_msg(qf_info_T *qi)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482{
2483 smsg((char_u *)_("error list %d of %d; %d errors"),
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002484 qi->qf_curlist + 1, qi->qf_listcount,
2485 qi->qf_lists[qi->qf_curlist].qf_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486#ifdef FEAT_WINDOWS
Bram Moolenaar864293a2016-06-02 13:40:04 +02002487 qf_update_buffer(qi, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488#endif
2489}
2490
2491/*
Bram Moolenaar77197e42005-12-08 22:00:22 +00002492 * Free error list "idx".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493 */
2494 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002495qf_free(qf_info_T *qi, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002497 qfline_T *qfp;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002498 qfline_T *qfpnext;
Bram Moolenaar81484f42012-12-05 15:16:47 +01002499 int stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002501 while (qi->qf_lists[idx].qf_count && qi->qf_lists[idx].qf_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 {
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002503 qfp = qi->qf_lists[idx].qf_start;
2504 qfpnext = qfp->qf_next;
Bram Moolenaar81484f42012-12-05 15:16:47 +01002505 if (qi->qf_lists[idx].qf_title != NULL && !stop)
Bram Moolenaarc83a44b2012-11-28 15:25:34 +01002506 {
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002507 vim_free(qfp->qf_text);
2508 stop = (qfp == qfpnext);
2509 vim_free(qfp->qf_pattern);
2510 vim_free(qfp);
Bram Moolenaar81484f42012-12-05 15:16:47 +01002511 if (stop)
2512 /* Somehow qf_count may have an incorrect value, set it to 1
2513 * to avoid crashing when it's wrong.
2514 * TODO: Avoid qf_count being incorrect. */
2515 qi->qf_lists[idx].qf_count = 1;
Bram Moolenaarc83a44b2012-11-28 15:25:34 +01002516 }
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002517 qi->qf_lists[idx].qf_start = qfpnext;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002518 --qi->qf_lists[idx].qf_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519 }
Bram Moolenaar7fd73202010-07-25 16:58:46 +02002520 vim_free(qi->qf_lists[idx].qf_title);
Bram Moolenaar832f80e2010-08-17 20:26:59 +02002521 qi->qf_lists[idx].qf_title = NULL;
Bram Moolenaar158a1b02014-07-23 16:33:07 +02002522 qi->qf_lists[idx].qf_index = 0;
Bram Moolenaar361c8f02016-07-02 15:41:47 +02002523
2524 qf_clean_dir_stack(&qi->qf_dir_stack);
2525 qf_clean_dir_stack(&qi->qf_file_stack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526}
2527
2528/*
2529 * qf_mark_adjust: adjust marks
2530 */
2531 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002532qf_mark_adjust(
2533 win_T *wp,
2534 linenr_T line1,
2535 linenr_T line2,
2536 long amount,
2537 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002539 int i;
2540 qfline_T *qfp;
2541 int idx;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002542 qf_info_T *qi = &ql_info;
Bram Moolenaar2f095a42016-06-03 19:05:49 +02002543 int found_one = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544
Bram Moolenaar2f095a42016-06-03 19:05:49 +02002545 if (!curbuf->b_has_qf_entry)
2546 return;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002547 if (wp != NULL)
2548 {
2549 if (wp->w_llist == NULL)
2550 return;
2551 qi = wp->w_llist;
2552 }
2553
2554 for (idx = 0; idx < qi->qf_listcount; ++idx)
2555 if (qi->qf_lists[idx].qf_count)
2556 for (i = 0, qfp = qi->qf_lists[idx].qf_start;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002557 i < qi->qf_lists[idx].qf_count && qfp != NULL;
2558 ++i, qfp = qfp->qf_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559 if (qfp->qf_fnum == curbuf->b_fnum)
2560 {
Bram Moolenaar2f095a42016-06-03 19:05:49 +02002561 found_one = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562 if (qfp->qf_lnum >= line1 && qfp->qf_lnum <= line2)
2563 {
2564 if (amount == MAXLNUM)
2565 qfp->qf_cleared = TRUE;
2566 else
2567 qfp->qf_lnum += amount;
2568 }
2569 else if (amount_after && qfp->qf_lnum > line2)
2570 qfp->qf_lnum += amount_after;
2571 }
Bram Moolenaar2f095a42016-06-03 19:05:49 +02002572
2573 if (!found_one)
2574 curbuf->b_has_qf_entry = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575}
2576
2577/*
2578 * Make a nice message out of the error character and the error number:
2579 * char number message
2580 * e or E 0 " error"
2581 * w or W 0 " warning"
2582 * i or I 0 " info"
2583 * 0 0 ""
2584 * other 0 " c"
2585 * e or E n " error n"
2586 * w or W n " warning n"
2587 * i or I n " info n"
2588 * 0 n " error n"
2589 * other n " c n"
2590 * 1 x "" :helpgrep
2591 */
2592 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01002593qf_types(int c, int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594{
2595 static char_u buf[20];
2596 static char_u cc[3];
2597 char_u *p;
2598
2599 if (c == 'W' || c == 'w')
2600 p = (char_u *)" warning";
2601 else if (c == 'I' || c == 'i')
2602 p = (char_u *)" info";
2603 else if (c == 'E' || c == 'e' || (c == 0 && nr > 0))
2604 p = (char_u *)" error";
2605 else if (c == 0 || c == 1)
2606 p = (char_u *)"";
2607 else
2608 {
2609 cc[0] = ' ';
2610 cc[1] = c;
2611 cc[2] = NUL;
2612 p = cc;
2613 }
2614
2615 if (nr <= 0)
2616 return p;
2617
2618 sprintf((char *)buf, "%s %3d", (char *)p, nr);
2619 return buf;
2620}
2621
2622#if defined(FEAT_WINDOWS) || defined(PROTO)
2623/*
2624 * ":cwindow": open the quickfix window if we have errors to display,
2625 * close it if not.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002626 * ":lwindow": open the location list window if we have locations to display,
2627 * close it if not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 */
2629 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002630ex_cwindow(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002632 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 win_T *win;
2634
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002635 if (eap->cmdidx == CMD_lwindow)
2636 {
2637 qi = GET_LOC_LIST(curwin);
2638 if (qi == NULL)
2639 return;
2640 }
2641
2642 /* Look for an existing quickfix window. */
2643 win = qf_find_win(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644
2645 /*
2646 * If a quickfix window is open but we have no errors to display,
2647 * close the window. If a quickfix window is not open, then open
2648 * it if we have errors; otherwise, leave it closed.
2649 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002650 if (qi->qf_lists[qi->qf_curlist].qf_nonevalid
Bram Moolenaard236ac02011-05-05 17:14:14 +02002651 || qi->qf_lists[qi->qf_curlist].qf_count == 0
Bram Moolenaard68071d2006-05-02 22:08:30 +00002652 || qi->qf_curlist >= qi->qf_listcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 {
2654 if (win != NULL)
2655 ex_cclose(eap);
2656 }
2657 else if (win == NULL)
2658 ex_copen(eap);
2659}
2660
2661/*
2662 * ":cclose": close the window showing the list of errors.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002663 * ":lclose": close the window showing the location list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002666ex_cclose(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002668 win_T *win = NULL;
2669 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002671 if (eap->cmdidx == CMD_lclose || eap->cmdidx == CMD_lwindow)
2672 {
2673 qi = GET_LOC_LIST(curwin);
2674 if (qi == NULL)
2675 return;
2676 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002678 /* Find existing quickfix window and close it. */
2679 win = qf_find_win(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680 if (win != NULL)
2681 win_close(win, FALSE);
2682}
2683
2684/*
2685 * ":copen": open a window that shows the list of errors.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002686 * ":lopen": open a window that shows the location list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 */
2688 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002689ex_copen(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002691 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 int height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 win_T *win;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002694 tabpage_T *prevtab = curtab;
Bram Moolenaar9c102382006-05-03 21:26:49 +00002695 buf_T *qf_buf;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002696 win_T *oldwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002698 if (eap->cmdidx == CMD_lopen || eap->cmdidx == CMD_lwindow)
2699 {
2700 qi = GET_LOC_LIST(curwin);
2701 if (qi == NULL)
2702 {
2703 EMSG(_(e_loclist));
2704 return;
2705 }
2706 }
2707
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 if (eap->addr_count != 0)
2709 height = eap->line2;
2710 else
2711 height = QF_WINHEIGHT;
2712
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714#ifdef FEAT_GUI
2715 need_mouse_correct = TRUE;
2716#endif
2717
2718 /*
2719 * Find existing quickfix window, or open a new one.
2720 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002721 win = qf_find_win(qi);
2722
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002723 if (win != NULL && cmdmod.tab == 0)
Bram Moolenaar15886412014-03-27 17:02:27 +01002724 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 win_goto(win);
Bram Moolenaar15886412014-03-27 17:02:27 +01002726 if (eap->addr_count != 0)
2727 {
Bram Moolenaar15886412014-03-27 17:02:27 +01002728 if (cmdmod.split & WSP_VERT)
2729 {
2730 if (height != W_WIDTH(win))
2731 win_setwidth(height);
2732 }
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002733 else if (height != win->w_height)
Bram Moolenaar15886412014-03-27 17:02:27 +01002734 win_setheight(height);
2735 }
2736 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 else
2738 {
Bram Moolenaar9c102382006-05-03 21:26:49 +00002739 qf_buf = qf_find_buf(qi);
2740
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 /* The current window becomes the previous window afterwards. */
2742 win = curwin;
2743
Bram Moolenaar77642c02012-11-20 17:55:10 +01002744 if ((eap->cmdidx == CMD_copen || eap->cmdidx == CMD_cwindow)
2745 && cmdmod.split == 0)
2746 /* Create the new window at the very bottom, except when
2747 * :belowright or :aboveleft is used. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002748 win_goto(lastwin);
Bram Moolenaar884ae642009-02-22 01:37:59 +00002749 if (win_split(height, WSP_BELOW | WSP_NEWLOC) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750 return; /* not enough room for window */
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002751 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002753 if (eap->cmdidx == CMD_lopen || eap->cmdidx == CMD_lwindow)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002755 /*
2756 * For the location list window, create a reference to the
2757 * location list from the window 'win'.
2758 */
2759 curwin->w_llist_ref = win->w_llist;
2760 win->w_llist->qf_refcount++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002762
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002763 if (oldwin != curwin)
2764 oldwin = NULL; /* don't store info when in another window */
Bram Moolenaar9c102382006-05-03 21:26:49 +00002765 if (qf_buf != NULL)
2766 /* Use the existing quickfix buffer */
2767 (void)do_ecmd(qf_buf->b_fnum, NULL, NULL, NULL, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002768 ECMD_HIDE + ECMD_OLDBUF, oldwin);
Bram Moolenaar9c102382006-05-03 21:26:49 +00002769 else
2770 {
2771 /* Create a new quickfix buffer */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002772 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, oldwin);
Bram Moolenaar9c102382006-05-03 21:26:49 +00002773 /* switch off 'swapfile' */
2774 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
2775 set_option_value((char_u *)"bt", 0L, (char_u *)"quickfix",
Bram Moolenaar838bb712006-03-11 21:24:08 +00002776 OPT_LOCAL);
Bram Moolenaar9c102382006-05-03 21:26:49 +00002777 set_option_value((char_u *)"bh", 0L, (char_u *)"wipe", OPT_LOCAL);
Bram Moolenaar4161dcc2010-12-02 15:33:21 +01002778 RESET_BINDING(curwin);
Bram Moolenaar04c0f8a2009-04-29 09:52:12 +00002779#ifdef FEAT_DIFF
2780 curwin->w_p_diff = FALSE;
2781#endif
2782#ifdef FEAT_FOLDING
2783 set_option_value((char_u *)"fdm", 0L, (char_u *)"manual",
2784 OPT_LOCAL);
2785#endif
Bram Moolenaar9c102382006-05-03 21:26:49 +00002786 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002788 /* Only set the height when still in the same tab page and there is no
2789 * window to the side. */
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002790 if (curtab == prevtab && curwin->w_width == Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 win_setheight(height);
2792 curwin->w_p_wfh = TRUE; /* set 'winfixheight' */
2793 if (win_valid(win))
2794 prevwin = win;
2795 }
2796
Bram Moolenaar81278ef2015-05-04 12:34:22 +02002797 qf_set_title_var(qi);
2798
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799 /*
2800 * Fill the buffer with the quickfix list.
2801 */
Bram Moolenaar864293a2016-06-02 13:40:04 +02002802 qf_fill_buffer(qi, curbuf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002804 curwin->w_cursor.lnum = qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 curwin->w_cursor.col = 0;
2806 check_cursor();
2807 update_topline(); /* scroll to show the line */
2808}
2809
2810/*
Bram Moolenaardcb17002016-07-07 18:58:59 +02002811 * Move the cursor in the quickfix window to "lnum".
2812 */
2813 static void
2814qf_win_goto(win_T *win, linenr_T lnum)
2815{
2816 win_T *old_curwin = curwin;
2817
2818 curwin = win;
2819 curbuf = win->w_buffer;
2820 curwin->w_cursor.lnum = lnum;
2821 curwin->w_cursor.col = 0;
2822#ifdef FEAT_VIRTUALEDIT
2823 curwin->w_cursor.coladd = 0;
2824#endif
2825 curwin->w_curswant = 0;
2826 update_topline(); /* scroll to show the line */
2827 redraw_later(VALID);
2828 curwin->w_redr_status = TRUE; /* update ruler */
2829 curwin = old_curwin;
2830 curbuf = curwin->w_buffer;
2831}
2832
2833/*
2834 * :cbottom command.
2835 */
2836 void
2837ex_cbottom(exarg_T *eap UNUSED)
2838{
2839 win_T *win = qf_find_win(&ql_info);
2840
2841 if (win != NULL && win->w_cursor.lnum != win->w_buffer->b_ml.ml_line_count)
2842 qf_win_goto(win, win->w_buffer->b_ml.ml_line_count);
2843}
2844
2845/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 * Return the number of the current entry (line number in the quickfix
2847 * window).
2848 */
2849 linenr_T
Bram Moolenaar05540972016-01-30 20:31:25 +01002850qf_current_entry(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002852 qf_info_T *qi = &ql_info;
2853
2854 if (IS_LL_WINDOW(wp))
2855 /* In the location list window, use the referenced location list */
2856 qi = wp->w_llist_ref;
2857
2858 return qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859}
2860
2861/*
2862 * Update the cursor position in the quickfix window to the current error.
2863 * Return TRUE if there is a quickfix window.
2864 */
2865 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01002866qf_win_pos_update(
2867 qf_info_T *qi,
2868 int old_qf_index) /* previous qf_index or zero */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869{
2870 win_T *win;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002871 int qf_index = qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872
2873 /*
2874 * Put the cursor on the current error in the quickfix window, so that
2875 * it's viewable.
2876 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002877 win = qf_find_win(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 if (win != NULL
2879 && qf_index <= win->w_buffer->b_ml.ml_line_count
2880 && old_qf_index != qf_index)
2881 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882 if (qf_index > old_qf_index)
2883 {
Bram Moolenaardcb17002016-07-07 18:58:59 +02002884 win->w_redraw_top = old_qf_index;
2885 win->w_redraw_bot = qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 }
2887 else
2888 {
Bram Moolenaardcb17002016-07-07 18:58:59 +02002889 win->w_redraw_top = qf_index;
2890 win->w_redraw_bot = old_qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 }
Bram Moolenaardcb17002016-07-07 18:58:59 +02002892 qf_win_goto(win, qf_index);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893 }
2894 return win != NULL;
2895}
2896
2897/*
Bram Moolenaar9c102382006-05-03 21:26:49 +00002898 * Check whether the given window is displaying the specified quickfix/location
2899 * list buffer
2900 */
2901 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01002902is_qf_win(win_T *win, qf_info_T *qi)
Bram Moolenaar9c102382006-05-03 21:26:49 +00002903{
2904 /*
2905 * A window displaying the quickfix buffer will have the w_llist_ref field
2906 * set to NULL.
2907 * A window displaying a location list buffer will have the w_llist_ref
2908 * pointing to the location list.
2909 */
2910 if (bt_quickfix(win->w_buffer))
2911 if ((qi == &ql_info && win->w_llist_ref == NULL)
2912 || (qi != &ql_info && win->w_llist_ref == qi))
2913 return TRUE;
2914
2915 return FALSE;
2916}
2917
2918/*
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002919 * Find a window displaying the quickfix/location list 'qi'
Bram Moolenaar9c102382006-05-03 21:26:49 +00002920 * Searches in only the windows opened in the current tab.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002921 */
2922 static win_T *
Bram Moolenaar05540972016-01-30 20:31:25 +01002923qf_find_win(qf_info_T *qi)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002924{
2925 win_T *win;
2926
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002927 FOR_ALL_WINDOWS(win)
Bram Moolenaar9c102382006-05-03 21:26:49 +00002928 if (is_qf_win(win, qi))
2929 break;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002930
2931 return win;
2932}
2933
2934/*
Bram Moolenaar9c102382006-05-03 21:26:49 +00002935 * Find a quickfix buffer.
2936 * Searches in windows opened in all the tabs.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 */
2938 static buf_T *
Bram Moolenaar05540972016-01-30 20:31:25 +01002939qf_find_buf(qf_info_T *qi)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940{
Bram Moolenaar9c102382006-05-03 21:26:49 +00002941 tabpage_T *tp;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002942 win_T *win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943
Bram Moolenaar9c102382006-05-03 21:26:49 +00002944 FOR_ALL_TAB_WINDOWS(tp, win)
2945 if (is_qf_win(win, qi))
2946 return win->w_buffer;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002947
Bram Moolenaar9c102382006-05-03 21:26:49 +00002948 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949}
2950
2951/*
2952 * Find the quickfix buffer. If it exists, update the contents.
2953 */
2954 static void
Bram Moolenaar864293a2016-06-02 13:40:04 +02002955qf_update_buffer(qf_info_T *qi, qfline_T *old_last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956{
2957 buf_T *buf;
Bram Moolenaarc95e3262011-08-10 18:36:54 +02002958 win_T *win;
2959 win_T *curwin_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961
2962 /* Check if a buffer for the quickfix list exists. Update it. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002963 buf = qf_find_buf(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 if (buf != NULL)
2965 {
Bram Moolenaar864293a2016-06-02 13:40:04 +02002966 linenr_T old_line_count = buf->b_ml.ml_line_count;
2967
2968 if (old_last == NULL)
2969 /* set curwin/curbuf to buf and save a few things */
2970 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971
Bram Moolenaar81278ef2015-05-04 12:34:22 +02002972 if ((win = qf_find_win(qi)) != NULL)
Bram Moolenaarc95e3262011-08-10 18:36:54 +02002973 {
2974 curwin_save = curwin;
2975 curwin = win;
Bram Moolenaarfb604092014-07-23 15:55:00 +02002976 qf_set_title_var(qi);
Bram Moolenaarc95e3262011-08-10 18:36:54 +02002977 curwin = curwin_save;
Bram Moolenaarc95e3262011-08-10 18:36:54 +02002978 }
2979
Bram Moolenaar864293a2016-06-02 13:40:04 +02002980 qf_fill_buffer(qi, buf, old_last);
Bram Moolenaar6920c722016-01-22 22:44:10 +01002981
Bram Moolenaar864293a2016-06-02 13:40:04 +02002982 if (old_last == NULL)
2983 {
Bram Moolenaarc1808d52016-04-18 20:04:00 +02002984 (void)qf_win_pos_update(qi, 0);
Bram Moolenaar864293a2016-06-02 13:40:04 +02002985
2986 /* restore curwin/curbuf and a few other things */
2987 aucmd_restbuf(&aco);
2988 }
2989
2990 /* Only redraw when added lines are visible. This avoids flickering
2991 * when the added lines are not visible. */
2992 if ((win = qf_find_win(qi)) != NULL && old_line_count < win->w_botline)
2993 redraw_buf_later(buf, NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 }
2995}
2996
Bram Moolenaar81278ef2015-05-04 12:34:22 +02002997/*
2998 * Set "w:quickfix_title" if "qi" has a title.
2999 */
Bram Moolenaarc95e3262011-08-10 18:36:54 +02003000 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003001qf_set_title_var(qf_info_T *qi)
Bram Moolenaarc95e3262011-08-10 18:36:54 +02003002{
Bram Moolenaar81278ef2015-05-04 12:34:22 +02003003 if (qi->qf_lists[qi->qf_curlist].qf_title != NULL)
3004 set_internal_string_var((char_u *)"w:quickfix_title",
Bram Moolenaarc95e3262011-08-10 18:36:54 +02003005 qi->qf_lists[qi->qf_curlist].qf_title);
3006}
3007
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008/*
3009 * Fill current buffer with quickfix errors, replacing any previous contents.
3010 * curbuf must be the quickfix buffer!
Bram Moolenaar864293a2016-06-02 13:40:04 +02003011 * If "old_last" is not NULL append the items after this one.
3012 * When "old_last" is NULL then "buf" must equal "curbuf"! Because
3013 * ml_delete() is used and autocommands will be triggered.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 */
3015 static void
Bram Moolenaar864293a2016-06-02 13:40:04 +02003016qf_fill_buffer(qf_info_T *qi, buf_T *buf, qfline_T *old_last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003018 linenr_T lnum;
3019 qfline_T *qfp;
3020 buf_T *errbuf;
3021 int len;
3022 int old_KeyTyped = KeyTyped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023
Bram Moolenaar864293a2016-06-02 13:40:04 +02003024 if (old_last == NULL)
3025 {
3026 if (buf != curbuf)
3027 {
3028 EMSG2(_(e_intern2), "qf_fill_buffer()");
3029 return;
3030 }
3031
3032 /* delete all existing lines */
3033 while ((curbuf->b_ml.ml_flags & ML_EMPTY) == 0)
3034 (void)ml_delete((linenr_T)1, FALSE);
3035 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036
3037 /* Check if there is anything to display */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003038 if (qi->qf_curlist < qi->qf_listcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039 {
3040 /* Add one line for each error */
Bram Moolenaar864293a2016-06-02 13:40:04 +02003041 if (old_last == NULL)
3042 {
3043 qfp = qi->qf_lists[qi->qf_curlist].qf_start;
3044 lnum = 0;
3045 }
3046 else
3047 {
3048 qfp = old_last->qf_next;
3049 lnum = buf->b_ml.ml_line_count;
3050 }
3051 while (lnum < qi->qf_lists[qi->qf_curlist].qf_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 {
3053 if (qfp->qf_fnum != 0
3054 && (errbuf = buflist_findnr(qfp->qf_fnum)) != NULL
3055 && errbuf->b_fname != NULL)
3056 {
3057 if (qfp->qf_type == 1) /* :helpgrep */
3058 STRCPY(IObuff, gettail(errbuf->b_fname));
3059 else
3060 STRCPY(IObuff, errbuf->b_fname);
3061 len = (int)STRLEN(IObuff);
3062 }
3063 else
3064 len = 0;
3065 IObuff[len++] = '|';
3066
3067 if (qfp->qf_lnum > 0)
3068 {
3069 sprintf((char *)IObuff + len, "%ld", qfp->qf_lnum);
3070 len += (int)STRLEN(IObuff + len);
3071
3072 if (qfp->qf_col > 0)
3073 {
3074 sprintf((char *)IObuff + len, " col %d", qfp->qf_col);
3075 len += (int)STRLEN(IObuff + len);
3076 }
3077
3078 sprintf((char *)IObuff + len, "%s",
3079 (char *)qf_types(qfp->qf_type, qfp->qf_nr));
3080 len += (int)STRLEN(IObuff + len);
3081 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003082 else if (qfp->qf_pattern != NULL)
3083 {
3084 qf_fmt_text(qfp->qf_pattern, IObuff + len, IOSIZE - len);
3085 len += (int)STRLEN(IObuff + len);
3086 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 IObuff[len++] = '|';
3088 IObuff[len++] = ' ';
3089
3090 /* Remove newlines and leading whitespace from the text.
3091 * For an unrecognized line keep the indent, the compiler may
3092 * mark a word with ^^^^. */
3093 qf_fmt_text(len > 3 ? skipwhite(qfp->qf_text) : qfp->qf_text,
3094 IObuff + len, IOSIZE - len);
3095
Bram Moolenaar864293a2016-06-02 13:40:04 +02003096 if (ml_append_buf(buf, lnum, IObuff,
3097 (colnr_T)STRLEN(IObuff) + 1, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098 break;
Bram Moolenaar864293a2016-06-02 13:40:04 +02003099 ++lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 qfp = qfp->qf_next;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02003101 if (qfp == NULL)
3102 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 }
Bram Moolenaar864293a2016-06-02 13:40:04 +02003104
3105 if (old_last == NULL)
3106 /* Delete the empty line which is now at the end */
3107 (void)ml_delete(lnum + 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108 }
3109
3110 /* correct cursor position */
3111 check_lnums(TRUE);
3112
Bram Moolenaar864293a2016-06-02 13:40:04 +02003113 if (old_last == NULL)
3114 {
3115 /* Set the 'filetype' to "qf" each time after filling the buffer.
3116 * This resembles reading a file into a buffer, it's more logical when
3117 * using autocommands. */
3118 set_option_value((char_u *)"ft", 0L, (char_u *)"qf", OPT_LOCAL);
3119 curbuf->b_p_ma = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120
3121#ifdef FEAT_AUTOCMD
Bram Moolenaar864293a2016-06-02 13:40:04 +02003122 keep_filetype = TRUE; /* don't detect 'filetype' */
3123 apply_autocmds(EVENT_BUFREADPOST, (char_u *)"quickfix", NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 FALSE, curbuf);
Bram Moolenaar864293a2016-06-02 13:40:04 +02003125 apply_autocmds(EVENT_BUFWINENTER, (char_u *)"quickfix", NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 FALSE, curbuf);
Bram Moolenaar864293a2016-06-02 13:40:04 +02003127 keep_filetype = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128#endif
Bram Moolenaar864293a2016-06-02 13:40:04 +02003129 /* make sure it will be redrawn */
3130 redraw_curbuf_later(NOT_VALID);
3131 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132
3133 /* Restore KeyTyped, setting 'filetype' may reset it. */
3134 KeyTyped = old_KeyTyped;
3135}
3136
3137#endif /* FEAT_WINDOWS */
3138
3139/*
3140 * Return TRUE if "buf" is the quickfix buffer.
3141 */
3142 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003143bt_quickfix(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144{
Bram Moolenaarfc573802011-12-30 15:01:59 +01003145 return buf != NULL && buf->b_p_bt[0] == 'q';
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146}
3147
3148/*
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003149 * Return TRUE if "buf" is a "nofile" or "acwrite" buffer.
3150 * This means the buffer name is not a file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 */
3152 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003153bt_nofile(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154{
Bram Moolenaarfc573802011-12-30 15:01:59 +01003155 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
3156 || buf->b_p_bt[0] == 'a');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157}
3158
3159/*
3160 * Return TRUE if "buf" is a "nowrite" or "nofile" buffer.
3161 */
3162 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003163bt_dontwrite(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164{
Bram Moolenaarfc573802011-12-30 15:01:59 +01003165 return buf != NULL && buf->b_p_bt[0] == 'n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166}
3167
3168 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003169bt_dontwrite_msg(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170{
3171 if (bt_dontwrite(buf))
3172 {
3173 EMSG(_("E382: Cannot write, 'buftype' option is set"));
3174 return TRUE;
3175 }
3176 return FALSE;
3177}
3178
3179/*
3180 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
3181 * and 'bufhidden'.
3182 */
3183 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003184buf_hide(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185{
3186 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
3187 switch (buf->b_p_bh[0])
3188 {
3189 case 'u': /* "unload" */
3190 case 'w': /* "wipe" */
3191 case 'd': return FALSE; /* "delete" */
3192 case 'h': return TRUE; /* "hide" */
3193 }
3194 return (p_hid || cmdmod.hide);
3195}
3196
3197/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003198 * Return TRUE when using ":vimgrep" for ":grep".
3199 */
3200 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003201grep_internal(cmdidx_T cmdidx)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003202{
Bram Moolenaar754b5602006-02-09 23:53:20 +00003203 return ((cmdidx == CMD_grep
3204 || cmdidx == CMD_lgrep
3205 || cmdidx == CMD_grepadd
3206 || cmdidx == CMD_lgrepadd)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003207 && STRCMP("internal",
3208 *curbuf->b_p_gp == NUL ? p_gp : curbuf->b_p_gp) == 0);
3209}
3210
3211/*
Bram Moolenaara6557602006-02-04 22:43:20 +00003212 * Used for ":make", ":lmake", ":grep", ":lgrep", ":grepadd", and ":lgrepadd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 */
3214 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003215ex_make(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216{
Bram Moolenaar7c626922005-02-07 22:01:03 +00003217 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218 char_u *cmd;
3219 unsigned len;
Bram Moolenaara6557602006-02-04 22:43:20 +00003220 win_T *wp = NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003221 qf_info_T *qi = &ql_info;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003222 int res;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003223#ifdef FEAT_AUTOCMD
3224 char_u *au_name = NULL;
3225
Bram Moolenaard88e02d2011-04-28 17:27:09 +02003226 /* Redirect ":grep" to ":vimgrep" if 'grepprg' is "internal". */
3227 if (grep_internal(eap->cmdidx))
3228 {
3229 ex_vimgrep(eap);
3230 return;
3231 }
3232
Bram Moolenaar7c626922005-02-07 22:01:03 +00003233 switch (eap->cmdidx)
3234 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00003235 case CMD_make: au_name = (char_u *)"make"; break;
3236 case CMD_lmake: au_name = (char_u *)"lmake"; break;
3237 case CMD_grep: au_name = (char_u *)"grep"; break;
3238 case CMD_lgrep: au_name = (char_u *)"lgrep"; break;
3239 case CMD_grepadd: au_name = (char_u *)"grepadd"; break;
3240 case CMD_lgrepadd: au_name = (char_u *)"lgrepadd"; break;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003241 default: break;
3242 }
3243 if (au_name != NULL)
3244 {
3245 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name,
3246 curbuf->b_fname, TRUE, curbuf);
Bram Moolenaar1e015462005-09-25 22:16:38 +00003247# ifdef FEAT_EVAL
Bram Moolenaar7c626922005-02-07 22:01:03 +00003248 if (did_throw || force_abort)
3249 return;
Bram Moolenaar1e015462005-09-25 22:16:38 +00003250# endif
Bram Moolenaar7c626922005-02-07 22:01:03 +00003251 }
3252#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253
Bram Moolenaara6557602006-02-04 22:43:20 +00003254 if (eap->cmdidx == CMD_lmake || eap->cmdidx == CMD_lgrep
3255 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaara6557602006-02-04 22:43:20 +00003256 wp = curwin;
Bram Moolenaara6557602006-02-04 22:43:20 +00003257
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258 autowrite_all();
Bram Moolenaar7c626922005-02-07 22:01:03 +00003259 fname = get_mef_name();
3260 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003262 mch_remove(fname); /* in case it's not unique */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263
3264 /*
3265 * If 'shellpipe' empty: don't redirect to 'errorfile'.
3266 */
3267 len = (unsigned)STRLEN(p_shq) * 2 + (unsigned)STRLEN(eap->arg) + 1;
3268 if (*p_sp != NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00003269 len += (unsigned)STRLEN(p_sp) + (unsigned)STRLEN(fname) + 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 cmd = alloc(len);
3271 if (cmd == NULL)
3272 return;
3273 sprintf((char *)cmd, "%s%s%s", (char *)p_shq, (char *)eap->arg,
3274 (char *)p_shq);
3275 if (*p_sp != NUL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003276 append_redir(cmd, len, p_sp, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 /*
3278 * Output a newline if there's something else than the :make command that
3279 * was typed (in which case the cursor is in column 0).
3280 */
3281 if (msg_col == 0)
3282 msg_didout = FALSE;
3283 msg_start();
3284 MSG_PUTS(":!");
3285 msg_outtrans(cmd); /* show what we are doing */
3286
3287 /* let the shell know if we are redirecting output or not */
3288 do_shell(cmd, *p_sp != NUL ? SHELL_DOOUT : 0);
3289
3290#ifdef AMIGA
3291 out_flush();
3292 /* read window status report and redraw before message */
3293 (void)char_avail();
3294#endif
3295
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003296 res = qf_init(wp, fname, (eap->cmdidx != CMD_make
Bram Moolenaara6557602006-02-04 22:43:20 +00003297 && eap->cmdidx != CMD_lmake) ? p_gefm : p_efm,
3298 (eap->cmdidx != CMD_grepadd
Bram Moolenaar7fd73202010-07-25 16:58:46 +02003299 && eap->cmdidx != CMD_lgrepadd),
3300 *eap->cmdlinep);
Bram Moolenaarefa8e802011-05-19 17:42:59 +02003301 if (wp != NULL)
3302 qi = GET_LOC_LIST(wp);
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003303#ifdef FEAT_AUTOCMD
3304 if (au_name != NULL)
Bram Moolenaarefa8e802011-05-19 17:42:59 +02003305 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003306 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
3307 curbuf->b_fname, TRUE, curbuf);
Bram Moolenaarefa8e802011-05-19 17:42:59 +02003308 if (qi->qf_curlist < qi->qf_listcount)
3309 res = qi->qf_lists[qi->qf_curlist].qf_count;
3310 else
3311 res = 0;
3312 }
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003313#endif
3314 if (res > 0 && !eap->forceit)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003315 qf_jump(qi, 0, 0, FALSE); /* display first error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316
Bram Moolenaar7c626922005-02-07 22:01:03 +00003317 mch_remove(fname);
3318 vim_free(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 vim_free(cmd);
3320}
3321
3322/*
3323 * Return the name for the errorfile, in allocated memory.
3324 * Find a new unique name when 'makeef' contains "##".
3325 * Returns NULL for error.
3326 */
3327 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01003328get_mef_name(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329{
3330 char_u *p;
3331 char_u *name;
3332 static int start = -1;
3333 static int off = 0;
3334#ifdef HAVE_LSTAT
Bram Moolenaar8767f522016-07-01 17:17:39 +02003335 stat_T sb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336#endif
3337
3338 if (*p_mef == NUL)
3339 {
Bram Moolenaare5c421c2015-03-31 13:33:08 +02003340 name = vim_tempname('e', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341 if (name == NULL)
3342 EMSG(_(e_notmp));
3343 return name;
3344 }
3345
3346 for (p = p_mef; *p; ++p)
3347 if (p[0] == '#' && p[1] == '#')
3348 break;
3349
3350 if (*p == NUL)
3351 return vim_strsave(p_mef);
3352
3353 /* Keep trying until the name doesn't exist yet. */
3354 for (;;)
3355 {
3356 if (start == -1)
3357 start = mch_get_pid();
3358 else
3359 off += 19;
3360
3361 name = alloc((unsigned)STRLEN(p_mef) + 30);
3362 if (name == NULL)
3363 break;
3364 STRCPY(name, p_mef);
3365 sprintf((char *)name + (p - p_mef), "%d%d", start, off);
3366 STRCAT(name, p + 2);
3367 if (mch_getperm(name) < 0
3368#ifdef HAVE_LSTAT
3369 /* Don't accept a symbolic link, its a security risk. */
3370 && mch_lstat((char *)name, &sb) < 0
3371#endif
3372 )
3373 break;
3374 vim_free(name);
3375 }
3376 return name;
3377}
3378
3379/*
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003380 * Returns the number of valid entries in the current quickfix/location list.
3381 */
3382 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003383qf_get_size(exarg_T *eap)
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003384{
3385 qf_info_T *qi = &ql_info;
3386 qfline_T *qfp;
3387 int i, sz = 0;
3388 int prev_fnum = 0;
3389
3390 if (eap->cmdidx == CMD_ldo || eap->cmdidx == CMD_lfdo)
3391 {
3392 /* Location list */
3393 qi = GET_LOC_LIST(curwin);
3394 if (qi == NULL)
3395 return 0;
3396 }
3397
3398 for (i = 0, qfp = qi->qf_lists[qi->qf_curlist].qf_start;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02003399 i < qi->qf_lists[qi->qf_curlist].qf_count && qfp != NULL;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003400 ++i, qfp = qfp->qf_next)
3401 {
3402 if (qfp->qf_valid)
3403 {
3404 if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo)
3405 sz++; /* Count all valid entries */
3406 else if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum)
3407 {
3408 /* Count the number of files */
3409 sz++;
3410 prev_fnum = qfp->qf_fnum;
3411 }
3412 }
3413 }
3414
3415 return sz;
3416}
3417
3418/*
3419 * Returns the current index of the quickfix/location list.
3420 * Returns 0 if there is an error.
3421 */
3422 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003423qf_get_cur_idx(exarg_T *eap)
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003424{
3425 qf_info_T *qi = &ql_info;
3426
3427 if (eap->cmdidx == CMD_ldo || eap->cmdidx == CMD_lfdo)
3428 {
3429 /* Location list */
3430 qi = GET_LOC_LIST(curwin);
3431 if (qi == NULL)
3432 return 0;
3433 }
3434
3435 return qi->qf_lists[qi->qf_curlist].qf_index;
3436}
3437
3438/*
3439 * Returns the current index in the quickfix/location list (counting only valid
3440 * entries). If no valid entries are in the list, then returns 1.
3441 */
3442 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003443qf_get_cur_valid_idx(exarg_T *eap)
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003444{
3445 qf_info_T *qi = &ql_info;
3446 qf_list_T *qfl;
3447 qfline_T *qfp;
3448 int i, eidx = 0;
3449 int prev_fnum = 0;
3450
3451 if (eap->cmdidx == CMD_ldo || eap->cmdidx == CMD_lfdo)
3452 {
3453 /* Location list */
3454 qi = GET_LOC_LIST(curwin);
3455 if (qi == NULL)
3456 return 1;
3457 }
3458
3459 qfl = &qi->qf_lists[qi->qf_curlist];
3460 qfp = qfl->qf_start;
3461
3462 /* check if the list has valid errors */
3463 if (qfl->qf_count <= 0 || qfl->qf_nonevalid)
3464 return 1;
3465
3466 for (i = 1; i <= qfl->qf_index && qfp!= NULL; i++, qfp = qfp->qf_next)
3467 {
3468 if (qfp->qf_valid)
3469 {
3470 if (eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo)
3471 {
3472 if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum)
3473 {
3474 /* Count the number of files */
3475 eidx++;
3476 prev_fnum = qfp->qf_fnum;
3477 }
3478 }
3479 else
3480 eidx++;
3481 }
3482 }
3483
3484 return eidx ? eidx : 1;
3485}
3486
3487/*
3488 * Get the 'n'th valid error entry in the quickfix or location list.
3489 * Used by :cdo, :ldo, :cfdo and :lfdo commands.
3490 * For :cdo and :ldo returns the 'n'th valid error entry.
3491 * For :cfdo and :lfdo returns the 'n'th valid file entry.
3492 */
3493 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003494qf_get_nth_valid_entry(qf_info_T *qi, int n, int fdo)
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003495{
3496 qf_list_T *qfl = &qi->qf_lists[qi->qf_curlist];
3497 qfline_T *qfp = qfl->qf_start;
3498 int i, eidx;
3499 int prev_fnum = 0;
3500
3501 /* check if the list has valid errors */
3502 if (qfl->qf_count <= 0 || qfl->qf_nonevalid)
3503 return 1;
3504
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02003505 for (i = 1, eidx = 0; i <= qfl->qf_count && qfp != NULL;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003506 i++, qfp = qfp->qf_next)
3507 {
3508 if (qfp->qf_valid)
3509 {
3510 if (fdo)
3511 {
3512 if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum)
3513 {
3514 /* Count the number of files */
3515 eidx++;
3516 prev_fnum = qfp->qf_fnum;
3517 }
3518 }
3519 else
3520 eidx++;
3521 }
3522
3523 if (eidx == n)
3524 break;
3525 }
3526
3527 if (i <= qfl->qf_count)
3528 return i;
3529 else
3530 return 1;
3531}
3532
3533/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 * ":cc", ":crewind", ":cfirst" and ":clast".
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003535 * ":ll", ":lrewind", ":lfirst" and ":llast".
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003536 * ":cdo", ":ldo", ":cfdo" and ":lfdo"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 */
3538 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003539ex_cc(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540{
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003541 qf_info_T *qi = &ql_info;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003542 int errornr;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003543
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003544 if (eap->cmdidx == CMD_ll
3545 || eap->cmdidx == CMD_lrewind
3546 || eap->cmdidx == CMD_lfirst
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003547 || eap->cmdidx == CMD_llast
3548 || eap->cmdidx == CMD_ldo
3549 || eap->cmdidx == CMD_lfdo)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003550 {
3551 qi = GET_LOC_LIST(curwin);
3552 if (qi == NULL)
3553 {
3554 EMSG(_(e_loclist));
3555 return;
3556 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003557 }
3558
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003559 if (eap->addr_count > 0)
3560 errornr = (int)eap->line2;
3561 else
3562 {
3563 if (eap->cmdidx == CMD_cc || eap->cmdidx == CMD_ll)
3564 errornr = 0;
3565 else if (eap->cmdidx == CMD_crewind || eap->cmdidx == CMD_lrewind
3566 || eap->cmdidx == CMD_cfirst || eap->cmdidx == CMD_lfirst)
3567 errornr = 1;
3568 else
3569 errornr = 32767;
3570 }
3571
3572 /* For cdo and ldo commands, jump to the nth valid error.
3573 * For cfdo and lfdo commands, jump to the nth valid file entry.
3574 */
3575 if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo ||
3576 eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo)
3577 errornr = qf_get_nth_valid_entry(qi,
3578 eap->addr_count > 0 ? (int)eap->line1 : 1,
3579 eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo);
3580
3581 qf_jump(qi, 0, errornr, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582}
3583
3584/*
3585 * ":cnext", ":cnfile", ":cNext" and ":cprevious".
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003586 * ":lnext", ":lNext", ":lprevious", ":lnfile", ":lNfile" and ":lpfile".
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003587 * Also, used by ":cdo", ":ldo", ":cfdo" and ":lfdo" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 */
3589 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003590ex_cnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591{
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003592 qf_info_T *qi = &ql_info;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003593 int errornr;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003594
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003595 if (eap->cmdidx == CMD_lnext
3596 || eap->cmdidx == CMD_lNext
3597 || eap->cmdidx == CMD_lprevious
3598 || eap->cmdidx == CMD_lnfile
3599 || eap->cmdidx == CMD_lNfile
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003600 || eap->cmdidx == CMD_lpfile
3601 || eap->cmdidx == CMD_ldo
3602 || eap->cmdidx == CMD_lfdo)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003603 {
3604 qi = GET_LOC_LIST(curwin);
3605 if (qi == NULL)
3606 {
3607 EMSG(_(e_loclist));
3608 return;
3609 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003610 }
3611
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003612 if (eap->addr_count > 0 &&
3613 (eap->cmdidx != CMD_cdo && eap->cmdidx != CMD_ldo &&
3614 eap->cmdidx != CMD_cfdo && eap->cmdidx != CMD_lfdo))
3615 errornr = (int)eap->line2;
3616 else
3617 errornr = 1;
3618
3619 qf_jump(qi, (eap->cmdidx == CMD_cnext || eap->cmdidx == CMD_lnext
3620 || eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621 ? FORWARD
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003622 : (eap->cmdidx == CMD_cnfile || eap->cmdidx == CMD_lnfile
3623 || eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624 ? FORWARD_FILE
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003625 : (eap->cmdidx == CMD_cpfile || eap->cmdidx == CMD_lpfile
3626 || eap->cmdidx == CMD_cNfile || eap->cmdidx == CMD_lNfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 ? BACKWARD_FILE
3628 : BACKWARD,
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003629 errornr, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630}
3631
3632/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003633 * ":cfile"/":cgetfile"/":caddfile" commands.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003634 * ":lfile"/":lgetfile"/":laddfile" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 */
3636 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003637ex_cfile(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003639 win_T *wp = NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003640 qf_info_T *qi = &ql_info;
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003641#ifdef FEAT_AUTOCMD
3642 char_u *au_name = NULL;
3643#endif
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003644
3645 if (eap->cmdidx == CMD_lfile || eap->cmdidx == CMD_lgetfile
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003646 || eap->cmdidx == CMD_laddfile)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003647 wp = curwin;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003648
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003649#ifdef FEAT_AUTOCMD
3650 switch (eap->cmdidx)
3651 {
3652 case CMD_cfile: au_name = (char_u *)"cfile"; break;
3653 case CMD_cgetfile: au_name = (char_u *)"cgetfile"; break;
3654 case CMD_caddfile: au_name = (char_u *)"caddfile"; break;
3655 case CMD_lfile: au_name = (char_u *)"lfile"; break;
3656 case CMD_lgetfile: au_name = (char_u *)"lgetfile"; break;
3657 case CMD_laddfile: au_name = (char_u *)"laddfile"; break;
3658 default: break;
3659 }
3660 if (au_name != NULL)
3661 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name, NULL, FALSE, curbuf);
3662#endif
Bram Moolenaar9028b102010-07-11 16:58:51 +02003663#ifdef FEAT_BROWSE
3664 if (cmdmod.browse)
3665 {
3666 char_u *browse_file = do_browse(0, (char_u *)_("Error file"), eap->arg,
3667 NULL, NULL, BROWSE_FILTER_ALL_FILES, NULL);
3668 if (browse_file == NULL)
3669 return;
3670 set_string_option_direct((char_u *)"ef", -1, browse_file, OPT_FREE, 0);
3671 vim_free(browse_file);
3672 }
3673 else
3674#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 if (*eap->arg != NUL)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003676 set_string_option_direct((char_u *)"ef", -1, eap->arg, OPT_FREE, 0);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003677
3678 /*
3679 * This function is used by the :cfile, :cgetfile and :caddfile
3680 * commands.
3681 * :cfile always creates a new quickfix list and jumps to the
3682 * first error.
3683 * :cgetfile creates a new quickfix list but doesn't jump to the
3684 * first error.
3685 * :caddfile adds to an existing quickfix list. If there is no
3686 * quickfix list then a new list is created.
3687 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003688 if (qf_init(wp, p_ef, p_efm, (eap->cmdidx != CMD_caddfile
Bram Moolenaar7fd73202010-07-25 16:58:46 +02003689 && eap->cmdidx != CMD_laddfile),
3690 *eap->cmdlinep) > 0
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003691 && (eap->cmdidx == CMD_cfile
3692 || eap->cmdidx == CMD_lfile))
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003693 {
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003694#ifdef FEAT_AUTOCMD
3695 if (au_name != NULL)
3696 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, NULL, FALSE, curbuf);
3697#endif
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003698 if (wp != NULL)
3699 qi = GET_LOC_LIST(wp);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003700 qf_jump(qi, 0, 0, eap->forceit); /* display first error */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003701 }
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003702
3703 else
3704 {
3705#ifdef FEAT_AUTOCMD
3706 if (au_name != NULL)
3707 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, NULL, FALSE, curbuf);
3708#endif
3709 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710}
3711
3712/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003713 * ":vimgrep {pattern} file(s)"
Bram Moolenaara6557602006-02-04 22:43:20 +00003714 * ":vimgrepadd {pattern} file(s)"
3715 * ":lvimgrep {pattern} file(s)"
3716 * ":lvimgrepadd {pattern} file(s)"
Bram Moolenaar86b68352004-12-27 21:59:20 +00003717 */
3718 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003719ex_vimgrep(exarg_T *eap)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003720{
Bram Moolenaar81695252004-12-29 20:58:21 +00003721 regmmatch_T regmatch;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003722 int fcount;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003723 char_u **fnames;
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003724 char_u *fname;
Bram Moolenaar5584df62016-03-18 21:00:51 +01003725 char_u *title;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003726 char_u *s;
3727 char_u *p;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003728 int fi;
Bram Moolenaara6557602006-02-04 22:43:20 +00003729 qf_info_T *qi = &ql_info;
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003730#ifdef FEAT_AUTOCMD
3731 qfline_T *cur_qf_start;
3732#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00003733 long lnum;
Bram Moolenaar81695252004-12-29 20:58:21 +00003734 buf_T *buf;
3735 int duplicate_name = FALSE;
3736 int using_dummy;
Bram Moolenaar1042fa32007-09-16 11:27:42 +00003737 int redraw_for_dummy = FALSE;
Bram Moolenaar81695252004-12-29 20:58:21 +00003738 int found_match;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003739 buf_T *first_match_buf = NULL;
3740 time_t seconds = 0;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003741 int save_mls;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003742#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
3743 char_u *save_ei = NULL;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003744#endif
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003745 aco_save_T aco;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003746 int flags = 0;
3747 colnr_T col;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003748 long tomatch;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003749 char_u *dirname_start = NULL;
3750 char_u *dirname_now = NULL;
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003751 char_u *target_dir = NULL;
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003752#ifdef FEAT_AUTOCMD
3753 char_u *au_name = NULL;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003754
3755 switch (eap->cmdidx)
3756 {
Bram Moolenaard88e02d2011-04-28 17:27:09 +02003757 case CMD_vimgrep: au_name = (char_u *)"vimgrep"; break;
3758 case CMD_lvimgrep: au_name = (char_u *)"lvimgrep"; break;
3759 case CMD_vimgrepadd: au_name = (char_u *)"vimgrepadd"; break;
Bram Moolenaara6557602006-02-04 22:43:20 +00003760 case CMD_lvimgrepadd: au_name = (char_u *)"lvimgrepadd"; break;
Bram Moolenaard88e02d2011-04-28 17:27:09 +02003761 case CMD_grep: au_name = (char_u *)"grep"; break;
3762 case CMD_lgrep: au_name = (char_u *)"lgrep"; break;
3763 case CMD_grepadd: au_name = (char_u *)"grepadd"; break;
3764 case CMD_lgrepadd: au_name = (char_u *)"lgrepadd"; break;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003765 default: break;
3766 }
3767 if (au_name != NULL)
3768 {
3769 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name,
3770 curbuf->b_fname, TRUE, curbuf);
3771 if (did_throw || force_abort)
3772 return;
3773 }
3774#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00003775
Bram Moolenaar754b5602006-02-09 23:53:20 +00003776 if (eap->cmdidx == CMD_lgrep
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003777 || eap->cmdidx == CMD_lvimgrep
3778 || eap->cmdidx == CMD_lgrepadd
3779 || eap->cmdidx == CMD_lvimgrepadd)
Bram Moolenaara6557602006-02-04 22:43:20 +00003780 {
3781 qi = ll_get_or_alloc_list(curwin);
3782 if (qi == NULL)
3783 return;
Bram Moolenaara6557602006-02-04 22:43:20 +00003784 }
3785
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003786 if (eap->addr_count > 0)
3787 tomatch = eap->line2;
3788 else
3789 tomatch = MAXLNUM;
3790
Bram Moolenaar81695252004-12-29 20:58:21 +00003791 /* Get the search pattern: either white-separated or enclosed in // */
Bram Moolenaar86b68352004-12-27 21:59:20 +00003792 regmatch.regprog = NULL;
Bram Moolenaar5584df62016-03-18 21:00:51 +01003793 title = vim_strsave(*eap->cmdlinep);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003794 p = skip_vimgrep_pat(eap->arg, &s, &flags);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003795 if (p == NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003796 {
Bram Moolenaar2389c3c2005-05-22 22:07:59 +00003797 EMSG(_(e_invalpat));
Bram Moolenaar748bf032005-02-02 23:04:36 +00003798 goto theend;
Bram Moolenaar81695252004-12-29 20:58:21 +00003799 }
Bram Moolenaar60abe752013-03-07 16:32:54 +01003800
3801 if (s != NULL && *s == NUL)
3802 {
3803 /* Pattern is empty, use last search pattern. */
3804 if (last_search_pat() == NULL)
3805 {
3806 EMSG(_(e_noprevre));
3807 goto theend;
3808 }
3809 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC);
3810 }
3811 else
3812 regmatch.regprog = vim_regcomp(s, RE_MAGIC);
3813
Bram Moolenaar86b68352004-12-27 21:59:20 +00003814 if (regmatch.regprog == NULL)
3815 goto theend;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003816 regmatch.rmm_ic = p_ic;
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003817 regmatch.rmm_maxcol = 0;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003818
3819 p = skipwhite(p);
3820 if (*p == NUL)
3821 {
3822 EMSG(_("E683: File name missing or invalid pattern"));
3823 goto theend;
3824 }
3825
Bram Moolenaar754b5602006-02-09 23:53:20 +00003826 if ((eap->cmdidx != CMD_grepadd && eap->cmdidx != CMD_lgrepadd &&
Bram Moolenaara6557602006-02-04 22:43:20 +00003827 eap->cmdidx != CMD_vimgrepadd && eap->cmdidx != CMD_lvimgrepadd)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003828 || qi->qf_curlist == qi->qf_listcount)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003829 /* make place for a new list */
Bram Moolenaar5584df62016-03-18 21:00:51 +01003830 qf_new_list(qi, title != NULL ? title : *eap->cmdlinep);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003831
3832 /* parse the list of arguments */
Bram Moolenaar8f5c6f02012-06-29 12:57:06 +02003833 if (get_arglist_exp(p, &fcount, &fnames, TRUE) == FAIL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003834 goto theend;
3835 if (fcount == 0)
3836 {
3837 EMSG(_(e_nomatch));
3838 goto theend;
3839 }
3840
Bram Moolenaarb86a3432016-01-10 16:00:53 +01003841 dirname_start = alloc_id(MAXPATHL, aid_qf_dirname_start);
3842 dirname_now = alloc_id(MAXPATHL, aid_qf_dirname_now);
Bram Moolenaard9462e32011-04-11 21:35:11 +02003843 if (dirname_start == NULL || dirname_now == NULL)
Bram Moolenaar61ff4dd2016-01-18 20:30:17 +01003844 {
3845 FreeWild(fcount, fnames);
Bram Moolenaard9462e32011-04-11 21:35:11 +02003846 goto theend;
Bram Moolenaar61ff4dd2016-01-18 20:30:17 +01003847 }
Bram Moolenaard9462e32011-04-11 21:35:11 +02003848
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003849 /* Remember the current directory, because a BufRead autocommand that does
3850 * ":lcd %:p:h" changes the meaning of short path names. */
3851 mch_dirname(dirname_start, MAXPATHL);
3852
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003853#ifdef FEAT_AUTOCMD
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003854 /* Remember the value of qf_start, so that we can check for autocommands
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003855 * changing the current quickfix list. */
3856 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start;
3857#endif
3858
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003859 seconds = (time_t)0;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003860 for (fi = 0; fi < fcount && !got_int && tomatch > 0; ++fi)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003861 {
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003862 fname = shorten_fname1(fnames[fi]);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003863 if (time(NULL) > seconds)
3864 {
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003865 /* Display the file name every second or so, show the user we are
3866 * working on it. */
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003867 seconds = time(NULL);
3868 msg_start();
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003869 p = msg_strtrunc(fname, TRUE);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003870 if (p == NULL)
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003871 msg_outtrans(fname);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003872 else
3873 {
3874 msg_outtrans(p);
3875 vim_free(p);
3876 }
3877 msg_clr_eos();
3878 msg_didout = FALSE; /* overwrite this message */
3879 msg_nowait = TRUE; /* don't wait for this message */
3880 msg_col = 0;
3881 out_flush();
3882 }
3883
Bram Moolenaar81695252004-12-29 20:58:21 +00003884 buf = buflist_findname_exp(fnames[fi]);
3885 if (buf == NULL || buf->b_ml.ml_mfp == NULL)
3886 {
3887 /* Remember that a buffer with this name already exists. */
3888 duplicate_name = (buf != NULL);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003889 using_dummy = TRUE;
Bram Moolenaar1042fa32007-09-16 11:27:42 +00003890 redraw_for_dummy = TRUE;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003891
3892#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
3893 /* Don't do Filetype autocommands to avoid loading syntax and
3894 * indent scripts, a great speed improvement. */
3895 save_ei = au_event_disable(",Filetype");
3896#endif
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003897 /* Don't use modelines here, it's useless. */
3898 save_mls = p_mls;
3899 p_mls = 0;
Bram Moolenaar81695252004-12-29 20:58:21 +00003900
3901 /* Load file into a buffer, so that 'fileencoding' is detected,
3902 * autocommands applied, etc. */
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003903 buf = load_dummy_buffer(fname, dirname_start, dirname_now);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003904
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003905 p_mls = save_mls;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003906#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
3907 au_event_restore(save_ei);
3908#endif
Bram Moolenaar81695252004-12-29 20:58:21 +00003909 }
3910 else
3911 /* Use existing, loaded buffer. */
3912 using_dummy = FALSE;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003913
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003914#ifdef FEAT_AUTOCMD
3915 if (cur_qf_start != qi->qf_lists[qi->qf_curlist].qf_start)
3916 {
3917 int idx;
3918
3919 /* Autocommands changed the quickfix list. Find the one we were
3920 * using and restore it. */
3921 for (idx = 0; idx < LISTCOUNT; ++idx)
3922 if (cur_qf_start == qi->qf_lists[idx].qf_start)
3923 {
3924 qi->qf_curlist = idx;
3925 break;
3926 }
3927 if (idx == LISTCOUNT)
3928 {
3929 /* List cannot be found, create a new one. */
3930 qf_new_list(qi, *eap->cmdlinep);
3931 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start;
3932 }
3933 }
3934#endif
3935
Bram Moolenaar81695252004-12-29 20:58:21 +00003936 if (buf == NULL)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003937 {
3938 if (!got_int)
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003939 smsg((char_u *)_("Cannot open file \"%s\""), fname);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003940 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00003941 else
3942 {
Bram Moolenaara3227e22006-03-08 21:32:40 +00003943 /* Try for a match in all lines of the buffer.
3944 * For ":1vimgrep" look for first match only. */
Bram Moolenaar81695252004-12-29 20:58:21 +00003945 found_match = FALSE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003946 for (lnum = 1; lnum <= buf->b_ml.ml_line_count && tomatch > 0;
3947 ++lnum)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003948 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00003949 col = 0;
3950 while (vim_regexec_multi(&regmatch, curwin, buf, lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003951 col, NULL) > 0)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003952 {
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003953 ;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02003954 if (qf_add_entry(qi,
Bram Moolenaar86b68352004-12-27 21:59:20 +00003955 NULL, /* dir */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003956 fname,
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00003957 0,
Bram Moolenaar81695252004-12-29 20:58:21 +00003958 ml_get_buf(buf,
3959 regmatch.startpos[0].lnum + lnum, FALSE),
3960 regmatch.startpos[0].lnum + lnum,
3961 regmatch.startpos[0].col + 1,
Bram Moolenaar05159a02005-02-26 23:04:13 +00003962 FALSE, /* vis_col */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003963 NULL, /* search pattern */
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003964 0, /* nr */
3965 0, /* type */
3966 TRUE /* valid */
Bram Moolenaar86b68352004-12-27 21:59:20 +00003967 ) == FAIL)
3968 {
3969 got_int = TRUE;
3970 break;
3971 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003972 found_match = TRUE;
3973 if (--tomatch == 0)
3974 break;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003975 if ((flags & VGR_GLOBAL) == 0
3976 || regmatch.endpos[0].lnum > 0)
3977 break;
3978 col = regmatch.endpos[0].col
3979 + (col == regmatch.endpos[0].col);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003980 if (col > (colnr_T)STRLEN(ml_get_buf(buf, lnum, FALSE)))
Bram Moolenaar05159a02005-02-26 23:04:13 +00003981 break;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003982 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00003983 line_breakcheck();
Bram Moolenaar81695252004-12-29 20:58:21 +00003984 if (got_int)
3985 break;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003986 }
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003987#ifdef FEAT_AUTOCMD
3988 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start;
3989#endif
Bram Moolenaar81695252004-12-29 20:58:21 +00003990
3991 if (using_dummy)
3992 {
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003993 if (found_match && first_match_buf == NULL)
3994 first_match_buf = buf;
Bram Moolenaar81695252004-12-29 20:58:21 +00003995 if (duplicate_name)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003996 {
Bram Moolenaar81695252004-12-29 20:58:21 +00003997 /* Never keep a dummy buffer if there is another buffer
3998 * with the same name. */
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003999 wipe_dummy_buffer(buf, dirname_start);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004000 buf = NULL;
4001 }
Bram Moolenaara3227e22006-03-08 21:32:40 +00004002 else if (!cmdmod.hide
4003 || buf->b_p_bh[0] == 'u' /* "unload" */
4004 || buf->b_p_bh[0] == 'w' /* "wipe" */
4005 || buf->b_p_bh[0] == 'd') /* "delete" */
Bram Moolenaar81695252004-12-29 20:58:21 +00004006 {
Bram Moolenaara3227e22006-03-08 21:32:40 +00004007 /* When no match was found we don't need to remember the
4008 * buffer, wipe it out. If there was a match and it
4009 * wasn't the first one or we won't jump there: only
4010 * unload the buffer.
4011 * Ignore 'hidden' here, because it may lead to having too
4012 * many swap files. */
Bram Moolenaar81695252004-12-29 20:58:21 +00004013 if (!found_match)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004014 {
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004015 wipe_dummy_buffer(buf, dirname_start);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004016 buf = NULL;
4017 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004018 else if (buf != first_match_buf || (flags & VGR_NOJUMP))
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004019 {
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004020 unload_dummy_buffer(buf, dirname_start);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004021 buf = NULL;
4022 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004023 }
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004024
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004025 if (buf != NULL)
4026 {
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004027 /* If the buffer is still loaded we need to use the
4028 * directory we jumped to below. */
4029 if (buf == first_match_buf
4030 && target_dir == NULL
4031 && STRCMP(dirname_start, dirname_now) != 0)
4032 target_dir = vim_strsave(dirname_now);
4033
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004034 /* The buffer is still loaded, the Filetype autocommands
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004035 * need to be done now, in that buffer. And the modelines
Bram Moolenaara3227e22006-03-08 21:32:40 +00004036 * need to be done (again). But not the window-local
4037 * options! */
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004038 aucmd_prepbuf(&aco, buf);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004039#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004040 apply_autocmds(EVENT_FILETYPE, buf->b_p_ft,
4041 buf->b_fname, TRUE, buf);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004042#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00004043 do_modelines(OPT_NOWIN);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004044 aucmd_restbuf(&aco);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004045 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004046 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004047 }
4048 }
4049
4050 FreeWild(fcount, fnames);
4051
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004052 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
4053 qi->qf_lists[qi->qf_curlist].qf_ptr = qi->qf_lists[qi->qf_curlist].qf_start;
4054 qi->qf_lists[qi->qf_curlist].qf_index = 1;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004055
4056#ifdef FEAT_WINDOWS
Bram Moolenaar864293a2016-06-02 13:40:04 +02004057 qf_update_buffer(qi, NULL);
Bram Moolenaar86b68352004-12-27 21:59:20 +00004058#endif
4059
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00004060#ifdef FEAT_AUTOCMD
4061 if (au_name != NULL)
4062 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
4063 curbuf->b_fname, TRUE, curbuf);
4064#endif
4065
Bram Moolenaar86b68352004-12-27 21:59:20 +00004066 /* Jump to first match. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004067 if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004068 {
4069 if ((flags & VGR_NOJUMP) == 0)
Bram Moolenaar1042fa32007-09-16 11:27:42 +00004070 {
4071 buf = curbuf;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004072 qf_jump(qi, 0, 0, eap->forceit);
Bram Moolenaar1042fa32007-09-16 11:27:42 +00004073 if (buf != curbuf)
4074 /* If we jumped to another buffer redrawing will already be
4075 * taken care of. */
4076 redraw_for_dummy = FALSE;
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004077
4078 /* Jump to the directory used after loading the buffer. */
4079 if (curbuf == first_match_buf && target_dir != NULL)
4080 {
4081 exarg_T ea;
4082
4083 ea.arg = target_dir;
4084 ea.cmdidx = CMD_lcd;
4085 ex_cd(&ea);
4086 }
Bram Moolenaar1042fa32007-09-16 11:27:42 +00004087 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004088 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004089 else
4090 EMSG2(_(e_nomatch2), s);
Bram Moolenaar86b68352004-12-27 21:59:20 +00004091
Bram Moolenaar1042fa32007-09-16 11:27:42 +00004092 /* If we loaded a dummy buffer into the current window, the autocommands
4093 * may have messed up things, need to redraw and recompute folds. */
4094 if (redraw_for_dummy)
4095 {
4096#ifdef FEAT_FOLDING
4097 foldUpdateAll(curwin);
4098#else
4099 redraw_later(NOT_VALID);
4100#endif
4101 }
4102
Bram Moolenaar86b68352004-12-27 21:59:20 +00004103theend:
Bram Moolenaar5584df62016-03-18 21:00:51 +01004104 vim_free(title);
Bram Moolenaard9462e32011-04-11 21:35:11 +02004105 vim_free(dirname_now);
4106 vim_free(dirname_start);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004107 vim_free(target_dir);
Bram Moolenaar473de612013-06-08 18:19:48 +02004108 vim_regfree(regmatch.regprog);
Bram Moolenaar86b68352004-12-27 21:59:20 +00004109}
4110
4111/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00004112 * Skip over the pattern argument of ":vimgrep /pat/[g][j]".
Bram Moolenaar748bf032005-02-02 23:04:36 +00004113 * Put the start of the pattern in "*s", unless "s" is NULL.
Bram Moolenaar05159a02005-02-26 23:04:13 +00004114 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP.
4115 * If "s" is not NULL terminate the pattern with a NUL.
4116 * Return a pointer to the char just past the pattern plus flags.
Bram Moolenaar748bf032005-02-02 23:04:36 +00004117 */
4118 char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01004119skip_vimgrep_pat(char_u *p, char_u **s, int *flags)
Bram Moolenaar748bf032005-02-02 23:04:36 +00004120{
4121 int c;
4122
4123 if (vim_isIDc(*p))
4124 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004125 /* ":vimgrep pattern fname" */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004126 if (s != NULL)
4127 *s = p;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004128 p = skiptowhite(p);
4129 if (s != NULL && *p != NUL)
4130 *p++ = NUL;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004131 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004132 else
4133 {
4134 /* ":vimgrep /pattern/[g][j] fname" */
4135 if (s != NULL)
4136 *s = p + 1;
4137 c = *p;
4138 p = skip_regexp(p + 1, c, TRUE, NULL);
4139 if (*p != c)
4140 return NULL;
4141
4142 /* Truncate the pattern. */
4143 if (s != NULL)
4144 *p = NUL;
4145 ++p;
4146
4147 /* Find the flags */
4148 while (*p == 'g' || *p == 'j')
4149 {
4150 if (flags != NULL)
4151 {
4152 if (*p == 'g')
4153 *flags |= VGR_GLOBAL;
4154 else
4155 *flags |= VGR_NOJUMP;
4156 }
4157 ++p;
4158 }
4159 }
Bram Moolenaar748bf032005-02-02 23:04:36 +00004160 return p;
4161}
4162
4163/*
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004164 * Restore current working directory to "dirname_start" if they differ, taking
4165 * into account whether it is set locally or globally.
4166 */
4167 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01004168restore_start_dir(char_u *dirname_start)
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004169{
4170 char_u *dirname_now = alloc(MAXPATHL);
4171
4172 if (NULL != dirname_now)
4173 {
4174 mch_dirname(dirname_now, MAXPATHL);
4175 if (STRCMP(dirname_start, dirname_now) != 0)
4176 {
4177 /* If the directory has changed, change it back by building up an
4178 * appropriate ex command and executing it. */
4179 exarg_T ea;
4180
4181 ea.arg = dirname_start;
4182 ea.cmdidx = (curwin->w_localdir == NULL) ? CMD_cd : CMD_lcd;
4183 ex_cd(&ea);
4184 }
Bram Moolenaarf1354352012-11-28 22:12:44 +01004185 vim_free(dirname_now);
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004186 }
4187}
4188
4189/*
4190 * Load file "fname" into a dummy buffer and return the buffer pointer,
4191 * placing the directory resulting from the buffer load into the
4192 * "resulting_dir" pointer. "resulting_dir" must be allocated by the caller
4193 * prior to calling this function. Restores directory to "dirname_start" prior
4194 * to returning, if autocmds or the 'autochdir' option have changed it.
4195 *
4196 * If creating the dummy buffer does not fail, must call unload_dummy_buffer()
4197 * or wipe_dummy_buffer() later!
4198 *
Bram Moolenaar81695252004-12-29 20:58:21 +00004199 * Returns NULL if it fails.
Bram Moolenaar81695252004-12-29 20:58:21 +00004200 */
4201 static buf_T *
Bram Moolenaar05540972016-01-30 20:31:25 +01004202load_dummy_buffer(
4203 char_u *fname,
4204 char_u *dirname_start, /* in: old directory */
4205 char_u *resulting_dir) /* out: new directory */
Bram Moolenaar81695252004-12-29 20:58:21 +00004206{
4207 buf_T *newbuf;
Bram Moolenaar0785ccf2010-11-24 16:32:05 +01004208 buf_T *newbuf_to_wipe = NULL;
Bram Moolenaar81695252004-12-29 20:58:21 +00004209 int failed = TRUE;
Bram Moolenaar81695252004-12-29 20:58:21 +00004210 aco_save_T aco;
Bram Moolenaar81695252004-12-29 20:58:21 +00004211
4212 /* Allocate a buffer without putting it in the buffer list. */
4213 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
4214 if (newbuf == NULL)
4215 return NULL;
4216
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004217 /* Init the options. */
4218 buf_copy_options(newbuf, BCO_ENTER | BCO_NOHELP);
4219
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004220 /* need to open the memfile before putting the buffer in a window */
4221 if (ml_open(newbuf) == OK)
Bram Moolenaar81695252004-12-29 20:58:21 +00004222 {
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004223 /* set curwin/curbuf to buf and save a few things */
4224 aucmd_prepbuf(&aco, newbuf);
4225
4226 /* Need to set the filename for autocommands. */
4227 (void)setfname(curbuf, fname, NULL, FALSE);
4228
Bram Moolenaar81695252004-12-29 20:58:21 +00004229 /* Create swap file now to avoid the ATTENTION message. */
4230 check_need_swap(TRUE);
4231
4232 /* Remove the "dummy" flag, otherwise autocommands may not
4233 * work. */
4234 curbuf->b_flags &= ~BF_DUMMY;
4235
4236 if (readfile(fname, NULL,
4237 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
4238 NULL, READ_NEW | READ_DUMMY) == OK
Bram Moolenaard68071d2006-05-02 22:08:30 +00004239 && !got_int
Bram Moolenaar81695252004-12-29 20:58:21 +00004240 && !(curbuf->b_flags & BF_NEW))
4241 {
4242 failed = FALSE;
4243 if (curbuf != newbuf)
4244 {
Bram Moolenaar0785ccf2010-11-24 16:32:05 +01004245 /* Bloody autocommands changed the buffer! Can happen when
4246 * using netrw and editing a remote file. Use the current
4247 * buffer instead, delete the dummy one after restoring the
4248 * window stuff. */
4249 newbuf_to_wipe = newbuf;
Bram Moolenaar81695252004-12-29 20:58:21 +00004250 newbuf = curbuf;
4251 }
4252 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004253
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004254 /* restore curwin/curbuf and a few other things */
4255 aucmd_restbuf(&aco);
Bram Moolenaar0785ccf2010-11-24 16:32:05 +01004256 if (newbuf_to_wipe != NULL && buf_valid(newbuf_to_wipe))
4257 wipe_buffer(newbuf_to_wipe, FALSE);
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004258 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004259
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004260 /*
4261 * When autocommands/'autochdir' option changed directory: go back.
4262 * Let the caller know what the resulting dir was first, in case it is
4263 * important.
4264 */
4265 mch_dirname(resulting_dir, MAXPATHL);
4266 restore_start_dir(dirname_start);
4267
Bram Moolenaar81695252004-12-29 20:58:21 +00004268 if (!buf_valid(newbuf))
4269 return NULL;
4270 if (failed)
4271 {
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004272 wipe_dummy_buffer(newbuf, dirname_start);
Bram Moolenaar81695252004-12-29 20:58:21 +00004273 return NULL;
4274 }
4275 return newbuf;
4276}
4277
4278/*
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004279 * Wipe out the dummy buffer that load_dummy_buffer() created. Restores
4280 * directory to "dirname_start" prior to returning, if autocmds or the
4281 * 'autochdir' option have changed it.
Bram Moolenaar81695252004-12-29 20:58:21 +00004282 */
4283 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01004284wipe_dummy_buffer(buf_T *buf, char_u *dirname_start)
Bram Moolenaar81695252004-12-29 20:58:21 +00004285{
4286 if (curbuf != buf) /* safety check */
Bram Moolenaard68071d2006-05-02 22:08:30 +00004287 {
4288#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4289 cleanup_T cs;
4290
4291 /* Reset the error/interrupt/exception state here so that aborting()
4292 * returns FALSE when wiping out the buffer. Otherwise it doesn't
4293 * work when got_int is set. */
4294 enter_cleanup(&cs);
4295#endif
4296
Bram Moolenaar81695252004-12-29 20:58:21 +00004297 wipe_buffer(buf, FALSE);
Bram Moolenaard68071d2006-05-02 22:08:30 +00004298
4299#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4300 /* Restore the error/interrupt/exception state if not discarded by a
4301 * new aborting error, interrupt, or uncaught exception. */
4302 leave_cleanup(&cs);
4303#endif
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004304 /* When autocommands/'autochdir' option changed directory: go back. */
4305 restore_start_dir(dirname_start);
Bram Moolenaard68071d2006-05-02 22:08:30 +00004306 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004307}
4308
4309/*
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004310 * Unload the dummy buffer that load_dummy_buffer() created. Restores
4311 * directory to "dirname_start" prior to returning, if autocmds or the
4312 * 'autochdir' option have changed it.
Bram Moolenaar81695252004-12-29 20:58:21 +00004313 */
4314 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01004315unload_dummy_buffer(buf_T *buf, char_u *dirname_start)
Bram Moolenaar81695252004-12-29 20:58:21 +00004316{
4317 if (curbuf != buf) /* safety check */
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004318 {
Bram Moolenaar42ec6562012-02-22 14:58:37 +01004319 close_buffer(NULL, buf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004320
4321 /* When autocommands/'autochdir' option changed directory: go back. */
4322 restore_start_dir(dirname_start);
4323 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004324}
4325
Bram Moolenaar05159a02005-02-26 23:04:13 +00004326#if defined(FEAT_EVAL) || defined(PROTO)
4327/*
4328 * Add each quickfix error to list "list" as a dictionary.
4329 */
4330 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004331get_errorlist(win_T *wp, list_T *list)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004332{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004333 qf_info_T *qi = &ql_info;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004334 dict_T *dict;
4335 char_u buf[2];
4336 qfline_T *qfp;
4337 int i;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004338 int bufnum;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004339
Bram Moolenaar17c7c012006-01-26 22:25:15 +00004340 if (wp != NULL)
4341 {
4342 qi = GET_LOC_LIST(wp);
4343 if (qi == NULL)
4344 return FAIL;
4345 }
4346
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004347 if (qi->qf_curlist >= qi->qf_listcount
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00004348 || qi->qf_lists[qi->qf_curlist].qf_count == 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004349 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004350
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004351 qfp = qi->qf_lists[qi->qf_curlist].qf_start;
4352 for (i = 1; !got_int && i <= qi->qf_lists[qi->qf_curlist].qf_count; ++i)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004353 {
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004354 /* Handle entries with a non-existing buffer number. */
4355 bufnum = qfp->qf_fnum;
4356 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL))
4357 bufnum = 0;
4358
Bram Moolenaar05159a02005-02-26 23:04:13 +00004359 if ((dict = dict_alloc()) == NULL)
4360 return FAIL;
4361 if (list_append_dict(list, dict) == FAIL)
4362 return FAIL;
4363
4364 buf[0] = qfp->qf_type;
4365 buf[1] = NUL;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004366 if ( dict_add_nr_str(dict, "bufnr", (long)bufnum, NULL) == FAIL
Bram Moolenaar05159a02005-02-26 23:04:13 +00004367 || dict_add_nr_str(dict, "lnum", (long)qfp->qf_lnum, NULL) == FAIL
4368 || dict_add_nr_str(dict, "col", (long)qfp->qf_col, NULL) == FAIL
4369 || dict_add_nr_str(dict, "vcol", (long)qfp->qf_viscol, NULL) == FAIL
4370 || dict_add_nr_str(dict, "nr", (long)qfp->qf_nr, NULL) == FAIL
Bram Moolenaar53ed1922006-09-05 13:37:47 +00004371 || dict_add_nr_str(dict, "pattern", 0L,
4372 qfp->qf_pattern == NULL ? (char_u *)"" : qfp->qf_pattern) == FAIL
4373 || dict_add_nr_str(dict, "text", 0L,
4374 qfp->qf_text == NULL ? (char_u *)"" : qfp->qf_text) == FAIL
Bram Moolenaar05159a02005-02-26 23:04:13 +00004375 || dict_add_nr_str(dict, "type", 0L, buf) == FAIL
4376 || dict_add_nr_str(dict, "valid", (long)qfp->qf_valid, NULL) == FAIL)
4377 return FAIL;
4378
4379 qfp = qfp->qf_next;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02004380 if (qfp == NULL)
4381 break;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004382 }
4383 return OK;
4384}
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004385
4386/*
4387 * Populate the quickfix list with the items supplied in the list
Bram Moolenaar864293a2016-06-02 13:40:04 +02004388 * of dictionaries. "title" will be copied to w:quickfix_title.
4389 * "action" is 'a' for add, 'r' for replace. Otherwise create a new list.
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004390 */
4391 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004392set_errorlist(
4393 win_T *wp,
4394 list_T *list,
4395 int action,
4396 char_u *title)
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004397{
4398 listitem_T *li;
4399 dict_T *d;
4400 char_u *filename, *pattern, *text, *type;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004401 int bufnum;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004402 long lnum;
4403 int col, nr;
4404 int vcol;
Bram Moolenaar864293a2016-06-02 13:40:04 +02004405#ifdef FEAT_WINDOWS
4406 qfline_T *old_last = NULL;
4407#endif
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004408 int valid, status;
4409 int retval = OK;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004410 qf_info_T *qi = &ql_info;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004411 int did_bufnr_emsg = FALSE;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004412
Bram Moolenaar17c7c012006-01-26 22:25:15 +00004413 if (wp != NULL)
4414 {
Bram Moolenaar280f1262006-01-30 00:14:18 +00004415 qi = ll_get_or_alloc_list(wp);
Bram Moolenaar17c7c012006-01-26 22:25:15 +00004416 if (qi == NULL)
4417 return FAIL;
4418 }
4419
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004420 if (action == ' ' || qi->qf_curlist == qi->qf_listcount)
Bram Moolenaar35c54e52005-05-20 21:25:31 +00004421 /* make place for a new list */
Bram Moolenaar94116152012-11-28 17:41:59 +01004422 qf_new_list(qi, title);
Bram Moolenaar864293a2016-06-02 13:40:04 +02004423#ifdef FEAT_WINDOWS
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02004424 else if (action == 'a' && qi->qf_lists[qi->qf_curlist].qf_count > 0)
4425 /* Adding to existing list, use last entry. */
4426 old_last = qi->qf_lists[qi->qf_curlist].qf_last;
Bram Moolenaar864293a2016-06-02 13:40:04 +02004427#endif
Bram Moolenaar35c54e52005-05-20 21:25:31 +00004428 else if (action == 'r')
Bram Moolenaarfb604092014-07-23 15:55:00 +02004429 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004430 qf_free(qi, qi->qf_curlist);
Bram Moolenaarfb604092014-07-23 15:55:00 +02004431 qf_store_title(qi, title);
4432 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004433
4434 for (li = list->lv_first; li != NULL; li = li->li_next)
4435 {
4436 if (li->li_tv.v_type != VAR_DICT)
4437 continue; /* Skip non-dict items */
4438
4439 d = li->li_tv.vval.v_dict;
4440 if (d == NULL)
4441 continue;
4442
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004443 filename = get_dict_string(d, (char_u *)"filename", TRUE);
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004444 bufnum = (int)get_dict_number(d, (char_u *)"bufnr");
4445 lnum = (int)get_dict_number(d, (char_u *)"lnum");
4446 col = (int)get_dict_number(d, (char_u *)"col");
4447 vcol = (int)get_dict_number(d, (char_u *)"vcol");
4448 nr = (int)get_dict_number(d, (char_u *)"nr");
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004449 type = get_dict_string(d, (char_u *)"type", TRUE);
4450 pattern = get_dict_string(d, (char_u *)"pattern", TRUE);
4451 text = get_dict_string(d, (char_u *)"text", TRUE);
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004452 if (text == NULL)
4453 text = vim_strsave((char_u *)"");
4454
4455 valid = TRUE;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004456 if ((filename == NULL && bufnum == 0) || (lnum == 0 && pattern == NULL))
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004457 valid = FALSE;
4458
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004459 /* Mark entries with non-existing buffer number as not valid. Give the
4460 * error message only once. */
4461 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL))
4462 {
4463 if (!did_bufnr_emsg)
4464 {
4465 did_bufnr_emsg = TRUE;
4466 EMSGN(_("E92: Buffer %ld not found"), bufnum);
4467 }
4468 valid = FALSE;
4469 bufnum = 0;
4470 }
4471
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02004472 status = qf_add_entry(qi,
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004473 NULL, /* dir */
4474 filename,
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004475 bufnum,
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004476 text,
4477 lnum,
4478 col,
4479 vcol, /* vis_col */
4480 pattern, /* search pattern */
4481 nr,
4482 type == NULL ? NUL : *type,
4483 valid);
4484
4485 vim_free(filename);
4486 vim_free(pattern);
4487 vim_free(text);
4488 vim_free(type);
4489
4490 if (status == FAIL)
4491 {
4492 retval = FAIL;
4493 break;
4494 }
4495 }
4496
Bram Moolenaarf9ddb942010-05-14 18:10:27 +02004497 if (qi->qf_lists[qi->qf_curlist].qf_index == 0)
Bram Moolenaard236ac02011-05-05 17:14:14 +02004498 /* no valid entry */
Bram Moolenaarf9ddb942010-05-14 18:10:27 +02004499 qi->qf_lists[qi->qf_curlist].qf_nonevalid = TRUE;
4500 else
4501 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
Bram Moolenaarc1808d52016-04-18 20:04:00 +02004502 if (action != 'a') {
4503 qi->qf_lists[qi->qf_curlist].qf_ptr =
4504 qi->qf_lists[qi->qf_curlist].qf_start;
4505 if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
4506 qi->qf_lists[qi->qf_curlist].qf_index = 1;
4507 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004508
4509#ifdef FEAT_WINDOWS
Bram Moolenaarc1808d52016-04-18 20:04:00 +02004510 /* Don't update the cursor in quickfix window when appending entries */
Bram Moolenaar864293a2016-06-02 13:40:04 +02004511 qf_update_buffer(qi, old_last);
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004512#endif
4513
4514 return retval;
4515}
Bram Moolenaar05159a02005-02-26 23:04:13 +00004516#endif
4517
Bram Moolenaar81695252004-12-29 20:58:21 +00004518/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00004519 * ":[range]cbuffer [bufnr]" command.
Bram Moolenaara6557602006-02-04 22:43:20 +00004520 * ":[range]caddbuffer [bufnr]" command.
Bram Moolenaardb552d602006-03-23 22:59:57 +00004521 * ":[range]cgetbuffer [bufnr]" command.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004522 * ":[range]lbuffer [bufnr]" command.
Bram Moolenaara6557602006-02-04 22:43:20 +00004523 * ":[range]laddbuffer [bufnr]" command.
Bram Moolenaardb552d602006-03-23 22:59:57 +00004524 * ":[range]lgetbuffer [bufnr]" command.
Bram Moolenaar86b68352004-12-27 21:59:20 +00004525 */
4526 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004527ex_cbuffer(exarg_T *eap)
Bram Moolenaar86b68352004-12-27 21:59:20 +00004528{
4529 buf_T *buf = NULL;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004530 qf_info_T *qi = &ql_info;
4531
Bram Moolenaardb552d602006-03-23 22:59:57 +00004532 if (eap->cmdidx == CMD_lbuffer || eap->cmdidx == CMD_lgetbuffer
4533 || eap->cmdidx == CMD_laddbuffer)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004534 {
4535 qi = ll_get_or_alloc_list(curwin);
4536 if (qi == NULL)
4537 return;
4538 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004539
4540 if (*eap->arg == NUL)
4541 buf = curbuf;
4542 else if (*skipwhite(skipdigits(eap->arg)) == NUL)
4543 buf = buflist_findnr(atoi((char *)eap->arg));
4544 if (buf == NULL)
4545 EMSG(_(e_invarg));
4546 else if (buf->b_ml.ml_mfp == NULL)
4547 EMSG(_("E681: Buffer is not loaded"));
4548 else
4549 {
4550 if (eap->addr_count == 0)
4551 {
4552 eap->line1 = 1;
4553 eap->line2 = buf->b_ml.ml_line_count;
4554 }
4555 if (eap->line1 < 1 || eap->line1 > buf->b_ml.ml_line_count
4556 || eap->line2 < 1 || eap->line2 > buf->b_ml.ml_line_count)
4557 EMSG(_(e_invrange));
4558 else
Bram Moolenaar754b5602006-02-09 23:53:20 +00004559 {
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004560 char_u *qf_title = *eap->cmdlinep;
4561
4562 if (buf->b_sfname)
4563 {
4564 vim_snprintf((char *)IObuff, IOSIZE, "%s (%s)",
4565 (char *)qf_title, (char *)buf->b_sfname);
4566 qf_title = IObuff;
4567 }
4568
Bram Moolenaardb552d602006-03-23 22:59:57 +00004569 if (qf_init_ext(qi, NULL, buf, NULL, p_efm,
4570 (eap->cmdidx != CMD_caddbuffer
4571 && eap->cmdidx != CMD_laddbuffer),
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004572 eap->line1, eap->line2,
4573 qf_title) > 0
Bram Moolenaardb552d602006-03-23 22:59:57 +00004574 && (eap->cmdidx == CMD_cbuffer
4575 || eap->cmdidx == CMD_lbuffer))
Bram Moolenaar754b5602006-02-09 23:53:20 +00004576 qf_jump(qi, 0, 0, eap->forceit); /* display first error */
4577 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004578 }
4579}
4580
Bram Moolenaar1e015462005-09-25 22:16:38 +00004581#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar86b68352004-12-27 21:59:20 +00004582/*
Bram Moolenaardb552d602006-03-23 22:59:57 +00004583 * ":cexpr {expr}", ":cgetexpr {expr}", ":caddexpr {expr}" command.
4584 * ":lexpr {expr}", ":lgetexpr {expr}", ":laddexpr {expr}" command.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004585 */
4586 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004587ex_cexpr(exarg_T *eap)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004588{
4589 typval_T *tv;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004590 qf_info_T *qi = &ql_info;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004591
Bram Moolenaardb552d602006-03-23 22:59:57 +00004592 if (eap->cmdidx == CMD_lexpr || eap->cmdidx == CMD_lgetexpr
4593 || eap->cmdidx == CMD_laddexpr)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004594 {
4595 qi = ll_get_or_alloc_list(curwin);
4596 if (qi == NULL)
4597 return;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004598 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004599
Bram Moolenaar4770d092006-01-12 23:22:24 +00004600 /* Evaluate the expression. When the result is a string or a list we can
4601 * use it to fill the errorlist. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004602 tv = eval_expr(eap->arg, NULL);
Bram Moolenaar4770d092006-01-12 23:22:24 +00004603 if (tv != NULL)
4604 {
4605 if ((tv->v_type == VAR_STRING && tv->vval.v_string != NULL)
4606 || (tv->v_type == VAR_LIST && tv->vval.v_list != NULL))
4607 {
Bram Moolenaard6357e82016-01-21 21:48:09 +01004608 if (qf_init_ext(qi, NULL, NULL, tv, p_efm,
Bram Moolenaardb552d602006-03-23 22:59:57 +00004609 (eap->cmdidx != CMD_caddexpr
4610 && eap->cmdidx != CMD_laddexpr),
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004611 (linenr_T)0, (linenr_T)0, *eap->cmdlinep) > 0
Bram Moolenaardb552d602006-03-23 22:59:57 +00004612 && (eap->cmdidx == CMD_cexpr
4613 || eap->cmdidx == CMD_lexpr))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004614 qf_jump(qi, 0, 0, eap->forceit); /* display first error */
Bram Moolenaar4770d092006-01-12 23:22:24 +00004615 }
4616 else
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00004617 EMSG(_("E777: String or List expected"));
Bram Moolenaar4770d092006-01-12 23:22:24 +00004618 free_tv(tv);
4619 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004620}
Bram Moolenaar1e015462005-09-25 22:16:38 +00004621#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004622
4623/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 * ":helpgrep {pattern}"
4625 */
4626 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004627ex_helpgrep(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628{
4629 regmatch_T regmatch;
4630 char_u *save_cpo;
4631 char_u *p;
4632 int fcount;
4633 char_u **fnames;
4634 FILE *fd;
4635 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636 long lnum;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004637#ifdef FEAT_MULTI_LANG
4638 char_u *lang;
4639#endif
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004640 qf_info_T *qi = &ql_info;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004641 int new_qi = FALSE;
4642 win_T *wp;
Bram Moolenaar73633f82012-01-20 13:39:07 +01004643#ifdef FEAT_AUTOCMD
4644 char_u *au_name = NULL;
4645#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004647#ifdef FEAT_MULTI_LANG
4648 /* Check for a specified language */
4649 lang = check_help_lang(eap->arg);
4650#endif
4651
Bram Moolenaar73633f82012-01-20 13:39:07 +01004652#ifdef FEAT_AUTOCMD
4653 switch (eap->cmdidx)
4654 {
4655 case CMD_helpgrep: au_name = (char_u *)"helpgrep"; break;
4656 case CMD_lhelpgrep: au_name = (char_u *)"lhelpgrep"; break;
4657 default: break;
4658 }
4659 if (au_name != NULL)
4660 {
4661 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name,
4662 curbuf->b_fname, TRUE, curbuf);
4663 if (did_throw || force_abort)
4664 return;
4665 }
4666#endif
4667
4668 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
4669 save_cpo = p_cpo;
4670 p_cpo = empty_option;
4671
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004672 if (eap->cmdidx == CMD_lhelpgrep)
4673 {
4674 /* Find an existing help window */
4675 FOR_ALL_WINDOWS(wp)
4676 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
4677 break;
4678
4679 if (wp == NULL) /* Help window not found */
4680 qi = NULL;
4681 else
4682 qi = wp->w_llist;
4683
4684 if (qi == NULL)
4685 {
4686 /* Allocate a new location list for help text matches */
4687 if ((qi = ll_new_list()) == NULL)
4688 return;
4689 new_qi = TRUE;
4690 }
4691 }
4692
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 regmatch.regprog = vim_regcomp(eap->arg, RE_MAGIC + RE_STRING);
4694 regmatch.rm_ic = FALSE;
4695 if (regmatch.regprog != NULL)
4696 {
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004697#ifdef FEAT_MBYTE
4698 vimconv_T vc;
4699
4700 /* Help files are in utf-8 or latin1, convert lines when 'encoding'
4701 * differs. */
4702 vc.vc_type = CONV_NONE;
4703 if (!enc_utf8)
4704 convert_setup(&vc, (char_u *)"utf-8", p_enc);
4705#endif
4706
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 /* create a new quickfix list */
Bram Moolenaar94116152012-11-28 17:41:59 +01004708 qf_new_list(qi, *eap->cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709
4710 /* Go through all directories in 'runtimepath' */
4711 p = p_rtp;
4712 while (*p != NUL && !got_int)
4713 {
4714 copy_option_part(&p, NameBuff, MAXPATHL, ",");
4715
4716 /* Find all "*.txt" and "*.??x" files in the "doc" directory. */
4717 add_pathsep(NameBuff);
4718 STRCAT(NameBuff, "doc/*.\\(txt\\|??x\\)");
4719 if (gen_expand_wildcards(1, &NameBuff, &fcount,
4720 &fnames, EW_FILE|EW_SILENT) == OK
4721 && fcount > 0)
4722 {
4723 for (fi = 0; fi < fcount && !got_int; ++fi)
4724 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004725#ifdef FEAT_MULTI_LANG
4726 /* Skip files for a different language. */
4727 if (lang != NULL
4728 && STRNICMP(lang, fnames[fi]
4729 + STRLEN(fnames[fi]) - 3, 2) != 0
4730 && !(STRNICMP(lang, "en", 2) == 0
4731 && STRNICMP("txt", fnames[fi]
4732 + STRLEN(fnames[fi]) - 3, 3) == 0))
4733 continue;
4734#endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004735 fd = mch_fopen((char *)fnames[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 if (fd != NULL)
4737 {
4738 lnum = 1;
4739 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
4740 {
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004741 char_u *line = IObuff;
4742#ifdef FEAT_MBYTE
4743 /* Convert a line if 'encoding' is not utf-8 and
4744 * the line contains a non-ASCII character. */
4745 if (vc.vc_type != CONV_NONE
4746 && has_non_ascii(IObuff)) {
4747 line = string_convert(&vc, IObuff, NULL);
4748 if (line == NULL)
4749 line = IObuff;
4750 }
4751#endif
4752
4753 if (vim_regexec(&regmatch, line, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 {
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004755 int l = (int)STRLEN(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756
4757 /* remove trailing CR, LF, spaces, etc. */
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004758 while (l > 0 && line[l - 1] <= ' ')
4759 line[--l] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02004761 if (qf_add_entry(qi,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 NULL, /* dir */
4763 fnames[fi],
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004764 0,
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004765 line,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 lnum,
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004767 (int)(regmatch.startp[0] - line)
Bram Moolenaar81695252004-12-29 20:58:21 +00004768 + 1, /* col */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004769 FALSE, /* vis_col */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004770 NULL, /* search pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 0, /* nr */
4772 1, /* type */
4773 TRUE /* valid */
4774 ) == FAIL)
4775 {
4776 got_int = TRUE;
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004777#ifdef FEAT_MBYTE
4778 if (line != IObuff)
4779 vim_free(line);
4780#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 break;
4782 }
4783 }
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004784#ifdef FEAT_MBYTE
4785 if (line != IObuff)
4786 vim_free(line);
4787#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 ++lnum;
4789 line_breakcheck();
4790 }
4791 fclose(fd);
4792 }
4793 }
4794 FreeWild(fcount, fnames);
4795 }
4796 }
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004797
Bram Moolenaar473de612013-06-08 18:19:48 +02004798 vim_regfree(regmatch.regprog);
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004799#ifdef FEAT_MBYTE
4800 if (vc.vc_type != CONV_NONE)
4801 convert_setup(&vc, NULL, NULL);
4802#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004804 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
4805 qi->qf_lists[qi->qf_curlist].qf_ptr =
4806 qi->qf_lists[qi->qf_curlist].qf_start;
4807 qi->qf_lists[qi->qf_curlist].qf_index = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 }
4809
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +00004810 if (p_cpo == empty_option)
4811 p_cpo = save_cpo;
4812 else
4813 /* Darn, some plugin changed the value. */
4814 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815
4816#ifdef FEAT_WINDOWS
Bram Moolenaar864293a2016-06-02 13:40:04 +02004817 qf_update_buffer(qi, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818#endif
4819
Bram Moolenaar73633f82012-01-20 13:39:07 +01004820#ifdef FEAT_AUTOCMD
4821 if (au_name != NULL)
4822 {
4823 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
4824 curbuf->b_fname, TRUE, curbuf);
4825 if (!new_qi && qi != &ql_info && qf_find_buf(qi) == NULL)
4826 /* autocommands made "qi" invalid */
4827 return;
4828 }
4829#endif
4830
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 /* Jump to first match. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004832 if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004833 qf_jump(qi, 0, 0, FALSE);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004834 else
4835 EMSG2(_(e_nomatch2), eap->arg);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004836
4837 if (eap->cmdidx == CMD_lhelpgrep)
4838 {
4839 /* If the help window is not opened or if it already points to the
Bram Moolenaar754b5602006-02-09 23:53:20 +00004840 * correct location list, then free the new location list. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004841 if (!curwin->w_buffer->b_help || curwin->w_llist == qi)
4842 {
4843 if (new_qi)
4844 ll_free_all(&qi);
4845 }
4846 else if (curwin->w_llist == NULL)
4847 curwin->w_llist = qi;
4848 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849}
4850
4851#endif /* FEAT_QUICKFIX */