blob: c3f85043720b0d2ce4b5d5f226e622ff94d2e4d0 [file] [log] [blame]
Bram Moolenaarb1c91982018-05-17 17:04:55 +02001*quickfix.txt* For Vim version 8.1. Last change: 2018 May 01
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7This subject is introduced in section |30.1| of the user manual.
8
91. Using QuickFix commands |quickfix|
102. The error window |quickfix-window|
113. Using more than one list of errors |quickfix-error-lists|
124. Using :make |:make_makeprg|
135. Using :grep |grep|
146. Selecting a compiler |compiler-select|
157. The error format |error-file-format|
168. The directory stack |quickfix-directory-stack|
179. Specific error file formats |errorformats|
18
19{Vi does not have any of these commands}
20
21The quickfix commands are not available when the |+quickfix| feature was
22disabled at compile time.
23
24=============================================================================
251. Using QuickFix commands *quickfix* *Quickfix* *E42*
26
27Vim has a special mode to speedup the edit-compile-edit cycle. This is
28inspired by the quickfix option of the Manx's Aztec C compiler on the Amiga.
29The idea is to save the error messages from the compiler in a file and use Vim
30to jump to the errors one by one. You can examine each problem and fix it,
31without having to remember all the error messages.
32
Bram Moolenaar05159a02005-02-26 23:04:13 +000033In Vim the quickfix commands are used more generally to find a list of
34positions in files. For example, |:vimgrep| finds pattern matches. You can
Bram Moolenaar2641f772005-03-25 21:58:17 +000035use the positions in a script with the |getqflist()| function. Thus you can
Bram Moolenaar05159a02005-02-26 23:04:13 +000036do a lot more than the edit/compile/fix cycle!
37
Bram Moolenaare18dbe82016-07-02 21:42:23 +020038If you have the error messages in a file you can start Vim with: >
39 vim -q filename
40
41From inside Vim an easy way to run a command and handle the output is with the
42|:make| command (see below).
43
44The 'errorformat' option should be set to match the error messages from your
Bram Moolenaar071d4272004-06-13 20:20:40 +000045compiler (see |errorformat| below).
46
Bram Moolenaarb4d5fba2017-09-11 19:31:28 +020047 *quickfix-ID*
48Each quickfix list has a unique identifier called the quickfix ID and this
49number will not change within a Vim session. The getqflist() function can be
Bram Moolenaarb4d5fba2017-09-11 19:31:28 +020050used to get the identifier assigned to a list. There is also a quickfix list
51number which may change whenever more than ten lists are added to a quickfix
52stack.
53
Bram Moolenaard12f5c12006-01-25 22:10:52 +000054 *location-list* *E776*
Bram Moolenaar036986f2017-03-16 17:41:02 +010055A location list is a window-local quickfix list. You get one after commands
56like `:lvimgrep`, `:lgrep`, `:lhelpgrep`, `:lmake`, etc., which create a
57location list instead of a quickfix list as the corresponding `:vimgrep`,
58`:grep`, `:helpgrep`, `:make` do.
59A location list is associated with a window and each window can have a
60separate location list. A location list can be associated with only one
61window. The location list is independent of the quickfix list.
Bram Moolenaard12f5c12006-01-25 22:10:52 +000062
Bram Moolenaar280f1262006-01-30 00:14:18 +000063When a window with a location list is split, the new window gets a copy of the
Bram Moolenaare18dbe82016-07-02 21:42:23 +020064location list. When there are no longer any references to a location list,
65the location list is destroyed.
Bram Moolenaar280f1262006-01-30 00:14:18 +000066
Bram Moolenaarb254af32017-12-18 19:48:58 +010067 *quickfix-changedtick*
68Every quickfix and location list has a read-only changedtick variable that
69tracks the total number of changes made to the list. Every time the quickfix
70list is modified, this count is incremented. This can be used to perform an
71action only when the list has changed. The getqflist() and getloclist()
72functions can be used to query the current value of changedtick. You cannot
73change the changedtick variable.
74
Bram Moolenaar280f1262006-01-30 00:14:18 +000075The following quickfix commands can be used. The location list commands are
76similar to the quickfix commands, replacing the 'c' prefix in the quickfix
77command with 'l'.
Bram Moolenaar071d4272004-06-13 20:20:40 +000078
Bram Moolenaare18c0b32016-03-20 21:08:34 +010079 *E924*
80If the current window was closed by an |autocommand| while processing a
81location list command, it will be aborted.
82
Bram Moolenaarffec3c52016-03-23 20:55:42 +010083 *E925* *E926*
84If the current quickfix or location list was changed by an |autocommand| while
85processing a quickfix or location list command, it will be aborted.
86
Bram Moolenaar071d4272004-06-13 20:20:40 +000087 *:cc*
88:cc[!] [nr] Display error [nr]. If [nr] is omitted, the same
89 error is displayed again. Without [!] this doesn't
90 work when jumping to another buffer, the current buffer
91 has been changed, there is the only window for the
92 buffer and both 'hidden' and 'autowrite' are off.
93 When jumping to another buffer with [!] any changes to
94 the current buffer are lost, unless 'hidden' is set or
95 there is another window for this buffer.
96 The 'switchbuf' settings are respected when jumping
97 to a buffer.
98
Bram Moolenaard12f5c12006-01-25 22:10:52 +000099 *:ll*
100:ll[!] [nr] Same as ":cc", except the location list for the
101 current window is used instead of the quickfix list.
102
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103 *:cn* *:cnext* *E553*
104:[count]cn[ext][!] Display the [count] next error in the list that
105 includes a file name. If there are no file names at
106 all, go to the [count] next error. See |:cc| for
107 [!] and 'switchbuf'.
108
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000109 *:lne* *:lnext*
110:[count]lne[xt][!] Same as ":cnext", except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000111 current window is used instead of the quickfix list.
112
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113:[count]cN[ext][!] *:cp* *:cprevious* *:cN* *:cNext*
114:[count]cp[revious][!] Display the [count] previous error in the list that
115 includes a file name. If there are no file names at
116 all, go to the [count] previous error. See |:cc| for
117 [!] and 'switchbuf'.
118
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000119
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000120:[count]lN[ext][!] *:lp* *:lprevious* *:lN* *:lNext*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000121:[count]lp[revious][!] Same as ":cNext" and ":cprevious", except the location
122 list for the current window is used instead of the
123 quickfix list.
124
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125 *:cnf* *:cnfile*
126:[count]cnf[ile][!] Display the first error in the [count] next file in
127 the list that includes a file name. If there are no
128 file names at all or if there is no next file, go to
129 the [count] next error. See |:cc| for [!] and
130 'switchbuf'.
131
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000132 *:lnf* *:lnfile*
133:[count]lnf[ile][!] Same as ":cnfile", except the location list for the
134 current window is used instead of the quickfix list.
135
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136:[count]cNf[ile][!] *:cpf* *:cpfile* *:cNf* *:cNfile*
137:[count]cpf[ile][!] Display the last error in the [count] previous file in
138 the list that includes a file name. If there are no
139 file names at all or if there is no next file, go to
140 the [count] previous error. See |:cc| for [!] and
141 'switchbuf'.
142
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000143
144:[count]lNf[ile][!] *:lpf* *:lpfile* *:lNf* *:lNfile*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000145:[count]lpf[ile][!] Same as ":cNfile" and ":cpfile", except the location
146 list for the current window is used instead of the
147 quickfix list.
148
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149 *:crewind* *:cr*
150:cr[ewind][!] [nr] Display error [nr]. If [nr] is omitted, the FIRST
151 error is displayed. See |:cc|.
152
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000153 *:lrewind* *:lr*
154:lr[ewind][!] [nr] Same as ":crewind", except the location list for the
155 current window is used instead of the quickfix list.
156
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 *:cfirst* *:cfir*
158:cfir[st][!] [nr] Same as ":crewind".
159
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000160 *:lfirst* *:lfir*
161:lfir[st][!] [nr] Same as ":lrewind".
162
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163 *:clast* *:cla*
164:cla[st][!] [nr] Display error [nr]. If [nr] is omitted, the LAST
165 error is displayed. See |:cc|.
166
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000167 *:llast* *:lla*
168:lla[st][!] [nr] Same as ":clast", except the location list for the
169 current window is used instead of the quickfix list.
170
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171 *:cq* *:cquit*
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000172:cq[uit][!] Quit Vim with an error code, so that the compiler
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173 will not compile the same file again.
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000174 WARNING: All changes in files are lost! Also when the
175 [!] is not used. It works like ":qall!" |:qall|,
176 except that Vim returns a non-zero exit code.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177
178 *:cf* *:cfile*
179:cf[ile][!] [errorfile] Read the error file and jump to the first error.
180 This is done automatically when Vim is started with
181 the -q option. You can use this command when you
182 keep Vim running while compiling. If you give the
183 name of the errorfile, the 'errorfile' option will
184 be set to [errorfile]. See |:cc| for [!].
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100185 If the encoding of the error file differs from the
186 'encoding' option, you can use the 'makeencoding'
187 option to specify the encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000189 *:lf* *:lfile*
190:lf[ile][!] [errorfile] Same as ":cfile", except the location list for the
191 current window is used instead of the quickfix list.
192 You can not use the -q command-line option to set
193 the location list.
194
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000195
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000196:cg[etfile] [errorfile] *:cg* *:cgetfile*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197 Read the error file. Just like ":cfile" but don't
198 jump to the first error.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100199 If the encoding of the error file differs from the
200 'encoding' option, you can use the 'makeencoding'
201 option to specify the encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000203
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000204:lg[etfile] [errorfile] *:lg* *:lgetfile*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000205 Same as ":cgetfile", except the location list for the
206 current window is used instead of the quickfix list.
207
Bram Moolenaar4770d092006-01-12 23:22:24 +0000208 *:caddf* *:caddfile*
209:caddf[ile] [errorfile] Read the error file and add the errors from the
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000210 errorfile to the current quickfix list. If a quickfix
211 list is not present, then a new list is created.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100212 If the encoding of the error file differs from the
213 'encoding' option, you can use the 'makeencoding'
214 option to specify the encoding.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000215
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000216 *:laddf* *:laddfile*
217:laddf[ile] [errorfile] Same as ":caddfile", except the location list for the
218 current window is used instead of the quickfix list.
219
Bram Moolenaar86b68352004-12-27 21:59:20 +0000220 *:cb* *:cbuffer* *E681*
Bram Moolenaar6cbce9d2007-03-08 10:01:03 +0000221:cb[uffer][!] [bufnr] Read the error list from the current buffer.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000222 When [bufnr] is given it must be the number of a
223 loaded buffer. That buffer will then be used instead
224 of the current buffer.
225 A range can be specified for the lines to be used.
226 Otherwise all lines in the buffer are used.
Bram Moolenaar6cbce9d2007-03-08 10:01:03 +0000227 See |:cc| for [!].
Bram Moolenaar86b68352004-12-27 21:59:20 +0000228
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000229 *:lb* *:lbuffer*
Bram Moolenaar6cbce9d2007-03-08 10:01:03 +0000230:lb[uffer][!] [bufnr] Same as ":cbuffer", except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000231 current window is used instead of the quickfix list.
232
Bram Moolenaardb552d602006-03-23 22:59:57 +0000233 *:cgetb* *:cgetbuffer*
234:cgetb[uffer] [bufnr] Read the error list from the current buffer. Just
235 like ":cbuffer" but don't jump to the first error.
236
237 *:lgetb* *:lgetbuffer*
238:lgetb[uffer] [bufnr] Same as ":cgetbuffer", except the location list for
239 the current window is used instead of the quickfix
240 list.
241
Bram Moolenaara6878372014-03-22 21:02:50 +0100242 *:cad* *:caddbuffer*
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100243:cad[dbuffer] [bufnr] Read the error list from the current buffer and add
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +0000244 the errors to the current quickfix list. If a
245 quickfix list is not present, then a new list is
246 created. Otherwise, same as ":cbuffer".
247
248 *:laddb* *:laddbuffer*
249:laddb[uffer] [bufnr] Same as ":caddbuffer", except the location list for
250 the current window is used instead of the quickfix
251 list.
252
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000253 *:cex* *:cexpr* *E777*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000254:cex[pr][!] {expr} Create a quickfix list using the result of {expr} and
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200255 jump to the first error.
256 If {expr} is a String, then each new-line terminated
Bram Moolenaard6357e82016-01-21 21:48:09 +0100257 line in the String is processed using the global value
258 of 'errorformat' and the result is added to the
259 quickfix list.
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200260 If {expr} is a List, then each String item in the list
261 is processed and added to the quickfix list. Non
262 String items in the List are ignored.
263 See |:cc| for [!].
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000264 Examples: >
265 :cexpr system('grep -n xyz *')
266 :cexpr getline(1, '$')
267<
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000268 *:lex* *:lexpr*
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200269:lex[pr][!] {expr} Same as |:cexpr|, except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000270 current window is used instead of the quickfix list.
271
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000272 *:cgete* *:cgetexpr*
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000273:cgete[xpr] {expr} Create a quickfix list using the result of {expr}.
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200274 Just like |:cexpr|, but don't jump to the first error.
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000275
276 *:lgete* *:lgetexpr*
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200277:lgete[xpr] {expr} Same as |:cgetexpr|, except the location list for the
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000278 current window is used instead of the quickfix list.
279
Bram Moolenaara6878372014-03-22 21:02:50 +0100280 *:cadde* *:caddexpr*
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100281:cadde[xpr] {expr} Evaluate {expr} and add the resulting lines to the
Bram Moolenaar4770d092006-01-12 23:22:24 +0000282 current quickfix list. If a quickfix list is not
283 present, then a new list is created. The current
284 cursor position will not be changed. See |:cexpr| for
285 more information.
286 Example: >
287 :g/mypattern/caddexpr expand("%") . ":" . line(".") . ":" . getline(".")
288<
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000289 *:lad* *:laddexpr*
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000290:lad[dexpr] {expr} Same as ":caddexpr", except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000291 current window is used instead of the quickfix list.
292
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293 *:cl* *:clist*
294:cl[ist] [from] [, [to]]
295 List all errors that are valid |quickfix-valid|.
296 If numbers [from] and/or [to] are given, the respective
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000297 range of errors is listed. A negative number counts
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 from the last error backwards, -1 being the last error.
299 The 'switchbuf' settings are respected when jumping
300 to a buffer.
301
Bram Moolenaare8fea072016-07-01 14:48:27 +0200302:cl[ist] +{count} List the current and next {count} valid errors. This
303 is similar to ":clist from from+count", where "from"
304 is the current error position.
305
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306:cl[ist]! [from] [, [to]]
307 List all errors.
308
Bram Moolenaare8fea072016-07-01 14:48:27 +0200309:cl[ist]! +{count} List the current and next {count} error lines. This
310 is useful to see unrecognized lines after the current
311 one. For example, if ":clist" shows:
312 8384 testje.java:252: error: cannot find symbol ~
313 Then using ":cl! +3" shows the reason:
314 8384 testje.java:252: error: cannot find symbol ~
315 8385: ZexitCode = Fmainx(); ~
316 8386: ^ ~
317 8387: symbol: method Fmainx() ~
318
319:lli[st] [from] [, [to]] *:lli* *:llist*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000320 Same as ":clist", except the location list for the
321 current window is used instead of the quickfix list.
322
323:lli[st]! [from] [, [to]]
324 List all the entries in the location list for the
325 current window.
326
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327If you insert or delete lines, mostly the correct error location is still
328found because hidden marks are used. Sometimes, when the mark has been
329deleted for some reason, the message "line changed" is shown to warn you that
330the error location may not be correct. If you quit Vim and start again the
331marks are lost and the error locations may not be correct anymore.
332
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100333Two autocommands are available for running commands before and after a
334quickfix command (':make', ':grep' and so on) is executed. See
335|QuickFixCmdPre| and |QuickFixCmdPost| for details.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000336
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000337 *QuickFixCmdPost-example*
338When 'encoding' differs from the locale, the error messages may have a
339different encoding from what Vim is using. To convert the messages you can
340use this code: >
341 function QfMakeConv()
342 let qflist = getqflist()
343 for i in qflist
344 let i.text = iconv(i.text, "cp936", "utf-8")
345 endfor
346 call setqflist(qflist)
347 endfunction
348
349 au QuickfixCmdPost make call QfMakeConv()
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100350Another option is using 'makeencoding'.
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000351
Bram Moolenaar74240d32017-12-10 15:26:15 +0100352 *quickfix-title*
353Every quickfix and location list has a title. By default the title is set to
354the command that created the list. The |getqflist()| and |getloclist()|
355functions can be used to get the title of a quickfix and a location list
356respectively. The |setqflist()| and |setloclist()| functions can be used to
357modify the title of a quickfix and location list respectively. Examples: >
358 call setqflist([], 'a', {'title' : 'Cmd output'})
359 echo getqflist({'title' : 1})
360 call setloclist(3, [], 'a', {'title' : 'Cmd output'})
361 echo getloclist(3, {'title' : 1})
362<
363 *quickfix-size*
364You can get the number of entries (size) in a quickfix and a location list
365using the |getqflist()| and |getloclist()| functions respectively. Examples: >
366 echo getqflist({'size' : 1})
367 echo getloclist(5, {'size' : 1})
368<
369 *quickfix-context*
370Any Vim type can be associated as a context with a quickfix or location list.
371The |setqflist()| and the |setloclist()| functions can be used to associate a
372context with a quickfix and a location list respectively. The |getqflist()|
373and the |getloclist()| functions can be used to retrieve the context of a
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100374quickfix and a location list respectively. This is useful for a Vim plugin
Bram Moolenaar74240d32017-12-10 15:26:15 +0100375dealing with multiple quickfix/location lists.
376Examples: >
377
378 let somectx = {'name' : 'Vim', 'type' : 'Editor'}
379 call setqflist([], 'a', {'context' : somectx})
380 echo getqflist({'context' : 1})
381
382 let newctx = ['red', 'green', 'blue']
383 call setloclist(2, [], 'a', {'id' : qfid, 'context' : newctx})
384 echo getloclist(2, {'id' : qfid, 'context' : 1})
385<
386 *quickfix-parse*
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100387You can parse a list of lines using 'errorformat' without creating or
388modifying a quickfix list using the |getqflist()| function. Examples: >
Bram Moolenaar74240d32017-12-10 15:26:15 +0100389 echo getqflist({'lines' : ["F1:10:Line10", "F2:20:Line20"]})
390 echo getqflist({'lines' : systemlist('grep -Hn quickfix *')})
391This returns a dictionary where the 'items' key contains the list of quickfix
392entries parsed from lines. The following shows how to use a custom
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100393'errorformat' to parse the lines without modifying the 'errorformat' option: >
Bram Moolenaar74240d32017-12-10 15:26:15 +0100394 echo getqflist({'efm' : '%f#%l#%m', 'lines' : ['F1#10#Line']})
395<
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000396
Bram Moolenaar12969c02015-09-08 23:36:10 +0200397EXECUTE A COMMAND IN ALL THE BUFFERS IN QUICKFIX OR LOCATION LIST:
398 *:cdo*
399:cdo[!] {cmd} Execute {cmd} in each valid entry in the quickfix list.
400 It works like doing this: >
401 :cfirst
402 :{cmd}
403 :cnext
404 :{cmd}
405 etc.
406< When the current file can't be |abandon|ed and the [!]
407 is not present, the command fails.
Bram Moolenaare8fea072016-07-01 14:48:27 +0200408 When an error is detected execution stops.
Bram Moolenaar12969c02015-09-08 23:36:10 +0200409 The last buffer (or where an error occurred) becomes
410 the current buffer.
411 {cmd} can contain '|' to concatenate several commands.
412
413 Only valid entries in the quickfix list are used.
414 A range can be used to select entries, e.g.: >
415 :10,$cdo cmd
416< To skip entries 1 to 9.
417
418 Note: While this command is executing, the Syntax
419 autocommand event is disabled by adding it to
420 'eventignore'. This considerably speeds up editing
421 each buffer.
Bram Moolenaarab943432018-03-29 18:27:07 +0200422 {not in Vi}
Bram Moolenaar12969c02015-09-08 23:36:10 +0200423 Also see |:bufdo|, |:tabdo|, |:argdo|, |:windo|,
424 |:ldo|, |:cfdo| and |:lfdo|.
425
426 *:cfdo*
427:cfdo[!] {cmd} Execute {cmd} in each file in the quickfix list.
428 It works like doing this: >
429 :cfirst
430 :{cmd}
431 :cnfile
432 :{cmd}
433 etc.
434< Otherwise it works the same as `:cdo`.
Bram Moolenaarab943432018-03-29 18:27:07 +0200435 {not in Vi}
Bram Moolenaar12969c02015-09-08 23:36:10 +0200436
437 *:ldo*
438:ld[o][!] {cmd} Execute {cmd} in each valid entry in the location list
439 for the current window.
440 It works like doing this: >
441 :lfirst
442 :{cmd}
443 :lnext
444 :{cmd}
445 etc.
446< Only valid entries in the location list are used.
447 Otherwise it works the same as `:cdo`.
Bram Moolenaarab943432018-03-29 18:27:07 +0200448 {not in Vi}
Bram Moolenaar12969c02015-09-08 23:36:10 +0200449
450 *:lfdo*
451:lfdo[!] {cmd} Execute {cmd} in each file in the location list for
452 the current window.
453 It works like doing this: >
454 :lfirst
455 :{cmd}
456 :lnfile
457 :{cmd}
458 etc.
459< Otherwise it works the same as `:ldo`.
Bram Moolenaarab943432018-03-29 18:27:07 +0200460 {not in Vi}
Bram Moolenaar12969c02015-09-08 23:36:10 +0200461
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462=============================================================================
4632. The error window *quickfix-window*
464
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200465 *:cope* *:copen* *w:quickfix_title*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466:cope[n] [height] Open a window to show the current list of errors.
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100467
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468 When [height] is given, the window becomes that high
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100469 (if there is room). When [height] is omitted the
470 window is made ten lines high.
471
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 If there already is a quickfix window, it will be made
473 the current window. It is not possible to open a
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100474 second quickfix window. If [height] is given the
475 existing window will be resized to it.
476
477 The window will contain a special buffer, with
478 'buftype' equal to "quickfix". Don't change this!
479 The window will have the w:quickfix_title variable set
480 which will indicate the command that produced the
481 quickfix list. This can be used to compose a custom
482 status line if the value of 'statusline' is adjusted
Bram Moolenaara8788f42017-07-19 17:06:20 +0200483 properly. Whenever this buffer is modified by a
484 quickfix command or function, the |b:changedtick|
485 variable is incremented.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000487 *:lop* *:lopen*
488:lop[en] [height] Open a window to show the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000489 current window. Works only when the location list for
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000490 the current window is present. You can have more than
491 one location window opened at a time. Otherwise, it
Bram Moolenaar280f1262006-01-30 00:14:18 +0000492 acts the same as ":copen".
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000493
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494 *:ccl* *:cclose*
495:ccl[ose] Close the quickfix window.
496
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000497 *:lcl* *:lclose*
498:lcl[ose] Close the window showing the location list for the
499 current window.
500
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 *:cw* *:cwindow*
502:cw[indow] [height] Open the quickfix window when there are recognized
503 errors. If the window is already open and there are
504 no recognized errors, close the window.
505
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000506 *:lw* *:lwindow*
507:lw[indow] [height] Same as ":cwindow", except use the window showing the
508 location list for the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509
Bram Moolenaar537ef082016-07-09 17:56:19 +0200510 *:cbo* *:cbottom*
Bram Moolenaardcb17002016-07-07 18:58:59 +0200511:cbo[ttom] Put the cursor in the last line of the quickfix window
512 and scroll to make it visible. This is useful for
513 when errors are added by an asynchronous callback.
514 Only call it once in a while if there are many
515 updates to avoid a lot of redrawing.
516
Bram Moolenaar537ef082016-07-09 17:56:19 +0200517 *:lbo* *:lbottom*
518:lbo[ttom] Same as ":cbottom", except use the window showing the
519 location list for the current window.
520
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521Normally the quickfix window is at the bottom of the screen. If there are
522vertical splits, it's at the bottom of the rightmost column of windows. To
523make it always occupy the full width: >
524 :botright cwindow
525You can move the window around with |window-moving| commands.
526For example, to move it to the top: CTRL-W K
527The 'winfixheight' option will be set, which means that the window will mostly
528keep its height, ignoring 'winheight' and 'equalalways'. You can change the
529height manually (e.g., by dragging the status line above it with the mouse).
530
531In the quickfix window, each line is one error. The line number is equal to
Bram Moolenaar21020352017-06-13 17:21:04 +0200532the error number. The current entry is highlighted with the QuickFixLine
533highlighting. You can change it to your liking, e.g.: >
534 :hi QuickFixLine ctermbg=Yellow guibg=Yellow
535
536You can use ":.cc" to jump to the error under the cursor.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000537Hitting the <Enter> key or double-clicking the mouse on a line has the same
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538effect. The file containing the error is opened in the window above the
539quickfix window. If there already is a window for that file, it is used
540instead. If the buffer in the used window has changed, and the error is in
541another file, jumping to the error will fail. You will first have to make
542sure the window contains a buffer which can be abandoned.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000543 *CTRL-W_<Enter>* *CTRL-W_<CR>*
544You can use CTRL-W <Enter> to open a new window and jump to the error there.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545
546When the quickfix window has been filled, two autocommand events are
547triggered. First the 'filetype' option is set to "qf", which triggers the
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000548FileType event. Then the BufReadPost event is triggered, using "quickfix" for
549the buffer name. This can be used to perform some action on the listed
550errors. Example: >
Bram Moolenaar280f1262006-01-30 00:14:18 +0000551 au BufReadPost quickfix setlocal modifiable
552 \ | silent exe 'g/^/s//\=line(".")." "/'
553 \ | setlocal nomodifiable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554This prepends the line number to each line. Note the use of "\=" in the
555substitute string of the ":s" command, which is used to evaluate an
556expression.
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000557The BufWinEnter event is also triggered, again using "quickfix" for the buffer
558name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559
Bram Moolenaar82af8712016-06-04 20:20:29 +0200560Note: When adding to an existing quickfix list the autocommand are not
561triggered.
562
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563Note: Making changes in the quickfix window has no effect on the list of
564errors. 'modifiable' is off to avoid making changes. If you delete or insert
565lines anyway, the relation between the text and the error number is messed up.
566If you really want to do this, you could write the contents of the quickfix
567window to a file and use ":cfile" to have it parsed and used as the new error
568list.
569
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000570 *location-list-window*
Bram Moolenaar280f1262006-01-30 00:14:18 +0000571The location list window displays the entries in a location list. When you
572open a location list window, it is created below the current window and
573displays the location list for the current window. The location list window
574is similar to the quickfix window, except that you can have more than one
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000575location list window open at a time. When you use a location list command in
576this window, the displayed location list is used.
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000577
Bram Moolenaar280f1262006-01-30 00:14:18 +0000578When you select a file from the location list window, the following steps are
579used to find a window to edit the file:
580
5811. If a window with the location list displayed in the location list window is
582 present, then the file is opened in that window.
5832. If the above step fails and if the file is already opened in another
584 window, then that window is used.
5853. If the above step fails then an existing window showing a buffer with
586 'buftype' not set is used.
5874. If the above step fails, then the file is edited in a new window.
588
589In all of the above cases, if the location list for the selected window is not
590yet set, then it is set to the location list displayed in the location list
591window.
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000592
Bram Moolenaar74240d32017-12-10 15:26:15 +0100593 *quickfix-window-ID*
594You can use the |getqflist()| and |getloclist()| functions to obtain the
595window ID of the quickfix window and location list window respectively (if
596present). Examples: >
597 echo getqflist({'winid' : 1}).winid
598 echo getloclist(2, {'winid' : 1}).winid
599<
Bram Moolenaar15142e22018-04-30 22:19:58 +0200600 *getqflist-examples*
601The getqflist() and getloclist() functions can be used to get the various
602attributes of a quickfix and location list respectively. Some examples for
603using these functions are below:
604>
605 " get the title of the current quickfix list
606 :echo getqflist({'title' : 0}).title
607
608 " get the identifier of the current quickfix list
609 :let qfid = getqflist({'id' : 0}).id
610
Bram Moolenaar78ddc062018-05-15 21:56:34 +0200611 " get the identifier of the fourth quickfix list in the stack
612 :let qfid = getqflist({'nr' : 4, 'id' : 0}).id
613
614 " check whether a quickfix list with a specific identifier exists
615 :if getqflist({'id' : qfid}).id == qfid
616
Bram Moolenaar15142e22018-04-30 22:19:58 +0200617 " get the index of the current quickfix list in the stack
618 :let qfnum = getqflist({'nr' : 0}).nr
619
620 " get the items of a quickfix list specified by an identifier
621 :echo getqflist({'id' : qfid, 'items' : 0}).items
622
623 " get the number of entries in a quickfix list specified by an id
624 :echo getqflist({'id' : qfid, 'size' : 0}).size
625
626 " get the context of the third quickfix list in the stack
627 :echo getqflist({'nr' : 3, 'context' : 0}).context
628
629 " get the number of quickfix lists in the stack
630 :echo getqflist({'nr' : '$'}).nr
631
632 " get the number of times the current quickfix list is changed
633 :echo getqflist({'changedtick' : 0}).changedtick
634
635 " get the current entry in a quickfix list specified by an identifier
636 :echo getqflist({'id' : qfid, 'idx' : 0}).idx
637
638 " get all the quickfix list attributes using an identifier
639 :echo getqflist({'id' : qfid, 'all' : 0})
640
641 " parse text from a List of lines and return a quickfix list
642 :let myList = ["a.java:10:L10", "b.java:20:L20"]
643 :echo getqflist({'lines' : myList}).items
644
645 " parse text using a custom 'efm' and return a quickfix list
646 :echo getqflist({'lines' : ['a.c#10#Line 10'], 'efm':'%f#%l#%m'}).items
647
648 " get the quickfix list window id
649 :echo getqflist({'winid' : 0}).winid
650
651 " get the context of the current location list
652 :echo getloclist(0, {'context' : 0}).context
653
654 " get the location list window id of the third window
655 :echo getloclist(3, {'winid' : 0}).winid
656<
657 *setqflist-examples*
658The setqflist() and setloclist() functions can be used to set the various
659attributes of a quickfix and location list respectively. Some examples for
660using these functions are below:
661>
Bram Moolenaar78ddc062018-05-15 21:56:34 +0200662 " create an empty quickfix list with a title and a context
663 :let t = 'Search results'
664 :let c = {'cmd' : 'grep'}
665 :call setqflist([], ' ', {'title' : t, 'context' : c})
666
Bram Moolenaar15142e22018-04-30 22:19:58 +0200667 " set the title of the current quickfix list
668 :call setqflist([], 'a', {'title' : 'Mytitle'})
669
670 " set the context of a quickfix list specified by an identifier
671 :call setqflist([], 'a', {'id' : qfid, 'context' : {'val' : 100}})
672
673 " create a new quickfix list from a command output
674 :call setqflist([], ' ', {'lines' : systemlist('grep -Hn main *.c')})
675
676 " parse text using a custom efm and add to a particular quickfix list
677 :call setqflist([], 'a', {'id' : qfid,
678 \ 'lines' : ["a.c#10#L10", "b.c#20#L20"], 'efm':'%f#%l#%m'})
679
680 " add items to the quickfix list specified by an identifier
681 :let newItems = [{'filename' : 'a.txt', 'lnum' : 10, 'text' : "Apple"},
682 \ {'filename' : 'b.txt', 'lnum' : 20, 'text' : "Orange"}]
683 :call setqflist([], 'a', {'id' : qfid, 'items' : newItems})
684
Bram Moolenaar78ddc062018-05-15 21:56:34 +0200685 " empty a quickfix list specified by an identifier
686 :call setqflist([], 'r', {'id' : qfid, 'items' : []})
687
Bram Moolenaar15142e22018-04-30 22:19:58 +0200688 " free all the quickfix lists in the stack
689 :call setqflist([], 'f')
690
691 " set the title of the fourth quickfix list
692 :call setqflist([], 'a', {'nr' : 4, 'title' : 'SomeTitle'})
693
694 " create a new quickfix list at the end of the stack
695 :call setqflist([], ' ', {'nr' : '$',
696 \ 'lines' : systemlist('grep -Hn class *.java')})
697
698 " create a new location list from a command output
699 :call setloclist(0, [], ' ', {'lines' : systemlist('grep -Hn main *.c')})
700
701 " replace the location list entries for the third window
702 :call setloclist(3, [], 'r', {'items' : newItems})
703<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704=============================================================================
7053. Using more than one list of errors *quickfix-error-lists*
706
707So far has been assumed that there is only one list of errors. Actually the
708ten last used lists are remembered. When starting a new list, the previous
709ones are automatically kept. Two commands can be used to access older error
710lists. They set one of the existing error lists as the current one.
711
712 *:colder* *:col* *E380*
713:col[der] [count] Go to older error list. When [count] is given, do
714 this [count] times. When already at the oldest error
715 list, an error message is given.
716
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000717 *:lolder* *:lol*
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200718:lol[der] [count] Same as `:colder`, except use the location list for
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000719 the current window instead of the quickfix list.
720
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 *:cnewer* *:cnew* *E381*
722:cnew[er] [count] Go to newer error list. When [count] is given, do
723 this [count] times. When already at the newest error
724 list, an error message is given.
725
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000726 *:lnewer* *:lnew*
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200727:lnew[er] [count] Same as `:cnewer`, except use the location list for
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000728 the current window instead of the quickfix list.
729
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200730 *:chistory* *:chi*
731:chi[story] Show the list of error lists. The current list is
732 marked with ">". The output looks like:
733 error list 1 of 3; 43 errors ~
734 > error list 2 of 3; 0 errors ~
735 error list 3 of 3; 15 errors ~
736
737 *:lhistory* *:lhi*
738:lhi[story] Show the list of location lists, otherwise like
739 `:chistory`.
740
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741When adding a new error list, it becomes the current list.
742
743When ":colder" has been used and ":make" or ":grep" is used to add a new error
744list, one newer list is overwritten. This is especially useful if you are
745browsing with ":grep" |grep|. If you want to keep the more recent error
746lists, use ":cnewer 99" first.
747
Bram Moolenaar74240d32017-12-10 15:26:15 +0100748To get the number of lists in the quickfix and location list stack, you can
749use the |getqflist()| and |getloclist()| functions respectively with the list
750number set to the special value '$'. Examples: >
751 echo getqflist({'nr' : '$'}).nr
752 echo getloclist(3, {'nr' : '$'}).nr
753To get the number of the current list in the stack: >
754 echo getqflist({'nr' : 0}).nr
755<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756=============================================================================
7574. Using :make *:make_makeprg*
758
759 *:mak* *:make*
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100760:mak[e][!] [arguments] 1. All relevant |QuickFixCmdPre| autocommands are
761 executed.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000762 2. If the 'autowrite' option is on, write any changed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 buffers
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000764 3. An errorfile name is made from 'makeef'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765 'makeef' doesn't contain "##", and a file with this
766 name already exists, it is deleted.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000767 4. The program given with the 'makeprg' option is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768 started (default "make") with the optional
769 [arguments] and the output is saved in the
770 errorfile (for Unix it is also echoed on the
771 screen).
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000772 5. The errorfile is read using 'errorformat'.
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100773 6. All relevant |QuickFixCmdPost| autocommands are
774 executed. See example below.
Bram Moolenaar6b803a72007-05-06 14:25:46 +0000775 7. If [!] is not given the first error is jumped to.
776 8. The errorfile is deleted.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000777 9. You can now move through the errors with commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 like |:cnext| and |:cprevious|, see above.
779 This command does not accept a comment, any "
780 characters are considered part of the arguments.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100781 If the encoding of the program output differs from the
782 'encoding' option, you can use the 'makeencoding'
783 option to specify the encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +0000785 *:lmak* *:lmake*
786:lmak[e][!] [arguments]
787 Same as ":make", except the location list for the
788 current window is used instead of the quickfix list.
789
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790The ":make" command executes the command given with the 'makeprg' option.
791This is done by passing the command to the shell given with the 'shell'
792option. This works almost like typing
793
794 ":!{makeprg} [arguments] {shellpipe} {errorfile}".
795
796{makeprg} is the string given with the 'makeprg' option. Any command can be
797used, not just "make". Characters '%' and '#' are expanded as usual on a
798command-line. You can use "%<" to insert the current file name without
799extension, or "#<" to insert the alternate file name without extension, for
800example: >
801 :set makeprg=make\ #<.o
802
803[arguments] is anything that is typed after ":make".
804{shellpipe} is the 'shellpipe' option.
805{errorfile} is the 'makeef' option, with ## replaced to make it unique.
806
Bram Moolenaar6dfc28b2010-02-11 14:19:15 +0100807The placeholder "$*" can be used for the argument list in {makeprg} if the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808command needs some additional characters after its arguments. The $* is
809replaced then by all arguments. Example: >
810 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*}
811or simpler >
812 :let &mp = 'latex \\nonstopmode \\input\{$*}'
813"$*" can be given multiple times, for example: >
814 :set makeprg=gcc\ -o\ $*\ $*
815
816The 'shellpipe' option defaults to ">" for the Amiga, MS-DOS and Win32. This
817means that the output of the compiler is saved in a file and not shown on the
818screen directly. For Unix "| tee" is used. The compiler output is shown on
819the screen and saved in a file the same time. Depending on the shell used
820"|& tee" or "2>&1| tee" is the default, so stderr output will be included.
821
822If 'shellpipe' is empty, the {errorfile} part will be omitted. This is useful
823for compilers that write to an errorfile themselves (e.g., Manx's Amiga C).
824
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000825
826Using QuickFixCmdPost to fix the encoding ~
827
828It may be that 'encoding' is set to an encoding that differs from the messages
829your build program produces. This example shows how to fix this after Vim has
830read the error messages: >
831
832 function QfMakeConv()
833 let qflist = getqflist()
834 for i in qflist
835 let i.text = iconv(i.text, "cp936", "utf-8")
836 endfor
837 call setqflist(qflist)
838 endfunction
839
840 au QuickfixCmdPost make call QfMakeConv()
841
842(Example by Faque Cheng)
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100843Another option is using 'makeencoding'.
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000844
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845==============================================================================
Bram Moolenaar86b68352004-12-27 21:59:20 +00008465. Using :vimgrep and :grep *grep* *lid*
847
848Vim has two ways to find matches for a pattern: Internal and external. The
849advantage of the internal grep is that it works on all systems and uses the
850powerful Vim search patterns. An external grep program can be used when the
851Vim grep does not do what you want.
852
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000853The internal method will be slower, because files are read into memory. The
854advantages are:
855- Line separators and encoding are automatically recognized, as if a file is
856 being edited.
857- Uses Vim search patterns. Multi-line patterns can be used.
858- When plugins are enabled: compressed and remote files can be searched.
859 |gzip| |netrw|
Bram Moolenaara3227e22006-03-08 21:32:40 +0000860
861To be able to do this Vim loads each file as if it is being edited. When
Bram Moolenaar1056d982006-03-09 22:37:52 +0000862there is no match in the file the associated buffer is wiped out again. The
Bram Moolenaara3227e22006-03-08 21:32:40 +0000863'hidden' option is ignored here to avoid running out of memory or file
864descriptors when searching many files. However, when the |:hide| command
865modifier is used the buffers are kept loaded. This makes following searches
866in the same files a lot faster.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000867
Bram Moolenaar483c5d82010-10-20 18:45:33 +0200868Note that |:copen| (or |:lopen| for |:lgrep|) may be used to open a buffer
869containing the search results in linked form. The |:silent| command may be
Bram Moolenaard58e9292011-02-09 17:07:58 +0100870used to suppress the default full screen grep output. The ":grep!" form of
Bram Moolenaar483c5d82010-10-20 18:45:33 +0200871the |:grep| command doesn't jump to the first match automatically. These
872commands can be combined to create a NewGrep command: >
873
874 command! -nargs=+ NewGrep execute 'silent grep! <args>' | copen 42
875
Bram Moolenaar86b68352004-12-27 21:59:20 +0000876
8775.1 using Vim's internal grep
878
Bram Moolenaare49b69a2005-01-08 16:11:57 +0000879 *:vim* *:vimgrep* *E682* *E683*
Bram Moolenaar05159a02005-02-26 23:04:13 +0000880:vim[grep][!] /{pattern}/[g][j] {file} ...
Bram Moolenaar86b68352004-12-27 21:59:20 +0000881 Search for {pattern} in the files {file} ... and set
Bram Moolenaar30b65812012-07-12 22:01:11 +0200882 the error list to the matches. Files matching
883 'wildignore' are ignored; files in 'suffixes' are
884 searched last.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000885 Without the 'g' flag each line is added only once.
886 With 'g' every match is added.
887
888 {pattern} is a Vim search pattern. Instead of
889 enclosing it in / any non-ID character (see
890 |'isident'|) can be used, so long as it does not
891 appear in {pattern}.
892 'ignorecase' applies. To overrule it put |/\c| in the
893 pattern to ignore case or |/\C| to match case.
894 'smartcase' is not used.
Bram Moolenaar60abe752013-03-07 16:32:54 +0100895 If {pattern} is empty (e.g. // is specified), the last
896 used search pattern is used. |last-pattern|
Bram Moolenaar05159a02005-02-26 23:04:13 +0000897
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000898 When a number is put before the command this is used
899 as the maximum number of matches to find. Use
900 ":1vimgrep pattern file" to find only the first.
901 Useful if you only want to check if there is a match
902 and quit quickly when it's found.
903
Bram Moolenaar05159a02005-02-26 23:04:13 +0000904 Without the 'j' flag Vim jumps to the first match.
905 With 'j' only the quickfix list is updated.
906 With the [!] any changes in the current buffer are
907 abandoned.
908
Bram Moolenaardcaf10e2005-01-21 11:55:25 +0000909 Every second or so the searched file name is displayed
910 to give you an idea of the progress made.
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000911 Examples: >
912 :vimgrep /an error/ *.c
913 :vimgrep /\<FileName\>/ *.h include/*
Bram Moolenaar231334e2005-07-25 20:46:57 +0000914 :vimgrep /myfunc/ **/*.c
915< For the use of "**" see |starstar-wildcard|.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000916
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000917:vim[grep][!] {pattern} {file} ...
918 Like above, but instead of enclosing the pattern in a
919 non-ID character use a white-separated pattern. The
920 pattern must start with an ID character.
921 Example: >
922 :vimgrep Error *.c
923<
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +0000924 *:lv* *:lvimgrep*
925:lv[imgrep][!] /{pattern}/[g][j] {file} ...
926:lv[imgrep][!] {pattern} {file} ...
927 Same as ":vimgrep", except the location list for the
928 current window is used instead of the quickfix list.
929
Bram Moolenaar86b68352004-12-27 21:59:20 +0000930 *:vimgrepa* *:vimgrepadd*
Bram Moolenaar05159a02005-02-26 23:04:13 +0000931:vimgrepa[dd][!] /{pattern}/[g][j] {file} ...
932:vimgrepa[dd][!] {pattern} {file} ...
Bram Moolenaar86b68352004-12-27 21:59:20 +0000933 Just like ":vimgrep", but instead of making a new list
934 of errors the matches are appended to the current
935 list.
936
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +0000937 *:lvimgrepa* *:lvimgrepadd*
938:lvimgrepa[dd][!] /{pattern}/[g][j] {file} ...
939:lvimgrepa[dd][!] {pattern} {file} ...
940 Same as ":vimgrepadd", except the location list for
941 the current window is used instead of the quickfix
942 list.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000943
9445.2 External grep
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945
946Vim can interface with "grep" and grep-like programs (such as the GNU
947id-utils) in a similar way to its compiler integration (see |:make| above).
948
949[Unix trivia: The name for the Unix "grep" command comes from ":g/re/p", where
950"re" stands for Regular Expression.]
951
952 *:gr* *:grep*
953:gr[ep][!] [arguments] Just like ":make", but use 'grepprg' instead of
954 'makeprg' and 'grepformat' instead of 'errorformat'.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000955 When 'grepprg' is "internal" this works like
956 |:vimgrep|. Note that the pattern needs to be
957 enclosed in separator characters then.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100958 If the encoding of the program output differs from the
959 'encoding' option, you can use the 'makeencoding'
960 option to specify the encoding.
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +0000961
962 *:lgr* *:lgrep*
963:lgr[ep][!] [arguments] Same as ":grep", except the location list for the
964 current window is used instead of the quickfix list.
965
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 *:grepa* *:grepadd*
967:grepa[dd][!] [arguments]
968 Just like ":grep", but instead of making a new list of
969 errors the matches are appended to the current list.
970 Example: >
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100971 :call setqflist([])
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972 :bufdo grepadd! something %
973< The first command makes a new error list which is
974 empty. The second command executes "grepadd" for each
975 listed buffer. Note the use of ! to avoid that
976 ":grepadd" jumps to the first error, which is not
977 allowed with |:bufdo|.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100978 An example that uses the argument list and avoids
979 errors for files without matches: >
980 :silent argdo try
981 \ | grepadd! something %
982 \ | catch /E480:/
983 \ | endtry"
984<
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100985 If the encoding of the program output differs from the
986 'encoding' option, you can use the 'makeencoding'
987 option to specify the encoding.
988
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +0000989 *:lgrepa* *:lgrepadd*
990:lgrepa[dd][!] [arguments]
991 Same as ":grepadd", except the location list for the
992 current window is used instead of the quickfix list.
993
Bram Moolenaar86b68352004-12-27 21:59:20 +00009945.3 Setting up external grep
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995
996If you have a standard "grep" program installed, the :grep command may work
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000997well with the defaults. The syntax is very similar to the standard command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998
999 :grep foo *.c
1000
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001001Will search all files with the .c extension for the substring "foo". The
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002arguments to :grep are passed straight to the "grep" program, so you can use
1003whatever options your "grep" supports.
1004
1005By default, :grep invokes grep with the -n option (show file and line
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001006numbers). You can change this with the 'grepprg' option. You will need to set
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007'grepprg' if:
1008
1009a) You are using a program that isn't called "grep"
1010b) You have to call grep with a full path
1011c) You want to pass other options automatically (e.g. case insensitive
1012 search.)
1013
1014Once "grep" has executed, Vim parses the results using the 'grepformat'
1015option. This option works in the same way as the 'errorformat' option - see
1016that for details. You may need to change 'grepformat' from the default if
1017your grep outputs in a non-standard format, or you are using some other
1018program with a special format.
1019
1020Once the results are parsed, Vim loads the first file containing a match and
1021jumps to the appropriate line, in the same way that it jumps to a compiler
1022error in |quickfix| mode. You can then use the |:cnext|, |:clist|, etc.
1023commands to see the other matches.
1024
1025
Bram Moolenaar86b68352004-12-27 21:59:20 +000010265.4 Using :grep with id-utils
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027
1028You can set up :grep to work with the GNU id-utils like this: >
1029
1030 :set grepprg=lid\ -Rgrep\ -s
1031 :set grepformat=%f:%l:%m
1032
1033then >
1034 :grep (regexp)
1035
1036works just as you'd expect.
1037(provided you remembered to mkid first :)
1038
1039
Bram Moolenaar86b68352004-12-27 21:59:20 +000010405.5 Browsing source code with :vimgrep or :grep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041
1042Using the stack of error lists that Vim keeps, you can browse your files to
1043look for functions and the functions they call. For example, suppose that you
1044have to add an argument to the read_file() function. You enter this command: >
1045
Bram Moolenaar86b68352004-12-27 21:59:20 +00001046 :vimgrep /\<read_file\>/ *.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047
1048You use ":cn" to go along the list of matches and add the argument. At one
1049place you have to get the new argument from a higher level function msg(), and
1050need to change that one too. Thus you use: >
1051
Bram Moolenaar86b68352004-12-27 21:59:20 +00001052 :vimgrep /\<msg\>/ *.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053
1054While changing the msg() functions, you find another function that needs to
Bram Moolenaar86b68352004-12-27 21:59:20 +00001055get the argument from a higher level. You can again use ":vimgrep" to find
1056these functions. Once you are finished with one function, you can use >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057
1058 :colder
1059
1060to go back to the previous one.
1061
Bram Moolenaar86b68352004-12-27 21:59:20 +00001062This works like browsing a tree: ":vimgrep" goes one level deeper, creating a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063list of branches. ":colder" goes back to the previous level. You can mix
Bram Moolenaar86b68352004-12-27 21:59:20 +00001064this use of ":vimgrep" and "colder" to browse all the locations in a tree-like
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065way. If you do this consistently, you will find all locations without the
1066need to write down a "todo" list.
1067
1068=============================================================================
10696. Selecting a compiler *compiler-select*
1070
1071 *:comp* *:compiler* *E666*
1072:comp[iler][!] {name} Set options to work with compiler {name}.
1073 Without the "!" options are set for the
1074 current buffer. With "!" global options are
1075 set.
1076 If you use ":compiler foo" in "file.foo" and
1077 then ":compiler! bar" in another buffer, Vim
1078 will keep on using "foo" in "file.foo".
1079 {not available when compiled without the
1080 |+eval| feature}
1081
1082
1083The Vim plugins in the "compiler" directory will set options to use the
Bram Moolenaar25de4c22016-11-06 14:48:06 +01001084selected compiler. For `:compiler` local options are set, for `:compiler!`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085global options.
1086 *current_compiler*
1087To support older Vim versions, the plugins always use "current_compiler" and
1088not "b:current_compiler". What the command actually does is the following:
1089
1090- Delete the "current_compiler" and "b:current_compiler" variables.
1091- Define the "CompilerSet" user command. With "!" it does ":set", without "!"
1092 it does ":setlocal".
1093- Execute ":runtime! compiler/{name}.vim". The plugins are expected to set
1094 options with "CompilerSet" and set the "current_compiler" variable to the
1095 name of the compiler.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001096- Delete the "CompilerSet" user command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097- Set "b:current_compiler" to the value of "current_compiler".
1098- Without "!" the old value of "current_compiler" is restored.
1099
1100
1101For writing a compiler plugin, see |write-compiler-plugin|.
1102
1103
Bram Moolenaarbae0c162007-05-10 19:30:25 +00001104GCC *quickfix-gcc* *compiler-gcc*
1105
1106There's one variable you can set for the GCC compiler:
1107
1108g:compiler_gcc_ignore_unmatched_lines
1109 Ignore lines that don't match any patterns
1110 defined for GCC. Useful if output from
1111 commands run from make are generating false
1112 positives.
1113
1114
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115MANX AZTEC C *quickfix-manx* *compiler-manx*
1116
1117To use Vim with Manx's Aztec C compiler on the Amiga you should do the
1118following:
1119- Set the CCEDIT environment variable with the command: >
1120 mset "CCEDIT=vim -q"
1121- Compile with the -qf option. If the compiler finds any errors, Vim is
1122 started and the cursor is positioned on the first error. The error message
1123 will be displayed on the last line. You can go to other errors with the
1124 commands mentioned above. You can fix the errors and write the file(s).
1125- If you exit Vim normally the compiler will re-compile the same file. If you
1126 exit with the :cq command, the compiler will terminate. Do this if you
1127 cannot fix the error, or if another file needs to be compiled first.
1128
1129There are some restrictions to the Quickfix mode on the Amiga. The
1130compiler only writes the first 25 errors to the errorfile (Manx's
1131documentation does not say how to get more). If you want to find the others,
1132you will have to fix a few errors and exit the editor. After recompiling,
1133up to 25 remaining errors will be found.
1134
1135If Vim was started from the compiler, the :sh and some :! commands will not
1136work, because Vim is then running in the same process as the compiler and
1137stdin (standard input) will not be interactive.
1138
1139
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001140PERL *quickfix-perl* *compiler-perl*
1141
1142The Perl compiler plugin doesn't actually compile, but invokes Perl's internal
1143syntax checking feature and parses the output for possible errors so you can
1144correct them in quick-fix mode.
1145
1146Warnings are forced regardless of "no warnings" or "$^W = 0" within the file
1147being checked. To disable this set g:perl_compiler_force_warnings to a zero
1148value. For example: >
1149 let g:perl_compiler_force_warnings = 0
1150
1151
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152PYUNIT COMPILER *compiler-pyunit*
1153
1154This is not actually a compiler, but a unit testing framework for the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001155Python language. It is included into standard Python distribution
1156starting from version 2.0. For older versions, you can get it from
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157http://pyunit.sourceforge.net.
1158
1159When you run your tests with the help of the framework, possible errors
1160are parsed by Vim and presented for you in quick-fix mode.
1161
1162Unfortunately, there is no standard way to run the tests.
1163The alltests.py script seems to be used quite often, that's all.
1164Useful values for the 'makeprg' options therefore are:
1165 setlocal makeprg=./alltests.py " Run a testsuite
Bram Moolenaar26df0922014-02-23 23:39:13 +01001166 setlocal makeprg=python\ %:S " Run a single testcase
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167
1168Also see http://vim.sourceforge.net/tip_view.php?tip_id=280.
1169
1170
1171TEX COMPILER *compiler-tex*
1172
1173Included in the distribution compiler for TeX ($VIMRUNTIME/compiler/tex.vim)
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001174uses make command if possible. If the compiler finds a file named "Makefile"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175or "makefile" in the current directory, it supposes that you want to process
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001176your *TeX files with make, and the makefile does the right work. In this case
1177compiler sets 'errorformat' for *TeX output and leaves 'makeprg' untouched. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178neither "Makefile" nor "makefile" is found, the compiler will not use make.
1179You can force the compiler to ignore makefiles by defining
1180b:tex_ignore_makefile or g:tex_ignore_makefile variable (they are checked for
1181existence only).
1182
1183If the compiler chose not to use make, it need to choose a right program for
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001184processing your input. If b:tex_flavor or g:tex_flavor (in this precedence)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185variable exists, it defines TeX flavor for :make (actually, this is the name
1186of executed command), and if both variables do not exist, it defaults to
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001187"latex". For example, while editing chapter2.tex \input-ed from mypaper.tex
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188written in AMS-TeX: >
1189
1190 :let b:tex_flavor = 'amstex'
1191 :compiler tex
1192< [editing...] >
1193 :make mypaper
1194
1195Note that you must specify a name of the file to process as an argument (to
1196process the right file when editing \input-ed or \include-ed file; portable
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001197solution for substituting % for no arguments is welcome). This is not in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198semantics of make, where you specify a target, not source, but you may specify
1199filename without extension ".tex" and mean this as "make filename.dvi or
1200filename.pdf or filename.some_result_extension according to compiler".
1201
1202Note: tex command line syntax is set to usable both for MikTeX (suggestion
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001203by Srinath Avadhanula) and teTeX (checked by Artem Chuprina). Suggestion
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204from |errorformat-LaTeX| is too complex to keep it working for different
1205shells and OSes and also does not allow to use other available TeX options,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001206if any. If your TeX doesn't support "-interaction=nonstopmode", please
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207report it with different means to express \nonstopmode from the command line.
1208
1209=============================================================================
12107. The error format *error-file-format*
1211
1212 *errorformat* *E372* *E373* *E374*
1213 *E375* *E376* *E377* *E378*
1214The 'errorformat' option specifies a list of formats that are recognized. The
1215first format that matches with an error message is used. You can add several
1216formats for different messages your compiler produces, or even entries for
1217multiple compilers. See |efm-entries|.
1218
1219Each entry in 'errorformat' is a scanf-like string that describes the format.
1220First, you need to know how scanf works. Look in the documentation of your
1221C compiler. Below you find the % items that Vim understands. Others are
1222invalid.
1223
1224Special characters in 'errorformat' are comma and backslash. See
1225|efm-entries| for how to deal with them. Note that a literal "%" is matched
1226by "%%", thus it is not escaped with a backslash.
Bram Moolenaar9d98fe92013-08-03 18:35:36 +02001227Keep in mind that in the `:make` and `:grep` output all NUL characters are
1228replaced with SOH (0x01).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229
1230Note: By default the difference between upper and lowercase is ignored. If
1231you want to match case, add "\C" to the pattern |/\C|.
1232
1233
1234Basic items
1235
1236 %f file name (finds a string)
Bram Moolenaard76ce852018-05-01 15:02:04 +02001237 %o module name (finds a string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 %l line number (finds a number)
1239 %c column number (finds a number representing character
1240 column of the error, (1 <tab> == 1 character column))
1241 %v virtual column number (finds a number representing
1242 screen column of the error (1 <tab> == 8 screen
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001243 columns))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 %t error type (finds a single character)
1245 %n error number (finds a number)
1246 %m error message (finds a string)
1247 %r matches the "rest" of a single-line file message %O/P/Q
Bram Moolenaarc8734422012-06-01 22:38:45 +02001248 %p pointer line (finds a sequence of '-', '.', ' ' or
1249 tabs and uses the length for the column number)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250 %*{conv} any scanf non-assignable conversion
1251 %% the single '%' character
Bram Moolenaar2641f772005-03-25 21:58:17 +00001252 %s search text (finds a string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253
Bram Moolenaare344bea2005-09-01 20:46:49 +00001254The "%f" conversion may depend on the current 'isfname' setting. "~/" is
Bram Moolenaarf4630b62005-05-20 21:31:17 +00001255expanded to the home directory and environment variables are expanded.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256
Bram Moolenaare344bea2005-09-01 20:46:49 +00001257The "%f" and "%m" conversions have to detect the end of the string. This
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001258normally happens by matching following characters and items. When nothing is
Bram Moolenaare344bea2005-09-01 20:46:49 +00001259following the rest of the line is matched. If "%f" is followed by a '%' or a
1260backslash, it will look for a sequence of 'isfname' characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261
1262On MS-DOS, MS-Windows and OS/2 a leading "C:" will be included in "%f", even
1263when using "%f:". This means that a file name which is a single alphabetical
1264letter will not be detected.
1265
1266The "%p" conversion is normally followed by a "^". It's used for compilers
1267that output a line like: >
1268 ^
1269or >
1270 ---------^
1271to indicate the column of the error. This is to be used in a multi-line error
1272message. See |errorformat-javac| for a useful example.
1273
Bram Moolenaar85eee132018-05-06 17:57:30 +02001274The "%s" conversion specifies the text to search for, to locate the error line.
Bram Moolenaar2641f772005-03-25 21:58:17 +00001275The text is used as a literal string. The anchors "^" and "$" are added to
1276the text to locate the error line exactly matching the search text and the
1277text is prefixed with the "\V" atom to make it "very nomagic". The "%s"
1278conversion can be used to locate lines without a line number in the error
1279output. Like the output of the "grep" shell command.
1280When the pattern is present the line number will not be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281
Bram Moolenaard76ce852018-05-01 15:02:04 +02001282The "%o" conversion specifies the module name in quickfix entry. If present
1283it will be used in quickfix error window instead of the filename. The module
1284name is used only for displaying purposes, the file name is used when jumping
1285to the file.
1286
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287Changing directory
1288
1289The following uppercase conversion characters specify the type of special
1290format strings. At most one of them may be given as a prefix at the begin
1291of a single comma-separated format pattern.
1292Some compilers produce messages that consist of directory names that have to
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001293be prepended to each file name read by %f (example: GNU make). The following
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294codes can be used to scan these directory names; they will be stored in an
1295internal directory stack. *E379*
1296 %D "enter directory" format string; expects a following
1297 %f that finds the directory name
1298 %X "leave directory" format string; expects following %f
1299
1300When defining an "enter directory" or "leave directory" format, the "%D" or
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001301"%X" has to be given at the start of that substring. Vim tracks the directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302changes and prepends the current directory to each erroneous file found with a
1303relative path. See |quickfix-directory-stack| for details, tips and
1304limitations.
1305
1306
1307Multi-line messages *errorformat-multi-line*
1308
1309It is possible to read the output of programs that produce multi-line
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001310messages, i.e. error strings that consume more than one line. Possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311prefixes are:
1312 %E start of a multi-line error message
1313 %W start of a multi-line warning message
1314 %I start of a multi-line informational message
1315 %A start of a multi-line message (unspecified type)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00001316 %> for next line start with current pattern again |efm-%>|
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 %C continuation of a multi-line message
1318 %Z end of a multi-line message
1319These can be used with '+' and '-', see |efm-ignore| below.
1320
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001321Using "\n" in the pattern won't work to match multi-line messages.
1322
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323Example: Your compiler happens to write out errors in the following format
1324(leading line numbers not being part of the actual output):
1325
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001326 1 Error 275 ~
1327 2 line 42 ~
1328 3 column 3 ~
1329 4 ' ' expected after '--' ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330
1331The appropriate error format string has to look like this: >
1332 :set efm=%EError\ %n,%Cline\ %l,%Ccolumn\ %c,%Z%m
1333
1334And the |:clist| error message generated for this error is:
1335
1336 1:42 col 3 error 275: ' ' expected after '--'
1337
1338Another example: Think of a Python interpreter that produces the following
1339error message (line numbers are not part of the actual output):
1340
1341 1 ==============================================================
1342 2 FAIL: testGetTypeIdCachesResult (dbfacadeTest.DjsDBFacadeTest)
1343 3 --------------------------------------------------------------
1344 4 Traceback (most recent call last):
1345 5 File "unittests/dbfacadeTest.py", line 89, in testFoo
1346 6 self.assertEquals(34, dtid)
1347 7 File "/usr/lib/python2.2/unittest.py", line 286, in
1348 8 failUnlessEqual
1349 9 raise self.failureException, \
1350 10 AssertionError: 34 != 33
1351 11
1352 12 --------------------------------------------------------------
1353 13 Ran 27 tests in 0.063s
1354
1355Say you want |:clist| write the relevant information of this message only,
1356namely:
1357 5 unittests/dbfacadeTest.py:89: AssertionError: 34 != 33
1358
1359Then the error format string could be defined as follows: >
1360 :set efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%m
1361
1362Note that the %C string is given before the %A here: since the expression
1363' %.%#' (which stands for the regular expression ' .*') matches every line
1364starting with a space, followed by any characters to the end of the line,
1365it also hides line 7 which would trigger a separate error message otherwise.
1366Error format strings are always parsed pattern by pattern until the first
1367match occurs.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00001368 *efm-%>*
1369The %> item can be used to avoid trying patterns that appear earlier in
1370'errorformat'. This is useful for patterns that match just about anything.
1371For example, if the error looks like this:
1372
1373 Error in line 123 of foo.c: ~
1374 unknown variable "i" ~
1375
1376This can be found with: >
1377 :set efm=xxx,%E%>Error in line %l of %f:,%Z%m
1378Where "xxx" has a pattern that would also match the second line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001380Important: There is no memory of what part of the errorformat matched before;
1381every line in the error file gets a complete new run through the error format
1382lines. For example, if one has: >
1383 setlocal efm=aa,bb,cc,dd,ee
1384Where aa, bb, etc. are error format strings. Each line of the error file will
1385be matched to the pattern aa, then bb, then cc, etc. Just because cc matched
1386the previous error line does _not_ mean that dd will be tried first on the
1387current line, even if cc and dd are multi-line errorformat strings.
1388
1389
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390
1391Separate file name *errorformat-separate-filename*
1392
1393These prefixes are useful if the file name is given once and multiple messages
1394follow that refer to this file name.
1395 %O single-line file message: overread the matched part
1396 %P single-line file message: push file %f onto the stack
1397 %Q single-line file message: pop the last file from stack
1398
1399Example: Given a compiler that produces the following error logfile (without
1400leading line numbers):
1401
1402 1 [a1.tt]
1403 2 (1,17) error: ';' missing
1404 3 (21,2) warning: variable 'z' not defined
1405 4 (67,3) error: end of file found before string ended
1406 5
1407 6 [a2.tt]
1408 7
1409 8 [a3.tt]
1410 9 NEW compiler v1.1
1411 10 (2,2) warning: variable 'x' not defined
1412 11 (67,3) warning: 's' already defined
1413
1414This logfile lists several messages for each file enclosed in [...] which are
1415properly parsed by an error format like this: >
1416 :set efm=%+P[%f],(%l\\,%c)%*[\ ]%t%*[^:]:\ %m,%-Q
1417
1418A call of |:clist| writes them accordingly with their correct filenames:
1419
1420 2 a1.tt:1 col 17 error: ';' missing
1421 3 a1.tt:21 col 2 warning: variable 'z' not defined
1422 4 a1.tt:67 col 3 error: end of file found before string ended
1423 8 a3.tt:2 col 2 warning: variable 'x' not defined
1424 9 a3.tt:67 col 3 warning: 's' already defined
1425
1426Unlike the other prefixes that all match against whole lines, %P, %Q and %O
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001427can be used to match several patterns in the same line. Thus it is possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428to parse even nested files like in the following line:
1429 {"file1" {"file2" error1} error2 {"file3" error3 {"file4" error4 error5}}}
1430The %O then parses over strings that do not contain any push/pop file name
1431information. See |errorformat-LaTeX| for an extended example.
1432
1433
1434Ignoring and using whole messages *efm-ignore*
1435
1436The codes '+' or '-' can be combined with the uppercase codes above; in that
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001437case they have to precede the letter, e.g. '%+A' or '%-G':
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 %- do not include the matching multi-line in any output
1439 %+ include the whole matching line in the %m error string
1440
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001441One prefix is only useful in combination with '+' or '-', namely %G. It parses
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442over lines containing general information like compiler version strings or
1443other headers that can be skipped.
1444 %-G ignore this message
1445 %+G general message
1446
1447
1448Pattern matching
1449
1450The scanf()-like "%*[]" notation is supported for backward-compatibility
1451with previous versions of Vim. However, it is also possible to specify
1452(nearly) any Vim supported regular expression in format strings.
1453Since meta characters of the regular expression language can be part of
1454ordinary matching strings or file names (and therefore internally have to
1455be escaped), meta symbols have to be written with leading '%':
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001456 %\ The single '\' character. Note that this has to be
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 escaped ("%\\") in ":set errorformat=" definitions.
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001458 %. The single '.' character.
1459 %# The single '*'(!) character.
1460 %^ The single '^' character. Note that this is not
1461 useful, the pattern already matches start of line.
1462 %$ The single '$' character. Note that this is not
1463 useful, the pattern already matches end of line.
1464 %[ The single '[' character for a [] character range.
1465 %~ The single '~' character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466When using character classes in expressions (see |/\i| for an overview),
1467terms containing the "\+" quantifier can be written in the scanf() "%*"
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001468notation. Example: "%\\d%\\+" ("\d\+", "any number") is equivalent to "%*\\d".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469Important note: The \(...\) grouping of sub-matches can not be used in format
1470specifications because it is reserved for internal conversions.
1471
1472
1473Multiple entries in 'errorformat' *efm-entries*
1474
1475To be able to detect output from several compilers, several format patterns
1476may be put in 'errorformat', separated by commas (note: blanks after the comma
1477are ignored). The first pattern that has a complete match is used. If no
1478match is found, matching parts from the last one will be used, although the
1479file name is removed and the error message is set to the whole message. If
1480there is a pattern that may match output from several compilers (but not in a
1481right way), put it after one that is more restrictive.
1482
1483To include a comma in a pattern precede it with a backslash (you have to type
1484two in a ":set" command). To include a backslash itself give two backslashes
1485(you have to type four in a ":set" command). You also need to put a backslash
1486before a space for ":set".
1487
1488
1489Valid matches *quickfix-valid*
1490
1491If a line does not completely match one of the entries in 'errorformat', the
1492whole line is put in the error message and the entry is marked "not valid"
1493These lines are skipped with the ":cn" and ":cp" commands (unless there is
1494no valid line at all). You can use ":cl!" to display all the error messages.
1495
1496If the error format does not contain a file name Vim cannot switch to the
1497correct file. You will have to do this by hand.
1498
1499
1500Examples
1501
1502The format of the file from the Amiga Aztec compiler is:
1503
1504 filename>linenumber:columnnumber:errortype:errornumber:errormessage
1505
1506 filename name of the file in which the error was detected
1507 linenumber line number where the error was detected
1508 columnnumber column number where the error was detected
1509 errortype type of the error, normally a single 'E' or 'W'
1510 errornumber number of the error (for lookup in the manual)
1511 errormessage description of the error
1512
1513This can be matched with this 'errorformat' entry:
1514 %f>%l:%c:%t:%n:%m
1515
1516Some examples for C compilers that produce single-line error outputs:
1517%f:%l:\ %t%*[^0123456789]%n:\ %m for Manx/Aztec C error messages
1518 (scanf() doesn't understand [0-9])
1519%f\ %l\ %t%*[^0-9]%n:\ %m for SAS C
1520\"%f\"\\,%*[^0-9]%l:\ %m for generic C compilers
1521%f:%l:\ %m for GCC
1522%f:%l:\ %m,%Dgmake[%*\\d]:\ Entering\ directory\ `%f',
1523%Dgmake[%*\\d]:\ Leaving\ directory\ `%f'
1524 for GCC with gmake (concat the lines!)
1525%f(%l)\ :\ %*[^:]:\ %m old SCO C compiler (pre-OS5)
1526%f(%l)\ :\ %t%*[^0-9]%n:\ %m idem, with error type and number
1527%f:%l:\ %m,In\ file\ included\ from\ %f:%l:,\^I\^Ifrom\ %f:%l%m
1528 for GCC, with some extras
1529
1530Extended examples for the handling of multi-line messages are given below,
1531see |errorformat-Jikes| and |errorformat-LaTeX|.
1532
1533Note the backslash in front of a space and double quote. It is required for
1534the :set command. There are two backslashes in front of a comma, one for the
1535:set command and one to avoid recognizing the comma as a separator of error
1536formats.
1537
1538
1539Filtering messages
1540
1541If you have a compiler that produces error messages that do not fit in the
1542format string, you could write a program that translates the error messages
1543into this format. You can use this program with the ":make" command by
1544changing the 'makeprg' option. For example: >
1545 :set mp=make\ \\\|&\ error_filter
1546The backslashes before the pipe character are required to avoid it to be
1547recognized as a command separator. The backslash before each space is
1548required for the set command.
1549
1550=============================================================================
15518. The directory stack *quickfix-directory-stack*
1552
1553Quickfix maintains a stack for saving all used directories parsed from the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001554make output. For GNU-make this is rather simple, as it always prints the
1555absolute path of all directories it enters and leaves. Regardless if this is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556done via a 'cd' command in the makefile or with the parameter "-C dir" (change
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001557to directory before reading the makefile). It may be useful to use the switch
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558"-w" to force GNU-make to print out the working directory before and after
1559processing.
1560
1561Maintaining the correct directory is more complicated if you don't use
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001562GNU-make. AIX-make for example doesn't print any information about its
1563working directory. Then you need to enhance the makefile. In the makefile of
1564LessTif there is a command which echoes "Making {target} in {dir}". The
Bram Moolenaar6dfc28b2010-02-11 14:19:15 +01001565special problem here is that it doesn't print information on leaving the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001566directory and that it doesn't print the absolute path.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567
1568To solve the problem with relative paths and missing "leave directory"
1569messages Vim uses following algorithm:
1570
15711) Check if the given directory is a subdirectory of the current directory.
1572 If this is true, store it as the current directory.
15732) If it is not a subdir of the current directory, try if this is a
1574 subdirectory of one of the upper directories.
15753) If the directory still isn't found, it is assumed to be a subdirectory
1576 of Vim's current directory.
1577
1578Additionally it is checked for every file, if it really exists in the
1579identified directory. If not, it is searched in all other directories of the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001580directory stack (NOT the directory subtree!). If it is still not found, it is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581assumed that it is in Vim's current directory.
1582
Bram Moolenaare667c952010-07-05 22:57:59 +02001583There are limitations in this algorithm. These examples assume that make just
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584prints information about entering a directory in the form "Making all in dir".
1585
15861) Assume you have following directories and files:
1587 ./dir1
1588 ./dir1/file1.c
1589 ./file1.c
1590
1591 If make processes the directory "./dir1" before the current directory and
1592 there is an error in the file "./file1.c", you will end up with the file
1593 "./dir1/file.c" loaded by Vim.
1594
1595 This can only be solved with a "leave directory" message.
1596
15972) Assume you have following directories and files:
1598 ./dir1
1599 ./dir1/dir2
1600 ./dir2
1601
1602 You get the following:
1603
1604 Make output Directory interpreted by Vim
1605 ------------------------ ----------------------------
1606 Making all in dir1 ./dir1
1607 Making all in dir2 ./dir1/dir2
1608 Making all in dir2 ./dir1/dir2
1609
1610 This can be solved by printing absolute directories in the "enter directory"
Bram Moolenaar214641f2017-03-05 17:04:09 +01001611 message or by printing "leave directory" messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612
Bram Moolenaar06b5d512010-05-22 15:37:44 +02001613To avoid this problem, ensure to print absolute directory names and "leave
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614directory" messages.
1615
1616Examples for Makefiles:
1617
1618Unix:
1619 libs:
1620 for dn in $(LIBDIRS); do \
1621 (cd $$dn; echo "Entering dir '$$(pwd)'"; make); \
1622 echo "Leaving dir"; \
1623 done
1624
1625Add
1626 %DEntering\ dir\ '%f',%XLeaving\ dir
1627to your 'errorformat' to handle the above output.
1628
1629Note that Vim doesn't check if the directory name in a "leave directory"
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001630messages is the current directory. This is why you could just use the message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631"Leaving dir".
1632
1633=============================================================================
16349. Specific error file formats *errorformats*
1635
1636 *errorformat-Jikes*
1637Jikes(TM), a source-to-bytecode Java compiler published by IBM Research,
1638produces simple multi-line error messages.
1639
1640An 'errorformat' string matching the produced messages is shown below.
1641The following lines can be placed in the user's |vimrc| to overwrite Vim's
1642recognized default formats, or see |:set+=| how to install this format
1643additionally to the default. >
1644
1645 :set efm=%A%f:%l:%c:%*\\d:%*\\d:,
1646 \%C%*\\s%trror:%m,
1647 \%+C%*[^:]%trror:%m,
1648 \%C%*\\s%tarning:%m,
1649 \%C%m
1650<
1651Jikes(TM) produces a single-line error message when invoked with the option
1652"+E", and can be matched with the following: >
1653
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001654 :setl efm=%f:%l:%v:%*\\d:%*\\d:%*\\s%m
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655<
1656 *errorformat-javac*
1657This 'errorformat' has been reported to work well for javac, which outputs a
1658line with "^" to indicate the column of the error: >
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001659 :setl efm=%A%f:%l:\ %m,%-Z%p^,%-C%.%#
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660or: >
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001661 :setl efm=%A%f:%l:\ %m,%+Z%p^,%+C%.%#,%-G%.%#
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662<
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001663Here is an alternative from Michael F. Lamb for Unix that filters the errors
1664first: >
1665 :setl errorformat=%Z%f:%l:\ %m,%A%p^,%-G%*[^sl]%.%#
Bram Moolenaar26df0922014-02-23 23:39:13 +01001666 :setl makeprg=javac\ %:S\ 2>&1\ \\\|\ vim-javac-filter
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001667
1668You need to put the following in "vim-javac-filter" somewhere in your path
1669(e.g., in ~/bin) and make it executable: >
1670 #!/bin/sed -f
1671 /\^$/s/\t/\ /g;/:[0-9]\+:/{h;d};/^[ \t]*\^/G;
1672
1673In English, that sed script:
1674- Changes single tabs to single spaces and
1675- Moves the line with the filename, line number, error message to just after
1676 the pointer line. That way, the unused error text between doesn't break
1677 vim's notion of a "multi-line message" and also doesn't force us to include
1678 it as a "continuation of a multi-line message."
1679
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680 *errorformat-ant*
1681For ant (http://jakarta.apache.org/) the above errorformat has to be modified
1682to honour the leading [javac] in front of each javac output line: >
1683 :set efm=%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%#
1684
1685The 'errorformat' can also be configured to handle ant together with either
1686javac or jikes. If you're using jikes, you should tell ant to use jikes' +E
1687command line switch which forces jikes to generate one-line error messages.
1688This is what the second line (of a build.xml file) below does: >
1689 <property name = "build.compiler" value = "jikes"/>
1690 <property name = "build.compiler.emacs" value = "true"/>
1691
1692The 'errorformat' which handles ant with both javac and jikes is: >
1693 :set efm=\ %#[javac]\ %#%f:%l:%c:%*\\d:%*\\d:\ %t%[%^:]%#:%m,
1694 \%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%#
1695<
1696 *errorformat-jade*
1697parsing jade (see http://www.jclark.com/) errors is simple: >
1698 :set efm=jade:%f:%l:%c:%t:%m
1699<
1700 *errorformat-LaTeX*
1701The following is an example how an 'errorformat' string can be specified
1702for the (La)TeX typesetting system which displays error messages over
1703multiple lines. The output of ":clist" and ":cc" etc. commands displays
1704multi-lines in a single line, leading white space is removed.
1705It should be easy to adopt the above LaTeX errorformat to any compiler output
1706consisting of multi-line errors.
1707
1708The commands can be placed in a |vimrc| file or some other Vim script file,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001709e.g. a script containing LaTeX related stuff which is loaded only when editing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710LaTeX sources.
1711Make sure to copy all lines of the example (in the given order), afterwards
1712remove the comment lines. For the '\' notation at the start of some lines see
1713|line-continuation|.
1714
1715 First prepare 'makeprg' such that LaTeX will report multiple
1716 errors; do not stop when the first error has occurred: >
1717 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*}
1718<
1719 Start of multi-line error messages: >
1720 :set efm=%E!\ LaTeX\ %trror:\ %m,
1721 \%E!\ %m,
1722< Start of multi-line warning messages; the first two also
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001723 include the line number. Meaning of some regular expressions:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 - "%.%#" (".*") matches a (possibly empty) string
1725 - "%*\\d" ("\d\+") matches a number >
1726 \%+WLaTeX\ %.%#Warning:\ %.%#line\ %l%.%#,
1727 \%+W%.%#\ at\ lines\ %l--%*\\d,
1728 \%WLaTeX\ %.%#Warning:\ %m,
1729< Possible continuations of error/warning messages; the first
1730 one also includes the line number: >
1731 \%Cl.%l\ %m,
1732 \%+C\ \ %m.,
1733 \%+C%.%#-%.%#,
1734 \%+C%.%#[]%.%#,
1735 \%+C[]%.%#,
1736 \%+C%.%#%[{}\\]%.%#,
1737 \%+C<%.%#>%.%#,
1738 \%C\ \ %m,
1739< Lines that match the following patterns do not contain any
1740 important information; do not include them in messages: >
1741 \%-GSee\ the\ LaTeX%m,
1742 \%-GType\ \ H\ <return>%m,
1743 \%-G\ ...%.%#,
1744 \%-G%.%#\ (C)\ %.%#,
1745 \%-G(see\ the\ transcript%.%#),
1746< Generally exclude any empty or whitespace-only line from
1747 being displayed: >
1748 \%-G\\s%#,
1749< The LaTeX output log does not specify the names of erroneous
1750 source files per line; rather they are given globally,
1751 enclosed in parentheses.
1752 The following patterns try to match these names and store
1753 them in an internal stack. The patterns possibly scan over
1754 the same input line (one after another), the trailing "%r"
1755 conversion indicates the "rest" of the line that will be
1756 parsed in the next go until the end of line is reached.
1757
1758 Overread a file name enclosed in '('...')'; do not push it
1759 on a stack since the file apparently does not contain any
1760 error: >
1761 \%+O(%f)%r,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001762< Push a file name onto the stack. The name is given after '(': >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 \%+P(%f%r,
1764 \%+P\ %\\=(%f%r,
1765 \%+P%*[^()](%f%r,
1766 \%+P[%\\d%[^()]%#(%f%r,
1767< Pop the last stored file name when a ')' is scanned: >
1768 \%+Q)%r,
1769 \%+Q%*[^()])%r,
1770 \%+Q[%\\d%*[^()])%r
1771
1772Note that in some cases file names in the LaTeX output log cannot be parsed
1773properly. The parser might have been messed up by unbalanced parentheses
1774then. The above example tries to catch the most relevant cases only.
1775You can customize the given setting to suit your own purposes, for example,
1776all the annoying "Overfull ..." warnings could be excluded from being
1777recognized as an error.
1778Alternatively to filtering the LaTeX compiler output, it is also possible
1779to directly read the *.log file that is produced by the [La]TeX compiler.
1780This contains even more useful information about possible error causes.
1781However, to properly parse such a complex file, an external filter should
1782be used. See the description further above how to make such a filter known
1783by Vim.
1784
1785 *errorformat-Perl*
1786In $VIMRUNTIME/tools you can find the efm_perl.pl script, which filters Perl
1787error messages into a format that quickfix mode will understand. See the
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001788start of the file about how to use it. (This script is deprecated, see
1789|compiler-perl|.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790
1791
1792
1793 vim:tw=78:ts=8:ft=help:norl: