blob: 1e5abc69e600f90c92d8ac70fc97713a4ceab9f7 [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 Moolenaar82404332016-07-10 17:00:38 +02001486 * Looking up a buffer can be slow if there are many. Remember the last one
1487 * to make this a lot faster if there are multiple matches in the same file.
1488 */
1489static char_u *qf_last_bufname = NULL;
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001490static bufref_T qf_last_bufref = {NULL, 0};
Bram Moolenaar82404332016-07-10 17:00:38 +02001491
1492/*
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001493 * Get buffer number for file "dir.name".
1494 * Also sets the b_has_qf_entry flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 */
1496 static int
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001497qf_get_fnum(qf_info_T *qi, char_u *directory, char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498{
Bram Moolenaar82404332016-07-10 17:00:38 +02001499 char_u *ptr = NULL;
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001500 buf_T *buf;
Bram Moolenaar82404332016-07-10 17:00:38 +02001501 char_u *bufname;
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001502
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 if (fname == NULL || *fname == NUL) /* no file name */
1504 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505
Bram Moolenaare60acc12011-05-10 16:41:25 +02001506#ifdef VMS
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001507 vms_remove_version(fname);
Bram Moolenaare60acc12011-05-10 16:41:25 +02001508#endif
1509#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001510 if (directory != NULL)
1511 slash_adjust(directory);
1512 slash_adjust(fname);
Bram Moolenaare60acc12011-05-10 16:41:25 +02001513#endif
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001514 if (directory != NULL && !vim_isAbsName(fname)
1515 && (ptr = concat_fnames(directory, fname, TRUE)) != NULL)
1516 {
1517 /*
1518 * Here we check if the file really exists.
1519 * This should normally be true, but if make works without
1520 * "leaving directory"-messages we might have missed a
1521 * directory change.
1522 */
1523 if (mch_getperm(ptr) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 vim_free(ptr);
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001526 directory = qf_guess_filepath(qi, fname);
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001527 if (directory)
1528 ptr = concat_fnames(directory, fname, TRUE);
1529 else
1530 ptr = vim_strsave(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 }
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001532 /* Use concatenated directory name and file name */
Bram Moolenaar82404332016-07-10 17:00:38 +02001533 bufname = ptr;
1534 }
1535 else
1536 bufname = fname;
1537
1538 if (qf_last_bufname != NULL && STRCMP(bufname, qf_last_bufname) == 0
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001539 && bufref_valid(&qf_last_bufref))
Bram Moolenaar82404332016-07-10 17:00:38 +02001540 {
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001541 buf = qf_last_bufref.br_buf;
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001542 vim_free(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 }
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001544 else
Bram Moolenaar82404332016-07-10 17:00:38 +02001545 {
1546 vim_free(qf_last_bufname);
1547 buf = buflist_new(bufname, NULL, (linenr_T)0, BLN_NOOPT);
1548 if (bufname == ptr)
1549 qf_last_bufname = bufname;
1550 else
1551 qf_last_bufname = vim_strsave(bufname);
Bram Moolenaarb25f9a92016-07-10 18:21:50 +02001552 set_bufref(&qf_last_bufref, buf);
Bram Moolenaar82404332016-07-10 17:00:38 +02001553 }
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001554 if (buf == NULL)
1555 return 0;
Bram Moolenaar82404332016-07-10 17:00:38 +02001556
Bram Moolenaar2f095a42016-06-03 19:05:49 +02001557 buf->b_has_qf_entry = TRUE;
1558 return buf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559}
1560
1561/*
Bram Moolenaar38df43b2016-06-20 21:41:12 +02001562 * Push dirbuf onto the directory stack and return pointer to actual dir or
1563 * NULL on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 */
1565 static char_u *
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001566qf_push_dir(char_u *dirbuf, struct dir_stack_T **stackptr, int is_file_stack)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567{
1568 struct dir_stack_T *ds_new;
1569 struct dir_stack_T *ds_ptr;
1570
1571 /* allocate new stack element and hook it in */
1572 ds_new = (struct dir_stack_T *)alloc((unsigned)sizeof(struct dir_stack_T));
1573 if (ds_new == NULL)
1574 return NULL;
1575
1576 ds_new->next = *stackptr;
1577 *stackptr = ds_new;
1578
1579 /* store directory on the stack */
1580 if (vim_isAbsName(dirbuf)
1581 || (*stackptr)->next == NULL
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001582 || (*stackptr && is_file_stack))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 (*stackptr)->dirname = vim_strsave(dirbuf);
1584 else
1585 {
1586 /* Okay we don't have an absolute path.
1587 * dirbuf must be a subdir of one of the directories on the stack.
1588 * Let's search...
1589 */
1590 ds_new = (*stackptr)->next;
1591 (*stackptr)->dirname = NULL;
1592 while (ds_new)
1593 {
1594 vim_free((*stackptr)->dirname);
1595 (*stackptr)->dirname = concat_fnames(ds_new->dirname, dirbuf,
1596 TRUE);
1597 if (mch_isdir((*stackptr)->dirname) == TRUE)
1598 break;
1599
1600 ds_new = ds_new->next;
1601 }
1602
1603 /* clean up all dirs we already left */
1604 while ((*stackptr)->next != ds_new)
1605 {
1606 ds_ptr = (*stackptr)->next;
1607 (*stackptr)->next = (*stackptr)->next->next;
1608 vim_free(ds_ptr->dirname);
1609 vim_free(ds_ptr);
1610 }
1611
1612 /* Nothing found -> it must be on top level */
1613 if (ds_new == NULL)
1614 {
1615 vim_free((*stackptr)->dirname);
1616 (*stackptr)->dirname = vim_strsave(dirbuf);
1617 }
1618 }
1619
1620 if ((*stackptr)->dirname != NULL)
1621 return (*stackptr)->dirname;
1622 else
1623 {
1624 ds_ptr = *stackptr;
1625 *stackptr = (*stackptr)->next;
1626 vim_free(ds_ptr);
1627 return NULL;
1628 }
1629}
1630
1631
1632/*
1633 * pop dirbuf from the directory stack and return previous directory or NULL if
1634 * stack is empty
1635 */
1636 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01001637qf_pop_dir(struct dir_stack_T **stackptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638{
1639 struct dir_stack_T *ds_ptr;
1640
1641 /* TODO: Should we check if dirbuf is the directory on top of the stack?
1642 * What to do if it isn't? */
1643
1644 /* pop top element and free it */
1645 if (*stackptr != NULL)
1646 {
1647 ds_ptr = *stackptr;
1648 *stackptr = (*stackptr)->next;
1649 vim_free(ds_ptr->dirname);
1650 vim_free(ds_ptr);
1651 }
1652
1653 /* return NEW top element as current dir or NULL if stack is empty*/
1654 return *stackptr ? (*stackptr)->dirname : NULL;
1655}
1656
1657/*
1658 * clean up directory stack
1659 */
1660 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001661qf_clean_dir_stack(struct dir_stack_T **stackptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662{
1663 struct dir_stack_T *ds_ptr;
1664
1665 while ((ds_ptr = *stackptr) != NULL)
1666 {
1667 *stackptr = (*stackptr)->next;
1668 vim_free(ds_ptr->dirname);
1669 vim_free(ds_ptr);
1670 }
1671}
1672
1673/*
1674 * Check in which directory of the directory stack the given file can be
1675 * found.
Bram Moolenaaraa23b372015-09-08 18:46:31 +02001676 * Returns a pointer to the directory name or NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 * Cleans up intermediate directory entries.
1678 *
1679 * TODO: How to solve the following problem?
1680 * If we have the this directory tree:
1681 * ./
1682 * ./aa
1683 * ./aa/bb
1684 * ./bb
1685 * ./bb/x.c
1686 * and make says:
1687 * making all in aa
1688 * making all in bb
1689 * x.c:9: Error
1690 * Then qf_push_dir thinks we are in ./aa/bb, but we are in ./bb.
1691 * qf_guess_filepath will return NULL.
1692 */
1693 static char_u *
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001694qf_guess_filepath(qf_info_T *qi, char_u *filename)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695{
1696 struct dir_stack_T *ds_ptr;
1697 struct dir_stack_T *ds_tmp;
1698 char_u *fullname;
1699
1700 /* no dirs on the stack - there's nothing we can do */
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001701 if (qi->qf_dir_stack == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 return NULL;
1703
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001704 ds_ptr = qi->qf_dir_stack->next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705 fullname = NULL;
1706 while (ds_ptr)
1707 {
1708 vim_free(fullname);
1709 fullname = concat_fnames(ds_ptr->dirname, filename, TRUE);
1710
1711 /* If concat_fnames failed, just go on. The worst thing that can happen
1712 * is that we delete the entire stack.
1713 */
1714 if ((fullname != NULL) && (mch_getperm(fullname) >= 0))
1715 break;
1716
1717 ds_ptr = ds_ptr->next;
1718 }
1719
1720 vim_free(fullname);
1721
1722 /* clean up all dirs we already left */
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001723 while (qi->qf_dir_stack->next != ds_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 {
Bram Moolenaar361c8f02016-07-02 15:41:47 +02001725 ds_tmp = qi->qf_dir_stack->next;
1726 qi->qf_dir_stack->next = qi->qf_dir_stack->next->next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 vim_free(ds_tmp->dirname);
1728 vim_free(ds_tmp);
1729 }
1730
1731 return ds_ptr==NULL? NULL: ds_ptr->dirname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732}
1733
1734/*
Bram Moolenaarffec3c52016-03-23 20:55:42 +01001735 * When loading a file from the quickfix, the auto commands may modify it.
1736 * This may invalidate the current quickfix entry. This function checks
1737 * whether a entry is still present in the quickfix.
1738 * Similar to location list.
1739 */
1740 static int
1741is_qf_entry_present(qf_info_T *qi, qfline_T *qf_ptr)
1742{
1743 qf_list_T *qfl;
1744 qfline_T *qfp;
1745 int i;
1746
1747 qfl = &qi->qf_lists[qi->qf_curlist];
1748
1749 /* Search for the entry in the current list */
1750 for (i = 0, qfp = qfl->qf_start; i < qfl->qf_count;
1751 ++i, qfp = qfp->qf_next)
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02001752 if (qfp == NULL || qfp == qf_ptr)
Bram Moolenaarffec3c52016-03-23 20:55:42 +01001753 break;
1754
1755 if (i == qfl->qf_count) /* Entry is not found */
1756 return FALSE;
1757
1758 return TRUE;
1759}
1760
1761/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 * jump to a quickfix line
1763 * if dir == FORWARD go "errornr" valid entries forward
1764 * if dir == BACKWARD go "errornr" valid entries backward
1765 * if dir == FORWARD_FILE go "errornr" valid entries files backward
1766 * if dir == BACKWARD_FILE go "errornr" valid entries files backward
1767 * else if "errornr" is zero, redisplay the same line
1768 * else go to entry "errornr"
1769 */
1770 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001771qf_jump(
1772 qf_info_T *qi,
1773 int dir,
1774 int errornr,
1775 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001777 qf_info_T *ll_ref;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001778 qfline_T *qf_ptr;
1779 qfline_T *old_qf_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 int qf_index;
1781 int old_qf_fnum;
1782 int old_qf_index;
1783 int prev_index;
1784 static char_u *e_no_more_items = (char_u *)N_("E553: No more items");
1785 char_u *err = e_no_more_items;
1786 linenr_T i;
1787 buf_T *old_curbuf;
1788 linenr_T old_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 colnr_T screen_col;
1790 colnr_T char_col;
1791 char_u *line;
1792#ifdef FEAT_WINDOWS
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00001793 char_u *old_swb = p_swb;
Bram Moolenaar446cb832008-06-24 21:56:24 +00001794 unsigned old_swb_flags = swb_flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 int opened_window = FALSE;
1796 win_T *win;
1797 win_T *altwin;
Bram Moolenaar884ae642009-02-22 01:37:59 +00001798 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799#endif
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001800 win_T *oldwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 int print_message = TRUE;
1802 int len;
1803#ifdef FEAT_FOLDING
1804 int old_KeyTyped = KeyTyped; /* getting file may reset it */
1805#endif
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001806 int ok = OK;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001807 int usable_win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001809 if (qi == NULL)
1810 qi = &ql_info;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001811
1812 if (qi->qf_curlist >= qi->qf_listcount
1813 || qi->qf_lists[qi->qf_curlist].qf_count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 {
1815 EMSG(_(e_quickfix));
1816 return;
1817 }
1818
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001819 qf_ptr = qi->qf_lists[qi->qf_curlist].qf_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 old_qf_ptr = qf_ptr;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001821 qf_index = qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 old_qf_index = qf_index;
1823 if (dir == FORWARD || dir == FORWARD_FILE) /* next valid entry */
1824 {
1825 while (errornr--)
1826 {
1827 old_qf_ptr = qf_ptr;
1828 prev_index = qf_index;
1829 old_qf_fnum = qf_ptr->qf_fnum;
1830 do
1831 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001832 if (qf_index == qi->qf_lists[qi->qf_curlist].qf_count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 || qf_ptr->qf_next == NULL)
1834 {
1835 qf_ptr = old_qf_ptr;
1836 qf_index = prev_index;
1837 if (err != NULL)
1838 {
1839 EMSG(_(err));
1840 goto theend;
1841 }
1842 errornr = 0;
1843 break;
1844 }
1845 ++qf_index;
1846 qf_ptr = qf_ptr->qf_next;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001847 } while ((!qi->qf_lists[qi->qf_curlist].qf_nonevalid
1848 && !qf_ptr->qf_valid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 || (dir == FORWARD_FILE && qf_ptr->qf_fnum == old_qf_fnum));
1850 err = NULL;
1851 }
1852 }
1853 else if (dir == BACKWARD || dir == BACKWARD_FILE) /* prev. valid entry */
1854 {
1855 while (errornr--)
1856 {
1857 old_qf_ptr = qf_ptr;
1858 prev_index = qf_index;
1859 old_qf_fnum = qf_ptr->qf_fnum;
1860 do
1861 {
1862 if (qf_index == 1 || qf_ptr->qf_prev == NULL)
1863 {
1864 qf_ptr = old_qf_ptr;
1865 qf_index = prev_index;
1866 if (err != NULL)
1867 {
1868 EMSG(_(err));
1869 goto theend;
1870 }
1871 errornr = 0;
1872 break;
1873 }
1874 --qf_index;
1875 qf_ptr = qf_ptr->qf_prev;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001876 } while ((!qi->qf_lists[qi->qf_curlist].qf_nonevalid
1877 && !qf_ptr->qf_valid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 || (dir == BACKWARD_FILE && qf_ptr->qf_fnum == old_qf_fnum));
1879 err = NULL;
1880 }
1881 }
1882 else if (errornr != 0) /* go to specified number */
1883 {
1884 while (errornr < qf_index && qf_index > 1 && qf_ptr->qf_prev != NULL)
1885 {
1886 --qf_index;
1887 qf_ptr = qf_ptr->qf_prev;
1888 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001889 while (errornr > qf_index && qf_index <
1890 qi->qf_lists[qi->qf_curlist].qf_count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 && qf_ptr->qf_next != NULL)
1892 {
1893 ++qf_index;
1894 qf_ptr = qf_ptr->qf_next;
1895 }
1896 }
1897
1898#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001899 qi->qf_lists[qi->qf_curlist].qf_index = qf_index;
1900 if (qf_win_pos_update(qi, old_qf_index))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 /* No need to print the error message if it's visible in the error
1902 * window */
1903 print_message = FALSE;
1904
1905 /*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001906 * For ":helpgrep" find a help window or open one.
1907 */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001908 if (qf_ptr->qf_type == 1 && (!curwin->w_buffer->b_help || cmdmod.tab != 0))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001909 {
1910 win_T *wp;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001911
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001912 if (cmdmod.tab != 0)
1913 wp = NULL;
1914 else
1915 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1916 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
1917 break;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001918 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
1919 win_enter(wp, TRUE);
1920 else
1921 {
1922 /*
1923 * Split off help window; put it at far top if no position
1924 * specified, the current window is vertically split and narrow.
1925 */
Bram Moolenaar884ae642009-02-22 01:37:59 +00001926 flags = WSP_HELP;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001927 if (cmdmod.split == 0 && curwin->w_width != Columns
1928 && curwin->w_width < 80)
Bram Moolenaar884ae642009-02-22 01:37:59 +00001929 flags |= WSP_TOP;
Bram Moolenaar884ae642009-02-22 01:37:59 +00001930 if (qi != &ql_info)
1931 flags |= WSP_NEWLOC; /* don't copy the location list */
1932
1933 if (win_split(0, flags) == FAIL)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001934 goto theend;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001935 opened_window = TRUE; /* close it when fail */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001936
1937 if (curwin->w_height < p_hh)
1938 win_setheight((int)p_hh);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001939
1940 if (qi != &ql_info) /* not a quickfix list */
1941 {
1942 /* The new window should use the supplied location list */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001943 curwin->w_llist = qi;
1944 qi->qf_refcount++;
1945 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001946 }
1947
1948 if (!p_im)
1949 restart_edit = 0; /* don't want insert mode in help file */
1950 }
1951
1952 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 * If currently in the quickfix window, find another window to show the
1954 * file in.
1955 */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001956 if (bt_quickfix(curbuf) && !opened_window)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 {
Bram Moolenaar24862852013-06-30 13:57:45 +02001958 win_T *usable_win_ptr = NULL;
1959
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 /*
1961 * If there is no file specified, we don't know where to go.
1962 * But do advance, otherwise ":cn" gets stuck.
1963 */
1964 if (qf_ptr->qf_fnum == 0)
1965 goto theend;
1966
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001967 usable_win = 0;
Bram Moolenaar24862852013-06-30 13:57:45 +02001968
1969 ll_ref = curwin->w_llist_ref;
1970 if (ll_ref != NULL)
1971 {
1972 /* Find a window using the same location list that is not a
1973 * quickfix window. */
1974 FOR_ALL_WINDOWS(usable_win_ptr)
1975 if (usable_win_ptr->w_llist == ll_ref
1976 && usable_win_ptr->w_buffer->b_p_bt[0] != 'q')
Bram Moolenaarf5901aa2013-07-01 21:25:25 +02001977 {
1978 usable_win = 1;
Bram Moolenaar24862852013-06-30 13:57:45 +02001979 break;
Bram Moolenaarf5901aa2013-07-01 21:25:25 +02001980 }
Bram Moolenaar24862852013-06-30 13:57:45 +02001981 }
1982
1983 if (!usable_win)
1984 {
1985 /* Locate a window showing a normal buffer */
1986 FOR_ALL_WINDOWS(win)
1987 if (win->w_buffer->b_p_bt[0] == NUL)
1988 {
1989 usable_win = 1;
1990 break;
1991 }
1992 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001993
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 /*
Bram Moolenaar446cb832008-06-24 21:56:24 +00001995 * If no usable window is found and 'switchbuf' contains "usetab"
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00001996 * then search in other tabs.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 */
Bram Moolenaar446cb832008-06-24 21:56:24 +00001998 if (!usable_win && (swb_flags & SWB_USETAB))
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00001999 {
2000 tabpage_T *tp;
2001 win_T *wp;
2002
2003 FOR_ALL_TAB_WINDOWS(tp, wp)
2004 {
2005 if (wp->w_buffer->b_fnum == qf_ptr->qf_fnum)
2006 {
2007 goto_tabpage_win(tp, wp);
2008 usable_win = 1;
Bram Moolenaarbb9c7d12009-02-21 23:03:09 +00002009 goto win_found;
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00002010 }
2011 }
2012 }
Bram Moolenaarbb9c7d12009-02-21 23:03:09 +00002013win_found:
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00002014
2015 /*
Bram Moolenaar1042fa32007-09-16 11:27:42 +00002016 * If there is only one window and it is the quickfix window, create a
2017 * new one above the quickfix window.
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00002018 */
2019 if (((firstwin == lastwin) && bt_quickfix(curbuf)) || !usable_win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 {
Bram Moolenaar884ae642009-02-22 01:37:59 +00002021 flags = WSP_ABOVE;
2022 if (ll_ref != NULL)
2023 flags |= WSP_NEWLOC;
2024 if (win_split(0, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 goto failed; /* not enough room for window */
2026 opened_window = TRUE; /* close it when fail */
2027 p_swb = empty_option; /* don't split again */
Bram Moolenaar446cb832008-06-24 21:56:24 +00002028 swb_flags = 0;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002029 RESET_BINDING(curwin);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002030 if (ll_ref != NULL)
2031 {
2032 /* The new window should use the location list from the
2033 * location list window */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002034 curwin->w_llist = ll_ref;
2035 ll_ref->qf_refcount++;
2036 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 }
2038 else
2039 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002040 if (curwin->w_llist_ref != NULL)
2041 {
2042 /* In a location window */
Bram Moolenaar24862852013-06-30 13:57:45 +02002043 win = usable_win_ptr;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002044 if (win == NULL)
2045 {
2046 /* Find the window showing the selected file */
2047 FOR_ALL_WINDOWS(win)
2048 if (win->w_buffer->b_fnum == qf_ptr->qf_fnum)
2049 break;
2050 if (win == NULL)
2051 {
2052 /* Find a previous usable window */
2053 win = curwin;
2054 do
2055 {
2056 if (win->w_buffer->b_p_bt[0] == NUL)
2057 break;
2058 if (win->w_prev == NULL)
2059 win = lastwin; /* wrap around the top */
2060 else
2061 win = win->w_prev; /* go to previous window */
2062 } while (win != curwin);
2063 }
2064 }
2065 win_goto(win);
2066
2067 /* If the location list for the window is not set, then set it
2068 * to the location list from the location window */
2069 if (win->w_llist == NULL)
2070 {
2071 win->w_llist = ll_ref;
2072 ll_ref->qf_refcount++;
2073 }
2074 }
2075 else
2076 {
2077
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 /*
2079 * Try to find a window that shows the right buffer.
2080 * Default to the window just above the quickfix buffer.
2081 */
2082 win = curwin;
2083 altwin = NULL;
2084 for (;;)
2085 {
2086 if (win->w_buffer->b_fnum == qf_ptr->qf_fnum)
2087 break;
2088 if (win->w_prev == NULL)
2089 win = lastwin; /* wrap around the top */
2090 else
2091 win = win->w_prev; /* go to previous window */
2092
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002093 if (IS_QF_WINDOW(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 {
2095 /* Didn't find it, go to the window before the quickfix
2096 * window. */
2097 if (altwin != NULL)
2098 win = altwin;
2099 else if (curwin->w_prev != NULL)
2100 win = curwin->w_prev;
2101 else
2102 win = curwin->w_next;
2103 break;
2104 }
2105
2106 /* Remember a usable window. */
2107 if (altwin == NULL && !win->w_p_pvw
2108 && win->w_buffer->b_p_bt[0] == NUL)
2109 altwin = win;
2110 }
2111
2112 win_goto(win);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002113 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 }
2115 }
2116#endif
2117
2118 /*
2119 * If there is a file name,
2120 * read the wanted file if needed, and check autowrite etc.
2121 */
2122 old_curbuf = curbuf;
2123 old_lnum = curwin->w_cursor.lnum;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002124
2125 if (qf_ptr->qf_fnum != 0)
2126 {
2127 if (qf_ptr->qf_type == 1)
2128 {
2129 /* Open help file (do_ecmd() will set b_help flag, readfile() will
2130 * set b_p_ro flag). */
2131 if (!can_abandon(curbuf, forceit))
2132 {
2133 EMSG(_(e_nowrtmsg));
2134 ok = FALSE;
2135 }
2136 else
2137 ok = do_ecmd(qf_ptr->qf_fnum, NULL, NULL, NULL, (linenr_T)1,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002138 ECMD_HIDE + ECMD_SET_HELP,
2139 oldwin == curwin ? curwin : NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002140 }
2141 else
Bram Moolenaar0899d692016-03-19 13:35:03 +01002142 {
Bram Moolenaarffec3c52016-03-23 20:55:42 +01002143 int old_qf_curlist = qi->qf_curlist;
2144 int is_abort = FALSE;
2145
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002146 ok = buflist_getfile(qf_ptr->qf_fnum,
2147 (linenr_T)1, GETF_SETMARK | GETF_SWITCH, forceit);
Bram Moolenaar0899d692016-03-19 13:35:03 +01002148 if (qi != &ql_info && !win_valid(oldwin))
2149 {
2150 EMSG(_("E924: Current window was closed"));
Bram Moolenaarffec3c52016-03-23 20:55:42 +01002151 is_abort = TRUE;
2152 opened_window = FALSE;
2153 }
2154 else if (old_qf_curlist != qi->qf_curlist
2155 || !is_qf_entry_present(qi, qf_ptr))
2156 {
2157 if (qi == &ql_info)
2158 EMSG(_("E925: Current quickfix was changed"));
2159 else
2160 EMSG(_("E926: Current location list was changed"));
2161 is_abort = TRUE;
2162 }
2163
2164 if (is_abort)
2165 {
Bram Moolenaar0899d692016-03-19 13:35:03 +01002166 ok = FALSE;
2167 qi = NULL;
2168 qf_ptr = NULL;
Bram Moolenaar0899d692016-03-19 13:35:03 +01002169 }
2170 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002171 }
2172
2173 if (ok == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 {
2175 /* When not switched to another buffer, still need to set pc mark */
2176 if (curbuf == old_curbuf)
2177 setpcmark();
2178
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002179 if (qf_ptr->qf_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002181 /*
2182 * Go to line with error, unless qf_lnum is 0.
2183 */
2184 i = qf_ptr->qf_lnum;
2185 if (i > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002187 if (i > curbuf->b_ml.ml_line_count)
2188 i = curbuf->b_ml.ml_line_count;
2189 curwin->w_cursor.lnum = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002191 if (qf_ptr->qf_col > 0)
2192 {
2193 curwin->w_cursor.col = qf_ptr->qf_col - 1;
Bram Moolenaarb8c89002015-06-19 18:35:34 +02002194#ifdef FEAT_VIRTUALEDIT
2195 curwin->w_cursor.coladd = 0;
2196#endif
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002197 if (qf_ptr->qf_viscol == TRUE)
2198 {
2199 /*
2200 * Check each character from the beginning of the error
2201 * line up to the error column. For each tab character
2202 * found, reduce the error column value by the length of
2203 * a tab character.
2204 */
2205 line = ml_get_curline();
2206 screen_col = 0;
2207 for (char_col = 0; char_col < curwin->w_cursor.col; ++char_col)
2208 {
2209 if (*line == NUL)
2210 break;
2211 if (*line++ == '\t')
2212 {
2213 curwin->w_cursor.col -= 7 - (screen_col % 8);
2214 screen_col += 8 - (screen_col % 8);
2215 }
2216 else
2217 ++screen_col;
2218 }
2219 }
2220 check_cursor();
2221 }
2222 else
2223 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 }
2225 else
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002226 {
2227 pos_T save_cursor;
2228
2229 /* Move the cursor to the first line in the buffer */
2230 save_cursor = curwin->w_cursor;
2231 curwin->w_cursor.lnum = 0;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00002232 if (!do_search(NULL, '/', qf_ptr->qf_pattern, (long)1,
2233 SEARCH_KEEP, NULL))
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002234 curwin->w_cursor = save_cursor;
2235 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236
2237#ifdef FEAT_FOLDING
2238 if ((fdo_flags & FDO_QUICKFIX) && old_KeyTyped)
2239 foldOpenCursor();
2240#endif
2241 if (print_message)
2242 {
Bram Moolenaar8f55d102012-01-20 13:28:34 +01002243 /* Update the screen before showing the message, unless the screen
2244 * scrolled up. */
2245 if (!msg_scrolled)
2246 update_topline_redraw();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 sprintf((char *)IObuff, _("(%d of %d)%s%s: "), qf_index,
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002248 qi->qf_lists[qi->qf_curlist].qf_count,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 qf_ptr->qf_cleared ? _(" (line deleted)") : "",
2250 (char *)qf_types(qf_ptr->qf_type, qf_ptr->qf_nr));
2251 /* Add the message, skipping leading whitespace and newlines. */
2252 len = (int)STRLEN(IObuff);
2253 qf_fmt_text(skipwhite(qf_ptr->qf_text), IObuff + len, IOSIZE - len);
2254
2255 /* Output the message. Overwrite to avoid scrolling when the 'O'
2256 * flag is present in 'shortmess'; But when not jumping, print the
2257 * whole message. */
2258 i = msg_scroll;
2259 if (curbuf == old_curbuf && curwin->w_cursor.lnum == old_lnum)
2260 msg_scroll = TRUE;
2261 else if (!msg_scrolled && shortmess(SHM_OVERALL))
2262 msg_scroll = FALSE;
2263 msg_attr_keep(IObuff, 0, TRUE);
2264 msg_scroll = i;
2265 }
2266 }
2267 else
2268 {
2269#ifdef FEAT_WINDOWS
2270 if (opened_window)
2271 win_close(curwin, TRUE); /* Close opened window */
2272#endif
Bram Moolenaar0899d692016-03-19 13:35:03 +01002273 if (qf_ptr != NULL && qf_ptr->qf_fnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 {
2275 /*
2276 * Couldn't open file, so put index back where it was. This could
2277 * happen if the file was readonly and we changed something.
2278 */
2279#ifdef FEAT_WINDOWS
2280failed:
2281#endif
2282 qf_ptr = old_qf_ptr;
2283 qf_index = old_qf_index;
2284 }
2285 }
2286theend:
Bram Moolenaar0899d692016-03-19 13:35:03 +01002287 if (qi != NULL)
2288 {
2289 qi->qf_lists[qi->qf_curlist].qf_ptr = qf_ptr;
2290 qi->qf_lists[qi->qf_curlist].qf_index = qf_index;
2291 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292#ifdef FEAT_WINDOWS
2293 if (p_swb != old_swb && opened_window)
2294 {
2295 /* Restore old 'switchbuf' value, but not when an autocommand or
2296 * modeline has changed the value. */
2297 if (p_swb == empty_option)
Bram Moolenaar446cb832008-06-24 21:56:24 +00002298 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 p_swb = old_swb;
Bram Moolenaar446cb832008-06-24 21:56:24 +00002300 swb_flags = old_swb_flags;
2301 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 else
2303 free_string_option(old_swb);
2304 }
2305#endif
2306}
2307
2308/*
2309 * ":clist": list all errors
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002310 * ":llist": list all locations
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 */
2312 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002313qf_list(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002315 buf_T *buf;
2316 char_u *fname;
2317 qfline_T *qfp;
2318 int i;
2319 int idx1 = 1;
2320 int idx2 = -1;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002321 char_u *arg = eap->arg;
Bram Moolenaare8fea072016-07-01 14:48:27 +02002322 int plus = FALSE;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002323 int all = eap->forceit; /* if not :cl!, only show
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 recognised errors */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002325 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002327 if (eap->cmdidx == CMD_llist)
2328 {
2329 qi = GET_LOC_LIST(curwin);
2330 if (qi == NULL)
2331 {
2332 EMSG(_(e_loclist));
2333 return;
2334 }
2335 }
2336
2337 if (qi->qf_curlist >= qi->qf_listcount
2338 || qi->qf_lists[qi->qf_curlist].qf_count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 {
2340 EMSG(_(e_quickfix));
2341 return;
2342 }
Bram Moolenaare8fea072016-07-01 14:48:27 +02002343 if (*arg == '+')
2344 {
2345 ++arg;
2346 plus = TRUE;
2347 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 if (!get_list_range(&arg, &idx1, &idx2) || *arg != NUL)
2349 {
2350 EMSG(_(e_trailing));
2351 return;
2352 }
Bram Moolenaare8fea072016-07-01 14:48:27 +02002353 if (plus)
2354 {
2355 i = qi->qf_lists[qi->qf_curlist].qf_index;
2356 idx2 = i + idx1;
2357 idx1 = i;
2358 }
2359 else
2360 {
2361 i = qi->qf_lists[qi->qf_curlist].qf_count;
2362 if (idx1 < 0)
2363 idx1 = (-idx1 > i) ? 0 : idx1 + i + 1;
2364 if (idx2 < 0)
2365 idx2 = (-idx2 > i) ? 0 : idx2 + i + 1;
2366 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002368 if (qi->qf_lists[qi->qf_curlist].qf_nonevalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369 all = TRUE;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002370 qfp = qi->qf_lists[qi->qf_curlist].qf_start;
2371 for (i = 1; !got_int && i <= qi->qf_lists[qi->qf_curlist].qf_count; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 {
2373 if ((qfp->qf_valid || all) && idx1 <= i && i <= idx2)
2374 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01002375 msg_putchar('\n');
2376 if (got_int)
2377 break;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002378
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002379 fname = NULL;
2380 if (qfp->qf_fnum != 0
2381 && (buf = buflist_findnr(qfp->qf_fnum)) != NULL)
2382 {
2383 fname = buf->b_fname;
2384 if (qfp->qf_type == 1) /* :helpgrep */
2385 fname = gettail(fname);
2386 }
2387 if (fname == NULL)
2388 sprintf((char *)IObuff, "%2d", i);
2389 else
2390 vim_snprintf((char *)IObuff, IOSIZE, "%2d %s",
2391 i, (char *)fname);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002392 msg_outtrans_attr(IObuff, i == qi->qf_lists[qi->qf_curlist].qf_index
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002393 ? hl_attr(HLF_L) : hl_attr(HLF_D));
2394 if (qfp->qf_lnum == 0)
2395 IObuff[0] = NUL;
2396 else if (qfp->qf_col == 0)
2397 sprintf((char *)IObuff, ":%ld", qfp->qf_lnum);
2398 else
2399 sprintf((char *)IObuff, ":%ld col %d",
2400 qfp->qf_lnum, qfp->qf_col);
2401 sprintf((char *)IObuff + STRLEN(IObuff), "%s:",
2402 (char *)qf_types(qfp->qf_type, qfp->qf_nr));
2403 msg_puts_attr(IObuff, hl_attr(HLF_N));
2404 if (qfp->qf_pattern != NULL)
2405 {
2406 qf_fmt_text(qfp->qf_pattern, IObuff, IOSIZE);
2407 STRCAT(IObuff, ":");
2408 msg_puts(IObuff);
2409 }
2410 msg_puts((char_u *)" ");
2411
2412 /* Remove newlines and leading whitespace from the text. For an
2413 * unrecognized line keep the indent, the compiler may mark a word
2414 * with ^^^^. */
2415 qf_fmt_text((fname != NULL || qfp->qf_lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 ? skipwhite(qfp->qf_text) : qfp->qf_text,
2417 IObuff, IOSIZE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002418 msg_prt_line(IObuff, FALSE);
2419 out_flush(); /* show one line at a time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002421
2422 qfp = qfp->qf_next;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002423 if (qfp == NULL)
2424 break;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002425 ++i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 ui_breakcheck();
2427 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428}
2429
2430/*
2431 * Remove newlines and leading whitespace from an error message.
2432 * Put the result in "buf[bufsize]".
2433 */
2434 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002435qf_fmt_text(char_u *text, char_u *buf, int bufsize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436{
2437 int i;
2438 char_u *p = text;
2439
2440 for (i = 0; *p != NUL && i < bufsize - 1; ++i)
2441 {
2442 if (*p == '\n')
2443 {
2444 buf[i] = ' ';
2445 while (*++p != NUL)
2446 if (!vim_iswhite(*p) && *p != '\n')
2447 break;
2448 }
2449 else
2450 buf[i] = *p++;
2451 }
2452 buf[i] = NUL;
2453}
2454
2455/*
2456 * ":colder [count]": Up in the quickfix stack.
2457 * ":cnewer [count]": Down in the quickfix stack.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002458 * ":lolder [count]": Up in the location list stack.
2459 * ":lnewer [count]": Down in the location list stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 */
2461 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002462qf_age(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002464 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465 int count;
2466
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002467 if (eap->cmdidx == CMD_lolder || eap->cmdidx == CMD_lnewer)
2468 {
2469 qi = GET_LOC_LIST(curwin);
2470 if (qi == NULL)
2471 {
2472 EMSG(_(e_loclist));
2473 return;
2474 }
2475 }
2476
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 if (eap->addr_count != 0)
2478 count = eap->line2;
2479 else
2480 count = 1;
2481 while (count--)
2482 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002483 if (eap->cmdidx == CMD_colder || eap->cmdidx == CMD_lolder)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002485 if (qi->qf_curlist == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 {
2487 EMSG(_("E380: At bottom of quickfix stack"));
Bram Moolenaar82e803b2013-05-11 15:50:33 +02002488 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002490 --qi->qf_curlist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 }
2492 else
2493 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002494 if (qi->qf_curlist >= qi->qf_listcount - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 {
2496 EMSG(_("E381: At top of quickfix stack"));
Bram Moolenaar82e803b2013-05-11 15:50:33 +02002497 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002499 ++qi->qf_curlist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 }
2501 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002502 qf_msg(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503}
2504
2505 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002506qf_msg(qf_info_T *qi)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507{
2508 smsg((char_u *)_("error list %d of %d; %d errors"),
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002509 qi->qf_curlist + 1, qi->qf_listcount,
2510 qi->qf_lists[qi->qf_curlist].qf_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511#ifdef FEAT_WINDOWS
Bram Moolenaar864293a2016-06-02 13:40:04 +02002512 qf_update_buffer(qi, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513#endif
2514}
2515
2516/*
Bram Moolenaar77197e42005-12-08 22:00:22 +00002517 * Free error list "idx".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 */
2519 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002520qf_free(qf_info_T *qi, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002522 qfline_T *qfp;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002523 qfline_T *qfpnext;
Bram Moolenaar81484f42012-12-05 15:16:47 +01002524 int stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002526 while (qi->qf_lists[idx].qf_count && qi->qf_lists[idx].qf_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 {
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002528 qfp = qi->qf_lists[idx].qf_start;
2529 qfpnext = qfp->qf_next;
Bram Moolenaar81484f42012-12-05 15:16:47 +01002530 if (qi->qf_lists[idx].qf_title != NULL && !stop)
Bram Moolenaarc83a44b2012-11-28 15:25:34 +01002531 {
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002532 vim_free(qfp->qf_text);
2533 stop = (qfp == qfpnext);
2534 vim_free(qfp->qf_pattern);
2535 vim_free(qfp);
Bram Moolenaar81484f42012-12-05 15:16:47 +01002536 if (stop)
2537 /* Somehow qf_count may have an incorrect value, set it to 1
2538 * to avoid crashing when it's wrong.
2539 * TODO: Avoid qf_count being incorrect. */
2540 qi->qf_lists[idx].qf_count = 1;
Bram Moolenaarc83a44b2012-11-28 15:25:34 +01002541 }
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002542 qi->qf_lists[idx].qf_start = qfpnext;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002543 --qi->qf_lists[idx].qf_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 }
Bram Moolenaar7fd73202010-07-25 16:58:46 +02002545 vim_free(qi->qf_lists[idx].qf_title);
Bram Moolenaar832f80e2010-08-17 20:26:59 +02002546 qi->qf_lists[idx].qf_title = NULL;
Bram Moolenaar158a1b02014-07-23 16:33:07 +02002547 qi->qf_lists[idx].qf_index = 0;
Bram Moolenaar361c8f02016-07-02 15:41:47 +02002548
2549 qf_clean_dir_stack(&qi->qf_dir_stack);
2550 qf_clean_dir_stack(&qi->qf_file_stack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551}
2552
2553/*
2554 * qf_mark_adjust: adjust marks
2555 */
2556 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002557qf_mark_adjust(
2558 win_T *wp,
2559 linenr_T line1,
2560 linenr_T line2,
2561 long amount,
2562 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002564 int i;
2565 qfline_T *qfp;
2566 int idx;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002567 qf_info_T *qi = &ql_info;
Bram Moolenaar2f095a42016-06-03 19:05:49 +02002568 int found_one = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569
Bram Moolenaar2f095a42016-06-03 19:05:49 +02002570 if (!curbuf->b_has_qf_entry)
2571 return;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002572 if (wp != NULL)
2573 {
2574 if (wp->w_llist == NULL)
2575 return;
2576 qi = wp->w_llist;
2577 }
2578
2579 for (idx = 0; idx < qi->qf_listcount; ++idx)
2580 if (qi->qf_lists[idx].qf_count)
2581 for (i = 0, qfp = qi->qf_lists[idx].qf_start;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02002582 i < qi->qf_lists[idx].qf_count && qfp != NULL;
2583 ++i, qfp = qfp->qf_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 if (qfp->qf_fnum == curbuf->b_fnum)
2585 {
Bram Moolenaar2f095a42016-06-03 19:05:49 +02002586 found_one = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 if (qfp->qf_lnum >= line1 && qfp->qf_lnum <= line2)
2588 {
2589 if (amount == MAXLNUM)
2590 qfp->qf_cleared = TRUE;
2591 else
2592 qfp->qf_lnum += amount;
2593 }
2594 else if (amount_after && qfp->qf_lnum > line2)
2595 qfp->qf_lnum += amount_after;
2596 }
Bram Moolenaar2f095a42016-06-03 19:05:49 +02002597
2598 if (!found_one)
2599 curbuf->b_has_qf_entry = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600}
2601
2602/*
2603 * Make a nice message out of the error character and the error number:
2604 * char number message
2605 * e or E 0 " error"
2606 * w or W 0 " warning"
2607 * i or I 0 " info"
2608 * 0 0 ""
2609 * other 0 " c"
2610 * e or E n " error n"
2611 * w or W n " warning n"
2612 * i or I n " info n"
2613 * 0 n " error n"
2614 * other n " c n"
2615 * 1 x "" :helpgrep
2616 */
2617 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01002618qf_types(int c, int nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619{
2620 static char_u buf[20];
2621 static char_u cc[3];
2622 char_u *p;
2623
2624 if (c == 'W' || c == 'w')
2625 p = (char_u *)" warning";
2626 else if (c == 'I' || c == 'i')
2627 p = (char_u *)" info";
2628 else if (c == 'E' || c == 'e' || (c == 0 && nr > 0))
2629 p = (char_u *)" error";
2630 else if (c == 0 || c == 1)
2631 p = (char_u *)"";
2632 else
2633 {
2634 cc[0] = ' ';
2635 cc[1] = c;
2636 cc[2] = NUL;
2637 p = cc;
2638 }
2639
2640 if (nr <= 0)
2641 return p;
2642
2643 sprintf((char *)buf, "%s %3d", (char *)p, nr);
2644 return buf;
2645}
2646
2647#if defined(FEAT_WINDOWS) || defined(PROTO)
2648/*
2649 * ":cwindow": open the quickfix window if we have errors to display,
2650 * close it if not.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002651 * ":lwindow": open the location list window if we have locations to display,
2652 * close it if not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 */
2654 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002655ex_cwindow(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002657 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 win_T *win;
2659
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002660 if (eap->cmdidx == CMD_lwindow)
2661 {
2662 qi = GET_LOC_LIST(curwin);
2663 if (qi == NULL)
2664 return;
2665 }
2666
2667 /* Look for an existing quickfix window. */
2668 win = qf_find_win(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669
2670 /*
2671 * If a quickfix window is open but we have no errors to display,
2672 * close the window. If a quickfix window is not open, then open
2673 * it if we have errors; otherwise, leave it closed.
2674 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002675 if (qi->qf_lists[qi->qf_curlist].qf_nonevalid
Bram Moolenaard236ac02011-05-05 17:14:14 +02002676 || qi->qf_lists[qi->qf_curlist].qf_count == 0
Bram Moolenaard68071d2006-05-02 22:08:30 +00002677 || qi->qf_curlist >= qi->qf_listcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 {
2679 if (win != NULL)
2680 ex_cclose(eap);
2681 }
2682 else if (win == NULL)
2683 ex_copen(eap);
2684}
2685
2686/*
2687 * ":cclose": close the window showing the list of errors.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002688 * ":lclose": close the window showing the location list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002691ex_cclose(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002693 win_T *win = NULL;
2694 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002696 if (eap->cmdidx == CMD_lclose || eap->cmdidx == CMD_lwindow)
2697 {
2698 qi = GET_LOC_LIST(curwin);
2699 if (qi == NULL)
2700 return;
2701 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002703 /* Find existing quickfix window and close it. */
2704 win = qf_find_win(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 if (win != NULL)
2706 win_close(win, FALSE);
2707}
2708
2709/*
2710 * ":copen": open a window that shows the list of errors.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002711 * ":lopen": open a window that shows the location list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 */
2713 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002714ex_copen(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002716 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 int height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 win_T *win;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002719 tabpage_T *prevtab = curtab;
Bram Moolenaar9c102382006-05-03 21:26:49 +00002720 buf_T *qf_buf;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002721 win_T *oldwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002723 if (eap->cmdidx == CMD_lopen || eap->cmdidx == CMD_lwindow)
2724 {
2725 qi = GET_LOC_LIST(curwin);
2726 if (qi == NULL)
2727 {
2728 EMSG(_(e_loclist));
2729 return;
2730 }
2731 }
2732
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 if (eap->addr_count != 0)
2734 height = eap->line2;
2735 else
2736 height = QF_WINHEIGHT;
2737
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739#ifdef FEAT_GUI
2740 need_mouse_correct = TRUE;
2741#endif
2742
2743 /*
2744 * Find existing quickfix window, or open a new one.
2745 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002746 win = qf_find_win(qi);
2747
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002748 if (win != NULL && cmdmod.tab == 0)
Bram Moolenaar15886412014-03-27 17:02:27 +01002749 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750 win_goto(win);
Bram Moolenaar15886412014-03-27 17:02:27 +01002751 if (eap->addr_count != 0)
2752 {
Bram Moolenaar15886412014-03-27 17:02:27 +01002753 if (cmdmod.split & WSP_VERT)
2754 {
2755 if (height != W_WIDTH(win))
2756 win_setwidth(height);
2757 }
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002758 else if (height != win->w_height)
Bram Moolenaar15886412014-03-27 17:02:27 +01002759 win_setheight(height);
2760 }
2761 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 else
2763 {
Bram Moolenaar9c102382006-05-03 21:26:49 +00002764 qf_buf = qf_find_buf(qi);
2765
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 /* The current window becomes the previous window afterwards. */
2767 win = curwin;
2768
Bram Moolenaar77642c02012-11-20 17:55:10 +01002769 if ((eap->cmdidx == CMD_copen || eap->cmdidx == CMD_cwindow)
2770 && cmdmod.split == 0)
2771 /* Create the new window at the very bottom, except when
2772 * :belowright or :aboveleft is used. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002773 win_goto(lastwin);
Bram Moolenaar884ae642009-02-22 01:37:59 +00002774 if (win_split(height, WSP_BELOW | WSP_NEWLOC) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 return; /* not enough room for window */
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002776 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002778 if (eap->cmdidx == CMD_lopen || eap->cmdidx == CMD_lwindow)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002780 /*
2781 * For the location list window, create a reference to the
2782 * location list from the window 'win'.
2783 */
2784 curwin->w_llist_ref = win->w_llist;
2785 win->w_llist->qf_refcount++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002787
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002788 if (oldwin != curwin)
2789 oldwin = NULL; /* don't store info when in another window */
Bram Moolenaar9c102382006-05-03 21:26:49 +00002790 if (qf_buf != NULL)
2791 /* Use the existing quickfix buffer */
2792 (void)do_ecmd(qf_buf->b_fnum, NULL, NULL, NULL, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002793 ECMD_HIDE + ECMD_OLDBUF, oldwin);
Bram Moolenaar9c102382006-05-03 21:26:49 +00002794 else
2795 {
2796 /* Create a new quickfix buffer */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002797 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, oldwin);
Bram Moolenaar9c102382006-05-03 21:26:49 +00002798 /* switch off 'swapfile' */
2799 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
2800 set_option_value((char_u *)"bt", 0L, (char_u *)"quickfix",
Bram Moolenaar838bb712006-03-11 21:24:08 +00002801 OPT_LOCAL);
Bram Moolenaar9c102382006-05-03 21:26:49 +00002802 set_option_value((char_u *)"bh", 0L, (char_u *)"wipe", OPT_LOCAL);
Bram Moolenaar4161dcc2010-12-02 15:33:21 +01002803 RESET_BINDING(curwin);
Bram Moolenaar04c0f8a2009-04-29 09:52:12 +00002804#ifdef FEAT_DIFF
2805 curwin->w_p_diff = FALSE;
2806#endif
2807#ifdef FEAT_FOLDING
2808 set_option_value((char_u *)"fdm", 0L, (char_u *)"manual",
2809 OPT_LOCAL);
2810#endif
Bram Moolenaar9c102382006-05-03 21:26:49 +00002811 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002813 /* Only set the height when still in the same tab page and there is no
2814 * window to the side. */
Bram Moolenaar44a2f922016-03-19 22:11:51 +01002815 if (curtab == prevtab && curwin->w_width == Columns)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 win_setheight(height);
2817 curwin->w_p_wfh = TRUE; /* set 'winfixheight' */
2818 if (win_valid(win))
2819 prevwin = win;
2820 }
2821
Bram Moolenaar81278ef2015-05-04 12:34:22 +02002822 qf_set_title_var(qi);
2823
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824 /*
2825 * Fill the buffer with the quickfix list.
2826 */
Bram Moolenaar864293a2016-06-02 13:40:04 +02002827 qf_fill_buffer(qi, curbuf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002829 curwin->w_cursor.lnum = qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 curwin->w_cursor.col = 0;
2831 check_cursor();
2832 update_topline(); /* scroll to show the line */
2833}
2834
2835/*
Bram Moolenaardcb17002016-07-07 18:58:59 +02002836 * Move the cursor in the quickfix window to "lnum".
2837 */
2838 static void
2839qf_win_goto(win_T *win, linenr_T lnum)
2840{
2841 win_T *old_curwin = curwin;
2842
2843 curwin = win;
2844 curbuf = win->w_buffer;
2845 curwin->w_cursor.lnum = lnum;
2846 curwin->w_cursor.col = 0;
2847#ifdef FEAT_VIRTUALEDIT
2848 curwin->w_cursor.coladd = 0;
2849#endif
2850 curwin->w_curswant = 0;
2851 update_topline(); /* scroll to show the line */
2852 redraw_later(VALID);
2853 curwin->w_redr_status = TRUE; /* update ruler */
2854 curwin = old_curwin;
2855 curbuf = curwin->w_buffer;
2856}
2857
2858/*
Bram Moolenaar537ef082016-07-09 17:56:19 +02002859 * :cbottom/:lbottom commands.
Bram Moolenaardcb17002016-07-07 18:58:59 +02002860 */
2861 void
2862ex_cbottom(exarg_T *eap UNUSED)
2863{
Bram Moolenaar537ef082016-07-09 17:56:19 +02002864 qf_info_T *qi = &ql_info;
2865 win_T *win;
Bram Moolenaardcb17002016-07-07 18:58:59 +02002866
Bram Moolenaar537ef082016-07-09 17:56:19 +02002867 if (eap->cmdidx == CMD_lbottom)
2868 {
2869 qi = GET_LOC_LIST(curwin);
2870 if (qi == NULL)
2871 {
2872 EMSG(_(e_loclist));
2873 return;
2874 }
2875 }
2876
2877 win = qf_find_win(qi);
Bram Moolenaardcb17002016-07-07 18:58:59 +02002878 if (win != NULL && win->w_cursor.lnum != win->w_buffer->b_ml.ml_line_count)
2879 qf_win_goto(win, win->w_buffer->b_ml.ml_line_count);
2880}
2881
2882/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883 * Return the number of the current entry (line number in the quickfix
2884 * window).
2885 */
2886 linenr_T
Bram Moolenaar05540972016-01-30 20:31:25 +01002887qf_current_entry(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002889 qf_info_T *qi = &ql_info;
2890
2891 if (IS_LL_WINDOW(wp))
2892 /* In the location list window, use the referenced location list */
2893 qi = wp->w_llist_ref;
2894
2895 return qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896}
2897
2898/*
2899 * Update the cursor position in the quickfix window to the current error.
2900 * Return TRUE if there is a quickfix window.
2901 */
2902 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01002903qf_win_pos_update(
2904 qf_info_T *qi,
2905 int old_qf_index) /* previous qf_index or zero */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906{
2907 win_T *win;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002908 int qf_index = qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909
2910 /*
2911 * Put the cursor on the current error in the quickfix window, so that
2912 * it's viewable.
2913 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002914 win = qf_find_win(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 if (win != NULL
2916 && qf_index <= win->w_buffer->b_ml.ml_line_count
2917 && old_qf_index != qf_index)
2918 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 if (qf_index > old_qf_index)
2920 {
Bram Moolenaardcb17002016-07-07 18:58:59 +02002921 win->w_redraw_top = old_qf_index;
2922 win->w_redraw_bot = qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923 }
2924 else
2925 {
Bram Moolenaardcb17002016-07-07 18:58:59 +02002926 win->w_redraw_top = qf_index;
2927 win->w_redraw_bot = old_qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928 }
Bram Moolenaardcb17002016-07-07 18:58:59 +02002929 qf_win_goto(win, qf_index);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 }
2931 return win != NULL;
2932}
2933
2934/*
Bram Moolenaar9c102382006-05-03 21:26:49 +00002935 * Check whether the given window is displaying the specified quickfix/location
2936 * list buffer
2937 */
2938 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01002939is_qf_win(win_T *win, qf_info_T *qi)
Bram Moolenaar9c102382006-05-03 21:26:49 +00002940{
2941 /*
2942 * A window displaying the quickfix buffer will have the w_llist_ref field
2943 * set to NULL.
2944 * A window displaying a location list buffer will have the w_llist_ref
2945 * pointing to the location list.
2946 */
2947 if (bt_quickfix(win->w_buffer))
2948 if ((qi == &ql_info && win->w_llist_ref == NULL)
2949 || (qi != &ql_info && win->w_llist_ref == qi))
2950 return TRUE;
2951
2952 return FALSE;
2953}
2954
2955/*
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002956 * Find a window displaying the quickfix/location list 'qi'
Bram Moolenaar9c102382006-05-03 21:26:49 +00002957 * Searches in only the windows opened in the current tab.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002958 */
2959 static win_T *
Bram Moolenaar05540972016-01-30 20:31:25 +01002960qf_find_win(qf_info_T *qi)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002961{
2962 win_T *win;
2963
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002964 FOR_ALL_WINDOWS(win)
Bram Moolenaar9c102382006-05-03 21:26:49 +00002965 if (is_qf_win(win, qi))
2966 break;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002967
2968 return win;
2969}
2970
2971/*
Bram Moolenaar9c102382006-05-03 21:26:49 +00002972 * Find a quickfix buffer.
2973 * Searches in windows opened in all the tabs.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 */
2975 static buf_T *
Bram Moolenaar05540972016-01-30 20:31:25 +01002976qf_find_buf(qf_info_T *qi)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977{
Bram Moolenaar9c102382006-05-03 21:26:49 +00002978 tabpage_T *tp;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002979 win_T *win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980
Bram Moolenaar9c102382006-05-03 21:26:49 +00002981 FOR_ALL_TAB_WINDOWS(tp, win)
2982 if (is_qf_win(win, qi))
2983 return win->w_buffer;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002984
Bram Moolenaar9c102382006-05-03 21:26:49 +00002985 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986}
2987
2988/*
2989 * Find the quickfix buffer. If it exists, update the contents.
2990 */
2991 static void
Bram Moolenaar864293a2016-06-02 13:40:04 +02002992qf_update_buffer(qf_info_T *qi, qfline_T *old_last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993{
2994 buf_T *buf;
Bram Moolenaarc95e3262011-08-10 18:36:54 +02002995 win_T *win;
2996 win_T *curwin_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998
2999 /* Check if a buffer for the quickfix list exists. Update it. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003000 buf = qf_find_buf(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 if (buf != NULL)
3002 {
Bram Moolenaar864293a2016-06-02 13:40:04 +02003003 linenr_T old_line_count = buf->b_ml.ml_line_count;
3004
3005 if (old_last == NULL)
3006 /* set curwin/curbuf to buf and save a few things */
3007 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008
Bram Moolenaar81278ef2015-05-04 12:34:22 +02003009 if ((win = qf_find_win(qi)) != NULL)
Bram Moolenaarc95e3262011-08-10 18:36:54 +02003010 {
3011 curwin_save = curwin;
3012 curwin = win;
Bram Moolenaarfb604092014-07-23 15:55:00 +02003013 qf_set_title_var(qi);
Bram Moolenaarc95e3262011-08-10 18:36:54 +02003014 curwin = curwin_save;
Bram Moolenaarc95e3262011-08-10 18:36:54 +02003015 }
3016
Bram Moolenaar864293a2016-06-02 13:40:04 +02003017 qf_fill_buffer(qi, buf, old_last);
Bram Moolenaar6920c722016-01-22 22:44:10 +01003018
Bram Moolenaar864293a2016-06-02 13:40:04 +02003019 if (old_last == NULL)
3020 {
Bram Moolenaarc1808d52016-04-18 20:04:00 +02003021 (void)qf_win_pos_update(qi, 0);
Bram Moolenaar864293a2016-06-02 13:40:04 +02003022
3023 /* restore curwin/curbuf and a few other things */
3024 aucmd_restbuf(&aco);
3025 }
3026
3027 /* Only redraw when added lines are visible. This avoids flickering
3028 * when the added lines are not visible. */
3029 if ((win = qf_find_win(qi)) != NULL && old_line_count < win->w_botline)
3030 redraw_buf_later(buf, NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031 }
3032}
3033
Bram Moolenaar81278ef2015-05-04 12:34:22 +02003034/*
3035 * Set "w:quickfix_title" if "qi" has a title.
3036 */
Bram Moolenaarc95e3262011-08-10 18:36:54 +02003037 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003038qf_set_title_var(qf_info_T *qi)
Bram Moolenaarc95e3262011-08-10 18:36:54 +02003039{
Bram Moolenaar81278ef2015-05-04 12:34:22 +02003040 if (qi->qf_lists[qi->qf_curlist].qf_title != NULL)
3041 set_internal_string_var((char_u *)"w:quickfix_title",
Bram Moolenaarc95e3262011-08-10 18:36:54 +02003042 qi->qf_lists[qi->qf_curlist].qf_title);
3043}
3044
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045/*
3046 * Fill current buffer with quickfix errors, replacing any previous contents.
3047 * curbuf must be the quickfix buffer!
Bram Moolenaar864293a2016-06-02 13:40:04 +02003048 * If "old_last" is not NULL append the items after this one.
3049 * When "old_last" is NULL then "buf" must equal "curbuf"! Because
3050 * ml_delete() is used and autocommands will be triggered.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 */
3052 static void
Bram Moolenaar864293a2016-06-02 13:40:04 +02003053qf_fill_buffer(qf_info_T *qi, buf_T *buf, qfline_T *old_last)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003055 linenr_T lnum;
3056 qfline_T *qfp;
3057 buf_T *errbuf;
3058 int len;
3059 int old_KeyTyped = KeyTyped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060
Bram Moolenaar864293a2016-06-02 13:40:04 +02003061 if (old_last == NULL)
3062 {
3063 if (buf != curbuf)
3064 {
3065 EMSG2(_(e_intern2), "qf_fill_buffer()");
3066 return;
3067 }
3068
3069 /* delete all existing lines */
3070 while ((curbuf->b_ml.ml_flags & ML_EMPTY) == 0)
3071 (void)ml_delete((linenr_T)1, FALSE);
3072 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073
3074 /* Check if there is anything to display */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003075 if (qi->qf_curlist < qi->qf_listcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 {
3077 /* Add one line for each error */
Bram Moolenaar864293a2016-06-02 13:40:04 +02003078 if (old_last == NULL)
3079 {
3080 qfp = qi->qf_lists[qi->qf_curlist].qf_start;
3081 lnum = 0;
3082 }
3083 else
3084 {
3085 qfp = old_last->qf_next;
3086 lnum = buf->b_ml.ml_line_count;
3087 }
3088 while (lnum < qi->qf_lists[qi->qf_curlist].qf_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 {
3090 if (qfp->qf_fnum != 0
3091 && (errbuf = buflist_findnr(qfp->qf_fnum)) != NULL
3092 && errbuf->b_fname != NULL)
3093 {
3094 if (qfp->qf_type == 1) /* :helpgrep */
3095 STRCPY(IObuff, gettail(errbuf->b_fname));
3096 else
3097 STRCPY(IObuff, errbuf->b_fname);
3098 len = (int)STRLEN(IObuff);
3099 }
3100 else
3101 len = 0;
3102 IObuff[len++] = '|';
3103
3104 if (qfp->qf_lnum > 0)
3105 {
3106 sprintf((char *)IObuff + len, "%ld", qfp->qf_lnum);
3107 len += (int)STRLEN(IObuff + len);
3108
3109 if (qfp->qf_col > 0)
3110 {
3111 sprintf((char *)IObuff + len, " col %d", qfp->qf_col);
3112 len += (int)STRLEN(IObuff + len);
3113 }
3114
3115 sprintf((char *)IObuff + len, "%s",
3116 (char *)qf_types(qfp->qf_type, qfp->qf_nr));
3117 len += (int)STRLEN(IObuff + len);
3118 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003119 else if (qfp->qf_pattern != NULL)
3120 {
3121 qf_fmt_text(qfp->qf_pattern, IObuff + len, IOSIZE - len);
3122 len += (int)STRLEN(IObuff + len);
3123 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 IObuff[len++] = '|';
3125 IObuff[len++] = ' ';
3126
3127 /* Remove newlines and leading whitespace from the text.
3128 * For an unrecognized line keep the indent, the compiler may
3129 * mark a word with ^^^^. */
3130 qf_fmt_text(len > 3 ? skipwhite(qfp->qf_text) : qfp->qf_text,
3131 IObuff + len, IOSIZE - len);
3132
Bram Moolenaar864293a2016-06-02 13:40:04 +02003133 if (ml_append_buf(buf, lnum, IObuff,
3134 (colnr_T)STRLEN(IObuff) + 1, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 break;
Bram Moolenaar864293a2016-06-02 13:40:04 +02003136 ++lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137 qfp = qfp->qf_next;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02003138 if (qfp == NULL)
3139 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 }
Bram Moolenaar864293a2016-06-02 13:40:04 +02003141
3142 if (old_last == NULL)
3143 /* Delete the empty line which is now at the end */
3144 (void)ml_delete(lnum + 1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 }
3146
3147 /* correct cursor position */
3148 check_lnums(TRUE);
3149
Bram Moolenaar864293a2016-06-02 13:40:04 +02003150 if (old_last == NULL)
3151 {
3152 /* Set the 'filetype' to "qf" each time after filling the buffer.
3153 * This resembles reading a file into a buffer, it's more logical when
3154 * using autocommands. */
3155 set_option_value((char_u *)"ft", 0L, (char_u *)"qf", OPT_LOCAL);
3156 curbuf->b_p_ma = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157
3158#ifdef FEAT_AUTOCMD
Bram Moolenaar864293a2016-06-02 13:40:04 +02003159 keep_filetype = TRUE; /* don't detect 'filetype' */
3160 apply_autocmds(EVENT_BUFREADPOST, (char_u *)"quickfix", NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161 FALSE, curbuf);
Bram Moolenaar864293a2016-06-02 13:40:04 +02003162 apply_autocmds(EVENT_BUFWINENTER, (char_u *)"quickfix", NULL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 FALSE, curbuf);
Bram Moolenaar864293a2016-06-02 13:40:04 +02003164 keep_filetype = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165#endif
Bram Moolenaar864293a2016-06-02 13:40:04 +02003166 /* make sure it will be redrawn */
3167 redraw_curbuf_later(NOT_VALID);
3168 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169
3170 /* Restore KeyTyped, setting 'filetype' may reset it. */
3171 KeyTyped = old_KeyTyped;
3172}
3173
3174#endif /* FEAT_WINDOWS */
3175
3176/*
3177 * Return TRUE if "buf" is the quickfix buffer.
3178 */
3179 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003180bt_quickfix(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181{
Bram Moolenaarfc573802011-12-30 15:01:59 +01003182 return buf != NULL && buf->b_p_bt[0] == 'q';
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183}
3184
3185/*
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003186 * Return TRUE if "buf" is a "nofile" or "acwrite" buffer.
3187 * This means the buffer name is not a file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 */
3189 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003190bt_nofile(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191{
Bram Moolenaarfc573802011-12-30 15:01:59 +01003192 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
3193 || buf->b_p_bt[0] == 'a');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194}
3195
3196/*
3197 * Return TRUE if "buf" is a "nowrite" or "nofile" buffer.
3198 */
3199 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003200bt_dontwrite(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201{
Bram Moolenaarfc573802011-12-30 15:01:59 +01003202 return buf != NULL && buf->b_p_bt[0] == 'n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203}
3204
3205 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003206bt_dontwrite_msg(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003207{
3208 if (bt_dontwrite(buf))
3209 {
3210 EMSG(_("E382: Cannot write, 'buftype' option is set"));
3211 return TRUE;
3212 }
3213 return FALSE;
3214}
3215
3216/*
3217 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
3218 * and 'bufhidden'.
3219 */
3220 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003221buf_hide(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222{
3223 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
3224 switch (buf->b_p_bh[0])
3225 {
3226 case 'u': /* "unload" */
3227 case 'w': /* "wipe" */
3228 case 'd': return FALSE; /* "delete" */
3229 case 'h': return TRUE; /* "hide" */
3230 }
3231 return (p_hid || cmdmod.hide);
3232}
3233
3234/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003235 * Return TRUE when using ":vimgrep" for ":grep".
3236 */
3237 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003238grep_internal(cmdidx_T cmdidx)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003239{
Bram Moolenaar754b5602006-02-09 23:53:20 +00003240 return ((cmdidx == CMD_grep
3241 || cmdidx == CMD_lgrep
3242 || cmdidx == CMD_grepadd
3243 || cmdidx == CMD_lgrepadd)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003244 && STRCMP("internal",
3245 *curbuf->b_p_gp == NUL ? p_gp : curbuf->b_p_gp) == 0);
3246}
3247
3248/*
Bram Moolenaara6557602006-02-04 22:43:20 +00003249 * Used for ":make", ":lmake", ":grep", ":lgrep", ":grepadd", and ":lgrepadd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250 */
3251 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003252ex_make(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253{
Bram Moolenaar7c626922005-02-07 22:01:03 +00003254 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 char_u *cmd;
3256 unsigned len;
Bram Moolenaara6557602006-02-04 22:43:20 +00003257 win_T *wp = NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003258 qf_info_T *qi = &ql_info;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003259 int res;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003260#ifdef FEAT_AUTOCMD
3261 char_u *au_name = NULL;
3262
Bram Moolenaard88e02d2011-04-28 17:27:09 +02003263 /* Redirect ":grep" to ":vimgrep" if 'grepprg' is "internal". */
3264 if (grep_internal(eap->cmdidx))
3265 {
3266 ex_vimgrep(eap);
3267 return;
3268 }
3269
Bram Moolenaar7c626922005-02-07 22:01:03 +00003270 switch (eap->cmdidx)
3271 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00003272 case CMD_make: au_name = (char_u *)"make"; break;
3273 case CMD_lmake: au_name = (char_u *)"lmake"; break;
3274 case CMD_grep: au_name = (char_u *)"grep"; break;
3275 case CMD_lgrep: au_name = (char_u *)"lgrep"; break;
3276 case CMD_grepadd: au_name = (char_u *)"grepadd"; break;
3277 case CMD_lgrepadd: au_name = (char_u *)"lgrepadd"; break;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003278 default: break;
3279 }
3280 if (au_name != NULL)
3281 {
3282 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name,
3283 curbuf->b_fname, TRUE, curbuf);
Bram Moolenaar1e015462005-09-25 22:16:38 +00003284# ifdef FEAT_EVAL
Bram Moolenaar7c626922005-02-07 22:01:03 +00003285 if (did_throw || force_abort)
3286 return;
Bram Moolenaar1e015462005-09-25 22:16:38 +00003287# endif
Bram Moolenaar7c626922005-02-07 22:01:03 +00003288 }
3289#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290
Bram Moolenaara6557602006-02-04 22:43:20 +00003291 if (eap->cmdidx == CMD_lmake || eap->cmdidx == CMD_lgrep
3292 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaara6557602006-02-04 22:43:20 +00003293 wp = curwin;
Bram Moolenaara6557602006-02-04 22:43:20 +00003294
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 autowrite_all();
Bram Moolenaar7c626922005-02-07 22:01:03 +00003296 fname = get_mef_name();
3297 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003299 mch_remove(fname); /* in case it's not unique */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300
3301 /*
3302 * If 'shellpipe' empty: don't redirect to 'errorfile'.
3303 */
3304 len = (unsigned)STRLEN(p_shq) * 2 + (unsigned)STRLEN(eap->arg) + 1;
3305 if (*p_sp != NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00003306 len += (unsigned)STRLEN(p_sp) + (unsigned)STRLEN(fname) + 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307 cmd = alloc(len);
3308 if (cmd == NULL)
3309 return;
3310 sprintf((char *)cmd, "%s%s%s", (char *)p_shq, (char *)eap->arg,
3311 (char *)p_shq);
3312 if (*p_sp != NUL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003313 append_redir(cmd, len, p_sp, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314 /*
3315 * Output a newline if there's something else than the :make command that
3316 * was typed (in which case the cursor is in column 0).
3317 */
3318 if (msg_col == 0)
3319 msg_didout = FALSE;
3320 msg_start();
3321 MSG_PUTS(":!");
3322 msg_outtrans(cmd); /* show what we are doing */
3323
3324 /* let the shell know if we are redirecting output or not */
3325 do_shell(cmd, *p_sp != NUL ? SHELL_DOOUT : 0);
3326
3327#ifdef AMIGA
3328 out_flush();
3329 /* read window status report and redraw before message */
3330 (void)char_avail();
3331#endif
3332
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003333 res = qf_init(wp, fname, (eap->cmdidx != CMD_make
Bram Moolenaara6557602006-02-04 22:43:20 +00003334 && eap->cmdidx != CMD_lmake) ? p_gefm : p_efm,
3335 (eap->cmdidx != CMD_grepadd
Bram Moolenaar7fd73202010-07-25 16:58:46 +02003336 && eap->cmdidx != CMD_lgrepadd),
3337 *eap->cmdlinep);
Bram Moolenaarefa8e802011-05-19 17:42:59 +02003338 if (wp != NULL)
3339 qi = GET_LOC_LIST(wp);
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003340#ifdef FEAT_AUTOCMD
3341 if (au_name != NULL)
Bram Moolenaarefa8e802011-05-19 17:42:59 +02003342 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003343 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
3344 curbuf->b_fname, TRUE, curbuf);
Bram Moolenaarefa8e802011-05-19 17:42:59 +02003345 if (qi->qf_curlist < qi->qf_listcount)
3346 res = qi->qf_lists[qi->qf_curlist].qf_count;
3347 else
3348 res = 0;
3349 }
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003350#endif
3351 if (res > 0 && !eap->forceit)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003352 qf_jump(qi, 0, 0, FALSE); /* display first error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353
Bram Moolenaar7c626922005-02-07 22:01:03 +00003354 mch_remove(fname);
3355 vim_free(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356 vim_free(cmd);
3357}
3358
3359/*
3360 * Return the name for the errorfile, in allocated memory.
3361 * Find a new unique name when 'makeef' contains "##".
3362 * Returns NULL for error.
3363 */
3364 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01003365get_mef_name(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366{
3367 char_u *p;
3368 char_u *name;
3369 static int start = -1;
3370 static int off = 0;
3371#ifdef HAVE_LSTAT
Bram Moolenaar8767f522016-07-01 17:17:39 +02003372 stat_T sb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373#endif
3374
3375 if (*p_mef == NUL)
3376 {
Bram Moolenaare5c421c2015-03-31 13:33:08 +02003377 name = vim_tempname('e', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 if (name == NULL)
3379 EMSG(_(e_notmp));
3380 return name;
3381 }
3382
3383 for (p = p_mef; *p; ++p)
3384 if (p[0] == '#' && p[1] == '#')
3385 break;
3386
3387 if (*p == NUL)
3388 return vim_strsave(p_mef);
3389
3390 /* Keep trying until the name doesn't exist yet. */
3391 for (;;)
3392 {
3393 if (start == -1)
3394 start = mch_get_pid();
3395 else
3396 off += 19;
3397
3398 name = alloc((unsigned)STRLEN(p_mef) + 30);
3399 if (name == NULL)
3400 break;
3401 STRCPY(name, p_mef);
3402 sprintf((char *)name + (p - p_mef), "%d%d", start, off);
3403 STRCAT(name, p + 2);
3404 if (mch_getperm(name) < 0
3405#ifdef HAVE_LSTAT
3406 /* Don't accept a symbolic link, its a security risk. */
3407 && mch_lstat((char *)name, &sb) < 0
3408#endif
3409 )
3410 break;
3411 vim_free(name);
3412 }
3413 return name;
3414}
3415
3416/*
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003417 * Returns the number of valid entries in the current quickfix/location list.
3418 */
3419 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003420qf_get_size(exarg_T *eap)
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003421{
3422 qf_info_T *qi = &ql_info;
3423 qfline_T *qfp;
3424 int i, sz = 0;
3425 int prev_fnum = 0;
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 for (i = 0, qfp = qi->qf_lists[qi->qf_curlist].qf_start;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02003436 i < qi->qf_lists[qi->qf_curlist].qf_count && qfp != NULL;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003437 ++i, qfp = qfp->qf_next)
3438 {
3439 if (qfp->qf_valid)
3440 {
3441 if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo)
3442 sz++; /* Count all valid entries */
3443 else if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum)
3444 {
3445 /* Count the number of files */
3446 sz++;
3447 prev_fnum = qfp->qf_fnum;
3448 }
3449 }
3450 }
3451
3452 return sz;
3453}
3454
3455/*
3456 * Returns the current index of the quickfix/location list.
3457 * Returns 0 if there is an error.
3458 */
3459 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003460qf_get_cur_idx(exarg_T *eap)
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003461{
3462 qf_info_T *qi = &ql_info;
3463
3464 if (eap->cmdidx == CMD_ldo || eap->cmdidx == CMD_lfdo)
3465 {
3466 /* Location list */
3467 qi = GET_LOC_LIST(curwin);
3468 if (qi == NULL)
3469 return 0;
3470 }
3471
3472 return qi->qf_lists[qi->qf_curlist].qf_index;
3473}
3474
3475/*
3476 * Returns the current index in the quickfix/location list (counting only valid
3477 * entries). If no valid entries are in the list, then returns 1.
3478 */
3479 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003480qf_get_cur_valid_idx(exarg_T *eap)
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003481{
3482 qf_info_T *qi = &ql_info;
3483 qf_list_T *qfl;
3484 qfline_T *qfp;
3485 int i, eidx = 0;
3486 int prev_fnum = 0;
3487
3488 if (eap->cmdidx == CMD_ldo || eap->cmdidx == CMD_lfdo)
3489 {
3490 /* Location list */
3491 qi = GET_LOC_LIST(curwin);
3492 if (qi == NULL)
3493 return 1;
3494 }
3495
3496 qfl = &qi->qf_lists[qi->qf_curlist];
3497 qfp = qfl->qf_start;
3498
3499 /* check if the list has valid errors */
3500 if (qfl->qf_count <= 0 || qfl->qf_nonevalid)
3501 return 1;
3502
3503 for (i = 1; i <= qfl->qf_index && qfp!= NULL; i++, qfp = qfp->qf_next)
3504 {
3505 if (qfp->qf_valid)
3506 {
3507 if (eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo)
3508 {
3509 if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum)
3510 {
3511 /* Count the number of files */
3512 eidx++;
3513 prev_fnum = qfp->qf_fnum;
3514 }
3515 }
3516 else
3517 eidx++;
3518 }
3519 }
3520
3521 return eidx ? eidx : 1;
3522}
3523
3524/*
3525 * Get the 'n'th valid error entry in the quickfix or location list.
3526 * Used by :cdo, :ldo, :cfdo and :lfdo commands.
3527 * For :cdo and :ldo returns the 'n'th valid error entry.
3528 * For :cfdo and :lfdo returns the 'n'th valid file entry.
3529 */
3530 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003531qf_get_nth_valid_entry(qf_info_T *qi, int n, int fdo)
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003532{
3533 qf_list_T *qfl = &qi->qf_lists[qi->qf_curlist];
3534 qfline_T *qfp = qfl->qf_start;
3535 int i, eidx;
3536 int prev_fnum = 0;
3537
3538 /* check if the list has valid errors */
3539 if (qfl->qf_count <= 0 || qfl->qf_nonevalid)
3540 return 1;
3541
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02003542 for (i = 1, eidx = 0; i <= qfl->qf_count && qfp != NULL;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003543 i++, qfp = qfp->qf_next)
3544 {
3545 if (qfp->qf_valid)
3546 {
3547 if (fdo)
3548 {
3549 if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum)
3550 {
3551 /* Count the number of files */
3552 eidx++;
3553 prev_fnum = qfp->qf_fnum;
3554 }
3555 }
3556 else
3557 eidx++;
3558 }
3559
3560 if (eidx == n)
3561 break;
3562 }
3563
3564 if (i <= qfl->qf_count)
3565 return i;
3566 else
3567 return 1;
3568}
3569
3570/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 * ":cc", ":crewind", ":cfirst" and ":clast".
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003572 * ":ll", ":lrewind", ":lfirst" and ":llast".
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003573 * ":cdo", ":ldo", ":cfdo" and ":lfdo"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 */
3575 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003576ex_cc(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577{
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003578 qf_info_T *qi = &ql_info;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003579 int errornr;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003580
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003581 if (eap->cmdidx == CMD_ll
3582 || eap->cmdidx == CMD_lrewind
3583 || eap->cmdidx == CMD_lfirst
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003584 || eap->cmdidx == CMD_llast
3585 || eap->cmdidx == CMD_ldo
3586 || eap->cmdidx == CMD_lfdo)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003587 {
3588 qi = GET_LOC_LIST(curwin);
3589 if (qi == NULL)
3590 {
3591 EMSG(_(e_loclist));
3592 return;
3593 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003594 }
3595
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003596 if (eap->addr_count > 0)
3597 errornr = (int)eap->line2;
3598 else
3599 {
3600 if (eap->cmdidx == CMD_cc || eap->cmdidx == CMD_ll)
3601 errornr = 0;
3602 else if (eap->cmdidx == CMD_crewind || eap->cmdidx == CMD_lrewind
3603 || eap->cmdidx == CMD_cfirst || eap->cmdidx == CMD_lfirst)
3604 errornr = 1;
3605 else
3606 errornr = 32767;
3607 }
3608
3609 /* For cdo and ldo commands, jump to the nth valid error.
3610 * For cfdo and lfdo commands, jump to the nth valid file entry.
3611 */
3612 if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo ||
3613 eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo)
3614 errornr = qf_get_nth_valid_entry(qi,
3615 eap->addr_count > 0 ? (int)eap->line1 : 1,
3616 eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo);
3617
3618 qf_jump(qi, 0, errornr, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619}
3620
3621/*
3622 * ":cnext", ":cnfile", ":cNext" and ":cprevious".
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003623 * ":lnext", ":lNext", ":lprevious", ":lnfile", ":lNfile" and ":lpfile".
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003624 * Also, used by ":cdo", ":ldo", ":cfdo" and ":lfdo" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 */
3626 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003627ex_cnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628{
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003629 qf_info_T *qi = &ql_info;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003630 int errornr;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003631
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003632 if (eap->cmdidx == CMD_lnext
3633 || eap->cmdidx == CMD_lNext
3634 || eap->cmdidx == CMD_lprevious
3635 || eap->cmdidx == CMD_lnfile
3636 || eap->cmdidx == CMD_lNfile
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003637 || eap->cmdidx == CMD_lpfile
3638 || eap->cmdidx == CMD_ldo
3639 || eap->cmdidx == CMD_lfdo)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003640 {
3641 qi = GET_LOC_LIST(curwin);
3642 if (qi == NULL)
3643 {
3644 EMSG(_(e_loclist));
3645 return;
3646 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003647 }
3648
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003649 if (eap->addr_count > 0 &&
3650 (eap->cmdidx != CMD_cdo && eap->cmdidx != CMD_ldo &&
3651 eap->cmdidx != CMD_cfdo && eap->cmdidx != CMD_lfdo))
3652 errornr = (int)eap->line2;
3653 else
3654 errornr = 1;
3655
3656 qf_jump(qi, (eap->cmdidx == CMD_cnext || eap->cmdidx == CMD_lnext
3657 || eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 ? FORWARD
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003659 : (eap->cmdidx == CMD_cnfile || eap->cmdidx == CMD_lnfile
3660 || eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 ? FORWARD_FILE
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003662 : (eap->cmdidx == CMD_cpfile || eap->cmdidx == CMD_lpfile
3663 || eap->cmdidx == CMD_cNfile || eap->cmdidx == CMD_lNfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 ? BACKWARD_FILE
3665 : BACKWARD,
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003666 errornr, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667}
3668
3669/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003670 * ":cfile"/":cgetfile"/":caddfile" commands.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003671 * ":lfile"/":lgetfile"/":laddfile" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 */
3673 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003674ex_cfile(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003676 win_T *wp = NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003677 qf_info_T *qi = &ql_info;
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003678#ifdef FEAT_AUTOCMD
3679 char_u *au_name = NULL;
3680#endif
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003681
3682 if (eap->cmdidx == CMD_lfile || eap->cmdidx == CMD_lgetfile
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003683 || eap->cmdidx == CMD_laddfile)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003684 wp = curwin;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003685
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003686#ifdef FEAT_AUTOCMD
3687 switch (eap->cmdidx)
3688 {
3689 case CMD_cfile: au_name = (char_u *)"cfile"; break;
3690 case CMD_cgetfile: au_name = (char_u *)"cgetfile"; break;
3691 case CMD_caddfile: au_name = (char_u *)"caddfile"; break;
3692 case CMD_lfile: au_name = (char_u *)"lfile"; break;
3693 case CMD_lgetfile: au_name = (char_u *)"lgetfile"; break;
3694 case CMD_laddfile: au_name = (char_u *)"laddfile"; break;
3695 default: break;
3696 }
3697 if (au_name != NULL)
3698 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name, NULL, FALSE, curbuf);
3699#endif
Bram Moolenaar9028b102010-07-11 16:58:51 +02003700#ifdef FEAT_BROWSE
3701 if (cmdmod.browse)
3702 {
3703 char_u *browse_file = do_browse(0, (char_u *)_("Error file"), eap->arg,
3704 NULL, NULL, BROWSE_FILTER_ALL_FILES, NULL);
3705 if (browse_file == NULL)
3706 return;
3707 set_string_option_direct((char_u *)"ef", -1, browse_file, OPT_FREE, 0);
3708 vim_free(browse_file);
3709 }
3710 else
3711#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 if (*eap->arg != NUL)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003713 set_string_option_direct((char_u *)"ef", -1, eap->arg, OPT_FREE, 0);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003714
3715 /*
3716 * This function is used by the :cfile, :cgetfile and :caddfile
3717 * commands.
3718 * :cfile always creates a new quickfix list and jumps to the
3719 * first error.
3720 * :cgetfile creates a new quickfix list but doesn't jump to the
3721 * first error.
3722 * :caddfile adds to an existing quickfix list. If there is no
3723 * quickfix list then a new list is created.
3724 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003725 if (qf_init(wp, p_ef, p_efm, (eap->cmdidx != CMD_caddfile
Bram Moolenaar7fd73202010-07-25 16:58:46 +02003726 && eap->cmdidx != CMD_laddfile),
3727 *eap->cmdlinep) > 0
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003728 && (eap->cmdidx == CMD_cfile
3729 || eap->cmdidx == CMD_lfile))
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003730 {
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003731#ifdef FEAT_AUTOCMD
3732 if (au_name != NULL)
3733 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, NULL, FALSE, curbuf);
3734#endif
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003735 if (wp != NULL)
3736 qi = GET_LOC_LIST(wp);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003737 qf_jump(qi, 0, 0, eap->forceit); /* display first error */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003738 }
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003739
3740 else
3741 {
3742#ifdef FEAT_AUTOCMD
3743 if (au_name != NULL)
3744 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, NULL, FALSE, curbuf);
3745#endif
3746 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747}
3748
3749/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003750 * ":vimgrep {pattern} file(s)"
Bram Moolenaara6557602006-02-04 22:43:20 +00003751 * ":vimgrepadd {pattern} file(s)"
3752 * ":lvimgrep {pattern} file(s)"
3753 * ":lvimgrepadd {pattern} file(s)"
Bram Moolenaar86b68352004-12-27 21:59:20 +00003754 */
3755 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003756ex_vimgrep(exarg_T *eap)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003757{
Bram Moolenaar81695252004-12-29 20:58:21 +00003758 regmmatch_T regmatch;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003759 int fcount;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003760 char_u **fnames;
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003761 char_u *fname;
Bram Moolenaar5584df62016-03-18 21:00:51 +01003762 char_u *title;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003763 char_u *s;
3764 char_u *p;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003765 int fi;
Bram Moolenaara6557602006-02-04 22:43:20 +00003766 qf_info_T *qi = &ql_info;
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003767#ifdef FEAT_AUTOCMD
3768 qfline_T *cur_qf_start;
3769#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00003770 long lnum;
Bram Moolenaar81695252004-12-29 20:58:21 +00003771 buf_T *buf;
3772 int duplicate_name = FALSE;
3773 int using_dummy;
Bram Moolenaar1042fa32007-09-16 11:27:42 +00003774 int redraw_for_dummy = FALSE;
Bram Moolenaar81695252004-12-29 20:58:21 +00003775 int found_match;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003776 buf_T *first_match_buf = NULL;
3777 time_t seconds = 0;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003778 int save_mls;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003779#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
3780 char_u *save_ei = NULL;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003781#endif
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003782 aco_save_T aco;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003783 int flags = 0;
3784 colnr_T col;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003785 long tomatch;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003786 char_u *dirname_start = NULL;
3787 char_u *dirname_now = NULL;
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003788 char_u *target_dir = NULL;
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003789#ifdef FEAT_AUTOCMD
3790 char_u *au_name = NULL;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003791
3792 switch (eap->cmdidx)
3793 {
Bram Moolenaard88e02d2011-04-28 17:27:09 +02003794 case CMD_vimgrep: au_name = (char_u *)"vimgrep"; break;
3795 case CMD_lvimgrep: au_name = (char_u *)"lvimgrep"; break;
3796 case CMD_vimgrepadd: au_name = (char_u *)"vimgrepadd"; break;
Bram Moolenaara6557602006-02-04 22:43:20 +00003797 case CMD_lvimgrepadd: au_name = (char_u *)"lvimgrepadd"; break;
Bram Moolenaard88e02d2011-04-28 17:27:09 +02003798 case CMD_grep: au_name = (char_u *)"grep"; break;
3799 case CMD_lgrep: au_name = (char_u *)"lgrep"; break;
3800 case CMD_grepadd: au_name = (char_u *)"grepadd"; break;
3801 case CMD_lgrepadd: au_name = (char_u *)"lgrepadd"; break;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003802 default: break;
3803 }
3804 if (au_name != NULL)
3805 {
3806 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name,
3807 curbuf->b_fname, TRUE, curbuf);
3808 if (did_throw || force_abort)
3809 return;
3810 }
3811#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00003812
Bram Moolenaar754b5602006-02-09 23:53:20 +00003813 if (eap->cmdidx == CMD_lgrep
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003814 || eap->cmdidx == CMD_lvimgrep
3815 || eap->cmdidx == CMD_lgrepadd
3816 || eap->cmdidx == CMD_lvimgrepadd)
Bram Moolenaara6557602006-02-04 22:43:20 +00003817 {
3818 qi = ll_get_or_alloc_list(curwin);
3819 if (qi == NULL)
3820 return;
Bram Moolenaara6557602006-02-04 22:43:20 +00003821 }
3822
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003823 if (eap->addr_count > 0)
3824 tomatch = eap->line2;
3825 else
3826 tomatch = MAXLNUM;
3827
Bram Moolenaar81695252004-12-29 20:58:21 +00003828 /* Get the search pattern: either white-separated or enclosed in // */
Bram Moolenaar86b68352004-12-27 21:59:20 +00003829 regmatch.regprog = NULL;
Bram Moolenaar5584df62016-03-18 21:00:51 +01003830 title = vim_strsave(*eap->cmdlinep);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003831 p = skip_vimgrep_pat(eap->arg, &s, &flags);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003832 if (p == NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003833 {
Bram Moolenaar2389c3c2005-05-22 22:07:59 +00003834 EMSG(_(e_invalpat));
Bram Moolenaar748bf032005-02-02 23:04:36 +00003835 goto theend;
Bram Moolenaar81695252004-12-29 20:58:21 +00003836 }
Bram Moolenaar60abe752013-03-07 16:32:54 +01003837
3838 if (s != NULL && *s == NUL)
3839 {
3840 /* Pattern is empty, use last search pattern. */
3841 if (last_search_pat() == NULL)
3842 {
3843 EMSG(_(e_noprevre));
3844 goto theend;
3845 }
3846 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC);
3847 }
3848 else
3849 regmatch.regprog = vim_regcomp(s, RE_MAGIC);
3850
Bram Moolenaar86b68352004-12-27 21:59:20 +00003851 if (regmatch.regprog == NULL)
3852 goto theend;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003853 regmatch.rmm_ic = p_ic;
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003854 regmatch.rmm_maxcol = 0;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003855
3856 p = skipwhite(p);
3857 if (*p == NUL)
3858 {
3859 EMSG(_("E683: File name missing or invalid pattern"));
3860 goto theend;
3861 }
3862
Bram Moolenaar754b5602006-02-09 23:53:20 +00003863 if ((eap->cmdidx != CMD_grepadd && eap->cmdidx != CMD_lgrepadd &&
Bram Moolenaara6557602006-02-04 22:43:20 +00003864 eap->cmdidx != CMD_vimgrepadd && eap->cmdidx != CMD_lvimgrepadd)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003865 || qi->qf_curlist == qi->qf_listcount)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003866 /* make place for a new list */
Bram Moolenaar5584df62016-03-18 21:00:51 +01003867 qf_new_list(qi, title != NULL ? title : *eap->cmdlinep);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003868
3869 /* parse the list of arguments */
Bram Moolenaar8f5c6f02012-06-29 12:57:06 +02003870 if (get_arglist_exp(p, &fcount, &fnames, TRUE) == FAIL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003871 goto theend;
3872 if (fcount == 0)
3873 {
3874 EMSG(_(e_nomatch));
3875 goto theend;
3876 }
3877
Bram Moolenaarb86a3432016-01-10 16:00:53 +01003878 dirname_start = alloc_id(MAXPATHL, aid_qf_dirname_start);
3879 dirname_now = alloc_id(MAXPATHL, aid_qf_dirname_now);
Bram Moolenaard9462e32011-04-11 21:35:11 +02003880 if (dirname_start == NULL || dirname_now == NULL)
Bram Moolenaar61ff4dd2016-01-18 20:30:17 +01003881 {
3882 FreeWild(fcount, fnames);
Bram Moolenaard9462e32011-04-11 21:35:11 +02003883 goto theend;
Bram Moolenaar61ff4dd2016-01-18 20:30:17 +01003884 }
Bram Moolenaard9462e32011-04-11 21:35:11 +02003885
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003886 /* Remember the current directory, because a BufRead autocommand that does
3887 * ":lcd %:p:h" changes the meaning of short path names. */
3888 mch_dirname(dirname_start, MAXPATHL);
3889
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003890#ifdef FEAT_AUTOCMD
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003891 /* Remember the value of qf_start, so that we can check for autocommands
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003892 * changing the current quickfix list. */
3893 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start;
3894#endif
3895
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003896 seconds = (time_t)0;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003897 for (fi = 0; fi < fcount && !got_int && tomatch > 0; ++fi)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003898 {
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003899 fname = shorten_fname1(fnames[fi]);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003900 if (time(NULL) > seconds)
3901 {
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003902 /* Display the file name every second or so, show the user we are
3903 * working on it. */
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003904 seconds = time(NULL);
3905 msg_start();
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003906 p = msg_strtrunc(fname, TRUE);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003907 if (p == NULL)
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003908 msg_outtrans(fname);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003909 else
3910 {
3911 msg_outtrans(p);
3912 vim_free(p);
3913 }
3914 msg_clr_eos();
3915 msg_didout = FALSE; /* overwrite this message */
3916 msg_nowait = TRUE; /* don't wait for this message */
3917 msg_col = 0;
3918 out_flush();
3919 }
3920
Bram Moolenaar81695252004-12-29 20:58:21 +00003921 buf = buflist_findname_exp(fnames[fi]);
3922 if (buf == NULL || buf->b_ml.ml_mfp == NULL)
3923 {
3924 /* Remember that a buffer with this name already exists. */
3925 duplicate_name = (buf != NULL);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003926 using_dummy = TRUE;
Bram Moolenaar1042fa32007-09-16 11:27:42 +00003927 redraw_for_dummy = TRUE;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003928
3929#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
3930 /* Don't do Filetype autocommands to avoid loading syntax and
3931 * indent scripts, a great speed improvement. */
3932 save_ei = au_event_disable(",Filetype");
3933#endif
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003934 /* Don't use modelines here, it's useless. */
3935 save_mls = p_mls;
3936 p_mls = 0;
Bram Moolenaar81695252004-12-29 20:58:21 +00003937
3938 /* Load file into a buffer, so that 'fileencoding' is detected,
3939 * autocommands applied, etc. */
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003940 buf = load_dummy_buffer(fname, dirname_start, dirname_now);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003941
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003942 p_mls = save_mls;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003943#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
3944 au_event_restore(save_ei);
3945#endif
Bram Moolenaar81695252004-12-29 20:58:21 +00003946 }
3947 else
3948 /* Use existing, loaded buffer. */
3949 using_dummy = FALSE;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003950
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003951#ifdef FEAT_AUTOCMD
3952 if (cur_qf_start != qi->qf_lists[qi->qf_curlist].qf_start)
3953 {
3954 int idx;
3955
3956 /* Autocommands changed the quickfix list. Find the one we were
3957 * using and restore it. */
3958 for (idx = 0; idx < LISTCOUNT; ++idx)
3959 if (cur_qf_start == qi->qf_lists[idx].qf_start)
3960 {
3961 qi->qf_curlist = idx;
3962 break;
3963 }
3964 if (idx == LISTCOUNT)
3965 {
3966 /* List cannot be found, create a new one. */
3967 qf_new_list(qi, *eap->cmdlinep);
3968 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start;
3969 }
3970 }
3971#endif
3972
Bram Moolenaar81695252004-12-29 20:58:21 +00003973 if (buf == NULL)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003974 {
3975 if (!got_int)
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003976 smsg((char_u *)_("Cannot open file \"%s\""), fname);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003977 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00003978 else
3979 {
Bram Moolenaara3227e22006-03-08 21:32:40 +00003980 /* Try for a match in all lines of the buffer.
3981 * For ":1vimgrep" look for first match only. */
Bram Moolenaar81695252004-12-29 20:58:21 +00003982 found_match = FALSE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003983 for (lnum = 1; lnum <= buf->b_ml.ml_line_count && tomatch > 0;
3984 ++lnum)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003985 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00003986 col = 0;
3987 while (vim_regexec_multi(&regmatch, curwin, buf, lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003988 col, NULL) > 0)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003989 {
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003990 ;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02003991 if (qf_add_entry(qi,
Bram Moolenaar86b68352004-12-27 21:59:20 +00003992 NULL, /* dir */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003993 fname,
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00003994 0,
Bram Moolenaar81695252004-12-29 20:58:21 +00003995 ml_get_buf(buf,
3996 regmatch.startpos[0].lnum + lnum, FALSE),
3997 regmatch.startpos[0].lnum + lnum,
3998 regmatch.startpos[0].col + 1,
Bram Moolenaar05159a02005-02-26 23:04:13 +00003999 FALSE, /* vis_col */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004000 NULL, /* search pattern */
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004001 0, /* nr */
4002 0, /* type */
4003 TRUE /* valid */
Bram Moolenaar86b68352004-12-27 21:59:20 +00004004 ) == FAIL)
4005 {
4006 got_int = TRUE;
4007 break;
4008 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004009 found_match = TRUE;
4010 if (--tomatch == 0)
4011 break;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004012 if ((flags & VGR_GLOBAL) == 0
4013 || regmatch.endpos[0].lnum > 0)
4014 break;
4015 col = regmatch.endpos[0].col
4016 + (col == regmatch.endpos[0].col);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004017 if (col > (colnr_T)STRLEN(ml_get_buf(buf, lnum, FALSE)))
Bram Moolenaar05159a02005-02-26 23:04:13 +00004018 break;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004019 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004020 line_breakcheck();
Bram Moolenaar81695252004-12-29 20:58:21 +00004021 if (got_int)
4022 break;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004023 }
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01004024#ifdef FEAT_AUTOCMD
4025 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start;
4026#endif
Bram Moolenaar81695252004-12-29 20:58:21 +00004027
4028 if (using_dummy)
4029 {
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004030 if (found_match && first_match_buf == NULL)
4031 first_match_buf = buf;
Bram Moolenaar81695252004-12-29 20:58:21 +00004032 if (duplicate_name)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004033 {
Bram Moolenaar81695252004-12-29 20:58:21 +00004034 /* Never keep a dummy buffer if there is another buffer
4035 * with the same name. */
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004036 wipe_dummy_buffer(buf, dirname_start);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004037 buf = NULL;
4038 }
Bram Moolenaara3227e22006-03-08 21:32:40 +00004039 else if (!cmdmod.hide
4040 || buf->b_p_bh[0] == 'u' /* "unload" */
4041 || buf->b_p_bh[0] == 'w' /* "wipe" */
4042 || buf->b_p_bh[0] == 'd') /* "delete" */
Bram Moolenaar81695252004-12-29 20:58:21 +00004043 {
Bram Moolenaara3227e22006-03-08 21:32:40 +00004044 /* When no match was found we don't need to remember the
4045 * buffer, wipe it out. If there was a match and it
4046 * wasn't the first one or we won't jump there: only
4047 * unload the buffer.
4048 * Ignore 'hidden' here, because it may lead to having too
4049 * many swap files. */
Bram Moolenaar81695252004-12-29 20:58:21 +00004050 if (!found_match)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004051 {
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004052 wipe_dummy_buffer(buf, dirname_start);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004053 buf = NULL;
4054 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004055 else if (buf != first_match_buf || (flags & VGR_NOJUMP))
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004056 {
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004057 unload_dummy_buffer(buf, dirname_start);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004058 buf = NULL;
4059 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004060 }
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004061
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004062 if (buf != NULL)
4063 {
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004064 /* If the buffer is still loaded we need to use the
4065 * directory we jumped to below. */
4066 if (buf == first_match_buf
4067 && target_dir == NULL
4068 && STRCMP(dirname_start, dirname_now) != 0)
4069 target_dir = vim_strsave(dirname_now);
4070
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004071 /* The buffer is still loaded, the Filetype autocommands
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004072 * need to be done now, in that buffer. And the modelines
Bram Moolenaara3227e22006-03-08 21:32:40 +00004073 * need to be done (again). But not the window-local
4074 * options! */
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004075 aucmd_prepbuf(&aco, buf);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004076#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004077 apply_autocmds(EVENT_FILETYPE, buf->b_p_ft,
4078 buf->b_fname, TRUE, buf);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00004079#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00004080 do_modelines(OPT_NOWIN);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004081 aucmd_restbuf(&aco);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004082 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004083 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004084 }
4085 }
4086
4087 FreeWild(fcount, fnames);
4088
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004089 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
4090 qi->qf_lists[qi->qf_curlist].qf_ptr = qi->qf_lists[qi->qf_curlist].qf_start;
4091 qi->qf_lists[qi->qf_curlist].qf_index = 1;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004092
4093#ifdef FEAT_WINDOWS
Bram Moolenaar864293a2016-06-02 13:40:04 +02004094 qf_update_buffer(qi, NULL);
Bram Moolenaar86b68352004-12-27 21:59:20 +00004095#endif
4096
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00004097#ifdef FEAT_AUTOCMD
4098 if (au_name != NULL)
4099 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
4100 curbuf->b_fname, TRUE, curbuf);
4101#endif
4102
Bram Moolenaar86b68352004-12-27 21:59:20 +00004103 /* Jump to first match. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004104 if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004105 {
4106 if ((flags & VGR_NOJUMP) == 0)
Bram Moolenaar1042fa32007-09-16 11:27:42 +00004107 {
4108 buf = curbuf;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004109 qf_jump(qi, 0, 0, eap->forceit);
Bram Moolenaar1042fa32007-09-16 11:27:42 +00004110 if (buf != curbuf)
4111 /* If we jumped to another buffer redrawing will already be
4112 * taken care of. */
4113 redraw_for_dummy = FALSE;
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004114
4115 /* Jump to the directory used after loading the buffer. */
4116 if (curbuf == first_match_buf && target_dir != NULL)
4117 {
4118 exarg_T ea;
4119
4120 ea.arg = target_dir;
4121 ea.cmdidx = CMD_lcd;
4122 ex_cd(&ea);
4123 }
Bram Moolenaar1042fa32007-09-16 11:27:42 +00004124 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004125 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004126 else
4127 EMSG2(_(e_nomatch2), s);
Bram Moolenaar86b68352004-12-27 21:59:20 +00004128
Bram Moolenaar1042fa32007-09-16 11:27:42 +00004129 /* If we loaded a dummy buffer into the current window, the autocommands
4130 * may have messed up things, need to redraw and recompute folds. */
4131 if (redraw_for_dummy)
4132 {
4133#ifdef FEAT_FOLDING
4134 foldUpdateAll(curwin);
4135#else
4136 redraw_later(NOT_VALID);
4137#endif
4138 }
4139
Bram Moolenaar86b68352004-12-27 21:59:20 +00004140theend:
Bram Moolenaar5584df62016-03-18 21:00:51 +01004141 vim_free(title);
Bram Moolenaard9462e32011-04-11 21:35:11 +02004142 vim_free(dirname_now);
4143 vim_free(dirname_start);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00004144 vim_free(target_dir);
Bram Moolenaar473de612013-06-08 18:19:48 +02004145 vim_regfree(regmatch.regprog);
Bram Moolenaar86b68352004-12-27 21:59:20 +00004146}
4147
4148/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00004149 * Skip over the pattern argument of ":vimgrep /pat/[g][j]".
Bram Moolenaar748bf032005-02-02 23:04:36 +00004150 * Put the start of the pattern in "*s", unless "s" is NULL.
Bram Moolenaar05159a02005-02-26 23:04:13 +00004151 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP.
4152 * If "s" is not NULL terminate the pattern with a NUL.
4153 * Return a pointer to the char just past the pattern plus flags.
Bram Moolenaar748bf032005-02-02 23:04:36 +00004154 */
4155 char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01004156skip_vimgrep_pat(char_u *p, char_u **s, int *flags)
Bram Moolenaar748bf032005-02-02 23:04:36 +00004157{
4158 int c;
4159
4160 if (vim_isIDc(*p))
4161 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004162 /* ":vimgrep pattern fname" */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004163 if (s != NULL)
4164 *s = p;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004165 p = skiptowhite(p);
4166 if (s != NULL && *p != NUL)
4167 *p++ = NUL;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004168 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004169 else
4170 {
4171 /* ":vimgrep /pattern/[g][j] fname" */
4172 if (s != NULL)
4173 *s = p + 1;
4174 c = *p;
4175 p = skip_regexp(p + 1, c, TRUE, NULL);
4176 if (*p != c)
4177 return NULL;
4178
4179 /* Truncate the pattern. */
4180 if (s != NULL)
4181 *p = NUL;
4182 ++p;
4183
4184 /* Find the flags */
4185 while (*p == 'g' || *p == 'j')
4186 {
4187 if (flags != NULL)
4188 {
4189 if (*p == 'g')
4190 *flags |= VGR_GLOBAL;
4191 else
4192 *flags |= VGR_NOJUMP;
4193 }
4194 ++p;
4195 }
4196 }
Bram Moolenaar748bf032005-02-02 23:04:36 +00004197 return p;
4198}
4199
4200/*
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004201 * Restore current working directory to "dirname_start" if they differ, taking
4202 * into account whether it is set locally or globally.
4203 */
4204 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01004205restore_start_dir(char_u *dirname_start)
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004206{
4207 char_u *dirname_now = alloc(MAXPATHL);
4208
4209 if (NULL != dirname_now)
4210 {
4211 mch_dirname(dirname_now, MAXPATHL);
4212 if (STRCMP(dirname_start, dirname_now) != 0)
4213 {
4214 /* If the directory has changed, change it back by building up an
4215 * appropriate ex command and executing it. */
4216 exarg_T ea;
4217
4218 ea.arg = dirname_start;
4219 ea.cmdidx = (curwin->w_localdir == NULL) ? CMD_cd : CMD_lcd;
4220 ex_cd(&ea);
4221 }
Bram Moolenaarf1354352012-11-28 22:12:44 +01004222 vim_free(dirname_now);
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004223 }
4224}
4225
4226/*
4227 * Load file "fname" into a dummy buffer and return the buffer pointer,
4228 * placing the directory resulting from the buffer load into the
4229 * "resulting_dir" pointer. "resulting_dir" must be allocated by the caller
4230 * prior to calling this function. Restores directory to "dirname_start" prior
4231 * to returning, if autocmds or the 'autochdir' option have changed it.
4232 *
4233 * If creating the dummy buffer does not fail, must call unload_dummy_buffer()
4234 * or wipe_dummy_buffer() later!
4235 *
Bram Moolenaar81695252004-12-29 20:58:21 +00004236 * Returns NULL if it fails.
Bram Moolenaar81695252004-12-29 20:58:21 +00004237 */
4238 static buf_T *
Bram Moolenaar05540972016-01-30 20:31:25 +01004239load_dummy_buffer(
4240 char_u *fname,
4241 char_u *dirname_start, /* in: old directory */
4242 char_u *resulting_dir) /* out: new directory */
Bram Moolenaar81695252004-12-29 20:58:21 +00004243{
4244 buf_T *newbuf;
Bram Moolenaar0785ccf2010-11-24 16:32:05 +01004245 buf_T *newbuf_to_wipe = NULL;
Bram Moolenaar81695252004-12-29 20:58:21 +00004246 int failed = TRUE;
Bram Moolenaar81695252004-12-29 20:58:21 +00004247 aco_save_T aco;
Bram Moolenaar81695252004-12-29 20:58:21 +00004248
4249 /* Allocate a buffer without putting it in the buffer list. */
4250 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
4251 if (newbuf == NULL)
4252 return NULL;
4253
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004254 /* Init the options. */
4255 buf_copy_options(newbuf, BCO_ENTER | BCO_NOHELP);
4256
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004257 /* need to open the memfile before putting the buffer in a window */
4258 if (ml_open(newbuf) == OK)
Bram Moolenaar81695252004-12-29 20:58:21 +00004259 {
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004260 /* set curwin/curbuf to buf and save a few things */
4261 aucmd_prepbuf(&aco, newbuf);
4262
4263 /* Need to set the filename for autocommands. */
4264 (void)setfname(curbuf, fname, NULL, FALSE);
4265
Bram Moolenaar81695252004-12-29 20:58:21 +00004266 /* Create swap file now to avoid the ATTENTION message. */
4267 check_need_swap(TRUE);
4268
4269 /* Remove the "dummy" flag, otherwise autocommands may not
4270 * work. */
4271 curbuf->b_flags &= ~BF_DUMMY;
4272
4273 if (readfile(fname, NULL,
4274 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
4275 NULL, READ_NEW | READ_DUMMY) == OK
Bram Moolenaard68071d2006-05-02 22:08:30 +00004276 && !got_int
Bram Moolenaar81695252004-12-29 20:58:21 +00004277 && !(curbuf->b_flags & BF_NEW))
4278 {
4279 failed = FALSE;
4280 if (curbuf != newbuf)
4281 {
Bram Moolenaar0785ccf2010-11-24 16:32:05 +01004282 /* Bloody autocommands changed the buffer! Can happen when
4283 * using netrw and editing a remote file. Use the current
4284 * buffer instead, delete the dummy one after restoring the
4285 * window stuff. */
4286 newbuf_to_wipe = newbuf;
Bram Moolenaar81695252004-12-29 20:58:21 +00004287 newbuf = curbuf;
4288 }
4289 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004290
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004291 /* restore curwin/curbuf and a few other things */
4292 aucmd_restbuf(&aco);
Bram Moolenaar0785ccf2010-11-24 16:32:05 +01004293 if (newbuf_to_wipe != NULL && buf_valid(newbuf_to_wipe))
4294 wipe_buffer(newbuf_to_wipe, FALSE);
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004295 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004296
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004297 /*
4298 * When autocommands/'autochdir' option changed directory: go back.
4299 * Let the caller know what the resulting dir was first, in case it is
4300 * important.
4301 */
4302 mch_dirname(resulting_dir, MAXPATHL);
4303 restore_start_dir(dirname_start);
4304
Bram Moolenaar81695252004-12-29 20:58:21 +00004305 if (!buf_valid(newbuf))
4306 return NULL;
4307 if (failed)
4308 {
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004309 wipe_dummy_buffer(newbuf, dirname_start);
Bram Moolenaar81695252004-12-29 20:58:21 +00004310 return NULL;
4311 }
4312 return newbuf;
4313}
4314
4315/*
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004316 * Wipe out the dummy buffer that load_dummy_buffer() created. Restores
4317 * directory to "dirname_start" prior to returning, if autocmds or the
4318 * 'autochdir' option have changed it.
Bram Moolenaar81695252004-12-29 20:58:21 +00004319 */
4320 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01004321wipe_dummy_buffer(buf_T *buf, char_u *dirname_start)
Bram Moolenaar81695252004-12-29 20:58:21 +00004322{
4323 if (curbuf != buf) /* safety check */
Bram Moolenaard68071d2006-05-02 22:08:30 +00004324 {
4325#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4326 cleanup_T cs;
4327
4328 /* Reset the error/interrupt/exception state here so that aborting()
4329 * returns FALSE when wiping out the buffer. Otherwise it doesn't
4330 * work when got_int is set. */
4331 enter_cleanup(&cs);
4332#endif
4333
Bram Moolenaar81695252004-12-29 20:58:21 +00004334 wipe_buffer(buf, FALSE);
Bram Moolenaard68071d2006-05-02 22:08:30 +00004335
4336#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4337 /* Restore the error/interrupt/exception state if not discarded by a
4338 * new aborting error, interrupt, or uncaught exception. */
4339 leave_cleanup(&cs);
4340#endif
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004341 /* When autocommands/'autochdir' option changed directory: go back. */
4342 restore_start_dir(dirname_start);
Bram Moolenaard68071d2006-05-02 22:08:30 +00004343 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004344}
4345
4346/*
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004347 * Unload the dummy buffer that load_dummy_buffer() created. Restores
4348 * directory to "dirname_start" prior to returning, if autocmds or the
4349 * 'autochdir' option have changed it.
Bram Moolenaar81695252004-12-29 20:58:21 +00004350 */
4351 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01004352unload_dummy_buffer(buf_T *buf, char_u *dirname_start)
Bram Moolenaar81695252004-12-29 20:58:21 +00004353{
4354 if (curbuf != buf) /* safety check */
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004355 {
Bram Moolenaar42ec6562012-02-22 14:58:37 +01004356 close_buffer(NULL, buf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7f51a822012-04-25 18:57:21 +02004357
4358 /* When autocommands/'autochdir' option changed directory: go back. */
4359 restore_start_dir(dirname_start);
4360 }
Bram Moolenaar81695252004-12-29 20:58:21 +00004361}
4362
Bram Moolenaar05159a02005-02-26 23:04:13 +00004363#if defined(FEAT_EVAL) || defined(PROTO)
4364/*
4365 * Add each quickfix error to list "list" as a dictionary.
4366 */
4367 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004368get_errorlist(win_T *wp, list_T *list)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004369{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004370 qf_info_T *qi = &ql_info;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004371 dict_T *dict;
4372 char_u buf[2];
4373 qfline_T *qfp;
4374 int i;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004375 int bufnum;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004376
Bram Moolenaar17c7c012006-01-26 22:25:15 +00004377 if (wp != NULL)
4378 {
4379 qi = GET_LOC_LIST(wp);
4380 if (qi == NULL)
4381 return FAIL;
4382 }
4383
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004384 if (qi->qf_curlist >= qi->qf_listcount
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00004385 || qi->qf_lists[qi->qf_curlist].qf_count == 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004386 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004387
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004388 qfp = qi->qf_lists[qi->qf_curlist].qf_start;
4389 for (i = 1; !got_int && i <= qi->qf_lists[qi->qf_curlist].qf_count; ++i)
Bram Moolenaar05159a02005-02-26 23:04:13 +00004390 {
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004391 /* Handle entries with a non-existing buffer number. */
4392 bufnum = qfp->qf_fnum;
4393 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL))
4394 bufnum = 0;
4395
Bram Moolenaar05159a02005-02-26 23:04:13 +00004396 if ((dict = dict_alloc()) == NULL)
4397 return FAIL;
4398 if (list_append_dict(list, dict) == FAIL)
4399 return FAIL;
4400
4401 buf[0] = qfp->qf_type;
4402 buf[1] = NUL;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004403 if ( dict_add_nr_str(dict, "bufnr", (long)bufnum, NULL) == FAIL
Bram Moolenaar05159a02005-02-26 23:04:13 +00004404 || dict_add_nr_str(dict, "lnum", (long)qfp->qf_lnum, NULL) == FAIL
4405 || dict_add_nr_str(dict, "col", (long)qfp->qf_col, NULL) == FAIL
4406 || dict_add_nr_str(dict, "vcol", (long)qfp->qf_viscol, NULL) == FAIL
4407 || dict_add_nr_str(dict, "nr", (long)qfp->qf_nr, NULL) == FAIL
Bram Moolenaar53ed1922006-09-05 13:37:47 +00004408 || dict_add_nr_str(dict, "pattern", 0L,
4409 qfp->qf_pattern == NULL ? (char_u *)"" : qfp->qf_pattern) == FAIL
4410 || dict_add_nr_str(dict, "text", 0L,
4411 qfp->qf_text == NULL ? (char_u *)"" : qfp->qf_text) == FAIL
Bram Moolenaar05159a02005-02-26 23:04:13 +00004412 || dict_add_nr_str(dict, "type", 0L, buf) == FAIL
4413 || dict_add_nr_str(dict, "valid", (long)qfp->qf_valid, NULL) == FAIL)
4414 return FAIL;
4415
4416 qfp = qfp->qf_next;
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02004417 if (qfp == NULL)
4418 break;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004419 }
4420 return OK;
4421}
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004422
4423/*
4424 * Populate the quickfix list with the items supplied in the list
Bram Moolenaar864293a2016-06-02 13:40:04 +02004425 * of dictionaries. "title" will be copied to w:quickfix_title.
4426 * "action" is 'a' for add, 'r' for replace. Otherwise create a new list.
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004427 */
4428 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004429set_errorlist(
4430 win_T *wp,
4431 list_T *list,
4432 int action,
4433 char_u *title)
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004434{
4435 listitem_T *li;
4436 dict_T *d;
4437 char_u *filename, *pattern, *text, *type;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004438 int bufnum;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004439 long lnum;
4440 int col, nr;
4441 int vcol;
Bram Moolenaar864293a2016-06-02 13:40:04 +02004442#ifdef FEAT_WINDOWS
4443 qfline_T *old_last = NULL;
4444#endif
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004445 int valid, status;
4446 int retval = OK;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004447 qf_info_T *qi = &ql_info;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004448 int did_bufnr_emsg = FALSE;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004449
Bram Moolenaar17c7c012006-01-26 22:25:15 +00004450 if (wp != NULL)
4451 {
Bram Moolenaar280f1262006-01-30 00:14:18 +00004452 qi = ll_get_or_alloc_list(wp);
Bram Moolenaar17c7c012006-01-26 22:25:15 +00004453 if (qi == NULL)
4454 return FAIL;
4455 }
4456
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004457 if (action == ' ' || qi->qf_curlist == qi->qf_listcount)
Bram Moolenaar35c54e52005-05-20 21:25:31 +00004458 /* make place for a new list */
Bram Moolenaar94116152012-11-28 17:41:59 +01004459 qf_new_list(qi, title);
Bram Moolenaar864293a2016-06-02 13:40:04 +02004460#ifdef FEAT_WINDOWS
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02004461 else if (action == 'a' && qi->qf_lists[qi->qf_curlist].qf_count > 0)
4462 /* Adding to existing list, use last entry. */
4463 old_last = qi->qf_lists[qi->qf_curlist].qf_last;
Bram Moolenaar864293a2016-06-02 13:40:04 +02004464#endif
Bram Moolenaar35c54e52005-05-20 21:25:31 +00004465 else if (action == 'r')
Bram Moolenaarfb604092014-07-23 15:55:00 +02004466 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004467 qf_free(qi, qi->qf_curlist);
Bram Moolenaarfb604092014-07-23 15:55:00 +02004468 qf_store_title(qi, title);
4469 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004470
4471 for (li = list->lv_first; li != NULL; li = li->li_next)
4472 {
4473 if (li->li_tv.v_type != VAR_DICT)
4474 continue; /* Skip non-dict items */
4475
4476 d = li->li_tv.vval.v_dict;
4477 if (d == NULL)
4478 continue;
4479
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004480 filename = get_dict_string(d, (char_u *)"filename", TRUE);
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02004481 bufnum = (int)get_dict_number(d, (char_u *)"bufnr");
4482 lnum = (int)get_dict_number(d, (char_u *)"lnum");
4483 col = (int)get_dict_number(d, (char_u *)"col");
4484 vcol = (int)get_dict_number(d, (char_u *)"vcol");
4485 nr = (int)get_dict_number(d, (char_u *)"nr");
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004486 type = get_dict_string(d, (char_u *)"type", TRUE);
4487 pattern = get_dict_string(d, (char_u *)"pattern", TRUE);
4488 text = get_dict_string(d, (char_u *)"text", TRUE);
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004489 if (text == NULL)
4490 text = vim_strsave((char_u *)"");
4491
4492 valid = TRUE;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004493 if ((filename == NULL && bufnum == 0) || (lnum == 0 && pattern == NULL))
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004494 valid = FALSE;
4495
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004496 /* Mark entries with non-existing buffer number as not valid. Give the
4497 * error message only once. */
4498 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL))
4499 {
4500 if (!did_bufnr_emsg)
4501 {
4502 did_bufnr_emsg = TRUE;
4503 EMSGN(_("E92: Buffer %ld not found"), bufnum);
4504 }
4505 valid = FALSE;
4506 bufnum = 0;
4507 }
4508
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02004509 status = qf_add_entry(qi,
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004510 NULL, /* dir */
4511 filename,
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004512 bufnum,
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004513 text,
4514 lnum,
4515 col,
4516 vcol, /* vis_col */
4517 pattern, /* search pattern */
4518 nr,
4519 type == NULL ? NUL : *type,
4520 valid);
4521
4522 vim_free(filename);
4523 vim_free(pattern);
4524 vim_free(text);
4525 vim_free(type);
4526
4527 if (status == FAIL)
4528 {
4529 retval = FAIL;
4530 break;
4531 }
4532 }
4533
Bram Moolenaarf9ddb942010-05-14 18:10:27 +02004534 if (qi->qf_lists[qi->qf_curlist].qf_index == 0)
Bram Moolenaard236ac02011-05-05 17:14:14 +02004535 /* no valid entry */
Bram Moolenaarf9ddb942010-05-14 18:10:27 +02004536 qi->qf_lists[qi->qf_curlist].qf_nonevalid = TRUE;
4537 else
4538 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
Bram Moolenaarc1808d52016-04-18 20:04:00 +02004539 if (action != 'a') {
4540 qi->qf_lists[qi->qf_curlist].qf_ptr =
4541 qi->qf_lists[qi->qf_curlist].qf_start;
4542 if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
4543 qi->qf_lists[qi->qf_curlist].qf_index = 1;
4544 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004545
4546#ifdef FEAT_WINDOWS
Bram Moolenaarc1808d52016-04-18 20:04:00 +02004547 /* Don't update the cursor in quickfix window when appending entries */
Bram Moolenaar864293a2016-06-02 13:40:04 +02004548 qf_update_buffer(qi, old_last);
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004549#endif
4550
4551 return retval;
4552}
Bram Moolenaar05159a02005-02-26 23:04:13 +00004553#endif
4554
Bram Moolenaar81695252004-12-29 20:58:21 +00004555/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00004556 * ":[range]cbuffer [bufnr]" command.
Bram Moolenaara6557602006-02-04 22:43:20 +00004557 * ":[range]caddbuffer [bufnr]" command.
Bram Moolenaardb552d602006-03-23 22:59:57 +00004558 * ":[range]cgetbuffer [bufnr]" command.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004559 * ":[range]lbuffer [bufnr]" command.
Bram Moolenaara6557602006-02-04 22:43:20 +00004560 * ":[range]laddbuffer [bufnr]" command.
Bram Moolenaardb552d602006-03-23 22:59:57 +00004561 * ":[range]lgetbuffer [bufnr]" command.
Bram Moolenaar86b68352004-12-27 21:59:20 +00004562 */
4563 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004564ex_cbuffer(exarg_T *eap)
Bram Moolenaar86b68352004-12-27 21:59:20 +00004565{
4566 buf_T *buf = NULL;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004567 qf_info_T *qi = &ql_info;
4568
Bram Moolenaardb552d602006-03-23 22:59:57 +00004569 if (eap->cmdidx == CMD_lbuffer || eap->cmdidx == CMD_lgetbuffer
4570 || eap->cmdidx == CMD_laddbuffer)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004571 {
4572 qi = ll_get_or_alloc_list(curwin);
4573 if (qi == NULL)
4574 return;
4575 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004576
4577 if (*eap->arg == NUL)
4578 buf = curbuf;
4579 else if (*skipwhite(skipdigits(eap->arg)) == NUL)
4580 buf = buflist_findnr(atoi((char *)eap->arg));
4581 if (buf == NULL)
4582 EMSG(_(e_invarg));
4583 else if (buf->b_ml.ml_mfp == NULL)
4584 EMSG(_("E681: Buffer is not loaded"));
4585 else
4586 {
4587 if (eap->addr_count == 0)
4588 {
4589 eap->line1 = 1;
4590 eap->line2 = buf->b_ml.ml_line_count;
4591 }
4592 if (eap->line1 < 1 || eap->line1 > buf->b_ml.ml_line_count
4593 || eap->line2 < 1 || eap->line2 > buf->b_ml.ml_line_count)
4594 EMSG(_(e_invrange));
4595 else
Bram Moolenaar754b5602006-02-09 23:53:20 +00004596 {
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004597 char_u *qf_title = *eap->cmdlinep;
4598
4599 if (buf->b_sfname)
4600 {
4601 vim_snprintf((char *)IObuff, IOSIZE, "%s (%s)",
4602 (char *)qf_title, (char *)buf->b_sfname);
4603 qf_title = IObuff;
4604 }
4605
Bram Moolenaardb552d602006-03-23 22:59:57 +00004606 if (qf_init_ext(qi, NULL, buf, NULL, p_efm,
4607 (eap->cmdidx != CMD_caddbuffer
4608 && eap->cmdidx != CMD_laddbuffer),
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004609 eap->line1, eap->line2,
4610 qf_title) > 0
Bram Moolenaardb552d602006-03-23 22:59:57 +00004611 && (eap->cmdidx == CMD_cbuffer
4612 || eap->cmdidx == CMD_lbuffer))
Bram Moolenaar754b5602006-02-09 23:53:20 +00004613 qf_jump(qi, 0, 0, eap->forceit); /* display first error */
4614 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004615 }
4616}
4617
Bram Moolenaar1e015462005-09-25 22:16:38 +00004618#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar86b68352004-12-27 21:59:20 +00004619/*
Bram Moolenaardb552d602006-03-23 22:59:57 +00004620 * ":cexpr {expr}", ":cgetexpr {expr}", ":caddexpr {expr}" command.
4621 * ":lexpr {expr}", ":lgetexpr {expr}", ":laddexpr {expr}" command.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004622 */
4623 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004624ex_cexpr(exarg_T *eap)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004625{
4626 typval_T *tv;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004627 qf_info_T *qi = &ql_info;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004628
Bram Moolenaardb552d602006-03-23 22:59:57 +00004629 if (eap->cmdidx == CMD_lexpr || eap->cmdidx == CMD_lgetexpr
4630 || eap->cmdidx == CMD_laddexpr)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004631 {
4632 qi = ll_get_or_alloc_list(curwin);
4633 if (qi == NULL)
4634 return;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004635 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004636
Bram Moolenaar4770d092006-01-12 23:22:24 +00004637 /* Evaluate the expression. When the result is a string or a list we can
4638 * use it to fill the errorlist. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004639 tv = eval_expr(eap->arg, NULL);
Bram Moolenaar4770d092006-01-12 23:22:24 +00004640 if (tv != NULL)
4641 {
4642 if ((tv->v_type == VAR_STRING && tv->vval.v_string != NULL)
4643 || (tv->v_type == VAR_LIST && tv->vval.v_list != NULL))
4644 {
Bram Moolenaard6357e82016-01-21 21:48:09 +01004645 if (qf_init_ext(qi, NULL, NULL, tv, p_efm,
Bram Moolenaardb552d602006-03-23 22:59:57 +00004646 (eap->cmdidx != CMD_caddexpr
4647 && eap->cmdidx != CMD_laddexpr),
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004648 (linenr_T)0, (linenr_T)0, *eap->cmdlinep) > 0
Bram Moolenaardb552d602006-03-23 22:59:57 +00004649 && (eap->cmdidx == CMD_cexpr
4650 || eap->cmdidx == CMD_lexpr))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004651 qf_jump(qi, 0, 0, eap->forceit); /* display first error */
Bram Moolenaar4770d092006-01-12 23:22:24 +00004652 }
4653 else
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00004654 EMSG(_("E777: String or List expected"));
Bram Moolenaar4770d092006-01-12 23:22:24 +00004655 free_tv(tv);
4656 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004657}
Bram Moolenaar1e015462005-09-25 22:16:38 +00004658#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004659
4660/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 * ":helpgrep {pattern}"
4662 */
4663 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004664ex_helpgrep(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665{
4666 regmatch_T regmatch;
4667 char_u *save_cpo;
4668 char_u *p;
4669 int fcount;
4670 char_u **fnames;
4671 FILE *fd;
4672 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 long lnum;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004674#ifdef FEAT_MULTI_LANG
4675 char_u *lang;
4676#endif
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004677 qf_info_T *qi = &ql_info;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004678 int new_qi = FALSE;
4679 win_T *wp;
Bram Moolenaar73633f82012-01-20 13:39:07 +01004680#ifdef FEAT_AUTOCMD
4681 char_u *au_name = NULL;
4682#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004684#ifdef FEAT_MULTI_LANG
4685 /* Check for a specified language */
4686 lang = check_help_lang(eap->arg);
4687#endif
4688
Bram Moolenaar73633f82012-01-20 13:39:07 +01004689#ifdef FEAT_AUTOCMD
4690 switch (eap->cmdidx)
4691 {
4692 case CMD_helpgrep: au_name = (char_u *)"helpgrep"; break;
4693 case CMD_lhelpgrep: au_name = (char_u *)"lhelpgrep"; break;
4694 default: break;
4695 }
4696 if (au_name != NULL)
4697 {
4698 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name,
4699 curbuf->b_fname, TRUE, curbuf);
4700 if (did_throw || force_abort)
4701 return;
4702 }
4703#endif
4704
4705 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
4706 save_cpo = p_cpo;
4707 p_cpo = empty_option;
4708
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004709 if (eap->cmdidx == CMD_lhelpgrep)
4710 {
4711 /* Find an existing help window */
4712 FOR_ALL_WINDOWS(wp)
4713 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
4714 break;
4715
4716 if (wp == NULL) /* Help window not found */
4717 qi = NULL;
4718 else
4719 qi = wp->w_llist;
4720
4721 if (qi == NULL)
4722 {
4723 /* Allocate a new location list for help text matches */
4724 if ((qi = ll_new_list()) == NULL)
4725 return;
4726 new_qi = TRUE;
4727 }
4728 }
4729
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730 regmatch.regprog = vim_regcomp(eap->arg, RE_MAGIC + RE_STRING);
4731 regmatch.rm_ic = FALSE;
4732 if (regmatch.regprog != NULL)
4733 {
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004734#ifdef FEAT_MBYTE
4735 vimconv_T vc;
4736
4737 /* Help files are in utf-8 or latin1, convert lines when 'encoding'
4738 * differs. */
4739 vc.vc_type = CONV_NONE;
4740 if (!enc_utf8)
4741 convert_setup(&vc, (char_u *)"utf-8", p_enc);
4742#endif
4743
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 /* create a new quickfix list */
Bram Moolenaar94116152012-11-28 17:41:59 +01004745 qf_new_list(qi, *eap->cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746
4747 /* Go through all directories in 'runtimepath' */
4748 p = p_rtp;
4749 while (*p != NUL && !got_int)
4750 {
4751 copy_option_part(&p, NameBuff, MAXPATHL, ",");
4752
4753 /* Find all "*.txt" and "*.??x" files in the "doc" directory. */
4754 add_pathsep(NameBuff);
4755 STRCAT(NameBuff, "doc/*.\\(txt\\|??x\\)");
4756 if (gen_expand_wildcards(1, &NameBuff, &fcount,
4757 &fnames, EW_FILE|EW_SILENT) == OK
4758 && fcount > 0)
4759 {
4760 for (fi = 0; fi < fcount && !got_int; ++fi)
4761 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004762#ifdef FEAT_MULTI_LANG
4763 /* Skip files for a different language. */
4764 if (lang != NULL
4765 && STRNICMP(lang, fnames[fi]
4766 + STRLEN(fnames[fi]) - 3, 2) != 0
4767 && !(STRNICMP(lang, "en", 2) == 0
4768 && STRNICMP("txt", fnames[fi]
4769 + STRLEN(fnames[fi]) - 3, 3) == 0))
4770 continue;
4771#endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004772 fd = mch_fopen((char *)fnames[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 if (fd != NULL)
4774 {
4775 lnum = 1;
4776 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
4777 {
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004778 char_u *line = IObuff;
4779#ifdef FEAT_MBYTE
4780 /* Convert a line if 'encoding' is not utf-8 and
4781 * the line contains a non-ASCII character. */
4782 if (vc.vc_type != CONV_NONE
4783 && has_non_ascii(IObuff)) {
4784 line = string_convert(&vc, IObuff, NULL);
4785 if (line == NULL)
4786 line = IObuff;
4787 }
4788#endif
4789
4790 if (vim_regexec(&regmatch, line, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 {
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004792 int l = (int)STRLEN(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793
4794 /* remove trailing CR, LF, spaces, etc. */
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004795 while (l > 0 && line[l - 1] <= ' ')
4796 line[--l] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797
Bram Moolenaar83e6d7a2016-06-02 22:08:05 +02004798 if (qf_add_entry(qi,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 NULL, /* dir */
4800 fnames[fi],
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004801 0,
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004802 line,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 lnum,
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004804 (int)(regmatch.startp[0] - line)
Bram Moolenaar81695252004-12-29 20:58:21 +00004805 + 1, /* col */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004806 FALSE, /* vis_col */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004807 NULL, /* search pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 0, /* nr */
4809 1, /* type */
4810 TRUE /* valid */
4811 ) == FAIL)
4812 {
4813 got_int = TRUE;
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004814#ifdef FEAT_MBYTE
4815 if (line != IObuff)
4816 vim_free(line);
4817#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 break;
4819 }
4820 }
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004821#ifdef FEAT_MBYTE
4822 if (line != IObuff)
4823 vim_free(line);
4824#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825 ++lnum;
4826 line_breakcheck();
4827 }
4828 fclose(fd);
4829 }
4830 }
4831 FreeWild(fcount, fnames);
4832 }
4833 }
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004834
Bram Moolenaar473de612013-06-08 18:19:48 +02004835 vim_regfree(regmatch.regprog);
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004836#ifdef FEAT_MBYTE
4837 if (vc.vc_type != CONV_NONE)
4838 convert_setup(&vc, NULL, NULL);
4839#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004841 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
4842 qi->qf_lists[qi->qf_curlist].qf_ptr =
4843 qi->qf_lists[qi->qf_curlist].qf_start;
4844 qi->qf_lists[qi->qf_curlist].qf_index = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 }
4846
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +00004847 if (p_cpo == empty_option)
4848 p_cpo = save_cpo;
4849 else
4850 /* Darn, some plugin changed the value. */
4851 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852
4853#ifdef FEAT_WINDOWS
Bram Moolenaar864293a2016-06-02 13:40:04 +02004854 qf_update_buffer(qi, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855#endif
4856
Bram Moolenaar73633f82012-01-20 13:39:07 +01004857#ifdef FEAT_AUTOCMD
4858 if (au_name != NULL)
4859 {
4860 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
4861 curbuf->b_fname, TRUE, curbuf);
4862 if (!new_qi && qi != &ql_info && qf_find_buf(qi) == NULL)
4863 /* autocommands made "qi" invalid */
4864 return;
4865 }
4866#endif
4867
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 /* Jump to first match. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004869 if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004870 qf_jump(qi, 0, 0, FALSE);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004871 else
4872 EMSG2(_(e_nomatch2), eap->arg);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004873
4874 if (eap->cmdidx == CMD_lhelpgrep)
4875 {
4876 /* If the help window is not opened or if it already points to the
Bram Moolenaar754b5602006-02-09 23:53:20 +00004877 * correct location list, then free the new location list. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004878 if (!curwin->w_buffer->b_help || curwin->w_llist == qi)
4879 {
4880 if (new_qi)
4881 ll_free_all(&qi);
4882 }
4883 else if (curwin->w_llist == NULL)
4884 curwin->w_llist = qi;
4885 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886}
4887
4888#endif /* FEAT_QUICKFIX */