Mercurial > vim
annotate src/quickfix.c @ 4040:cf01a5e21f06
Added tag v7-3-774 for changeset a8f5876e4981
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 23 Jan 2013 13:41:01 +0100 |
parents | 706c87d16d40 |
children | 07fef68eb018 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
2 * | |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * 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 | |
18 struct dir_stack_T | |
19 { | |
20 struct dir_stack_T *next; | |
21 char_u *dirname; | |
22 }; | |
23 | |
24 static struct dir_stack_T *dir_stack = NULL; | |
25 | |
26 /* | |
230 | 27 * For each error the next struct is allocated and linked in a list. |
7 | 28 */ |
230 | 29 typedef struct qfline_S qfline_T; |
30 struct qfline_S | |
7 | 31 { |
230 | 32 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 | |
7 | 43 :helpgrep */ |
230 | 44 char_u qf_valid; /* valid error message detected */ |
7 | 45 }; |
46 | |
47 /* | |
48 * There is a stack of error lists. | |
49 */ | |
50 #define LISTCOUNT 10 | |
51 | |
644 | 52 typedef struct qf_list_S |
7 | 53 { |
230 | 54 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 */ | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
59 char_u *qf_title; /* title derived from the command that created |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
60 * the error list */ |
644 | 61 } qf_list_T; |
62 | |
63 struct 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 | |
77 static qf_info_T ql_info; /* global quickfix list */ | |
7 | 78 |
230 | 79 #define FMT_PATTERNS 10 /* maximum number of % recognized */ |
7 | 80 |
81 /* | |
82 * Structure used to hold the info of one part of 'errorformat' | |
83 */ | |
789 | 84 typedef struct efm_S efm_T; |
85 struct efm_S | |
7 | 86 { |
87 regprog_T *prog; /* pre-formatted part of 'errorformat' */ | |
789 | 88 efm_T *next; /* pointer to next (NULL if last) */ |
7 | 89 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 */ | |
625 | 105 /* '+' include whole line in message */ |
789 | 106 int conthere; /* %> used */ |
7 | 107 }; |
108 | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
109 static 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)); |
3965 | 110 static void qf_new_list __ARGS((qf_info_T *qi, char_u *qf_title)); |
1571 | 111 static void ll_free_all __ARGS((qf_info_T **pqi)); |
1065 | 112 static 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)); |
1571 | 113 static qf_info_T *ll_new_list __ARGS((void)); |
644 | 114 static void qf_msg __ARGS((qf_info_T *qi)); |
115 static void qf_free __ARGS((qf_info_T *qi, int idx)); | |
7 | 116 static char_u *qf_types __ARGS((int, int)); |
117 static int qf_get_fnum __ARGS((char_u *, char_u *)); | |
118 static char_u *qf_push_dir __ARGS((char_u *, struct dir_stack_T **)); | |
119 static char_u *qf_pop_dir __ARGS((struct dir_stack_T **)); | |
120 static char_u *qf_guess_filepath __ARGS((char_u *)); | |
121 static void qf_fmt_text __ARGS((char_u *text, char_u *buf, int bufsize)); | |
122 static void qf_clean_dir_stack __ARGS((struct dir_stack_T **)); | |
123 #ifdef FEAT_WINDOWS | |
644 | 124 static int qf_win_pos_update __ARGS((qf_info_T *qi, int old_qf_index)); |
859 | 125 static int is_qf_win __ARGS((win_T *win, qf_info_T *qi)); |
644 | 126 static win_T *qf_find_win __ARGS((qf_info_T *qi)); |
127 static buf_T *qf_find_buf __ARGS((qf_info_T *qi)); | |
128 static void qf_update_buffer __ARGS((qf_info_T *qi)); | |
3016 | 129 static void qf_set_title __ARGS((qf_info_T *qi)); |
644 | 130 static void qf_fill_buffer __ARGS((qf_info_T *qi)); |
7 | 131 #endif |
132 static char_u *get_mef_name __ARGS((void)); | |
3490 | 133 static void restore_start_dir __ARGS((char_u *dirname_start)); |
134 static buf_T *load_dummy_buffer __ARGS((char_u *fname, char_u *dirname_start, char_u *resulting_dir)); | |
135 static void wipe_dummy_buffer __ARGS((buf_T *buf, char_u *dirname_start)); | |
136 static void unload_dummy_buffer __ARGS((buf_T *buf, char_u *dirname_start)); | |
665 | 137 static qf_info_T *ll_get_or_alloc_list __ARGS((win_T *)); |
7 | 138 |
644 | 139 /* 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 | |
7 | 149 /* |
41 | 150 * Read the errorfile "efile" into memory, line by line, building the error |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
151 * list. Set the error list's title to qf_title. |
7 | 152 * Return -1 for error, number of errors for success. |
153 */ | |
154 int | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
155 qf_init(wp, efile, errorformat, newlist, qf_title) |
644 | 156 win_T *wp; |
7 | 157 char_u *efile; |
158 char_u *errorformat; | |
159 int newlist; /* TRUE: start a new error list */ | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
160 char_u *qf_title; |
7 | 161 { |
644 | 162 qf_info_T *qi = &ql_info; |
163 | |
41 | 164 if (efile == NULL) |
165 return FAIL; | |
644 | 166 |
167 if (wp != NULL) | |
665 | 168 { |
169 qi = ll_get_or_alloc_list(wp); | |
170 if (qi == NULL) | |
171 return FAIL; | |
172 } | |
644 | 173 |
174 return qf_init_ext(qi, efile, curbuf, NULL, errorformat, newlist, | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
175 (linenr_T)0, (linenr_T)0, |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
176 qf_title); |
41 | 177 } |
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. | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
184 * Then "lnumfirst" and "lnumlast" specify the range of lines to use. |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
185 * Set the title of the list to "qf_title". |
41 | 186 * Return -1 for error, number of errors for success. |
187 */ | |
188 static int | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
189 qf_init_ext(qi, efile, buf, tv, errorformat, newlist, lnumfirst, lnumlast, |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
190 qf_title) |
644 | 191 qf_info_T *qi; |
41 | 192 char_u *efile; |
193 buf_T *buf; | |
446 | 194 typval_T *tv; |
41 | 195 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 */ | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
199 char_u *qf_title; |
41 | 200 { |
7 | 201 char_u *namebuf; |
202 char_u *errmsg; | |
230 | 203 char_u *pattern; |
7 | 204 char_u *fmtstr = NULL; |
205 int col = 0; | |
170 | 206 char_u use_viscol = FALSE; |
7 | 207 int type = 0; |
208 int valid; | |
41 | 209 linenr_T buflnum = lnumfirst; |
7 | 210 long lnum = 0L; |
211 int enr = 0; | |
41 | 212 FILE *fd = NULL; |
230 | 213 qfline_T *qfprev = NULL; /* init to make SASC shut up */ |
7 | 214 char_u *efmp; |
789 | 215 efm_T *fmt_first = NULL; |
216 efm_T *fmt_last = NULL; | |
217 efm_T *fmt_ptr; | |
218 efm_T *fmt_start = NULL; | |
7 | 219 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; | |
446 | 233 char_u *p_str = NULL; |
234 listitem_T *p_li = NULL; | |
7 | 235 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 { | |
502 | 243 {'f', ".\\+"}, /* only used when at end */ |
7 | 244 {'n', "\\d\\+"}, |
245 {'l', "\\d\\+"}, | |
246 {'c', "\\d\\+"}, | |
247 {'t', "."}, | |
248 {'m', ".\\+"}, | |
249 {'r', ".*"}, | |
3555 | 250 {'p', "[- .]*"}, |
230 | 251 {'v', "\\d\\+"}, |
252 {'s', ".\\+"} | |
7 | 253 }; |
254 | |
255 namebuf = alloc(CMDBUFFSIZE + 1); | |
256 errmsg = alloc(CMDBUFFSIZE + 1); | |
230 | 257 pattern = alloc(CMDBUFFSIZE + 1); |
258 if (namebuf == NULL || errmsg == NULL || pattern == NULL) | |
7 | 259 goto qf_init_end; |
260 | |
41 | 261 if (efile != NULL && (fd = mch_fopen((char *)efile, "r")) == NULL) |
7 | 262 { |
263 EMSG2(_(e_openerrf), efile); | |
264 goto qf_init_end; | |
265 } | |
266 | |
644 | 267 if (newlist || qi->qf_curlist == qi->qf_listcount) |
7 | 268 /* make place for a new list */ |
3965 | 269 qf_new_list(qi, qf_title); |
644 | 270 else if (qi->qf_lists[qi->qf_curlist].qf_count > 0) |
7 | 271 /* Adding to existing list, find last entry. */ |
644 | 272 for (qfprev = qi->qf_lists[qi->qf_curlist].qf_start; |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
273 qfprev->qf_next != qfprev; qfprev = qfprev->qf_next) |
7 | 274 ; |
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. */ | |
446 | 281 if (errorformat == p_efm && tv == NULL && *buf->b_p_efm != NUL) |
41 | 282 efm = buf->b_p_efm; |
7 | 283 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 | |
789 | 299 while (efm[0] != NUL) |
7 | 300 { |
301 /* | |
302 * Allocate a new eformat structure and put it at the end of the list | |
303 */ | |
789 | 304 fmt_ptr = (efm_T *)alloc_clear((unsigned)sizeof(efm_T)); |
7 | 305 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; | |
312 | |
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++ = '^'; | |
789 | 325 round = 0; |
7 | 326 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 | |
502 | 369 if (*efmp == 'f' && efmp[1] != NUL) |
7 | 370 { |
502 | 371 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 } | |
7 | 388 } |
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++ = '*'; | |
789 | 437 else if (*efmp == '>') |
438 fmt_ptr->conthere = TRUE; | |
7 | 439 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 | |
446 | 495 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 | |
7 | 503 /* |
504 * Read the lines in the error file one by one. | |
505 * Try to recognize one of the error formats in each line. | |
506 */ | |
41 | 507 while (!got_int) |
7 | 508 { |
41 | 509 /* Get the next line. */ |
510 if (fd == NULL) | |
511 { | |
446 | 512 if (tv != NULL) |
513 { | |
514 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) | |
835 | 524 len = (int)(p - p_str + 1); |
446 | 525 else |
835 | 526 len = (int)STRLEN(p_str); |
446 | 527 |
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 | |
835 | 544 len = (int)STRLEN(p_li->li_tv.vval.v_string); |
446 | 545 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 } | |
41 | 561 } |
562 else if (fgets((char *)IObuff, CMDBUFFSIZE - 2, fd) == NULL) | |
563 break; | |
564 | |
7 | 565 IObuff[CMDBUFFSIZE - 2] = NUL; /* for very long lines */ |
3002 | 566 #ifdef FEAT_MBYTE |
567 remove_bom(IObuff); | |
568 #endif | |
569 | |
7 | 570 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 | |
789 | 577 /* 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 | |
7 | 586 /* |
587 * Try to match each part of 'errorformat' until we find a complete | |
588 * match or no match. | |
589 */ | |
590 valid = TRUE; | |
591 restofline: | |
789 | 592 for ( ; fmt_ptr != NULL; fmt_ptr = fmt_ptr->next) |
7 | 593 { |
594 idx = fmt_ptr->prefix; | |
595 if (multiscan && vim_strchr((char_u *)"OPQ", idx) == NULL) | |
596 continue; | |
597 namebuf[0] = NUL; | |
230 | 598 pattern[0] = NUL; |
7 | 599 if (!multiscan) |
600 errmsg[0] = NUL; | |
601 lnum = 0; | |
602 col = 0; | |
170 | 603 use_viscol = FALSE; |
7 | 604 enr = -1; |
605 type = 0; | |
606 tail = NULL; | |
607 | |
608 regmatch.regprog = fmt_ptr->prog; | |
609 if (vim_regexec(®match, 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 /* | |
895 | 618 * 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. | |
7 | 621 */ |
622 if ((i = (int)fmt_ptr->addr[0]) > 0) /* %f */ | |
623 { | |
895 | 624 int c; |
625 | |
626 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL) | |
627 continue; | |
277 | 628 |
629 /* Expand ~/file and $HOME/file to full path. */ | |
895 | 630 c = *regmatch.endp[i]; |
277 | 631 *regmatch.endp[i] = NUL; |
632 expand_env(regmatch.startp[i], namebuf, CMDBUFFSIZE); | |
633 *regmatch.endp[i] = c; | |
634 | |
7 | 635 if (vim_strchr((char_u *)"OPQ", idx) != NULL |
277 | 636 && mch_getperm(namebuf) == -1) |
7 | 637 continue; |
638 } | |
639 if ((i = (int)fmt_ptr->addr[1]) > 0) /* %n */ | |
895 | 640 { |
641 if (regmatch.startp[i] == NULL) | |
642 continue; | |
7 | 643 enr = (int)atol((char *)regmatch.startp[i]); |
895 | 644 } |
7 | 645 if ((i = (int)fmt_ptr->addr[2]) > 0) /* %l */ |
895 | 646 { |
647 if (regmatch.startp[i] == NULL) | |
648 continue; | |
7 | 649 lnum = atol((char *)regmatch.startp[i]); |
895 | 650 } |
7 | 651 if ((i = (int)fmt_ptr->addr[3]) > 0) /* %c */ |
895 | 652 { |
653 if (regmatch.startp[i] == NULL) | |
654 continue; | |
7 | 655 col = (int)atol((char *)regmatch.startp[i]); |
895 | 656 } |
7 | 657 if ((i = (int)fmt_ptr->addr[4]) > 0) /* %t */ |
895 | 658 { |
659 if (regmatch.startp[i] == NULL) | |
660 continue; | |
7 | 661 type = *regmatch.startp[i]; |
895 | 662 } |
625 | 663 if (fmt_ptr->flags == '+' && !multiscan) /* %+ */ |
7 | 664 STRCPY(errmsg, IObuff); |
665 else if ((i = (int)fmt_ptr->addr[5]) > 0) /* %m */ | |
666 { | |
895 | 667 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL) |
668 continue; | |
7 | 669 len = (int)(regmatch.endp[i] - regmatch.startp[i]); |
418 | 670 vim_strncpy(errmsg, regmatch.startp[i], len); |
7 | 671 } |
672 if ((i = (int)fmt_ptr->addr[6]) > 0) /* %r */ | |
895 | 673 { |
674 if (regmatch.startp[i] == NULL) | |
675 continue; | |
7 | 676 tail = regmatch.startp[i]; |
895 | 677 } |
7 | 678 if ((i = (int)fmt_ptr->addr[7]) > 0) /* %p */ |
679 { | |
3555 | 680 char_u *match_ptr; |
681 | |
895 | 682 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL) |
683 continue; | |
3555 | 684 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; | |
7 | 697 } |
698 if ((i = (int)fmt_ptr->addr[8]) > 0) /* %v */ | |
699 { | |
895 | 700 if (regmatch.startp[i] == NULL) |
701 continue; | |
7 | 702 col = (int)atol((char *)regmatch.startp[i]); |
170 | 703 use_viscol = TRUE; |
7 | 704 } |
230 | 705 if ((i = (int)fmt_ptr->addr[9]) > 0) /* %s */ |
706 { | |
895 | 707 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL) |
708 continue; | |
230 | 709 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 } | |
7 | 718 break; |
719 } | |
720 } | |
721 multiscan = FALSE; | |
789 | 722 |
625 | 723 if (fmt_ptr == NULL || idx == 'D' || idx == 'X') |
7 | 724 { |
625 | 725 if (fmt_ptr != NULL) |
7 | 726 { |
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 */ | |
625 | 744 if (fmt_ptr == NULL) |
7 | 745 multiline = multiignore = FALSE; |
746 } | |
625 | 747 else if (fmt_ptr != NULL) |
7 | 748 { |
789 | 749 /* honor %> item */ |
750 if (fmt_ptr->conthere) | |
751 fmt_start = fmt_ptr; | |
752 | |
7 | 753 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; | |
170 | 779 qfprev->qf_viscol = use_viscol; |
7 | 780 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 { | |
1668 | 802 STRMOVE(IObuff, skipwhite(tail)); |
7 | 803 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 | |
644 | 816 if (qf_add_entry(qi, &qfprev, |
7 | 817 directory, |
129 | 818 (*namebuf || directory) |
7 | 819 ? namebuf |
129 | 820 : ((currfile && valid) ? currfile : (char_u *)NULL), |
1065 | 821 0, |
7 | 822 errmsg, |
823 lnum, | |
824 col, | |
170 | 825 use_viscol, |
230 | 826 pattern, |
7 | 827 enr, |
828 type, | |
829 valid) == FAIL) | |
830 goto error2; | |
831 line_breakcheck(); | |
832 } | |
41 | 833 if (fd == NULL || !ferror(fd)) |
7 | 834 { |
644 | 835 if (qi->qf_lists[qi->qf_curlist].qf_index == 0) |
7 | 836 { |
644 | 837 /* 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; | |
7 | 842 } |
843 else | |
844 { | |
644 | 845 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; | |
7 | 849 } |
644 | 850 /* return number of matches */ |
851 retval = qi->qf_lists[qi->qf_curlist].qf_count; | |
7 | 852 goto qf_init_ok; |
853 } | |
854 EMSG(_(e_readerrf)); | |
855 error2: | |
644 | 856 qf_free(qi, qi->qf_curlist); |
857 qi->qf_listcount--; | |
858 if (qi->qf_curlist > 0) | |
859 --qi->qf_curlist; | |
7 | 860 qf_init_ok: |
41 | 861 if (fd != NULL) |
862 fclose(fd); | |
7 | 863 for (fmt_ptr = fmt_first; fmt_ptr != NULL; fmt_ptr = fmt_first) |
864 { | |
865 fmt_first = fmt_ptr->next; | |
866 vim_free(fmt_ptr->prog); | |
867 vim_free(fmt_ptr); | |
868 } | |
869 qf_clean_dir_stack(&dir_stack); | |
870 qf_clean_dir_stack(&file_stack); | |
871 qf_init_end: | |
872 vim_free(namebuf); | |
873 vim_free(errmsg); | |
230 | 874 vim_free(pattern); |
7 | 875 vim_free(fmtstr); |
876 | |
877 #ifdef FEAT_WINDOWS | |
644 | 878 qf_update_buffer(qi); |
7 | 879 #endif |
880 | |
881 return retval; | |
882 } | |
883 | |
884 /* | |
885 * Prepare for adding a new quickfix list. | |
886 */ | |
887 static void | |
3965 | 888 qf_new_list(qi, qf_title) |
644 | 889 qf_info_T *qi; |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
890 char_u *qf_title; |
7 | 891 { |
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 */ | |
644 | 899 while (qi->qf_listcount > qi->qf_curlist + 1) |
900 qf_free(qi, --qi->qf_listcount); | |
7 | 901 |
902 /* | |
903 * When the stack is full, remove to oldest entry | |
904 * Otherwise, add a new entry. | |
905 */ | |
644 | 906 if (qi->qf_listcount == LISTCOUNT) |
7 | 907 { |
644 | 908 qf_free(qi, 0); |
7 | 909 for (i = 1; i < LISTCOUNT; ++i) |
644 | 910 qi->qf_lists[i - 1] = qi->qf_lists[i]; |
911 qi->qf_curlist = LISTCOUNT - 1; | |
7 | 912 } |
913 else | |
644 | 914 qi->qf_curlist = qi->qf_listcount++; |
3259 | 915 vim_memset(&qi->qf_lists[qi->qf_curlist], 0, (size_t)(sizeof(qf_list_T))); |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
916 if (qf_title != NULL) |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
917 { |
2416
1a9c16dd76d4
Fix compiler warnings on 64 bit systems.
Bram Moolenaar <bram@vim.org>
parents:
2411
diff
changeset
|
918 char_u *p = alloc((int)STRLEN(qf_title) + 2); |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
919 |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
920 qi->qf_lists[qi->qf_curlist].qf_title = p; |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
921 if (p != NULL) |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
922 sprintf((char *)p, ":%s", (char *)qf_title); |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
923 } |
7 | 924 } |
925 | |
644 | 926 /* |
927 * Free a location list | |
928 */ | |
929 static void | |
930 ll_free_all(pqi) | |
931 qf_info_T **pqi; | |
359 | 932 { |
933 int i; | |
644 | 934 qf_info_T *qi; |
935 | |
936 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 } | |
359 | 949 } |
644 | 950 |
951 void | |
952 qf_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 } | |
359 | 969 |
7 | 970 /* |
971 * Add an entry to the end of the list of errors. | |
972 * Returns OK or FAIL. | |
973 */ | |
974 static int | |
1065 | 975 qf_add_entry(qi, prevp, dir, fname, bufnum, mesg, lnum, col, vis_col, pattern, |
976 nr, type, valid) | |
644 | 977 qf_info_T *qi; /* quickfix list */ |
230 | 978 qfline_T **prevp; /* pointer to previously added entry or NULL */ |
7 | 979 char_u *dir; /* optional directory name */ |
980 char_u *fname; /* file name or NULL */ | |
1065 | 981 int bufnum; /* buffer number or zero */ |
7 | 982 char_u *mesg; /* message */ |
983 long lnum; /* line number */ | |
984 int col; /* column */ | |
170 | 985 int vis_col; /* using visual column */ |
230 | 986 char_u *pattern; /* search pattern */ |
7 | 987 int nr; /* error number */ |
988 int type; /* type character */ | |
989 int valid; /* valid entry */ | |
990 { | |
230 | 991 qfline_T *qfp; |
7 | 992 |
230 | 993 if ((qfp = (qfline_T *)alloc((unsigned)sizeof(qfline_T))) == NULL) |
7 | 994 return FAIL; |
1065 | 995 if (bufnum != 0) |
996 qfp->qf_fnum = bufnum; | |
997 else | |
998 qfp->qf_fnum = qf_get_fnum(dir, fname); | |
7 | 999 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; | |
170 | 1006 qfp->qf_viscol = vis_col; |
230 | 1007 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 } | |
7 | 1015 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 | |
644 | 1021 if (qi->qf_lists[qi->qf_curlist].qf_count == 0) |
1022 /* first element in the list */ | |
7 | 1023 { |
644 | 1024 qi->qf_lists[qi->qf_curlist].qf_start = qfp; |
7 | 1025 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; | |
644 | 1035 ++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 */ | |
7 | 1038 { |
644 | 1039 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; | |
7 | 1042 } |
1043 | |
1044 return OK; | |
1045 } | |
1046 | |
1047 /* | |
659 | 1048 * Allocate a new location list |
644 | 1049 */ |
659 | 1050 static qf_info_T * |
1051 ll_new_list() | |
644 | 1052 { |
659 | 1053 qf_info_T *qi; |
1054 | |
1055 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 } | |
1061 | |
1062 return qi; | |
644 | 1063 } |
1064 | |
1065 /* | |
1066 * Return the location list for window 'wp'. | |
1067 * If not present, allocate a location list | |
1068 */ | |
1069 static qf_info_T * | |
1070 ll_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) | |
659 | 1084 wp->w_llist = ll_new_list(); /* new location list */ |
644 | 1085 return wp->w_llist; |
1086 } | |
1087 | |
1088 /* | |
1089 * Copy the location list from window "from" to window "to". | |
1090 */ | |
1091 void | |
1092 copy_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 | |
659 | 1113 /* allocate a new location list */ |
1114 if ((to->w_llist = ll_new_list()) == NULL) | |
644 | 1115 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; | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
1136 if (from_qfl->qf_title != NULL) |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
1137 to_qfl->qf_title = vim_strsave(from_qfl->qf_title); |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
1138 else |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
1139 to_qfl->qf_title = NULL; |
644 | 1140 |
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, | |
1065 | 1153 0, |
644 | 1154 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 */ | |
2795 | 1182 if (to_qfl->qf_nonevalid) |
644 | 1183 to_qfl->qf_ptr = to_qfl->qf_start; |
1184 } | |
1185 | |
1186 to->w_llist->qf_curlist = qi->qf_curlist; /* current list */ | |
1187 } | |
1188 | |
1189 /* | |
7 | 1190 * get buffer number for file "dir.name" |
1191 */ | |
1192 static int | |
1193 qf_get_fnum(directory, fname) | |
1194 char_u *directory; | |
1195 char_u *fname; | |
1196 { | |
1197 if (fname == NULL || *fname == NUL) /* no file name */ | |
1198 return 0; | |
1199 { | |
1200 char_u *ptr; | |
1201 int fnum; | |
1202 | |
2823 | 1203 #ifdef VMS |
7 | 1204 vms_remove_version(fname); |
2823 | 1205 #endif |
1206 #ifdef BACKSLASH_IN_FILENAME | |
7 | 1207 if (directory != NULL) |
1208 slash_adjust(directory); | |
1209 slash_adjust(fname); | |
2823 | 1210 #endif |
7 | 1211 if (directory != NULL && !vim_isAbsName(fname) |
1212 && (ptr = concat_fnames(directory, fname, TRUE)) != NULL) | |
1213 { | |
1214 /* | |
1215 * Here we check if the file really exists. | |
1216 * This should normally be true, but if make works without | |
1217 * "leaving directory"-messages we might have missed a | |
1218 * directory change. | |
1219 */ | |
1220 if (mch_getperm(ptr) < 0) | |
1221 { | |
1222 vim_free(ptr); | |
1223 directory = qf_guess_filepath(fname); | |
1224 if (directory) | |
1225 ptr = concat_fnames(directory, fname, TRUE); | |
1226 else | |
1227 ptr = vim_strsave(fname); | |
1228 } | |
1229 /* Use concatenated directory name and file name */ | |
1230 fnum = buflist_add(ptr, 0); | |
1231 vim_free(ptr); | |
1232 return fnum; | |
1233 } | |
1234 return buflist_add(fname, 0); | |
1235 } | |
1236 } | |
1237 | |
1238 /* | |
1239 * push dirbuf onto the directory stack and return pointer to actual dir or | |
1240 * NULL on error | |
1241 */ | |
1242 static char_u * | |
1243 qf_push_dir(dirbuf, stackptr) | |
1244 char_u *dirbuf; | |
1245 struct dir_stack_T **stackptr; | |
1246 { | |
1247 struct dir_stack_T *ds_new; | |
1248 struct dir_stack_T *ds_ptr; | |
1249 | |
1250 /* allocate new stack element and hook it in */ | |
1251 ds_new = (struct dir_stack_T *)alloc((unsigned)sizeof(struct dir_stack_T)); | |
1252 if (ds_new == NULL) | |
1253 return NULL; | |
1254 | |
1255 ds_new->next = *stackptr; | |
1256 *stackptr = ds_new; | |
1257 | |
1258 /* store directory on the stack */ | |
1259 if (vim_isAbsName(dirbuf) | |
1260 || (*stackptr)->next == NULL | |
1261 || (*stackptr && dir_stack != *stackptr)) | |
1262 (*stackptr)->dirname = vim_strsave(dirbuf); | |
1263 else | |
1264 { | |
1265 /* Okay we don't have an absolute path. | |
1266 * dirbuf must be a subdir of one of the directories on the stack. | |
1267 * Let's search... | |
1268 */ | |
1269 ds_new = (*stackptr)->next; | |
1270 (*stackptr)->dirname = NULL; | |
1271 while (ds_new) | |
1272 { | |
1273 vim_free((*stackptr)->dirname); | |
1274 (*stackptr)->dirname = concat_fnames(ds_new->dirname, dirbuf, | |
1275 TRUE); | |
1276 if (mch_isdir((*stackptr)->dirname) == TRUE) | |
1277 break; | |
1278 | |
1279 ds_new = ds_new->next; | |
1280 } | |
1281 | |
1282 /* clean up all dirs we already left */ | |
1283 while ((*stackptr)->next != ds_new) | |
1284 { | |
1285 ds_ptr = (*stackptr)->next; | |
1286 (*stackptr)->next = (*stackptr)->next->next; | |
1287 vim_free(ds_ptr->dirname); | |
1288 vim_free(ds_ptr); | |
1289 } | |
1290 | |
1291 /* Nothing found -> it must be on top level */ | |
1292 if (ds_new == NULL) | |
1293 { | |
1294 vim_free((*stackptr)->dirname); | |
1295 (*stackptr)->dirname = vim_strsave(dirbuf); | |
1296 } | |
1297 } | |
1298 | |
1299 if ((*stackptr)->dirname != NULL) | |
1300 return (*stackptr)->dirname; | |
1301 else | |
1302 { | |
1303 ds_ptr = *stackptr; | |
1304 *stackptr = (*stackptr)->next; | |
1305 vim_free(ds_ptr); | |
1306 return NULL; | |
1307 } | |
1308 } | |
1309 | |
1310 | |
1311 /* | |
1312 * pop dirbuf from the directory stack and return previous directory or NULL if | |
1313 * stack is empty | |
1314 */ | |
1315 static char_u * | |
1316 qf_pop_dir(stackptr) | |
1317 struct dir_stack_T **stackptr; | |
1318 { | |
1319 struct dir_stack_T *ds_ptr; | |
1320 | |
1321 /* TODO: Should we check if dirbuf is the directory on top of the stack? | |
1322 * What to do if it isn't? */ | |
1323 | |
1324 /* pop top element and free it */ | |
1325 if (*stackptr != NULL) | |
1326 { | |
1327 ds_ptr = *stackptr; | |
1328 *stackptr = (*stackptr)->next; | |
1329 vim_free(ds_ptr->dirname); | |
1330 vim_free(ds_ptr); | |
1331 } | |
1332 | |
1333 /* return NEW top element as current dir or NULL if stack is empty*/ | |
1334 return *stackptr ? (*stackptr)->dirname : NULL; | |
1335 } | |
1336 | |
1337 /* | |
1338 * clean up directory stack | |
1339 */ | |
1340 static void | |
1341 qf_clean_dir_stack(stackptr) | |
1342 struct dir_stack_T **stackptr; | |
1343 { | |
1344 struct dir_stack_T *ds_ptr; | |
1345 | |
1346 while ((ds_ptr = *stackptr) != NULL) | |
1347 { | |
1348 *stackptr = (*stackptr)->next; | |
1349 vim_free(ds_ptr->dirname); | |
1350 vim_free(ds_ptr); | |
1351 } | |
1352 } | |
1353 | |
1354 /* | |
1355 * Check in which directory of the directory stack the given file can be | |
1356 * found. | |
1357 * Returns a pointer to the directory name or NULL if not found | |
1358 * Cleans up intermediate directory entries. | |
1359 * | |
1360 * TODO: How to solve the following problem? | |
1361 * If we have the this directory tree: | |
1362 * ./ | |
1363 * ./aa | |
1364 * ./aa/bb | |
1365 * ./bb | |
1366 * ./bb/x.c | |
1367 * and make says: | |
1368 * making all in aa | |
1369 * making all in bb | |
1370 * x.c:9: Error | |
1371 * Then qf_push_dir thinks we are in ./aa/bb, but we are in ./bb. | |
1372 * qf_guess_filepath will return NULL. | |
1373 */ | |
1374 static char_u * | |
1375 qf_guess_filepath(filename) | |
1376 char_u *filename; | |
1377 { | |
1378 struct dir_stack_T *ds_ptr; | |
1379 struct dir_stack_T *ds_tmp; | |
1380 char_u *fullname; | |
1381 | |
1382 /* no dirs on the stack - there's nothing we can do */ | |
1383 if (dir_stack == NULL) | |
1384 return NULL; | |
1385 | |
1386 ds_ptr = dir_stack->next; | |
1387 fullname = NULL; | |
1388 while (ds_ptr) | |
1389 { | |
1390 vim_free(fullname); | |
1391 fullname = concat_fnames(ds_ptr->dirname, filename, TRUE); | |
1392 | |
1393 /* If concat_fnames failed, just go on. The worst thing that can happen | |
1394 * is that we delete the entire stack. | |
1395 */ | |
1396 if ((fullname != NULL) && (mch_getperm(fullname) >= 0)) | |
1397 break; | |
1398 | |
1399 ds_ptr = ds_ptr->next; | |
1400 } | |
1401 | |
1402 vim_free(fullname); | |
1403 | |
1404 /* clean up all dirs we already left */ | |
1405 while (dir_stack->next != ds_ptr) | |
1406 { | |
1407 ds_tmp = dir_stack->next; | |
1408 dir_stack->next = dir_stack->next->next; | |
1409 vim_free(ds_tmp->dirname); | |
1410 vim_free(ds_tmp); | |
1411 } | |
1412 | |
1413 return ds_ptr==NULL? NULL: ds_ptr->dirname; | |
1414 | |
1415 } | |
1416 | |
1417 /* | |
1418 * jump to a quickfix line | |
1419 * if dir == FORWARD go "errornr" valid entries forward | |
1420 * if dir == BACKWARD go "errornr" valid entries backward | |
1421 * if dir == FORWARD_FILE go "errornr" valid entries files backward | |
1422 * if dir == BACKWARD_FILE go "errornr" valid entries files backward | |
1423 * else if "errornr" is zero, redisplay the same line | |
1424 * else go to entry "errornr" | |
1425 */ | |
1426 void | |
659 | 1427 qf_jump(qi, dir, errornr, forceit) |
1428 qf_info_T *qi; | |
7 | 1429 int dir; |
1430 int errornr; | |
1431 int forceit; | |
1432 { | |
644 | 1433 qf_info_T *ll_ref; |
230 | 1434 qfline_T *qf_ptr; |
1435 qfline_T *old_qf_ptr; | |
7 | 1436 int qf_index; |
1437 int old_qf_fnum; | |
1438 int old_qf_index; | |
1439 int prev_index; | |
1440 static char_u *e_no_more_items = (char_u *)N_("E553: No more items"); | |
1441 char_u *err = e_no_more_items; | |
1442 linenr_T i; | |
1443 buf_T *old_curbuf; | |
1444 linenr_T old_lnum; | |
1445 colnr_T screen_col; | |
1446 colnr_T char_col; | |
1447 char_u *line; | |
1448 #ifdef FEAT_WINDOWS | |
639 | 1449 char_u *old_swb = p_swb; |
1621 | 1450 unsigned old_swb_flags = swb_flags; |
7 | 1451 int opened_window = FALSE; |
1452 win_T *win; | |
1453 win_T *altwin; | |
1822 | 1454 int flags; |
7 | 1455 #endif |
1743 | 1456 win_T *oldwin = curwin; |
7 | 1457 int print_message = TRUE; |
1458 int len; | |
1459 #ifdef FEAT_FOLDING | |
1460 int old_KeyTyped = KeyTyped; /* getting file may reset it */ | |
1461 #endif | |
9 | 1462 int ok = OK; |
644 | 1463 int usable_win; |
1464 | |
659 | 1465 if (qi == NULL) |
1466 qi = &ql_info; | |
644 | 1467 |
1468 if (qi->qf_curlist >= qi->qf_listcount | |
1469 || qi->qf_lists[qi->qf_curlist].qf_count == 0) | |
7 | 1470 { |
1471 EMSG(_(e_quickfix)); | |
1472 return; | |
1473 } | |
1474 | |
644 | 1475 qf_ptr = qi->qf_lists[qi->qf_curlist].qf_ptr; |
7 | 1476 old_qf_ptr = qf_ptr; |
644 | 1477 qf_index = qi->qf_lists[qi->qf_curlist].qf_index; |
7 | 1478 old_qf_index = qf_index; |
1479 if (dir == FORWARD || dir == FORWARD_FILE) /* next valid entry */ | |
1480 { | |
1481 while (errornr--) | |
1482 { | |
1483 old_qf_ptr = qf_ptr; | |
1484 prev_index = qf_index; | |
1485 old_qf_fnum = qf_ptr->qf_fnum; | |
1486 do | |
1487 { | |
644 | 1488 if (qf_index == qi->qf_lists[qi->qf_curlist].qf_count |
7 | 1489 || qf_ptr->qf_next == NULL) |
1490 { | |
1491 qf_ptr = old_qf_ptr; | |
1492 qf_index = prev_index; | |
1493 if (err != NULL) | |
1494 { | |
1495 EMSG(_(err)); | |
1496 goto theend; | |
1497 } | |
1498 errornr = 0; | |
1499 break; | |
1500 } | |
1501 ++qf_index; | |
1502 qf_ptr = qf_ptr->qf_next; | |
644 | 1503 } while ((!qi->qf_lists[qi->qf_curlist].qf_nonevalid |
1504 && !qf_ptr->qf_valid) | |
7 | 1505 || (dir == FORWARD_FILE && qf_ptr->qf_fnum == old_qf_fnum)); |
1506 err = NULL; | |
1507 } | |
1508 } | |
1509 else if (dir == BACKWARD || dir == BACKWARD_FILE) /* prev. valid entry */ | |
1510 { | |
1511 while (errornr--) | |
1512 { | |
1513 old_qf_ptr = qf_ptr; | |
1514 prev_index = qf_index; | |
1515 old_qf_fnum = qf_ptr->qf_fnum; | |
1516 do | |
1517 { | |
1518 if (qf_index == 1 || qf_ptr->qf_prev == NULL) | |
1519 { | |
1520 qf_ptr = old_qf_ptr; | |
1521 qf_index = prev_index; | |
1522 if (err != NULL) | |
1523 { | |
1524 EMSG(_(err)); | |
1525 goto theend; | |
1526 } | |
1527 errornr = 0; | |
1528 break; | |
1529 } | |
1530 --qf_index; | |
1531 qf_ptr = qf_ptr->qf_prev; | |
644 | 1532 } while ((!qi->qf_lists[qi->qf_curlist].qf_nonevalid |
1533 && !qf_ptr->qf_valid) | |
7 | 1534 || (dir == BACKWARD_FILE && qf_ptr->qf_fnum == old_qf_fnum)); |
1535 err = NULL; | |
1536 } | |
1537 } | |
1538 else if (errornr != 0) /* go to specified number */ | |
1539 { | |
1540 while (errornr < qf_index && qf_index > 1 && qf_ptr->qf_prev != NULL) | |
1541 { | |
1542 --qf_index; | |
1543 qf_ptr = qf_ptr->qf_prev; | |
1544 } | |
644 | 1545 while (errornr > qf_index && qf_index < |
1546 qi->qf_lists[qi->qf_curlist].qf_count | |
7 | 1547 && qf_ptr->qf_next != NULL) |
1548 { | |
1549 ++qf_index; | |
1550 qf_ptr = qf_ptr->qf_next; | |
1551 } | |
1552 } | |
1553 | |
1554 #ifdef FEAT_WINDOWS | |
644 | 1555 qi->qf_lists[qi->qf_curlist].qf_index = qf_index; |
1556 if (qf_win_pos_update(qi, old_qf_index)) | |
7 | 1557 /* No need to print the error message if it's visible in the error |
1558 * window */ | |
1559 print_message = FALSE; | |
1560 | |
1561 /* | |
9 | 1562 * For ":helpgrep" find a help window or open one. |
1563 */ | |
682 | 1564 if (qf_ptr->qf_type == 1 && (!curwin->w_buffer->b_help || cmdmod.tab != 0)) |
9 | 1565 { |
1566 win_T *wp; | |
1567 | |
682 | 1568 if (cmdmod.tab != 0) |
1569 wp = NULL; | |
1570 else | |
1571 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
1572 if (wp->w_buffer != NULL && wp->w_buffer->b_help) | |
1573 break; | |
9 | 1574 if (wp != NULL && wp->w_buffer->b_nwindows > 0) |
1575 win_enter(wp, TRUE); | |
1576 else | |
1577 { | |
1578 /* | |
1579 * Split off help window; put it at far top if no position | |
1580 * specified, the current window is vertically split and narrow. | |
1581 */ | |
1822 | 1582 flags = WSP_HELP; |
9 | 1583 # ifdef FEAT_VERTSPLIT |
1584 if (cmdmod.split == 0 && curwin->w_width != Columns | |
1585 && curwin->w_width < 80) | |
1822 | 1586 flags |= WSP_TOP; |
9 | 1587 # endif |
1822 | 1588 if (qi != &ql_info) |
1589 flags |= WSP_NEWLOC; /* don't copy the location list */ | |
1590 | |
1591 if (win_split(0, flags) == FAIL) | |
9 | 1592 goto theend; |
26 | 1593 opened_window = TRUE; /* close it when fail */ |
9 | 1594 |
1595 if (curwin->w_height < p_hh) | |
1596 win_setheight((int)p_hh); | |
659 | 1597 |
1598 if (qi != &ql_info) /* not a quickfix list */ | |
1599 { | |
1600 /* The new window should use the supplied location list */ | |
1601 curwin->w_llist = qi; | |
1602 qi->qf_refcount++; | |
1603 } | |
9 | 1604 } |
1605 | |
1606 if (!p_im) | |
1607 restart_edit = 0; /* don't want insert mode in help file */ | |
1608 } | |
1609 | |
1610 /* | |
7 | 1611 * If currently in the quickfix window, find another window to show the |
1612 * file in. | |
1613 */ | |
26 | 1614 if (bt_quickfix(curbuf) && !opened_window) |
7 | 1615 { |
1616 /* | |
1617 * If there is no file specified, we don't know where to go. | |
1618 * But do advance, otherwise ":cn" gets stuck. | |
1619 */ | |
1620 if (qf_ptr->qf_fnum == 0) | |
1621 goto theend; | |
1622 | |
644 | 1623 /* Locate a window showing a normal buffer */ |
1624 usable_win = 0; | |
1625 FOR_ALL_WINDOWS(win) | |
1626 if (win->w_buffer->b_p_bt[0] == NUL) | |
1627 { | |
1628 usable_win = 1; | |
1629 break; | |
1630 } | |
1631 | |
7 | 1632 /* |
1621 | 1633 * If no usable window is found and 'switchbuf' contains "usetab" |
1020 | 1634 * then search in other tabs. |
7 | 1635 */ |
1621 | 1636 if (!usable_win && (swb_flags & SWB_USETAB)) |
1020 | 1637 { |
1638 tabpage_T *tp; | |
1639 win_T *wp; | |
1640 | |
1641 FOR_ALL_TAB_WINDOWS(tp, wp) | |
1642 { | |
1643 if (wp->w_buffer->b_fnum == qf_ptr->qf_fnum) | |
1644 { | |
1645 goto_tabpage_win(tp, wp); | |
1646 usable_win = 1; | |
1819 | 1647 goto win_found; |
1020 | 1648 } |
1649 } | |
1650 } | |
1819 | 1651 win_found: |
1020 | 1652 |
1653 /* | |
1396 | 1654 * If there is only one window and it is the quickfix window, create a |
1655 * new one above the quickfix window. | |
1020 | 1656 */ |
1657 if (((firstwin == lastwin) && bt_quickfix(curbuf)) || !usable_win) | |
7 | 1658 { |
644 | 1659 ll_ref = curwin->w_llist_ref; |
1660 | |
1822 | 1661 flags = WSP_ABOVE; |
1662 if (ll_ref != NULL) | |
1663 flags |= WSP_NEWLOC; | |
1664 if (win_split(0, flags) == FAIL) | |
7 | 1665 goto failed; /* not enough room for window */ |
1666 opened_window = TRUE; /* close it when fail */ | |
1667 p_swb = empty_option; /* don't split again */ | |
1621 | 1668 swb_flags = 0; |
2583 | 1669 RESET_BINDING(curwin); |
644 | 1670 if (ll_ref != NULL) |
1671 { | |
1672 /* The new window should use the location list from the | |
1673 * location list window */ | |
1674 curwin->w_llist = ll_ref; | |
1675 ll_ref->qf_refcount++; | |
1676 } | |
7 | 1677 } |
1678 else | |
1679 { | |
644 | 1680 if (curwin->w_llist_ref != NULL) |
1681 { | |
1682 /* In a location window */ | |
1683 ll_ref = curwin->w_llist_ref; | |
1684 | |
1685 /* Find the window with the same location list */ | |
1686 FOR_ALL_WINDOWS(win) | |
1687 if (win->w_llist == ll_ref) | |
1688 break; | |
1689 if (win == NULL) | |
1690 { | |
1691 /* Find the window showing the selected file */ | |
1692 FOR_ALL_WINDOWS(win) | |
1693 if (win->w_buffer->b_fnum == qf_ptr->qf_fnum) | |
1694 break; | |
1695 if (win == NULL) | |
1696 { | |
1697 /* Find a previous usable window */ | |
1698 win = curwin; | |
1699 do | |
1700 { | |
1701 if (win->w_buffer->b_p_bt[0] == NUL) | |
1702 break; | |
1703 if (win->w_prev == NULL) | |
1704 win = lastwin; /* wrap around the top */ | |
1705 else | |
1706 win = win->w_prev; /* go to previous window */ | |
1707 } while (win != curwin); | |
1708 } | |
1709 } | |
1710 win_goto(win); | |
1711 | |
1712 /* If the location list for the window is not set, then set it | |
1713 * to the location list from the location window */ | |
1714 if (win->w_llist == NULL) | |
1715 { | |
1716 win->w_llist = ll_ref; | |
1717 ll_ref->qf_refcount++; | |
1718 } | |
1719 } | |
1720 else | |
1721 { | |
1722 | |
7 | 1723 /* |
1724 * Try to find a window that shows the right buffer. | |
1725 * Default to the window just above the quickfix buffer. | |
1726 */ | |
1727 win = curwin; | |
1728 altwin = NULL; | |
1729 for (;;) | |
1730 { | |
1731 if (win->w_buffer->b_fnum == qf_ptr->qf_fnum) | |
1732 break; | |
1733 if (win->w_prev == NULL) | |
1734 win = lastwin; /* wrap around the top */ | |
1735 else | |
1736 win = win->w_prev; /* go to previous window */ | |
1737 | |
644 | 1738 if (IS_QF_WINDOW(win)) |
7 | 1739 { |
1740 /* Didn't find it, go to the window before the quickfix | |
1741 * window. */ | |
1742 if (altwin != NULL) | |
1743 win = altwin; | |
1744 else if (curwin->w_prev != NULL) | |
1745 win = curwin->w_prev; | |
1746 else | |
1747 win = curwin->w_next; | |
1748 break; | |
1749 } | |
1750 | |
1751 /* Remember a usable window. */ | |
1752 if (altwin == NULL && !win->w_p_pvw | |
1753 && win->w_buffer->b_p_bt[0] == NUL) | |
1754 altwin = win; | |
1755 } | |
1756 | |
1757 win_goto(win); | |
644 | 1758 } |
7 | 1759 } |
1760 } | |
1761 #endif | |
1762 | |
1763 /* | |
1764 * If there is a file name, | |
1765 * read the wanted file if needed, and check autowrite etc. | |
1766 */ | |
1767 old_curbuf = curbuf; | |
1768 old_lnum = curwin->w_cursor.lnum; | |
9 | 1769 |
1770 if (qf_ptr->qf_fnum != 0) | |
1771 { | |
1772 if (qf_ptr->qf_type == 1) | |
1773 { | |
1774 /* Open help file (do_ecmd() will set b_help flag, readfile() will | |
1775 * set b_p_ro flag). */ | |
1776 if (!can_abandon(curbuf, forceit)) | |
1777 { | |
1778 EMSG(_(e_nowrtmsg)); | |
1779 ok = FALSE; | |
1780 } | |
1781 else | |
1782 ok = do_ecmd(qf_ptr->qf_fnum, NULL, NULL, NULL, (linenr_T)1, | |
1743 | 1783 ECMD_HIDE + ECMD_SET_HELP, |
1784 oldwin == curwin ? curwin : NULL); | |
9 | 1785 } |
1786 else | |
1787 ok = buflist_getfile(qf_ptr->qf_fnum, | |
1788 (linenr_T)1, GETF_SETMARK | GETF_SWITCH, forceit); | |
1789 } | |
1790 | |
1791 if (ok == OK) | |
7 | 1792 { |
1793 /* When not switched to another buffer, still need to set pc mark */ | |
1794 if (curbuf == old_curbuf) | |
1795 setpcmark(); | |
1796 | |
230 | 1797 if (qf_ptr->qf_pattern == NULL) |
7 | 1798 { |
230 | 1799 /* |
1800 * Go to line with error, unless qf_lnum is 0. | |
1801 */ | |
1802 i = qf_ptr->qf_lnum; | |
1803 if (i > 0) | |
1804 { | |
1805 if (i > curbuf->b_ml.ml_line_count) | |
1806 i = curbuf->b_ml.ml_line_count; | |
1807 curwin->w_cursor.lnum = i; | |
1808 } | |
1809 if (qf_ptr->qf_col > 0) | |
7 | 1810 { |
230 | 1811 curwin->w_cursor.col = qf_ptr->qf_col - 1; |
1812 if (qf_ptr->qf_viscol == TRUE) | |
7 | 1813 { |
230 | 1814 /* |
1815 * Check each character from the beginning of the error | |
1816 * line up to the error column. For each tab character | |
1817 * found, reduce the error column value by the length of | |
1818 * a tab character. | |
1819 */ | |
1820 line = ml_get_curline(); | |
1821 screen_col = 0; | |
1822 for (char_col = 0; char_col < curwin->w_cursor.col; ++char_col) | |
7 | 1823 { |
230 | 1824 if (*line == NUL) |
1825 break; | |
1826 if (*line++ == '\t') | |
1827 { | |
1828 curwin->w_cursor.col -= 7 - (screen_col % 8); | |
1829 screen_col += 8 - (screen_col % 8); | |
1830 } | |
1831 else | |
1832 ++screen_col; | |
7 | 1833 } |
1834 } | |
230 | 1835 check_cursor(); |
7 | 1836 } |
230 | 1837 else |
1838 beginline(BL_WHITE | BL_FIX); | |
7 | 1839 } |
1840 else | |
230 | 1841 { |
1842 pos_T save_cursor; | |
1843 | |
1844 /* Move the cursor to the first line in the buffer */ | |
1845 save_cursor = curwin->w_cursor; | |
1846 curwin->w_cursor.lnum = 0; | |
1521 | 1847 if (!do_search(NULL, '/', qf_ptr->qf_pattern, (long)1, |
1848 SEARCH_KEEP, NULL)) | |
230 | 1849 curwin->w_cursor = save_cursor; |
1850 } | |
7 | 1851 |
1852 #ifdef FEAT_FOLDING | |
1853 if ((fdo_flags & FDO_QUICKFIX) && old_KeyTyped) | |
1854 foldOpenCursor(); | |
1855 #endif | |
1856 if (print_message) | |
1857 { | |
3267 | 1858 /* Update the screen before showing the message, unless the screen |
1859 * scrolled up. */ | |
1860 if (!msg_scrolled) | |
1861 update_topline_redraw(); | |
7 | 1862 sprintf((char *)IObuff, _("(%d of %d)%s%s: "), qf_index, |
644 | 1863 qi->qf_lists[qi->qf_curlist].qf_count, |
7 | 1864 qf_ptr->qf_cleared ? _(" (line deleted)") : "", |
1865 (char *)qf_types(qf_ptr->qf_type, qf_ptr->qf_nr)); | |
1866 /* Add the message, skipping leading whitespace and newlines. */ | |
1867 len = (int)STRLEN(IObuff); | |
1868 qf_fmt_text(skipwhite(qf_ptr->qf_text), IObuff + len, IOSIZE - len); | |
1869 | |
1870 /* Output the message. Overwrite to avoid scrolling when the 'O' | |
1871 * flag is present in 'shortmess'; But when not jumping, print the | |
1872 * whole message. */ | |
1873 i = msg_scroll; | |
1874 if (curbuf == old_curbuf && curwin->w_cursor.lnum == old_lnum) | |
1875 msg_scroll = TRUE; | |
1876 else if (!msg_scrolled && shortmess(SHM_OVERALL)) | |
1877 msg_scroll = FALSE; | |
1878 msg_attr_keep(IObuff, 0, TRUE); | |
1879 msg_scroll = i; | |
1880 } | |
1881 } | |
1882 else | |
1883 { | |
1884 #ifdef FEAT_WINDOWS | |
1885 if (opened_window) | |
1886 win_close(curwin, TRUE); /* Close opened window */ | |
1887 #endif | |
1888 if (qf_ptr->qf_fnum != 0) | |
1889 { | |
1890 /* | |
1891 * Couldn't open file, so put index back where it was. This could | |
1892 * happen if the file was readonly and we changed something. | |
1893 */ | |
1894 #ifdef FEAT_WINDOWS | |
1895 failed: | |
1896 #endif | |
1897 qf_ptr = old_qf_ptr; | |
1898 qf_index = old_qf_index; | |
1899 } | |
1900 } | |
1901 theend: | |
644 | 1902 qi->qf_lists[qi->qf_curlist].qf_ptr = qf_ptr; |
1903 qi->qf_lists[qi->qf_curlist].qf_index = qf_index; | |
7 | 1904 #ifdef FEAT_WINDOWS |
1905 if (p_swb != old_swb && opened_window) | |
1906 { | |
1907 /* Restore old 'switchbuf' value, but not when an autocommand or | |
1908 * modeline has changed the value. */ | |
1909 if (p_swb == empty_option) | |
1621 | 1910 { |
7 | 1911 p_swb = old_swb; |
1621 | 1912 swb_flags = old_swb_flags; |
1913 } | |
7 | 1914 else |
1915 free_string_option(old_swb); | |
1916 } | |
1917 #endif | |
1918 } | |
1919 | |
1920 /* | |
1921 * ":clist": list all errors | |
644 | 1922 * ":llist": list all locations |
7 | 1923 */ |
1924 void | |
1925 qf_list(eap) | |
1926 exarg_T *eap; | |
1927 { | |
230 | 1928 buf_T *buf; |
1929 char_u *fname; | |
1930 qfline_T *qfp; | |
1931 int i; | |
1932 int idx1 = 1; | |
1933 int idx2 = -1; | |
1934 char_u *arg = eap->arg; | |
1935 int all = eap->forceit; /* if not :cl!, only show | |
7 | 1936 recognised errors */ |
644 | 1937 qf_info_T *qi = &ql_info; |
1938 | |
1939 if (eap->cmdidx == CMD_llist) | |
1940 { | |
1941 qi = GET_LOC_LIST(curwin); | |
1942 if (qi == NULL) | |
1943 { | |
1944 EMSG(_(e_loclist)); | |
1945 return; | |
1946 } | |
1947 } | |
1948 | |
1949 if (qi->qf_curlist >= qi->qf_listcount | |
1950 || qi->qf_lists[qi->qf_curlist].qf_count == 0) | |
7 | 1951 { |
1952 EMSG(_(e_quickfix)); | |
1953 return; | |
1954 } | |
1955 if (!get_list_range(&arg, &idx1, &idx2) || *arg != NUL) | |
1956 { | |
1957 EMSG(_(e_trailing)); | |
1958 return; | |
1959 } | |
644 | 1960 i = qi->qf_lists[qi->qf_curlist].qf_count; |
7 | 1961 if (idx1 < 0) |
1962 idx1 = (-idx1 > i) ? 0 : idx1 + i + 1; | |
1963 if (idx2 < 0) | |
1964 idx2 = (-idx2 > i) ? 0 : idx2 + i + 1; | |
1965 | |
644 | 1966 if (qi->qf_lists[qi->qf_curlist].qf_nonevalid) |
7 | 1967 all = TRUE; |
644 | 1968 qfp = qi->qf_lists[qi->qf_curlist].qf_start; |
1969 for (i = 1; !got_int && i <= qi->qf_lists[qi->qf_curlist].qf_count; ) | |
7 | 1970 { |
1971 if ((qfp->qf_valid || all) && idx1 <= i && i <= idx2) | |
1972 { | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1918
diff
changeset
|
1973 msg_putchar('\n'); |
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1918
diff
changeset
|
1974 if (got_int) |
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1918
diff
changeset
|
1975 break; |
446 | 1976 |
1977 fname = NULL; | |
1978 if (qfp->qf_fnum != 0 | |
7 | 1979 && (buf = buflist_findnr(qfp->qf_fnum)) != NULL) |
446 | 1980 { |
1981 fname = buf->b_fname; | |
1982 if (qfp->qf_type == 1) /* :helpgrep */ | |
1983 fname = gettail(fname); | |
1984 } | |
1985 if (fname == NULL) | |
1986 sprintf((char *)IObuff, "%2d", i); | |
1987 else | |
1988 vim_snprintf((char *)IObuff, IOSIZE, "%2d %s", | |
273 | 1989 i, (char *)fname); |
644 | 1990 msg_outtrans_attr(IObuff, i == qi->qf_lists[qi->qf_curlist].qf_index |
446 | 1991 ? hl_attr(HLF_L) : hl_attr(HLF_D)); |
1992 if (qfp->qf_lnum == 0) | |
1993 IObuff[0] = NUL; | |
1994 else if (qfp->qf_col == 0) | |
1995 sprintf((char *)IObuff, ":%ld", qfp->qf_lnum); | |
1996 else | |
1997 sprintf((char *)IObuff, ":%ld col %d", | |
7 | 1998 qfp->qf_lnum, qfp->qf_col); |
446 | 1999 sprintf((char *)IObuff + STRLEN(IObuff), "%s:", |
7 | 2000 (char *)qf_types(qfp->qf_type, qfp->qf_nr)); |
446 | 2001 msg_puts_attr(IObuff, hl_attr(HLF_N)); |
2002 if (qfp->qf_pattern != NULL) | |
2003 { | |
2004 qf_fmt_text(qfp->qf_pattern, IObuff, IOSIZE); | |
2005 STRCAT(IObuff, ":"); | |
2006 msg_puts(IObuff); | |
2007 } | |
2008 msg_puts((char_u *)" "); | |
230 | 2009 |
446 | 2010 /* Remove newlines and leading whitespace from the text. For an |
2011 * unrecognized line keep the indent, the compiler may mark a word | |
2012 * with ^^^^. */ | |
2013 qf_fmt_text((fname != NULL || qfp->qf_lnum != 0) | |
7 | 2014 ? skipwhite(qfp->qf_text) : qfp->qf_text, |
2015 IObuff, IOSIZE); | |
446 | 2016 msg_prt_line(IObuff, FALSE); |
2017 out_flush(); /* show one line at a time */ | |
7 | 2018 } |
446 | 2019 |
2020 qfp = qfp->qf_next; | |
2021 ++i; | |
7 | 2022 ui_breakcheck(); |
2023 } | |
2024 } | |
2025 | |
2026 /* | |
2027 * Remove newlines and leading whitespace from an error message. | |
2028 * Put the result in "buf[bufsize]". | |
2029 */ | |
2030 static void | |
2031 qf_fmt_text(text, buf, bufsize) | |
2032 char_u *text; | |
2033 char_u *buf; | |
2034 int bufsize; | |
2035 { | |
2036 int i; | |
2037 char_u *p = text; | |
2038 | |
2039 for (i = 0; *p != NUL && i < bufsize - 1; ++i) | |
2040 { | |
2041 if (*p == '\n') | |
2042 { | |
2043 buf[i] = ' '; | |
2044 while (*++p != NUL) | |
2045 if (!vim_iswhite(*p) && *p != '\n') | |
2046 break; | |
2047 } | |
2048 else | |
2049 buf[i] = *p++; | |
2050 } | |
2051 buf[i] = NUL; | |
2052 } | |
2053 | |
2054 /* | |
2055 * ":colder [count]": Up in the quickfix stack. | |
2056 * ":cnewer [count]": Down in the quickfix stack. | |
644 | 2057 * ":lolder [count]": Up in the location list stack. |
2058 * ":lnewer [count]": Down in the location list stack. | |
7 | 2059 */ |
2060 void | |
2061 qf_age(eap) | |
2062 exarg_T *eap; | |
2063 { | |
644 | 2064 qf_info_T *qi = &ql_info; |
7 | 2065 int count; |
2066 | |
644 | 2067 if (eap->cmdidx == CMD_lolder || eap->cmdidx == CMD_lnewer) |
2068 { | |
2069 qi = GET_LOC_LIST(curwin); | |
2070 if (qi == NULL) | |
2071 { | |
2072 EMSG(_(e_loclist)); | |
2073 return; | |
2074 } | |
2075 } | |
2076 | |
7 | 2077 if (eap->addr_count != 0) |
2078 count = eap->line2; | |
2079 else | |
2080 count = 1; | |
2081 while (count--) | |
2082 { | |
644 | 2083 if (eap->cmdidx == CMD_colder || eap->cmdidx == CMD_lolder) |
7 | 2084 { |
644 | 2085 if (qi->qf_curlist == 0) |
7 | 2086 { |
2087 EMSG(_("E380: At bottom of quickfix stack")); | |
2088 return; | |
2089 } | |
644 | 2090 --qi->qf_curlist; |
7 | 2091 } |
2092 else | |
2093 { | |
644 | 2094 if (qi->qf_curlist >= qi->qf_listcount - 1) |
7 | 2095 { |
2096 EMSG(_("E381: At top of quickfix stack")); | |
2097 return; | |
2098 } | |
644 | 2099 ++qi->qf_curlist; |
7 | 2100 } |
2101 } | |
644 | 2102 qf_msg(qi); |
2103 | |
7 | 2104 } |
2105 | |
2106 static void | |
644 | 2107 qf_msg(qi) |
2108 qf_info_T *qi; | |
7 | 2109 { |
2110 smsg((char_u *)_("error list %d of %d; %d errors"), | |
644 | 2111 qi->qf_curlist + 1, qi->qf_listcount, |
2112 qi->qf_lists[qi->qf_curlist].qf_count); | |
7 | 2113 #ifdef FEAT_WINDOWS |
644 | 2114 qf_update_buffer(qi); |
7 | 2115 #endif |
2116 } | |
2117 | |
2118 /* | |
581 | 2119 * Free error list "idx". |
7 | 2120 */ |
2121 static void | |
644 | 2122 qf_free(qi, idx) |
2123 qf_info_T *qi; | |
7 | 2124 int idx; |
2125 { | |
230 | 2126 qfline_T *qfp; |
3982 | 2127 int stop = FALSE; |
7 | 2128 |
644 | 2129 while (qi->qf_lists[idx].qf_count) |
7 | 2130 { |
644 | 2131 qfp = qi->qf_lists[idx].qf_start->qf_next; |
3982 | 2132 if (qi->qf_lists[idx].qf_title != NULL && !stop) |
3949 | 2133 { |
2134 vim_free(qi->qf_lists[idx].qf_start->qf_text); | |
3982 | 2135 stop = (qi->qf_lists[idx].qf_start == qfp); |
3949 | 2136 vim_free(qi->qf_lists[idx].qf_start->qf_pattern); |
2137 vim_free(qi->qf_lists[idx].qf_start); | |
3982 | 2138 if (stop) |
2139 /* Somehow qf_count may have an incorrect value, set it to 1 | |
2140 * to avoid crashing when it's wrong. | |
2141 * TODO: Avoid qf_count being incorrect. */ | |
2142 qi->qf_lists[idx].qf_count = 1; | |
3949 | 2143 } |
644 | 2144 qi->qf_lists[idx].qf_start = qfp; |
2145 --qi->qf_lists[idx].qf_count; | |
7 | 2146 } |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
2147 vim_free(qi->qf_lists[idx].qf_title); |
2576 | 2148 qi->qf_lists[idx].qf_title = NULL; |
7 | 2149 } |
2150 | |
2151 /* | |
2152 * qf_mark_adjust: adjust marks | |
2153 */ | |
2154 void | |
644 | 2155 qf_mark_adjust(wp, line1, line2, amount, amount_after) |
2156 win_T *wp; | |
7 | 2157 linenr_T line1; |
2158 linenr_T line2; | |
2159 long amount; | |
2160 long amount_after; | |
2161 { | |
230 | 2162 int i; |
2163 qfline_T *qfp; | |
2164 int idx; | |
644 | 2165 qf_info_T *qi = &ql_info; |
2166 | |
2167 if (wp != NULL) | |
2168 { | |
2169 if (wp->w_llist == NULL) | |
2170 return; | |
2171 qi = wp->w_llist; | |
2172 } | |
2173 | |
2174 for (idx = 0; idx < qi->qf_listcount; ++idx) | |
2175 if (qi->qf_lists[idx].qf_count) | |
2176 for (i = 0, qfp = qi->qf_lists[idx].qf_start; | |
2177 i < qi->qf_lists[idx].qf_count; ++i, qfp = qfp->qf_next) | |
7 | 2178 if (qfp->qf_fnum == curbuf->b_fnum) |
2179 { | |
2180 if (qfp->qf_lnum >= line1 && qfp->qf_lnum <= line2) | |
2181 { | |
2182 if (amount == MAXLNUM) | |
2183 qfp->qf_cleared = TRUE; | |
2184 else | |
2185 qfp->qf_lnum += amount; | |
2186 } | |
2187 else if (amount_after && qfp->qf_lnum > line2) | |
2188 qfp->qf_lnum += amount_after; | |
2189 } | |
2190 } | |
2191 | |
2192 /* | |
2193 * Make a nice message out of the error character and the error number: | |
2194 * char number message | |
2195 * e or E 0 " error" | |
2196 * w or W 0 " warning" | |
2197 * i or I 0 " info" | |
2198 * 0 0 "" | |
2199 * other 0 " c" | |
2200 * e or E n " error n" | |
2201 * w or W n " warning n" | |
2202 * i or I n " info n" | |
2203 * 0 n " error n" | |
2204 * other n " c n" | |
2205 * 1 x "" :helpgrep | |
2206 */ | |
2207 static char_u * | |
2208 qf_types(c, nr) | |
2209 int c, nr; | |
2210 { | |
2211 static char_u buf[20]; | |
2212 static char_u cc[3]; | |
2213 char_u *p; | |
2214 | |
2215 if (c == 'W' || c == 'w') | |
2216 p = (char_u *)" warning"; | |
2217 else if (c == 'I' || c == 'i') | |
2218 p = (char_u *)" info"; | |
2219 else if (c == 'E' || c == 'e' || (c == 0 && nr > 0)) | |
2220 p = (char_u *)" error"; | |
2221 else if (c == 0 || c == 1) | |
2222 p = (char_u *)""; | |
2223 else | |
2224 { | |
2225 cc[0] = ' '; | |
2226 cc[1] = c; | |
2227 cc[2] = NUL; | |
2228 p = cc; | |
2229 } | |
2230 | |
2231 if (nr <= 0) | |
2232 return p; | |
2233 | |
2234 sprintf((char *)buf, "%s %3d", (char *)p, nr); | |
2235 return buf; | |
2236 } | |
2237 | |
2238 #if defined(FEAT_WINDOWS) || defined(PROTO) | |
2239 /* | |
2240 * ":cwindow": open the quickfix window if we have errors to display, | |
2241 * close it if not. | |
644 | 2242 * ":lwindow": open the location list window if we have locations to display, |
2243 * close it if not. | |
7 | 2244 */ |
2245 void | |
2246 ex_cwindow(eap) | |
2247 exarg_T *eap; | |
2248 { | |
644 | 2249 qf_info_T *qi = &ql_info; |
7 | 2250 win_T *win; |
2251 | |
644 | 2252 if (eap->cmdidx == CMD_lwindow) |
2253 { | |
2254 qi = GET_LOC_LIST(curwin); | |
2255 if (qi == NULL) | |
2256 return; | |
2257 } | |
2258 | |
2259 /* Look for an existing quickfix window. */ | |
2260 win = qf_find_win(qi); | |
7 | 2261 |
2262 /* | |
2263 * If a quickfix window is open but we have no errors to display, | |
2264 * close the window. If a quickfix window is not open, then open | |
2265 * it if we have errors; otherwise, leave it closed. | |
2266 */ | |
644 | 2267 if (qi->qf_lists[qi->qf_curlist].qf_nonevalid |
2795 | 2268 || qi->qf_lists[qi->qf_curlist].qf_count == 0 |
857 | 2269 || qi->qf_curlist >= qi->qf_listcount) |
7 | 2270 { |
2271 if (win != NULL) | |
2272 ex_cclose(eap); | |
2273 } | |
2274 else if (win == NULL) | |
2275 ex_copen(eap); | |
2276 } | |
2277 | |
2278 /* | |
2279 * ":cclose": close the window showing the list of errors. | |
644 | 2280 * ":lclose": close the window showing the location list |
7 | 2281 */ |
2282 void | |
2283 ex_cclose(eap) | |
2284 exarg_T *eap; | |
2285 { | |
644 | 2286 win_T *win = NULL; |
2287 qf_info_T *qi = &ql_info; | |
2288 | |
2289 if (eap->cmdidx == CMD_lclose || eap->cmdidx == CMD_lwindow) | |
2290 { | |
2291 qi = GET_LOC_LIST(curwin); | |
2292 if (qi == NULL) | |
2293 return; | |
2294 } | |
2295 | |
2296 /* Find existing quickfix window and close it. */ | |
2297 win = qf_find_win(qi); | |
7 | 2298 if (win != NULL) |
2299 win_close(win, FALSE); | |
2300 } | |
2301 | |
2302 /* | |
2303 * ":copen": open a window that shows the list of errors. | |
644 | 2304 * ":lopen": open a window that shows the location list. |
7 | 2305 */ |
2306 void | |
2307 ex_copen(eap) | |
2308 exarg_T *eap; | |
2309 { | |
644 | 2310 qf_info_T *qi = &ql_info; |
7 | 2311 int height; |
2312 win_T *win; | |
682 | 2313 tabpage_T *prevtab = curtab; |
859 | 2314 buf_T *qf_buf; |
1743 | 2315 win_T *oldwin = curwin; |
7 | 2316 |
644 | 2317 if (eap->cmdidx == CMD_lopen || eap->cmdidx == CMD_lwindow) |
2318 { | |
2319 qi = GET_LOC_LIST(curwin); | |
2320 if (qi == NULL) | |
2321 { | |
2322 EMSG(_(e_loclist)); | |
2323 return; | |
2324 } | |
2325 } | |
2326 | |
7 | 2327 if (eap->addr_count != 0) |
2328 height = eap->line2; | |
2329 else | |
2330 height = QF_WINHEIGHT; | |
2331 | |
2332 #ifdef FEAT_VISUAL | |
2333 reset_VIsual_and_resel(); /* stop Visual mode */ | |
2334 #endif | |
2335 #ifdef FEAT_GUI | |
2336 need_mouse_correct = TRUE; | |
2337 #endif | |
2338 | |
2339 /* | |
2340 * Find existing quickfix window, or open a new one. | |
2341 */ | |
644 | 2342 win = qf_find_win(qi); |
2343 | |
682 | 2344 if (win != NULL && cmdmod.tab == 0) |
7 | 2345 win_goto(win); |
2346 else | |
2347 { | |
859 | 2348 qf_buf = qf_find_buf(qi); |
2349 | |
7 | 2350 /* The current window becomes the previous window afterwards. */ |
2351 win = curwin; | |
2352 | |
3939 | 2353 if ((eap->cmdidx == CMD_copen || eap->cmdidx == CMD_cwindow) |
2354 && cmdmod.split == 0) | |
2355 /* Create the new window at the very bottom, except when | |
2356 * :belowright or :aboveleft is used. */ | |
644 | 2357 win_goto(lastwin); |
1822 | 2358 if (win_split(height, WSP_BELOW | WSP_NEWLOC) == FAIL) |
7 | 2359 return; /* not enough room for window */ |
2583 | 2360 RESET_BINDING(curwin); |
7 | 2361 |
644 | 2362 if (eap->cmdidx == CMD_lopen || eap->cmdidx == CMD_lwindow) |
7 | 2363 { |
644 | 2364 /* |
2365 * For the location list window, create a reference to the | |
2366 * location list from the window 'win'. | |
2367 */ | |
2368 curwin->w_llist_ref = win->w_llist; | |
2369 win->w_llist->qf_refcount++; | |
7 | 2370 } |
644 | 2371 |
1743 | 2372 if (oldwin != curwin) |
2373 oldwin = NULL; /* don't store info when in another window */ | |
859 | 2374 if (qf_buf != NULL) |
2375 /* Use the existing quickfix buffer */ | |
2376 (void)do_ecmd(qf_buf->b_fnum, NULL, NULL, NULL, ECMD_ONE, | |
1743 | 2377 ECMD_HIDE + ECMD_OLDBUF, oldwin); |
859 | 2378 else |
2379 { | |
2380 /* Create a new quickfix buffer */ | |
1743 | 2381 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, oldwin); |
859 | 2382 /* switch off 'swapfile' */ |
2383 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL); | |
2384 set_option_value((char_u *)"bt", 0L, (char_u *)"quickfix", | |
729 | 2385 OPT_LOCAL); |
859 | 2386 set_option_value((char_u *)"bh", 0L, (char_u *)"wipe", OPT_LOCAL); |
2651 | 2387 RESET_BINDING(curwin); |
1864 | 2388 #ifdef FEAT_DIFF |
2389 curwin->w_p_diff = FALSE; | |
2390 #endif | |
2391 #ifdef FEAT_FOLDING | |
2392 set_option_value((char_u *)"fdm", 0L, (char_u *)"manual", | |
2393 OPT_LOCAL); | |
2394 #endif | |
859 | 2395 } |
7 | 2396 |
682 | 2397 /* Only set the height when still in the same tab page and there is no |
2398 * window to the side. */ | |
2399 if (curtab == prevtab | |
119 | 2400 #ifdef FEAT_VERTSPLIT |
682 | 2401 && curwin->w_width == Columns |
119 | 2402 #endif |
682 | 2403 ) |
7 | 2404 win_setheight(height); |
2405 curwin->w_p_wfh = TRUE; /* set 'winfixheight' */ | |
2406 if (win_valid(win)) | |
2407 prevwin = win; | |
2408 } | |
2409 | |
2410 /* | |
2411 * Fill the buffer with the quickfix list. | |
2412 */ | |
644 | 2413 qf_fill_buffer(qi); |
2414 | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
2415 if (qi->qf_lists[qi->qf_curlist].qf_title != NULL) |
3016 | 2416 qf_set_title(qi); |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
2417 |
644 | 2418 curwin->w_cursor.lnum = qi->qf_lists[qi->qf_curlist].qf_index; |
7 | 2419 curwin->w_cursor.col = 0; |
2420 check_cursor(); | |
2421 update_topline(); /* scroll to show the line */ | |
2422 } | |
2423 | |
2424 /* | |
2425 * Return the number of the current entry (line number in the quickfix | |
2426 * window). | |
2427 */ | |
2428 linenr_T | |
644 | 2429 qf_current_entry(wp) |
2430 win_T *wp; | |
7 | 2431 { |
644 | 2432 qf_info_T *qi = &ql_info; |
2433 | |
2434 if (IS_LL_WINDOW(wp)) | |
2435 /* In the location list window, use the referenced location list */ | |
2436 qi = wp->w_llist_ref; | |
2437 | |
2438 return qi->qf_lists[qi->qf_curlist].qf_index; | |
7 | 2439 } |
2440 | |
2441 /* | |
2442 * Update the cursor position in the quickfix window to the current error. | |
2443 * Return TRUE if there is a quickfix window. | |
2444 */ | |
2445 static int | |
644 | 2446 qf_win_pos_update(qi, old_qf_index) |
2447 qf_info_T *qi; | |
7 | 2448 int old_qf_index; /* previous qf_index or zero */ |
2449 { | |
2450 win_T *win; | |
644 | 2451 int qf_index = qi->qf_lists[qi->qf_curlist].qf_index; |
7 | 2452 |
2453 /* | |
2454 * Put the cursor on the current error in the quickfix window, so that | |
2455 * it's viewable. | |
2456 */ | |
644 | 2457 win = qf_find_win(qi); |
7 | 2458 if (win != NULL |
2459 && qf_index <= win->w_buffer->b_ml.ml_line_count | |
2460 && old_qf_index != qf_index) | |
2461 { | |
2462 win_T *old_curwin = curwin; | |
2463 | |
2464 curwin = win; | |
2465 curbuf = win->w_buffer; | |
2466 if (qf_index > old_qf_index) | |
2467 { | |
2468 curwin->w_redraw_top = old_qf_index; | |
2469 curwin->w_redraw_bot = qf_index; | |
2470 } | |
2471 else | |
2472 { | |
2473 curwin->w_redraw_top = qf_index; | |
2474 curwin->w_redraw_bot = old_qf_index; | |
2475 } | |
2476 curwin->w_cursor.lnum = qf_index; | |
2477 curwin->w_cursor.col = 0; | |
2478 update_topline(); /* scroll to show the line */ | |
2479 redraw_later(VALID); | |
2480 curwin->w_redr_status = TRUE; /* update ruler */ | |
2481 curwin = old_curwin; | |
2482 curbuf = curwin->w_buffer; | |
2483 } | |
2484 return win != NULL; | |
2485 } | |
2486 | |
2487 /* | |
859 | 2488 * Check whether the given window is displaying the specified quickfix/location |
2489 * list buffer | |
2490 */ | |
2491 static int | |
2492 is_qf_win(win, qi) | |
2493 win_T *win; | |
2494 qf_info_T *qi; | |
2495 { | |
2496 /* | |
2497 * A window displaying the quickfix buffer will have the w_llist_ref field | |
2498 * set to NULL. | |
2499 * A window displaying a location list buffer will have the w_llist_ref | |
2500 * pointing to the location list. | |
2501 */ | |
2502 if (bt_quickfix(win->w_buffer)) | |
2503 if ((qi == &ql_info && win->w_llist_ref == NULL) | |
2504 || (qi != &ql_info && win->w_llist_ref == qi)) | |
2505 return TRUE; | |
2506 | |
2507 return FALSE; | |
2508 } | |
2509 | |
2510 /* | |
644 | 2511 * Find a window displaying the quickfix/location list 'qi' |
859 | 2512 * Searches in only the windows opened in the current tab. |
644 | 2513 */ |
2514 static win_T * | |
2515 qf_find_win(qi) | |
2516 qf_info_T *qi; | |
2517 { | |
2518 win_T *win; | |
2519 | |
2520 FOR_ALL_WINDOWS(win) | |
859 | 2521 if (is_qf_win(win, qi)) |
2522 break; | |
644 | 2523 |
2524 return win; | |
2525 } | |
2526 | |
2527 /* | |
859 | 2528 * Find a quickfix buffer. |
2529 * Searches in windows opened in all the tabs. | |
7 | 2530 */ |
2531 static buf_T * | |
644 | 2532 qf_find_buf(qi) |
2533 qf_info_T *qi; | |
7 | 2534 { |
859 | 2535 tabpage_T *tp; |
644 | 2536 win_T *win; |
2537 | |
859 | 2538 FOR_ALL_TAB_WINDOWS(tp, win) |
2539 if (is_qf_win(win, qi)) | |
2540 return win->w_buffer; | |
2541 | |
2542 return NULL; | |
7 | 2543 } |
2544 | |
2545 /* | |
2546 * Find the quickfix buffer. If it exists, update the contents. | |
2547 */ | |
2548 static void | |
644 | 2549 qf_update_buffer(qi) |
2550 qf_info_T *qi; | |
7 | 2551 { |
2552 buf_T *buf; | |
3016 | 2553 win_T *win; |
2554 win_T *curwin_save; | |
7 | 2555 aco_save_T aco; |
2556 | |
2557 /* Check if a buffer for the quickfix list exists. Update it. */ | |
644 | 2558 buf = qf_find_buf(qi); |
7 | 2559 if (buf != NULL) |
2560 { | |
2561 /* set curwin/curbuf to buf and save a few things */ | |
2562 aucmd_prepbuf(&aco, buf); | |
2563 | |
644 | 2564 qf_fill_buffer(qi); |
7 | 2565 |
3016 | 2566 if (qi->qf_lists[qi->qf_curlist].qf_title != NULL |
2567 && (win = qf_find_win(qi)) != NULL) | |
2568 { | |
2569 curwin_save = curwin; | |
2570 curwin = win; | |
2571 qf_set_title(qi); | |
2572 curwin = curwin_save; | |
2573 | |
2574 } | |
2575 | |
7 | 2576 /* restore curwin/curbuf and a few other things */ |
2577 aucmd_restbuf(&aco); | |
2578 | |
644 | 2579 (void)qf_win_pos_update(qi, 0); |
7 | 2580 } |
2581 } | |
2582 | |
3016 | 2583 static void |
2584 qf_set_title(qi) | |
2585 qf_info_T *qi; | |
2586 { | |
2587 set_internal_string_var((char_u *)"w:quickfix_title", | |
2588 qi->qf_lists[qi->qf_curlist].qf_title); | |
2589 } | |
2590 | |
7 | 2591 /* |
2592 * Fill current buffer with quickfix errors, replacing any previous contents. | |
2593 * curbuf must be the quickfix buffer! | |
2594 */ | |
2595 static void | |
644 | 2596 qf_fill_buffer(qi) |
2597 qf_info_T *qi; | |
7 | 2598 { |
230 | 2599 linenr_T lnum; |
2600 qfline_T *qfp; | |
2601 buf_T *errbuf; | |
2602 int len; | |
2603 int old_KeyTyped = KeyTyped; | |
7 | 2604 |
2605 /* delete all existing lines */ | |
2606 while ((curbuf->b_ml.ml_flags & ML_EMPTY) == 0) | |
2607 (void)ml_delete((linenr_T)1, FALSE); | |
2608 | |
2609 /* Check if there is anything to display */ | |
644 | 2610 if (qi->qf_curlist < qi->qf_listcount) |
7 | 2611 { |
2612 /* Add one line for each error */ | |
644 | 2613 qfp = qi->qf_lists[qi->qf_curlist].qf_start; |
2614 for (lnum = 0; lnum < qi->qf_lists[qi->qf_curlist].qf_count; ++lnum) | |
7 | 2615 { |
2616 if (qfp->qf_fnum != 0 | |
2617 && (errbuf = buflist_findnr(qfp->qf_fnum)) != NULL | |
2618 && errbuf->b_fname != NULL) | |
2619 { | |
2620 if (qfp->qf_type == 1) /* :helpgrep */ | |
2621 STRCPY(IObuff, gettail(errbuf->b_fname)); | |
2622 else | |
2623 STRCPY(IObuff, errbuf->b_fname); | |
2624 len = (int)STRLEN(IObuff); | |
2625 } | |
2626 else | |
2627 len = 0; | |
2628 IObuff[len++] = '|'; | |
2629 | |
2630 if (qfp->qf_lnum > 0) | |
2631 { | |
2632 sprintf((char *)IObuff + len, "%ld", qfp->qf_lnum); | |
2633 len += (int)STRLEN(IObuff + len); | |
2634 | |
2635 if (qfp->qf_col > 0) | |
2636 { | |
2637 sprintf((char *)IObuff + len, " col %d", qfp->qf_col); | |
2638 len += (int)STRLEN(IObuff + len); | |
2639 } | |
2640 | |
2641 sprintf((char *)IObuff + len, "%s", | |
2642 (char *)qf_types(qfp->qf_type, qfp->qf_nr)); | |
2643 len += (int)STRLEN(IObuff + len); | |
2644 } | |
230 | 2645 else if (qfp->qf_pattern != NULL) |
2646 { | |
2647 qf_fmt_text(qfp->qf_pattern, IObuff + len, IOSIZE - len); | |
2648 len += (int)STRLEN(IObuff + len); | |
2649 } | |
7 | 2650 IObuff[len++] = '|'; |
2651 IObuff[len++] = ' '; | |
2652 | |
2653 /* Remove newlines and leading whitespace from the text. | |
2654 * For an unrecognized line keep the indent, the compiler may | |
2655 * mark a word with ^^^^. */ | |
2656 qf_fmt_text(len > 3 ? skipwhite(qfp->qf_text) : qfp->qf_text, | |
2657 IObuff + len, IOSIZE - len); | |
2658 | |
2659 if (ml_append(lnum, IObuff, (colnr_T)STRLEN(IObuff) + 1, FALSE) | |
2660 == FAIL) | |
2661 break; | |
2662 qfp = qfp->qf_next; | |
2663 } | |
2664 /* Delete the empty line which is now at the end */ | |
2665 (void)ml_delete(lnum + 1, FALSE); | |
2666 } | |
2667 | |
2668 /* correct cursor position */ | |
2669 check_lnums(TRUE); | |
2670 | |
2671 /* Set the 'filetype' to "qf" each time after filling the buffer. This | |
2672 * resembles reading a file into a buffer, it's more logical when using | |
2673 * autocommands. */ | |
2674 set_option_value((char_u *)"ft", 0L, (char_u *)"qf", OPT_LOCAL); | |
2675 curbuf->b_p_ma = FALSE; | |
2676 | |
2677 #ifdef FEAT_AUTOCMD | |
1864 | 2678 keep_filetype = TRUE; /* don't detect 'filetype' */ |
7 | 2679 apply_autocmds(EVENT_BUFREADPOST, (char_u *)"quickfix", NULL, |
2680 FALSE, curbuf); | |
2681 apply_autocmds(EVENT_BUFWINENTER, (char_u *)"quickfix", NULL, | |
2682 FALSE, curbuf); | |
1864 | 2683 keep_filetype = FALSE; |
7 | 2684 #endif |
2685 | |
2686 /* make sure it will be redrawn */ | |
2687 redraw_curbuf_later(NOT_VALID); | |
2688 | |
2689 /* Restore KeyTyped, setting 'filetype' may reset it. */ | |
2690 KeyTyped = old_KeyTyped; | |
2691 } | |
2692 | |
2693 #endif /* FEAT_WINDOWS */ | |
2694 | |
2695 /* | |
2696 * Return TRUE if "buf" is the quickfix buffer. | |
2697 */ | |
2698 int | |
2699 bt_quickfix(buf) | |
2700 buf_T *buf; | |
2701 { | |
3242 | 2702 return buf != NULL && buf->b_p_bt[0] == 'q'; |
7 | 2703 } |
2704 | |
2705 /* | |
17 | 2706 * Return TRUE if "buf" is a "nofile" or "acwrite" buffer. |
2707 * This means the buffer name is not a file name. | |
7 | 2708 */ |
2709 int | |
2710 bt_nofile(buf) | |
2711 buf_T *buf; | |
2712 { | |
3242 | 2713 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f') |
2714 || buf->b_p_bt[0] == 'a'); | |
7 | 2715 } |
2716 | |
2717 /* | |
2718 * Return TRUE if "buf" is a "nowrite" or "nofile" buffer. | |
2719 */ | |
2720 int | |
2721 bt_dontwrite(buf) | |
2722 buf_T *buf; | |
2723 { | |
3242 | 2724 return buf != NULL && buf->b_p_bt[0] == 'n'; |
7 | 2725 } |
2726 | |
2727 int | |
2728 bt_dontwrite_msg(buf) | |
2729 buf_T *buf; | |
2730 { | |
2731 if (bt_dontwrite(buf)) | |
2732 { | |
2733 EMSG(_("E382: Cannot write, 'buftype' option is set")); | |
2734 return TRUE; | |
2735 } | |
2736 return FALSE; | |
2737 } | |
2738 | |
2739 /* | |
2740 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide" | |
2741 * and 'bufhidden'. | |
2742 */ | |
2743 int | |
2744 buf_hide(buf) | |
2745 buf_T *buf; | |
2746 { | |
2747 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */ | |
2748 switch (buf->b_p_bh[0]) | |
2749 { | |
2750 case 'u': /* "unload" */ | |
2751 case 'w': /* "wipe" */ | |
2752 case 'd': return FALSE; /* "delete" */ | |
2753 case 'h': return TRUE; /* "hide" */ | |
2754 } | |
2755 return (p_hid || cmdmod.hide); | |
2756 } | |
2757 | |
2758 /* | |
41 | 2759 * Return TRUE when using ":vimgrep" for ":grep". |
2760 */ | |
2761 int | |
42 | 2762 grep_internal(cmdidx) |
2763 cmdidx_T cmdidx; | |
41 | 2764 { |
661 | 2765 return ((cmdidx == CMD_grep |
2766 || cmdidx == CMD_lgrep | |
2767 || cmdidx == CMD_grepadd | |
2768 || cmdidx == CMD_lgrepadd) | |
41 | 2769 && STRCMP("internal", |
2770 *curbuf->b_p_gp == NUL ? p_gp : curbuf->b_p_gp) == 0); | |
2771 } | |
2772 | |
2773 /* | |
657 | 2774 * Used for ":make", ":lmake", ":grep", ":lgrep", ":grepadd", and ":lgrepadd" |
7 | 2775 */ |
2776 void | |
2777 ex_make(eap) | |
2778 exarg_T *eap; | |
2779 { | |
161 | 2780 char_u *fname; |
7 | 2781 char_u *cmd; |
2782 unsigned len; | |
657 | 2783 win_T *wp = NULL; |
659 | 2784 qf_info_T *qi = &ql_info; |
842 | 2785 int res; |
161 | 2786 #ifdef FEAT_AUTOCMD |
2787 char_u *au_name = NULL; | |
2788 | |
2782 | 2789 /* Redirect ":grep" to ":vimgrep" if 'grepprg' is "internal". */ |
2790 if (grep_internal(eap->cmdidx)) | |
2791 { | |
2792 ex_vimgrep(eap); | |
2793 return; | |
2794 } | |
2795 | |
161 | 2796 switch (eap->cmdidx) |
2797 { | |
661 | 2798 case CMD_make: au_name = (char_u *)"make"; break; |
2799 case CMD_lmake: au_name = (char_u *)"lmake"; break; | |
2800 case CMD_grep: au_name = (char_u *)"grep"; break; | |
2801 case CMD_lgrep: au_name = (char_u *)"lgrep"; break; | |
2802 case CMD_grepadd: au_name = (char_u *)"grepadd"; break; | |
2803 case CMD_lgrepadd: au_name = (char_u *)"lgrepadd"; break; | |
161 | 2804 default: break; |
2805 } | |
2806 if (au_name != NULL) | |
2807 { | |
2808 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name, | |
2809 curbuf->b_fname, TRUE, curbuf); | |
532 | 2810 # ifdef FEAT_EVAL |
161 | 2811 if (did_throw || force_abort) |
2812 return; | |
532 | 2813 # endif |
161 | 2814 } |
2815 #endif | |
7 | 2816 |
657 | 2817 if (eap->cmdidx == CMD_lmake || eap->cmdidx == CMD_lgrep |
2818 || eap->cmdidx == CMD_lgrepadd) | |
2819 wp = curwin; | |
2820 | |
7 | 2821 autowrite_all(); |
161 | 2822 fname = get_mef_name(); |
2823 if (fname == NULL) | |
7 | 2824 return; |
161 | 2825 mch_remove(fname); /* in case it's not unique */ |
7 | 2826 |
2827 /* | |
2828 * If 'shellpipe' empty: don't redirect to 'errorfile'. | |
2829 */ | |
2830 len = (unsigned)STRLEN(p_shq) * 2 + (unsigned)STRLEN(eap->arg) + 1; | |
2831 if (*p_sp != NUL) | |
161 | 2832 len += (unsigned)STRLEN(p_sp) + (unsigned)STRLEN(fname) + 3; |
7 | 2833 cmd = alloc(len); |
2834 if (cmd == NULL) | |
2835 return; | |
2836 sprintf((char *)cmd, "%s%s%s", (char *)p_shq, (char *)eap->arg, | |
2837 (char *)p_shq); | |
2838 if (*p_sp != NUL) | |
1872 | 2839 append_redir(cmd, len, p_sp, fname); |
7 | 2840 /* |
2841 * Output a newline if there's something else than the :make command that | |
2842 * was typed (in which case the cursor is in column 0). | |
2843 */ | |
2844 if (msg_col == 0) | |
2845 msg_didout = FALSE; | |
2846 msg_start(); | |
2847 MSG_PUTS(":!"); | |
2848 msg_outtrans(cmd); /* show what we are doing */ | |
2849 | |
2850 /* let the shell know if we are redirecting output or not */ | |
2851 do_shell(cmd, *p_sp != NUL ? SHELL_DOOUT : 0); | |
2852 | |
2853 #ifdef AMIGA | |
2854 out_flush(); | |
2855 /* read window status report and redraw before message */ | |
2856 (void)char_avail(); | |
2857 #endif | |
2858 | |
842 | 2859 res = qf_init(wp, fname, (eap->cmdidx != CMD_make |
657 | 2860 && eap->cmdidx != CMD_lmake) ? p_gefm : p_efm, |
2861 (eap->cmdidx != CMD_grepadd | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
2862 && eap->cmdidx != CMD_lgrepadd), |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
2863 *eap->cmdlinep); |
2847 | 2864 if (wp != NULL) |
2865 qi = GET_LOC_LIST(wp); | |
842 | 2866 #ifdef FEAT_AUTOCMD |
2867 if (au_name != NULL) | |
2847 | 2868 { |
842 | 2869 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, |
2870 curbuf->b_fname, TRUE, curbuf); | |
2847 | 2871 if (qi->qf_curlist < qi->qf_listcount) |
2872 res = qi->qf_lists[qi->qf_curlist].qf_count; | |
2873 else | |
2874 res = 0; | |
2875 } | |
842 | 2876 #endif |
2877 if (res > 0 && !eap->forceit) | |
659 | 2878 qf_jump(qi, 0, 0, FALSE); /* display first error */ |
7 | 2879 |
161 | 2880 mch_remove(fname); |
2881 vim_free(fname); | |
7 | 2882 vim_free(cmd); |
2883 } | |
2884 | |
2885 /* | |
2886 * Return the name for the errorfile, in allocated memory. | |
2887 * Find a new unique name when 'makeef' contains "##". | |
2888 * Returns NULL for error. | |
2889 */ | |
2890 static char_u * | |
2891 get_mef_name() | |
2892 { | |
2893 char_u *p; | |
2894 char_u *name; | |
2895 static int start = -1; | |
2896 static int off = 0; | |
2897 #ifdef HAVE_LSTAT | |
2898 struct stat sb; | |
2899 #endif | |
2900 | |
2901 if (*p_mef == NUL) | |
2902 { | |
2903 name = vim_tempname('e'); | |
2904 if (name == NULL) | |
2905 EMSG(_(e_notmp)); | |
2906 return name; | |
2907 } | |
2908 | |
2909 for (p = p_mef; *p; ++p) | |
2910 if (p[0] == '#' && p[1] == '#') | |
2911 break; | |
2912 | |
2913 if (*p == NUL) | |
2914 return vim_strsave(p_mef); | |
2915 | |
2916 /* Keep trying until the name doesn't exist yet. */ | |
2917 for (;;) | |
2918 { | |
2919 if (start == -1) | |
2920 start = mch_get_pid(); | |
2921 else | |
2922 off += 19; | |
2923 | |
2924 name = alloc((unsigned)STRLEN(p_mef) + 30); | |
2925 if (name == NULL) | |
2926 break; | |
2927 STRCPY(name, p_mef); | |
2928 sprintf((char *)name + (p - p_mef), "%d%d", start, off); | |
2929 STRCAT(name, p + 2); | |
2930 if (mch_getperm(name) < 0 | |
2931 #ifdef HAVE_LSTAT | |
2932 /* Don't accept a symbolic link, its a security risk. */ | |
2933 && mch_lstat((char *)name, &sb) < 0 | |
2934 #endif | |
2935 ) | |
2936 break; | |
2937 vim_free(name); | |
2938 } | |
2939 return name; | |
2940 } | |
2941 | |
2942 /* | |
2943 * ":cc", ":crewind", ":cfirst" and ":clast". | |
644 | 2944 * ":ll", ":lrewind", ":lfirst" and ":llast". |
7 | 2945 */ |
2946 void | |
2947 ex_cc(eap) | |
2948 exarg_T *eap; | |
2949 { | |
659 | 2950 qf_info_T *qi = &ql_info; |
2951 | |
2952 if (eap->cmdidx == CMD_ll | |
2953 || eap->cmdidx == CMD_lrewind | |
2954 || eap->cmdidx == CMD_lfirst | |
2955 || eap->cmdidx == CMD_llast) | |
644 | 2956 { |
2957 qi = GET_LOC_LIST(curwin); | |
2958 if (qi == NULL) | |
2959 { | |
2960 EMSG(_(e_loclist)); | |
2961 return; | |
2962 } | |
2963 } | |
2964 | |
659 | 2965 qf_jump(qi, 0, |
7 | 2966 eap->addr_count > 0 |
2967 ? (int)eap->line2 | |
644 | 2968 : (eap->cmdidx == CMD_cc || eap->cmdidx == CMD_ll) |
7 | 2969 ? 0 |
644 | 2970 : (eap->cmdidx == CMD_crewind || eap->cmdidx == CMD_lrewind |
2971 || eap->cmdidx == CMD_cfirst || eap->cmdidx == CMD_lfirst) | |
7 | 2972 ? 1 |
2973 : 32767, | |
2974 eap->forceit); | |
2975 } | |
2976 | |
2977 /* | |
2978 * ":cnext", ":cnfile", ":cNext" and ":cprevious". | |
644 | 2979 * ":lnext", ":lNext", ":lprevious", ":lnfile", ":lNfile" and ":lpfile". |
7 | 2980 */ |
2981 void | |
2982 ex_cnext(eap) | |
2983 exarg_T *eap; | |
2984 { | |
659 | 2985 qf_info_T *qi = &ql_info; |
2986 | |
2987 if (eap->cmdidx == CMD_lnext | |
2988 || eap->cmdidx == CMD_lNext | |
2989 || eap->cmdidx == CMD_lprevious | |
2990 || eap->cmdidx == CMD_lnfile | |
2991 || eap->cmdidx == CMD_lNfile | |
2992 || eap->cmdidx == CMD_lpfile) | |
644 | 2993 { |
2994 qi = GET_LOC_LIST(curwin); | |
2995 if (qi == NULL) | |
2996 { | |
2997 EMSG(_(e_loclist)); | |
2998 return; | |
2999 } | |
3000 } | |
3001 | |
659 | 3002 qf_jump(qi, (eap->cmdidx == CMD_cnext || eap->cmdidx == CMD_lnext) |
7 | 3003 ? FORWARD |
644 | 3004 : (eap->cmdidx == CMD_cnfile || eap->cmdidx == CMD_lnfile) |
7 | 3005 ? FORWARD_FILE |
644 | 3006 : (eap->cmdidx == CMD_cpfile || eap->cmdidx == CMD_lpfile |
3007 || eap->cmdidx == CMD_cNfile || eap->cmdidx == CMD_lNfile) | |
7 | 3008 ? BACKWARD_FILE |
3009 : BACKWARD, | |
3010 eap->addr_count > 0 ? (int)eap->line2 : 1, eap->forceit); | |
3011 } | |
3012 | |
3013 /* | |
446 | 3014 * ":cfile"/":cgetfile"/":caddfile" commands. |
644 | 3015 * ":lfile"/":lgetfile"/":laddfile" commands. |
7 | 3016 */ |
3017 void | |
3018 ex_cfile(eap) | |
3019 exarg_T *eap; | |
3020 { | |
644 | 3021 win_T *wp = NULL; |
659 | 3022 qf_info_T *qi = &ql_info; |
3404 | 3023 #ifdef FEAT_AUTOCMD |
3024 char_u *au_name = NULL; | |
3025 #endif | |
644 | 3026 |
3027 if (eap->cmdidx == CMD_lfile || eap->cmdidx == CMD_lgetfile | |
3404 | 3028 || eap->cmdidx == CMD_laddfile) |
644 | 3029 wp = curwin; |
3030 | |
3404 | 3031 #ifdef FEAT_AUTOCMD |
3032 switch (eap->cmdidx) | |
3033 { | |
3034 case CMD_cfile: au_name = (char_u *)"cfile"; break; | |
3035 case CMD_cgetfile: au_name = (char_u *)"cgetfile"; break; | |
3036 case CMD_caddfile: au_name = (char_u *)"caddfile"; break; | |
3037 case CMD_lfile: au_name = (char_u *)"lfile"; break; | |
3038 case CMD_lgetfile: au_name = (char_u *)"lgetfile"; break; | |
3039 case CMD_laddfile: au_name = (char_u *)"laddfile"; break; | |
3040 default: break; | |
3041 } | |
3042 if (au_name != NULL) | |
3043 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name, NULL, FALSE, curbuf); | |
3044 #endif | |
2296
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3045 #ifdef FEAT_BROWSE |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3046 if (cmdmod.browse) |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3047 { |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3048 char_u *browse_file = do_browse(0, (char_u *)_("Error file"), eap->arg, |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3049 NULL, NULL, BROWSE_FILTER_ALL_FILES, NULL); |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3050 if (browse_file == NULL) |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3051 return; |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3052 set_string_option_direct((char_u *)"ef", -1, browse_file, OPT_FREE, 0); |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3053 vim_free(browse_file); |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3054 } |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3055 else |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3056 #endif |
7 | 3057 if (*eap->arg != NUL) |
694 | 3058 set_string_option_direct((char_u *)"ef", -1, eap->arg, OPT_FREE, 0); |
446 | 3059 |
3060 /* | |
3061 * This function is used by the :cfile, :cgetfile and :caddfile | |
3062 * commands. | |
3063 * :cfile always creates a new quickfix list and jumps to the | |
3064 * first error. | |
3065 * :cgetfile creates a new quickfix list but doesn't jump to the | |
3066 * first error. | |
3067 * :caddfile adds to an existing quickfix list. If there is no | |
3068 * quickfix list then a new list is created. | |
3069 */ | |
644 | 3070 if (qf_init(wp, p_ef, p_efm, (eap->cmdidx != CMD_caddfile |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3071 && eap->cmdidx != CMD_laddfile), |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3072 *eap->cmdlinep) > 0 |
644 | 3073 && (eap->cmdidx == CMD_cfile |
3074 || eap->cmdidx == CMD_lfile)) | |
665 | 3075 { |
3404 | 3076 #ifdef FEAT_AUTOCMD |
3077 if (au_name != NULL) | |
3078 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, NULL, FALSE, curbuf); | |
3079 #endif | |
665 | 3080 if (wp != NULL) |
3081 qi = GET_LOC_LIST(wp); | |
659 | 3082 qf_jump(qi, 0, 0, eap->forceit); /* display first error */ |
665 | 3083 } |
3404 | 3084 |
3085 else | |
3086 { | |
3087 #ifdef FEAT_AUTOCMD | |
3088 if (au_name != NULL) | |
3089 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, NULL, FALSE, curbuf); | |
3090 #endif | |
3091 } | |
7 | 3092 } |
3093 | |
3094 /* | |
41 | 3095 * ":vimgrep {pattern} file(s)" |
657 | 3096 * ":vimgrepadd {pattern} file(s)" |
3097 * ":lvimgrep {pattern} file(s)" | |
3098 * ":lvimgrepadd {pattern} file(s)" | |
41 | 3099 */ |
3100 void | |
3101 ex_vimgrep(eap) | |
3102 exarg_T *eap; | |
3103 { | |
42 | 3104 regmmatch_T regmatch; |
153 | 3105 int fcount; |
41 | 3106 char_u **fnames; |
1411 | 3107 char_u *fname; |
153 | 3108 char_u *s; |
3109 char_u *p; | |
3110 int fi; | |
657 | 3111 qf_info_T *qi = &ql_info; |
4003 | 3112 #ifdef FEAT_AUTOCMD |
3113 qfline_T *cur_qf_start; | |
3114 #endif | |
230 | 3115 qfline_T *prevp = NULL; |
41 | 3116 long lnum; |
42 | 3117 buf_T *buf; |
3118 int duplicate_name = FALSE; | |
3119 int using_dummy; | |
1396 | 3120 int redraw_for_dummy = FALSE; |
42 | 3121 int found_match; |
123 | 3122 buf_T *first_match_buf = NULL; |
3123 time_t seconds = 0; | |
677 | 3124 int save_mls; |
123 | 3125 #if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL) |
3126 char_u *save_ei = NULL; | |
677 | 3127 #endif |
123 | 3128 aco_save_T aco; |
170 | 3129 int flags = 0; |
3130 colnr_T col; | |
716 | 3131 long tomatch; |
2770 | 3132 char_u *dirname_start = NULL; |
3133 char_u *dirname_now = NULL; | |
1411 | 3134 char_u *target_dir = NULL; |
1683 | 3135 #ifdef FEAT_AUTOCMD |
3136 char_u *au_name = NULL; | |
161 | 3137 |
3138 switch (eap->cmdidx) | |
3139 { | |
2782 | 3140 case CMD_vimgrep: au_name = (char_u *)"vimgrep"; break; |
3141 case CMD_lvimgrep: au_name = (char_u *)"lvimgrep"; break; | |
3142 case CMD_vimgrepadd: au_name = (char_u *)"vimgrepadd"; break; | |
657 | 3143 case CMD_lvimgrepadd: au_name = (char_u *)"lvimgrepadd"; break; |
2782 | 3144 case CMD_grep: au_name = (char_u *)"grep"; break; |
3145 case CMD_lgrep: au_name = (char_u *)"lgrep"; break; | |
3146 case CMD_grepadd: au_name = (char_u *)"grepadd"; break; | |
3147 case CMD_lgrepadd: au_name = (char_u *)"lgrepadd"; break; | |
161 | 3148 default: break; |
3149 } | |
3150 if (au_name != NULL) | |
3151 { | |
3152 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name, | |
3153 curbuf->b_fname, TRUE, curbuf); | |
3154 if (did_throw || force_abort) | |
3155 return; | |
3156 } | |
3157 #endif | |
41 | 3158 |
661 | 3159 if (eap->cmdidx == CMD_lgrep |
659 | 3160 || eap->cmdidx == CMD_lvimgrep |
3161 || eap->cmdidx == CMD_lgrepadd | |
3162 || eap->cmdidx == CMD_lvimgrepadd) | |
657 | 3163 { |
3164 qi = ll_get_or_alloc_list(curwin); | |
3165 if (qi == NULL) | |
3166 return; | |
3167 } | |
3168 | |
716 | 3169 if (eap->addr_count > 0) |
3170 tomatch = eap->line2; | |
3171 else | |
3172 tomatch = MAXLNUM; | |
3173 | |
42 | 3174 /* Get the search pattern: either white-separated or enclosed in // */ |
41 | 3175 regmatch.regprog = NULL; |
170 | 3176 p = skip_vimgrep_pat(eap->arg, &s, &flags); |
153 | 3177 if (p == NULL) |
41 | 3178 { |
282 | 3179 EMSG(_(e_invalpat)); |
153 | 3180 goto theend; |
41 | 3181 } |
42 | 3182 regmatch.regprog = vim_regcomp(s, RE_MAGIC); |
41 | 3183 if (regmatch.regprog == NULL) |
3184 goto theend; | |
95 | 3185 regmatch.rmm_ic = p_ic; |
410 | 3186 regmatch.rmm_maxcol = 0; |
41 | 3187 |
3188 p = skipwhite(p); | |
3189 if (*p == NUL) | |
3190 { | |
3191 EMSG(_("E683: File name missing or invalid pattern")); | |
3192 goto theend; | |
3193 } | |
3194 | |
661 | 3195 if ((eap->cmdidx != CMD_grepadd && eap->cmdidx != CMD_lgrepadd && |
657 | 3196 eap->cmdidx != CMD_vimgrepadd && eap->cmdidx != CMD_lvimgrepadd) |
644 | 3197 || qi->qf_curlist == qi->qf_listcount) |
41 | 3198 /* make place for a new list */ |
3965 | 3199 qf_new_list(qi, *eap->cmdlinep); |
644 | 3200 else if (qi->qf_lists[qi->qf_curlist].qf_count > 0) |
41 | 3201 /* Adding to existing list, find last entry. */ |
644 | 3202 for (prevp = qi->qf_lists[qi->qf_curlist].qf_start; |
41 | 3203 prevp->qf_next != prevp; prevp = prevp->qf_next) |
3204 ; | |
3205 | |
3206 /* parse the list of arguments */ | |
3620 | 3207 if (get_arglist_exp(p, &fcount, &fnames, TRUE) == FAIL) |
41 | 3208 goto theend; |
3209 if (fcount == 0) | |
3210 { | |
3211 EMSG(_(e_nomatch)); | |
3212 goto theend; | |
3213 } | |
3214 | |
2770 | 3215 dirname_start = alloc(MAXPATHL); |
3216 dirname_now = alloc(MAXPATHL); | |
3217 if (dirname_start == NULL || dirname_now == NULL) | |
3218 goto theend; | |
3219 | |
1411 | 3220 /* Remember the current directory, because a BufRead autocommand that does |
3221 * ":lcd %:p:h" changes the meaning of short path names. */ | |
3222 mch_dirname(dirname_start, MAXPATHL); | |
3223 | |
4003 | 3224 #ifdef FEAT_AUTOCMD |
3225 /* Remeber the value of qf_start, so that we can check for autocommands | |
3226 * changing the current quickfix list. */ | |
3227 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start; | |
3228 #endif | |
3229 | |
123 | 3230 seconds = (time_t)0; |
716 | 3231 for (fi = 0; fi < fcount && !got_int && tomatch > 0; ++fi) |
41 | 3232 { |
1411 | 3233 fname = shorten_fname1(fnames[fi]); |
123 | 3234 if (time(NULL) > seconds) |
3235 { | |
1411 | 3236 /* Display the file name every second or so, show the user we are |
3237 * working on it. */ | |
123 | 3238 seconds = time(NULL); |
3239 msg_start(); | |
1411 | 3240 p = msg_strtrunc(fname, TRUE); |
123 | 3241 if (p == NULL) |
1411 | 3242 msg_outtrans(fname); |
123 | 3243 else |
3244 { | |
3245 msg_outtrans(p); | |
3246 vim_free(p); | |
3247 } | |
3248 msg_clr_eos(); | |
3249 msg_didout = FALSE; /* overwrite this message */ | |
3250 msg_nowait = TRUE; /* don't wait for this message */ | |
3251 msg_col = 0; | |
3252 out_flush(); | |
3253 } | |
3254 | |
42 | 3255 buf = buflist_findname_exp(fnames[fi]); |
3256 if (buf == NULL || buf->b_ml.ml_mfp == NULL) | |
3257 { | |
3258 /* Remember that a buffer with this name already exists. */ | |
3259 duplicate_name = (buf != NULL); | |
123 | 3260 using_dummy = TRUE; |
1396 | 3261 redraw_for_dummy = TRUE; |
123 | 3262 |
3263 #if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL) | |
3264 /* Don't do Filetype autocommands to avoid loading syntax and | |
3265 * indent scripts, a great speed improvement. */ | |
3266 save_ei = au_event_disable(",Filetype"); | |
3267 #endif | |
677 | 3268 /* Don't use modelines here, it's useless. */ |
3269 save_mls = p_mls; | |
3270 p_mls = 0; | |
42 | 3271 |
3272 /* Load file into a buffer, so that 'fileencoding' is detected, | |
3273 * autocommands applied, etc. */ | |
3490 | 3274 buf = load_dummy_buffer(fname, dirname_start, dirname_now); |
123 | 3275 |
677 | 3276 p_mls = save_mls; |
123 | 3277 #if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL) |
3278 au_event_restore(save_ei); | |
3279 #endif | |
42 | 3280 } |
3281 else | |
3282 /* Use existing, loaded buffer. */ | |
3283 using_dummy = FALSE; | |
123 | 3284 |
4003 | 3285 #ifdef FEAT_AUTOCMD |
3286 if (cur_qf_start != qi->qf_lists[qi->qf_curlist].qf_start) | |
3287 { | |
3288 int idx; | |
3289 | |
3290 /* Autocommands changed the quickfix list. Find the one we were | |
3291 * using and restore it. */ | |
3292 for (idx = 0; idx < LISTCOUNT; ++idx) | |
3293 if (cur_qf_start == qi->qf_lists[idx].qf_start) | |
3294 { | |
3295 qi->qf_curlist = idx; | |
3296 break; | |
3297 } | |
3298 if (idx == LISTCOUNT) | |
3299 { | |
3300 /* List cannot be found, create a new one. */ | |
3301 qf_new_list(qi, *eap->cmdlinep); | |
3302 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start; | |
3303 } | |
3304 } | |
3305 #endif | |
3306 | |
42 | 3307 if (buf == NULL) |
123 | 3308 { |
3309 if (!got_int) | |
1411 | 3310 smsg((char_u *)_("Cannot open file \"%s\""), fname); |
123 | 3311 } |
41 | 3312 else |
3313 { | |
717 | 3314 /* Try for a match in all lines of the buffer. |
3315 * For ":1vimgrep" look for first match only. */ | |
42 | 3316 found_match = FALSE; |
716 | 3317 for (lnum = 1; lnum <= buf->b_ml.ml_line_count && tomatch > 0; |
3318 ++lnum) | |
41 | 3319 { |
170 | 3320 col = 0; |
3321 while (vim_regexec_multi(®match, curwin, buf, lnum, | |
1521 | 3322 col, NULL) > 0) |
41 | 3323 { |
1411 | 3324 ; |
644 | 3325 if (qf_add_entry(qi, &prevp, |
41 | 3326 NULL, /* dir */ |
1411 | 3327 fname, |
1065 | 3328 0, |
42 | 3329 ml_get_buf(buf, |
3330 regmatch.startpos[0].lnum + lnum, FALSE), | |
3331 regmatch.startpos[0].lnum + lnum, | |
3332 regmatch.startpos[0].col + 1, | |
170 | 3333 FALSE, /* vis_col */ |
230 | 3334 NULL, /* search pattern */ |
856 | 3335 0, /* nr */ |
3336 0, /* type */ | |
3337 TRUE /* valid */ | |
41 | 3338 ) == FAIL) |
3339 { | |
3340 got_int = TRUE; | |
3341 break; | |
3342 } | |
716 | 3343 found_match = TRUE; |
3344 if (--tomatch == 0) | |
3345 break; | |
170 | 3346 if ((flags & VGR_GLOBAL) == 0 |
3347 || regmatch.endpos[0].lnum > 0) | |
3348 break; | |
3349 col = regmatch.endpos[0].col | |
3350 + (col == regmatch.endpos[0].col); | |
1883 | 3351 if (col > (colnr_T)STRLEN(ml_get_buf(buf, lnum, FALSE))) |
170 | 3352 break; |
41 | 3353 } |
3354 line_breakcheck(); | |
42 | 3355 if (got_int) |
3356 break; | |
41 | 3357 } |
4003 | 3358 #ifdef FEAT_AUTOCMD |
3359 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start; | |
3360 #endif | |
42 | 3361 |
3362 if (using_dummy) | |
3363 { | |
123 | 3364 if (found_match && first_match_buf == NULL) |
3365 first_match_buf = buf; | |
42 | 3366 if (duplicate_name) |
123 | 3367 { |
42 | 3368 /* Never keep a dummy buffer if there is another buffer |
3369 * with the same name. */ | |
3490 | 3370 wipe_dummy_buffer(buf, dirname_start); |
123 | 3371 buf = NULL; |
3372 } | |
717 | 3373 else if (!cmdmod.hide |
3374 || buf->b_p_bh[0] == 'u' /* "unload" */ | |
3375 || buf->b_p_bh[0] == 'w' /* "wipe" */ | |
3376 || buf->b_p_bh[0] == 'd') /* "delete" */ | |
42 | 3377 { |
717 | 3378 /* When no match was found we don't need to remember the |
3379 * buffer, wipe it out. If there was a match and it | |
3380 * wasn't the first one or we won't jump there: only | |
3381 * unload the buffer. | |
3382 * Ignore 'hidden' here, because it may lead to having too | |
3383 * many swap files. */ | |
42 | 3384 if (!found_match) |
123 | 3385 { |
3490 | 3386 wipe_dummy_buffer(buf, dirname_start); |
123 | 3387 buf = NULL; |
3388 } | |
170 | 3389 else if (buf != first_match_buf || (flags & VGR_NOJUMP)) |
123 | 3390 { |
3490 | 3391 unload_dummy_buffer(buf, dirname_start); |
123 | 3392 buf = NULL; |
3393 } | |
42 | 3394 } |
123 | 3395 |
3396 if (buf != NULL) | |
3397 { | |
1411 | 3398 /* If the buffer is still loaded we need to use the |
3399 * directory we jumped to below. */ | |
3400 if (buf == first_match_buf | |
3401 && target_dir == NULL | |
3402 && STRCMP(dirname_start, dirname_now) != 0) | |
3403 target_dir = vim_strsave(dirname_now); | |
3404 | |
123 | 3405 /* The buffer is still loaded, the Filetype autocommands |
677 | 3406 * need to be done now, in that buffer. And the modelines |
717 | 3407 * need to be done (again). But not the window-local |
3408 * options! */ | |
123 | 3409 aucmd_prepbuf(&aco, buf); |
677 | 3410 #if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL) |
123 | 3411 apply_autocmds(EVENT_FILETYPE, buf->b_p_ft, |
3412 buf->b_fname, TRUE, buf); | |
677 | 3413 #endif |
717 | 3414 do_modelines(OPT_NOWIN); |
123 | 3415 aucmd_restbuf(&aco); |
3416 } | |
42 | 3417 } |
41 | 3418 } |
3419 } | |
3420 | |
3421 FreeWild(fcount, fnames); | |
3422 | |
644 | 3423 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE; |
3424 qi->qf_lists[qi->qf_curlist].qf_ptr = qi->qf_lists[qi->qf_curlist].qf_start; | |
3425 qi->qf_lists[qi->qf_curlist].qf_index = 1; | |
41 | 3426 |
3427 #ifdef FEAT_WINDOWS | |
644 | 3428 qf_update_buffer(qi); |
41 | 3429 #endif |
3430 | |
842 | 3431 #ifdef FEAT_AUTOCMD |
3432 if (au_name != NULL) | |
3433 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, | |
3434 curbuf->b_fname, TRUE, curbuf); | |
3435 #endif | |
3436 | |
41 | 3437 /* Jump to first match. */ |
644 | 3438 if (qi->qf_lists[qi->qf_curlist].qf_count > 0) |
170 | 3439 { |
3440 if ((flags & VGR_NOJUMP) == 0) | |
1396 | 3441 { |
3442 buf = curbuf; | |
659 | 3443 qf_jump(qi, 0, 0, eap->forceit); |
1396 | 3444 if (buf != curbuf) |
3445 /* If we jumped to another buffer redrawing will already be | |
3446 * taken care of. */ | |
3447 redraw_for_dummy = FALSE; | |
1411 | 3448 |
3449 /* Jump to the directory used after loading the buffer. */ | |
3450 if (curbuf == first_match_buf && target_dir != NULL) | |
3451 { | |
3452 exarg_T ea; | |
3453 | |
3454 ea.arg = target_dir; | |
3455 ea.cmdidx = CMD_lcd; | |
3456 ex_cd(&ea); | |
3457 } | |
1396 | 3458 } |
170 | 3459 } |
42 | 3460 else |
3461 EMSG2(_(e_nomatch2), s); | |
41 | 3462 |
1396 | 3463 /* If we loaded a dummy buffer into the current window, the autocommands |
3464 * may have messed up things, need to redraw and recompute folds. */ | |
3465 if (redraw_for_dummy) | |
3466 { | |
3467 #ifdef FEAT_FOLDING | |
3468 foldUpdateAll(curwin); | |
3469 #else | |
3470 redraw_later(NOT_VALID); | |
3471 #endif | |
3472 } | |
3473 | |
41 | 3474 theend: |
2770 | 3475 vim_free(dirname_now); |
3476 vim_free(dirname_start); | |
1411 | 3477 vim_free(target_dir); |
41 | 3478 vim_free(regmatch.regprog); |
3479 } | |
3480 | |
3481 /* | |
170 | 3482 * Skip over the pattern argument of ":vimgrep /pat/[g][j]". |
153 | 3483 * Put the start of the pattern in "*s", unless "s" is NULL. |
170 | 3484 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP. |
3485 * If "s" is not NULL terminate the pattern with a NUL. | |
3486 * Return a pointer to the char just past the pattern plus flags. | |
153 | 3487 */ |
3488 char_u * | |
170 | 3489 skip_vimgrep_pat(p, s, flags) |
3490 char_u *p; | |
3491 char_u **s; | |
3492 int *flags; | |
153 | 3493 { |
3494 int c; | |
3495 | |
3496 if (vim_isIDc(*p)) | |
3497 { | |
170 | 3498 /* ":vimgrep pattern fname" */ |
153 | 3499 if (s != NULL) |
3500 *s = p; | |
170 | 3501 p = skiptowhite(p); |
3502 if (s != NULL && *p != NUL) | |
3503 *p++ = NUL; | |
153 | 3504 } |
170 | 3505 else |
3506 { | |
3507 /* ":vimgrep /pattern/[g][j] fname" */ | |
3508 if (s != NULL) | |
3509 *s = p + 1; | |
3510 c = *p; | |
3511 p = skip_regexp(p + 1, c, TRUE, NULL); | |
3512 if (*p != c) | |
3513 return NULL; | |
3514 | |
3515 /* Truncate the pattern. */ | |
3516 if (s != NULL) | |
3517 *p = NUL; | |
3518 ++p; | |
3519 | |
3520 /* Find the flags */ | |
3521 while (*p == 'g' || *p == 'j') | |
3522 { | |
3523 if (flags != NULL) | |
3524 { | |
3525 if (*p == 'g') | |
3526 *flags |= VGR_GLOBAL; | |
3527 else | |
3528 *flags |= VGR_NOJUMP; | |
3529 } | |
3530 ++p; | |
3531 } | |
3532 } | |
153 | 3533 return p; |
3534 } | |
3535 | |
3536 /* | |
3490 | 3537 * Restore current working directory to "dirname_start" if they differ, taking |
3538 * into account whether it is set locally or globally. | |
3539 */ | |
3540 static void | |
3541 restore_start_dir(dirname_start) | |
3542 char_u *dirname_start; | |
3543 { | |
3544 char_u *dirname_now = alloc(MAXPATHL); | |
3545 | |
3546 if (NULL != dirname_now) | |
3547 { | |
3548 mch_dirname(dirname_now, MAXPATHL); | |
3549 if (STRCMP(dirname_start, dirname_now) != 0) | |
3550 { | |
3551 /* If the directory has changed, change it back by building up an | |
3552 * appropriate ex command and executing it. */ | |
3553 exarg_T ea; | |
3554 | |
3555 ea.arg = dirname_start; | |
3556 ea.cmdidx = (curwin->w_localdir == NULL) ? CMD_cd : CMD_lcd; | |
3557 ex_cd(&ea); | |
3558 } | |
3974 | 3559 vim_free(dirname_now); |
3490 | 3560 } |
3561 } | |
3562 | |
3563 /* | |
3564 * Load file "fname" into a dummy buffer and return the buffer pointer, | |
3565 * placing the directory resulting from the buffer load into the | |
3566 * "resulting_dir" pointer. "resulting_dir" must be allocated by the caller | |
3567 * prior to calling this function. Restores directory to "dirname_start" prior | |
3568 * to returning, if autocmds or the 'autochdir' option have changed it. | |
3569 * | |
3570 * If creating the dummy buffer does not fail, must call unload_dummy_buffer() | |
3571 * or wipe_dummy_buffer() later! | |
3572 * | |
42 | 3573 * Returns NULL if it fails. |
3574 */ | |
3575 static buf_T * | |
3490 | 3576 load_dummy_buffer(fname, dirname_start, resulting_dir) |
42 | 3577 char_u *fname; |
3490 | 3578 char_u *dirname_start; /* in: old directory */ |
3579 char_u *resulting_dir; /* out: new directory */ | |
42 | 3580 { |
3581 buf_T *newbuf; | |
2646 | 3582 buf_T *newbuf_to_wipe = NULL; |
42 | 3583 int failed = TRUE; |
3584 aco_save_T aco; | |
3585 | |
3586 /* Allocate a buffer without putting it in the buffer list. */ | |
3587 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY); | |
3588 if (newbuf == NULL) | |
3589 return NULL; | |
3590 | |
177 | 3591 /* Init the options. */ |
3592 buf_copy_options(newbuf, BCO_ENTER | BCO_NOHELP); | |
3593 | |
1918 | 3594 /* need to open the memfile before putting the buffer in a window */ |
3595 if (ml_open(newbuf) == OK) | |
42 | 3596 { |
1918 | 3597 /* set curwin/curbuf to buf and save a few things */ |
3598 aucmd_prepbuf(&aco, newbuf); | |
3599 | |
3600 /* Need to set the filename for autocommands. */ | |
3601 (void)setfname(curbuf, fname, NULL, FALSE); | |
3602 | |
42 | 3603 /* Create swap file now to avoid the ATTENTION message. */ |
3604 check_need_swap(TRUE); | |
3605 | |
3606 /* Remove the "dummy" flag, otherwise autocommands may not | |
3607 * work. */ | |
3608 curbuf->b_flags &= ~BF_DUMMY; | |
3609 | |
3610 if (readfile(fname, NULL, | |
3611 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, | |
3612 NULL, READ_NEW | READ_DUMMY) == OK | |
857 | 3613 && !got_int |
42 | 3614 && !(curbuf->b_flags & BF_NEW)) |
3615 { | |
3616 failed = FALSE; | |
3617 if (curbuf != newbuf) | |
3618 { | |
2646 | 3619 /* Bloody autocommands changed the buffer! Can happen when |
3620 * using netrw and editing a remote file. Use the current | |
3621 * buffer instead, delete the dummy one after restoring the | |
3622 * window stuff. */ | |
3623 newbuf_to_wipe = newbuf; | |
42 | 3624 newbuf = curbuf; |
3625 } | |
3626 } | |
1918 | 3627 |
3628 /* restore curwin/curbuf and a few other things */ | |
3629 aucmd_restbuf(&aco); | |
2646 | 3630 if (newbuf_to_wipe != NULL && buf_valid(newbuf_to_wipe)) |
3631 wipe_buffer(newbuf_to_wipe, FALSE); | |
42 | 3632 } |
3633 | |
3490 | 3634 /* |
3635 * When autocommands/'autochdir' option changed directory: go back. | |
3636 * Let the caller know what the resulting dir was first, in case it is | |
3637 * important. | |
3638 */ | |
3639 mch_dirname(resulting_dir, MAXPATHL); | |
3640 restore_start_dir(dirname_start); | |
3641 | |
42 | 3642 if (!buf_valid(newbuf)) |
3643 return NULL; | |
3644 if (failed) | |
3645 { | |
3490 | 3646 wipe_dummy_buffer(newbuf, dirname_start); |
42 | 3647 return NULL; |
3648 } | |
3649 return newbuf; | |
3650 } | |
3651 | |
3652 /* | |
3490 | 3653 * Wipe out the dummy buffer that load_dummy_buffer() created. Restores |
3654 * directory to "dirname_start" prior to returning, if autocmds or the | |
3655 * 'autochdir' option have changed it. | |
42 | 3656 */ |
3657 static void | |
3490 | 3658 wipe_dummy_buffer(buf, dirname_start) |
42 | 3659 buf_T *buf; |
3490 | 3660 char_u *dirname_start; |
42 | 3661 { |
3662 if (curbuf != buf) /* safety check */ | |
857 | 3663 { |
3664 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
3665 cleanup_T cs; | |
3666 | |
3667 /* Reset the error/interrupt/exception state here so that aborting() | |
3668 * returns FALSE when wiping out the buffer. Otherwise it doesn't | |
3669 * work when got_int is set. */ | |
3670 enter_cleanup(&cs); | |
3671 #endif | |
3672 | |
42 | 3673 wipe_buffer(buf, FALSE); |
857 | 3674 |
3675 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
3676 /* Restore the error/interrupt/exception state if not discarded by a | |
3677 * new aborting error, interrupt, or uncaught exception. */ | |
3678 leave_cleanup(&cs); | |
3679 #endif | |
3490 | 3680 /* When autocommands/'autochdir' option changed directory: go back. */ |
3681 restore_start_dir(dirname_start); | |
857 | 3682 } |
42 | 3683 } |
3684 | |
3685 /* | |
3490 | 3686 * Unload the dummy buffer that load_dummy_buffer() created. Restores |
3687 * directory to "dirname_start" prior to returning, if autocmds or the | |
3688 * 'autochdir' option have changed it. | |
42 | 3689 */ |
3690 static void | |
3490 | 3691 unload_dummy_buffer(buf, dirname_start) |
42 | 3692 buf_T *buf; |
3490 | 3693 char_u *dirname_start; |
42 | 3694 { |
3695 if (curbuf != buf) /* safety check */ | |
3490 | 3696 { |
3365 | 3697 close_buffer(NULL, buf, DOBUF_UNLOAD, FALSE); |
3490 | 3698 |
3699 /* When autocommands/'autochdir' option changed directory: go back. */ | |
3700 restore_start_dir(dirname_start); | |
3701 } | |
42 | 3702 } |
3703 | |
170 | 3704 #if defined(FEAT_EVAL) || defined(PROTO) |
3705 /* | |
3706 * Add each quickfix error to list "list" as a dictionary. | |
3707 */ | |
3708 int | |
647 | 3709 get_errorlist(wp, list) |
3710 win_T *wp; | |
170 | 3711 list_T *list; |
3712 { | |
644 | 3713 qf_info_T *qi = &ql_info; |
230 | 3714 dict_T *dict; |
3715 char_u buf[2]; | |
3716 qfline_T *qfp; | |
3717 int i; | |
1065 | 3718 int bufnum; |
170 | 3719 |
647 | 3720 if (wp != NULL) |
3721 { | |
3722 qi = GET_LOC_LIST(wp); | |
3723 if (qi == NULL) | |
3724 return FAIL; | |
3725 } | |
3726 | |
644 | 3727 if (qi->qf_curlist >= qi->qf_listcount |
712 | 3728 || qi->qf_lists[qi->qf_curlist].qf_count == 0) |
170 | 3729 return FAIL; |
3730 | |
644 | 3731 qfp = qi->qf_lists[qi->qf_curlist].qf_start; |
3732 for (i = 1; !got_int && i <= qi->qf_lists[qi->qf_curlist].qf_count; ++i) | |
170 | 3733 { |
1065 | 3734 /* Handle entries with a non-existing buffer number. */ |
3735 bufnum = qfp->qf_fnum; | |
3736 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL)) | |
3737 bufnum = 0; | |
3738 | |
170 | 3739 if ((dict = dict_alloc()) == NULL) |
3740 return FAIL; | |
3741 if (list_append_dict(list, dict) == FAIL) | |
3742 return FAIL; | |
3743 | |
3744 buf[0] = qfp->qf_type; | |
3745 buf[1] = NUL; | |
1065 | 3746 if ( dict_add_nr_str(dict, "bufnr", (long)bufnum, NULL) == FAIL |
170 | 3747 || dict_add_nr_str(dict, "lnum", (long)qfp->qf_lnum, NULL) == FAIL |
3748 || dict_add_nr_str(dict, "col", (long)qfp->qf_col, NULL) == FAIL | |
3749 || dict_add_nr_str(dict, "vcol", (long)qfp->qf_viscol, NULL) == FAIL | |
3750 || dict_add_nr_str(dict, "nr", (long)qfp->qf_nr, NULL) == FAIL | |
960 | 3751 || dict_add_nr_str(dict, "pattern", 0L, |
3752 qfp->qf_pattern == NULL ? (char_u *)"" : qfp->qf_pattern) == FAIL | |
3753 || dict_add_nr_str(dict, "text", 0L, | |
3754 qfp->qf_text == NULL ? (char_u *)"" : qfp->qf_text) == FAIL | |
170 | 3755 || dict_add_nr_str(dict, "type", 0L, buf) == FAIL |
3756 || dict_add_nr_str(dict, "valid", (long)qfp->qf_valid, NULL) == FAIL) | |
3757 return FAIL; | |
3758 | |
3759 qfp = qfp->qf_next; | |
3760 } | |
3761 return OK; | |
3762 } | |
230 | 3763 |
3764 /* | |
3765 * Populate the quickfix list with the items supplied in the list | |
2530
9fe4164cb586
Fix: :ltag command did not set w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2416
diff
changeset
|
3766 * of dictionaries. "title" will be copied to w:quickfix_title |
230 | 3767 */ |
3768 int | |
2530
9fe4164cb586
Fix: :ltag command did not set w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2416
diff
changeset
|
3769 set_errorlist(wp, list, action, title) |
647 | 3770 win_T *wp; |
230 | 3771 list_T *list; |
277 | 3772 int action; |
2530
9fe4164cb586
Fix: :ltag command did not set w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2416
diff
changeset
|
3773 char_u *title; |
230 | 3774 { |
3775 listitem_T *li; | |
3776 dict_T *d; | |
3777 char_u *filename, *pattern, *text, *type; | |
1065 | 3778 int bufnum; |
230 | 3779 long lnum; |
3780 int col, nr; | |
3781 int vcol; | |
3782 qfline_T *prevp = NULL; | |
3783 int valid, status; | |
3784 int retval = OK; | |
644 | 3785 qf_info_T *qi = &ql_info; |
1065 | 3786 int did_bufnr_emsg = FALSE; |
644 | 3787 |
647 | 3788 if (wp != NULL) |
3789 { | |
648 | 3790 qi = ll_get_or_alloc_list(wp); |
647 | 3791 if (qi == NULL) |
3792 return FAIL; | |
3793 } | |
3794 | |
644 | 3795 if (action == ' ' || qi->qf_curlist == qi->qf_listcount) |
277 | 3796 /* make place for a new list */ |
3965 | 3797 qf_new_list(qi, title); |
644 | 3798 else if (action == 'a' && qi->qf_lists[qi->qf_curlist].qf_count > 0) |
277 | 3799 /* Adding to existing list, find last entry. */ |
644 | 3800 for (prevp = qi->qf_lists[qi->qf_curlist].qf_start; |
277 | 3801 prevp->qf_next != prevp; prevp = prevp->qf_next) |
3802 ; | |
3803 else if (action == 'r') | |
644 | 3804 qf_free(qi, qi->qf_curlist); |
230 | 3805 |
3806 for (li = list->lv_first; li != NULL; li = li->li_next) | |
3807 { | |
3808 if (li->li_tv.v_type != VAR_DICT) | |
3809 continue; /* Skip non-dict items */ | |
3810 | |
3811 d = li->li_tv.vval.v_dict; | |
3812 if (d == NULL) | |
3813 continue; | |
3814 | |
659 | 3815 filename = get_dict_string(d, (char_u *)"filename", TRUE); |
1065 | 3816 bufnum = get_dict_number(d, (char_u *)"bufnr"); |
230 | 3817 lnum = get_dict_number(d, (char_u *)"lnum"); |
3818 col = get_dict_number(d, (char_u *)"col"); | |
3819 vcol = get_dict_number(d, (char_u *)"vcol"); | |
3820 nr = get_dict_number(d, (char_u *)"nr"); | |
659 | 3821 type = get_dict_string(d, (char_u *)"type", TRUE); |
3822 pattern = get_dict_string(d, (char_u *)"pattern", TRUE); | |
3823 text = get_dict_string(d, (char_u *)"text", TRUE); | |
230 | 3824 if (text == NULL) |
3825 text = vim_strsave((char_u *)""); | |
3826 | |
3827 valid = TRUE; | |
1065 | 3828 if ((filename == NULL && bufnum == 0) || (lnum == 0 && pattern == NULL)) |
230 | 3829 valid = FALSE; |
3830 | |
1065 | 3831 /* Mark entries with non-existing buffer number as not valid. Give the |
3832 * error message only once. */ | |
3833 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL)) | |
3834 { | |
3835 if (!did_bufnr_emsg) | |
3836 { | |
3837 did_bufnr_emsg = TRUE; | |
3838 EMSGN(_("E92: Buffer %ld not found"), bufnum); | |
3839 } | |
3840 valid = FALSE; | |
3841 bufnum = 0; | |
3842 } | |
3843 | |
644 | 3844 status = qf_add_entry(qi, &prevp, |
230 | 3845 NULL, /* dir */ |
3846 filename, | |
1065 | 3847 bufnum, |
230 | 3848 text, |
3849 lnum, | |
3850 col, | |
3851 vcol, /* vis_col */ | |
3852 pattern, /* search pattern */ | |
3853 nr, | |
3854 type == NULL ? NUL : *type, | |
3855 valid); | |
3856 | |
3857 vim_free(filename); | |
3858 vim_free(pattern); | |
3859 vim_free(text); | |
3860 vim_free(type); | |
3861 | |
3862 if (status == FAIL) | |
3863 { | |
3864 retval = FAIL; | |
3865 break; | |
3866 } | |
3867 } | |
3868 | |
2146
c17a42da3920
updated for version 7.2.428
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3869 if (qi->qf_lists[qi->qf_curlist].qf_index == 0) |
2795 | 3870 /* no valid entry */ |
2146
c17a42da3920
updated for version 7.2.428
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3871 qi->qf_lists[qi->qf_curlist].qf_nonevalid = TRUE; |
c17a42da3920
updated for version 7.2.428
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3872 else |
c17a42da3920
updated for version 7.2.428
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
3873 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE; |
644 | 3874 qi->qf_lists[qi->qf_curlist].qf_ptr = qi->qf_lists[qi->qf_curlist].qf_start; |
3875 qi->qf_lists[qi->qf_curlist].qf_index = 1; | |
230 | 3876 |
3877 #ifdef FEAT_WINDOWS | |
644 | 3878 qf_update_buffer(qi); |
230 | 3879 #endif |
3880 | |
3881 return retval; | |
3882 } | |
170 | 3883 #endif |
3884 | |
42 | 3885 /* |
41 | 3886 * ":[range]cbuffer [bufnr]" command. |
657 | 3887 * ":[range]caddbuffer [bufnr]" command. |
798 | 3888 * ":[range]cgetbuffer [bufnr]" command. |
644 | 3889 * ":[range]lbuffer [bufnr]" command. |
657 | 3890 * ":[range]laddbuffer [bufnr]" command. |
798 | 3891 * ":[range]lgetbuffer [bufnr]" command. |
41 | 3892 */ |
3893 void | |
3894 ex_cbuffer(eap) | |
3895 exarg_T *eap; | |
3896 { | |
3897 buf_T *buf = NULL; | |
644 | 3898 qf_info_T *qi = &ql_info; |
3899 | |
798 | 3900 if (eap->cmdidx == CMD_lbuffer || eap->cmdidx == CMD_lgetbuffer |
3901 || eap->cmdidx == CMD_laddbuffer) | |
644 | 3902 { |
3903 qi = ll_get_or_alloc_list(curwin); | |
3904 if (qi == NULL) | |
3905 return; | |
3906 } | |
41 | 3907 |
3908 if (*eap->arg == NUL) | |
3909 buf = curbuf; | |
3910 else if (*skipwhite(skipdigits(eap->arg)) == NUL) | |
3911 buf = buflist_findnr(atoi((char *)eap->arg)); | |
3912 if (buf == NULL) | |
3913 EMSG(_(e_invarg)); | |
3914 else if (buf->b_ml.ml_mfp == NULL) | |
3915 EMSG(_("E681: Buffer is not loaded")); | |
3916 else | |
3917 { | |
3918 if (eap->addr_count == 0) | |
3919 { | |
3920 eap->line1 = 1; | |
3921 eap->line2 = buf->b_ml.ml_line_count; | |
3922 } | |
3923 if (eap->line1 < 1 || eap->line1 > buf->b_ml.ml_line_count | |
3924 || eap->line2 < 1 || eap->line2 > buf->b_ml.ml_line_count) | |
3925 EMSG(_(e_invrange)); | |
3926 else | |
661 | 3927 { |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3928 char_u *qf_title = *eap->cmdlinep; |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3929 |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3930 if (buf->b_sfname) |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3931 { |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3932 vim_snprintf((char *)IObuff, IOSIZE, "%s (%s)", |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3933 (char *)qf_title, (char *)buf->b_sfname); |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3934 qf_title = IObuff; |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3935 } |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3936 |
798 | 3937 if (qf_init_ext(qi, NULL, buf, NULL, p_efm, |
3938 (eap->cmdidx != CMD_caddbuffer | |
3939 && eap->cmdidx != CMD_laddbuffer), | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3940 eap->line1, eap->line2, |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3941 qf_title) > 0 |
798 | 3942 && (eap->cmdidx == CMD_cbuffer |
3943 || eap->cmdidx == CMD_lbuffer)) | |
661 | 3944 qf_jump(qi, 0, 0, eap->forceit); /* display first error */ |
3945 } | |
41 | 3946 } |
3947 } | |
3948 | |
532 | 3949 #if defined(FEAT_EVAL) || defined(PROTO) |
41 | 3950 /* |
798 | 3951 * ":cexpr {expr}", ":cgetexpr {expr}", ":caddexpr {expr}" command. |
3952 * ":lexpr {expr}", ":lgetexpr {expr}", ":laddexpr {expr}" command. | |
446 | 3953 */ |
3954 void | |
3955 ex_cexpr(eap) | |
3956 exarg_T *eap; | |
3957 { | |
3958 typval_T *tv; | |
644 | 3959 qf_info_T *qi = &ql_info; |
3960 | |
798 | 3961 if (eap->cmdidx == CMD_lexpr || eap->cmdidx == CMD_lgetexpr |
3962 || eap->cmdidx == CMD_laddexpr) | |
644 | 3963 { |
3964 qi = ll_get_or_alloc_list(curwin); | |
3965 if (qi == NULL) | |
3966 return; | |
3967 } | |
446 | 3968 |
625 | 3969 /* Evaluate the expression. When the result is a string or a list we can |
3970 * use it to fill the errorlist. */ | |
446 | 3971 tv = eval_expr(eap->arg, NULL); |
625 | 3972 if (tv != NULL) |
3973 { | |
3974 if ((tv->v_type == VAR_STRING && tv->vval.v_string != NULL) | |
3975 || (tv->v_type == VAR_LIST && tv->vval.v_list != NULL)) | |
3976 { | |
798 | 3977 if (qf_init_ext(qi, NULL, NULL, tv, p_efm, |
3978 (eap->cmdidx != CMD_caddexpr | |
3979 && eap->cmdidx != CMD_laddexpr), | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3980 (linenr_T)0, (linenr_T)0, *eap->cmdlinep) > 0 |
798 | 3981 && (eap->cmdidx == CMD_cexpr |
3982 || eap->cmdidx == CMD_lexpr)) | |
659 | 3983 qf_jump(qi, 0, 0, eap->forceit); /* display first error */ |
625 | 3984 } |
3985 else | |
626 | 3986 EMSG(_("E777: String or List expected")); |
625 | 3987 free_tv(tv); |
3988 } | |
446 | 3989 } |
532 | 3990 #endif |
446 | 3991 |
3992 /* | |
7 | 3993 * ":helpgrep {pattern}" |
3994 */ | |
3995 void | |
3996 ex_helpgrep(eap) | |
3997 exarg_T *eap; | |
3998 { | |
3999 regmatch_T regmatch; | |
4000 char_u *save_cpo; | |
4001 char_u *p; | |
4002 int fcount; | |
4003 char_u **fnames; | |
4004 FILE *fd; | |
4005 int fi; | |
230 | 4006 qfline_T *prevp = NULL; |
7 | 4007 long lnum; |
9 | 4008 #ifdef FEAT_MULTI_LANG |
4009 char_u *lang; | |
4010 #endif | |
644 | 4011 qf_info_T *qi = &ql_info; |
659 | 4012 int new_qi = FALSE; |
4013 win_T *wp; | |
3269 | 4014 #ifdef FEAT_AUTOCMD |
4015 char_u *au_name = NULL; | |
4016 #endif | |
7 | 4017 |
9 | 4018 #ifdef FEAT_MULTI_LANG |
4019 /* Check for a specified language */ | |
4020 lang = check_help_lang(eap->arg); | |
4021 #endif | |
4022 | |
3269 | 4023 #ifdef FEAT_AUTOCMD |
4024 switch (eap->cmdidx) | |
4025 { | |
4026 case CMD_helpgrep: au_name = (char_u *)"helpgrep"; break; | |
4027 case CMD_lhelpgrep: au_name = (char_u *)"lhelpgrep"; break; | |
4028 default: break; | |
4029 } | |
4030 if (au_name != NULL) | |
4031 { | |
4032 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name, | |
4033 curbuf->b_fname, TRUE, curbuf); | |
4034 if (did_throw || force_abort) | |
4035 return; | |
4036 } | |
4037 #endif | |
4038 | |
4039 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */ | |
4040 save_cpo = p_cpo; | |
4041 p_cpo = empty_option; | |
4042 | |
659 | 4043 if (eap->cmdidx == CMD_lhelpgrep) |
4044 { | |
4045 /* Find an existing help window */ | |
4046 FOR_ALL_WINDOWS(wp) | |
4047 if (wp->w_buffer != NULL && wp->w_buffer->b_help) | |
4048 break; | |
4049 | |
4050 if (wp == NULL) /* Help window not found */ | |
4051 qi = NULL; | |
4052 else | |
4053 qi = wp->w_llist; | |
4054 | |
4055 if (qi == NULL) | |
4056 { | |
4057 /* Allocate a new location list for help text matches */ | |
4058 if ((qi = ll_new_list()) == NULL) | |
4059 return; | |
4060 new_qi = TRUE; | |
4061 } | |
4062 } | |
4063 | |
7 | 4064 regmatch.regprog = vim_regcomp(eap->arg, RE_MAGIC + RE_STRING); |
4065 regmatch.rm_ic = FALSE; | |
4066 if (regmatch.regprog != NULL) | |
4067 { | |
3257 | 4068 #ifdef FEAT_MBYTE |
4069 vimconv_T vc; | |
4070 | |
4071 /* Help files are in utf-8 or latin1, convert lines when 'encoding' | |
4072 * differs. */ | |
4073 vc.vc_type = CONV_NONE; | |
4074 if (!enc_utf8) | |
4075 convert_setup(&vc, (char_u *)"utf-8", p_enc); | |
4076 #endif | |
4077 | |
7 | 4078 /* create a new quickfix list */ |
3965 | 4079 qf_new_list(qi, *eap->cmdlinep); |
7 | 4080 |
4081 /* Go through all directories in 'runtimepath' */ | |
4082 p = p_rtp; | |
4083 while (*p != NUL && !got_int) | |
4084 { | |
4085 copy_option_part(&p, NameBuff, MAXPATHL, ","); | |
4086 | |
4087 /* Find all "*.txt" and "*.??x" files in the "doc" directory. */ | |
4088 add_pathsep(NameBuff); | |
4089 STRCAT(NameBuff, "doc/*.\\(txt\\|??x\\)"); | |
4090 if (gen_expand_wildcards(1, &NameBuff, &fcount, | |
4091 &fnames, EW_FILE|EW_SILENT) == OK | |
4092 && fcount > 0) | |
4093 { | |
4094 for (fi = 0; fi < fcount && !got_int; ++fi) | |
4095 { | |
9 | 4096 #ifdef FEAT_MULTI_LANG |
4097 /* Skip files for a different language. */ | |
4098 if (lang != NULL | |
4099 && STRNICMP(lang, fnames[fi] | |
4100 + STRLEN(fnames[fi]) - 3, 2) != 0 | |
4101 && !(STRNICMP(lang, "en", 2) == 0 | |
4102 && STRNICMP("txt", fnames[fi] | |
4103 + STRLEN(fnames[fi]) - 3, 3) == 0)) | |
4104 continue; | |
4105 #endif | |
531 | 4106 fd = mch_fopen((char *)fnames[fi], "r"); |
7 | 4107 if (fd != NULL) |
4108 { | |
4109 lnum = 1; | |
4110 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) | |
4111 { | |
3257 | 4112 char_u *line = IObuff; |
4113 #ifdef FEAT_MBYTE | |
4114 /* Convert a line if 'encoding' is not utf-8 and | |
4115 * the line contains a non-ASCII character. */ | |
4116 if (vc.vc_type != CONV_NONE | |
4117 && has_non_ascii(IObuff)) { | |
4118 line = string_convert(&vc, IObuff, NULL); | |
4119 if (line == NULL) | |
4120 line = IObuff; | |
4121 } | |
4122 #endif | |
4123 | |
4124 if (vim_regexec(®match, line, (colnr_T)0)) | |
7 | 4125 { |
3257 | 4126 int l = (int)STRLEN(line); |
7 | 4127 |
4128 /* remove trailing CR, LF, spaces, etc. */ | |
3257 | 4129 while (l > 0 && line[l - 1] <= ' ') |
4130 line[--l] = NUL; | |
7 | 4131 |
644 | 4132 if (qf_add_entry(qi, &prevp, |
7 | 4133 NULL, /* dir */ |
4134 fnames[fi], | |
1065 | 4135 0, |
3257 | 4136 line, |
7 | 4137 lnum, |
3257 | 4138 (int)(regmatch.startp[0] - line) |
42 | 4139 + 1, /* col */ |
170 | 4140 FALSE, /* vis_col */ |
230 | 4141 NULL, /* search pattern */ |
7 | 4142 0, /* nr */ |
4143 1, /* type */ | |
4144 TRUE /* valid */ | |
4145 ) == FAIL) | |
4146 { | |
4147 got_int = TRUE; | |
3257 | 4148 #ifdef FEAT_MBYTE |
4149 if (line != IObuff) | |
4150 vim_free(line); | |
4151 #endif | |
7 | 4152 break; |
4153 } | |
4154 } | |
3257 | 4155 #ifdef FEAT_MBYTE |
4156 if (line != IObuff) | |
4157 vim_free(line); | |
4158 #endif | |
7 | 4159 ++lnum; |
4160 line_breakcheck(); | |
4161 } | |
4162 fclose(fd); | |
4163 } | |
4164 } | |
4165 FreeWild(fcount, fnames); | |
4166 } | |
4167 } | |
3257 | 4168 |
7 | 4169 vim_free(regmatch.regprog); |
3257 | 4170 #ifdef FEAT_MBYTE |
4171 if (vc.vc_type != CONV_NONE) | |
4172 convert_setup(&vc, NULL, NULL); | |
4173 #endif | |
7 | 4174 |
644 | 4175 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE; |
4176 qi->qf_lists[qi->qf_curlist].qf_ptr = | |
4177 qi->qf_lists[qi->qf_curlist].qf_start; | |
4178 qi->qf_lists[qi->qf_curlist].qf_index = 1; | |
7 | 4179 } |
4180 | |
1672 | 4181 if (p_cpo == empty_option) |
4182 p_cpo = save_cpo; | |
4183 else | |
4184 /* Darn, some plugin changed the value. */ | |
4185 free_string_option(save_cpo); | |
7 | 4186 |
4187 #ifdef FEAT_WINDOWS | |
644 | 4188 qf_update_buffer(qi); |
7 | 4189 #endif |
4190 | |
3269 | 4191 #ifdef FEAT_AUTOCMD |
4192 if (au_name != NULL) | |
4193 { | |
4194 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, | |
4195 curbuf->b_fname, TRUE, curbuf); | |
4196 if (!new_qi && qi != &ql_info && qf_find_buf(qi) == NULL) | |
4197 /* autocommands made "qi" invalid */ | |
4198 return; | |
4199 } | |
4200 #endif | |
4201 | |
7 | 4202 /* Jump to first match. */ |
644 | 4203 if (qi->qf_lists[qi->qf_curlist].qf_count > 0) |
659 | 4204 qf_jump(qi, 0, 0, FALSE); |
9 | 4205 else |
4206 EMSG2(_(e_nomatch2), eap->arg); | |
659 | 4207 |
4208 if (eap->cmdidx == CMD_lhelpgrep) | |
4209 { | |
4210 /* If the help window is not opened or if it already points to the | |
661 | 4211 * correct location list, then free the new location list. */ |
659 | 4212 if (!curwin->w_buffer->b_help || curwin->w_llist == qi) |
4213 { | |
4214 if (new_qi) | |
4215 ll_free_all(&qi); | |
4216 } | |
4217 else if (curwin->w_llist == NULL) | |
4218 curwin->w_llist = qi; | |
4219 } | |
7 | 4220 } |
4221 | |
4222 #endif /* FEAT_QUICKFIX */ |