blob: f7897850ea1596d9740284253a6511bdb21f2bec [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
24static struct dir_stack_T *dir_stack = NULL;
25
26/*
Bram Moolenaar68b76a62005-03-25 21:53:48 +000027 * For each error the next struct is allocated and linked in a list.
Bram Moolenaar071d4272004-06-13 20:20:40 +000028 */
Bram Moolenaar68b76a62005-03-25 21:53:48 +000029typedef struct qfline_S qfline_T;
30struct qfline_S
Bram Moolenaar071d4272004-06-13 20:20:40 +000031{
Bram Moolenaar68b76a62005-03-25 21:53:48 +000032 qfline_T *qf_next; /* pointer to next error in the list */
33 qfline_T *qf_prev; /* pointer to previous error in the list */
34 linenr_T qf_lnum; /* line number where the error occurred */
35 int qf_fnum; /* file number for the line */
36 int qf_col; /* column where the error occurred */
37 int qf_nr; /* error number */
38 char_u *qf_pattern; /* search pattern for the error */
39 char_u *qf_text; /* description of the error */
40 char_u qf_viscol; /* set to TRUE if qf_col is screen column */
41 char_u qf_cleared; /* set to TRUE if line has been deleted */
42 char_u qf_type; /* type of the error (mostly 'E'); 1 for
Bram Moolenaar071d4272004-06-13 20:20:40 +000043 :helpgrep */
Bram Moolenaar68b76a62005-03-25 21:53:48 +000044 char_u qf_valid; /* valid error message detected */
Bram Moolenaar071d4272004-06-13 20:20:40 +000045};
46
47/*
48 * There is a stack of error lists.
49 */
50#define LISTCOUNT 10
51
Bram Moolenaard12f5c12006-01-25 22:10:52 +000052typedef struct qf_list_S
Bram Moolenaar071d4272004-06-13 20:20:40 +000053{
Bram Moolenaar68b76a62005-03-25 21:53:48 +000054 qfline_T *qf_start; /* pointer to the first error */
55 qfline_T *qf_ptr; /* pointer to the current error */
56 int qf_count; /* number of errors (0 means no error list) */
57 int qf_index; /* current index in the error list */
58 int qf_nonevalid; /* TRUE if not a single valid entry found */
Bram Moolenaar7fd73202010-07-25 16:58:46 +020059 char_u *qf_title; /* title derived from the command that created
60 * the error list */
Bram Moolenaard12f5c12006-01-25 22:10:52 +000061} qf_list_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +000062
Bram Moolenaard12f5c12006-01-25 22:10:52 +000063struct qf_info_S
64{
65 /*
66 * Count of references to this list. Used only for location lists.
67 * When a location list window reference this list, qf_refcount
68 * will be 2. Otherwise, qf_refcount will be 1. When qf_refcount
69 * reaches 0, the list is freed.
70 */
71 int qf_refcount;
72 int qf_listcount; /* current number of lists */
73 int qf_curlist; /* current error list */
74 qf_list_T qf_lists[LISTCOUNT];
75};
76
77static qf_info_T ql_info; /* global quickfix list */
Bram Moolenaar071d4272004-06-13 20:20:40 +000078
Bram Moolenaar68b76a62005-03-25 21:53:48 +000079#define FMT_PATTERNS 10 /* maximum number of % recognized */
Bram Moolenaar071d4272004-06-13 20:20:40 +000080
81/*
82 * Structure used to hold the info of one part of 'errorformat'
83 */
Bram Moolenaar01265852006-03-20 21:50:15 +000084typedef struct efm_S efm_T;
85struct efm_S
Bram Moolenaar071d4272004-06-13 20:20:40 +000086{
87 regprog_T *prog; /* pre-formatted part of 'errorformat' */
Bram Moolenaar01265852006-03-20 21:50:15 +000088 efm_T *next; /* pointer to next (NULL if last) */
Bram Moolenaar071d4272004-06-13 20:20:40 +000089 char_u addr[FMT_PATTERNS]; /* indices of used % patterns */
90 char_u prefix; /* prefix of this format line: */
91 /* 'D' enter directory */
92 /* 'X' leave directory */
93 /* 'A' start of multi-line message */
94 /* 'E' error message */
95 /* 'W' warning message */
96 /* 'I' informational message */
97 /* 'C' continuation line */
98 /* 'Z' end of multi-line message */
99 /* 'G' general, unspecific message */
100 /* 'P' push file (partial) message */
101 /* 'Q' pop/quit file (partial) message */
102 /* 'O' overread (partial) message */
103 char_u flags; /* additional flags given in prefix */
104 /* '-' do not include this line */
Bram Moolenaar4770d092006-01-12 23:22:24 +0000105 /* '+' include whole line in message */
Bram Moolenaar01265852006-03-20 21:50:15 +0000106 int conthere; /* %> used */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107};
108
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200109static int qf_init_ext __ARGS((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));
Bram Moolenaar94116152012-11-28 17:41:59 +0100110static void qf_new_list __ARGS((qf_info_T *qi, char_u *qf_title));
Bram Moolenaard9ff7d52008-03-20 12:23:49 +0000111static void ll_free_all __ARGS((qf_info_T **pqi));
Bram Moolenaar48b66fb2007-02-04 01:58:18 +0000112static int qf_add_entry __ARGS((qf_info_T *qi, qfline_T **prevp, 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 Moolenaard9ff7d52008-03-20 12:23:49 +0000113static qf_info_T *ll_new_list __ARGS((void));
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000114static void qf_msg __ARGS((qf_info_T *qi));
115static void qf_free __ARGS((qf_info_T *qi, int idx));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116static char_u *qf_types __ARGS((int, int));
117static int qf_get_fnum __ARGS((char_u *, char_u *));
118static char_u *qf_push_dir __ARGS((char_u *, struct dir_stack_T **));
119static char_u *qf_pop_dir __ARGS((struct dir_stack_T **));
120static char_u *qf_guess_filepath __ARGS((char_u *));
121static void qf_fmt_text __ARGS((char_u *text, char_u *buf, int bufsize));
122static void qf_clean_dir_stack __ARGS((struct dir_stack_T **));
123#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000124static int qf_win_pos_update __ARGS((qf_info_T *qi, int old_qf_index));
Bram Moolenaar9c102382006-05-03 21:26:49 +0000125static int is_qf_win __ARGS((win_T *win, qf_info_T *qi));
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000126static win_T *qf_find_win __ARGS((qf_info_T *qi));
127static buf_T *qf_find_buf __ARGS((qf_info_T *qi));
128static void qf_update_buffer __ARGS((qf_info_T *qi));
Bram Moolenaarc95e3262011-08-10 18:36:54 +0200129static void qf_set_title __ARGS((qf_info_T *qi));
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000130static void qf_fill_buffer __ARGS((qf_info_T *qi));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131#endif
132static char_u *get_mef_name __ARGS((void));
Bram Moolenaar7f51a822012-04-25 18:57:21 +0200133static void restore_start_dir __ARGS((char_u *dirname_start));
134static buf_T *load_dummy_buffer __ARGS((char_u *fname, char_u *dirname_start, char_u *resulting_dir));
135static void wipe_dummy_buffer __ARGS((buf_T *buf, char_u *dirname_start));
136static void unload_dummy_buffer __ARGS((buf_T *buf, char_u *dirname_start));
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000137static qf_info_T *ll_get_or_alloc_list __ARGS((win_T *));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000139/* Quickfix window check helper macro */
140#define IS_QF_WINDOW(wp) (bt_quickfix(wp->w_buffer) && wp->w_llist_ref == NULL)
141/* Location list window check helper macro */
142#define IS_LL_WINDOW(wp) (bt_quickfix(wp->w_buffer) && wp->w_llist_ref != NULL)
143/*
144 * Return location list for window 'wp'
145 * For location list window, return the referenced location list
146 */
147#define GET_LOC_LIST(wp) (IS_LL_WINDOW(wp) ? wp->w_llist_ref : wp->w_llist)
148
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149/*
Bram Moolenaar86b68352004-12-27 21:59:20 +0000150 * Read the errorfile "efile" into memory, line by line, building the error
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200151 * list. Set the error list's title to qf_title.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152 * Return -1 for error, number of errors for success.
153 */
154 int
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200155qf_init(wp, efile, errorformat, newlist, qf_title)
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000156 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 char_u *efile;
158 char_u *errorformat;
159 int newlist; /* TRUE: start a new error list */
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200160 char_u *qf_title;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161{
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000162 qf_info_T *qi = &ql_info;
163
Bram Moolenaar86b68352004-12-27 21:59:20 +0000164 if (efile == NULL)
165 return FAIL;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000166
167 if (wp != NULL)
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000168 {
169 qi = ll_get_or_alloc_list(wp);
170 if (qi == NULL)
171 return FAIL;
172 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000173
174 return qf_init_ext(qi, efile, curbuf, NULL, errorformat, newlist,
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200175 (linenr_T)0, (linenr_T)0,
176 qf_title);
Bram Moolenaar86b68352004-12-27 21:59:20 +0000177}
178
179/*
180 * Read the errorfile "efile" into memory, line by line, building the error
181 * list.
182 * Alternative: when "efile" is null read errors from buffer "buf".
183 * Always use 'errorformat' from "buf" if there is a local value.
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200184 * Then "lnumfirst" and "lnumlast" specify the range of lines to use.
185 * Set the title of the list to "qf_title".
Bram Moolenaar86b68352004-12-27 21:59:20 +0000186 * Return -1 for error, number of errors for success.
187 */
188 static int
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200189qf_init_ext(qi, efile, buf, tv, errorformat, newlist, lnumfirst, lnumlast,
190 qf_title)
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000191 qf_info_T *qi;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000192 char_u *efile;
193 buf_T *buf;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000194 typval_T *tv;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000195 char_u *errorformat;
196 int newlist; /* TRUE: start a new error list */
197 linenr_T lnumfirst; /* first line number to use */
198 linenr_T lnumlast; /* last line number to use */
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200199 char_u *qf_title;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000200{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 char_u *namebuf;
202 char_u *errmsg;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000203 char_u *pattern;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204 char_u *fmtstr = NULL;
205 int col = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000206 char_u use_viscol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 int type = 0;
208 int valid;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000209 linenr_T buflnum = lnumfirst;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210 long lnum = 0L;
211 int enr = 0;
Bram Moolenaar86b68352004-12-27 21:59:20 +0000212 FILE *fd = NULL;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000213 qfline_T *qfprev = NULL; /* init to make SASC shut up */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 char_u *efmp;
Bram Moolenaar01265852006-03-20 21:50:15 +0000215 efm_T *fmt_first = NULL;
216 efm_T *fmt_last = NULL;
217 efm_T *fmt_ptr;
218 efm_T *fmt_start = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219 char_u *efm;
220 char_u *ptr;
221 char_u *srcptr;
222 int len;
223 int i;
224 int round;
225 int idx = 0;
226 int multiline = FALSE;
227 int multiignore = FALSE;
228 int multiscan = FALSE;
229 int retval = -1; /* default: return error flag */
230 char_u *directory = NULL;
231 char_u *currfile = NULL;
232 char_u *tail = NULL;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000233 char_u *p_str = NULL;
234 listitem_T *p_li = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 struct dir_stack_T *file_stack = NULL;
236 regmatch_T regmatch;
237 static struct fmtpattern
238 {
239 char_u convchar;
240 char *pattern;
241 } fmt_pat[FMT_PATTERNS] =
242 {
Bram Moolenaare344bea2005-09-01 20:46:49 +0000243 {'f', ".\\+"}, /* only used when at end */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244 {'n', "\\d\\+"},
245 {'l', "\\d\\+"},
246 {'c', "\\d\\+"},
247 {'t', "."},
248 {'m', ".\\+"},
249 {'r', ".*"},
Bram Moolenaarf13de072012-06-01 18:34:41 +0200250 {'p', "[- .]*"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000251 {'v', "\\d\\+"},
252 {'s', ".\\+"}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 };
254
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255 namebuf = alloc(CMDBUFFSIZE + 1);
256 errmsg = alloc(CMDBUFFSIZE + 1);
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000257 pattern = alloc(CMDBUFFSIZE + 1);
258 if (namebuf == NULL || errmsg == NULL || pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259 goto qf_init_end;
260
Bram Moolenaar86b68352004-12-27 21:59:20 +0000261 if (efile != NULL && (fd = mch_fopen((char *)efile, "r")) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262 {
263 EMSG2(_(e_openerrf), efile);
264 goto qf_init_end;
265 }
266
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000267 if (newlist || qi->qf_curlist == qi->qf_listcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268 /* make place for a new list */
Bram Moolenaar94116152012-11-28 17:41:59 +0100269 qf_new_list(qi, qf_title);
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000270 else if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 /* Adding to existing list, find last entry. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000272 for (qfprev = qi->qf_lists[qi->qf_curlist].qf_start;
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200273 qfprev->qf_next != qfprev; qfprev = qfprev->qf_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274 ;
275
276/*
277 * Each part of the format string is copied and modified from errorformat to
278 * regex prog. Only a few % characters are allowed.
279 */
280 /* Use the local value of 'errorformat' if it's set. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000281 if (errorformat == p_efm && tv == NULL && *buf->b_p_efm != NUL)
Bram Moolenaar86b68352004-12-27 21:59:20 +0000282 efm = buf->b_p_efm;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 else
284 efm = errorformat;
285 /*
286 * Get some space to modify the format string into.
287 */
288 i = (FMT_PATTERNS * 3) + ((int)STRLEN(efm) << 2);
289 for (round = FMT_PATTERNS; round > 0; )
290 i += (int)STRLEN(fmt_pat[--round].pattern);
291#ifdef COLON_IN_FILENAME
292 i += 12; /* "%f" can become twelve chars longer */
293#else
294 i += 2; /* "%f" can become two chars longer */
295#endif
296 if ((fmtstr = alloc(i)) == NULL)
297 goto error2;
298
Bram Moolenaar01265852006-03-20 21:50:15 +0000299 while (efm[0] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 {
301 /*
302 * Allocate a new eformat structure and put it at the end of the list
303 */
Bram Moolenaar01265852006-03-20 21:50:15 +0000304 fmt_ptr = (efm_T *)alloc_clear((unsigned)sizeof(efm_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 if (fmt_ptr == NULL)
306 goto error2;
307 if (fmt_first == NULL) /* first one */
308 fmt_first = fmt_ptr;
309 else
310 fmt_last->next = fmt_ptr;
311 fmt_last = fmt_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312
313 /*
314 * Isolate one part in the 'errorformat' option
315 */
316 for (len = 0; efm[len] != NUL && efm[len] != ','; ++len)
317 if (efm[len] == '\\' && efm[len + 1] != NUL)
318 ++len;
319
320 /*
321 * Build regexp pattern from current 'errorformat' option
322 */
323 ptr = fmtstr;
324 *ptr++ = '^';
Bram Moolenaar01265852006-03-20 21:50:15 +0000325 round = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326 for (efmp = efm; efmp < efm + len; ++efmp)
327 {
328 if (*efmp == '%')
329 {
330 ++efmp;
331 for (idx = 0; idx < FMT_PATTERNS; ++idx)
332 if (fmt_pat[idx].convchar == *efmp)
333 break;
334 if (idx < FMT_PATTERNS)
335 {
336 if (fmt_ptr->addr[idx])
337 {
338 sprintf((char *)errmsg,
339 _("E372: Too many %%%c in format string"), *efmp);
340 EMSG(errmsg);
341 goto error2;
342 }
343 if ((idx
344 && idx < 6
345 && vim_strchr((char_u *)"DXOPQ",
346 fmt_ptr->prefix) != NULL)
347 || (idx == 6
348 && vim_strchr((char_u *)"OPQ",
349 fmt_ptr->prefix) == NULL))
350 {
351 sprintf((char *)errmsg,
352 _("E373: Unexpected %%%c in format string"), *efmp);
353 EMSG(errmsg);
354 goto error2;
355 }
356 fmt_ptr->addr[idx] = (char_u)++round;
357 *ptr++ = '\\';
358 *ptr++ = '(';
359#ifdef BACKSLASH_IN_FILENAME
360 if (*efmp == 'f')
361 {
362 /* Also match "c:" in the file name, even when
363 * checking for a colon next: "%f:".
364 * "\%(\a:\)\=" */
365 STRCPY(ptr, "\\%(\\a:\\)\\=");
366 ptr += 10;
367 }
368#endif
Bram Moolenaare344bea2005-09-01 20:46:49 +0000369 if (*efmp == 'f' && efmp[1] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 {
Bram Moolenaare344bea2005-09-01 20:46:49 +0000371 if (efmp[1] != '\\' && efmp[1] != '%')
372 {
373 /* A file name may contain spaces, but this isn't
374 * in "\f". For "%f:%l:%m" there may be a ":" in
375 * the file name. Use ".\{-1,}x" instead (x is
376 * the next character), the requirement that :999:
377 * follows should work. */
378 STRCPY(ptr, ".\\{-1,}");
379 ptr += 7;
380 }
381 else
382 {
383 /* File name followed by '\\' or '%': include as
384 * many file name chars as possible. */
385 STRCPY(ptr, "\\f\\+");
386 ptr += 4;
387 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 }
389 else
390 {
391 srcptr = (char_u *)fmt_pat[idx].pattern;
392 while ((*ptr = *srcptr++) != NUL)
393 ++ptr;
394 }
395 *ptr++ = '\\';
396 *ptr++ = ')';
397 }
398 else if (*efmp == '*')
399 {
400 if (*++efmp == '[' || *efmp == '\\')
401 {
402 if ((*ptr++ = *efmp) == '[') /* %*[^a-z0-9] etc. */
403 {
404 if (efmp[1] == '^')
405 *ptr++ = *++efmp;
406 if (efmp < efm + len)
407 {
408 *ptr++ = *++efmp; /* could be ']' */
409 while (efmp < efm + len
410 && (*ptr++ = *++efmp) != ']')
411 /* skip */;
412 if (efmp == efm + len)
413 {
414 EMSG(_("E374: Missing ] in format string"));
415 goto error2;
416 }
417 }
418 }
419 else if (efmp < efm + len) /* %*\D, %*\s etc. */
420 *ptr++ = *++efmp;
421 *ptr++ = '\\';
422 *ptr++ = '+';
423 }
424 else
425 {
426 /* TODO: scanf()-like: %*ud, %*3c, %*f, ... ? */
427 sprintf((char *)errmsg,
428 _("E375: Unsupported %%%c in format string"), *efmp);
429 EMSG(errmsg);
430 goto error2;
431 }
432 }
433 else if (vim_strchr((char_u *)"%\\.^$~[", *efmp) != NULL)
434 *ptr++ = *efmp; /* regexp magic characters */
435 else if (*efmp == '#')
436 *ptr++ = '*';
Bram Moolenaar01265852006-03-20 21:50:15 +0000437 else if (*efmp == '>')
438 fmt_ptr->conthere = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439 else if (efmp == efm + 1) /* analyse prefix */
440 {
441 if (vim_strchr((char_u *)"+-", *efmp) != NULL)
442 fmt_ptr->flags = *efmp++;
443 if (vim_strchr((char_u *)"DXAEWICZGOPQ", *efmp) != NULL)
444 fmt_ptr->prefix = *efmp;
445 else
446 {
447 sprintf((char *)errmsg,
448 _("E376: Invalid %%%c in format string prefix"), *efmp);
449 EMSG(errmsg);
450 goto error2;
451 }
452 }
453 else
454 {
455 sprintf((char *)errmsg,
456 _("E377: Invalid %%%c in format string"), *efmp);
457 EMSG(errmsg);
458 goto error2;
459 }
460 }
461 else /* copy normal character */
462 {
463 if (*efmp == '\\' && efmp + 1 < efm + len)
464 ++efmp;
465 else if (vim_strchr((char_u *)".*^$~[", *efmp) != NULL)
466 *ptr++ = '\\'; /* escape regexp atoms */
467 if (*efmp)
468 *ptr++ = *efmp;
469 }
470 }
471 *ptr++ = '$';
472 *ptr = NUL;
473 if ((fmt_ptr->prog = vim_regcomp(fmtstr, RE_MAGIC + RE_STRING)) == NULL)
474 goto error2;
475 /*
476 * Advance to next part
477 */
478 efm = skip_to_option_part(efm + len); /* skip comma and spaces */
479 }
480 if (fmt_first == NULL) /* nothing found */
481 {
482 EMSG(_("E378: 'errorformat' contains no pattern"));
483 goto error2;
484 }
485
486 /*
487 * got_int is reset here, because it was probably set when killing the
488 * ":make" command, but we still want to read the errorfile then.
489 */
490 got_int = FALSE;
491
492 /* Always ignore case when looking for a matching error. */
493 regmatch.rm_ic = TRUE;
494
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000495 if (tv != NULL)
496 {
497 if (tv->v_type == VAR_STRING)
498 p_str = tv->vval.v_string;
499 else if (tv->v_type == VAR_LIST)
500 p_li = tv->vval.v_list->lv_first;
501 }
502
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 /*
504 * Read the lines in the error file one by one.
505 * Try to recognize one of the error formats in each line.
506 */
Bram Moolenaar86b68352004-12-27 21:59:20 +0000507 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508 {
Bram Moolenaar86b68352004-12-27 21:59:20 +0000509 /* Get the next line. */
510 if (fd == NULL)
511 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000512 if (tv != NULL)
513 {
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000514 if (tv->v_type == VAR_STRING)
515 {
516 /* Get the next line from the supplied string */
517 char_u *p;
518
519 if (!*p_str) /* Reached the end of the string */
520 break;
521
522 p = vim_strchr(p_str, '\n');
523 if (p)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000524 len = (int)(p - p_str + 1);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000525 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000526 len = (int)STRLEN(p_str);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000527
528 if (len > CMDBUFFSIZE - 2)
529 vim_strncpy(IObuff, p_str, CMDBUFFSIZE - 2);
530 else
531 vim_strncpy(IObuff, p_str, len);
532
533 p_str += len;
534 }
535 else if (tv->v_type == VAR_LIST)
536 {
537 /* Get the next line from the supplied list */
538 while (p_li && p_li->li_tv.v_type != VAR_STRING)
539 p_li = p_li->li_next; /* Skip non-string items */
540
541 if (!p_li) /* End of the list */
542 break;
543
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000544 len = (int)STRLEN(p_li->li_tv.vval.v_string);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000545 if (len > CMDBUFFSIZE - 2)
546 len = CMDBUFFSIZE - 2;
547
548 vim_strncpy(IObuff, p_li->li_tv.vval.v_string, len);
549
550 p_li = p_li->li_next; /* next item */
551 }
552 }
553 else
554 {
555 /* Get the next line from the supplied buffer */
556 if (buflnum > lnumlast)
557 break;
558 vim_strncpy(IObuff, ml_get_buf(buf, buflnum++, FALSE),
559 CMDBUFFSIZE - 2);
560 }
Bram Moolenaar86b68352004-12-27 21:59:20 +0000561 }
562 else if (fgets((char *)IObuff, CMDBUFFSIZE - 2, fd) == NULL)
563 break;
564
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 IObuff[CMDBUFFSIZE - 2] = NUL; /* for very long lines */
Bram Moolenaar836082d2011-08-10 13:21:46 +0200566#ifdef FEAT_MBYTE
567 remove_bom(IObuff);
568#endif
569
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 if ((efmp = vim_strrchr(IObuff, '\n')) != NULL)
571 *efmp = NUL;
572#ifdef USE_CRNL
573 if ((efmp = vim_strrchr(IObuff, '\r')) != NULL)
574 *efmp = NUL;
575#endif
576
Bram Moolenaar01265852006-03-20 21:50:15 +0000577 /* If there was no %> item start at the first pattern */
578 if (fmt_start == NULL)
579 fmt_ptr = fmt_first;
580 else
581 {
582 fmt_ptr = fmt_start;
583 fmt_start = NULL;
584 }
585
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 /*
587 * Try to match each part of 'errorformat' until we find a complete
588 * match or no match.
589 */
590 valid = TRUE;
591restofline:
Bram Moolenaar01265852006-03-20 21:50:15 +0000592 for ( ; fmt_ptr != NULL; fmt_ptr = fmt_ptr->next)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 {
594 idx = fmt_ptr->prefix;
595 if (multiscan && vim_strchr((char_u *)"OPQ", idx) == NULL)
596 continue;
597 namebuf[0] = NUL;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000598 pattern[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 if (!multiscan)
600 errmsg[0] = NUL;
601 lnum = 0;
602 col = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000603 use_viscol = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 enr = -1;
605 type = 0;
606 tail = NULL;
607
608 regmatch.regprog = fmt_ptr->prog;
609 if (vim_regexec(&regmatch, IObuff, (colnr_T)0))
610 {
611 if ((idx == 'C' || idx == 'Z') && !multiline)
612 continue;
613 if (vim_strchr((char_u *)"EWI", idx) != NULL)
614 type = idx;
615 else
616 type = 0;
617 /*
Bram Moolenaar4169da72006-06-20 18:49:32 +0000618 * Extract error message data from matched line.
619 * We check for an actual submatch, because "\[" and "\]" in
620 * the 'errorformat' may cause the wrong submatch to be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 */
622 if ((i = (int)fmt_ptr->addr[0]) > 0) /* %f */
623 {
Bram Moolenaar4169da72006-06-20 18:49:32 +0000624 int c;
625
626 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL)
627 continue;
Bram Moolenaar35c54e52005-05-20 21:25:31 +0000628
629 /* Expand ~/file and $HOME/file to full path. */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000630 c = *regmatch.endp[i];
Bram Moolenaar35c54e52005-05-20 21:25:31 +0000631 *regmatch.endp[i] = NUL;
632 expand_env(regmatch.startp[i], namebuf, CMDBUFFSIZE);
633 *regmatch.endp[i] = c;
634
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635 if (vim_strchr((char_u *)"OPQ", idx) != NULL
Bram Moolenaar35c54e52005-05-20 21:25:31 +0000636 && mch_getperm(namebuf) == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637 continue;
638 }
639 if ((i = (int)fmt_ptr->addr[1]) > 0) /* %n */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000640 {
641 if (regmatch.startp[i] == NULL)
642 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 enr = (int)atol((char *)regmatch.startp[i]);
Bram Moolenaar4169da72006-06-20 18:49:32 +0000644 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 if ((i = (int)fmt_ptr->addr[2]) > 0) /* %l */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000646 {
647 if (regmatch.startp[i] == NULL)
648 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 lnum = atol((char *)regmatch.startp[i]);
Bram Moolenaar4169da72006-06-20 18:49:32 +0000650 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651 if ((i = (int)fmt_ptr->addr[3]) > 0) /* %c */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000652 {
653 if (regmatch.startp[i] == NULL)
654 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655 col = (int)atol((char *)regmatch.startp[i]);
Bram Moolenaar4169da72006-06-20 18:49:32 +0000656 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 if ((i = (int)fmt_ptr->addr[4]) > 0) /* %t */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000658 {
659 if (regmatch.startp[i] == NULL)
660 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 type = *regmatch.startp[i];
Bram Moolenaar4169da72006-06-20 18:49:32 +0000662 }
Bram Moolenaar4770d092006-01-12 23:22:24 +0000663 if (fmt_ptr->flags == '+' && !multiscan) /* %+ */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 STRCPY(errmsg, IObuff);
665 else if ((i = (int)fmt_ptr->addr[5]) > 0) /* %m */
666 {
Bram Moolenaar4169da72006-06-20 18:49:32 +0000667 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL)
668 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669 len = (int)(regmatch.endp[i] - regmatch.startp[i]);
Bram Moolenaarbbebc852005-07-18 21:47:53 +0000670 vim_strncpy(errmsg, regmatch.startp[i], len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 }
672 if ((i = (int)fmt_ptr->addr[6]) > 0) /* %r */
Bram Moolenaar4169da72006-06-20 18:49:32 +0000673 {
674 if (regmatch.startp[i] == NULL)
675 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 tail = regmatch.startp[i];
Bram Moolenaar4169da72006-06-20 18:49:32 +0000677 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 if ((i = (int)fmt_ptr->addr[7]) > 0) /* %p */
679 {
Bram Moolenaarf13de072012-06-01 18:34:41 +0200680 char_u *match_ptr;
681
Bram Moolenaar4169da72006-06-20 18:49:32 +0000682 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL)
683 continue;
Bram Moolenaarf13de072012-06-01 18:34:41 +0200684 col = 0;
685 for (match_ptr = regmatch.startp[i];
686 match_ptr != regmatch.endp[i]; ++match_ptr)
687 {
688 ++col;
689 if (*match_ptr == TAB)
690 {
691 col += 7;
692 col -= col % 8;
693 }
694 }
695 ++col;
696 use_viscol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697 }
698 if ((i = (int)fmt_ptr->addr[8]) > 0) /* %v */
699 {
Bram Moolenaar4169da72006-06-20 18:49:32 +0000700 if (regmatch.startp[i] == NULL)
701 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 col = (int)atol((char *)regmatch.startp[i]);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000703 use_viscol = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000705 if ((i = (int)fmt_ptr->addr[9]) > 0) /* %s */
706 {
Bram Moolenaar4169da72006-06-20 18:49:32 +0000707 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL)
708 continue;
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000709 len = (int)(regmatch.endp[i] - regmatch.startp[i]);
710 if (len > CMDBUFFSIZE - 5)
711 len = CMDBUFFSIZE - 5;
712 STRCPY(pattern, "^\\V");
713 STRNCAT(pattern, regmatch.startp[i], len);
714 pattern[len + 3] = '\\';
715 pattern[len + 4] = '$';
716 pattern[len + 5] = NUL;
717 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 break;
719 }
720 }
721 multiscan = FALSE;
Bram Moolenaar01265852006-03-20 21:50:15 +0000722
Bram Moolenaar4770d092006-01-12 23:22:24 +0000723 if (fmt_ptr == NULL || idx == 'D' || idx == 'X')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 {
Bram Moolenaar4770d092006-01-12 23:22:24 +0000725 if (fmt_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726 {
727 if (idx == 'D') /* enter directory */
728 {
729 if (*namebuf == NUL)
730 {
731 EMSG(_("E379: Missing or empty directory name"));
732 goto error2;
733 }
734 if ((directory = qf_push_dir(namebuf, &dir_stack)) == NULL)
735 goto error2;
736 }
737 else if (idx == 'X') /* leave directory */
738 directory = qf_pop_dir(&dir_stack);
739 }
740 namebuf[0] = NUL; /* no match found, remove file name */
741 lnum = 0; /* don't jump to this line */
742 valid = FALSE;
743 STRCPY(errmsg, IObuff); /* copy whole line to error message */
Bram Moolenaar4770d092006-01-12 23:22:24 +0000744 if (fmt_ptr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 multiline = multiignore = FALSE;
746 }
Bram Moolenaar4770d092006-01-12 23:22:24 +0000747 else if (fmt_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 {
Bram Moolenaar01265852006-03-20 21:50:15 +0000749 /* honor %> item */
750 if (fmt_ptr->conthere)
751 fmt_start = fmt_ptr;
752
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 if (vim_strchr((char_u *)"AEWI", idx) != NULL)
754 multiline = TRUE; /* start of a multi-line message */
755 else if (vim_strchr((char_u *)"CZ", idx) != NULL)
756 { /* continuation of multi-line msg */
757 if (qfprev == NULL)
758 goto error2;
759 if (*errmsg && !multiignore)
760 {
761 len = (int)STRLEN(qfprev->qf_text);
762 if ((ptr = alloc((unsigned)(len + STRLEN(errmsg) + 2)))
763 == NULL)
764 goto error2;
765 STRCPY(ptr, qfprev->qf_text);
766 vim_free(qfprev->qf_text);
767 qfprev->qf_text = ptr;
768 *(ptr += len) = '\n';
769 STRCPY(++ptr, errmsg);
770 }
771 if (qfprev->qf_nr == -1)
772 qfprev->qf_nr = enr;
773 if (vim_isprintc(type) && !qfprev->qf_type)
774 qfprev->qf_type = type; /* only printable chars allowed */
775 if (!qfprev->qf_lnum)
776 qfprev->qf_lnum = lnum;
777 if (!qfprev->qf_col)
778 qfprev->qf_col = col;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000779 qfprev->qf_viscol = use_viscol;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 if (!qfprev->qf_fnum)
781 qfprev->qf_fnum = qf_get_fnum(directory,
782 *namebuf || directory ? namebuf
783 : currfile && valid ? currfile : 0);
784 if (idx == 'Z')
785 multiline = multiignore = FALSE;
786 line_breakcheck();
787 continue;
788 }
789 else if (vim_strchr((char_u *)"OPQ", idx) != NULL)
790 {
791 /* global file names */
792 valid = FALSE;
793 if (*namebuf == NUL || mch_getperm(namebuf) >= 0)
794 {
795 if (*namebuf && idx == 'P')
796 currfile = qf_push_dir(namebuf, &file_stack);
797 else if (idx == 'Q')
798 currfile = qf_pop_dir(&file_stack);
799 *namebuf = NUL;
800 if (tail && *tail)
801 {
Bram Moolenaarc236c162008-07-13 17:41:49 +0000802 STRMOVE(IObuff, skipwhite(tail));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 multiscan = TRUE;
804 goto restofline;
805 }
806 }
807 }
808 if (fmt_ptr->flags == '-') /* generally exclude this line */
809 {
810 if (multiline)
811 multiignore = TRUE; /* also exclude continuation lines */
812 continue;
813 }
814 }
815
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000816 if (qf_add_entry(qi, &qfprev,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817 directory,
Bram Moolenaar9d75c832005-01-25 21:57:23 +0000818 (*namebuf || directory)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 ? namebuf
Bram Moolenaar9d75c832005-01-25 21:57:23 +0000820 : ((currfile && valid) ? currfile : (char_u *)NULL),
Bram Moolenaar48b66fb2007-02-04 01:58:18 +0000821 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 errmsg,
823 lnum,
824 col,
Bram Moolenaar05159a02005-02-26 23:04:13 +0000825 use_viscol,
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000826 pattern,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 enr,
828 type,
829 valid) == FAIL)
830 goto error2;
831 line_breakcheck();
832 }
Bram Moolenaar86b68352004-12-27 21:59:20 +0000833 if (fd == NULL || !ferror(fd))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000835 if (qi->qf_lists[qi->qf_curlist].qf_index == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000837 /* no valid entry found */
838 qi->qf_lists[qi->qf_curlist].qf_ptr =
839 qi->qf_lists[qi->qf_curlist].qf_start;
840 qi->qf_lists[qi->qf_curlist].qf_index = 1;
841 qi->qf_lists[qi->qf_curlist].qf_nonevalid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 }
843 else
844 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000845 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
846 if (qi->qf_lists[qi->qf_curlist].qf_ptr == NULL)
847 qi->qf_lists[qi->qf_curlist].qf_ptr =
848 qi->qf_lists[qi->qf_curlist].qf_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000850 /* return number of matches */
851 retval = qi->qf_lists[qi->qf_curlist].qf_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 goto qf_init_ok;
853 }
854 EMSG(_(e_readerrf));
855error2:
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000856 qf_free(qi, qi->qf_curlist);
857 qi->qf_listcount--;
858 if (qi->qf_curlist > 0)
859 --qi->qf_curlist;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860qf_init_ok:
Bram Moolenaar86b68352004-12-27 21:59:20 +0000861 if (fd != NULL)
862 fclose(fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 for (fmt_ptr = fmt_first; fmt_ptr != NULL; fmt_ptr = fmt_first)
864 {
865 fmt_first = fmt_ptr->next;
Bram Moolenaar473de612013-06-08 18:19:48 +0200866 vim_regfree(fmt_ptr->prog);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 vim_free(fmt_ptr);
868 }
869 qf_clean_dir_stack(&dir_stack);
870 qf_clean_dir_stack(&file_stack);
871qf_init_end:
872 vim_free(namebuf);
873 vim_free(errmsg);
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000874 vim_free(pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 vim_free(fmtstr);
876
877#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000878 qf_update_buffer(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879#endif
880
881 return retval;
882}
883
884/*
885 * Prepare for adding a new quickfix list.
886 */
887 static void
Bram Moolenaar94116152012-11-28 17:41:59 +0100888qf_new_list(qi, qf_title)
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000889 qf_info_T *qi;
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200890 char_u *qf_title;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891{
892 int i;
893
894 /*
895 * If the current entry is not the last entry, delete entries below
896 * the current entry. This makes it possible to browse in a tree-like
897 * way with ":grep'.
898 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000899 while (qi->qf_listcount > qi->qf_curlist + 1)
900 qf_free(qi, --qi->qf_listcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901
902 /*
903 * When the stack is full, remove to oldest entry
904 * Otherwise, add a new entry.
905 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000906 if (qi->qf_listcount == LISTCOUNT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000908 qf_free(qi, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 for (i = 1; i < LISTCOUNT; ++i)
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000910 qi->qf_lists[i - 1] = qi->qf_lists[i];
911 qi->qf_curlist = LISTCOUNT - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 }
913 else
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000914 qi->qf_curlist = qi->qf_listcount++;
Bram Moolenaara0f299b2012-01-10 17:13:52 +0100915 vim_memset(&qi->qf_lists[qi->qf_curlist], 0, (size_t)(sizeof(qf_list_T)));
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200916 if (qf_title != NULL)
917 {
Bram Moolenaar5e109c42010-07-26 22:51:28 +0200918 char_u *p = alloc((int)STRLEN(qf_title) + 2);
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200919
920 qi->qf_lists[qi->qf_curlist].qf_title = p;
921 if (p != NULL)
922 sprintf((char *)p, ":%s", (char *)qf_title);
923 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924}
925
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000926/*
927 * Free a location list
928 */
929 static void
930ll_free_all(pqi)
931 qf_info_T **pqi;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000932{
933 int i;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000934 qf_info_T *qi;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000935
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000936 qi = *pqi;
937 if (qi == NULL)
938 return;
939 *pqi = NULL; /* Remove reference to this list */
940
941 qi->qf_refcount--;
942 if (qi->qf_refcount < 1)
943 {
944 /* No references to this location list */
945 for (i = 0; i < qi->qf_listcount; ++i)
946 qf_free(qi, i);
947 vim_free(qi);
948 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000949}
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000950
951 void
952qf_free_all(wp)
953 win_T *wp;
954{
955 int i;
956 qf_info_T *qi = &ql_info;
957
958 if (wp != NULL)
959 {
960 /* location list */
961 ll_free_all(&wp->w_llist);
962 ll_free_all(&wp->w_llist_ref);
963 }
964 else
965 /* quickfix list */
966 for (i = 0; i < qi->qf_listcount; ++i)
967 qf_free(qi, i);
968}
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000969
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970/*
971 * Add an entry to the end of the list of errors.
972 * Returns OK or FAIL.
973 */
974 static int
Bram Moolenaar48b66fb2007-02-04 01:58:18 +0000975qf_add_entry(qi, prevp, dir, fname, bufnum, mesg, lnum, col, vis_col, pattern,
976 nr, type, valid)
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000977 qf_info_T *qi; /* quickfix list */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000978 qfline_T **prevp; /* pointer to previously added entry or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 char_u *dir; /* optional directory name */
980 char_u *fname; /* file name or NULL */
Bram Moolenaar48b66fb2007-02-04 01:58:18 +0000981 int bufnum; /* buffer number or zero */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 char_u *mesg; /* message */
983 long lnum; /* line number */
984 int col; /* column */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000985 int vis_col; /* using visual column */
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000986 char_u *pattern; /* search pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 int nr; /* error number */
988 int type; /* type character */
989 int valid; /* valid entry */
990{
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000991 qfline_T *qfp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000993 if ((qfp = (qfline_T *)alloc((unsigned)sizeof(qfline_T))) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994 return FAIL;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +0000995 if (bufnum != 0)
996 qfp->qf_fnum = bufnum;
997 else
998 qfp->qf_fnum = qf_get_fnum(dir, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 if ((qfp->qf_text = vim_strsave(mesg)) == NULL)
1000 {
1001 vim_free(qfp);
1002 return FAIL;
1003 }
1004 qfp->qf_lnum = lnum;
1005 qfp->qf_col = col;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001006 qfp->qf_viscol = vis_col;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001007 if (pattern == NULL || *pattern == NUL)
1008 qfp->qf_pattern = NULL;
1009 else if ((qfp->qf_pattern = vim_strsave(pattern)) == NULL)
1010 {
1011 vim_free(qfp->qf_text);
1012 vim_free(qfp);
1013 return FAIL;
1014 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 qfp->qf_nr = nr;
1016 if (type != 1 && !vim_isprintc(type)) /* only printable chars allowed */
1017 type = 0;
1018 qfp->qf_type = type;
1019 qfp->qf_valid = valid;
1020
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001021 if (qi->qf_lists[qi->qf_curlist].qf_count == 0)
1022 /* first element in the list */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001024 qi->qf_lists[qi->qf_curlist].qf_start = qfp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 qfp->qf_prev = qfp; /* first element points to itself */
1026 }
1027 else
1028 {
1029 qfp->qf_prev = *prevp;
1030 (*prevp)->qf_next = qfp;
1031 }
1032 qfp->qf_next = qfp; /* last element points to itself */
1033 qfp->qf_cleared = FALSE;
1034 *prevp = qfp;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001035 ++qi->qf_lists[qi->qf_curlist].qf_count;
1036 if (qi->qf_lists[qi->qf_curlist].qf_index == 0 && qfp->qf_valid)
1037 /* first valid entry */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001039 qi->qf_lists[qi->qf_curlist].qf_index =
1040 qi->qf_lists[qi->qf_curlist].qf_count;
1041 qi->qf_lists[qi->qf_curlist].qf_ptr = qfp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 }
1043
1044 return OK;
1045}
1046
1047/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001048 * Allocate a new location list
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001049 */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001050 static qf_info_T *
1051ll_new_list()
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001052{
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001053 qf_info_T *qi;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001054
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001055 qi = (qf_info_T *)alloc((unsigned)sizeof(qf_info_T));
1056 if (qi != NULL)
1057 {
1058 vim_memset(qi, 0, (size_t)(sizeof(qf_info_T)));
1059 qi->qf_refcount++;
1060 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001061
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001062 return qi;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001063}
1064
1065/*
1066 * Return the location list for window 'wp'.
1067 * If not present, allocate a location list
1068 */
1069 static qf_info_T *
1070ll_get_or_alloc_list(wp)
1071 win_T *wp;
1072{
1073 if (IS_LL_WINDOW(wp))
1074 /* For a location list window, use the referenced location list */
1075 return wp->w_llist_ref;
1076
1077 /*
1078 * For a non-location list window, w_llist_ref should not point to a
1079 * location list.
1080 */
1081 ll_free_all(&wp->w_llist_ref);
1082
1083 if (wp->w_llist == NULL)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001084 wp->w_llist = ll_new_list(); /* new location list */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001085 return wp->w_llist;
1086}
1087
1088/*
1089 * Copy the location list from window "from" to window "to".
1090 */
1091 void
1092copy_loclist(from, to)
1093 win_T *from;
1094 win_T *to;
1095{
1096 qf_info_T *qi;
1097 int idx;
1098 int i;
1099
1100 /*
1101 * When copying from a location list window, copy the referenced
1102 * location list. For other windows, copy the location list for
1103 * that window.
1104 */
1105 if (IS_LL_WINDOW(from))
1106 qi = from->w_llist_ref;
1107 else
1108 qi = from->w_llist;
1109
1110 if (qi == NULL) /* no location list to copy */
1111 return;
1112
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001113 /* allocate a new location list */
1114 if ((to->w_llist = ll_new_list()) == NULL)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001115 return;
1116
1117 to->w_llist->qf_listcount = qi->qf_listcount;
1118
1119 /* Copy the location lists one at a time */
1120 for (idx = 0; idx < qi->qf_listcount; idx++)
1121 {
1122 qf_list_T *from_qfl;
1123 qf_list_T *to_qfl;
1124
1125 to->w_llist->qf_curlist = idx;
1126
1127 from_qfl = &qi->qf_lists[idx];
1128 to_qfl = &to->w_llist->qf_lists[idx];
1129
1130 /* Some of the fields are populated by qf_add_entry() */
1131 to_qfl->qf_nonevalid = from_qfl->qf_nonevalid;
1132 to_qfl->qf_count = 0;
1133 to_qfl->qf_index = 0;
1134 to_qfl->qf_start = NULL;
1135 to_qfl->qf_ptr = NULL;
Bram Moolenaar7fd73202010-07-25 16:58:46 +02001136 if (from_qfl->qf_title != NULL)
1137 to_qfl->qf_title = vim_strsave(from_qfl->qf_title);
1138 else
1139 to_qfl->qf_title = NULL;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001140
1141 if (from_qfl->qf_count)
1142 {
1143 qfline_T *from_qfp;
1144 qfline_T *prevp = NULL;
1145
1146 /* copy all the location entries in this list */
1147 for (i = 0, from_qfp = from_qfl->qf_start; i < from_qfl->qf_count;
1148 ++i, from_qfp = from_qfp->qf_next)
1149 {
1150 if (qf_add_entry(to->w_llist, &prevp,
1151 NULL,
1152 NULL,
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00001153 0,
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001154 from_qfp->qf_text,
1155 from_qfp->qf_lnum,
1156 from_qfp->qf_col,
1157 from_qfp->qf_viscol,
1158 from_qfp->qf_pattern,
1159 from_qfp->qf_nr,
1160 0,
1161 from_qfp->qf_valid) == FAIL)
1162 {
1163 qf_free_all(to);
1164 return;
1165 }
1166 /*
1167 * qf_add_entry() will not set the qf_num field, as the
1168 * directory and file names are not supplied. So the qf_fnum
1169 * field is copied here.
1170 */
1171 prevp->qf_fnum = from_qfp->qf_fnum; /* file number */
1172 prevp->qf_type = from_qfp->qf_type; /* error type */
1173 if (from_qfl->qf_ptr == from_qfp)
1174 to_qfl->qf_ptr = prevp; /* current location */
1175 }
1176 }
1177
1178 to_qfl->qf_index = from_qfl->qf_index; /* current index in the list */
1179
1180 /* When no valid entries are present in the list, qf_ptr points to
1181 * the first item in the list */
Bram Moolenaard236ac02011-05-05 17:14:14 +02001182 if (to_qfl->qf_nonevalid)
Bram Moolenaar730d2c02013-06-30 13:33:58 +02001183 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001184 to_qfl->qf_ptr = to_qfl->qf_start;
Bram Moolenaar730d2c02013-06-30 13:33:58 +02001185 to_qfl->qf_index = 1;
1186 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001187 }
1188
1189 to->w_llist->qf_curlist = qi->qf_curlist; /* current list */
1190}
1191
1192/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 * get buffer number for file "dir.name"
1194 */
1195 static int
1196qf_get_fnum(directory, fname)
1197 char_u *directory;
1198 char_u *fname;
1199{
1200 if (fname == NULL || *fname == NUL) /* no file name */
1201 return 0;
1202 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 char_u *ptr;
1204 int fnum;
1205
Bram Moolenaare60acc12011-05-10 16:41:25 +02001206#ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 vms_remove_version(fname);
Bram Moolenaare60acc12011-05-10 16:41:25 +02001208#endif
1209#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 if (directory != NULL)
1211 slash_adjust(directory);
1212 slash_adjust(fname);
Bram Moolenaare60acc12011-05-10 16:41:25 +02001213#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 if (directory != NULL && !vim_isAbsName(fname)
1215 && (ptr = concat_fnames(directory, fname, TRUE)) != NULL)
1216 {
1217 /*
1218 * Here we check if the file really exists.
1219 * This should normally be true, but if make works without
1220 * "leaving directory"-messages we might have missed a
1221 * directory change.
1222 */
1223 if (mch_getperm(ptr) < 0)
1224 {
1225 vim_free(ptr);
1226 directory = qf_guess_filepath(fname);
1227 if (directory)
1228 ptr = concat_fnames(directory, fname, TRUE);
1229 else
1230 ptr = vim_strsave(fname);
1231 }
1232 /* Use concatenated directory name and file name */
1233 fnum = buflist_add(ptr, 0);
1234 vim_free(ptr);
1235 return fnum;
1236 }
1237 return buflist_add(fname, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 }
1239}
1240
1241/*
1242 * push dirbuf onto the directory stack and return pointer to actual dir or
1243 * NULL on error
1244 */
1245 static char_u *
1246qf_push_dir(dirbuf, stackptr)
1247 char_u *dirbuf;
1248 struct dir_stack_T **stackptr;
1249{
1250 struct dir_stack_T *ds_new;
1251 struct dir_stack_T *ds_ptr;
1252
1253 /* allocate new stack element and hook it in */
1254 ds_new = (struct dir_stack_T *)alloc((unsigned)sizeof(struct dir_stack_T));
1255 if (ds_new == NULL)
1256 return NULL;
1257
1258 ds_new->next = *stackptr;
1259 *stackptr = ds_new;
1260
1261 /* store directory on the stack */
1262 if (vim_isAbsName(dirbuf)
1263 || (*stackptr)->next == NULL
1264 || (*stackptr && dir_stack != *stackptr))
1265 (*stackptr)->dirname = vim_strsave(dirbuf);
1266 else
1267 {
1268 /* Okay we don't have an absolute path.
1269 * dirbuf must be a subdir of one of the directories on the stack.
1270 * Let's search...
1271 */
1272 ds_new = (*stackptr)->next;
1273 (*stackptr)->dirname = NULL;
1274 while (ds_new)
1275 {
1276 vim_free((*stackptr)->dirname);
1277 (*stackptr)->dirname = concat_fnames(ds_new->dirname, dirbuf,
1278 TRUE);
1279 if (mch_isdir((*stackptr)->dirname) == TRUE)
1280 break;
1281
1282 ds_new = ds_new->next;
1283 }
1284
1285 /* clean up all dirs we already left */
1286 while ((*stackptr)->next != ds_new)
1287 {
1288 ds_ptr = (*stackptr)->next;
1289 (*stackptr)->next = (*stackptr)->next->next;
1290 vim_free(ds_ptr->dirname);
1291 vim_free(ds_ptr);
1292 }
1293
1294 /* Nothing found -> it must be on top level */
1295 if (ds_new == NULL)
1296 {
1297 vim_free((*stackptr)->dirname);
1298 (*stackptr)->dirname = vim_strsave(dirbuf);
1299 }
1300 }
1301
1302 if ((*stackptr)->dirname != NULL)
1303 return (*stackptr)->dirname;
1304 else
1305 {
1306 ds_ptr = *stackptr;
1307 *stackptr = (*stackptr)->next;
1308 vim_free(ds_ptr);
1309 return NULL;
1310 }
1311}
1312
1313
1314/*
1315 * pop dirbuf from the directory stack and return previous directory or NULL if
1316 * stack is empty
1317 */
1318 static char_u *
1319qf_pop_dir(stackptr)
1320 struct dir_stack_T **stackptr;
1321{
1322 struct dir_stack_T *ds_ptr;
1323
1324 /* TODO: Should we check if dirbuf is the directory on top of the stack?
1325 * What to do if it isn't? */
1326
1327 /* pop top element and free it */
1328 if (*stackptr != NULL)
1329 {
1330 ds_ptr = *stackptr;
1331 *stackptr = (*stackptr)->next;
1332 vim_free(ds_ptr->dirname);
1333 vim_free(ds_ptr);
1334 }
1335
1336 /* return NEW top element as current dir or NULL if stack is empty*/
1337 return *stackptr ? (*stackptr)->dirname : NULL;
1338}
1339
1340/*
1341 * clean up directory stack
1342 */
1343 static void
1344qf_clean_dir_stack(stackptr)
1345 struct dir_stack_T **stackptr;
1346{
1347 struct dir_stack_T *ds_ptr;
1348
1349 while ((ds_ptr = *stackptr) != NULL)
1350 {
1351 *stackptr = (*stackptr)->next;
1352 vim_free(ds_ptr->dirname);
1353 vim_free(ds_ptr);
1354 }
1355}
1356
1357/*
1358 * Check in which directory of the directory stack the given file can be
1359 * found.
1360 * Returns a pointer to the directory name or NULL if not found
1361 * Cleans up intermediate directory entries.
1362 *
1363 * TODO: How to solve the following problem?
1364 * If we have the this directory tree:
1365 * ./
1366 * ./aa
1367 * ./aa/bb
1368 * ./bb
1369 * ./bb/x.c
1370 * and make says:
1371 * making all in aa
1372 * making all in bb
1373 * x.c:9: Error
1374 * Then qf_push_dir thinks we are in ./aa/bb, but we are in ./bb.
1375 * qf_guess_filepath will return NULL.
1376 */
1377 static char_u *
1378qf_guess_filepath(filename)
1379 char_u *filename;
1380{
1381 struct dir_stack_T *ds_ptr;
1382 struct dir_stack_T *ds_tmp;
1383 char_u *fullname;
1384
1385 /* no dirs on the stack - there's nothing we can do */
1386 if (dir_stack == NULL)
1387 return NULL;
1388
1389 ds_ptr = dir_stack->next;
1390 fullname = NULL;
1391 while (ds_ptr)
1392 {
1393 vim_free(fullname);
1394 fullname = concat_fnames(ds_ptr->dirname, filename, TRUE);
1395
1396 /* If concat_fnames failed, just go on. The worst thing that can happen
1397 * is that we delete the entire stack.
1398 */
1399 if ((fullname != NULL) && (mch_getperm(fullname) >= 0))
1400 break;
1401
1402 ds_ptr = ds_ptr->next;
1403 }
1404
1405 vim_free(fullname);
1406
1407 /* clean up all dirs we already left */
1408 while (dir_stack->next != ds_ptr)
1409 {
1410 ds_tmp = dir_stack->next;
1411 dir_stack->next = dir_stack->next->next;
1412 vim_free(ds_tmp->dirname);
1413 vim_free(ds_tmp);
1414 }
1415
1416 return ds_ptr==NULL? NULL: ds_ptr->dirname;
1417
1418}
1419
1420/*
1421 * jump to a quickfix line
1422 * if dir == FORWARD go "errornr" valid entries forward
1423 * if dir == BACKWARD go "errornr" valid entries backward
1424 * if dir == FORWARD_FILE go "errornr" valid entries files backward
1425 * if dir == BACKWARD_FILE go "errornr" valid entries files backward
1426 * else if "errornr" is zero, redisplay the same line
1427 * else go to entry "errornr"
1428 */
1429 void
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001430qf_jump(qi, dir, errornr, forceit)
1431 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 int dir;
1433 int errornr;
1434 int forceit;
1435{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001436 qf_info_T *ll_ref;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001437 qfline_T *qf_ptr;
1438 qfline_T *old_qf_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 int qf_index;
1440 int old_qf_fnum;
1441 int old_qf_index;
1442 int prev_index;
1443 static char_u *e_no_more_items = (char_u *)N_("E553: No more items");
1444 char_u *err = e_no_more_items;
1445 linenr_T i;
1446 buf_T *old_curbuf;
1447 linenr_T old_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 colnr_T screen_col;
1449 colnr_T char_col;
1450 char_u *line;
1451#ifdef FEAT_WINDOWS
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00001452 char_u *old_swb = p_swb;
Bram Moolenaar446cb832008-06-24 21:56:24 +00001453 unsigned old_swb_flags = swb_flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 int opened_window = FALSE;
1455 win_T *win;
1456 win_T *altwin;
Bram Moolenaar884ae642009-02-22 01:37:59 +00001457 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458#endif
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001459 win_T *oldwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460 int print_message = TRUE;
1461 int len;
1462#ifdef FEAT_FOLDING
1463 int old_KeyTyped = KeyTyped; /* getting file may reset it */
1464#endif
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001465 int ok = OK;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001466 int usable_win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001468 if (qi == NULL)
1469 qi = &ql_info;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001470
1471 if (qi->qf_curlist >= qi->qf_listcount
1472 || qi->qf_lists[qi->qf_curlist].qf_count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 {
1474 EMSG(_(e_quickfix));
1475 return;
1476 }
1477
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001478 qf_ptr = qi->qf_lists[qi->qf_curlist].qf_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479 old_qf_ptr = qf_ptr;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001480 qf_index = qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481 old_qf_index = qf_index;
1482 if (dir == FORWARD || dir == FORWARD_FILE) /* next valid entry */
1483 {
1484 while (errornr--)
1485 {
1486 old_qf_ptr = qf_ptr;
1487 prev_index = qf_index;
1488 old_qf_fnum = qf_ptr->qf_fnum;
1489 do
1490 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001491 if (qf_index == qi->qf_lists[qi->qf_curlist].qf_count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 || qf_ptr->qf_next == NULL)
1493 {
1494 qf_ptr = old_qf_ptr;
1495 qf_index = prev_index;
1496 if (err != NULL)
1497 {
1498 EMSG(_(err));
1499 goto theend;
1500 }
1501 errornr = 0;
1502 break;
1503 }
1504 ++qf_index;
1505 qf_ptr = qf_ptr->qf_next;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001506 } while ((!qi->qf_lists[qi->qf_curlist].qf_nonevalid
1507 && !qf_ptr->qf_valid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 || (dir == FORWARD_FILE && qf_ptr->qf_fnum == old_qf_fnum));
1509 err = NULL;
1510 }
1511 }
1512 else if (dir == BACKWARD || dir == BACKWARD_FILE) /* prev. valid entry */
1513 {
1514 while (errornr--)
1515 {
1516 old_qf_ptr = qf_ptr;
1517 prev_index = qf_index;
1518 old_qf_fnum = qf_ptr->qf_fnum;
1519 do
1520 {
1521 if (qf_index == 1 || qf_ptr->qf_prev == NULL)
1522 {
1523 qf_ptr = old_qf_ptr;
1524 qf_index = prev_index;
1525 if (err != NULL)
1526 {
1527 EMSG(_(err));
1528 goto theend;
1529 }
1530 errornr = 0;
1531 break;
1532 }
1533 --qf_index;
1534 qf_ptr = qf_ptr->qf_prev;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001535 } while ((!qi->qf_lists[qi->qf_curlist].qf_nonevalid
1536 && !qf_ptr->qf_valid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 || (dir == BACKWARD_FILE && qf_ptr->qf_fnum == old_qf_fnum));
1538 err = NULL;
1539 }
1540 }
1541 else if (errornr != 0) /* go to specified number */
1542 {
1543 while (errornr < qf_index && qf_index > 1 && qf_ptr->qf_prev != NULL)
1544 {
1545 --qf_index;
1546 qf_ptr = qf_ptr->qf_prev;
1547 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001548 while (errornr > qf_index && qf_index <
1549 qi->qf_lists[qi->qf_curlist].qf_count
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 && qf_ptr->qf_next != NULL)
1551 {
1552 ++qf_index;
1553 qf_ptr = qf_ptr->qf_next;
1554 }
1555 }
1556
1557#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001558 qi->qf_lists[qi->qf_curlist].qf_index = qf_index;
1559 if (qf_win_pos_update(qi, old_qf_index))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 /* No need to print the error message if it's visible in the error
1561 * window */
1562 print_message = FALSE;
1563
1564 /*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001565 * For ":helpgrep" find a help window or open one.
1566 */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001567 if (qf_ptr->qf_type == 1 && (!curwin->w_buffer->b_help || cmdmod.tab != 0))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001568 {
1569 win_T *wp;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001570
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001571 if (cmdmod.tab != 0)
1572 wp = NULL;
1573 else
1574 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1575 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
1576 break;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001577 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
1578 win_enter(wp, TRUE);
1579 else
1580 {
1581 /*
1582 * Split off help window; put it at far top if no position
1583 * specified, the current window is vertically split and narrow.
1584 */
Bram Moolenaar884ae642009-02-22 01:37:59 +00001585 flags = WSP_HELP;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001586# ifdef FEAT_VERTSPLIT
1587 if (cmdmod.split == 0 && curwin->w_width != Columns
1588 && curwin->w_width < 80)
Bram Moolenaar884ae642009-02-22 01:37:59 +00001589 flags |= WSP_TOP;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001590# endif
Bram Moolenaar884ae642009-02-22 01:37:59 +00001591 if (qi != &ql_info)
1592 flags |= WSP_NEWLOC; /* don't copy the location list */
1593
1594 if (win_split(0, flags) == FAIL)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001595 goto theend;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001596 opened_window = TRUE; /* close it when fail */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001597
1598 if (curwin->w_height < p_hh)
1599 win_setheight((int)p_hh);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001600
1601 if (qi != &ql_info) /* not a quickfix list */
1602 {
1603 /* The new window should use the supplied location list */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001604 curwin->w_llist = qi;
1605 qi->qf_refcount++;
1606 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001607 }
1608
1609 if (!p_im)
1610 restart_edit = 0; /* don't want insert mode in help file */
1611 }
1612
1613 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 * If currently in the quickfix window, find another window to show the
1615 * file in.
1616 */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001617 if (bt_quickfix(curbuf) && !opened_window)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 {
Bram Moolenaar24862852013-06-30 13:57:45 +02001619 win_T *usable_win_ptr = NULL;
1620
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 /*
1622 * If there is no file specified, we don't know where to go.
1623 * But do advance, otherwise ":cn" gets stuck.
1624 */
1625 if (qf_ptr->qf_fnum == 0)
1626 goto theend;
1627
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001628 usable_win = 0;
Bram Moolenaar24862852013-06-30 13:57:45 +02001629
1630 ll_ref = curwin->w_llist_ref;
1631 if (ll_ref != NULL)
1632 {
1633 /* Find a window using the same location list that is not a
1634 * quickfix window. */
1635 FOR_ALL_WINDOWS(usable_win_ptr)
1636 if (usable_win_ptr->w_llist == ll_ref
1637 && usable_win_ptr->w_buffer->b_p_bt[0] != 'q')
1638 break;
1639 }
1640
1641 if (!usable_win)
1642 {
1643 /* Locate a window showing a normal buffer */
1644 FOR_ALL_WINDOWS(win)
1645 if (win->w_buffer->b_p_bt[0] == NUL)
1646 {
1647 usable_win = 1;
1648 break;
1649 }
1650 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001651
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 /*
Bram Moolenaar446cb832008-06-24 21:56:24 +00001653 * If no usable window is found and 'switchbuf' contains "usetab"
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00001654 * then search in other tabs.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 */
Bram Moolenaar446cb832008-06-24 21:56:24 +00001656 if (!usable_win && (swb_flags & SWB_USETAB))
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00001657 {
1658 tabpage_T *tp;
1659 win_T *wp;
1660
1661 FOR_ALL_TAB_WINDOWS(tp, wp)
1662 {
1663 if (wp->w_buffer->b_fnum == qf_ptr->qf_fnum)
1664 {
1665 goto_tabpage_win(tp, wp);
1666 usable_win = 1;
Bram Moolenaarbb9c7d12009-02-21 23:03:09 +00001667 goto win_found;
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00001668 }
1669 }
1670 }
Bram Moolenaarbb9c7d12009-02-21 23:03:09 +00001671win_found:
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00001672
1673 /*
Bram Moolenaar1042fa32007-09-16 11:27:42 +00001674 * If there is only one window and it is the quickfix window, create a
1675 * new one above the quickfix window.
Bram Moolenaar38c0a6e2006-10-20 18:13:14 +00001676 */
1677 if (((firstwin == lastwin) && bt_quickfix(curbuf)) || !usable_win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 {
Bram Moolenaar884ae642009-02-22 01:37:59 +00001679 flags = WSP_ABOVE;
1680 if (ll_ref != NULL)
1681 flags |= WSP_NEWLOC;
1682 if (win_split(0, flags) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 goto failed; /* not enough room for window */
1684 opened_window = TRUE; /* close it when fail */
1685 p_swb = empty_option; /* don't split again */
Bram Moolenaar446cb832008-06-24 21:56:24 +00001686 swb_flags = 0;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001687 RESET_BINDING(curwin);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001688 if (ll_ref != NULL)
1689 {
1690 /* The new window should use the location list from the
1691 * location list window */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001692 curwin->w_llist = ll_ref;
1693 ll_ref->qf_refcount++;
1694 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 }
1696 else
1697 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001698 if (curwin->w_llist_ref != NULL)
1699 {
1700 /* In a location window */
Bram Moolenaar24862852013-06-30 13:57:45 +02001701 win = usable_win_ptr;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001702 if (win == NULL)
1703 {
1704 /* Find the window showing the selected file */
1705 FOR_ALL_WINDOWS(win)
1706 if (win->w_buffer->b_fnum == qf_ptr->qf_fnum)
1707 break;
1708 if (win == NULL)
1709 {
1710 /* Find a previous usable window */
1711 win = curwin;
1712 do
1713 {
1714 if (win->w_buffer->b_p_bt[0] == NUL)
1715 break;
1716 if (win->w_prev == NULL)
1717 win = lastwin; /* wrap around the top */
1718 else
1719 win = win->w_prev; /* go to previous window */
1720 } while (win != curwin);
1721 }
1722 }
1723 win_goto(win);
1724
1725 /* If the location list for the window is not set, then set it
1726 * to the location list from the location window */
1727 if (win->w_llist == NULL)
1728 {
1729 win->w_llist = ll_ref;
1730 ll_ref->qf_refcount++;
1731 }
1732 }
1733 else
1734 {
1735
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 /*
1737 * Try to find a window that shows the right buffer.
1738 * Default to the window just above the quickfix buffer.
1739 */
1740 win = curwin;
1741 altwin = NULL;
1742 for (;;)
1743 {
1744 if (win->w_buffer->b_fnum == qf_ptr->qf_fnum)
1745 break;
1746 if (win->w_prev == NULL)
1747 win = lastwin; /* wrap around the top */
1748 else
1749 win = win->w_prev; /* go to previous window */
1750
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001751 if (IS_QF_WINDOW(win))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 {
1753 /* Didn't find it, go to the window before the quickfix
1754 * window. */
1755 if (altwin != NULL)
1756 win = altwin;
1757 else if (curwin->w_prev != NULL)
1758 win = curwin->w_prev;
1759 else
1760 win = curwin->w_next;
1761 break;
1762 }
1763
1764 /* Remember a usable window. */
1765 if (altwin == NULL && !win->w_p_pvw
1766 && win->w_buffer->b_p_bt[0] == NUL)
1767 altwin = win;
1768 }
1769
1770 win_goto(win);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001771 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 }
1773 }
1774#endif
1775
1776 /*
1777 * If there is a file name,
1778 * read the wanted file if needed, and check autowrite etc.
1779 */
1780 old_curbuf = curbuf;
1781 old_lnum = curwin->w_cursor.lnum;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001782
1783 if (qf_ptr->qf_fnum != 0)
1784 {
1785 if (qf_ptr->qf_type == 1)
1786 {
1787 /* Open help file (do_ecmd() will set b_help flag, readfile() will
1788 * set b_p_ro flag). */
1789 if (!can_abandon(curbuf, forceit))
1790 {
1791 EMSG(_(e_nowrtmsg));
1792 ok = FALSE;
1793 }
1794 else
1795 ok = do_ecmd(qf_ptr->qf_fnum, NULL, NULL, NULL, (linenr_T)1,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00001796 ECMD_HIDE + ECMD_SET_HELP,
1797 oldwin == curwin ? curwin : NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001798 }
1799 else
1800 ok = buflist_getfile(qf_ptr->qf_fnum,
1801 (linenr_T)1, GETF_SETMARK | GETF_SWITCH, forceit);
1802 }
1803
1804 if (ok == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 {
1806 /* When not switched to another buffer, still need to set pc mark */
1807 if (curbuf == old_curbuf)
1808 setpcmark();
1809
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001810 if (qf_ptr->qf_pattern == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001812 /*
1813 * Go to line with error, unless qf_lnum is 0.
1814 */
1815 i = qf_ptr->qf_lnum;
1816 if (i > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 {
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001818 if (i > curbuf->b_ml.ml_line_count)
1819 i = curbuf->b_ml.ml_line_count;
1820 curwin->w_cursor.lnum = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001822 if (qf_ptr->qf_col > 0)
1823 {
1824 curwin->w_cursor.col = qf_ptr->qf_col - 1;
1825 if (qf_ptr->qf_viscol == TRUE)
1826 {
1827 /*
1828 * Check each character from the beginning of the error
1829 * line up to the error column. For each tab character
1830 * found, reduce the error column value by the length of
1831 * a tab character.
1832 */
1833 line = ml_get_curline();
1834 screen_col = 0;
1835 for (char_col = 0; char_col < curwin->w_cursor.col; ++char_col)
1836 {
1837 if (*line == NUL)
1838 break;
1839 if (*line++ == '\t')
1840 {
1841 curwin->w_cursor.col -= 7 - (screen_col % 8);
1842 screen_col += 8 - (screen_col % 8);
1843 }
1844 else
1845 ++screen_col;
1846 }
1847 }
1848 check_cursor();
1849 }
1850 else
1851 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 }
1853 else
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001854 {
1855 pos_T save_cursor;
1856
1857 /* Move the cursor to the first line in the buffer */
1858 save_cursor = curwin->w_cursor;
1859 curwin->w_cursor.lnum = 0;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00001860 if (!do_search(NULL, '/', qf_ptr->qf_pattern, (long)1,
1861 SEARCH_KEEP, NULL))
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001862 curwin->w_cursor = save_cursor;
1863 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864
1865#ifdef FEAT_FOLDING
1866 if ((fdo_flags & FDO_QUICKFIX) && old_KeyTyped)
1867 foldOpenCursor();
1868#endif
1869 if (print_message)
1870 {
Bram Moolenaar8f55d102012-01-20 13:28:34 +01001871 /* Update the screen before showing the message, unless the screen
1872 * scrolled up. */
1873 if (!msg_scrolled)
1874 update_topline_redraw();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 sprintf((char *)IObuff, _("(%d of %d)%s%s: "), qf_index,
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001876 qi->qf_lists[qi->qf_curlist].qf_count,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 qf_ptr->qf_cleared ? _(" (line deleted)") : "",
1878 (char *)qf_types(qf_ptr->qf_type, qf_ptr->qf_nr));
1879 /* Add the message, skipping leading whitespace and newlines. */
1880 len = (int)STRLEN(IObuff);
1881 qf_fmt_text(skipwhite(qf_ptr->qf_text), IObuff + len, IOSIZE - len);
1882
1883 /* Output the message. Overwrite to avoid scrolling when the 'O'
1884 * flag is present in 'shortmess'; But when not jumping, print the
1885 * whole message. */
1886 i = msg_scroll;
1887 if (curbuf == old_curbuf && curwin->w_cursor.lnum == old_lnum)
1888 msg_scroll = TRUE;
1889 else if (!msg_scrolled && shortmess(SHM_OVERALL))
1890 msg_scroll = FALSE;
1891 msg_attr_keep(IObuff, 0, TRUE);
1892 msg_scroll = i;
1893 }
1894 }
1895 else
1896 {
1897#ifdef FEAT_WINDOWS
1898 if (opened_window)
1899 win_close(curwin, TRUE); /* Close opened window */
1900#endif
1901 if (qf_ptr->qf_fnum != 0)
1902 {
1903 /*
1904 * Couldn't open file, so put index back where it was. This could
1905 * happen if the file was readonly and we changed something.
1906 */
1907#ifdef FEAT_WINDOWS
1908failed:
1909#endif
1910 qf_ptr = old_qf_ptr;
1911 qf_index = old_qf_index;
1912 }
1913 }
1914theend:
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001915 qi->qf_lists[qi->qf_curlist].qf_ptr = qf_ptr;
1916 qi->qf_lists[qi->qf_curlist].qf_index = qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917#ifdef FEAT_WINDOWS
1918 if (p_swb != old_swb && opened_window)
1919 {
1920 /* Restore old 'switchbuf' value, but not when an autocommand or
1921 * modeline has changed the value. */
1922 if (p_swb == empty_option)
Bram Moolenaar446cb832008-06-24 21:56:24 +00001923 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 p_swb = old_swb;
Bram Moolenaar446cb832008-06-24 21:56:24 +00001925 swb_flags = old_swb_flags;
1926 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 else
1928 free_string_option(old_swb);
1929 }
1930#endif
1931}
1932
1933/*
1934 * ":clist": list all errors
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001935 * ":llist": list all locations
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 */
1937 void
1938qf_list(eap)
1939 exarg_T *eap;
1940{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001941 buf_T *buf;
1942 char_u *fname;
1943 qfline_T *qfp;
1944 int i;
1945 int idx1 = 1;
1946 int idx2 = -1;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001947 char_u *arg = eap->arg;
1948 int all = eap->forceit; /* if not :cl!, only show
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 recognised errors */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001950 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001952 if (eap->cmdidx == CMD_llist)
1953 {
1954 qi = GET_LOC_LIST(curwin);
1955 if (qi == NULL)
1956 {
1957 EMSG(_(e_loclist));
1958 return;
1959 }
1960 }
1961
1962 if (qi->qf_curlist >= qi->qf_listcount
1963 || qi->qf_lists[qi->qf_curlist].qf_count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964 {
1965 EMSG(_(e_quickfix));
1966 return;
1967 }
1968 if (!get_list_range(&arg, &idx1, &idx2) || *arg != NUL)
1969 {
1970 EMSG(_(e_trailing));
1971 return;
1972 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001973 i = qi->qf_lists[qi->qf_curlist].qf_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 if (idx1 < 0)
1975 idx1 = (-idx1 > i) ? 0 : idx1 + i + 1;
1976 if (idx2 < 0)
1977 idx2 = (-idx2 > i) ? 0 : idx2 + i + 1;
1978
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001979 if (qi->qf_lists[qi->qf_curlist].qf_nonevalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 all = TRUE;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001981 qfp = qi->qf_lists[qi->qf_curlist].qf_start;
1982 for (i = 1; !got_int && i <= qi->qf_lists[qi->qf_curlist].qf_count; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 {
1984 if ((qfp->qf_valid || all) && idx1 <= i && i <= idx2)
1985 {
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01001986 msg_putchar('\n');
1987 if (got_int)
1988 break;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00001989
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001990 fname = NULL;
1991 if (qfp->qf_fnum != 0
1992 && (buf = buflist_findnr(qfp->qf_fnum)) != NULL)
1993 {
1994 fname = buf->b_fname;
1995 if (qfp->qf_type == 1) /* :helpgrep */
1996 fname = gettail(fname);
1997 }
1998 if (fname == NULL)
1999 sprintf((char *)IObuff, "%2d", i);
2000 else
2001 vim_snprintf((char *)IObuff, IOSIZE, "%2d %s",
2002 i, (char *)fname);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002003 msg_outtrans_attr(IObuff, i == qi->qf_lists[qi->qf_curlist].qf_index
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002004 ? hl_attr(HLF_L) : hl_attr(HLF_D));
2005 if (qfp->qf_lnum == 0)
2006 IObuff[0] = NUL;
2007 else if (qfp->qf_col == 0)
2008 sprintf((char *)IObuff, ":%ld", qfp->qf_lnum);
2009 else
2010 sprintf((char *)IObuff, ":%ld col %d",
2011 qfp->qf_lnum, qfp->qf_col);
2012 sprintf((char *)IObuff + STRLEN(IObuff), "%s:",
2013 (char *)qf_types(qfp->qf_type, qfp->qf_nr));
2014 msg_puts_attr(IObuff, hl_attr(HLF_N));
2015 if (qfp->qf_pattern != NULL)
2016 {
2017 qf_fmt_text(qfp->qf_pattern, IObuff, IOSIZE);
2018 STRCAT(IObuff, ":");
2019 msg_puts(IObuff);
2020 }
2021 msg_puts((char_u *)" ");
2022
2023 /* Remove newlines and leading whitespace from the text. For an
2024 * unrecognized line keep the indent, the compiler may mark a word
2025 * with ^^^^. */
2026 qf_fmt_text((fname != NULL || qfp->qf_lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 ? skipwhite(qfp->qf_text) : qfp->qf_text,
2028 IObuff, IOSIZE);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002029 msg_prt_line(IObuff, FALSE);
2030 out_flush(); /* show one line at a time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002032
2033 qfp = qfp->qf_next;
2034 ++i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 ui_breakcheck();
2036 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037}
2038
2039/*
2040 * Remove newlines and leading whitespace from an error message.
2041 * Put the result in "buf[bufsize]".
2042 */
2043 static void
2044qf_fmt_text(text, buf, bufsize)
2045 char_u *text;
2046 char_u *buf;
2047 int bufsize;
2048{
2049 int i;
2050 char_u *p = text;
2051
2052 for (i = 0; *p != NUL && i < bufsize - 1; ++i)
2053 {
2054 if (*p == '\n')
2055 {
2056 buf[i] = ' ';
2057 while (*++p != NUL)
2058 if (!vim_iswhite(*p) && *p != '\n')
2059 break;
2060 }
2061 else
2062 buf[i] = *p++;
2063 }
2064 buf[i] = NUL;
2065}
2066
2067/*
2068 * ":colder [count]": Up in the quickfix stack.
2069 * ":cnewer [count]": Down in the quickfix stack.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002070 * ":lolder [count]": Up in the location list stack.
2071 * ":lnewer [count]": Down in the location list stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 */
2073 void
2074qf_age(eap)
2075 exarg_T *eap;
2076{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002077 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 int count;
2079
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002080 if (eap->cmdidx == CMD_lolder || eap->cmdidx == CMD_lnewer)
2081 {
2082 qi = GET_LOC_LIST(curwin);
2083 if (qi == NULL)
2084 {
2085 EMSG(_(e_loclist));
2086 return;
2087 }
2088 }
2089
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 if (eap->addr_count != 0)
2091 count = eap->line2;
2092 else
2093 count = 1;
2094 while (count--)
2095 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002096 if (eap->cmdidx == CMD_colder || eap->cmdidx == CMD_lolder)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002098 if (qi->qf_curlist == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 {
2100 EMSG(_("E380: At bottom of quickfix stack"));
Bram Moolenaar82e803b2013-05-11 15:50:33 +02002101 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002103 --qi->qf_curlist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 }
2105 else
2106 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002107 if (qi->qf_curlist >= qi->qf_listcount - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 {
2109 EMSG(_("E381: At top of quickfix stack"));
Bram Moolenaar82e803b2013-05-11 15:50:33 +02002110 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002112 ++qi->qf_curlist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 }
2114 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002115 qf_msg(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116}
2117
2118 static void
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002119qf_msg(qi)
2120 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121{
2122 smsg((char_u *)_("error list %d of %d; %d errors"),
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002123 qi->qf_curlist + 1, qi->qf_listcount,
2124 qi->qf_lists[qi->qf_curlist].qf_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002126 qf_update_buffer(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127#endif
2128}
2129
2130/*
Bram Moolenaar77197e42005-12-08 22:00:22 +00002131 * Free error list "idx".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 */
2133 static void
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002134qf_free(qi, idx)
2135 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 int idx;
2137{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002138 qfline_T *qfp;
Bram Moolenaar81484f42012-12-05 15:16:47 +01002139 int stop = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002141 while (qi->qf_lists[idx].qf_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002143 qfp = qi->qf_lists[idx].qf_start->qf_next;
Bram Moolenaar81484f42012-12-05 15:16:47 +01002144 if (qi->qf_lists[idx].qf_title != NULL && !stop)
Bram Moolenaarc83a44b2012-11-28 15:25:34 +01002145 {
2146 vim_free(qi->qf_lists[idx].qf_start->qf_text);
Bram Moolenaar81484f42012-12-05 15:16:47 +01002147 stop = (qi->qf_lists[idx].qf_start == qfp);
Bram Moolenaarc83a44b2012-11-28 15:25:34 +01002148 vim_free(qi->qf_lists[idx].qf_start->qf_pattern);
2149 vim_free(qi->qf_lists[idx].qf_start);
Bram Moolenaar81484f42012-12-05 15:16:47 +01002150 if (stop)
2151 /* Somehow qf_count may have an incorrect value, set it to 1
2152 * to avoid crashing when it's wrong.
2153 * TODO: Avoid qf_count being incorrect. */
2154 qi->qf_lists[idx].qf_count = 1;
Bram Moolenaarc83a44b2012-11-28 15:25:34 +01002155 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002156 qi->qf_lists[idx].qf_start = qfp;
2157 --qi->qf_lists[idx].qf_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 }
Bram Moolenaar7fd73202010-07-25 16:58:46 +02002159 vim_free(qi->qf_lists[idx].qf_title);
Bram Moolenaar832f80e2010-08-17 20:26:59 +02002160 qi->qf_lists[idx].qf_title = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161}
2162
2163/*
2164 * qf_mark_adjust: adjust marks
2165 */
2166 void
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002167qf_mark_adjust(wp, line1, line2, amount, amount_after)
2168 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 linenr_T line1;
2170 linenr_T line2;
2171 long amount;
2172 long amount_after;
2173{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002174 int i;
2175 qfline_T *qfp;
2176 int idx;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002177 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002179 if (wp != NULL)
2180 {
2181 if (wp->w_llist == NULL)
2182 return;
2183 qi = wp->w_llist;
2184 }
2185
2186 for (idx = 0; idx < qi->qf_listcount; ++idx)
2187 if (qi->qf_lists[idx].qf_count)
2188 for (i = 0, qfp = qi->qf_lists[idx].qf_start;
2189 i < qi->qf_lists[idx].qf_count; ++i, qfp = qfp->qf_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 if (qfp->qf_fnum == curbuf->b_fnum)
2191 {
2192 if (qfp->qf_lnum >= line1 && qfp->qf_lnum <= line2)
2193 {
2194 if (amount == MAXLNUM)
2195 qfp->qf_cleared = TRUE;
2196 else
2197 qfp->qf_lnum += amount;
2198 }
2199 else if (amount_after && qfp->qf_lnum > line2)
2200 qfp->qf_lnum += amount_after;
2201 }
2202}
2203
2204/*
2205 * Make a nice message out of the error character and the error number:
2206 * char number message
2207 * e or E 0 " error"
2208 * w or W 0 " warning"
2209 * i or I 0 " info"
2210 * 0 0 ""
2211 * other 0 " c"
2212 * e or E n " error n"
2213 * w or W n " warning n"
2214 * i or I n " info n"
2215 * 0 n " error n"
2216 * other n " c n"
2217 * 1 x "" :helpgrep
2218 */
2219 static char_u *
2220qf_types(c, nr)
2221 int c, nr;
2222{
2223 static char_u buf[20];
2224 static char_u cc[3];
2225 char_u *p;
2226
2227 if (c == 'W' || c == 'w')
2228 p = (char_u *)" warning";
2229 else if (c == 'I' || c == 'i')
2230 p = (char_u *)" info";
2231 else if (c == 'E' || c == 'e' || (c == 0 && nr > 0))
2232 p = (char_u *)" error";
2233 else if (c == 0 || c == 1)
2234 p = (char_u *)"";
2235 else
2236 {
2237 cc[0] = ' ';
2238 cc[1] = c;
2239 cc[2] = NUL;
2240 p = cc;
2241 }
2242
2243 if (nr <= 0)
2244 return p;
2245
2246 sprintf((char *)buf, "%s %3d", (char *)p, nr);
2247 return buf;
2248}
2249
2250#if defined(FEAT_WINDOWS) || defined(PROTO)
2251/*
2252 * ":cwindow": open the quickfix window if we have errors to display,
2253 * close it if not.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002254 * ":lwindow": open the location list window if we have locations to display,
2255 * close it if not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 */
2257 void
2258ex_cwindow(eap)
2259 exarg_T *eap;
2260{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002261 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 win_T *win;
2263
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002264 if (eap->cmdidx == CMD_lwindow)
2265 {
2266 qi = GET_LOC_LIST(curwin);
2267 if (qi == NULL)
2268 return;
2269 }
2270
2271 /* Look for an existing quickfix window. */
2272 win = qf_find_win(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273
2274 /*
2275 * If a quickfix window is open but we have no errors to display,
2276 * close the window. If a quickfix window is not open, then open
2277 * it if we have errors; otherwise, leave it closed.
2278 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002279 if (qi->qf_lists[qi->qf_curlist].qf_nonevalid
Bram Moolenaard236ac02011-05-05 17:14:14 +02002280 || qi->qf_lists[qi->qf_curlist].qf_count == 0
Bram Moolenaard68071d2006-05-02 22:08:30 +00002281 || qi->qf_curlist >= qi->qf_listcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 {
2283 if (win != NULL)
2284 ex_cclose(eap);
2285 }
2286 else if (win == NULL)
2287 ex_copen(eap);
2288}
2289
2290/*
2291 * ":cclose": close the window showing the list of errors.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002292 * ":lclose": close the window showing the location list
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 void
2295ex_cclose(eap)
2296 exarg_T *eap;
2297{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002298 win_T *win = NULL;
2299 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002301 if (eap->cmdidx == CMD_lclose || eap->cmdidx == CMD_lwindow)
2302 {
2303 qi = GET_LOC_LIST(curwin);
2304 if (qi == NULL)
2305 return;
2306 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002308 /* Find existing quickfix window and close it. */
2309 win = qf_find_win(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 if (win != NULL)
2311 win_close(win, FALSE);
2312}
2313
2314/*
2315 * ":copen": open a window that shows the list of errors.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002316 * ":lopen": open a window that shows the location list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 */
2318 void
2319ex_copen(eap)
2320 exarg_T *eap;
2321{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002322 qf_info_T *qi = &ql_info;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 int height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 win_T *win;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002325 tabpage_T *prevtab = curtab;
Bram Moolenaar9c102382006-05-03 21:26:49 +00002326 buf_T *qf_buf;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002327 win_T *oldwin = curwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002329 if (eap->cmdidx == CMD_lopen || eap->cmdidx == CMD_lwindow)
2330 {
2331 qi = GET_LOC_LIST(curwin);
2332 if (qi == NULL)
2333 {
2334 EMSG(_(e_loclist));
2335 return;
2336 }
2337 }
2338
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 if (eap->addr_count != 0)
2340 height = eap->line2;
2341 else
2342 height = QF_WINHEIGHT;
2343
2344#ifdef FEAT_VISUAL
2345 reset_VIsual_and_resel(); /* stop Visual mode */
2346#endif
2347#ifdef FEAT_GUI
2348 need_mouse_correct = TRUE;
2349#endif
2350
2351 /*
2352 * Find existing quickfix window, or open a new one.
2353 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002354 win = qf_find_win(qi);
2355
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002356 if (win != NULL && cmdmod.tab == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 win_goto(win);
2358 else
2359 {
Bram Moolenaar9c102382006-05-03 21:26:49 +00002360 qf_buf = qf_find_buf(qi);
2361
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 /* The current window becomes the previous window afterwards. */
2363 win = curwin;
2364
Bram Moolenaar77642c02012-11-20 17:55:10 +01002365 if ((eap->cmdidx == CMD_copen || eap->cmdidx == CMD_cwindow)
2366 && cmdmod.split == 0)
2367 /* Create the new window at the very bottom, except when
2368 * :belowright or :aboveleft is used. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002369 win_goto(lastwin);
Bram Moolenaar884ae642009-02-22 01:37:59 +00002370 if (win_split(height, WSP_BELOW | WSP_NEWLOC) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 return; /* not enough room for window */
Bram Moolenaar3368ea22010-09-21 16:56:35 +02002372 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002374 if (eap->cmdidx == CMD_lopen || eap->cmdidx == CMD_lwindow)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002376 /*
2377 * For the location list window, create a reference to the
2378 * location list from the window 'win'.
2379 */
2380 curwin->w_llist_ref = win->w_llist;
2381 win->w_llist->qf_refcount++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002383
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002384 if (oldwin != curwin)
2385 oldwin = NULL; /* don't store info when in another window */
Bram Moolenaar9c102382006-05-03 21:26:49 +00002386 if (qf_buf != NULL)
2387 /* Use the existing quickfix buffer */
2388 (void)do_ecmd(qf_buf->b_fnum, NULL, NULL, NULL, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002389 ECMD_HIDE + ECMD_OLDBUF, oldwin);
Bram Moolenaar9c102382006-05-03 21:26:49 +00002390 else
2391 {
2392 /* Create a new quickfix buffer */
Bram Moolenaar701f7af2008-11-15 13:12:07 +00002393 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, oldwin);
Bram Moolenaar9c102382006-05-03 21:26:49 +00002394 /* switch off 'swapfile' */
2395 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
2396 set_option_value((char_u *)"bt", 0L, (char_u *)"quickfix",
Bram Moolenaar838bb712006-03-11 21:24:08 +00002397 OPT_LOCAL);
Bram Moolenaar9c102382006-05-03 21:26:49 +00002398 set_option_value((char_u *)"bh", 0L, (char_u *)"wipe", OPT_LOCAL);
Bram Moolenaar4161dcc2010-12-02 15:33:21 +01002399 RESET_BINDING(curwin);
Bram Moolenaar04c0f8a2009-04-29 09:52:12 +00002400#ifdef FEAT_DIFF
2401 curwin->w_p_diff = FALSE;
2402#endif
2403#ifdef FEAT_FOLDING
2404 set_option_value((char_u *)"fdm", 0L, (char_u *)"manual",
2405 OPT_LOCAL);
2406#endif
Bram Moolenaar9c102382006-05-03 21:26:49 +00002407 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002409 /* Only set the height when still in the same tab page and there is no
2410 * window to the side. */
2411 if (curtab == prevtab
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002412#ifdef FEAT_VERTSPLIT
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002413 && curwin->w_width == Columns
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002414#endif
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002415 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 win_setheight(height);
2417 curwin->w_p_wfh = TRUE; /* set 'winfixheight' */
2418 if (win_valid(win))
2419 prevwin = win;
2420 }
2421
2422 /*
2423 * Fill the buffer with the quickfix list.
2424 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002425 qf_fill_buffer(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426
Bram Moolenaar7fd73202010-07-25 16:58:46 +02002427 if (qi->qf_lists[qi->qf_curlist].qf_title != NULL)
Bram Moolenaarc95e3262011-08-10 18:36:54 +02002428 qf_set_title(qi);
Bram Moolenaar7fd73202010-07-25 16:58:46 +02002429
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002430 curwin->w_cursor.lnum = qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 curwin->w_cursor.col = 0;
2432 check_cursor();
2433 update_topline(); /* scroll to show the line */
2434}
2435
2436/*
2437 * Return the number of the current entry (line number in the quickfix
2438 * window).
2439 */
2440 linenr_T
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002441qf_current_entry(wp)
2442 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002444 qf_info_T *qi = &ql_info;
2445
2446 if (IS_LL_WINDOW(wp))
2447 /* In the location list window, use the referenced location list */
2448 qi = wp->w_llist_ref;
2449
2450 return qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451}
2452
2453/*
2454 * Update the cursor position in the quickfix window to the current error.
2455 * Return TRUE if there is a quickfix window.
2456 */
2457 static int
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002458qf_win_pos_update(qi, old_qf_index)
2459 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 int old_qf_index; /* previous qf_index or zero */
2461{
2462 win_T *win;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002463 int qf_index = qi->qf_lists[qi->qf_curlist].qf_index;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464
2465 /*
2466 * Put the cursor on the current error in the quickfix window, so that
2467 * it's viewable.
2468 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002469 win = qf_find_win(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 if (win != NULL
2471 && qf_index <= win->w_buffer->b_ml.ml_line_count
2472 && old_qf_index != qf_index)
2473 {
2474 win_T *old_curwin = curwin;
2475
2476 curwin = win;
2477 curbuf = win->w_buffer;
2478 if (qf_index > old_qf_index)
2479 {
2480 curwin->w_redraw_top = old_qf_index;
2481 curwin->w_redraw_bot = qf_index;
2482 }
2483 else
2484 {
2485 curwin->w_redraw_top = qf_index;
2486 curwin->w_redraw_bot = old_qf_index;
2487 }
2488 curwin->w_cursor.lnum = qf_index;
2489 curwin->w_cursor.col = 0;
2490 update_topline(); /* scroll to show the line */
2491 redraw_later(VALID);
2492 curwin->w_redr_status = TRUE; /* update ruler */
2493 curwin = old_curwin;
2494 curbuf = curwin->w_buffer;
2495 }
2496 return win != NULL;
2497}
2498
2499/*
Bram Moolenaar9c102382006-05-03 21:26:49 +00002500 * Check whether the given window is displaying the specified quickfix/location
2501 * list buffer
2502 */
2503 static int
2504is_qf_win(win, qi)
2505 win_T *win;
2506 qf_info_T *qi;
2507{
2508 /*
2509 * A window displaying the quickfix buffer will have the w_llist_ref field
2510 * set to NULL.
2511 * A window displaying a location list buffer will have the w_llist_ref
2512 * pointing to the location list.
2513 */
2514 if (bt_quickfix(win->w_buffer))
2515 if ((qi == &ql_info && win->w_llist_ref == NULL)
2516 || (qi != &ql_info && win->w_llist_ref == qi))
2517 return TRUE;
2518
2519 return FALSE;
2520}
2521
2522/*
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002523 * Find a window displaying the quickfix/location list 'qi'
Bram Moolenaar9c102382006-05-03 21:26:49 +00002524 * Searches in only the windows opened in the current tab.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002525 */
2526 static win_T *
2527qf_find_win(qi)
2528 qf_info_T *qi;
2529{
2530 win_T *win;
2531
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002532 FOR_ALL_WINDOWS(win)
Bram Moolenaar9c102382006-05-03 21:26:49 +00002533 if (is_qf_win(win, qi))
2534 break;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002535
2536 return win;
2537}
2538
2539/*
Bram Moolenaar9c102382006-05-03 21:26:49 +00002540 * Find a quickfix buffer.
2541 * Searches in windows opened in all the tabs.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 */
2543 static buf_T *
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002544qf_find_buf(qi)
2545 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546{
Bram Moolenaar9c102382006-05-03 21:26:49 +00002547 tabpage_T *tp;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002548 win_T *win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549
Bram Moolenaar9c102382006-05-03 21:26:49 +00002550 FOR_ALL_TAB_WINDOWS(tp, win)
2551 if (is_qf_win(win, qi))
2552 return win->w_buffer;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002553
Bram Moolenaar9c102382006-05-03 21:26:49 +00002554 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555}
2556
2557/*
2558 * Find the quickfix buffer. If it exists, update the contents.
2559 */
2560 static void
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002561qf_update_buffer(qi)
2562 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563{
2564 buf_T *buf;
Bram Moolenaarc95e3262011-08-10 18:36:54 +02002565 win_T *win;
2566 win_T *curwin_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568
2569 /* Check if a buffer for the quickfix list exists. Update it. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002570 buf = qf_find_buf(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 if (buf != NULL)
2572 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 /* set curwin/curbuf to buf and save a few things */
2574 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002576 qf_fill_buffer(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577
Bram Moolenaarc95e3262011-08-10 18:36:54 +02002578 if (qi->qf_lists[qi->qf_curlist].qf_title != NULL
2579 && (win = qf_find_win(qi)) != NULL)
2580 {
2581 curwin_save = curwin;
2582 curwin = win;
2583 qf_set_title(qi);
2584 curwin = curwin_save;
2585
2586 }
2587
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 /* restore curwin/curbuf and a few other things */
2589 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002591 (void)qf_win_pos_update(qi, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 }
2593}
2594
Bram Moolenaarc95e3262011-08-10 18:36:54 +02002595 static void
2596qf_set_title(qi)
2597 qf_info_T *qi;
2598{
2599 set_internal_string_var((char_u *)"w:quickfix_title",
2600 qi->qf_lists[qi->qf_curlist].qf_title);
2601}
2602
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603/*
2604 * Fill current buffer with quickfix errors, replacing any previous contents.
2605 * curbuf must be the quickfix buffer!
2606 */
2607 static void
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002608qf_fill_buffer(qi)
2609 qf_info_T *qi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610{
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002611 linenr_T lnum;
2612 qfline_T *qfp;
2613 buf_T *errbuf;
2614 int len;
2615 int old_KeyTyped = KeyTyped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616
2617 /* delete all existing lines */
2618 while ((curbuf->b_ml.ml_flags & ML_EMPTY) == 0)
2619 (void)ml_delete((linenr_T)1, FALSE);
2620
2621 /* Check if there is anything to display */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002622 if (qi->qf_curlist < qi->qf_listcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 {
2624 /* Add one line for each error */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002625 qfp = qi->qf_lists[qi->qf_curlist].qf_start;
2626 for (lnum = 0; lnum < qi->qf_lists[qi->qf_curlist].qf_count; ++lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 {
2628 if (qfp->qf_fnum != 0
2629 && (errbuf = buflist_findnr(qfp->qf_fnum)) != NULL
2630 && errbuf->b_fname != NULL)
2631 {
2632 if (qfp->qf_type == 1) /* :helpgrep */
2633 STRCPY(IObuff, gettail(errbuf->b_fname));
2634 else
2635 STRCPY(IObuff, errbuf->b_fname);
2636 len = (int)STRLEN(IObuff);
2637 }
2638 else
2639 len = 0;
2640 IObuff[len++] = '|';
2641
2642 if (qfp->qf_lnum > 0)
2643 {
2644 sprintf((char *)IObuff + len, "%ld", qfp->qf_lnum);
2645 len += (int)STRLEN(IObuff + len);
2646
2647 if (qfp->qf_col > 0)
2648 {
2649 sprintf((char *)IObuff + len, " col %d", qfp->qf_col);
2650 len += (int)STRLEN(IObuff + len);
2651 }
2652
2653 sprintf((char *)IObuff + len, "%s",
2654 (char *)qf_types(qfp->qf_type, qfp->qf_nr));
2655 len += (int)STRLEN(IObuff + len);
2656 }
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002657 else if (qfp->qf_pattern != NULL)
2658 {
2659 qf_fmt_text(qfp->qf_pattern, IObuff + len, IOSIZE - len);
2660 len += (int)STRLEN(IObuff + len);
2661 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 IObuff[len++] = '|';
2663 IObuff[len++] = ' ';
2664
2665 /* Remove newlines and leading whitespace from the text.
2666 * For an unrecognized line keep the indent, the compiler may
2667 * mark a word with ^^^^. */
2668 qf_fmt_text(len > 3 ? skipwhite(qfp->qf_text) : qfp->qf_text,
2669 IObuff + len, IOSIZE - len);
2670
2671 if (ml_append(lnum, IObuff, (colnr_T)STRLEN(IObuff) + 1, FALSE)
2672 == FAIL)
2673 break;
2674 qfp = qfp->qf_next;
2675 }
2676 /* Delete the empty line which is now at the end */
2677 (void)ml_delete(lnum + 1, FALSE);
2678 }
2679
2680 /* correct cursor position */
2681 check_lnums(TRUE);
2682
2683 /* Set the 'filetype' to "qf" each time after filling the buffer. This
2684 * resembles reading a file into a buffer, it's more logical when using
2685 * autocommands. */
2686 set_option_value((char_u *)"ft", 0L, (char_u *)"qf", OPT_LOCAL);
2687 curbuf->b_p_ma = FALSE;
2688
2689#ifdef FEAT_AUTOCMD
Bram Moolenaar04c0f8a2009-04-29 09:52:12 +00002690 keep_filetype = TRUE; /* don't detect 'filetype' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 apply_autocmds(EVENT_BUFREADPOST, (char_u *)"quickfix", NULL,
2692 FALSE, curbuf);
2693 apply_autocmds(EVENT_BUFWINENTER, (char_u *)"quickfix", NULL,
2694 FALSE, curbuf);
Bram Moolenaar04c0f8a2009-04-29 09:52:12 +00002695 keep_filetype = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696#endif
2697
2698 /* make sure it will be redrawn */
2699 redraw_curbuf_later(NOT_VALID);
2700
2701 /* Restore KeyTyped, setting 'filetype' may reset it. */
2702 KeyTyped = old_KeyTyped;
2703}
2704
2705#endif /* FEAT_WINDOWS */
2706
2707/*
2708 * Return TRUE if "buf" is the quickfix buffer.
2709 */
2710 int
2711bt_quickfix(buf)
2712 buf_T *buf;
2713{
Bram Moolenaarfc573802011-12-30 15:01:59 +01002714 return buf != NULL && buf->b_p_bt[0] == 'q';
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715}
2716
2717/*
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002718 * Return TRUE if "buf" is a "nofile" or "acwrite" buffer.
2719 * This means the buffer name is not a file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 */
2721 int
2722bt_nofile(buf)
2723 buf_T *buf;
2724{
Bram Moolenaarfc573802011-12-30 15:01:59 +01002725 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f')
2726 || buf->b_p_bt[0] == 'a');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727}
2728
2729/*
2730 * Return TRUE if "buf" is a "nowrite" or "nofile" buffer.
2731 */
2732 int
2733bt_dontwrite(buf)
2734 buf_T *buf;
2735{
Bram Moolenaarfc573802011-12-30 15:01:59 +01002736 return buf != NULL && buf->b_p_bt[0] == 'n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737}
2738
2739 int
2740bt_dontwrite_msg(buf)
2741 buf_T *buf;
2742{
2743 if (bt_dontwrite(buf))
2744 {
2745 EMSG(_("E382: Cannot write, 'buftype' option is set"));
2746 return TRUE;
2747 }
2748 return FALSE;
2749}
2750
2751/*
2752 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide"
2753 * and 'bufhidden'.
2754 */
2755 int
2756buf_hide(buf)
2757 buf_T *buf;
2758{
2759 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */
2760 switch (buf->b_p_bh[0])
2761 {
2762 case 'u': /* "unload" */
2763 case 'w': /* "wipe" */
2764 case 'd': return FALSE; /* "delete" */
2765 case 'h': return TRUE; /* "hide" */
2766 }
2767 return (p_hid || cmdmod.hide);
2768}
2769
2770/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002771 * Return TRUE when using ":vimgrep" for ":grep".
2772 */
2773 int
Bram Moolenaar81695252004-12-29 20:58:21 +00002774grep_internal(cmdidx)
2775 cmdidx_T cmdidx;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002776{
Bram Moolenaar754b5602006-02-09 23:53:20 +00002777 return ((cmdidx == CMD_grep
2778 || cmdidx == CMD_lgrep
2779 || cmdidx == CMD_grepadd
2780 || cmdidx == CMD_lgrepadd)
Bram Moolenaar86b68352004-12-27 21:59:20 +00002781 && STRCMP("internal",
2782 *curbuf->b_p_gp == NUL ? p_gp : curbuf->b_p_gp) == 0);
2783}
2784
2785/*
Bram Moolenaara6557602006-02-04 22:43:20 +00002786 * Used for ":make", ":lmake", ":grep", ":lgrep", ":grepadd", and ":lgrepadd"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 */
2788 void
2789ex_make(eap)
2790 exarg_T *eap;
2791{
Bram Moolenaar7c626922005-02-07 22:01:03 +00002792 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 char_u *cmd;
2794 unsigned len;
Bram Moolenaara6557602006-02-04 22:43:20 +00002795 win_T *wp = NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002796 qf_info_T *qi = &ql_info;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002797 int res;
Bram Moolenaar7c626922005-02-07 22:01:03 +00002798#ifdef FEAT_AUTOCMD
2799 char_u *au_name = NULL;
2800
Bram Moolenaard88e02d2011-04-28 17:27:09 +02002801 /* Redirect ":grep" to ":vimgrep" if 'grepprg' is "internal". */
2802 if (grep_internal(eap->cmdidx))
2803 {
2804 ex_vimgrep(eap);
2805 return;
2806 }
2807
Bram Moolenaar7c626922005-02-07 22:01:03 +00002808 switch (eap->cmdidx)
2809 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00002810 case CMD_make: au_name = (char_u *)"make"; break;
2811 case CMD_lmake: au_name = (char_u *)"lmake"; break;
2812 case CMD_grep: au_name = (char_u *)"grep"; break;
2813 case CMD_lgrep: au_name = (char_u *)"lgrep"; break;
2814 case CMD_grepadd: au_name = (char_u *)"grepadd"; break;
2815 case CMD_lgrepadd: au_name = (char_u *)"lgrepadd"; break;
Bram Moolenaar7c626922005-02-07 22:01:03 +00002816 default: break;
2817 }
2818 if (au_name != NULL)
2819 {
2820 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name,
2821 curbuf->b_fname, TRUE, curbuf);
Bram Moolenaar1e015462005-09-25 22:16:38 +00002822# ifdef FEAT_EVAL
Bram Moolenaar7c626922005-02-07 22:01:03 +00002823 if (did_throw || force_abort)
2824 return;
Bram Moolenaar1e015462005-09-25 22:16:38 +00002825# endif
Bram Moolenaar7c626922005-02-07 22:01:03 +00002826 }
2827#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828
Bram Moolenaara6557602006-02-04 22:43:20 +00002829 if (eap->cmdidx == CMD_lmake || eap->cmdidx == CMD_lgrep
2830 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaara6557602006-02-04 22:43:20 +00002831 wp = curwin;
Bram Moolenaara6557602006-02-04 22:43:20 +00002832
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 autowrite_all();
Bram Moolenaar7c626922005-02-07 22:01:03 +00002834 fname = get_mef_name();
2835 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 return;
Bram Moolenaar7c626922005-02-07 22:01:03 +00002837 mch_remove(fname); /* in case it's not unique */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838
2839 /*
2840 * If 'shellpipe' empty: don't redirect to 'errorfile'.
2841 */
2842 len = (unsigned)STRLEN(p_shq) * 2 + (unsigned)STRLEN(eap->arg) + 1;
2843 if (*p_sp != NUL)
Bram Moolenaar7c626922005-02-07 22:01:03 +00002844 len += (unsigned)STRLEN(p_sp) + (unsigned)STRLEN(fname) + 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 cmd = alloc(len);
2846 if (cmd == NULL)
2847 return;
2848 sprintf((char *)cmd, "%s%s%s", (char *)p_shq, (char *)eap->arg,
2849 (char *)p_shq);
2850 if (*p_sp != NUL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002851 append_redir(cmd, len, p_sp, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 /*
2853 * Output a newline if there's something else than the :make command that
2854 * was typed (in which case the cursor is in column 0).
2855 */
2856 if (msg_col == 0)
2857 msg_didout = FALSE;
2858 msg_start();
2859 MSG_PUTS(":!");
2860 msg_outtrans(cmd); /* show what we are doing */
2861
2862 /* let the shell know if we are redirecting output or not */
2863 do_shell(cmd, *p_sp != NUL ? SHELL_DOOUT : 0);
2864
2865#ifdef AMIGA
2866 out_flush();
2867 /* read window status report and redraw before message */
2868 (void)char_avail();
2869#endif
2870
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002871 res = qf_init(wp, fname, (eap->cmdidx != CMD_make
Bram Moolenaara6557602006-02-04 22:43:20 +00002872 && eap->cmdidx != CMD_lmake) ? p_gefm : p_efm,
2873 (eap->cmdidx != CMD_grepadd
Bram Moolenaar7fd73202010-07-25 16:58:46 +02002874 && eap->cmdidx != CMD_lgrepadd),
2875 *eap->cmdlinep);
Bram Moolenaarefa8e802011-05-19 17:42:59 +02002876 if (wp != NULL)
2877 qi = GET_LOC_LIST(wp);
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002878#ifdef FEAT_AUTOCMD
2879 if (au_name != NULL)
Bram Moolenaarefa8e802011-05-19 17:42:59 +02002880 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002881 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
2882 curbuf->b_fname, TRUE, curbuf);
Bram Moolenaarefa8e802011-05-19 17:42:59 +02002883 if (qi->qf_curlist < qi->qf_listcount)
2884 res = qi->qf_lists[qi->qf_curlist].qf_count;
2885 else
2886 res = 0;
2887 }
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002888#endif
2889 if (res > 0 && !eap->forceit)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002890 qf_jump(qi, 0, 0, FALSE); /* display first error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891
Bram Moolenaar7c626922005-02-07 22:01:03 +00002892 mch_remove(fname);
2893 vim_free(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 vim_free(cmd);
2895}
2896
2897/*
2898 * Return the name for the errorfile, in allocated memory.
2899 * Find a new unique name when 'makeef' contains "##".
2900 * Returns NULL for error.
2901 */
2902 static char_u *
2903get_mef_name()
2904{
2905 char_u *p;
2906 char_u *name;
2907 static int start = -1;
2908 static int off = 0;
2909#ifdef HAVE_LSTAT
2910 struct stat sb;
2911#endif
2912
2913 if (*p_mef == NUL)
2914 {
2915 name = vim_tempname('e');
2916 if (name == NULL)
2917 EMSG(_(e_notmp));
2918 return name;
2919 }
2920
2921 for (p = p_mef; *p; ++p)
2922 if (p[0] == '#' && p[1] == '#')
2923 break;
2924
2925 if (*p == NUL)
2926 return vim_strsave(p_mef);
2927
2928 /* Keep trying until the name doesn't exist yet. */
2929 for (;;)
2930 {
2931 if (start == -1)
2932 start = mch_get_pid();
2933 else
2934 off += 19;
2935
2936 name = alloc((unsigned)STRLEN(p_mef) + 30);
2937 if (name == NULL)
2938 break;
2939 STRCPY(name, p_mef);
2940 sprintf((char *)name + (p - p_mef), "%d%d", start, off);
2941 STRCAT(name, p + 2);
2942 if (mch_getperm(name) < 0
2943#ifdef HAVE_LSTAT
2944 /* Don't accept a symbolic link, its a security risk. */
2945 && mch_lstat((char *)name, &sb) < 0
2946#endif
2947 )
2948 break;
2949 vim_free(name);
2950 }
2951 return name;
2952}
2953
2954/*
2955 * ":cc", ":crewind", ":cfirst" and ":clast".
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002956 * ":ll", ":lrewind", ":lfirst" and ":llast".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957 */
2958 void
2959ex_cc(eap)
2960 exarg_T *eap;
2961{
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002962 qf_info_T *qi = &ql_info;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002963
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002964 if (eap->cmdidx == CMD_ll
2965 || eap->cmdidx == CMD_lrewind
2966 || eap->cmdidx == CMD_lfirst
2967 || eap->cmdidx == CMD_llast)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002968 {
2969 qi = GET_LOC_LIST(curwin);
2970 if (qi == NULL)
2971 {
2972 EMSG(_(e_loclist));
2973 return;
2974 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002975 }
2976
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002977 qf_jump(qi, 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 eap->addr_count > 0
2979 ? (int)eap->line2
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002980 : (eap->cmdidx == CMD_cc || eap->cmdidx == CMD_ll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 ? 0
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002982 : (eap->cmdidx == CMD_crewind || eap->cmdidx == CMD_lrewind
2983 || eap->cmdidx == CMD_cfirst || eap->cmdidx == CMD_lfirst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 ? 1
2985 : 32767,
2986 eap->forceit);
2987}
2988
2989/*
2990 * ":cnext", ":cnfile", ":cNext" and ":cprevious".
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002991 * ":lnext", ":lNext", ":lprevious", ":lnfile", ":lNfile" and ":lpfile".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 */
2993 void
2994ex_cnext(eap)
2995 exarg_T *eap;
2996{
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002997 qf_info_T *qi = &ql_info;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00002998
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00002999 if (eap->cmdidx == CMD_lnext
3000 || eap->cmdidx == CMD_lNext
3001 || eap->cmdidx == CMD_lprevious
3002 || eap->cmdidx == CMD_lnfile
3003 || eap->cmdidx == CMD_lNfile
3004 || eap->cmdidx == CMD_lpfile)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003005 {
3006 qi = GET_LOC_LIST(curwin);
3007 if (qi == NULL)
3008 {
3009 EMSG(_(e_loclist));
3010 return;
3011 }
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003012 }
3013
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003014 qf_jump(qi, (eap->cmdidx == CMD_cnext || eap->cmdidx == CMD_lnext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015 ? FORWARD
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003016 : (eap->cmdidx == CMD_cnfile || eap->cmdidx == CMD_lnfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 ? FORWARD_FILE
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003018 : (eap->cmdidx == CMD_cpfile || eap->cmdidx == CMD_lpfile
3019 || eap->cmdidx == CMD_cNfile || eap->cmdidx == CMD_lNfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 ? BACKWARD_FILE
3021 : BACKWARD,
3022 eap->addr_count > 0 ? (int)eap->line2 : 1, eap->forceit);
3023}
3024
3025/*
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003026 * ":cfile"/":cgetfile"/":caddfile" commands.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003027 * ":lfile"/":lgetfile"/":laddfile" commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028 */
3029 void
3030ex_cfile(eap)
3031 exarg_T *eap;
3032{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003033 win_T *wp = NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003034 qf_info_T *qi = &ql_info;
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003035#ifdef FEAT_AUTOCMD
3036 char_u *au_name = NULL;
3037#endif
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003038
3039 if (eap->cmdidx == CMD_lfile || eap->cmdidx == CMD_lgetfile
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003040 || eap->cmdidx == CMD_laddfile)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003041 wp = curwin;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003042
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003043#ifdef FEAT_AUTOCMD
3044 switch (eap->cmdidx)
3045 {
3046 case CMD_cfile: au_name = (char_u *)"cfile"; break;
3047 case CMD_cgetfile: au_name = (char_u *)"cgetfile"; break;
3048 case CMD_caddfile: au_name = (char_u *)"caddfile"; break;
3049 case CMD_lfile: au_name = (char_u *)"lfile"; break;
3050 case CMD_lgetfile: au_name = (char_u *)"lgetfile"; break;
3051 case CMD_laddfile: au_name = (char_u *)"laddfile"; break;
3052 default: break;
3053 }
3054 if (au_name != NULL)
3055 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name, NULL, FALSE, curbuf);
3056#endif
Bram Moolenaar9028b102010-07-11 16:58:51 +02003057#ifdef FEAT_BROWSE
3058 if (cmdmod.browse)
3059 {
3060 char_u *browse_file = do_browse(0, (char_u *)_("Error file"), eap->arg,
3061 NULL, NULL, BROWSE_FILTER_ALL_FILES, NULL);
3062 if (browse_file == NULL)
3063 return;
3064 set_string_option_direct((char_u *)"ef", -1, browse_file, OPT_FREE, 0);
3065 vim_free(browse_file);
3066 }
3067 else
3068#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 if (*eap->arg != NUL)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003070 set_string_option_direct((char_u *)"ef", -1, eap->arg, OPT_FREE, 0);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003071
3072 /*
3073 * This function is used by the :cfile, :cgetfile and :caddfile
3074 * commands.
3075 * :cfile always creates a new quickfix list and jumps to the
3076 * first error.
3077 * :cgetfile creates a new quickfix list but doesn't jump to the
3078 * first error.
3079 * :caddfile adds to an existing quickfix list. If there is no
3080 * quickfix list then a new list is created.
3081 */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003082 if (qf_init(wp, p_ef, p_efm, (eap->cmdidx != CMD_caddfile
Bram Moolenaar7fd73202010-07-25 16:58:46 +02003083 && eap->cmdidx != CMD_laddfile),
3084 *eap->cmdlinep) > 0
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003085 && (eap->cmdidx == CMD_cfile
3086 || eap->cmdidx == CMD_lfile))
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003087 {
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003088#ifdef FEAT_AUTOCMD
3089 if (au_name != NULL)
3090 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, NULL, FALSE, curbuf);
3091#endif
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003092 if (wp != NULL)
3093 qi = GET_LOC_LIST(wp);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003094 qf_jump(qi, 0, 0, eap->forceit); /* display first error */
Bram Moolenaarc7453f52006-02-10 23:20:28 +00003095 }
Bram Moolenaar8ec1f852012-03-07 20:13:49 +01003096
3097 else
3098 {
3099#ifdef FEAT_AUTOCMD
3100 if (au_name != NULL)
3101 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, NULL, FALSE, curbuf);
3102#endif
3103 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104}
3105
3106/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003107 * ":vimgrep {pattern} file(s)"
Bram Moolenaara6557602006-02-04 22:43:20 +00003108 * ":vimgrepadd {pattern} file(s)"
3109 * ":lvimgrep {pattern} file(s)"
3110 * ":lvimgrepadd {pattern} file(s)"
Bram Moolenaar86b68352004-12-27 21:59:20 +00003111 */
3112 void
3113ex_vimgrep(eap)
3114 exarg_T *eap;
3115{
Bram Moolenaar81695252004-12-29 20:58:21 +00003116 regmmatch_T regmatch;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003117 int fcount;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003118 char_u **fnames;
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003119 char_u *fname;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003120 char_u *s;
3121 char_u *p;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003122 int fi;
Bram Moolenaara6557602006-02-04 22:43:20 +00003123 qf_info_T *qi = &ql_info;
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003124#ifdef FEAT_AUTOCMD
3125 qfline_T *cur_qf_start;
3126#endif
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003127 qfline_T *prevp = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003128 long lnum;
Bram Moolenaar81695252004-12-29 20:58:21 +00003129 buf_T *buf;
3130 int duplicate_name = FALSE;
3131 int using_dummy;
Bram Moolenaar1042fa32007-09-16 11:27:42 +00003132 int redraw_for_dummy = FALSE;
Bram Moolenaar81695252004-12-29 20:58:21 +00003133 int found_match;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003134 buf_T *first_match_buf = NULL;
3135 time_t seconds = 0;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003136 int save_mls;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003137#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
3138 char_u *save_ei = NULL;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003139#endif
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003140 aco_save_T aco;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003141 int flags = 0;
3142 colnr_T col;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003143 long tomatch;
Bram Moolenaard9462e32011-04-11 21:35:11 +02003144 char_u *dirname_start = NULL;
3145 char_u *dirname_now = NULL;
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003146 char_u *target_dir = NULL;
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003147#ifdef FEAT_AUTOCMD
3148 char_u *au_name = NULL;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003149
3150 switch (eap->cmdidx)
3151 {
Bram Moolenaard88e02d2011-04-28 17:27:09 +02003152 case CMD_vimgrep: au_name = (char_u *)"vimgrep"; break;
3153 case CMD_lvimgrep: au_name = (char_u *)"lvimgrep"; break;
3154 case CMD_vimgrepadd: au_name = (char_u *)"vimgrepadd"; break;
Bram Moolenaara6557602006-02-04 22:43:20 +00003155 case CMD_lvimgrepadd: au_name = (char_u *)"lvimgrepadd"; break;
Bram Moolenaard88e02d2011-04-28 17:27:09 +02003156 case CMD_grep: au_name = (char_u *)"grep"; break;
3157 case CMD_lgrep: au_name = (char_u *)"lgrep"; break;
3158 case CMD_grepadd: au_name = (char_u *)"grepadd"; break;
3159 case CMD_lgrepadd: au_name = (char_u *)"lgrepadd"; break;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003160 default: break;
3161 }
3162 if (au_name != NULL)
3163 {
3164 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name,
3165 curbuf->b_fname, TRUE, curbuf);
3166 if (did_throw || force_abort)
3167 return;
3168 }
3169#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00003170
Bram Moolenaar754b5602006-02-09 23:53:20 +00003171 if (eap->cmdidx == CMD_lgrep
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003172 || eap->cmdidx == CMD_lvimgrep
3173 || eap->cmdidx == CMD_lgrepadd
3174 || eap->cmdidx == CMD_lvimgrepadd)
Bram Moolenaara6557602006-02-04 22:43:20 +00003175 {
3176 qi = ll_get_or_alloc_list(curwin);
3177 if (qi == NULL)
3178 return;
Bram Moolenaara6557602006-02-04 22:43:20 +00003179 }
3180
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003181 if (eap->addr_count > 0)
3182 tomatch = eap->line2;
3183 else
3184 tomatch = MAXLNUM;
3185
Bram Moolenaar81695252004-12-29 20:58:21 +00003186 /* Get the search pattern: either white-separated or enclosed in // */
Bram Moolenaar86b68352004-12-27 21:59:20 +00003187 regmatch.regprog = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003188 p = skip_vimgrep_pat(eap->arg, &s, &flags);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003189 if (p == NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003190 {
Bram Moolenaar2389c3c2005-05-22 22:07:59 +00003191 EMSG(_(e_invalpat));
Bram Moolenaar748bf032005-02-02 23:04:36 +00003192 goto theend;
Bram Moolenaar81695252004-12-29 20:58:21 +00003193 }
Bram Moolenaar60abe752013-03-07 16:32:54 +01003194
3195 if (s != NULL && *s == NUL)
3196 {
3197 /* Pattern is empty, use last search pattern. */
3198 if (last_search_pat() == NULL)
3199 {
3200 EMSG(_(e_noprevre));
3201 goto theend;
3202 }
3203 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC);
3204 }
3205 else
3206 regmatch.regprog = vim_regcomp(s, RE_MAGIC);
3207
Bram Moolenaar86b68352004-12-27 21:59:20 +00003208 if (regmatch.regprog == NULL)
3209 goto theend;
Bram Moolenaar5f2bb9f2005-01-11 21:29:04 +00003210 regmatch.rmm_ic = p_ic;
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003211 regmatch.rmm_maxcol = 0;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003212
3213 p = skipwhite(p);
3214 if (*p == NUL)
3215 {
3216 EMSG(_("E683: File name missing or invalid pattern"));
3217 goto theend;
3218 }
3219
Bram Moolenaar754b5602006-02-09 23:53:20 +00003220 if ((eap->cmdidx != CMD_grepadd && eap->cmdidx != CMD_lgrepadd &&
Bram Moolenaara6557602006-02-04 22:43:20 +00003221 eap->cmdidx != CMD_vimgrepadd && eap->cmdidx != CMD_lvimgrepadd)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003222 || qi->qf_curlist == qi->qf_listcount)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003223 /* make place for a new list */
Bram Moolenaar94116152012-11-28 17:41:59 +01003224 qf_new_list(qi, *eap->cmdlinep);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003225 else if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003226 /* Adding to existing list, find last entry. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003227 for (prevp = qi->qf_lists[qi->qf_curlist].qf_start;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003228 prevp->qf_next != prevp; prevp = prevp->qf_next)
3229 ;
3230
3231 /* parse the list of arguments */
Bram Moolenaar8f5c6f02012-06-29 12:57:06 +02003232 if (get_arglist_exp(p, &fcount, &fnames, TRUE) == FAIL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003233 goto theend;
3234 if (fcount == 0)
3235 {
3236 EMSG(_(e_nomatch));
3237 goto theend;
3238 }
3239
Bram Moolenaard9462e32011-04-11 21:35:11 +02003240 dirname_start = alloc(MAXPATHL);
3241 dirname_now = alloc(MAXPATHL);
3242 if (dirname_start == NULL || dirname_now == NULL)
3243 goto theend;
3244
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003245 /* Remember the current directory, because a BufRead autocommand that does
3246 * ":lcd %:p:h" changes the meaning of short path names. */
3247 mch_dirname(dirname_start, MAXPATHL);
3248
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003249#ifdef FEAT_AUTOCMD
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003250 /* Remember the value of qf_start, so that we can check for autocommands
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003251 * changing the current quickfix list. */
3252 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start;
3253#endif
3254
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003255 seconds = (time_t)0;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003256 for (fi = 0; fi < fcount && !got_int && tomatch > 0; ++fi)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003257 {
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003258 fname = shorten_fname1(fnames[fi]);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003259 if (time(NULL) > seconds)
3260 {
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003261 /* Display the file name every second or so, show the user we are
3262 * working on it. */
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003263 seconds = time(NULL);
3264 msg_start();
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003265 p = msg_strtrunc(fname, TRUE);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003266 if (p == NULL)
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003267 msg_outtrans(fname);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003268 else
3269 {
3270 msg_outtrans(p);
3271 vim_free(p);
3272 }
3273 msg_clr_eos();
3274 msg_didout = FALSE; /* overwrite this message */
3275 msg_nowait = TRUE; /* don't wait for this message */
3276 msg_col = 0;
3277 out_flush();
3278 }
3279
Bram Moolenaar81695252004-12-29 20:58:21 +00003280 buf = buflist_findname_exp(fnames[fi]);
3281 if (buf == NULL || buf->b_ml.ml_mfp == NULL)
3282 {
3283 /* Remember that a buffer with this name already exists. */
3284 duplicate_name = (buf != NULL);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003285 using_dummy = TRUE;
Bram Moolenaar1042fa32007-09-16 11:27:42 +00003286 redraw_for_dummy = TRUE;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003287
3288#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
3289 /* Don't do Filetype autocommands to avoid loading syntax and
3290 * indent scripts, a great speed improvement. */
3291 save_ei = au_event_disable(",Filetype");
3292#endif
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003293 /* Don't use modelines here, it's useless. */
3294 save_mls = p_mls;
3295 p_mls = 0;
Bram Moolenaar81695252004-12-29 20:58:21 +00003296
3297 /* Load file into a buffer, so that 'fileencoding' is detected,
3298 * autocommands applied, etc. */
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003299 buf = load_dummy_buffer(fname, dirname_start, dirname_now);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003300
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003301 p_mls = save_mls;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003302#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
3303 au_event_restore(save_ei);
3304#endif
Bram Moolenaar81695252004-12-29 20:58:21 +00003305 }
3306 else
3307 /* Use existing, loaded buffer. */
3308 using_dummy = FALSE;
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003309
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003310#ifdef FEAT_AUTOCMD
3311 if (cur_qf_start != qi->qf_lists[qi->qf_curlist].qf_start)
3312 {
3313 int idx;
3314
3315 /* Autocommands changed the quickfix list. Find the one we were
3316 * using and restore it. */
3317 for (idx = 0; idx < LISTCOUNT; ++idx)
3318 if (cur_qf_start == qi->qf_lists[idx].qf_start)
3319 {
3320 qi->qf_curlist = idx;
3321 break;
3322 }
3323 if (idx == LISTCOUNT)
3324 {
3325 /* List cannot be found, create a new one. */
3326 qf_new_list(qi, *eap->cmdlinep);
3327 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start;
3328 }
3329 }
3330#endif
3331
Bram Moolenaar81695252004-12-29 20:58:21 +00003332 if (buf == NULL)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003333 {
3334 if (!got_int)
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003335 smsg((char_u *)_("Cannot open file \"%s\""), fname);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003336 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00003337 else
3338 {
Bram Moolenaara3227e22006-03-08 21:32:40 +00003339 /* Try for a match in all lines of the buffer.
3340 * For ":1vimgrep" look for first match only. */
Bram Moolenaar81695252004-12-29 20:58:21 +00003341 found_match = FALSE;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003342 for (lnum = 1; lnum <= buf->b_ml.ml_line_count && tomatch > 0;
3343 ++lnum)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003344 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00003345 col = 0;
3346 while (vim_regexec_multi(&regmatch, curwin, buf, lnum,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003347 col, NULL) > 0)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003348 {
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003349 ;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003350 if (qf_add_entry(qi, &prevp,
Bram Moolenaar86b68352004-12-27 21:59:20 +00003351 NULL, /* dir */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003352 fname,
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00003353 0,
Bram Moolenaar81695252004-12-29 20:58:21 +00003354 ml_get_buf(buf,
3355 regmatch.startpos[0].lnum + lnum, FALSE),
3356 regmatch.startpos[0].lnum + lnum,
3357 regmatch.startpos[0].col + 1,
Bram Moolenaar05159a02005-02-26 23:04:13 +00003358 FALSE, /* vis_col */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003359 NULL, /* search pattern */
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003360 0, /* nr */
3361 0, /* type */
3362 TRUE /* valid */
Bram Moolenaar86b68352004-12-27 21:59:20 +00003363 ) == FAIL)
3364 {
3365 got_int = TRUE;
3366 break;
3367 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003368 found_match = TRUE;
3369 if (--tomatch == 0)
3370 break;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003371 if ((flags & VGR_GLOBAL) == 0
3372 || regmatch.endpos[0].lnum > 0)
3373 break;
3374 col = regmatch.endpos[0].col
3375 + (col == regmatch.endpos[0].col);
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003376 if (col > (colnr_T)STRLEN(ml_get_buf(buf, lnum, FALSE)))
Bram Moolenaar05159a02005-02-26 23:04:13 +00003377 break;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003378 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00003379 line_breakcheck();
Bram Moolenaar81695252004-12-29 20:58:21 +00003380 if (got_int)
3381 break;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003382 }
Bram Moolenaar321a9ec2012-12-12 15:55:20 +01003383#ifdef FEAT_AUTOCMD
3384 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start;
3385#endif
Bram Moolenaar81695252004-12-29 20:58:21 +00003386
3387 if (using_dummy)
3388 {
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003389 if (found_match && first_match_buf == NULL)
3390 first_match_buf = buf;
Bram Moolenaar81695252004-12-29 20:58:21 +00003391 if (duplicate_name)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003392 {
Bram Moolenaar81695252004-12-29 20:58:21 +00003393 /* Never keep a dummy buffer if there is another buffer
3394 * with the same name. */
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003395 wipe_dummy_buffer(buf, dirname_start);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003396 buf = NULL;
3397 }
Bram Moolenaara3227e22006-03-08 21:32:40 +00003398 else if (!cmdmod.hide
3399 || buf->b_p_bh[0] == 'u' /* "unload" */
3400 || buf->b_p_bh[0] == 'w' /* "wipe" */
3401 || buf->b_p_bh[0] == 'd') /* "delete" */
Bram Moolenaar81695252004-12-29 20:58:21 +00003402 {
Bram Moolenaara3227e22006-03-08 21:32:40 +00003403 /* When no match was found we don't need to remember the
3404 * buffer, wipe it out. If there was a match and it
3405 * wasn't the first one or we won't jump there: only
3406 * unload the buffer.
3407 * Ignore 'hidden' here, because it may lead to having too
3408 * many swap files. */
Bram Moolenaar81695252004-12-29 20:58:21 +00003409 if (!found_match)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003410 {
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003411 wipe_dummy_buffer(buf, dirname_start);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003412 buf = NULL;
3413 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00003414 else if (buf != first_match_buf || (flags & VGR_NOJUMP))
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003415 {
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003416 unload_dummy_buffer(buf, dirname_start);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003417 buf = NULL;
3418 }
Bram Moolenaar81695252004-12-29 20:58:21 +00003419 }
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003420
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003421 if (buf != NULL)
3422 {
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003423 /* If the buffer is still loaded we need to use the
3424 * directory we jumped to below. */
3425 if (buf == first_match_buf
3426 && target_dir == NULL
3427 && STRCMP(dirname_start, dirname_now) != 0)
3428 target_dir = vim_strsave(dirname_now);
3429
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003430 /* The buffer is still loaded, the Filetype autocommands
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003431 * need to be done now, in that buffer. And the modelines
Bram Moolenaara3227e22006-03-08 21:32:40 +00003432 * need to be done (again). But not the window-local
3433 * options! */
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003434 aucmd_prepbuf(&aco, buf);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003435#if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003436 apply_autocmds(EVENT_FILETYPE, buf->b_p_ft,
3437 buf->b_fname, TRUE, buf);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00003438#endif
Bram Moolenaara3227e22006-03-08 21:32:40 +00003439 do_modelines(OPT_NOWIN);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003440 aucmd_restbuf(&aco);
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003441 }
Bram Moolenaar81695252004-12-29 20:58:21 +00003442 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00003443 }
3444 }
3445
3446 FreeWild(fcount, fnames);
3447
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003448 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
3449 qi->qf_lists[qi->qf_curlist].qf_ptr = qi->qf_lists[qi->qf_curlist].qf_start;
3450 qi->qf_lists[qi->qf_curlist].qf_index = 1;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003451
3452#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003453 qf_update_buffer(qi);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003454#endif
3455
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003456#ifdef FEAT_AUTOCMD
3457 if (au_name != NULL)
3458 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
3459 curbuf->b_fname, TRUE, curbuf);
3460#endif
3461
Bram Moolenaar86b68352004-12-27 21:59:20 +00003462 /* Jump to first match. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003463 if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003464 {
3465 if ((flags & VGR_NOJUMP) == 0)
Bram Moolenaar1042fa32007-09-16 11:27:42 +00003466 {
3467 buf = curbuf;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003468 qf_jump(qi, 0, 0, eap->forceit);
Bram Moolenaar1042fa32007-09-16 11:27:42 +00003469 if (buf != curbuf)
3470 /* If we jumped to another buffer redrawing will already be
3471 * taken care of. */
3472 redraw_for_dummy = FALSE;
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003473
3474 /* Jump to the directory used after loading the buffer. */
3475 if (curbuf == first_match_buf && target_dir != NULL)
3476 {
3477 exarg_T ea;
3478
3479 ea.arg = target_dir;
3480 ea.cmdidx = CMD_lcd;
3481 ex_cd(&ea);
3482 }
Bram Moolenaar1042fa32007-09-16 11:27:42 +00003483 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00003484 }
Bram Moolenaar81695252004-12-29 20:58:21 +00003485 else
3486 EMSG2(_(e_nomatch2), s);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003487
Bram Moolenaar1042fa32007-09-16 11:27:42 +00003488 /* If we loaded a dummy buffer into the current window, the autocommands
3489 * may have messed up things, need to redraw and recompute folds. */
3490 if (redraw_for_dummy)
3491 {
3492#ifdef FEAT_FOLDING
3493 foldUpdateAll(curwin);
3494#else
3495 redraw_later(NOT_VALID);
3496#endif
3497 }
3498
Bram Moolenaar86b68352004-12-27 21:59:20 +00003499theend:
Bram Moolenaard9462e32011-04-11 21:35:11 +02003500 vim_free(dirname_now);
3501 vim_free(dirname_start);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00003502 vim_free(target_dir);
Bram Moolenaar473de612013-06-08 18:19:48 +02003503 vim_regfree(regmatch.regprog);
Bram Moolenaar86b68352004-12-27 21:59:20 +00003504}
3505
3506/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00003507 * Skip over the pattern argument of ":vimgrep /pat/[g][j]".
Bram Moolenaar748bf032005-02-02 23:04:36 +00003508 * Put the start of the pattern in "*s", unless "s" is NULL.
Bram Moolenaar05159a02005-02-26 23:04:13 +00003509 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP.
3510 * If "s" is not NULL terminate the pattern with a NUL.
3511 * Return a pointer to the char just past the pattern plus flags.
Bram Moolenaar748bf032005-02-02 23:04:36 +00003512 */
3513 char_u *
Bram Moolenaar05159a02005-02-26 23:04:13 +00003514skip_vimgrep_pat(p, s, flags)
3515 char_u *p;
3516 char_u **s;
3517 int *flags;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003518{
3519 int c;
3520
3521 if (vim_isIDc(*p))
3522 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00003523 /* ":vimgrep pattern fname" */
Bram Moolenaar748bf032005-02-02 23:04:36 +00003524 if (s != NULL)
3525 *s = p;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003526 p = skiptowhite(p);
3527 if (s != NULL && *p != NUL)
3528 *p++ = NUL;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003529 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00003530 else
3531 {
3532 /* ":vimgrep /pattern/[g][j] fname" */
3533 if (s != NULL)
3534 *s = p + 1;
3535 c = *p;
3536 p = skip_regexp(p + 1, c, TRUE, NULL);
3537 if (*p != c)
3538 return NULL;
3539
3540 /* Truncate the pattern. */
3541 if (s != NULL)
3542 *p = NUL;
3543 ++p;
3544
3545 /* Find the flags */
3546 while (*p == 'g' || *p == 'j')
3547 {
3548 if (flags != NULL)
3549 {
3550 if (*p == 'g')
3551 *flags |= VGR_GLOBAL;
3552 else
3553 *flags |= VGR_NOJUMP;
3554 }
3555 ++p;
3556 }
3557 }
Bram Moolenaar748bf032005-02-02 23:04:36 +00003558 return p;
3559}
3560
3561/*
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003562 * Restore current working directory to "dirname_start" if they differ, taking
3563 * into account whether it is set locally or globally.
3564 */
3565 static void
3566restore_start_dir(dirname_start)
3567 char_u *dirname_start;
3568{
3569 char_u *dirname_now = alloc(MAXPATHL);
3570
3571 if (NULL != dirname_now)
3572 {
3573 mch_dirname(dirname_now, MAXPATHL);
3574 if (STRCMP(dirname_start, dirname_now) != 0)
3575 {
3576 /* If the directory has changed, change it back by building up an
3577 * appropriate ex command and executing it. */
3578 exarg_T ea;
3579
3580 ea.arg = dirname_start;
3581 ea.cmdidx = (curwin->w_localdir == NULL) ? CMD_cd : CMD_lcd;
3582 ex_cd(&ea);
3583 }
Bram Moolenaarf1354352012-11-28 22:12:44 +01003584 vim_free(dirname_now);
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003585 }
3586}
3587
3588/*
3589 * Load file "fname" into a dummy buffer and return the buffer pointer,
3590 * placing the directory resulting from the buffer load into the
3591 * "resulting_dir" pointer. "resulting_dir" must be allocated by the caller
3592 * prior to calling this function. Restores directory to "dirname_start" prior
3593 * to returning, if autocmds or the 'autochdir' option have changed it.
3594 *
3595 * If creating the dummy buffer does not fail, must call unload_dummy_buffer()
3596 * or wipe_dummy_buffer() later!
3597 *
Bram Moolenaar81695252004-12-29 20:58:21 +00003598 * Returns NULL if it fails.
Bram Moolenaar81695252004-12-29 20:58:21 +00003599 */
3600 static buf_T *
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003601load_dummy_buffer(fname, dirname_start, resulting_dir)
Bram Moolenaar81695252004-12-29 20:58:21 +00003602 char_u *fname;
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003603 char_u *dirname_start; /* in: old directory */
3604 char_u *resulting_dir; /* out: new directory */
Bram Moolenaar81695252004-12-29 20:58:21 +00003605{
3606 buf_T *newbuf;
Bram Moolenaar0785ccf2010-11-24 16:32:05 +01003607 buf_T *newbuf_to_wipe = NULL;
Bram Moolenaar81695252004-12-29 20:58:21 +00003608 int failed = TRUE;
Bram Moolenaar81695252004-12-29 20:58:21 +00003609 aco_save_T aco;
Bram Moolenaar81695252004-12-29 20:58:21 +00003610
3611 /* Allocate a buffer without putting it in the buffer list. */
3612 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
3613 if (newbuf == NULL)
3614 return NULL;
3615
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00003616 /* Init the options. */
3617 buf_copy_options(newbuf, BCO_ENTER | BCO_NOHELP);
3618
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003619 /* need to open the memfile before putting the buffer in a window */
3620 if (ml_open(newbuf) == OK)
Bram Moolenaar81695252004-12-29 20:58:21 +00003621 {
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003622 /* set curwin/curbuf to buf and save a few things */
3623 aucmd_prepbuf(&aco, newbuf);
3624
3625 /* Need to set the filename for autocommands. */
3626 (void)setfname(curbuf, fname, NULL, FALSE);
3627
Bram Moolenaar81695252004-12-29 20:58:21 +00003628 /* Create swap file now to avoid the ATTENTION message. */
3629 check_need_swap(TRUE);
3630
3631 /* Remove the "dummy" flag, otherwise autocommands may not
3632 * work. */
3633 curbuf->b_flags &= ~BF_DUMMY;
3634
3635 if (readfile(fname, NULL,
3636 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM,
3637 NULL, READ_NEW | READ_DUMMY) == OK
Bram Moolenaard68071d2006-05-02 22:08:30 +00003638 && !got_int
Bram Moolenaar81695252004-12-29 20:58:21 +00003639 && !(curbuf->b_flags & BF_NEW))
3640 {
3641 failed = FALSE;
3642 if (curbuf != newbuf)
3643 {
Bram Moolenaar0785ccf2010-11-24 16:32:05 +01003644 /* Bloody autocommands changed the buffer! Can happen when
3645 * using netrw and editing a remote file. Use the current
3646 * buffer instead, delete the dummy one after restoring the
3647 * window stuff. */
3648 newbuf_to_wipe = newbuf;
Bram Moolenaar81695252004-12-29 20:58:21 +00003649 newbuf = curbuf;
3650 }
3651 }
Bram Moolenaar81695252004-12-29 20:58:21 +00003652
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003653 /* restore curwin/curbuf and a few other things */
3654 aucmd_restbuf(&aco);
Bram Moolenaar0785ccf2010-11-24 16:32:05 +01003655 if (newbuf_to_wipe != NULL && buf_valid(newbuf_to_wipe))
3656 wipe_buffer(newbuf_to_wipe, FALSE);
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003657 }
Bram Moolenaar81695252004-12-29 20:58:21 +00003658
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003659 /*
3660 * When autocommands/'autochdir' option changed directory: go back.
3661 * Let the caller know what the resulting dir was first, in case it is
3662 * important.
3663 */
3664 mch_dirname(resulting_dir, MAXPATHL);
3665 restore_start_dir(dirname_start);
3666
Bram Moolenaar81695252004-12-29 20:58:21 +00003667 if (!buf_valid(newbuf))
3668 return NULL;
3669 if (failed)
3670 {
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003671 wipe_dummy_buffer(newbuf, dirname_start);
Bram Moolenaar81695252004-12-29 20:58:21 +00003672 return NULL;
3673 }
3674 return newbuf;
3675}
3676
3677/*
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003678 * Wipe out the dummy buffer that load_dummy_buffer() created. Restores
3679 * directory to "dirname_start" prior to returning, if autocmds or the
3680 * 'autochdir' option have changed it.
Bram Moolenaar81695252004-12-29 20:58:21 +00003681 */
3682 static void
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003683wipe_dummy_buffer(buf, dirname_start)
Bram Moolenaar81695252004-12-29 20:58:21 +00003684 buf_T *buf;
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003685 char_u *dirname_start;
Bram Moolenaar81695252004-12-29 20:58:21 +00003686{
3687 if (curbuf != buf) /* safety check */
Bram Moolenaard68071d2006-05-02 22:08:30 +00003688 {
3689#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
3690 cleanup_T cs;
3691
3692 /* Reset the error/interrupt/exception state here so that aborting()
3693 * returns FALSE when wiping out the buffer. Otherwise it doesn't
3694 * work when got_int is set. */
3695 enter_cleanup(&cs);
3696#endif
3697
Bram Moolenaar81695252004-12-29 20:58:21 +00003698 wipe_buffer(buf, FALSE);
Bram Moolenaard68071d2006-05-02 22:08:30 +00003699
3700#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
3701 /* Restore the error/interrupt/exception state if not discarded by a
3702 * new aborting error, interrupt, or uncaught exception. */
3703 leave_cleanup(&cs);
3704#endif
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003705 /* When autocommands/'autochdir' option changed directory: go back. */
3706 restore_start_dir(dirname_start);
Bram Moolenaard68071d2006-05-02 22:08:30 +00003707 }
Bram Moolenaar81695252004-12-29 20:58:21 +00003708}
3709
3710/*
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003711 * Unload the dummy buffer that load_dummy_buffer() created. Restores
3712 * directory to "dirname_start" prior to returning, if autocmds or the
3713 * 'autochdir' option have changed it.
Bram Moolenaar81695252004-12-29 20:58:21 +00003714 */
3715 static void
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003716unload_dummy_buffer(buf, dirname_start)
Bram Moolenaar81695252004-12-29 20:58:21 +00003717 buf_T *buf;
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003718 char_u *dirname_start;
Bram Moolenaar81695252004-12-29 20:58:21 +00003719{
3720 if (curbuf != buf) /* safety check */
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003721 {
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003722 close_buffer(NULL, buf, DOBUF_UNLOAD, FALSE);
Bram Moolenaar7f51a822012-04-25 18:57:21 +02003723
3724 /* When autocommands/'autochdir' option changed directory: go back. */
3725 restore_start_dir(dirname_start);
3726 }
Bram Moolenaar81695252004-12-29 20:58:21 +00003727}
3728
Bram Moolenaar05159a02005-02-26 23:04:13 +00003729#if defined(FEAT_EVAL) || defined(PROTO)
3730/*
3731 * Add each quickfix error to list "list" as a dictionary.
3732 */
3733 int
Bram Moolenaar17c7c012006-01-26 22:25:15 +00003734get_errorlist(wp, list)
3735 win_T *wp;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003736 list_T *list;
3737{
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003738 qf_info_T *qi = &ql_info;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003739 dict_T *dict;
3740 char_u buf[2];
3741 qfline_T *qfp;
3742 int i;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00003743 int bufnum;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003744
Bram Moolenaar17c7c012006-01-26 22:25:15 +00003745 if (wp != NULL)
3746 {
3747 qi = GET_LOC_LIST(wp);
3748 if (qi == NULL)
3749 return FAIL;
3750 }
3751
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003752 if (qi->qf_curlist >= qi->qf_listcount
Bram Moolenaar87b5ca52006-03-04 21:55:31 +00003753 || qi->qf_lists[qi->qf_curlist].qf_count == 0)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003754 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003755
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003756 qfp = qi->qf_lists[qi->qf_curlist].qf_start;
3757 for (i = 1; !got_int && i <= qi->qf_lists[qi->qf_curlist].qf_count; ++i)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003758 {
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00003759 /* Handle entries with a non-existing buffer number. */
3760 bufnum = qfp->qf_fnum;
3761 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL))
3762 bufnum = 0;
3763
Bram Moolenaar05159a02005-02-26 23:04:13 +00003764 if ((dict = dict_alloc()) == NULL)
3765 return FAIL;
3766 if (list_append_dict(list, dict) == FAIL)
3767 return FAIL;
3768
3769 buf[0] = qfp->qf_type;
3770 buf[1] = NUL;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00003771 if ( dict_add_nr_str(dict, "bufnr", (long)bufnum, NULL) == FAIL
Bram Moolenaar05159a02005-02-26 23:04:13 +00003772 || dict_add_nr_str(dict, "lnum", (long)qfp->qf_lnum, NULL) == FAIL
3773 || dict_add_nr_str(dict, "col", (long)qfp->qf_col, NULL) == FAIL
3774 || dict_add_nr_str(dict, "vcol", (long)qfp->qf_viscol, NULL) == FAIL
3775 || dict_add_nr_str(dict, "nr", (long)qfp->qf_nr, NULL) == FAIL
Bram Moolenaar53ed1922006-09-05 13:37:47 +00003776 || dict_add_nr_str(dict, "pattern", 0L,
3777 qfp->qf_pattern == NULL ? (char_u *)"" : qfp->qf_pattern) == FAIL
3778 || dict_add_nr_str(dict, "text", 0L,
3779 qfp->qf_text == NULL ? (char_u *)"" : qfp->qf_text) == FAIL
Bram Moolenaar05159a02005-02-26 23:04:13 +00003780 || dict_add_nr_str(dict, "type", 0L, buf) == FAIL
3781 || dict_add_nr_str(dict, "valid", (long)qfp->qf_valid, NULL) == FAIL)
3782 return FAIL;
3783
3784 qfp = qfp->qf_next;
3785 }
3786 return OK;
3787}
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003788
3789/*
3790 * Populate the quickfix list with the items supplied in the list
Bram Moolenaarbc226b62010-08-09 22:14:48 +02003791 * of dictionaries. "title" will be copied to w:quickfix_title
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003792 */
3793 int
Bram Moolenaarbc226b62010-08-09 22:14:48 +02003794set_errorlist(wp, list, action, title)
Bram Moolenaar17c7c012006-01-26 22:25:15 +00003795 win_T *wp;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003796 list_T *list;
Bram Moolenaar35c54e52005-05-20 21:25:31 +00003797 int action;
Bram Moolenaarbc226b62010-08-09 22:14:48 +02003798 char_u *title;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003799{
3800 listitem_T *li;
3801 dict_T *d;
3802 char_u *filename, *pattern, *text, *type;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00003803 int bufnum;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003804 long lnum;
3805 int col, nr;
3806 int vcol;
3807 qfline_T *prevp = NULL;
3808 int valid, status;
3809 int retval = OK;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003810 qf_info_T *qi = &ql_info;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00003811 int did_bufnr_emsg = FALSE;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003812
Bram Moolenaar17c7c012006-01-26 22:25:15 +00003813 if (wp != NULL)
3814 {
Bram Moolenaar280f1262006-01-30 00:14:18 +00003815 qi = ll_get_or_alloc_list(wp);
Bram Moolenaar17c7c012006-01-26 22:25:15 +00003816 if (qi == NULL)
3817 return FAIL;
3818 }
3819
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003820 if (action == ' ' || qi->qf_curlist == qi->qf_listcount)
Bram Moolenaar35c54e52005-05-20 21:25:31 +00003821 /* make place for a new list */
Bram Moolenaar94116152012-11-28 17:41:59 +01003822 qf_new_list(qi, title);
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003823 else if (action == 'a' && qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar35c54e52005-05-20 21:25:31 +00003824 /* Adding to existing list, find last entry. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003825 for (prevp = qi->qf_lists[qi->qf_curlist].qf_start;
Bram Moolenaar35c54e52005-05-20 21:25:31 +00003826 prevp->qf_next != prevp; prevp = prevp->qf_next)
3827 ;
3828 else if (action == 'r')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003829 qf_free(qi, qi->qf_curlist);
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003830
3831 for (li = list->lv_first; li != NULL; li = li->li_next)
3832 {
3833 if (li->li_tv.v_type != VAR_DICT)
3834 continue; /* Skip non-dict items */
3835
3836 d = li->li_tv.vval.v_dict;
3837 if (d == NULL)
3838 continue;
3839
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003840 filename = get_dict_string(d, (char_u *)"filename", TRUE);
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00003841 bufnum = get_dict_number(d, (char_u *)"bufnr");
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003842 lnum = get_dict_number(d, (char_u *)"lnum");
3843 col = get_dict_number(d, (char_u *)"col");
3844 vcol = get_dict_number(d, (char_u *)"vcol");
3845 nr = get_dict_number(d, (char_u *)"nr");
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00003846 type = get_dict_string(d, (char_u *)"type", TRUE);
3847 pattern = get_dict_string(d, (char_u *)"pattern", TRUE);
3848 text = get_dict_string(d, (char_u *)"text", TRUE);
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003849 if (text == NULL)
3850 text = vim_strsave((char_u *)"");
3851
3852 valid = TRUE;
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00003853 if ((filename == NULL && bufnum == 0) || (lnum == 0 && pattern == NULL))
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003854 valid = FALSE;
3855
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00003856 /* Mark entries with non-existing buffer number as not valid. Give the
3857 * error message only once. */
3858 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL))
3859 {
3860 if (!did_bufnr_emsg)
3861 {
3862 did_bufnr_emsg = TRUE;
3863 EMSGN(_("E92: Buffer %ld not found"), bufnum);
3864 }
3865 valid = FALSE;
3866 bufnum = 0;
3867 }
3868
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003869 status = qf_add_entry(qi, &prevp,
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003870 NULL, /* dir */
3871 filename,
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00003872 bufnum,
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003873 text,
3874 lnum,
3875 col,
3876 vcol, /* vis_col */
3877 pattern, /* search pattern */
3878 nr,
3879 type == NULL ? NUL : *type,
3880 valid);
3881
3882 vim_free(filename);
3883 vim_free(pattern);
3884 vim_free(text);
3885 vim_free(type);
3886
3887 if (status == FAIL)
3888 {
3889 retval = FAIL;
3890 break;
3891 }
3892 }
3893
Bram Moolenaarf9ddb942010-05-14 18:10:27 +02003894 if (qi->qf_lists[qi->qf_curlist].qf_index == 0)
Bram Moolenaard236ac02011-05-05 17:14:14 +02003895 /* no valid entry */
Bram Moolenaarf9ddb942010-05-14 18:10:27 +02003896 qi->qf_lists[qi->qf_curlist].qf_nonevalid = TRUE;
3897 else
3898 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003899 qi->qf_lists[qi->qf_curlist].qf_ptr = qi->qf_lists[qi->qf_curlist].qf_start;
3900 qi->qf_lists[qi->qf_curlist].qf_index = 1;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003901
3902#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003903 qf_update_buffer(qi);
Bram Moolenaar68b76a62005-03-25 21:53:48 +00003904#endif
3905
3906 return retval;
3907}
Bram Moolenaar05159a02005-02-26 23:04:13 +00003908#endif
3909
Bram Moolenaar81695252004-12-29 20:58:21 +00003910/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00003911 * ":[range]cbuffer [bufnr]" command.
Bram Moolenaara6557602006-02-04 22:43:20 +00003912 * ":[range]caddbuffer [bufnr]" command.
Bram Moolenaardb552d602006-03-23 22:59:57 +00003913 * ":[range]cgetbuffer [bufnr]" command.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003914 * ":[range]lbuffer [bufnr]" command.
Bram Moolenaara6557602006-02-04 22:43:20 +00003915 * ":[range]laddbuffer [bufnr]" command.
Bram Moolenaardb552d602006-03-23 22:59:57 +00003916 * ":[range]lgetbuffer [bufnr]" command.
Bram Moolenaar86b68352004-12-27 21:59:20 +00003917 */
3918 void
3919ex_cbuffer(eap)
3920 exarg_T *eap;
3921{
3922 buf_T *buf = NULL;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003923 qf_info_T *qi = &ql_info;
3924
Bram Moolenaardb552d602006-03-23 22:59:57 +00003925 if (eap->cmdidx == CMD_lbuffer || eap->cmdidx == CMD_lgetbuffer
3926 || eap->cmdidx == CMD_laddbuffer)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003927 {
3928 qi = ll_get_or_alloc_list(curwin);
3929 if (qi == NULL)
3930 return;
3931 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00003932
3933 if (*eap->arg == NUL)
3934 buf = curbuf;
3935 else if (*skipwhite(skipdigits(eap->arg)) == NUL)
3936 buf = buflist_findnr(atoi((char *)eap->arg));
3937 if (buf == NULL)
3938 EMSG(_(e_invarg));
3939 else if (buf->b_ml.ml_mfp == NULL)
3940 EMSG(_("E681: Buffer is not loaded"));
3941 else
3942 {
3943 if (eap->addr_count == 0)
3944 {
3945 eap->line1 = 1;
3946 eap->line2 = buf->b_ml.ml_line_count;
3947 }
3948 if (eap->line1 < 1 || eap->line1 > buf->b_ml.ml_line_count
3949 || eap->line2 < 1 || eap->line2 > buf->b_ml.ml_line_count)
3950 EMSG(_(e_invrange));
3951 else
Bram Moolenaar754b5602006-02-09 23:53:20 +00003952 {
Bram Moolenaar7fd73202010-07-25 16:58:46 +02003953 char_u *qf_title = *eap->cmdlinep;
3954
3955 if (buf->b_sfname)
3956 {
3957 vim_snprintf((char *)IObuff, IOSIZE, "%s (%s)",
3958 (char *)qf_title, (char *)buf->b_sfname);
3959 qf_title = IObuff;
3960 }
3961
Bram Moolenaardb552d602006-03-23 22:59:57 +00003962 if (qf_init_ext(qi, NULL, buf, NULL, p_efm,
3963 (eap->cmdidx != CMD_caddbuffer
3964 && eap->cmdidx != CMD_laddbuffer),
Bram Moolenaar7fd73202010-07-25 16:58:46 +02003965 eap->line1, eap->line2,
3966 qf_title) > 0
Bram Moolenaardb552d602006-03-23 22:59:57 +00003967 && (eap->cmdidx == CMD_cbuffer
3968 || eap->cmdidx == CMD_lbuffer))
Bram Moolenaar754b5602006-02-09 23:53:20 +00003969 qf_jump(qi, 0, 0, eap->forceit); /* display first error */
3970 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00003971 }
3972}
3973
Bram Moolenaar1e015462005-09-25 22:16:38 +00003974#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar86b68352004-12-27 21:59:20 +00003975/*
Bram Moolenaardb552d602006-03-23 22:59:57 +00003976 * ":cexpr {expr}", ":cgetexpr {expr}", ":caddexpr {expr}" command.
3977 * ":lexpr {expr}", ":lgetexpr {expr}", ":laddexpr {expr}" command.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003978 */
3979 void
3980ex_cexpr(eap)
3981 exarg_T *eap;
3982{
3983 typval_T *tv;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003984 qf_info_T *qi = &ql_info;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003985
Bram Moolenaardb552d602006-03-23 22:59:57 +00003986 if (eap->cmdidx == CMD_lexpr || eap->cmdidx == CMD_lgetexpr
3987 || eap->cmdidx == CMD_laddexpr)
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003988 {
3989 qi = ll_get_or_alloc_list(curwin);
3990 if (qi == NULL)
3991 return;
Bram Moolenaard12f5c12006-01-25 22:10:52 +00003992 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003993
Bram Moolenaar4770d092006-01-12 23:22:24 +00003994 /* Evaluate the expression. When the result is a string or a list we can
3995 * use it to fill the errorlist. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00003996 tv = eval_expr(eap->arg, NULL);
Bram Moolenaar4770d092006-01-12 23:22:24 +00003997 if (tv != NULL)
3998 {
3999 if ((tv->v_type == VAR_STRING && tv->vval.v_string != NULL)
4000 || (tv->v_type == VAR_LIST && tv->vval.v_list != NULL))
4001 {
Bram Moolenaardb552d602006-03-23 22:59:57 +00004002 if (qf_init_ext(qi, NULL, NULL, tv, p_efm,
4003 (eap->cmdidx != CMD_caddexpr
4004 && eap->cmdidx != CMD_laddexpr),
Bram Moolenaar7fd73202010-07-25 16:58:46 +02004005 (linenr_T)0, (linenr_T)0, *eap->cmdlinep) > 0
Bram Moolenaardb552d602006-03-23 22:59:57 +00004006 && (eap->cmdidx == CMD_cexpr
4007 || eap->cmdidx == CMD_lexpr))
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004008 qf_jump(qi, 0, 0, eap->forceit); /* display first error */
Bram Moolenaar4770d092006-01-12 23:22:24 +00004009 }
4010 else
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00004011 EMSG(_("E777: String or List expected"));
Bram Moolenaar4770d092006-01-12 23:22:24 +00004012 free_tv(tv);
4013 }
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004014}
Bram Moolenaar1e015462005-09-25 22:16:38 +00004015#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00004016
4017/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 * ":helpgrep {pattern}"
4019 */
4020 void
4021ex_helpgrep(eap)
4022 exarg_T *eap;
4023{
4024 regmatch_T regmatch;
4025 char_u *save_cpo;
4026 char_u *p;
4027 int fcount;
4028 char_u **fnames;
4029 FILE *fd;
4030 int fi;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004031 qfline_T *prevp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032 long lnum;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004033#ifdef FEAT_MULTI_LANG
4034 char_u *lang;
4035#endif
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004036 qf_info_T *qi = &ql_info;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004037 int new_qi = FALSE;
4038 win_T *wp;
Bram Moolenaar73633f82012-01-20 13:39:07 +01004039#ifdef FEAT_AUTOCMD
4040 char_u *au_name = NULL;
4041#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004043#ifdef FEAT_MULTI_LANG
4044 /* Check for a specified language */
4045 lang = check_help_lang(eap->arg);
4046#endif
4047
Bram Moolenaar73633f82012-01-20 13:39:07 +01004048#ifdef FEAT_AUTOCMD
4049 switch (eap->cmdidx)
4050 {
4051 case CMD_helpgrep: au_name = (char_u *)"helpgrep"; break;
4052 case CMD_lhelpgrep: au_name = (char_u *)"lhelpgrep"; break;
4053 default: break;
4054 }
4055 if (au_name != NULL)
4056 {
4057 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name,
4058 curbuf->b_fname, TRUE, curbuf);
4059 if (did_throw || force_abort)
4060 return;
4061 }
4062#endif
4063
4064 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
4065 save_cpo = p_cpo;
4066 p_cpo = empty_option;
4067
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004068 if (eap->cmdidx == CMD_lhelpgrep)
4069 {
4070 /* Find an existing help window */
4071 FOR_ALL_WINDOWS(wp)
4072 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
4073 break;
4074
4075 if (wp == NULL) /* Help window not found */
4076 qi = NULL;
4077 else
4078 qi = wp->w_llist;
4079
4080 if (qi == NULL)
4081 {
4082 /* Allocate a new location list for help text matches */
4083 if ((qi = ll_new_list()) == NULL)
4084 return;
4085 new_qi = TRUE;
4086 }
4087 }
4088
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 regmatch.regprog = vim_regcomp(eap->arg, RE_MAGIC + RE_STRING);
4090 regmatch.rm_ic = FALSE;
4091 if (regmatch.regprog != NULL)
4092 {
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004093#ifdef FEAT_MBYTE
4094 vimconv_T vc;
4095
4096 /* Help files are in utf-8 or latin1, convert lines when 'encoding'
4097 * differs. */
4098 vc.vc_type = CONV_NONE;
4099 if (!enc_utf8)
4100 convert_setup(&vc, (char_u *)"utf-8", p_enc);
4101#endif
4102
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103 /* create a new quickfix list */
Bram Moolenaar94116152012-11-28 17:41:59 +01004104 qf_new_list(qi, *eap->cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105
4106 /* Go through all directories in 'runtimepath' */
4107 p = p_rtp;
4108 while (*p != NUL && !got_int)
4109 {
4110 copy_option_part(&p, NameBuff, MAXPATHL, ",");
4111
4112 /* Find all "*.txt" and "*.??x" files in the "doc" directory. */
4113 add_pathsep(NameBuff);
4114 STRCAT(NameBuff, "doc/*.\\(txt\\|??x\\)");
4115 if (gen_expand_wildcards(1, &NameBuff, &fcount,
4116 &fnames, EW_FILE|EW_SILENT) == OK
4117 && fcount > 0)
4118 {
4119 for (fi = 0; fi < fcount && !got_int; ++fi)
4120 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004121#ifdef FEAT_MULTI_LANG
4122 /* Skip files for a different language. */
4123 if (lang != NULL
4124 && STRNICMP(lang, fnames[fi]
4125 + STRLEN(fnames[fi]) - 3, 2) != 0
4126 && !(STRNICMP(lang, "en", 2) == 0
4127 && STRNICMP("txt", fnames[fi]
4128 + STRLEN(fnames[fi]) - 3, 3) == 0))
4129 continue;
4130#endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004131 fd = mch_fopen((char *)fnames[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 if (fd != NULL)
4133 {
4134 lnum = 1;
4135 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
4136 {
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004137 char_u *line = IObuff;
4138#ifdef FEAT_MBYTE
4139 /* Convert a line if 'encoding' is not utf-8 and
4140 * the line contains a non-ASCII character. */
4141 if (vc.vc_type != CONV_NONE
4142 && has_non_ascii(IObuff)) {
4143 line = string_convert(&vc, IObuff, NULL);
4144 if (line == NULL)
4145 line = IObuff;
4146 }
4147#endif
4148
4149 if (vim_regexec(&regmatch, line, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 {
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004151 int l = (int)STRLEN(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152
4153 /* remove trailing CR, LF, spaces, etc. */
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004154 while (l > 0 && line[l - 1] <= ' ')
4155 line[--l] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004157 if (qf_add_entry(qi, &prevp,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 NULL, /* dir */
4159 fnames[fi],
Bram Moolenaar48b66fb2007-02-04 01:58:18 +00004160 0,
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004161 line,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 lnum,
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004163 (int)(regmatch.startp[0] - line)
Bram Moolenaar81695252004-12-29 20:58:21 +00004164 + 1, /* col */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004165 FALSE, /* vis_col */
Bram Moolenaar68b76a62005-03-25 21:53:48 +00004166 NULL, /* search pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 0, /* nr */
4168 1, /* type */
4169 TRUE /* valid */
4170 ) == FAIL)
4171 {
4172 got_int = TRUE;
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004173#ifdef FEAT_MBYTE
4174 if (line != IObuff)
4175 vim_free(line);
4176#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 break;
4178 }
4179 }
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004180#ifdef FEAT_MBYTE
4181 if (line != IObuff)
4182 vim_free(line);
4183#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 ++lnum;
4185 line_breakcheck();
4186 }
4187 fclose(fd);
4188 }
4189 }
4190 FreeWild(fcount, fnames);
4191 }
4192 }
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004193
Bram Moolenaar473de612013-06-08 18:19:48 +02004194 vim_regfree(regmatch.regprog);
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004195#ifdef FEAT_MBYTE
4196 if (vc.vc_type != CONV_NONE)
4197 convert_setup(&vc, NULL, NULL);
4198#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004200 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE;
4201 qi->qf_lists[qi->qf_curlist].qf_ptr =
4202 qi->qf_lists[qi->qf_curlist].qf_start;
4203 qi->qf_lists[qi->qf_curlist].qf_index = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 }
4205
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +00004206 if (p_cpo == empty_option)
4207 p_cpo = save_cpo;
4208 else
4209 /* Darn, some plugin changed the value. */
4210 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211
4212#ifdef FEAT_WINDOWS
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004213 qf_update_buffer(qi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214#endif
4215
Bram Moolenaar73633f82012-01-20 13:39:07 +01004216#ifdef FEAT_AUTOCMD
4217 if (au_name != NULL)
4218 {
4219 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
4220 curbuf->b_fname, TRUE, curbuf);
4221 if (!new_qi && qi != &ql_info && qf_find_buf(qi) == NULL)
4222 /* autocommands made "qi" invalid */
4223 return;
4224 }
4225#endif
4226
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227 /* Jump to first match. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00004228 if (qi->qf_lists[qi->qf_curlist].qf_count > 0)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004229 qf_jump(qi, 0, 0, FALSE);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004230 else
4231 EMSG2(_(e_nomatch2), eap->arg);
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004232
4233 if (eap->cmdidx == CMD_lhelpgrep)
4234 {
4235 /* If the help window is not opened or if it already points to the
Bram Moolenaar754b5602006-02-09 23:53:20 +00004236 * correct location list, then free the new location list. */
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00004237 if (!curwin->w_buffer->b_help || curwin->w_llist == qi)
4238 {
4239 if (new_qi)
4240 ll_free_all(&qi);
4241 }
4242 else if (curwin->w_llist == NULL)
4243 curwin->w_llist = qi;
4244 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245}
4246
4247#endif /* FEAT_QUICKFIX */