blob: 6f17b77d485a5683b0324a3bf77e2fc9b2206ade [file] [log] [blame]
Bram Moolenaard09091d2019-01-17 16:07:22 +01001*quickfix.txt* For Vim version 8.1. Last change: 2019 Jan 13
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
Bram Moolenaard473c8c2018-08-11 18:00:22 +020049number 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.
Bram Moolenaar5b69c222019-01-11 14:50:06 +010059 *location-list-file-window*
Bram Moolenaar036986f2017-03-16 17:41:02 +010060A location list is associated with a window and each window can have a
61separate location list. A location list can be associated with only one
62window. The location list is independent of the quickfix list.
Bram Moolenaard12f5c12006-01-25 22:10:52 +000063
Bram Moolenaar280f1262006-01-30 00:14:18 +000064When a window with a location list is split, the new window gets a copy of the
Bram Moolenaare18dbe82016-07-02 21:42:23 +020065location list. When there are no longer any references to a location list,
66the location list is destroyed.
Bram Moolenaar280f1262006-01-30 00:14:18 +000067
Bram Moolenaarb254af32017-12-18 19:48:58 +010068 *quickfix-changedtick*
69Every quickfix and location list has a read-only changedtick variable that
70tracks the total number of changes made to the list. Every time the quickfix
71list is modified, this count is incremented. This can be used to perform an
Bram Moolenaard473c8c2018-08-11 18:00:22 +020072action only when the list has changed. The |getqflist()| and |getloclist()|
Bram Moolenaarb254af32017-12-18 19:48:58 +010073functions can be used to query the current value of changedtick. You cannot
74change the changedtick variable.
75
Bram Moolenaar280f1262006-01-30 00:14:18 +000076The following quickfix commands can be used. The location list commands are
77similar to the quickfix commands, replacing the 'c' prefix in the quickfix
78command with 'l'.
Bram Moolenaar071d4272004-06-13 20:20:40 +000079
Bram Moolenaare18c0b32016-03-20 21:08:34 +010080 *E924*
81If the current window was closed by an |autocommand| while processing a
82location list command, it will be aborted.
83
Bram Moolenaarffec3c52016-03-23 20:55:42 +010084 *E925* *E926*
85If the current quickfix or location list was changed by an |autocommand| while
86processing a quickfix or location list command, it will be aborted.
87
Bram Moolenaar071d4272004-06-13 20:20:40 +000088 *:cc*
89:cc[!] [nr] Display error [nr]. If [nr] is omitted, the same
90 error is displayed again. Without [!] this doesn't
91 work when jumping to another buffer, the current buffer
92 has been changed, there is the only window for the
93 buffer and both 'hidden' and 'autowrite' are off.
94 When jumping to another buffer with [!] any changes to
95 the current buffer are lost, unless 'hidden' is set or
96 there is another window for this buffer.
97 The 'switchbuf' settings are respected when jumping
98 to a buffer.
99
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000100 *:ll*
101:ll[!] [nr] Same as ":cc", except the location list for the
102 current window is used instead of the quickfix list.
103
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104 *:cn* *:cnext* *E553*
105:[count]cn[ext][!] Display the [count] next error in the list that
106 includes a file name. If there are no file names at
107 all, go to the [count] next error. See |:cc| for
108 [!] and 'switchbuf'.
109
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000110 *:lne* *:lnext*
111:[count]lne[xt][!] Same as ":cnext", except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000112 current window is used instead of the quickfix list.
113
Bram Moolenaard09091d2019-01-17 16:07:22 +0100114:[count]cN[ext][!] *:cp* *:cprevious* *:cprev* *:cN* *:cNext*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115:[count]cp[revious][!] Display the [count] previous error in the list that
116 includes a file name. If there are no file names at
117 all, go to the [count] previous error. See |:cc| for
118 [!] and 'switchbuf'.
119
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000120
Bram Moolenaard09091d2019-01-17 16:07:22 +0100121:[count]lN[ext][!] *:lp* *:lprevious* *:lprev* *:lN* *:lNext*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000122:[count]lp[revious][!] Same as ":cNext" and ":cprevious", except the location
123 list for the current window is used instead of the
124 quickfix list.
125
Bram Moolenaar3ff33112019-05-03 21:56:35 +0200126 *:cabo* *:cabove*
127:[count]cabo[ve] Go to the [count] error above the current line in the
128 current buffer. If [count] is omitted, then 1 is
129 used. If there are no errors, then an error message
130 is displayed. Assumes that the entries in a quickfix
131 list are sorted by their buffer number and line
132 number. If there are multiple errors on the same line,
133 then only the first entry is used. If [count] exceeds
134 the number of entries above the current line, then the
135 first error in the file is selected.
136
137 *:lab* *:labove*
138:[count]lab[ove] Same as ":cabove", except the location list for the
139 current window is used instead of the quickfix list.
140
141 *:cbe* *:cbelow*
142:[count]cbe[low] Go to the [count] error below the current line in the
143 current buffer. If [count] is omitted, then 1 is
144 used. If there are no errors, then an error message
145 is displayed. Assumes that the entries in a quickfix
146 list are sorted by their buffer number and line
147 number. If there are multiple errors on the same
148 line, then only the first entry is used. If [count]
149 exceeds the number of entries below the current line,
150 then the last error in the file is selected.
151
152 *:lbe* *:lbelow*
153:[count]lbe[low] Same as ":cbelow", except the location list for the
154 current window is used instead of the quickfix list.
155
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156 *:cnf* *:cnfile*
157:[count]cnf[ile][!] Display the first error in the [count] next file in
158 the list that includes a file name. If there are no
159 file names at all or if there is no next file, go to
160 the [count] next error. See |:cc| for [!] and
161 'switchbuf'.
162
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000163 *:lnf* *:lnfile*
164:[count]lnf[ile][!] Same as ":cnfile", except the location list for the
165 current window is used instead of the quickfix list.
166
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167:[count]cNf[ile][!] *:cpf* *:cpfile* *:cNf* *:cNfile*
168:[count]cpf[ile][!] Display the last error in the [count] previous file in
169 the list that includes a file name. If there are no
170 file names at all or if there is no next file, go to
171 the [count] previous error. See |:cc| for [!] and
172 'switchbuf'.
173
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000174
175:[count]lNf[ile][!] *:lpf* *:lpfile* *:lNf* *:lNfile*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000176:[count]lpf[ile][!] Same as ":cNfile" and ":cpfile", except the location
177 list for the current window is used instead of the
178 quickfix list.
179
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180 *:crewind* *:cr*
181:cr[ewind][!] [nr] Display error [nr]. If [nr] is omitted, the FIRST
182 error is displayed. See |:cc|.
183
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000184 *:lrewind* *:lr*
185:lr[ewind][!] [nr] Same as ":crewind", except the location list for the
186 current window is used instead of the quickfix list.
187
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 *:cfirst* *:cfir*
189:cfir[st][!] [nr] Same as ":crewind".
190
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000191 *:lfirst* *:lfir*
192:lfir[st][!] [nr] Same as ":lrewind".
193
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 *:clast* *:cla*
195:cla[st][!] [nr] Display error [nr]. If [nr] is omitted, the LAST
196 error is displayed. See |:cc|.
197
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000198 *:llast* *:lla*
199:lla[st][!] [nr] Same as ":clast", except the location list for the
200 current window is used instead of the quickfix list.
201
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 *:cq* *:cquit*
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000203:cq[uit][!] Quit Vim with an error code, so that the compiler
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204 will not compile the same file again.
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000205 WARNING: All changes in files are lost! Also when the
206 [!] is not used. It works like ":qall!" |:qall|,
207 except that Vim returns a non-zero exit code.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208
209 *:cf* *:cfile*
210:cf[ile][!] [errorfile] Read the error file and jump to the first error.
211 This is done automatically when Vim is started with
212 the -q option. You can use this command when you
213 keep Vim running while compiling. If you give the
214 name of the errorfile, the 'errorfile' option will
215 be set to [errorfile]. See |:cc| for [!].
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100216 If the encoding of the error file differs from the
217 'encoding' option, you can use the 'makeencoding'
218 option to specify the encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000220 *:lf* *:lfile*
221:lf[ile][!] [errorfile] Same as ":cfile", except the location list for the
222 current window is used instead of the quickfix list.
223 You can not use the -q command-line option to set
224 the location list.
225
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000226
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000227:cg[etfile] [errorfile] *:cg* *:cgetfile*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228 Read the error file. Just like ":cfile" but don't
229 jump to the first error.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100230 If the encoding of the error file differs from the
231 'encoding' option, you can use the 'makeencoding'
232 option to specify the encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000234
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000235:lg[etfile] [errorfile] *:lg* *:lgetfile*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000236 Same as ":cgetfile", except the location list for the
237 current window is used instead of the quickfix list.
238
Bram Moolenaar4770d092006-01-12 23:22:24 +0000239 *:caddf* *:caddfile*
240:caddf[ile] [errorfile] Read the error file and add the errors from the
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000241 errorfile to the current quickfix list. If a quickfix
242 list is not present, then a new list is created.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100243 If the encoding of the error file differs from the
244 'encoding' option, you can use the 'makeencoding'
245 option to specify the encoding.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000246
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000247 *:laddf* *:laddfile*
248:laddf[ile] [errorfile] Same as ":caddfile", except the location list for the
249 current window is used instead of the quickfix list.
250
Bram Moolenaar86b68352004-12-27 21:59:20 +0000251 *:cb* *:cbuffer* *E681*
Bram Moolenaar6cbce9d2007-03-08 10:01:03 +0000252:cb[uffer][!] [bufnr] Read the error list from the current buffer.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000253 When [bufnr] is given it must be the number of a
254 loaded buffer. That buffer will then be used instead
255 of the current buffer.
256 A range can be specified for the lines to be used.
257 Otherwise all lines in the buffer are used.
Bram Moolenaar6cbce9d2007-03-08 10:01:03 +0000258 See |:cc| for [!].
Bram Moolenaar86b68352004-12-27 21:59:20 +0000259
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000260 *:lb* *:lbuffer*
Bram Moolenaar6cbce9d2007-03-08 10:01:03 +0000261:lb[uffer][!] [bufnr] Same as ":cbuffer", except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000262 current window is used instead of the quickfix list.
263
Bram Moolenaardb552d602006-03-23 22:59:57 +0000264 *:cgetb* *:cgetbuffer*
265:cgetb[uffer] [bufnr] Read the error list from the current buffer. Just
266 like ":cbuffer" but don't jump to the first error.
267
268 *:lgetb* *:lgetbuffer*
269:lgetb[uffer] [bufnr] Same as ":cgetbuffer", except the location list for
270 the current window is used instead of the quickfix
271 list.
272
Bram Moolenaara6878372014-03-22 21:02:50 +0100273 *:cad* *:caddbuffer*
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100274:cad[dbuffer] [bufnr] Read the error list from the current buffer and add
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +0000275 the errors to the current quickfix list. If a
276 quickfix list is not present, then a new list is
277 created. Otherwise, same as ":cbuffer".
278
279 *:laddb* *:laddbuffer*
280:laddb[uffer] [bufnr] Same as ":caddbuffer", except the location list for
281 the current window is used instead of the quickfix
282 list.
283
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000284 *:cex* *:cexpr* *E777*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000285:cex[pr][!] {expr} Create a quickfix list using the result of {expr} and
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200286 jump to the first error.
287 If {expr} is a String, then each new-line terminated
Bram Moolenaard6357e82016-01-21 21:48:09 +0100288 line in the String is processed using the global value
289 of 'errorformat' and the result is added to the
290 quickfix list.
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200291 If {expr} is a List, then each String item in the list
292 is processed and added to the quickfix list. Non
293 String items in the List are ignored.
294 See |:cc| for [!].
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000295 Examples: >
296 :cexpr system('grep -n xyz *')
297 :cexpr getline(1, '$')
298<
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000299 *:lex* *:lexpr*
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200300:lex[pr][!] {expr} Same as |:cexpr|, except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000301 current window is used instead of the quickfix list.
302
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000303 *:cgete* *:cgetexpr*
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000304:cgete[xpr] {expr} Create a quickfix list using the result of {expr}.
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200305 Just like |:cexpr|, but don't jump to the first error.
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000306
307 *:lgete* *:lgetexpr*
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200308:lgete[xpr] {expr} Same as |:cgetexpr|, except the location list for the
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000309 current window is used instead of the quickfix list.
310
Bram Moolenaara6878372014-03-22 21:02:50 +0100311 *:cadde* *:caddexpr*
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100312:cadde[xpr] {expr} Evaluate {expr} and add the resulting lines to the
Bram Moolenaar4770d092006-01-12 23:22:24 +0000313 current quickfix list. If a quickfix list is not
314 present, then a new list is created. The current
315 cursor position will not be changed. See |:cexpr| for
316 more information.
317 Example: >
318 :g/mypattern/caddexpr expand("%") . ":" . line(".") . ":" . getline(".")
319<
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000320 *:lad* *:laddexpr*
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000321:lad[dexpr] {expr} Same as ":caddexpr", except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000322 current window is used instead of the quickfix list.
323
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324 *:cl* *:clist*
325:cl[ist] [from] [, [to]]
326 List all errors that are valid |quickfix-valid|.
327 If numbers [from] and/or [to] are given, the respective
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000328 range of errors is listed. A negative number counts
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 from the last error backwards, -1 being the last error.
330 The 'switchbuf' settings are respected when jumping
331 to a buffer.
Bram Moolenaara9defad2018-07-08 18:20:24 +0200332 The |:filter| command can be used to display only the
333 quickfix entries matching a supplied pattern. The
334 pattern is matched against the filename, module name,
335 pattern and text of the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336
Bram Moolenaare8fea072016-07-01 14:48:27 +0200337:cl[ist] +{count} List the current and next {count} valid errors. This
338 is similar to ":clist from from+count", where "from"
339 is the current error position.
340
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341:cl[ist]! [from] [, [to]]
342 List all errors.
343
Bram Moolenaare8fea072016-07-01 14:48:27 +0200344:cl[ist]! +{count} List the current and next {count} error lines. This
345 is useful to see unrecognized lines after the current
346 one. For example, if ":clist" shows:
347 8384 testje.java:252: error: cannot find symbol ~
348 Then using ":cl! +3" shows the reason:
349 8384 testje.java:252: error: cannot find symbol ~
350 8385: ZexitCode = Fmainx(); ~
351 8386: ^ ~
352 8387: symbol: method Fmainx() ~
353
354:lli[st] [from] [, [to]] *:lli* *:llist*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000355 Same as ":clist", except the location list for the
356 current window is used instead of the quickfix list.
357
358:lli[st]! [from] [, [to]]
359 List all the entries in the location list for the
360 current window.
361
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362If you insert or delete lines, mostly the correct error location is still
363found because hidden marks are used. Sometimes, when the mark has been
364deleted for some reason, the message "line changed" is shown to warn you that
365the error location may not be correct. If you quit Vim and start again the
366marks are lost and the error locations may not be correct anymore.
367
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100368Two autocommands are available for running commands before and after a
369quickfix command (':make', ':grep' and so on) is executed. See
370|QuickFixCmdPre| and |QuickFixCmdPost| for details.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000371
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000372 *QuickFixCmdPost-example*
373When 'encoding' differs from the locale, the error messages may have a
374different encoding from what Vim is using. To convert the messages you can
375use this code: >
376 function QfMakeConv()
377 let qflist = getqflist()
378 for i in qflist
379 let i.text = iconv(i.text, "cp936", "utf-8")
380 endfor
381 call setqflist(qflist)
382 endfunction
383
384 au QuickfixCmdPost make call QfMakeConv()
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100385Another option is using 'makeencoding'.
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000386
Bram Moolenaar74240d32017-12-10 15:26:15 +0100387 *quickfix-title*
388Every quickfix and location list has a title. By default the title is set to
389the command that created the list. The |getqflist()| and |getloclist()|
390functions can be used to get the title of a quickfix and a location list
391respectively. The |setqflist()| and |setloclist()| functions can be used to
392modify the title of a quickfix and location list respectively. Examples: >
393 call setqflist([], 'a', {'title' : 'Cmd output'})
394 echo getqflist({'title' : 1})
395 call setloclist(3, [], 'a', {'title' : 'Cmd output'})
396 echo getloclist(3, {'title' : 1})
397<
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100398 *quickfix-index*
399When you jump to a quickfix/location list entry using any of the quickfix
Bram Moolenaard09091d2019-01-17 16:07:22 +0100400commands (e.g. |:cc|, |:cnext|, |:cprev|, etc.), that entry becomes the
401currently selected entry. The index of the currently selected entry in a
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100402quickfix/location list can be obtained using the getqflist()/getloclist()
403functions. Examples: >
404 echo getqflist({'idx' : 0}).idx
405 echo getqflist({'id' : qfid, 'idx' : 0}).idx
406 echo getloclist(2, {'idx' : 0}).idx
407<
408For a new quickfix list, the first entry is selected and the index is 1. Any
409entry in any quickfix/location list can be set as the currently selected entry
410using the setqflist() function. Examples: >
411 call setqflist([], 'a', {'idx' : 12})
412 call setqflist([], 'a', {'id' : qfid, 'idx' : 7})
413 call setloclist(1, [], 'a', {'idx' : 7})
414<
Bram Moolenaar74240d32017-12-10 15:26:15 +0100415 *quickfix-size*
416You can get the number of entries (size) in a quickfix and a location list
417using the |getqflist()| and |getloclist()| functions respectively. Examples: >
418 echo getqflist({'size' : 1})
419 echo getloclist(5, {'size' : 1})
420<
421 *quickfix-context*
422Any Vim type can be associated as a context with a quickfix or location list.
423The |setqflist()| and the |setloclist()| functions can be used to associate a
424context with a quickfix and a location list respectively. The |getqflist()|
425and the |getloclist()| functions can be used to retrieve the context of a
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100426quickfix and a location list respectively. This is useful for a Vim plugin
Bram Moolenaar74240d32017-12-10 15:26:15 +0100427dealing with multiple quickfix/location lists.
428Examples: >
429
430 let somectx = {'name' : 'Vim', 'type' : 'Editor'}
431 call setqflist([], 'a', {'context' : somectx})
432 echo getqflist({'context' : 1})
433
434 let newctx = ['red', 'green', 'blue']
435 call setloclist(2, [], 'a', {'id' : qfid, 'context' : newctx})
436 echo getloclist(2, {'id' : qfid, 'context' : 1})
437<
438 *quickfix-parse*
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100439You can parse a list of lines using 'errorformat' without creating or
440modifying a quickfix list using the |getqflist()| function. Examples: >
Bram Moolenaar74240d32017-12-10 15:26:15 +0100441 echo getqflist({'lines' : ["F1:10:Line10", "F2:20:Line20"]})
442 echo getqflist({'lines' : systemlist('grep -Hn quickfix *')})
443This returns a dictionary where the 'items' key contains the list of quickfix
444entries parsed from lines. The following shows how to use a custom
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100445'errorformat' to parse the lines without modifying the 'errorformat' option: >
Bram Moolenaar74240d32017-12-10 15:26:15 +0100446 echo getqflist({'efm' : '%f#%l#%m', 'lines' : ['F1#10#Line']})
447<
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000448
Bram Moolenaar12969c02015-09-08 23:36:10 +0200449EXECUTE A COMMAND IN ALL THE BUFFERS IN QUICKFIX OR LOCATION LIST:
450 *:cdo*
451:cdo[!] {cmd} Execute {cmd} in each valid entry in the quickfix list.
452 It works like doing this: >
453 :cfirst
454 :{cmd}
455 :cnext
456 :{cmd}
457 etc.
458< When the current file can't be |abandon|ed and the [!]
459 is not present, the command fails.
Bram Moolenaare8fea072016-07-01 14:48:27 +0200460 When an error is detected execution stops.
Bram Moolenaar12969c02015-09-08 23:36:10 +0200461 The last buffer (or where an error occurred) becomes
462 the current buffer.
463 {cmd} can contain '|' to concatenate several commands.
464
465 Only valid entries in the quickfix list are used.
466 A range can be used to select entries, e.g.: >
467 :10,$cdo cmd
468< To skip entries 1 to 9.
469
470 Note: While this command is executing, the Syntax
471 autocommand event is disabled by adding it to
472 'eventignore'. This considerably speeds up editing
473 each buffer.
Bram Moolenaarab943432018-03-29 18:27:07 +0200474 {not in Vi}
Bram Moolenaar12969c02015-09-08 23:36:10 +0200475 Also see |:bufdo|, |:tabdo|, |:argdo|, |:windo|,
476 |:ldo|, |:cfdo| and |:lfdo|.
477
478 *:cfdo*
479:cfdo[!] {cmd} Execute {cmd} in each file in the quickfix list.
480 It works like doing this: >
481 :cfirst
482 :{cmd}
483 :cnfile
484 :{cmd}
485 etc.
486< Otherwise it works the same as `:cdo`.
Bram Moolenaarab943432018-03-29 18:27:07 +0200487 {not in Vi}
Bram Moolenaar12969c02015-09-08 23:36:10 +0200488
489 *:ldo*
490:ld[o][!] {cmd} Execute {cmd} in each valid entry in the location list
491 for the current window.
492 It works like doing this: >
493 :lfirst
494 :{cmd}
495 :lnext
496 :{cmd}
497 etc.
498< Only valid entries in the location list are used.
499 Otherwise it works the same as `:cdo`.
Bram Moolenaarab943432018-03-29 18:27:07 +0200500 {not in Vi}
Bram Moolenaar12969c02015-09-08 23:36:10 +0200501
502 *:lfdo*
503:lfdo[!] {cmd} Execute {cmd} in each file in the location list for
504 the current window.
505 It works like doing this: >
506 :lfirst
507 :{cmd}
508 :lnfile
509 :{cmd}
510 etc.
511< Otherwise it works the same as `:ldo`.
Bram Moolenaarab943432018-03-29 18:27:07 +0200512 {not in Vi}
Bram Moolenaar12969c02015-09-08 23:36:10 +0200513
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514=============================================================================
5152. The error window *quickfix-window*
516
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200517 *:cope* *:copen* *w:quickfix_title*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518:cope[n] [height] Open a window to show the current list of errors.
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100519
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520 When [height] is given, the window becomes that high
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100521 (if there is room). When [height] is omitted the
522 window is made ten lines high.
523
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524 If there already is a quickfix window, it will be made
525 the current window. It is not possible to open a
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100526 second quickfix window. If [height] is given the
527 existing window will be resized to it.
528
Bram Moolenaar647e24b2019-03-17 16:39:46 +0100529 *quickfix-buffer*
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100530 The window will contain a special buffer, with
531 'buftype' equal to "quickfix". Don't change this!
532 The window will have the w:quickfix_title variable set
533 which will indicate the command that produced the
534 quickfix list. This can be used to compose a custom
535 status line if the value of 'statusline' is adjusted
Bram Moolenaara8788f42017-07-19 17:06:20 +0200536 properly. Whenever this buffer is modified by a
537 quickfix command or function, the |b:changedtick|
Bram Moolenaar647e24b2019-03-17 16:39:46 +0100538 variable is incremented. You can get the number of
539 this buffer using the getqflist() and getloclist()
540 functions by passing the 'qfbufnr' item. For a
541 location list, this buffer is wiped out when the
542 location list is removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000544 *:lop* *:lopen*
545:lop[en] [height] Open a window to show the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000546 current window. Works only when the location list for
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000547 the current window is present. You can have more than
548 one location window opened at a time. Otherwise, it
Bram Moolenaar280f1262006-01-30 00:14:18 +0000549 acts the same as ":copen".
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000550
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 *:ccl* *:cclose*
552:ccl[ose] Close the quickfix window.
553
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000554 *:lcl* *:lclose*
555:lcl[ose] Close the window showing the location list for the
556 current window.
557
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 *:cw* *:cwindow*
559:cw[indow] [height] Open the quickfix window when there are recognized
560 errors. If the window is already open and there are
561 no recognized errors, close the window.
562
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000563 *:lw* *:lwindow*
564:lw[indow] [height] Same as ":cwindow", except use the window showing the
565 location list for the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566
Bram Moolenaar537ef082016-07-09 17:56:19 +0200567 *:cbo* *:cbottom*
Bram Moolenaardcb17002016-07-07 18:58:59 +0200568:cbo[ttom] Put the cursor in the last line of the quickfix window
569 and scroll to make it visible. This is useful for
570 when errors are added by an asynchronous callback.
571 Only call it once in a while if there are many
572 updates to avoid a lot of redrawing.
573
Bram Moolenaar537ef082016-07-09 17:56:19 +0200574 *:lbo* *:lbottom*
575:lbo[ttom] Same as ":cbottom", except use the window showing the
576 location list for the current window.
577
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578Normally the quickfix window is at the bottom of the screen. If there are
579vertical splits, it's at the bottom of the rightmost column of windows. To
580make it always occupy the full width: >
581 :botright cwindow
582You can move the window around with |window-moving| commands.
583For example, to move it to the top: CTRL-W K
584The 'winfixheight' option will be set, which means that the window will mostly
585keep its height, ignoring 'winheight' and 'equalalways'. You can change the
586height manually (e.g., by dragging the status line above it with the mouse).
587
588In the quickfix window, each line is one error. The line number is equal to
Bram Moolenaar21020352017-06-13 17:21:04 +0200589the error number. The current entry is highlighted with the QuickFixLine
590highlighting. You can change it to your liking, e.g.: >
591 :hi QuickFixLine ctermbg=Yellow guibg=Yellow
592
593You can use ":.cc" to jump to the error under the cursor.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000594Hitting the <Enter> key or double-clicking the mouse on a line has the same
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595effect. The file containing the error is opened in the window above the
596quickfix window. If there already is a window for that file, it is used
597instead. If the buffer in the used window has changed, and the error is in
598another file, jumping to the error will fail. You will first have to make
599sure the window contains a buffer which can be abandoned.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000600 *CTRL-W_<Enter>* *CTRL-W_<CR>*
601You can use CTRL-W <Enter> to open a new window and jump to the error there.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602
603When the quickfix window has been filled, two autocommand events are
604triggered. First the 'filetype' option is set to "qf", which triggers the
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000605FileType event. Then the BufReadPost event is triggered, using "quickfix" for
606the buffer name. This can be used to perform some action on the listed
607errors. Example: >
Bram Moolenaar280f1262006-01-30 00:14:18 +0000608 au BufReadPost quickfix setlocal modifiable
609 \ | silent exe 'g/^/s//\=line(".")." "/'
610 \ | setlocal nomodifiable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611This prepends the line number to each line. Note the use of "\=" in the
612substitute string of the ":s" command, which is used to evaluate an
613expression.
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000614The BufWinEnter event is also triggered, again using "quickfix" for the buffer
615name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616
Bram Moolenaar82af8712016-06-04 20:20:29 +0200617Note: When adding to an existing quickfix list the autocommand are not
618triggered.
619
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620Note: Making changes in the quickfix window has no effect on the list of
621errors. 'modifiable' is off to avoid making changes. If you delete or insert
622lines anyway, the relation between the text and the error number is messed up.
623If you really want to do this, you could write the contents of the quickfix
624window to a file and use ":cfile" to have it parsed and used as the new error
625list.
626
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000627 *location-list-window*
Bram Moolenaar280f1262006-01-30 00:14:18 +0000628The location list window displays the entries in a location list. When you
629open a location list window, it is created below the current window and
630displays the location list for the current window. The location list window
631is similar to the quickfix window, except that you can have more than one
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000632location list window open at a time. When you use a location list command in
633this window, the displayed location list is used.
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000634
Bram Moolenaar280f1262006-01-30 00:14:18 +0000635When you select a file from the location list window, the following steps are
636used to find a window to edit the file:
637
6381. If a window with the location list displayed in the location list window is
639 present, then the file is opened in that window.
6402. If the above step fails and if the file is already opened in another
641 window, then that window is used.
6423. If the above step fails then an existing window showing a buffer with
643 'buftype' not set is used.
6444. If the above step fails, then the file is edited in a new window.
645
646In all of the above cases, if the location list for the selected window is not
647yet set, then it is set to the location list displayed in the location list
648window.
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000649
Bram Moolenaar74240d32017-12-10 15:26:15 +0100650 *quickfix-window-ID*
651You can use the |getqflist()| and |getloclist()| functions to obtain the
652window ID of the quickfix window and location list window respectively (if
653present). Examples: >
654 echo getqflist({'winid' : 1}).winid
655 echo getloclist(2, {'winid' : 1}).winid
656<
Bram Moolenaar15142e22018-04-30 22:19:58 +0200657 *getqflist-examples*
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200658The |getqflist()| and |getloclist()| functions can be used to get the various
Bram Moolenaar15142e22018-04-30 22:19:58 +0200659attributes of a quickfix and location list respectively. Some examples for
660using these functions are below:
661>
662 " get the title of the current quickfix list
663 :echo getqflist({'title' : 0}).title
664
665 " get the identifier of the current quickfix list
666 :let qfid = getqflist({'id' : 0}).id
667
Bram Moolenaar78ddc062018-05-15 21:56:34 +0200668 " get the identifier of the fourth quickfix list in the stack
669 :let qfid = getqflist({'nr' : 4, 'id' : 0}).id
670
671 " check whether a quickfix list with a specific identifier exists
672 :if getqflist({'id' : qfid}).id == qfid
673
Bram Moolenaar15142e22018-04-30 22:19:58 +0200674 " get the index of the current quickfix list in the stack
675 :let qfnum = getqflist({'nr' : 0}).nr
676
677 " get the items of a quickfix list specified by an identifier
678 :echo getqflist({'id' : qfid, 'items' : 0}).items
679
680 " get the number of entries in a quickfix list specified by an id
681 :echo getqflist({'id' : qfid, 'size' : 0}).size
682
683 " get the context of the third quickfix list in the stack
684 :echo getqflist({'nr' : 3, 'context' : 0}).context
685
686 " get the number of quickfix lists in the stack
687 :echo getqflist({'nr' : '$'}).nr
688
689 " get the number of times the current quickfix list is changed
690 :echo getqflist({'changedtick' : 0}).changedtick
691
692 " get the current entry in a quickfix list specified by an identifier
693 :echo getqflist({'id' : qfid, 'idx' : 0}).idx
694
695 " get all the quickfix list attributes using an identifier
696 :echo getqflist({'id' : qfid, 'all' : 0})
697
698 " parse text from a List of lines and return a quickfix list
699 :let myList = ["a.java:10:L10", "b.java:20:L20"]
700 :echo getqflist({'lines' : myList}).items
701
702 " parse text using a custom 'efm' and return a quickfix list
703 :echo getqflist({'lines' : ['a.c#10#Line 10'], 'efm':'%f#%l#%m'}).items
704
705 " get the quickfix list window id
706 :echo getqflist({'winid' : 0}).winid
707
Bram Moolenaar647e24b2019-03-17 16:39:46 +0100708 " get the quickfix list window buffer number
709 :echo getqflist({'qfbufnr' : 0}).qfbufnr
710
Bram Moolenaar15142e22018-04-30 22:19:58 +0200711 " get the context of the current location list
712 :echo getloclist(0, {'context' : 0}).context
713
714 " get the location list window id of the third window
715 :echo getloclist(3, {'winid' : 0}).winid
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100716
Bram Moolenaar647e24b2019-03-17 16:39:46 +0100717 " get the location list window buffer number of the third window
718 :echo getloclist(3, {'qfbufnr' : 0}).qfbufnr
719
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100720 " get the file window id of a location list window (winnr: 4)
721 :echo getloclist(4, {'filewinid' : 0}).filewinid
Bram Moolenaar15142e22018-04-30 22:19:58 +0200722<
723 *setqflist-examples*
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200724The |setqflist()| and |setloclist()| functions can be used to set the various
Bram Moolenaar15142e22018-04-30 22:19:58 +0200725attributes of a quickfix and location list respectively. Some examples for
726using these functions are below:
727>
Bram Moolenaar78ddc062018-05-15 21:56:34 +0200728 " create an empty quickfix list with a title and a context
729 :let t = 'Search results'
730 :let c = {'cmd' : 'grep'}
731 :call setqflist([], ' ', {'title' : t, 'context' : c})
732
Bram Moolenaar15142e22018-04-30 22:19:58 +0200733 " set the title of the current quickfix list
734 :call setqflist([], 'a', {'title' : 'Mytitle'})
735
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100736 " change the current entry in the list specified by an identifier
737 :call setqflist([], 'a', {'id' : qfid, 'idx' : 10})
738
Bram Moolenaar15142e22018-04-30 22:19:58 +0200739 " set the context of a quickfix list specified by an identifier
740 :call setqflist([], 'a', {'id' : qfid, 'context' : {'val' : 100}})
741
742 " create a new quickfix list from a command output
743 :call setqflist([], ' ', {'lines' : systemlist('grep -Hn main *.c')})
744
745 " parse text using a custom efm and add to a particular quickfix list
746 :call setqflist([], 'a', {'id' : qfid,
747 \ 'lines' : ["a.c#10#L10", "b.c#20#L20"], 'efm':'%f#%l#%m'})
748
749 " add items to the quickfix list specified by an identifier
750 :let newItems = [{'filename' : 'a.txt', 'lnum' : 10, 'text' : "Apple"},
751 \ {'filename' : 'b.txt', 'lnum' : 20, 'text' : "Orange"}]
752 :call setqflist([], 'a', {'id' : qfid, 'items' : newItems})
753
Bram Moolenaar78ddc062018-05-15 21:56:34 +0200754 " empty a quickfix list specified by an identifier
755 :call setqflist([], 'r', {'id' : qfid, 'items' : []})
756
Bram Moolenaar15142e22018-04-30 22:19:58 +0200757 " free all the quickfix lists in the stack
758 :call setqflist([], 'f')
759
760 " set the title of the fourth quickfix list
761 :call setqflist([], 'a', {'nr' : 4, 'title' : 'SomeTitle'})
762
763 " create a new quickfix list at the end of the stack
764 :call setqflist([], ' ', {'nr' : '$',
765 \ 'lines' : systemlist('grep -Hn class *.java')})
766
767 " create a new location list from a command output
768 :call setloclist(0, [], ' ', {'lines' : systemlist('grep -Hn main *.c')})
769
770 " replace the location list entries for the third window
771 :call setloclist(3, [], 'r', {'items' : newItems})
772<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773=============================================================================
7743. Using more than one list of errors *quickfix-error-lists*
775
776So far has been assumed that there is only one list of errors. Actually the
777ten last used lists are remembered. When starting a new list, the previous
778ones are automatically kept. Two commands can be used to access older error
779lists. They set one of the existing error lists as the current one.
780
781 *:colder* *:col* *E380*
782:col[der] [count] Go to older error list. When [count] is given, do
783 this [count] times. When already at the oldest error
784 list, an error message is given.
785
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000786 *:lolder* *:lol*
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200787:lol[der] [count] Same as `:colder`, except use the location list for
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000788 the current window instead of the quickfix list.
789
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 *:cnewer* *:cnew* *E381*
791:cnew[er] [count] Go to newer error list. When [count] is given, do
792 this [count] times. When already at the newest error
793 list, an error message is given.
794
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000795 *:lnewer* *:lnew*
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200796:lnew[er] [count] Same as `:cnewer`, except use the location list for
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000797 the current window instead of the quickfix list.
798
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200799 *:chistory* *:chi*
800:chi[story] Show the list of error lists. The current list is
801 marked with ">". The output looks like:
802 error list 1 of 3; 43 errors ~
803 > error list 2 of 3; 0 errors ~
804 error list 3 of 3; 15 errors ~
805
806 *:lhistory* *:lhi*
807:lhi[story] Show the list of location lists, otherwise like
808 `:chistory`.
809
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810When adding a new error list, it becomes the current list.
811
812When ":colder" has been used and ":make" or ":grep" is used to add a new error
813list, one newer list is overwritten. This is especially useful if you are
814browsing with ":grep" |grep|. If you want to keep the more recent error
815lists, use ":cnewer 99" first.
816
Bram Moolenaar74240d32017-12-10 15:26:15 +0100817To get the number of lists in the quickfix and location list stack, you can
818use the |getqflist()| and |getloclist()| functions respectively with the list
819number set to the special value '$'. Examples: >
820 echo getqflist({'nr' : '$'}).nr
821 echo getloclist(3, {'nr' : '$'}).nr
822To get the number of the current list in the stack: >
823 echo getqflist({'nr' : 0}).nr
824<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825=============================================================================
8264. Using :make *:make_makeprg*
827
828 *:mak* *:make*
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100829:mak[e][!] [arguments] 1. All relevant |QuickFixCmdPre| autocommands are
830 executed.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000831 2. If the 'autowrite' option is on, write any changed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 buffers
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000833 3. An errorfile name is made from 'makeef'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 'makeef' doesn't contain "##", and a file with this
835 name already exists, it is deleted.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000836 4. The program given with the 'makeprg' option is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 started (default "make") with the optional
838 [arguments] and the output is saved in the
839 errorfile (for Unix it is also echoed on the
840 screen).
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000841 5. The errorfile is read using 'errorformat'.
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100842 6. All relevant |QuickFixCmdPost| autocommands are
843 executed. See example below.
Bram Moolenaar6b803a72007-05-06 14:25:46 +0000844 7. If [!] is not given the first error is jumped to.
845 8. The errorfile is deleted.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000846 9. You can now move through the errors with commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 like |:cnext| and |:cprevious|, see above.
848 This command does not accept a comment, any "
849 characters are considered part of the arguments.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100850 If the encoding of the program output differs from the
851 'encoding' option, you can use the 'makeencoding'
852 option to specify the encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +0000854 *:lmak* *:lmake*
855:lmak[e][!] [arguments]
856 Same as ":make", except the location list for the
857 current window is used instead of the quickfix list.
858
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859The ":make" command executes the command given with the 'makeprg' option.
860This is done by passing the command to the shell given with the 'shell'
861option. This works almost like typing
862
863 ":!{makeprg} [arguments] {shellpipe} {errorfile}".
864
865{makeprg} is the string given with the 'makeprg' option. Any command can be
866used, not just "make". Characters '%' and '#' are expanded as usual on a
867command-line. You can use "%<" to insert the current file name without
868extension, or "#<" to insert the alternate file name without extension, for
869example: >
870 :set makeprg=make\ #<.o
871
872[arguments] is anything that is typed after ":make".
873{shellpipe} is the 'shellpipe' option.
874{errorfile} is the 'makeef' option, with ## replaced to make it unique.
875
Bram Moolenaar6dfc28b2010-02-11 14:19:15 +0100876The placeholder "$*" can be used for the argument list in {makeprg} if the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877command needs some additional characters after its arguments. The $* is
878replaced then by all arguments. Example: >
879 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*}
880or simpler >
881 :let &mp = 'latex \\nonstopmode \\input\{$*}'
882"$*" can be given multiple times, for example: >
883 :set makeprg=gcc\ -o\ $*\ $*
884
885The 'shellpipe' option defaults to ">" for the Amiga, MS-DOS and Win32. This
886means that the output of the compiler is saved in a file and not shown on the
887screen directly. For Unix "| tee" is used. The compiler output is shown on
888the screen and saved in a file the same time. Depending on the shell used
889"|& tee" or "2>&1| tee" is the default, so stderr output will be included.
890
891If 'shellpipe' is empty, the {errorfile} part will be omitted. This is useful
892for compilers that write to an errorfile themselves (e.g., Manx's Amiga C).
893
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000894
895Using QuickFixCmdPost to fix the encoding ~
896
897It may be that 'encoding' is set to an encoding that differs from the messages
898your build program produces. This example shows how to fix this after Vim has
899read the error messages: >
900
901 function QfMakeConv()
902 let qflist = getqflist()
903 for i in qflist
904 let i.text = iconv(i.text, "cp936", "utf-8")
905 endfor
906 call setqflist(qflist)
907 endfunction
908
909 au QuickfixCmdPost make call QfMakeConv()
910
911(Example by Faque Cheng)
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100912Another option is using 'makeencoding'.
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000913
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914==============================================================================
Bram Moolenaar86b68352004-12-27 21:59:20 +00009155. Using :vimgrep and :grep *grep* *lid*
916
917Vim has two ways to find matches for a pattern: Internal and external. The
918advantage of the internal grep is that it works on all systems and uses the
919powerful Vim search patterns. An external grep program can be used when the
920Vim grep does not do what you want.
921
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000922The internal method will be slower, because files are read into memory. The
923advantages are:
924- Line separators and encoding are automatically recognized, as if a file is
925 being edited.
926- Uses Vim search patterns. Multi-line patterns can be used.
927- When plugins are enabled: compressed and remote files can be searched.
928 |gzip| |netrw|
Bram Moolenaara3227e22006-03-08 21:32:40 +0000929
930To be able to do this Vim loads each file as if it is being edited. When
Bram Moolenaar1056d982006-03-09 22:37:52 +0000931there is no match in the file the associated buffer is wiped out again. The
Bram Moolenaara3227e22006-03-08 21:32:40 +0000932'hidden' option is ignored here to avoid running out of memory or file
933descriptors when searching many files. However, when the |:hide| command
934modifier is used the buffers are kept loaded. This makes following searches
935in the same files a lot faster.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000936
Bram Moolenaar483c5d82010-10-20 18:45:33 +0200937Note that |:copen| (or |:lopen| for |:lgrep|) may be used to open a buffer
938containing the search results in linked form. The |:silent| command may be
Bram Moolenaard58e9292011-02-09 17:07:58 +0100939used to suppress the default full screen grep output. The ":grep!" form of
Bram Moolenaar483c5d82010-10-20 18:45:33 +0200940the |:grep| command doesn't jump to the first match automatically. These
941commands can be combined to create a NewGrep command: >
942
943 command! -nargs=+ NewGrep execute 'silent grep! <args>' | copen 42
944
Bram Moolenaar86b68352004-12-27 21:59:20 +0000945
9465.1 using Vim's internal grep
947
Bram Moolenaare49b69a2005-01-08 16:11:57 +0000948 *:vim* *:vimgrep* *E682* *E683*
Bram Moolenaar05159a02005-02-26 23:04:13 +0000949:vim[grep][!] /{pattern}/[g][j] {file} ...
Bram Moolenaar86b68352004-12-27 21:59:20 +0000950 Search for {pattern} in the files {file} ... and set
Bram Moolenaar30b65812012-07-12 22:01:11 +0200951 the error list to the matches. Files matching
952 'wildignore' are ignored; files in 'suffixes' are
953 searched last.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000954 Without the 'g' flag each line is added only once.
955 With 'g' every match is added.
956
957 {pattern} is a Vim search pattern. Instead of
958 enclosing it in / any non-ID character (see
959 |'isident'|) can be used, so long as it does not
960 appear in {pattern}.
961 'ignorecase' applies. To overrule it put |/\c| in the
962 pattern to ignore case or |/\C| to match case.
963 'smartcase' is not used.
Bram Moolenaar60abe752013-03-07 16:32:54 +0100964 If {pattern} is empty (e.g. // is specified), the last
965 used search pattern is used. |last-pattern|
Bram Moolenaarba3ff532018-11-04 14:45:49 +0100966:{count}vim[grep] ...
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000967 When a number is put before the command this is used
968 as the maximum number of matches to find. Use
969 ":1vimgrep pattern file" to find only the first.
970 Useful if you only want to check if there is a match
971 and quit quickly when it's found.
972
Bram Moolenaar05159a02005-02-26 23:04:13 +0000973 Without the 'j' flag Vim jumps to the first match.
974 With 'j' only the quickfix list is updated.
975 With the [!] any changes in the current buffer are
976 abandoned.
977
Bram Moolenaardcaf10e2005-01-21 11:55:25 +0000978 Every second or so the searched file name is displayed
979 to give you an idea of the progress made.
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000980 Examples: >
981 :vimgrep /an error/ *.c
982 :vimgrep /\<FileName\>/ *.h include/*
Bram Moolenaar231334e2005-07-25 20:46:57 +0000983 :vimgrep /myfunc/ **/*.c
984< For the use of "**" see |starstar-wildcard|.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000985
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000986:vim[grep][!] {pattern} {file} ...
987 Like above, but instead of enclosing the pattern in a
988 non-ID character use a white-separated pattern. The
989 pattern must start with an ID character.
990 Example: >
991 :vimgrep Error *.c
992<
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +0000993 *:lv* *:lvimgrep*
994:lv[imgrep][!] /{pattern}/[g][j] {file} ...
995:lv[imgrep][!] {pattern} {file} ...
996 Same as ":vimgrep", except the location list for the
997 current window is used instead of the quickfix list.
998
Bram Moolenaar86b68352004-12-27 21:59:20 +0000999 *:vimgrepa* *:vimgrepadd*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001000:vimgrepa[dd][!] /{pattern}/[g][j] {file} ...
1001:vimgrepa[dd][!] {pattern} {file} ...
Bram Moolenaar86b68352004-12-27 21:59:20 +00001002 Just like ":vimgrep", but instead of making a new list
1003 of errors the matches are appended to the current
1004 list.
1005
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +00001006 *:lvimgrepa* *:lvimgrepadd*
1007:lvimgrepa[dd][!] /{pattern}/[g][j] {file} ...
1008:lvimgrepa[dd][!] {pattern} {file} ...
1009 Same as ":vimgrepadd", except the location list for
1010 the current window is used instead of the quickfix
1011 list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00001012
10135.2 External grep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014
1015Vim can interface with "grep" and grep-like programs (such as the GNU
1016id-utils) in a similar way to its compiler integration (see |:make| above).
1017
1018[Unix trivia: The name for the Unix "grep" command comes from ":g/re/p", where
1019"re" stands for Regular Expression.]
1020
1021 *:gr* *:grep*
1022:gr[ep][!] [arguments] Just like ":make", but use 'grepprg' instead of
1023 'makeprg' and 'grepformat' instead of 'errorformat'.
Bram Moolenaar86b68352004-12-27 21:59:20 +00001024 When 'grepprg' is "internal" this works like
1025 |:vimgrep|. Note that the pattern needs to be
1026 enclosed in separator characters then.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01001027 If the encoding of the program output differs from the
1028 'encoding' option, you can use the 'makeencoding'
1029 option to specify the encoding.
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +00001030
1031 *:lgr* *:lgrep*
1032:lgr[ep][!] [arguments] Same as ":grep", except the location list for the
1033 current window is used instead of the quickfix list.
1034
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 *:grepa* *:grepadd*
1036:grepa[dd][!] [arguments]
1037 Just like ":grep", but instead of making a new list of
1038 errors the matches are appended to the current list.
1039 Example: >
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001040 :call setqflist([])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041 :bufdo grepadd! something %
1042< The first command makes a new error list which is
1043 empty. The second command executes "grepadd" for each
1044 listed buffer. Note the use of ! to avoid that
1045 ":grepadd" jumps to the first error, which is not
1046 allowed with |:bufdo|.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001047 An example that uses the argument list and avoids
1048 errors for files without matches: >
1049 :silent argdo try
1050 \ | grepadd! something %
1051 \ | catch /E480:/
1052 \ | endtry"
1053<
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01001054 If the encoding of the program output differs from the
1055 'encoding' option, you can use the 'makeencoding'
1056 option to specify the encoding.
1057
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +00001058 *:lgrepa* *:lgrepadd*
1059:lgrepa[dd][!] [arguments]
1060 Same as ":grepadd", except the location list for the
1061 current window is used instead of the quickfix list.
1062
Bram Moolenaar86b68352004-12-27 21:59:20 +000010635.3 Setting up external grep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064
1065If you have a standard "grep" program installed, the :grep command may work
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001066well with the defaults. The syntax is very similar to the standard command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067
1068 :grep foo *.c
1069
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001070Will search all files with the .c extension for the substring "foo". The
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071arguments to :grep are passed straight to the "grep" program, so you can use
1072whatever options your "grep" supports.
1073
1074By default, :grep invokes grep with the -n option (show file and line
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001075numbers). You can change this with the 'grepprg' option. You will need to set
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076'grepprg' if:
1077
1078a) You are using a program that isn't called "grep"
1079b) You have to call grep with a full path
1080c) You want to pass other options automatically (e.g. case insensitive
1081 search.)
1082
1083Once "grep" has executed, Vim parses the results using the 'grepformat'
1084option. This option works in the same way as the 'errorformat' option - see
1085that for details. You may need to change 'grepformat' from the default if
1086your grep outputs in a non-standard format, or you are using some other
1087program with a special format.
1088
1089Once the results are parsed, Vim loads the first file containing a match and
1090jumps to the appropriate line, in the same way that it jumps to a compiler
1091error in |quickfix| mode. You can then use the |:cnext|, |:clist|, etc.
1092commands to see the other matches.
1093
1094
Bram Moolenaar86b68352004-12-27 21:59:20 +000010955.4 Using :grep with id-utils
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096
1097You can set up :grep to work with the GNU id-utils like this: >
1098
1099 :set grepprg=lid\ -Rgrep\ -s
1100 :set grepformat=%f:%l:%m
1101
1102then >
1103 :grep (regexp)
1104
1105works just as you'd expect.
1106(provided you remembered to mkid first :)
1107
1108
Bram Moolenaar86b68352004-12-27 21:59:20 +000011095.5 Browsing source code with :vimgrep or :grep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110
1111Using the stack of error lists that Vim keeps, you can browse your files to
1112look for functions and the functions they call. For example, suppose that you
1113have to add an argument to the read_file() function. You enter this command: >
1114
Bram Moolenaar86b68352004-12-27 21:59:20 +00001115 :vimgrep /\<read_file\>/ *.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116
1117You use ":cn" to go along the list of matches and add the argument. At one
1118place you have to get the new argument from a higher level function msg(), and
1119need to change that one too. Thus you use: >
1120
Bram Moolenaar86b68352004-12-27 21:59:20 +00001121 :vimgrep /\<msg\>/ *.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122
1123While changing the msg() functions, you find another function that needs to
Bram Moolenaar86b68352004-12-27 21:59:20 +00001124get the argument from a higher level. You can again use ":vimgrep" to find
1125these functions. Once you are finished with one function, you can use >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126
1127 :colder
1128
1129to go back to the previous one.
1130
Bram Moolenaar86b68352004-12-27 21:59:20 +00001131This works like browsing a tree: ":vimgrep" goes one level deeper, creating a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132list of branches. ":colder" goes back to the previous level. You can mix
Bram Moolenaar86b68352004-12-27 21:59:20 +00001133this use of ":vimgrep" and "colder" to browse all the locations in a tree-like
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134way. If you do this consistently, you will find all locations without the
1135need to write down a "todo" list.
1136
1137=============================================================================
11386. Selecting a compiler *compiler-select*
1139
1140 *:comp* *:compiler* *E666*
1141:comp[iler][!] {name} Set options to work with compiler {name}.
1142 Without the "!" options are set for the
1143 current buffer. With "!" global options are
1144 set.
1145 If you use ":compiler foo" in "file.foo" and
1146 then ":compiler! bar" in another buffer, Vim
1147 will keep on using "foo" in "file.foo".
1148 {not available when compiled without the
1149 |+eval| feature}
1150
1151
1152The Vim plugins in the "compiler" directory will set options to use the
Bram Moolenaar25de4c22016-11-06 14:48:06 +01001153selected compiler. For `:compiler` local options are set, for `:compiler!`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154global options.
1155 *current_compiler*
1156To support older Vim versions, the plugins always use "current_compiler" and
1157not "b:current_compiler". What the command actually does is the following:
1158
1159- Delete the "current_compiler" and "b:current_compiler" variables.
1160- Define the "CompilerSet" user command. With "!" it does ":set", without "!"
1161 it does ":setlocal".
1162- Execute ":runtime! compiler/{name}.vim". The plugins are expected to set
1163 options with "CompilerSet" and set the "current_compiler" variable to the
1164 name of the compiler.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001165- Delete the "CompilerSet" user command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166- Set "b:current_compiler" to the value of "current_compiler".
1167- Without "!" the old value of "current_compiler" is restored.
1168
1169
1170For writing a compiler plugin, see |write-compiler-plugin|.
1171
1172
Bram Moolenaarbae0c162007-05-10 19:30:25 +00001173GCC *quickfix-gcc* *compiler-gcc*
1174
1175There's one variable you can set for the GCC compiler:
1176
1177g:compiler_gcc_ignore_unmatched_lines
1178 Ignore lines that don't match any patterns
1179 defined for GCC. Useful if output from
1180 commands run from make are generating false
1181 positives.
1182
1183
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184MANX AZTEC C *quickfix-manx* *compiler-manx*
1185
1186To use Vim with Manx's Aztec C compiler on the Amiga you should do the
1187following:
1188- Set the CCEDIT environment variable with the command: >
1189 mset "CCEDIT=vim -q"
1190- Compile with the -qf option. If the compiler finds any errors, Vim is
1191 started and the cursor is positioned on the first error. The error message
1192 will be displayed on the last line. You can go to other errors with the
1193 commands mentioned above. You can fix the errors and write the file(s).
1194- If you exit Vim normally the compiler will re-compile the same file. If you
1195 exit with the :cq command, the compiler will terminate. Do this if you
1196 cannot fix the error, or if another file needs to be compiled first.
1197
1198There are some restrictions to the Quickfix mode on the Amiga. The
1199compiler only writes the first 25 errors to the errorfile (Manx's
1200documentation does not say how to get more). If you want to find the others,
1201you will have to fix a few errors and exit the editor. After recompiling,
1202up to 25 remaining errors will be found.
1203
1204If Vim was started from the compiler, the :sh and some :! commands will not
1205work, because Vim is then running in the same process as the compiler and
1206stdin (standard input) will not be interactive.
1207
1208
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001209PERL *quickfix-perl* *compiler-perl*
1210
1211The Perl compiler plugin doesn't actually compile, but invokes Perl's internal
1212syntax checking feature and parses the output for possible errors so you can
1213correct them in quick-fix mode.
1214
1215Warnings are forced regardless of "no warnings" or "$^W = 0" within the file
1216being checked. To disable this set g:perl_compiler_force_warnings to a zero
1217value. For example: >
1218 let g:perl_compiler_force_warnings = 0
1219
1220
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221PYUNIT COMPILER *compiler-pyunit*
1222
1223This is not actually a compiler, but a unit testing framework for the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001224Python language. It is included into standard Python distribution
1225starting from version 2.0. For older versions, you can get it from
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226http://pyunit.sourceforge.net.
1227
1228When you run your tests with the help of the framework, possible errors
1229are parsed by Vim and presented for you in quick-fix mode.
1230
1231Unfortunately, there is no standard way to run the tests.
1232The alltests.py script seems to be used quite often, that's all.
1233Useful values for the 'makeprg' options therefore are:
1234 setlocal makeprg=./alltests.py " Run a testsuite
Bram Moolenaar26df0922014-02-23 23:39:13 +01001235 setlocal makeprg=python\ %:S " Run a single testcase
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236
1237Also see http://vim.sourceforge.net/tip_view.php?tip_id=280.
1238
1239
1240TEX COMPILER *compiler-tex*
1241
1242Included in the distribution compiler for TeX ($VIMRUNTIME/compiler/tex.vim)
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001243uses make command if possible. If the compiler finds a file named "Makefile"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244or "makefile" in the current directory, it supposes that you want to process
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001245your *TeX files with make, and the makefile does the right work. In this case
1246compiler sets 'errorformat' for *TeX output and leaves 'makeprg' untouched. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247neither "Makefile" nor "makefile" is found, the compiler will not use make.
1248You can force the compiler to ignore makefiles by defining
1249b:tex_ignore_makefile or g:tex_ignore_makefile variable (they are checked for
1250existence only).
1251
1252If the compiler chose not to use make, it need to choose a right program for
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001253processing your input. If b:tex_flavor or g:tex_flavor (in this precedence)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254variable exists, it defines TeX flavor for :make (actually, this is the name
1255of executed command), and if both variables do not exist, it defaults to
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001256"latex". For example, while editing chapter2.tex \input-ed from mypaper.tex
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257written in AMS-TeX: >
1258
1259 :let b:tex_flavor = 'amstex'
1260 :compiler tex
1261< [editing...] >
1262 :make mypaper
1263
1264Note that you must specify a name of the file to process as an argument (to
1265process the right file when editing \input-ed or \include-ed file; portable
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001266solution for substituting % for no arguments is welcome). This is not in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267semantics of make, where you specify a target, not source, but you may specify
1268filename without extension ".tex" and mean this as "make filename.dvi or
1269filename.pdf or filename.some_result_extension according to compiler".
1270
1271Note: tex command line syntax is set to usable both for MikTeX (suggestion
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001272by Srinath Avadhanula) and teTeX (checked by Artem Chuprina). Suggestion
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273from |errorformat-LaTeX| is too complex to keep it working for different
1274shells and OSes and also does not allow to use other available TeX options,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001275if any. If your TeX doesn't support "-interaction=nonstopmode", please
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276report it with different means to express \nonstopmode from the command line.
1277
1278=============================================================================
12797. The error format *error-file-format*
1280
1281 *errorformat* *E372* *E373* *E374*
1282 *E375* *E376* *E377* *E378*
1283The 'errorformat' option specifies a list of formats that are recognized. The
1284first format that matches with an error message is used. You can add several
1285formats for different messages your compiler produces, or even entries for
1286multiple compilers. See |efm-entries|.
1287
1288Each entry in 'errorformat' is a scanf-like string that describes the format.
1289First, you need to know how scanf works. Look in the documentation of your
1290C compiler. Below you find the % items that Vim understands. Others are
1291invalid.
1292
1293Special characters in 'errorformat' are comma and backslash. See
1294|efm-entries| for how to deal with them. Note that a literal "%" is matched
1295by "%%", thus it is not escaped with a backslash.
Bram Moolenaar9d98fe92013-08-03 18:35:36 +02001296Keep in mind that in the `:make` and `:grep` output all NUL characters are
1297replaced with SOH (0x01).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298
1299Note: By default the difference between upper and lowercase is ignored. If
1300you want to match case, add "\C" to the pattern |/\C|.
1301
1302
1303Basic items
1304
1305 %f file name (finds a string)
Bram Moolenaard76ce852018-05-01 15:02:04 +02001306 %o module name (finds a string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 %l line number (finds a number)
1308 %c column number (finds a number representing character
1309 column of the error, (1 <tab> == 1 character column))
1310 %v virtual column number (finds a number representing
1311 screen column of the error (1 <tab> == 8 screen
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001312 columns))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 %t error type (finds a single character)
1314 %n error number (finds a number)
1315 %m error message (finds a string)
1316 %r matches the "rest" of a single-line file message %O/P/Q
Bram Moolenaarc8734422012-06-01 22:38:45 +02001317 %p pointer line (finds a sequence of '-', '.', ' ' or
1318 tabs and uses the length for the column number)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 %*{conv} any scanf non-assignable conversion
1320 %% the single '%' character
Bram Moolenaar2641f772005-03-25 21:58:17 +00001321 %s search text (finds a string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322
Bram Moolenaare344bea2005-09-01 20:46:49 +00001323The "%f" conversion may depend on the current 'isfname' setting. "~/" is
Bram Moolenaarf4630b62005-05-20 21:31:17 +00001324expanded to the home directory and environment variables are expanded.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325
Bram Moolenaare344bea2005-09-01 20:46:49 +00001326The "%f" and "%m" conversions have to detect the end of the string. This
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001327normally happens by matching following characters and items. When nothing is
Bram Moolenaare344bea2005-09-01 20:46:49 +00001328following the rest of the line is matched. If "%f" is followed by a '%' or a
1329backslash, it will look for a sequence of 'isfname' characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330
1331On MS-DOS, MS-Windows and OS/2 a leading "C:" will be included in "%f", even
1332when using "%f:". This means that a file name which is a single alphabetical
1333letter will not be detected.
1334
1335The "%p" conversion is normally followed by a "^". It's used for compilers
1336that output a line like: >
1337 ^
1338or >
1339 ---------^
1340to indicate the column of the error. This is to be used in a multi-line error
1341message. See |errorformat-javac| for a useful example.
1342
Bram Moolenaar85eee132018-05-06 17:57:30 +02001343The "%s" conversion specifies the text to search for, to locate the error line.
Bram Moolenaar2641f772005-03-25 21:58:17 +00001344The text is used as a literal string. The anchors "^" and "$" are added to
1345the text to locate the error line exactly matching the search text and the
1346text is prefixed with the "\V" atom to make it "very nomagic". The "%s"
1347conversion can be used to locate lines without a line number in the error
1348output. Like the output of the "grep" shell command.
1349When the pattern is present the line number will not be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350
Bram Moolenaard76ce852018-05-01 15:02:04 +02001351The "%o" conversion specifies the module name in quickfix entry. If present
1352it will be used in quickfix error window instead of the filename. The module
1353name is used only for displaying purposes, the file name is used when jumping
1354to the file.
1355
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356Changing directory
1357
1358The following uppercase conversion characters specify the type of special
Bram Moolenaara9defad2018-07-08 18:20:24 +02001359format strings. At most one of them may be given as a prefix at the beginning
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360of a single comma-separated format pattern.
1361Some compilers produce messages that consist of directory names that have to
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001362be prepended to each file name read by %f (example: GNU make). The following
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363codes can be used to scan these directory names; they will be stored in an
1364internal directory stack. *E379*
1365 %D "enter directory" format string; expects a following
1366 %f that finds the directory name
1367 %X "leave directory" format string; expects following %f
1368
1369When defining an "enter directory" or "leave directory" format, the "%D" or
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001370"%X" has to be given at the start of that substring. Vim tracks the directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371changes and prepends the current directory to each erroneous file found with a
1372relative path. See |quickfix-directory-stack| for details, tips and
1373limitations.
1374
1375
1376Multi-line messages *errorformat-multi-line*
1377
1378It is possible to read the output of programs that produce multi-line
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001379messages, i.e. error strings that consume more than one line. Possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380prefixes are:
1381 %E start of a multi-line error message
1382 %W start of a multi-line warning message
1383 %I start of a multi-line informational message
1384 %A start of a multi-line message (unspecified type)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00001385 %> for next line start with current pattern again |efm-%>|
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 %C continuation of a multi-line message
1387 %Z end of a multi-line message
1388These can be used with '+' and '-', see |efm-ignore| below.
1389
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001390Using "\n" in the pattern won't work to match multi-line messages.
1391
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392Example: Your compiler happens to write out errors in the following format
1393(leading line numbers not being part of the actual output):
1394
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001395 1 Error 275 ~
1396 2 line 42 ~
1397 3 column 3 ~
1398 4 ' ' expected after '--' ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399
1400The appropriate error format string has to look like this: >
1401 :set efm=%EError\ %n,%Cline\ %l,%Ccolumn\ %c,%Z%m
1402
1403And the |:clist| error message generated for this error is:
1404
1405 1:42 col 3 error 275: ' ' expected after '--'
1406
1407Another example: Think of a Python interpreter that produces the following
1408error message (line numbers are not part of the actual output):
1409
1410 1 ==============================================================
1411 2 FAIL: testGetTypeIdCachesResult (dbfacadeTest.DjsDBFacadeTest)
1412 3 --------------------------------------------------------------
1413 4 Traceback (most recent call last):
1414 5 File "unittests/dbfacadeTest.py", line 89, in testFoo
1415 6 self.assertEquals(34, dtid)
1416 7 File "/usr/lib/python2.2/unittest.py", line 286, in
1417 8 failUnlessEqual
1418 9 raise self.failureException, \
1419 10 AssertionError: 34 != 33
1420 11
1421 12 --------------------------------------------------------------
1422 13 Ran 27 tests in 0.063s
1423
1424Say you want |:clist| write the relevant information of this message only,
1425namely:
1426 5 unittests/dbfacadeTest.py:89: AssertionError: 34 != 33
1427
1428Then the error format string could be defined as follows: >
1429 :set efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%m
1430
1431Note that the %C string is given before the %A here: since the expression
1432' %.%#' (which stands for the regular expression ' .*') matches every line
1433starting with a space, followed by any characters to the end of the line,
1434it also hides line 7 which would trigger a separate error message otherwise.
1435Error format strings are always parsed pattern by pattern until the first
1436match occurs.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00001437 *efm-%>*
1438The %> item can be used to avoid trying patterns that appear earlier in
1439'errorformat'. This is useful for patterns that match just about anything.
1440For example, if the error looks like this:
1441
1442 Error in line 123 of foo.c: ~
1443 unknown variable "i" ~
1444
1445This can be found with: >
1446 :set efm=xxx,%E%>Error in line %l of %f:,%Z%m
1447Where "xxx" has a pattern that would also match the second line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001449Important: There is no memory of what part of the errorformat matched before;
1450every line in the error file gets a complete new run through the error format
1451lines. For example, if one has: >
1452 setlocal efm=aa,bb,cc,dd,ee
1453Where aa, bb, etc. are error format strings. Each line of the error file will
1454be matched to the pattern aa, then bb, then cc, etc. Just because cc matched
1455the previous error line does _not_ mean that dd will be tried first on the
1456current line, even if cc and dd are multi-line errorformat strings.
1457
1458
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459
1460Separate file name *errorformat-separate-filename*
1461
1462These prefixes are useful if the file name is given once and multiple messages
1463follow that refer to this file name.
1464 %O single-line file message: overread the matched part
1465 %P single-line file message: push file %f onto the stack
1466 %Q single-line file message: pop the last file from stack
1467
1468Example: Given a compiler that produces the following error logfile (without
1469leading line numbers):
1470
1471 1 [a1.tt]
1472 2 (1,17) error: ';' missing
1473 3 (21,2) warning: variable 'z' not defined
1474 4 (67,3) error: end of file found before string ended
1475 5
1476 6 [a2.tt]
1477 7
1478 8 [a3.tt]
1479 9 NEW compiler v1.1
1480 10 (2,2) warning: variable 'x' not defined
1481 11 (67,3) warning: 's' already defined
1482
1483This logfile lists several messages for each file enclosed in [...] which are
1484properly parsed by an error format like this: >
1485 :set efm=%+P[%f],(%l\\,%c)%*[\ ]%t%*[^:]:\ %m,%-Q
1486
1487A call of |:clist| writes them accordingly with their correct filenames:
1488
1489 2 a1.tt:1 col 17 error: ';' missing
1490 3 a1.tt:21 col 2 warning: variable 'z' not defined
1491 4 a1.tt:67 col 3 error: end of file found before string ended
1492 8 a3.tt:2 col 2 warning: variable 'x' not defined
1493 9 a3.tt:67 col 3 warning: 's' already defined
1494
1495Unlike the other prefixes that all match against whole lines, %P, %Q and %O
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001496can be used to match several patterns in the same line. Thus it is possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497to parse even nested files like in the following line:
1498 {"file1" {"file2" error1} error2 {"file3" error3 {"file4" error4 error5}}}
1499The %O then parses over strings that do not contain any push/pop file name
1500information. See |errorformat-LaTeX| for an extended example.
1501
1502
1503Ignoring and using whole messages *efm-ignore*
1504
1505The codes '+' or '-' can be combined with the uppercase codes above; in that
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001506case they have to precede the letter, e.g. '%+A' or '%-G':
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 %- do not include the matching multi-line in any output
1508 %+ include the whole matching line in the %m error string
1509
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001510One prefix is only useful in combination with '+' or '-', namely %G. It parses
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511over lines containing general information like compiler version strings or
1512other headers that can be skipped.
1513 %-G ignore this message
1514 %+G general message
1515
1516
1517Pattern matching
1518
1519The scanf()-like "%*[]" notation is supported for backward-compatibility
1520with previous versions of Vim. However, it is also possible to specify
1521(nearly) any Vim supported regular expression in format strings.
1522Since meta characters of the regular expression language can be part of
1523ordinary matching strings or file names (and therefore internally have to
1524be escaped), meta symbols have to be written with leading '%':
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001525 %\ The single '\' character. Note that this has to be
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 escaped ("%\\") in ":set errorformat=" definitions.
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001527 %. The single '.' character.
1528 %# The single '*'(!) character.
1529 %^ The single '^' character. Note that this is not
1530 useful, the pattern already matches start of line.
1531 %$ The single '$' character. Note that this is not
1532 useful, the pattern already matches end of line.
1533 %[ The single '[' character for a [] character range.
1534 %~ The single '~' character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535When using character classes in expressions (see |/\i| for an overview),
1536terms containing the "\+" quantifier can be written in the scanf() "%*"
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001537notation. Example: "%\\d%\\+" ("\d\+", "any number") is equivalent to "%*\\d".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538Important note: The \(...\) grouping of sub-matches can not be used in format
1539specifications because it is reserved for internal conversions.
1540
1541
1542Multiple entries in 'errorformat' *efm-entries*
1543
1544To be able to detect output from several compilers, several format patterns
1545may be put in 'errorformat', separated by commas (note: blanks after the comma
1546are ignored). The first pattern that has a complete match is used. If no
1547match is found, matching parts from the last one will be used, although the
1548file name is removed and the error message is set to the whole message. If
1549there is a pattern that may match output from several compilers (but not in a
1550right way), put it after one that is more restrictive.
1551
1552To include a comma in a pattern precede it with a backslash (you have to type
1553two in a ":set" command). To include a backslash itself give two backslashes
1554(you have to type four in a ":set" command). You also need to put a backslash
1555before a space for ":set".
1556
1557
1558Valid matches *quickfix-valid*
1559
1560If a line does not completely match one of the entries in 'errorformat', the
1561whole line is put in the error message and the entry is marked "not valid"
1562These lines are skipped with the ":cn" and ":cp" commands (unless there is
1563no valid line at all). You can use ":cl!" to display all the error messages.
1564
1565If the error format does not contain a file name Vim cannot switch to the
1566correct file. You will have to do this by hand.
1567
1568
1569Examples
1570
1571The format of the file from the Amiga Aztec compiler is:
1572
1573 filename>linenumber:columnnumber:errortype:errornumber:errormessage
1574
1575 filename name of the file in which the error was detected
1576 linenumber line number where the error was detected
1577 columnnumber column number where the error was detected
1578 errortype type of the error, normally a single 'E' or 'W'
1579 errornumber number of the error (for lookup in the manual)
1580 errormessage description of the error
1581
1582This can be matched with this 'errorformat' entry:
1583 %f>%l:%c:%t:%n:%m
1584
1585Some examples for C compilers that produce single-line error outputs:
1586%f:%l:\ %t%*[^0123456789]%n:\ %m for Manx/Aztec C error messages
1587 (scanf() doesn't understand [0-9])
1588%f\ %l\ %t%*[^0-9]%n:\ %m for SAS C
1589\"%f\"\\,%*[^0-9]%l:\ %m for generic C compilers
1590%f:%l:\ %m for GCC
1591%f:%l:\ %m,%Dgmake[%*\\d]:\ Entering\ directory\ `%f',
1592%Dgmake[%*\\d]:\ Leaving\ directory\ `%f'
1593 for GCC with gmake (concat the lines!)
1594%f(%l)\ :\ %*[^:]:\ %m old SCO C compiler (pre-OS5)
1595%f(%l)\ :\ %t%*[^0-9]%n:\ %m idem, with error type and number
1596%f:%l:\ %m,In\ file\ included\ from\ %f:%l:,\^I\^Ifrom\ %f:%l%m
1597 for GCC, with some extras
1598
1599Extended examples for the handling of multi-line messages are given below,
1600see |errorformat-Jikes| and |errorformat-LaTeX|.
1601
1602Note the backslash in front of a space and double quote. It is required for
1603the :set command. There are two backslashes in front of a comma, one for the
1604:set command and one to avoid recognizing the comma as a separator of error
1605formats.
1606
1607
1608Filtering messages
1609
1610If you have a compiler that produces error messages that do not fit in the
1611format string, you could write a program that translates the error messages
1612into this format. You can use this program with the ":make" command by
1613changing the 'makeprg' option. For example: >
1614 :set mp=make\ \\\|&\ error_filter
1615The backslashes before the pipe character are required to avoid it to be
1616recognized as a command separator. The backslash before each space is
1617required for the set command.
1618
Bram Moolenaar5b69c222019-01-11 14:50:06 +01001619 *cfilter-plugin* *:Cfilter* *:Lfilter*
Bram Moolenaar8c5e0092018-08-21 19:22:23 +02001620If you have too many matching messages, you can use the cfilter plugin to
1621reduce the number of entries. Load the plugin with: >
1622 packadd cfilter
1623
1624Then you can use these command: >
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001625 :Cfilter[!] /{pat}/
1626 :Lfilter[!] /{pat}/
Bram Moolenaar8c5e0092018-08-21 19:22:23 +02001627
1628:Cfilter creates a new quickfix list from entries matching {pat} in the
1629current quickfix list. Both the file name and the text of the entries are
1630matched against {pat}. If ! is supplied, then entries not matching {pat} are
1631used.
1632
1633:Lfilter does the same as :Cfilter but operates on the current location list.
1634
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635=============================================================================
16368. The directory stack *quickfix-directory-stack*
1637
1638Quickfix maintains a stack for saving all used directories parsed from the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001639make output. For GNU-make this is rather simple, as it always prints the
1640absolute path of all directories it enters and leaves. Regardless if this is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641done via a 'cd' command in the makefile or with the parameter "-C dir" (change
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001642to directory before reading the makefile). It may be useful to use the switch
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643"-w" to force GNU-make to print out the working directory before and after
1644processing.
1645
1646Maintaining the correct directory is more complicated if you don't use
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001647GNU-make. AIX-make for example doesn't print any information about its
1648working directory. Then you need to enhance the makefile. In the makefile of
1649LessTif there is a command which echoes "Making {target} in {dir}". The
Bram Moolenaar6dfc28b2010-02-11 14:19:15 +01001650special problem here is that it doesn't print information on leaving the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001651directory and that it doesn't print the absolute path.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652
1653To solve the problem with relative paths and missing "leave directory"
1654messages Vim uses following algorithm:
1655
16561) Check if the given directory is a subdirectory of the current directory.
1657 If this is true, store it as the current directory.
16582) If it is not a subdir of the current directory, try if this is a
1659 subdirectory of one of the upper directories.
16603) If the directory still isn't found, it is assumed to be a subdirectory
1661 of Vim's current directory.
1662
1663Additionally it is checked for every file, if it really exists in the
1664identified directory. If not, it is searched in all other directories of the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001665directory stack (NOT the directory subtree!). If it is still not found, it is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666assumed that it is in Vim's current directory.
1667
Bram Moolenaare667c952010-07-05 22:57:59 +02001668There are limitations in this algorithm. These examples assume that make just
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669prints information about entering a directory in the form "Making all in dir".
1670
16711) Assume you have following directories and files:
1672 ./dir1
1673 ./dir1/file1.c
1674 ./file1.c
1675
1676 If make processes the directory "./dir1" before the current directory and
1677 there is an error in the file "./file1.c", you will end up with the file
1678 "./dir1/file.c" loaded by Vim.
1679
1680 This can only be solved with a "leave directory" message.
1681
16822) Assume you have following directories and files:
1683 ./dir1
1684 ./dir1/dir2
1685 ./dir2
1686
1687 You get the following:
1688
1689 Make output Directory interpreted by Vim
1690 ------------------------ ----------------------------
1691 Making all in dir1 ./dir1
1692 Making all in dir2 ./dir1/dir2
1693 Making all in dir2 ./dir1/dir2
1694
1695 This can be solved by printing absolute directories in the "enter directory"
Bram Moolenaar214641f2017-03-05 17:04:09 +01001696 message or by printing "leave directory" messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697
Bram Moolenaar06b5d512010-05-22 15:37:44 +02001698To avoid this problem, ensure to print absolute directory names and "leave
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699directory" messages.
1700
1701Examples for Makefiles:
1702
1703Unix:
1704 libs:
1705 for dn in $(LIBDIRS); do \
1706 (cd $$dn; echo "Entering dir '$$(pwd)'"; make); \
1707 echo "Leaving dir"; \
1708 done
1709
1710Add
1711 %DEntering\ dir\ '%f',%XLeaving\ dir
1712to your 'errorformat' to handle the above output.
1713
1714Note that Vim doesn't check if the directory name in a "leave directory"
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001715messages is the current directory. This is why you could just use the message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716"Leaving dir".
1717
1718=============================================================================
17199. Specific error file formats *errorformats*
1720
1721 *errorformat-Jikes*
1722Jikes(TM), a source-to-bytecode Java compiler published by IBM Research,
1723produces simple multi-line error messages.
1724
1725An 'errorformat' string matching the produced messages is shown below.
1726The following lines can be placed in the user's |vimrc| to overwrite Vim's
1727recognized default formats, or see |:set+=| how to install this format
1728additionally to the default. >
1729
1730 :set efm=%A%f:%l:%c:%*\\d:%*\\d:,
1731 \%C%*\\s%trror:%m,
1732 \%+C%*[^:]%trror:%m,
1733 \%C%*\\s%tarning:%m,
1734 \%C%m
1735<
1736Jikes(TM) produces a single-line error message when invoked with the option
1737"+E", and can be matched with the following: >
1738
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001739 :setl efm=%f:%l:%v:%*\\d:%*\\d:%*\\s%m
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740<
1741 *errorformat-javac*
1742This 'errorformat' has been reported to work well for javac, which outputs a
1743line with "^" to indicate the column of the error: >
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001744 :setl efm=%A%f:%l:\ %m,%-Z%p^,%-C%.%#
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745or: >
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001746 :setl efm=%A%f:%l:\ %m,%+Z%p^,%+C%.%#,%-G%.%#
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747<
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001748Here is an alternative from Michael F. Lamb for Unix that filters the errors
1749first: >
1750 :setl errorformat=%Z%f:%l:\ %m,%A%p^,%-G%*[^sl]%.%#
Bram Moolenaar26df0922014-02-23 23:39:13 +01001751 :setl makeprg=javac\ %:S\ 2>&1\ \\\|\ vim-javac-filter
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001752
1753You need to put the following in "vim-javac-filter" somewhere in your path
1754(e.g., in ~/bin) and make it executable: >
1755 #!/bin/sed -f
1756 /\^$/s/\t/\ /g;/:[0-9]\+:/{h;d};/^[ \t]*\^/G;
1757
1758In English, that sed script:
1759- Changes single tabs to single spaces and
1760- Moves the line with the filename, line number, error message to just after
1761 the pointer line. That way, the unused error text between doesn't break
1762 vim's notion of a "multi-line message" and also doesn't force us to include
1763 it as a "continuation of a multi-line message."
1764
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 *errorformat-ant*
1766For ant (http://jakarta.apache.org/) the above errorformat has to be modified
1767to honour the leading [javac] in front of each javac output line: >
1768 :set efm=%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%#
1769
1770The 'errorformat' can also be configured to handle ant together with either
1771javac or jikes. If you're using jikes, you should tell ant to use jikes' +E
1772command line switch which forces jikes to generate one-line error messages.
1773This is what the second line (of a build.xml file) below does: >
1774 <property name = "build.compiler" value = "jikes"/>
1775 <property name = "build.compiler.emacs" value = "true"/>
1776
1777The 'errorformat' which handles ant with both javac and jikes is: >
1778 :set efm=\ %#[javac]\ %#%f:%l:%c:%*\\d:%*\\d:\ %t%[%^:]%#:%m,
1779 \%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%#
1780<
1781 *errorformat-jade*
1782parsing jade (see http://www.jclark.com/) errors is simple: >
1783 :set efm=jade:%f:%l:%c:%t:%m
1784<
1785 *errorformat-LaTeX*
1786The following is an example how an 'errorformat' string can be specified
1787for the (La)TeX typesetting system which displays error messages over
1788multiple lines. The output of ":clist" and ":cc" etc. commands displays
1789multi-lines in a single line, leading white space is removed.
1790It should be easy to adopt the above LaTeX errorformat to any compiler output
1791consisting of multi-line errors.
1792
1793The commands can be placed in a |vimrc| file or some other Vim script file,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001794e.g. a script containing LaTeX related stuff which is loaded only when editing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795LaTeX sources.
1796Make sure to copy all lines of the example (in the given order), afterwards
1797remove the comment lines. For the '\' notation at the start of some lines see
1798|line-continuation|.
1799
1800 First prepare 'makeprg' such that LaTeX will report multiple
1801 errors; do not stop when the first error has occurred: >
1802 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*}
1803<
1804 Start of multi-line error messages: >
1805 :set efm=%E!\ LaTeX\ %trror:\ %m,
1806 \%E!\ %m,
1807< Start of multi-line warning messages; the first two also
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001808 include the line number. Meaning of some regular expressions:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 - "%.%#" (".*") matches a (possibly empty) string
1810 - "%*\\d" ("\d\+") matches a number >
1811 \%+WLaTeX\ %.%#Warning:\ %.%#line\ %l%.%#,
1812 \%+W%.%#\ at\ lines\ %l--%*\\d,
1813 \%WLaTeX\ %.%#Warning:\ %m,
1814< Possible continuations of error/warning messages; the first
1815 one also includes the line number: >
1816 \%Cl.%l\ %m,
1817 \%+C\ \ %m.,
1818 \%+C%.%#-%.%#,
1819 \%+C%.%#[]%.%#,
1820 \%+C[]%.%#,
1821 \%+C%.%#%[{}\\]%.%#,
1822 \%+C<%.%#>%.%#,
1823 \%C\ \ %m,
1824< Lines that match the following patterns do not contain any
1825 important information; do not include them in messages: >
1826 \%-GSee\ the\ LaTeX%m,
1827 \%-GType\ \ H\ <return>%m,
1828 \%-G\ ...%.%#,
1829 \%-G%.%#\ (C)\ %.%#,
1830 \%-G(see\ the\ transcript%.%#),
1831< Generally exclude any empty or whitespace-only line from
1832 being displayed: >
1833 \%-G\\s%#,
1834< The LaTeX output log does not specify the names of erroneous
1835 source files per line; rather they are given globally,
1836 enclosed in parentheses.
1837 The following patterns try to match these names and store
1838 them in an internal stack. The patterns possibly scan over
1839 the same input line (one after another), the trailing "%r"
1840 conversion indicates the "rest" of the line that will be
1841 parsed in the next go until the end of line is reached.
1842
1843 Overread a file name enclosed in '('...')'; do not push it
1844 on a stack since the file apparently does not contain any
1845 error: >
1846 \%+O(%f)%r,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001847< Push a file name onto the stack. The name is given after '(': >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 \%+P(%f%r,
1849 \%+P\ %\\=(%f%r,
1850 \%+P%*[^()](%f%r,
1851 \%+P[%\\d%[^()]%#(%f%r,
1852< Pop the last stored file name when a ')' is scanned: >
1853 \%+Q)%r,
1854 \%+Q%*[^()])%r,
1855 \%+Q[%\\d%*[^()])%r
1856
1857Note that in some cases file names in the LaTeX output log cannot be parsed
1858properly. The parser might have been messed up by unbalanced parentheses
1859then. The above example tries to catch the most relevant cases only.
1860You can customize the given setting to suit your own purposes, for example,
1861all the annoying "Overfull ..." warnings could be excluded from being
1862recognized as an error.
1863Alternatively to filtering the LaTeX compiler output, it is also possible
1864to directly read the *.log file that is produced by the [La]TeX compiler.
1865This contains even more useful information about possible error causes.
1866However, to properly parse such a complex file, an external filter should
1867be used. See the description further above how to make such a filter known
1868by Vim.
1869
1870 *errorformat-Perl*
1871In $VIMRUNTIME/tools you can find the efm_perl.pl script, which filters Perl
1872error messages into a format that quickfix mode will understand. See the
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001873start of the file about how to use it. (This script is deprecated, see
1874|compiler-perl|.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875
1876
1877
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001878 vim:tw=78:ts=8:noet:ft=help:norl: