blob: 6d9b3425090473cdc034ade21c1f12055b6d29c3 [file] [log] [blame]
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001*quickfix.txt* For Vim version 8.1. Last change: 2019 May 05
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
Bram Moolenaar071d4272004-06-13 20:20:40 +000019The quickfix commands are not available when the |+quickfix| feature was
20disabled at compile time.
21
22=============================================================================
231. Using QuickFix commands *quickfix* *Quickfix* *E42*
24
25Vim has a special mode to speedup the edit-compile-edit cycle. This is
26inspired by the quickfix option of the Manx's Aztec C compiler on the Amiga.
27The idea is to save the error messages from the compiler in a file and use Vim
28to jump to the errors one by one. You can examine each problem and fix it,
29without having to remember all the error messages.
30
Bram Moolenaar05159a02005-02-26 23:04:13 +000031In Vim the quickfix commands are used more generally to find a list of
32positions in files. For example, |:vimgrep| finds pattern matches. You can
Bram Moolenaar2641f772005-03-25 21:58:17 +000033use the positions in a script with the |getqflist()| function. Thus you can
Bram Moolenaar05159a02005-02-26 23:04:13 +000034do a lot more than the edit/compile/fix cycle!
35
Bram Moolenaare18dbe82016-07-02 21:42:23 +020036If you have the error messages in a file you can start Vim with: >
37 vim -q filename
38
39From inside Vim an easy way to run a command and handle the output is with the
40|:make| command (see below).
41
42The 'errorformat' option should be set to match the error messages from your
Bram Moolenaar071d4272004-06-13 20:20:40 +000043compiler (see |errorformat| below).
44
Bram Moolenaarb4d5fba2017-09-11 19:31:28 +020045 *quickfix-ID*
46Each quickfix list has a unique identifier called the quickfix ID and this
Bram Moolenaard473c8c2018-08-11 18:00:22 +020047number will not change within a Vim session. The |getqflist()| function can be
Bram Moolenaarb4d5fba2017-09-11 19:31:28 +020048used to get the identifier assigned to a list. There is also a quickfix list
49number which may change whenever more than ten lists are added to a quickfix
50stack.
51
Bram Moolenaard12f5c12006-01-25 22:10:52 +000052 *location-list* *E776*
Bram Moolenaar036986f2017-03-16 17:41:02 +010053A location list is a window-local quickfix list. You get one after commands
54like `:lvimgrep`, `:lgrep`, `:lhelpgrep`, `:lmake`, etc., which create a
55location list instead of a quickfix list as the corresponding `:vimgrep`,
56`:grep`, `:helpgrep`, `:make` do.
Bram Moolenaar5b69c222019-01-11 14:50:06 +010057 *location-list-file-window*
Bram Moolenaar036986f2017-03-16 17:41:02 +010058A location list is associated with a window and each window can have a
59separate location list. A location list can be associated with only one
60window. The location list is independent of the quickfix list.
Bram Moolenaard12f5c12006-01-25 22:10:52 +000061
Bram Moolenaar280f1262006-01-30 00:14:18 +000062When a window with a location list is split, the new window gets a copy of the
Bram Moolenaare18dbe82016-07-02 21:42:23 +020063location list. When there are no longer any references to a location list,
64the location list is destroyed.
Bram Moolenaar280f1262006-01-30 00:14:18 +000065
Bram Moolenaarb254af32017-12-18 19:48:58 +010066 *quickfix-changedtick*
67Every quickfix and location list has a read-only changedtick variable that
68tracks the total number of changes made to the list. Every time the quickfix
69list is modified, this count is incremented. This can be used to perform an
Bram Moolenaard473c8c2018-08-11 18:00:22 +020070action only when the list has changed. The |getqflist()| and |getloclist()|
Bram Moolenaarb254af32017-12-18 19:48:58 +010071functions can be used to query the current value of changedtick. You cannot
72change the changedtick variable.
73
Bram Moolenaar280f1262006-01-30 00:14:18 +000074The following quickfix commands can be used. The location list commands are
75similar to the quickfix commands, replacing the 'c' prefix in the quickfix
76command with 'l'.
Bram Moolenaar071d4272004-06-13 20:20:40 +000077
Bram Moolenaare18c0b32016-03-20 21:08:34 +010078 *E924*
79If the current window was closed by an |autocommand| while processing a
80location list command, it will be aborted.
81
Bram Moolenaarffec3c52016-03-23 20:55:42 +010082 *E925* *E926*
83If the current quickfix or location list was changed by an |autocommand| while
84processing a quickfix or location list command, it will be aborted.
85
Bram Moolenaar071d4272004-06-13 20:20:40 +000086 *:cc*
87:cc[!] [nr] Display error [nr]. If [nr] is omitted, the same
Bram Moolenaar25190db2019-05-04 15:05:28 +020088:[nr]cc[!] error is displayed again. Without [!] this doesn't
Bram Moolenaar071d4272004-06-13 20:20:40 +000089 work when jumping to another buffer, the current buffer
90 has been changed, there is the only window for the
91 buffer and both 'hidden' and 'autowrite' are off.
92 When jumping to another buffer with [!] any changes to
93 the current buffer are lost, unless 'hidden' is set or
94 there is another window for this buffer.
95 The 'switchbuf' settings are respected when jumping
96 to a buffer.
Bram Moolenaar25190db2019-05-04 15:05:28 +020097 When used in the quickfix window the line number can
98 be used, including "." for the current line and "$"
99 for the last line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000101 *:ll*
102:ll[!] [nr] Same as ":cc", except the location list for the
Bram Moolenaar25190db2019-05-04 15:05:28 +0200103:[nr]ll[!] current window is used instead of the quickfix list.
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000104
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105 *:cn* *:cnext* *E553*
106:[count]cn[ext][!] Display the [count] next error in the list that
107 includes a file name. If there are no file names at
108 all, go to the [count] next error. See |:cc| for
109 [!] and 'switchbuf'.
110
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000111 *:lne* *:lnext*
112:[count]lne[xt][!] Same as ":cnext", except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000113 current window is used instead of the quickfix list.
114
Bram Moolenaard09091d2019-01-17 16:07:22 +0100115:[count]cN[ext][!] *:cp* *:cprevious* *:cprev* *:cN* *:cNext*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116:[count]cp[revious][!] Display the [count] previous error in the list that
117 includes a file name. If there are no file names at
118 all, go to the [count] previous error. See |:cc| for
119 [!] and 'switchbuf'.
120
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000121
Bram Moolenaard09091d2019-01-17 16:07:22 +0100122:[count]lN[ext][!] *:lp* *:lprevious* *:lprev* *:lN* *:lNext*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000123:[count]lp[revious][!] Same as ":cNext" and ":cprevious", except the location
124 list for the current window is used instead of the
125 quickfix list.
126
Bram Moolenaar3ff33112019-05-03 21:56:35 +0200127 *:cabo* *:cabove*
128:[count]cabo[ve] Go to the [count] error above the current line in the
129 current buffer. If [count] is omitted, then 1 is
130 used. If there are no errors, then an error message
131 is displayed. Assumes that the entries in a quickfix
132 list are sorted by their buffer number and line
133 number. If there are multiple errors on the same line,
134 then only the first entry is used. If [count] exceeds
135 the number of entries above the current line, then the
136 first error in the file is selected.
137
138 *:lab* *:labove*
139:[count]lab[ove] Same as ":cabove", except the location list for the
140 current window is used instead of the quickfix list.
141
142 *:cbe* *:cbelow*
143:[count]cbe[low] Go to the [count] error below the current line in the
144 current buffer. If [count] is omitted, then 1 is
145 used. If there are no errors, then an error message
146 is displayed. Assumes that the entries in a quickfix
147 list are sorted by their buffer number and line
148 number. If there are multiple errors on the same
149 line, then only the first entry is used. If [count]
150 exceeds the number of entries below the current line,
151 then the last error in the file is selected.
152
Bram Moolenaarcf6a55c2019-05-05 15:02:30 +0200153 *:lbel* *:lbelow*
154:[count]lbel[ow] Same as ":cbelow", except the location list for the
155 current window is used instead of the quickfix list.
156
157 *:cbe* *:cbefore*
158:[count]cbe[fore] Go to the [count] error before the current cursor
159 position in the current buffer. If [count] is
160 omitted, then 1 is used. If there are no errors, then
161 an error message is displayed. Assumes that the
162 entries in a quickfix list are sorted by their buffer,
163 line and column numbers. If [count] exceeds the
164 number of entries before the current position, then
165 the first error in the file is selected.
166
167 *:lbef* *:lbefore*
168:[count]lbef[ore] Same as ":cbefore", except the location list for the
169 current window is used instead of the quickfix list.
170
171 *:caf* *:cafter*
172:[count]caf[ter] Go to the [count] error after the current cursor
173 position in the current buffer. If [count] is
174 omitted, then 1 is used. If there are no errors, then
175 an error message is displayed. Assumes that the
176 entries in a quickfix list are sorted by their buffer,
177 line and column numbers. If [count] exceeds the
178 number of entries after the current position, then
179 the last error in the file is selected.
180
181 *:laf* *:lafter*
182:[count]laf[ter] Same as ":cafter", except the location list for the
Bram Moolenaar3ff33112019-05-03 21:56:35 +0200183 current window is used instead of the quickfix list.
184
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185 *:cnf* *:cnfile*
186:[count]cnf[ile][!] Display the first error in the [count] next file in
187 the list that includes a file name. If there are no
188 file names at all or if there is no next file, go to
189 the [count] next error. See |:cc| for [!] and
190 'switchbuf'.
191
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000192 *:lnf* *:lnfile*
193:[count]lnf[ile][!] Same as ":cnfile", except the location list for the
194 current window is used instead of the quickfix list.
195
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196:[count]cNf[ile][!] *:cpf* *:cpfile* *:cNf* *:cNfile*
197:[count]cpf[ile][!] Display the last error in the [count] previous file in
198 the list that includes a file name. If there are no
199 file names at all or if there is no next file, go to
200 the [count] previous error. See |:cc| for [!] and
201 'switchbuf'.
202
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000203
204:[count]lNf[ile][!] *:lpf* *:lpfile* *:lNf* *:lNfile*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000205:[count]lpf[ile][!] Same as ":cNfile" and ":cpfile", except the location
206 list for the current window is used instead of the
207 quickfix list.
208
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209 *:crewind* *:cr*
210:cr[ewind][!] [nr] Display error [nr]. If [nr] is omitted, the FIRST
211 error is displayed. See |:cc|.
212
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000213 *:lrewind* *:lr*
214:lr[ewind][!] [nr] Same as ":crewind", except the location list for the
215 current window is used instead of the quickfix list.
216
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 *:cfirst* *:cfir*
218:cfir[st][!] [nr] Same as ":crewind".
219
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000220 *:lfirst* *:lfir*
221:lfir[st][!] [nr] Same as ":lrewind".
222
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223 *:clast* *:cla*
224:cla[st][!] [nr] Display error [nr]. If [nr] is omitted, the LAST
225 error is displayed. See |:cc|.
226
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000227 *:llast* *:lla*
228:lla[st][!] [nr] Same as ":clast", except the location list for the
229 current window is used instead of the quickfix list.
230
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 *:cq* *:cquit*
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000232:cq[uit][!] Quit Vim with an error code, so that the compiler
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 will not compile the same file again.
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000234 WARNING: All changes in files are lost! Also when the
235 [!] is not used. It works like ":qall!" |:qall|,
236 except that Vim returns a non-zero exit code.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237
238 *:cf* *:cfile*
239:cf[ile][!] [errorfile] Read the error file and jump to the first error.
240 This is done automatically when Vim is started with
241 the -q option. You can use this command when you
242 keep Vim running while compiling. If you give the
243 name of the errorfile, the 'errorfile' option will
244 be set to [errorfile]. See |:cc| for [!].
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100245 If the encoding of the error file differs from the
246 'encoding' option, you can use the 'makeencoding'
247 option to specify the encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000249 *:lf* *:lfile*
250:lf[ile][!] [errorfile] Same as ":cfile", except the location list for the
251 current window is used instead of the quickfix list.
252 You can not use the -q command-line option to set
253 the location list.
254
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000255
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000256:cg[etfile] [errorfile] *:cg* *:cgetfile*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 Read the error file. Just like ":cfile" but don't
258 jump to the first error.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100259 If the encoding of the error file differs from the
260 'encoding' option, you can use the 'makeencoding'
261 option to specify the encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000263
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000264:lg[etfile] [errorfile] *:lg* *:lgetfile*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000265 Same as ":cgetfile", except the location list for the
266 current window is used instead of the quickfix list.
267
Bram Moolenaar4770d092006-01-12 23:22:24 +0000268 *:caddf* *:caddfile*
269:caddf[ile] [errorfile] Read the error file and add the errors from the
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000270 errorfile to the current quickfix list. If a quickfix
271 list is not present, then a new list is created.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100272 If the encoding of the error file differs from the
273 'encoding' option, you can use the 'makeencoding'
274 option to specify the encoding.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000275
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000276 *:laddf* *:laddfile*
277:laddf[ile] [errorfile] Same as ":caddfile", except the location list for the
278 current window is used instead of the quickfix list.
279
Bram Moolenaar86b68352004-12-27 21:59:20 +0000280 *:cb* *:cbuffer* *E681*
Bram Moolenaar6cbce9d2007-03-08 10:01:03 +0000281:cb[uffer][!] [bufnr] Read the error list from the current buffer.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000282 When [bufnr] is given it must be the number of a
283 loaded buffer. That buffer will then be used instead
284 of the current buffer.
285 A range can be specified for the lines to be used.
286 Otherwise all lines in the buffer are used.
Bram Moolenaar6cbce9d2007-03-08 10:01:03 +0000287 See |:cc| for [!].
Bram Moolenaar86b68352004-12-27 21:59:20 +0000288
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000289 *:lb* *:lbuffer*
Bram Moolenaar6cbce9d2007-03-08 10:01:03 +0000290:lb[uffer][!] [bufnr] Same as ":cbuffer", except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000291 current window is used instead of the quickfix list.
292
Bram Moolenaardb552d602006-03-23 22:59:57 +0000293 *:cgetb* *:cgetbuffer*
294:cgetb[uffer] [bufnr] Read the error list from the current buffer. Just
295 like ":cbuffer" but don't jump to the first error.
296
297 *:lgetb* *:lgetbuffer*
298:lgetb[uffer] [bufnr] Same as ":cgetbuffer", except the location list for
299 the current window is used instead of the quickfix
300 list.
301
Bram Moolenaara6878372014-03-22 21:02:50 +0100302 *:cad* *:caddbuffer*
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100303:cad[dbuffer] [bufnr] Read the error list from the current buffer and add
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +0000304 the errors to the current quickfix list. If a
305 quickfix list is not present, then a new list is
306 created. Otherwise, same as ":cbuffer".
307
308 *:laddb* *:laddbuffer*
309:laddb[uffer] [bufnr] Same as ":caddbuffer", except the location list for
310 the current window is used instead of the quickfix
311 list.
312
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000313 *:cex* *:cexpr* *E777*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000314:cex[pr][!] {expr} Create a quickfix list using the result of {expr} and
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200315 jump to the first error.
316 If {expr} is a String, then each new-line terminated
Bram Moolenaard6357e82016-01-21 21:48:09 +0100317 line in the String is processed using the global value
318 of 'errorformat' and the result is added to the
319 quickfix list.
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200320 If {expr} is a List, then each String item in the list
321 is processed and added to the quickfix list. Non
322 String items in the List are ignored.
323 See |:cc| for [!].
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000324 Examples: >
325 :cexpr system('grep -n xyz *')
326 :cexpr getline(1, '$')
327<
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000328 *:lex* *:lexpr*
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200329:lex[pr][!] {expr} Same as |:cexpr|, except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000330 current window is used instead of the quickfix list.
331
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000332 *:cgete* *:cgetexpr*
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000333:cgete[xpr] {expr} Create a quickfix list using the result of {expr}.
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200334 Just like |:cexpr|, but don't jump to the first error.
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000335
336 *:lgete* *:lgetexpr*
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200337:lgete[xpr] {expr} Same as |:cgetexpr|, except the location list for the
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000338 current window is used instead of the quickfix list.
339
Bram Moolenaara6878372014-03-22 21:02:50 +0100340 *:cadde* *:caddexpr*
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100341:cadde[xpr] {expr} Evaluate {expr} and add the resulting lines to the
Bram Moolenaar4770d092006-01-12 23:22:24 +0000342 current quickfix list. If a quickfix list is not
343 present, then a new list is created. The current
344 cursor position will not be changed. See |:cexpr| for
345 more information.
346 Example: >
347 :g/mypattern/caddexpr expand("%") . ":" . line(".") . ":" . getline(".")
348<
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000349 *:lad* *:laddexpr*
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000350:lad[dexpr] {expr} Same as ":caddexpr", except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000351 current window is used instead of the quickfix list.
352
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 *:cl* *:clist*
354:cl[ist] [from] [, [to]]
355 List all errors that are valid |quickfix-valid|.
356 If numbers [from] and/or [to] are given, the respective
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000357 range of errors is listed. A negative number counts
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 from the last error backwards, -1 being the last error.
359 The 'switchbuf' settings are respected when jumping
360 to a buffer.
Bram Moolenaara9defad2018-07-08 18:20:24 +0200361 The |:filter| command can be used to display only the
362 quickfix entries matching a supplied pattern. The
363 pattern is matched against the filename, module name,
364 pattern and text of the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365
Bram Moolenaare8fea072016-07-01 14:48:27 +0200366:cl[ist] +{count} List the current and next {count} valid errors. This
367 is similar to ":clist from from+count", where "from"
368 is the current error position.
369
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370:cl[ist]! [from] [, [to]]
371 List all errors.
372
Bram Moolenaare8fea072016-07-01 14:48:27 +0200373:cl[ist]! +{count} List the current and next {count} error lines. This
374 is useful to see unrecognized lines after the current
375 one. For example, if ":clist" shows:
376 8384 testje.java:252: error: cannot find symbol ~
377 Then using ":cl! +3" shows the reason:
378 8384 testje.java:252: error: cannot find symbol ~
379 8385: ZexitCode = Fmainx(); ~
380 8386: ^ ~
381 8387: symbol: method Fmainx() ~
382
383:lli[st] [from] [, [to]] *:lli* *:llist*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000384 Same as ":clist", except the location list for the
385 current window is used instead of the quickfix list.
386
387:lli[st]! [from] [, [to]]
388 List all the entries in the location list for the
389 current window.
390
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391If you insert or delete lines, mostly the correct error location is still
392found because hidden marks are used. Sometimes, when the mark has been
393deleted for some reason, the message "line changed" is shown to warn you that
394the error location may not be correct. If you quit Vim and start again the
395marks are lost and the error locations may not be correct anymore.
396
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100397Two autocommands are available for running commands before and after a
398quickfix command (':make', ':grep' and so on) is executed. See
399|QuickFixCmdPre| and |QuickFixCmdPost| for details.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000400
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000401 *QuickFixCmdPost-example*
402When 'encoding' differs from the locale, the error messages may have a
403different encoding from what Vim is using. To convert the messages you can
404use this code: >
405 function QfMakeConv()
406 let qflist = getqflist()
407 for i in qflist
408 let i.text = iconv(i.text, "cp936", "utf-8")
409 endfor
410 call setqflist(qflist)
411 endfunction
412
413 au QuickfixCmdPost make call QfMakeConv()
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100414Another option is using 'makeencoding'.
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000415
Bram Moolenaar74240d32017-12-10 15:26:15 +0100416 *quickfix-title*
417Every quickfix and location list has a title. By default the title is set to
418the command that created the list. The |getqflist()| and |getloclist()|
419functions can be used to get the title of a quickfix and a location list
420respectively. The |setqflist()| and |setloclist()| functions can be used to
421modify the title of a quickfix and location list respectively. Examples: >
422 call setqflist([], 'a', {'title' : 'Cmd output'})
423 echo getqflist({'title' : 1})
424 call setloclist(3, [], 'a', {'title' : 'Cmd output'})
425 echo getloclist(3, {'title' : 1})
426<
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100427 *quickfix-index*
428When you jump to a quickfix/location list entry using any of the quickfix
Bram Moolenaard09091d2019-01-17 16:07:22 +0100429commands (e.g. |:cc|, |:cnext|, |:cprev|, etc.), that entry becomes the
430currently selected entry. The index of the currently selected entry in a
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100431quickfix/location list can be obtained using the getqflist()/getloclist()
432functions. Examples: >
433 echo getqflist({'idx' : 0}).idx
434 echo getqflist({'id' : qfid, 'idx' : 0}).idx
435 echo getloclist(2, {'idx' : 0}).idx
436<
437For a new quickfix list, the first entry is selected and the index is 1. Any
438entry in any quickfix/location list can be set as the currently selected entry
439using the setqflist() function. Examples: >
440 call setqflist([], 'a', {'idx' : 12})
441 call setqflist([], 'a', {'id' : qfid, 'idx' : 7})
442 call setloclist(1, [], 'a', {'idx' : 7})
443<
Bram Moolenaar74240d32017-12-10 15:26:15 +0100444 *quickfix-size*
445You can get the number of entries (size) in a quickfix and a location list
446using the |getqflist()| and |getloclist()| functions respectively. Examples: >
447 echo getqflist({'size' : 1})
448 echo getloclist(5, {'size' : 1})
449<
450 *quickfix-context*
451Any Vim type can be associated as a context with a quickfix or location list.
452The |setqflist()| and the |setloclist()| functions can be used to associate a
453context with a quickfix and a location list respectively. The |getqflist()|
454and the |getloclist()| functions can be used to retrieve the context of a
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100455quickfix and a location list respectively. This is useful for a Vim plugin
Bram Moolenaar74240d32017-12-10 15:26:15 +0100456dealing with multiple quickfix/location lists.
457Examples: >
458
459 let somectx = {'name' : 'Vim', 'type' : 'Editor'}
460 call setqflist([], 'a', {'context' : somectx})
461 echo getqflist({'context' : 1})
462
463 let newctx = ['red', 'green', 'blue']
464 call setloclist(2, [], 'a', {'id' : qfid, 'context' : newctx})
465 echo getloclist(2, {'id' : qfid, 'context' : 1})
466<
467 *quickfix-parse*
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100468You can parse a list of lines using 'errorformat' without creating or
469modifying a quickfix list using the |getqflist()| function. Examples: >
Bram Moolenaar74240d32017-12-10 15:26:15 +0100470 echo getqflist({'lines' : ["F1:10:Line10", "F2:20:Line20"]})
471 echo getqflist({'lines' : systemlist('grep -Hn quickfix *')})
472This returns a dictionary where the 'items' key contains the list of quickfix
473entries parsed from lines. The following shows how to use a custom
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100474'errorformat' to parse the lines without modifying the 'errorformat' option: >
Bram Moolenaar74240d32017-12-10 15:26:15 +0100475 echo getqflist({'efm' : '%f#%l#%m', 'lines' : ['F1#10#Line']})
476<
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000477
Bram Moolenaar12969c02015-09-08 23:36:10 +0200478EXECUTE A COMMAND IN ALL THE BUFFERS IN QUICKFIX OR LOCATION LIST:
479 *:cdo*
480:cdo[!] {cmd} Execute {cmd} in each valid entry in the quickfix list.
481 It works like doing this: >
482 :cfirst
483 :{cmd}
484 :cnext
485 :{cmd}
486 etc.
487< When the current file can't be |abandon|ed and the [!]
488 is not present, the command fails.
Bram Moolenaare8fea072016-07-01 14:48:27 +0200489 When an error is detected execution stops.
Bram Moolenaar12969c02015-09-08 23:36:10 +0200490 The last buffer (or where an error occurred) becomes
491 the current buffer.
492 {cmd} can contain '|' to concatenate several commands.
493
494 Only valid entries in the quickfix list are used.
495 A range can be used to select entries, e.g.: >
496 :10,$cdo cmd
497< To skip entries 1 to 9.
498
499 Note: While this command is executing, the Syntax
500 autocommand event is disabled by adding it to
501 'eventignore'. This considerably speeds up editing
502 each buffer.
Bram Moolenaar12969c02015-09-08 23:36:10 +0200503 Also see |:bufdo|, |:tabdo|, |:argdo|, |:windo|,
504 |:ldo|, |:cfdo| and |:lfdo|.
505
506 *:cfdo*
507:cfdo[!] {cmd} Execute {cmd} in each file in the quickfix list.
508 It works like doing this: >
509 :cfirst
510 :{cmd}
511 :cnfile
512 :{cmd}
513 etc.
514< Otherwise it works the same as `:cdo`.
Bram Moolenaar12969c02015-09-08 23:36:10 +0200515
516 *:ldo*
517:ld[o][!] {cmd} Execute {cmd} in each valid entry in the location list
518 for the current window.
519 It works like doing this: >
520 :lfirst
521 :{cmd}
522 :lnext
523 :{cmd}
524 etc.
525< Only valid entries in the location list are used.
526 Otherwise it works the same as `:cdo`.
Bram Moolenaar12969c02015-09-08 23:36:10 +0200527
528 *:lfdo*
529:lfdo[!] {cmd} Execute {cmd} in each file in the location list for
530 the current window.
531 It works like doing this: >
532 :lfirst
533 :{cmd}
534 :lnfile
535 :{cmd}
536 etc.
537< Otherwise it works the same as `:ldo`.
Bram Moolenaar12969c02015-09-08 23:36:10 +0200538
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539=============================================================================
5402. The error window *quickfix-window*
541
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200542 *:cope* *:copen* *w:quickfix_title*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543:cope[n] [height] Open a window to show the current list of errors.
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100544
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 When [height] is given, the window becomes that high
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100546 (if there is room). When [height] is omitted the
547 window is made ten lines high.
548
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 If there already is a quickfix window, it will be made
550 the current window. It is not possible to open a
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100551 second quickfix window. If [height] is given the
552 existing window will be resized to it.
553
Bram Moolenaar647e24b2019-03-17 16:39:46 +0100554 *quickfix-buffer*
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100555 The window will contain a special buffer, with
556 'buftype' equal to "quickfix". Don't change this!
557 The window will have the w:quickfix_title variable set
558 which will indicate the command that produced the
559 quickfix list. This can be used to compose a custom
560 status line if the value of 'statusline' is adjusted
Bram Moolenaara8788f42017-07-19 17:06:20 +0200561 properly. Whenever this buffer is modified by a
562 quickfix command or function, the |b:changedtick|
Bram Moolenaar647e24b2019-03-17 16:39:46 +0100563 variable is incremented. You can get the number of
564 this buffer using the getqflist() and getloclist()
565 functions by passing the 'qfbufnr' item. For a
566 location list, this buffer is wiped out when the
567 location list is removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000569 *:lop* *:lopen*
570:lop[en] [height] Open a window to show the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000571 current window. Works only when the location list for
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000572 the current window is present. You can have more than
573 one location window opened at a time. Otherwise, it
Bram Moolenaar280f1262006-01-30 00:14:18 +0000574 acts the same as ":copen".
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000575
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 *:ccl* *:cclose*
577:ccl[ose] Close the quickfix window.
578
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000579 *:lcl* *:lclose*
580:lcl[ose] Close the window showing the location list for the
581 current window.
582
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583 *:cw* *:cwindow*
584:cw[indow] [height] Open the quickfix window when there are recognized
585 errors. If the window is already open and there are
586 no recognized errors, close the window.
587
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000588 *:lw* *:lwindow*
589:lw[indow] [height] Same as ":cwindow", except use the window showing the
590 location list for the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591
Bram Moolenaar537ef082016-07-09 17:56:19 +0200592 *:cbo* *:cbottom*
Bram Moolenaardcb17002016-07-07 18:58:59 +0200593:cbo[ttom] Put the cursor in the last line of the quickfix window
594 and scroll to make it visible. This is useful for
595 when errors are added by an asynchronous callback.
596 Only call it once in a while if there are many
597 updates to avoid a lot of redrawing.
598
Bram Moolenaar537ef082016-07-09 17:56:19 +0200599 *:lbo* *:lbottom*
600:lbo[ttom] Same as ":cbottom", except use the window showing the
601 location list for the current window.
602
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603Normally the quickfix window is at the bottom of the screen. If there are
604vertical splits, it's at the bottom of the rightmost column of windows. To
605make it always occupy the full width: >
606 :botright cwindow
607You can move the window around with |window-moving| commands.
608For example, to move it to the top: CTRL-W K
609The 'winfixheight' option will be set, which means that the window will mostly
610keep its height, ignoring 'winheight' and 'equalalways'. You can change the
611height manually (e.g., by dragging the status line above it with the mouse).
612
613In the quickfix window, each line is one error. The line number is equal to
Bram Moolenaar21020352017-06-13 17:21:04 +0200614the error number. The current entry is highlighted with the QuickFixLine
615highlighting. You can change it to your liking, e.g.: >
616 :hi QuickFixLine ctermbg=Yellow guibg=Yellow
617
618You can use ":.cc" to jump to the error under the cursor.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000619Hitting the <Enter> key or double-clicking the mouse on a line has the same
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620effect. The file containing the error is opened in the window above the
621quickfix window. If there already is a window for that file, it is used
622instead. If the buffer in the used window has changed, and the error is in
623another file, jumping to the error will fail. You will first have to make
624sure the window contains a buffer which can be abandoned.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000625 *CTRL-W_<Enter>* *CTRL-W_<CR>*
626You can use CTRL-W <Enter> to open a new window and jump to the error there.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627
628When the quickfix window has been filled, two autocommand events are
629triggered. First the 'filetype' option is set to "qf", which triggers the
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000630FileType event. Then the BufReadPost event is triggered, using "quickfix" for
631the buffer name. This can be used to perform some action on the listed
632errors. Example: >
Bram Moolenaar280f1262006-01-30 00:14:18 +0000633 au BufReadPost quickfix setlocal modifiable
634 \ | silent exe 'g/^/s//\=line(".")." "/'
635 \ | setlocal nomodifiable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636This prepends the line number to each line. Note the use of "\=" in the
637substitute string of the ":s" command, which is used to evaluate an
638expression.
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000639The BufWinEnter event is also triggered, again using "quickfix" for the buffer
640name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641
Bram Moolenaar82af8712016-06-04 20:20:29 +0200642Note: When adding to an existing quickfix list the autocommand are not
643triggered.
644
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645Note: Making changes in the quickfix window has no effect on the list of
646errors. 'modifiable' is off to avoid making changes. If you delete or insert
647lines anyway, the relation between the text and the error number is messed up.
648If you really want to do this, you could write the contents of the quickfix
649window to a file and use ":cfile" to have it parsed and used as the new error
650list.
651
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000652 *location-list-window*
Bram Moolenaar280f1262006-01-30 00:14:18 +0000653The location list window displays the entries in a location list. When you
654open a location list window, it is created below the current window and
655displays the location list for the current window. The location list window
656is similar to the quickfix window, except that you can have more than one
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000657location list window open at a time. When you use a location list command in
658this window, the displayed location list is used.
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000659
Bram Moolenaar280f1262006-01-30 00:14:18 +0000660When you select a file from the location list window, the following steps are
661used to find a window to edit the file:
662
6631. If a window with the location list displayed in the location list window is
664 present, then the file is opened in that window.
6652. If the above step fails and if the file is already opened in another
666 window, then that window is used.
6673. If the above step fails then an existing window showing a buffer with
668 'buftype' not set is used.
6694. If the above step fails, then the file is edited in a new window.
670
671In all of the above cases, if the location list for the selected window is not
672yet set, then it is set to the location list displayed in the location list
673window.
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000674
Bram Moolenaar74240d32017-12-10 15:26:15 +0100675 *quickfix-window-ID*
676You can use the |getqflist()| and |getloclist()| functions to obtain the
677window ID of the quickfix window and location list window respectively (if
678present). Examples: >
679 echo getqflist({'winid' : 1}).winid
680 echo getloclist(2, {'winid' : 1}).winid
681<
Bram Moolenaar15142e22018-04-30 22:19:58 +0200682 *getqflist-examples*
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200683The |getqflist()| and |getloclist()| functions can be used to get the various
Bram Moolenaar15142e22018-04-30 22:19:58 +0200684attributes of a quickfix and location list respectively. Some examples for
685using these functions are below:
686>
687 " get the title of the current quickfix list
688 :echo getqflist({'title' : 0}).title
689
690 " get the identifier of the current quickfix list
691 :let qfid = getqflist({'id' : 0}).id
692
Bram Moolenaar78ddc062018-05-15 21:56:34 +0200693 " get the identifier of the fourth quickfix list in the stack
694 :let qfid = getqflist({'nr' : 4, 'id' : 0}).id
695
696 " check whether a quickfix list with a specific identifier exists
697 :if getqflist({'id' : qfid}).id == qfid
698
Bram Moolenaar15142e22018-04-30 22:19:58 +0200699 " get the index of the current quickfix list in the stack
700 :let qfnum = getqflist({'nr' : 0}).nr
701
702 " get the items of a quickfix list specified by an identifier
703 :echo getqflist({'id' : qfid, 'items' : 0}).items
704
705 " get the number of entries in a quickfix list specified by an id
706 :echo getqflist({'id' : qfid, 'size' : 0}).size
707
708 " get the context of the third quickfix list in the stack
709 :echo getqflist({'nr' : 3, 'context' : 0}).context
710
711 " get the number of quickfix lists in the stack
712 :echo getqflist({'nr' : '$'}).nr
713
714 " get the number of times the current quickfix list is changed
715 :echo getqflist({'changedtick' : 0}).changedtick
716
717 " get the current entry in a quickfix list specified by an identifier
718 :echo getqflist({'id' : qfid, 'idx' : 0}).idx
719
720 " get all the quickfix list attributes using an identifier
721 :echo getqflist({'id' : qfid, 'all' : 0})
722
723 " parse text from a List of lines and return a quickfix list
724 :let myList = ["a.java:10:L10", "b.java:20:L20"]
725 :echo getqflist({'lines' : myList}).items
726
727 " parse text using a custom 'efm' and return a quickfix list
728 :echo getqflist({'lines' : ['a.c#10#Line 10'], 'efm':'%f#%l#%m'}).items
729
730 " get the quickfix list window id
731 :echo getqflist({'winid' : 0}).winid
732
Bram Moolenaar647e24b2019-03-17 16:39:46 +0100733 " get the quickfix list window buffer number
734 :echo getqflist({'qfbufnr' : 0}).qfbufnr
735
Bram Moolenaar15142e22018-04-30 22:19:58 +0200736 " get the context of the current location list
737 :echo getloclist(0, {'context' : 0}).context
738
739 " get the location list window id of the third window
740 :echo getloclist(3, {'winid' : 0}).winid
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100741
Bram Moolenaar647e24b2019-03-17 16:39:46 +0100742 " get the location list window buffer number of the third window
743 :echo getloclist(3, {'qfbufnr' : 0}).qfbufnr
744
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100745 " get the file window id of a location list window (winnr: 4)
746 :echo getloclist(4, {'filewinid' : 0}).filewinid
Bram Moolenaar15142e22018-04-30 22:19:58 +0200747<
748 *setqflist-examples*
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200749The |setqflist()| and |setloclist()| functions can be used to set the various
Bram Moolenaar15142e22018-04-30 22:19:58 +0200750attributes of a quickfix and location list respectively. Some examples for
751using these functions are below:
752>
Bram Moolenaar78ddc062018-05-15 21:56:34 +0200753 " create an empty quickfix list with a title and a context
754 :let t = 'Search results'
755 :let c = {'cmd' : 'grep'}
756 :call setqflist([], ' ', {'title' : t, 'context' : c})
757
Bram Moolenaar15142e22018-04-30 22:19:58 +0200758 " set the title of the current quickfix list
759 :call setqflist([], 'a', {'title' : 'Mytitle'})
760
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100761 " change the current entry in the list specified by an identifier
762 :call setqflist([], 'a', {'id' : qfid, 'idx' : 10})
763
Bram Moolenaar15142e22018-04-30 22:19:58 +0200764 " set the context of a quickfix list specified by an identifier
765 :call setqflist([], 'a', {'id' : qfid, 'context' : {'val' : 100}})
766
767 " create a new quickfix list from a command output
768 :call setqflist([], ' ', {'lines' : systemlist('grep -Hn main *.c')})
769
770 " parse text using a custom efm and add to a particular quickfix list
771 :call setqflist([], 'a', {'id' : qfid,
772 \ 'lines' : ["a.c#10#L10", "b.c#20#L20"], 'efm':'%f#%l#%m'})
773
774 " add items to the quickfix list specified by an identifier
775 :let newItems = [{'filename' : 'a.txt', 'lnum' : 10, 'text' : "Apple"},
776 \ {'filename' : 'b.txt', 'lnum' : 20, 'text' : "Orange"}]
777 :call setqflist([], 'a', {'id' : qfid, 'items' : newItems})
778
Bram Moolenaar78ddc062018-05-15 21:56:34 +0200779 " empty a quickfix list specified by an identifier
780 :call setqflist([], 'r', {'id' : qfid, 'items' : []})
781
Bram Moolenaar15142e22018-04-30 22:19:58 +0200782 " free all the quickfix lists in the stack
783 :call setqflist([], 'f')
784
785 " set the title of the fourth quickfix list
786 :call setqflist([], 'a', {'nr' : 4, 'title' : 'SomeTitle'})
787
788 " create a new quickfix list at the end of the stack
789 :call setqflist([], ' ', {'nr' : '$',
790 \ 'lines' : systemlist('grep -Hn class *.java')})
791
792 " create a new location list from a command output
793 :call setloclist(0, [], ' ', {'lines' : systemlist('grep -Hn main *.c')})
794
795 " replace the location list entries for the third window
796 :call setloclist(3, [], 'r', {'items' : newItems})
797<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798=============================================================================
7993. Using more than one list of errors *quickfix-error-lists*
800
801So far has been assumed that there is only one list of errors. Actually the
802ten last used lists are remembered. When starting a new list, the previous
803ones are automatically kept. Two commands can be used to access older error
804lists. They set one of the existing error lists as the current one.
805
806 *:colder* *:col* *E380*
807:col[der] [count] Go to older error list. When [count] is given, do
808 this [count] times. When already at the oldest error
809 list, an error message is given.
810
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000811 *:lolder* *:lol*
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200812:lol[der] [count] Same as `:colder`, except use the location list for
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000813 the current window instead of the quickfix list.
814
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 *:cnewer* *:cnew* *E381*
816:cnew[er] [count] Go to newer error list. When [count] is given, do
817 this [count] times. When already at the newest error
818 list, an error message is given.
819
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000820 *:lnewer* *:lnew*
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200821:lnew[er] [count] Same as `:cnewer`, except use the location list for
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000822 the current window instead of the quickfix list.
823
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200824 *:chistory* *:chi*
825:chi[story] Show the list of error lists. The current list is
826 marked with ">". The output looks like:
827 error list 1 of 3; 43 errors ~
828 > error list 2 of 3; 0 errors ~
829 error list 3 of 3; 15 errors ~
830
831 *:lhistory* *:lhi*
832:lhi[story] Show the list of location lists, otherwise like
833 `:chistory`.
834
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835When adding a new error list, it becomes the current list.
836
837When ":colder" has been used and ":make" or ":grep" is used to add a new error
838list, one newer list is overwritten. This is especially useful if you are
839browsing with ":grep" |grep|. If you want to keep the more recent error
840lists, use ":cnewer 99" first.
841
Bram Moolenaar74240d32017-12-10 15:26:15 +0100842To get the number of lists in the quickfix and location list stack, you can
843use the |getqflist()| and |getloclist()| functions respectively with the list
844number set to the special value '$'. Examples: >
845 echo getqflist({'nr' : '$'}).nr
846 echo getloclist(3, {'nr' : '$'}).nr
847To get the number of the current list in the stack: >
848 echo getqflist({'nr' : 0}).nr
849<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850=============================================================================
8514. Using :make *:make_makeprg*
852
853 *:mak* *:make*
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100854:mak[e][!] [arguments] 1. All relevant |QuickFixCmdPre| autocommands are
855 executed.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000856 2. If the 'autowrite' option is on, write any changed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 buffers
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000858 3. An errorfile name is made from 'makeef'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 'makeef' doesn't contain "##", and a file with this
860 name already exists, it is deleted.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000861 4. The program given with the 'makeprg' option is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862 started (default "make") with the optional
863 [arguments] and the output is saved in the
864 errorfile (for Unix it is also echoed on the
865 screen).
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000866 5. The errorfile is read using 'errorformat'.
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100867 6. All relevant |QuickFixCmdPost| autocommands are
868 executed. See example below.
Bram Moolenaar6b803a72007-05-06 14:25:46 +0000869 7. If [!] is not given the first error is jumped to.
870 8. The errorfile is deleted.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000871 9. You can now move through the errors with commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 like |:cnext| and |:cprevious|, see above.
873 This command does not accept a comment, any "
874 characters are considered part of the arguments.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100875 If the encoding of the program output differs from the
876 'encoding' option, you can use the 'makeencoding'
877 option to specify the encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +0000879 *:lmak* *:lmake*
880:lmak[e][!] [arguments]
881 Same as ":make", except the location list for the
882 current window is used instead of the quickfix list.
883
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884The ":make" command executes the command given with the 'makeprg' option.
885This is done by passing the command to the shell given with the 'shell'
886option. This works almost like typing
887
888 ":!{makeprg} [arguments] {shellpipe} {errorfile}".
889
890{makeprg} is the string given with the 'makeprg' option. Any command can be
891used, not just "make". Characters '%' and '#' are expanded as usual on a
892command-line. You can use "%<" to insert the current file name without
893extension, or "#<" to insert the alternate file name without extension, for
894example: >
895 :set makeprg=make\ #<.o
896
897[arguments] is anything that is typed after ":make".
898{shellpipe} is the 'shellpipe' option.
899{errorfile} is the 'makeef' option, with ## replaced to make it unique.
900
Bram Moolenaar6dfc28b2010-02-11 14:19:15 +0100901The placeholder "$*" can be used for the argument list in {makeprg} if the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902command needs some additional characters after its arguments. The $* is
903replaced then by all arguments. Example: >
904 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*}
905or simpler >
906 :let &mp = 'latex \\nonstopmode \\input\{$*}'
907"$*" can be given multiple times, for example: >
908 :set makeprg=gcc\ -o\ $*\ $*
909
910The 'shellpipe' option defaults to ">" for the Amiga, MS-DOS and Win32. This
911means that the output of the compiler is saved in a file and not shown on the
912screen directly. For Unix "| tee" is used. The compiler output is shown on
913the screen and saved in a file the same time. Depending on the shell used
914"|& tee" or "2>&1| tee" is the default, so stderr output will be included.
915
916If 'shellpipe' is empty, the {errorfile} part will be omitted. This is useful
917for compilers that write to an errorfile themselves (e.g., Manx's Amiga C).
918
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000919
920Using QuickFixCmdPost to fix the encoding ~
921
922It may be that 'encoding' is set to an encoding that differs from the messages
923your build program produces. This example shows how to fix this after Vim has
924read the error messages: >
925
926 function QfMakeConv()
927 let qflist = getqflist()
928 for i in qflist
929 let i.text = iconv(i.text, "cp936", "utf-8")
930 endfor
931 call setqflist(qflist)
932 endfunction
933
934 au QuickfixCmdPost make call QfMakeConv()
935
936(Example by Faque Cheng)
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100937Another option is using 'makeencoding'.
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000938
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939==============================================================================
Bram Moolenaar86b68352004-12-27 21:59:20 +00009405. Using :vimgrep and :grep *grep* *lid*
941
942Vim has two ways to find matches for a pattern: Internal and external. The
943advantage of the internal grep is that it works on all systems and uses the
944powerful Vim search patterns. An external grep program can be used when the
945Vim grep does not do what you want.
946
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000947The internal method will be slower, because files are read into memory. The
948advantages are:
949- Line separators and encoding are automatically recognized, as if a file is
950 being edited.
951- Uses Vim search patterns. Multi-line patterns can be used.
952- When plugins are enabled: compressed and remote files can be searched.
953 |gzip| |netrw|
Bram Moolenaara3227e22006-03-08 21:32:40 +0000954
955To be able to do this Vim loads each file as if it is being edited. When
Bram Moolenaar1056d982006-03-09 22:37:52 +0000956there is no match in the file the associated buffer is wiped out again. The
Bram Moolenaara3227e22006-03-08 21:32:40 +0000957'hidden' option is ignored here to avoid running out of memory or file
958descriptors when searching many files. However, when the |:hide| command
959modifier is used the buffers are kept loaded. This makes following searches
960in the same files a lot faster.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000961
Bram Moolenaar483c5d82010-10-20 18:45:33 +0200962Note that |:copen| (or |:lopen| for |:lgrep|) may be used to open a buffer
963containing the search results in linked form. The |:silent| command may be
Bram Moolenaard58e9292011-02-09 17:07:58 +0100964used to suppress the default full screen grep output. The ":grep!" form of
Bram Moolenaar483c5d82010-10-20 18:45:33 +0200965the |:grep| command doesn't jump to the first match automatically. These
966commands can be combined to create a NewGrep command: >
967
968 command! -nargs=+ NewGrep execute 'silent grep! <args>' | copen 42
969
Bram Moolenaar86b68352004-12-27 21:59:20 +0000970
9715.1 using Vim's internal grep
972
Bram Moolenaare49b69a2005-01-08 16:11:57 +0000973 *:vim* *:vimgrep* *E682* *E683*
Bram Moolenaar05159a02005-02-26 23:04:13 +0000974:vim[grep][!] /{pattern}/[g][j] {file} ...
Bram Moolenaar86b68352004-12-27 21:59:20 +0000975 Search for {pattern} in the files {file} ... and set
Bram Moolenaar30b65812012-07-12 22:01:11 +0200976 the error list to the matches. Files matching
977 'wildignore' are ignored; files in 'suffixes' are
978 searched last.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000979 Without the 'g' flag each line is added only once.
980 With 'g' every match is added.
981
982 {pattern} is a Vim search pattern. Instead of
983 enclosing it in / any non-ID character (see
984 |'isident'|) can be used, so long as it does not
985 appear in {pattern}.
986 'ignorecase' applies. To overrule it put |/\c| in the
987 pattern to ignore case or |/\C| to match case.
988 'smartcase' is not used.
Bram Moolenaar60abe752013-03-07 16:32:54 +0100989 If {pattern} is empty (e.g. // is specified), the last
990 used search pattern is used. |last-pattern|
Bram Moolenaarba3ff532018-11-04 14:45:49 +0100991:{count}vim[grep] ...
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000992 When a number is put before the command this is used
993 as the maximum number of matches to find. Use
994 ":1vimgrep pattern file" to find only the first.
995 Useful if you only want to check if there is a match
996 and quit quickly when it's found.
997
Bram Moolenaar05159a02005-02-26 23:04:13 +0000998 Without the 'j' flag Vim jumps to the first match.
999 With 'j' only the quickfix list is updated.
1000 With the [!] any changes in the current buffer are
1001 abandoned.
1002
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00001003 Every second or so the searched file name is displayed
1004 to give you an idea of the progress made.
Bram Moolenaar8fc061c2004-12-29 21:03:02 +00001005 Examples: >
1006 :vimgrep /an error/ *.c
1007 :vimgrep /\<FileName\>/ *.h include/*
Bram Moolenaar231334e2005-07-25 20:46:57 +00001008 :vimgrep /myfunc/ **/*.c
1009< For the use of "**" see |starstar-wildcard|.
Bram Moolenaar86b68352004-12-27 21:59:20 +00001010
Bram Moolenaar8fc061c2004-12-29 21:03:02 +00001011:vim[grep][!] {pattern} {file} ...
1012 Like above, but instead of enclosing the pattern in a
1013 non-ID character use a white-separated pattern. The
1014 pattern must start with an ID character.
1015 Example: >
1016 :vimgrep Error *.c
1017<
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +00001018 *:lv* *:lvimgrep*
1019:lv[imgrep][!] /{pattern}/[g][j] {file} ...
1020:lv[imgrep][!] {pattern} {file} ...
1021 Same as ":vimgrep", except the location list for the
1022 current window is used instead of the quickfix list.
1023
Bram Moolenaar86b68352004-12-27 21:59:20 +00001024 *:vimgrepa* *:vimgrepadd*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001025:vimgrepa[dd][!] /{pattern}/[g][j] {file} ...
1026:vimgrepa[dd][!] {pattern} {file} ...
Bram Moolenaar86b68352004-12-27 21:59:20 +00001027 Just like ":vimgrep", but instead of making a new list
1028 of errors the matches are appended to the current
1029 list.
1030
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +00001031 *:lvimgrepa* *:lvimgrepadd*
1032:lvimgrepa[dd][!] /{pattern}/[g][j] {file} ...
1033:lvimgrepa[dd][!] {pattern} {file} ...
1034 Same as ":vimgrepadd", except the location list for
1035 the current window is used instead of the quickfix
1036 list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00001037
10385.2 External grep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039
1040Vim can interface with "grep" and grep-like programs (such as the GNU
1041id-utils) in a similar way to its compiler integration (see |:make| above).
1042
1043[Unix trivia: The name for the Unix "grep" command comes from ":g/re/p", where
1044"re" stands for Regular Expression.]
1045
1046 *:gr* *:grep*
1047:gr[ep][!] [arguments] Just like ":make", but use 'grepprg' instead of
1048 'makeprg' and 'grepformat' instead of 'errorformat'.
Bram Moolenaar86b68352004-12-27 21:59:20 +00001049 When 'grepprg' is "internal" this works like
1050 |:vimgrep|. Note that the pattern needs to be
1051 enclosed in separator characters then.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01001052 If the encoding of the program output differs from the
1053 'encoding' option, you can use the 'makeencoding'
1054 option to specify the encoding.
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +00001055
1056 *:lgr* *:lgrep*
1057:lgr[ep][!] [arguments] Same as ":grep", except the location list for the
1058 current window is used instead of the quickfix list.
1059
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 *:grepa* *:grepadd*
1061:grepa[dd][!] [arguments]
1062 Just like ":grep", but instead of making a new list of
1063 errors the matches are appended to the current list.
1064 Example: >
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001065 :call setqflist([])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 :bufdo grepadd! something %
1067< The first command makes a new error list which is
1068 empty. The second command executes "grepadd" for each
1069 listed buffer. Note the use of ! to avoid that
1070 ":grepadd" jumps to the first error, which is not
1071 allowed with |:bufdo|.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001072 An example that uses the argument list and avoids
1073 errors for files without matches: >
1074 :silent argdo try
1075 \ | grepadd! something %
1076 \ | catch /E480:/
1077 \ | endtry"
1078<
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01001079 If the encoding of the program output differs from the
1080 'encoding' option, you can use the 'makeencoding'
1081 option to specify the encoding.
1082
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +00001083 *:lgrepa* *:lgrepadd*
1084:lgrepa[dd][!] [arguments]
1085 Same as ":grepadd", except the location list for the
1086 current window is used instead of the quickfix list.
1087
Bram Moolenaar86b68352004-12-27 21:59:20 +000010885.3 Setting up external grep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089
1090If you have a standard "grep" program installed, the :grep command may work
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001091well with the defaults. The syntax is very similar to the standard command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092
1093 :grep foo *.c
1094
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001095Will search all files with the .c extension for the substring "foo". The
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096arguments to :grep are passed straight to the "grep" program, so you can use
1097whatever options your "grep" supports.
1098
1099By default, :grep invokes grep with the -n option (show file and line
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001100numbers). You can change this with the 'grepprg' option. You will need to set
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101'grepprg' if:
1102
1103a) You are using a program that isn't called "grep"
1104b) You have to call grep with a full path
1105c) You want to pass other options automatically (e.g. case insensitive
1106 search.)
1107
1108Once "grep" has executed, Vim parses the results using the 'grepformat'
1109option. This option works in the same way as the 'errorformat' option - see
1110that for details. You may need to change 'grepformat' from the default if
1111your grep outputs in a non-standard format, or you are using some other
1112program with a special format.
1113
1114Once the results are parsed, Vim loads the first file containing a match and
1115jumps to the appropriate line, in the same way that it jumps to a compiler
1116error in |quickfix| mode. You can then use the |:cnext|, |:clist|, etc.
1117commands to see the other matches.
1118
1119
Bram Moolenaar86b68352004-12-27 21:59:20 +000011205.4 Using :grep with id-utils
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121
1122You can set up :grep to work with the GNU id-utils like this: >
1123
1124 :set grepprg=lid\ -Rgrep\ -s
1125 :set grepformat=%f:%l:%m
1126
1127then >
1128 :grep (regexp)
1129
1130works just as you'd expect.
1131(provided you remembered to mkid first :)
1132
1133
Bram Moolenaar86b68352004-12-27 21:59:20 +000011345.5 Browsing source code with :vimgrep or :grep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135
1136Using the stack of error lists that Vim keeps, you can browse your files to
1137look for functions and the functions they call. For example, suppose that you
1138have to add an argument to the read_file() function. You enter this command: >
1139
Bram Moolenaar86b68352004-12-27 21:59:20 +00001140 :vimgrep /\<read_file\>/ *.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141
1142You use ":cn" to go along the list of matches and add the argument. At one
1143place you have to get the new argument from a higher level function msg(), and
1144need to change that one too. Thus you use: >
1145
Bram Moolenaar86b68352004-12-27 21:59:20 +00001146 :vimgrep /\<msg\>/ *.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147
1148While changing the msg() functions, you find another function that needs to
Bram Moolenaar86b68352004-12-27 21:59:20 +00001149get the argument from a higher level. You can again use ":vimgrep" to find
1150these functions. Once you are finished with one function, you can use >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151
1152 :colder
1153
1154to go back to the previous one.
1155
Bram Moolenaar86b68352004-12-27 21:59:20 +00001156This works like browsing a tree: ":vimgrep" goes one level deeper, creating a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157list of branches. ":colder" goes back to the previous level. You can mix
Bram Moolenaar86b68352004-12-27 21:59:20 +00001158this use of ":vimgrep" and "colder" to browse all the locations in a tree-like
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159way. If you do this consistently, you will find all locations without the
1160need to write down a "todo" list.
1161
1162=============================================================================
11636. Selecting a compiler *compiler-select*
1164
1165 *:comp* *:compiler* *E666*
1166:comp[iler][!] {name} Set options to work with compiler {name}.
1167 Without the "!" options are set for the
1168 current buffer. With "!" global options are
1169 set.
1170 If you use ":compiler foo" in "file.foo" and
1171 then ":compiler! bar" in another buffer, Vim
1172 will keep on using "foo" in "file.foo".
1173 {not available when compiled without the
1174 |+eval| feature}
1175
1176
1177The Vim plugins in the "compiler" directory will set options to use the
Bram Moolenaar25de4c22016-11-06 14:48:06 +01001178selected compiler. For `:compiler` local options are set, for `:compiler!`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179global options.
1180 *current_compiler*
1181To support older Vim versions, the plugins always use "current_compiler" and
1182not "b:current_compiler". What the command actually does is the following:
1183
1184- Delete the "current_compiler" and "b:current_compiler" variables.
1185- Define the "CompilerSet" user command. With "!" it does ":set", without "!"
1186 it does ":setlocal".
1187- Execute ":runtime! compiler/{name}.vim". The plugins are expected to set
1188 options with "CompilerSet" and set the "current_compiler" variable to the
1189 name of the compiler.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001190- Delete the "CompilerSet" user command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191- Set "b:current_compiler" to the value of "current_compiler".
1192- Without "!" the old value of "current_compiler" is restored.
1193
1194
1195For writing a compiler plugin, see |write-compiler-plugin|.
1196
1197
Bram Moolenaarbae0c162007-05-10 19:30:25 +00001198GCC *quickfix-gcc* *compiler-gcc*
1199
1200There's one variable you can set for the GCC compiler:
1201
1202g:compiler_gcc_ignore_unmatched_lines
1203 Ignore lines that don't match any patterns
1204 defined for GCC. Useful if output from
1205 commands run from make are generating false
1206 positives.
1207
1208
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209MANX AZTEC C *quickfix-manx* *compiler-manx*
1210
1211To use Vim with Manx's Aztec C compiler on the Amiga you should do the
1212following:
1213- Set the CCEDIT environment variable with the command: >
1214 mset "CCEDIT=vim -q"
1215- Compile with the -qf option. If the compiler finds any errors, Vim is
1216 started and the cursor is positioned on the first error. The error message
1217 will be displayed on the last line. You can go to other errors with the
1218 commands mentioned above. You can fix the errors and write the file(s).
1219- If you exit Vim normally the compiler will re-compile the same file. If you
1220 exit with the :cq command, the compiler will terminate. Do this if you
1221 cannot fix the error, or if another file needs to be compiled first.
1222
1223There are some restrictions to the Quickfix mode on the Amiga. The
1224compiler only writes the first 25 errors to the errorfile (Manx's
1225documentation does not say how to get more). If you want to find the others,
1226you will have to fix a few errors and exit the editor. After recompiling,
1227up to 25 remaining errors will be found.
1228
1229If Vim was started from the compiler, the :sh and some :! commands will not
1230work, because Vim is then running in the same process as the compiler and
1231stdin (standard input) will not be interactive.
1232
1233
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001234PERL *quickfix-perl* *compiler-perl*
1235
1236The Perl compiler plugin doesn't actually compile, but invokes Perl's internal
1237syntax checking feature and parses the output for possible errors so you can
1238correct them in quick-fix mode.
1239
1240Warnings are forced regardless of "no warnings" or "$^W = 0" within the file
1241being checked. To disable this set g:perl_compiler_force_warnings to a zero
1242value. For example: >
1243 let g:perl_compiler_force_warnings = 0
1244
1245
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246PYUNIT COMPILER *compiler-pyunit*
1247
1248This is not actually a compiler, but a unit testing framework for the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001249Python language. It is included into standard Python distribution
1250starting from version 2.0. For older versions, you can get it from
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251http://pyunit.sourceforge.net.
1252
1253When you run your tests with the help of the framework, possible errors
1254are parsed by Vim and presented for you in quick-fix mode.
1255
1256Unfortunately, there is no standard way to run the tests.
1257The alltests.py script seems to be used quite often, that's all.
1258Useful values for the 'makeprg' options therefore are:
1259 setlocal makeprg=./alltests.py " Run a testsuite
Bram Moolenaar26df0922014-02-23 23:39:13 +01001260 setlocal makeprg=python\ %:S " Run a single testcase
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261
1262Also see http://vim.sourceforge.net/tip_view.php?tip_id=280.
1263
1264
1265TEX COMPILER *compiler-tex*
1266
1267Included in the distribution compiler for TeX ($VIMRUNTIME/compiler/tex.vim)
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001268uses make command if possible. If the compiler finds a file named "Makefile"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269or "makefile" in the current directory, it supposes that you want to process
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001270your *TeX files with make, and the makefile does the right work. In this case
1271compiler sets 'errorformat' for *TeX output and leaves 'makeprg' untouched. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272neither "Makefile" nor "makefile" is found, the compiler will not use make.
1273You can force the compiler to ignore makefiles by defining
1274b:tex_ignore_makefile or g:tex_ignore_makefile variable (they are checked for
1275existence only).
1276
1277If the compiler chose not to use make, it need to choose a right program for
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001278processing your input. If b:tex_flavor or g:tex_flavor (in this precedence)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279variable exists, it defines TeX flavor for :make (actually, this is the name
1280of executed command), and if both variables do not exist, it defaults to
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001281"latex". For example, while editing chapter2.tex \input-ed from mypaper.tex
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282written in AMS-TeX: >
1283
1284 :let b:tex_flavor = 'amstex'
1285 :compiler tex
1286< [editing...] >
1287 :make mypaper
1288
1289Note that you must specify a name of the file to process as an argument (to
1290process the right file when editing \input-ed or \include-ed file; portable
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001291solution for substituting % for no arguments is welcome). This is not in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292semantics of make, where you specify a target, not source, but you may specify
1293filename without extension ".tex" and mean this as "make filename.dvi or
1294filename.pdf or filename.some_result_extension according to compiler".
1295
1296Note: tex command line syntax is set to usable both for MikTeX (suggestion
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001297by Srinath Avadhanula) and teTeX (checked by Artem Chuprina). Suggestion
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298from |errorformat-LaTeX| is too complex to keep it working for different
1299shells and OSes and also does not allow to use other available TeX options,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001300if any. If your TeX doesn't support "-interaction=nonstopmode", please
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301report it with different means to express \nonstopmode from the command line.
1302
1303=============================================================================
13047. The error format *error-file-format*
1305
1306 *errorformat* *E372* *E373* *E374*
1307 *E375* *E376* *E377* *E378*
1308The 'errorformat' option specifies a list of formats that are recognized. The
1309first format that matches with an error message is used. You can add several
1310formats for different messages your compiler produces, or even entries for
1311multiple compilers. See |efm-entries|.
1312
1313Each entry in 'errorformat' is a scanf-like string that describes the format.
1314First, you need to know how scanf works. Look in the documentation of your
1315C compiler. Below you find the % items that Vim understands. Others are
1316invalid.
1317
1318Special characters in 'errorformat' are comma and backslash. See
1319|efm-entries| for how to deal with them. Note that a literal "%" is matched
1320by "%%", thus it is not escaped with a backslash.
Bram Moolenaar9d98fe92013-08-03 18:35:36 +02001321Keep in mind that in the `:make` and `:grep` output all NUL characters are
1322replaced with SOH (0x01).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323
1324Note: By default the difference between upper and lowercase is ignored. If
1325you want to match case, add "\C" to the pattern |/\C|.
1326
1327
1328Basic items
1329
1330 %f file name (finds a string)
Bram Moolenaard76ce852018-05-01 15:02:04 +02001331 %o module name (finds a string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 %l line number (finds a number)
1333 %c column number (finds a number representing character
1334 column of the error, (1 <tab> == 1 character column))
1335 %v virtual column number (finds a number representing
1336 screen column of the error (1 <tab> == 8 screen
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001337 columns))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 %t error type (finds a single character)
1339 %n error number (finds a number)
1340 %m error message (finds a string)
1341 %r matches the "rest" of a single-line file message %O/P/Q
Bram Moolenaarc8734422012-06-01 22:38:45 +02001342 %p pointer line (finds a sequence of '-', '.', ' ' or
1343 tabs and uses the length for the column number)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 %*{conv} any scanf non-assignable conversion
1345 %% the single '%' character
Bram Moolenaar2641f772005-03-25 21:58:17 +00001346 %s search text (finds a string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347
Bram Moolenaare344bea2005-09-01 20:46:49 +00001348The "%f" conversion may depend on the current 'isfname' setting. "~/" is
Bram Moolenaarf4630b62005-05-20 21:31:17 +00001349expanded to the home directory and environment variables are expanded.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350
Bram Moolenaare344bea2005-09-01 20:46:49 +00001351The "%f" and "%m" conversions have to detect the end of the string. This
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001352normally happens by matching following characters and items. When nothing is
Bram Moolenaare344bea2005-09-01 20:46:49 +00001353following the rest of the line is matched. If "%f" is followed by a '%' or a
1354backslash, it will look for a sequence of 'isfname' characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355
1356On MS-DOS, MS-Windows and OS/2 a leading "C:" will be included in "%f", even
1357when using "%f:". This means that a file name which is a single alphabetical
1358letter will not be detected.
1359
1360The "%p" conversion is normally followed by a "^". It's used for compilers
1361that output a line like: >
1362 ^
1363or >
1364 ---------^
1365to indicate the column of the error. This is to be used in a multi-line error
1366message. See |errorformat-javac| for a useful example.
1367
Bram Moolenaar85eee132018-05-06 17:57:30 +02001368The "%s" conversion specifies the text to search for, to locate the error line.
Bram Moolenaar2641f772005-03-25 21:58:17 +00001369The text is used as a literal string. The anchors "^" and "$" are added to
1370the text to locate the error line exactly matching the search text and the
1371text is prefixed with the "\V" atom to make it "very nomagic". The "%s"
1372conversion can be used to locate lines without a line number in the error
1373output. Like the output of the "grep" shell command.
1374When the pattern is present the line number will not be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375
Bram Moolenaard76ce852018-05-01 15:02:04 +02001376The "%o" conversion specifies the module name in quickfix entry. If present
1377it will be used in quickfix error window instead of the filename. The module
1378name is used only for displaying purposes, the file name is used when jumping
1379to the file.
1380
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381Changing directory
1382
1383The following uppercase conversion characters specify the type of special
Bram Moolenaara9defad2018-07-08 18:20:24 +02001384format strings. At most one of them may be given as a prefix at the beginning
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385of a single comma-separated format pattern.
1386Some compilers produce messages that consist of directory names that have to
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001387be prepended to each file name read by %f (example: GNU make). The following
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388codes can be used to scan these directory names; they will be stored in an
1389internal directory stack. *E379*
1390 %D "enter directory" format string; expects a following
1391 %f that finds the directory name
1392 %X "leave directory" format string; expects following %f
1393
1394When defining an "enter directory" or "leave directory" format, the "%D" or
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001395"%X" has to be given at the start of that substring. Vim tracks the directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396changes and prepends the current directory to each erroneous file found with a
1397relative path. See |quickfix-directory-stack| for details, tips and
1398limitations.
1399
1400
1401Multi-line messages *errorformat-multi-line*
1402
1403It is possible to read the output of programs that produce multi-line
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001404messages, i.e. error strings that consume more than one line. Possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405prefixes are:
1406 %E start of a multi-line error message
1407 %W start of a multi-line warning message
1408 %I start of a multi-line informational message
1409 %A start of a multi-line message (unspecified type)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00001410 %> for next line start with current pattern again |efm-%>|
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411 %C continuation of a multi-line message
1412 %Z end of a multi-line message
1413These can be used with '+' and '-', see |efm-ignore| below.
1414
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001415Using "\n" in the pattern won't work to match multi-line messages.
1416
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417Example: Your compiler happens to write out errors in the following format
1418(leading line numbers not being part of the actual output):
1419
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001420 1 Error 275 ~
1421 2 line 42 ~
1422 3 column 3 ~
1423 4 ' ' expected after '--' ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424
1425The appropriate error format string has to look like this: >
1426 :set efm=%EError\ %n,%Cline\ %l,%Ccolumn\ %c,%Z%m
1427
1428And the |:clist| error message generated for this error is:
1429
1430 1:42 col 3 error 275: ' ' expected after '--'
1431
1432Another example: Think of a Python interpreter that produces the following
1433error message (line numbers are not part of the actual output):
1434
1435 1 ==============================================================
1436 2 FAIL: testGetTypeIdCachesResult (dbfacadeTest.DjsDBFacadeTest)
1437 3 --------------------------------------------------------------
1438 4 Traceback (most recent call last):
1439 5 File "unittests/dbfacadeTest.py", line 89, in testFoo
1440 6 self.assertEquals(34, dtid)
1441 7 File "/usr/lib/python2.2/unittest.py", line 286, in
1442 8 failUnlessEqual
1443 9 raise self.failureException, \
1444 10 AssertionError: 34 != 33
1445 11
1446 12 --------------------------------------------------------------
1447 13 Ran 27 tests in 0.063s
1448
1449Say you want |:clist| write the relevant information of this message only,
1450namely:
1451 5 unittests/dbfacadeTest.py:89: AssertionError: 34 != 33
1452
1453Then the error format string could be defined as follows: >
1454 :set efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%m
1455
1456Note that the %C string is given before the %A here: since the expression
1457' %.%#' (which stands for the regular expression ' .*') matches every line
1458starting with a space, followed by any characters to the end of the line,
1459it also hides line 7 which would trigger a separate error message otherwise.
1460Error format strings are always parsed pattern by pattern until the first
1461match occurs.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00001462 *efm-%>*
1463The %> item can be used to avoid trying patterns that appear earlier in
1464'errorformat'. This is useful for patterns that match just about anything.
1465For example, if the error looks like this:
1466
1467 Error in line 123 of foo.c: ~
1468 unknown variable "i" ~
1469
1470This can be found with: >
1471 :set efm=xxx,%E%>Error in line %l of %f:,%Z%m
1472Where "xxx" has a pattern that would also match the second line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001474Important: There is no memory of what part of the errorformat matched before;
1475every line in the error file gets a complete new run through the error format
1476lines. For example, if one has: >
1477 setlocal efm=aa,bb,cc,dd,ee
1478Where aa, bb, etc. are error format strings. Each line of the error file will
1479be matched to the pattern aa, then bb, then cc, etc. Just because cc matched
1480the previous error line does _not_ mean that dd will be tried first on the
1481current line, even if cc and dd are multi-line errorformat strings.
1482
1483
Bram Moolenaar071d4272004-06-13 20:20:40 +00001484
1485Separate file name *errorformat-separate-filename*
1486
1487These prefixes are useful if the file name is given once and multiple messages
1488follow that refer to this file name.
1489 %O single-line file message: overread the matched part
1490 %P single-line file message: push file %f onto the stack
1491 %Q single-line file message: pop the last file from stack
1492
1493Example: Given a compiler that produces the following error logfile (without
1494leading line numbers):
1495
1496 1 [a1.tt]
1497 2 (1,17) error: ';' missing
1498 3 (21,2) warning: variable 'z' not defined
1499 4 (67,3) error: end of file found before string ended
1500 5
1501 6 [a2.tt]
1502 7
1503 8 [a3.tt]
1504 9 NEW compiler v1.1
1505 10 (2,2) warning: variable 'x' not defined
1506 11 (67,3) warning: 's' already defined
1507
1508This logfile lists several messages for each file enclosed in [...] which are
1509properly parsed by an error format like this: >
1510 :set efm=%+P[%f],(%l\\,%c)%*[\ ]%t%*[^:]:\ %m,%-Q
1511
1512A call of |:clist| writes them accordingly with their correct filenames:
1513
1514 2 a1.tt:1 col 17 error: ';' missing
1515 3 a1.tt:21 col 2 warning: variable 'z' not defined
1516 4 a1.tt:67 col 3 error: end of file found before string ended
1517 8 a3.tt:2 col 2 warning: variable 'x' not defined
1518 9 a3.tt:67 col 3 warning: 's' already defined
1519
1520Unlike the other prefixes that all match against whole lines, %P, %Q and %O
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001521can be used to match several patterns in the same line. Thus it is possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522to parse even nested files like in the following line:
1523 {"file1" {"file2" error1} error2 {"file3" error3 {"file4" error4 error5}}}
1524The %O then parses over strings that do not contain any push/pop file name
1525information. See |errorformat-LaTeX| for an extended example.
1526
1527
1528Ignoring and using whole messages *efm-ignore*
1529
1530The codes '+' or '-' can be combined with the uppercase codes above; in that
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001531case they have to precede the letter, e.g. '%+A' or '%-G':
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 %- do not include the matching multi-line in any output
1533 %+ include the whole matching line in the %m error string
1534
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001535One prefix is only useful in combination with '+' or '-', namely %G. It parses
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536over lines containing general information like compiler version strings or
1537other headers that can be skipped.
1538 %-G ignore this message
1539 %+G general message
1540
1541
1542Pattern matching
1543
1544The scanf()-like "%*[]" notation is supported for backward-compatibility
1545with previous versions of Vim. However, it is also possible to specify
1546(nearly) any Vim supported regular expression in format strings.
1547Since meta characters of the regular expression language can be part of
1548ordinary matching strings or file names (and therefore internally have to
1549be escaped), meta symbols have to be written with leading '%':
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001550 %\ The single '\' character. Note that this has to be
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 escaped ("%\\") in ":set errorformat=" definitions.
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001552 %. The single '.' character.
1553 %# The single '*'(!) character.
1554 %^ The single '^' character. Note that this is not
1555 useful, the pattern already matches start of line.
1556 %$ The single '$' character. Note that this is not
1557 useful, the pattern already matches end of line.
1558 %[ The single '[' character for a [] character range.
1559 %~ The single '~' character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560When using character classes in expressions (see |/\i| for an overview),
1561terms containing the "\+" quantifier can be written in the scanf() "%*"
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001562notation. Example: "%\\d%\\+" ("\d\+", "any number") is equivalent to "%*\\d".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563Important note: The \(...\) grouping of sub-matches can not be used in format
1564specifications because it is reserved for internal conversions.
1565
1566
1567Multiple entries in 'errorformat' *efm-entries*
1568
1569To be able to detect output from several compilers, several format patterns
1570may be put in 'errorformat', separated by commas (note: blanks after the comma
1571are ignored). The first pattern that has a complete match is used. If no
1572match is found, matching parts from the last one will be used, although the
1573file name is removed and the error message is set to the whole message. If
1574there is a pattern that may match output from several compilers (but not in a
1575right way), put it after one that is more restrictive.
1576
1577To include a comma in a pattern precede it with a backslash (you have to type
1578two in a ":set" command). To include a backslash itself give two backslashes
1579(you have to type four in a ":set" command). You also need to put a backslash
1580before a space for ":set".
1581
1582
1583Valid matches *quickfix-valid*
1584
1585If a line does not completely match one of the entries in 'errorformat', the
1586whole line is put in the error message and the entry is marked "not valid"
1587These lines are skipped with the ":cn" and ":cp" commands (unless there is
1588no valid line at all). You can use ":cl!" to display all the error messages.
1589
1590If the error format does not contain a file name Vim cannot switch to the
1591correct file. You will have to do this by hand.
1592
1593
1594Examples
1595
1596The format of the file from the Amiga Aztec compiler is:
1597
1598 filename>linenumber:columnnumber:errortype:errornumber:errormessage
1599
1600 filename name of the file in which the error was detected
1601 linenumber line number where the error was detected
1602 columnnumber column number where the error was detected
1603 errortype type of the error, normally a single 'E' or 'W'
1604 errornumber number of the error (for lookup in the manual)
1605 errormessage description of the error
1606
1607This can be matched with this 'errorformat' entry:
1608 %f>%l:%c:%t:%n:%m
1609
1610Some examples for C compilers that produce single-line error outputs:
1611%f:%l:\ %t%*[^0123456789]%n:\ %m for Manx/Aztec C error messages
1612 (scanf() doesn't understand [0-9])
1613%f\ %l\ %t%*[^0-9]%n:\ %m for SAS C
1614\"%f\"\\,%*[^0-9]%l:\ %m for generic C compilers
1615%f:%l:\ %m for GCC
1616%f:%l:\ %m,%Dgmake[%*\\d]:\ Entering\ directory\ `%f',
1617%Dgmake[%*\\d]:\ Leaving\ directory\ `%f'
1618 for GCC with gmake (concat the lines!)
1619%f(%l)\ :\ %*[^:]:\ %m old SCO C compiler (pre-OS5)
1620%f(%l)\ :\ %t%*[^0-9]%n:\ %m idem, with error type and number
1621%f:%l:\ %m,In\ file\ included\ from\ %f:%l:,\^I\^Ifrom\ %f:%l%m
1622 for GCC, with some extras
1623
1624Extended examples for the handling of multi-line messages are given below,
1625see |errorformat-Jikes| and |errorformat-LaTeX|.
1626
1627Note the backslash in front of a space and double quote. It is required for
1628the :set command. There are two backslashes in front of a comma, one for the
1629:set command and one to avoid recognizing the comma as a separator of error
1630formats.
1631
1632
1633Filtering messages
1634
1635If you have a compiler that produces error messages that do not fit in the
1636format string, you could write a program that translates the error messages
1637into this format. You can use this program with the ":make" command by
1638changing the 'makeprg' option. For example: >
1639 :set mp=make\ \\\|&\ error_filter
1640The backslashes before the pipe character are required to avoid it to be
1641recognized as a command separator. The backslash before each space is
1642required for the set command.
1643
Bram Moolenaar5b69c222019-01-11 14:50:06 +01001644 *cfilter-plugin* *:Cfilter* *:Lfilter*
Bram Moolenaar8c5e0092018-08-21 19:22:23 +02001645If you have too many matching messages, you can use the cfilter plugin to
1646reduce the number of entries. Load the plugin with: >
1647 packadd cfilter
1648
1649Then you can use these command: >
Bram Moolenaarfc65cab2018-08-28 22:58:02 +02001650 :Cfilter[!] /{pat}/
1651 :Lfilter[!] /{pat}/
Bram Moolenaar8c5e0092018-08-21 19:22:23 +02001652
1653:Cfilter creates a new quickfix list from entries matching {pat} in the
1654current quickfix list. Both the file name and the text of the entries are
1655matched against {pat}. If ! is supplied, then entries not matching {pat} are
1656used.
1657
1658:Lfilter does the same as :Cfilter but operates on the current location list.
1659
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660=============================================================================
16618. The directory stack *quickfix-directory-stack*
1662
1663Quickfix maintains a stack for saving all used directories parsed from the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001664make output. For GNU-make this is rather simple, as it always prints the
1665absolute path of all directories it enters and leaves. Regardless if this is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666done via a 'cd' command in the makefile or with the parameter "-C dir" (change
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001667to directory before reading the makefile). It may be useful to use the switch
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668"-w" to force GNU-make to print out the working directory before and after
1669processing.
1670
1671Maintaining the correct directory is more complicated if you don't use
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001672GNU-make. AIX-make for example doesn't print any information about its
1673working directory. Then you need to enhance the makefile. In the makefile of
1674LessTif there is a command which echoes "Making {target} in {dir}". The
Bram Moolenaar6dfc28b2010-02-11 14:19:15 +01001675special problem here is that it doesn't print information on leaving the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001676directory and that it doesn't print the absolute path.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677
1678To solve the problem with relative paths and missing "leave directory"
1679messages Vim uses following algorithm:
1680
16811) Check if the given directory is a subdirectory of the current directory.
1682 If this is true, store it as the current directory.
16832) If it is not a subdir of the current directory, try if this is a
1684 subdirectory of one of the upper directories.
16853) If the directory still isn't found, it is assumed to be a subdirectory
1686 of Vim's current directory.
1687
1688Additionally it is checked for every file, if it really exists in the
1689identified directory. If not, it is searched in all other directories of the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001690directory stack (NOT the directory subtree!). If it is still not found, it is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691assumed that it is in Vim's current directory.
1692
Bram Moolenaare667c952010-07-05 22:57:59 +02001693There are limitations in this algorithm. These examples assume that make just
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694prints information about entering a directory in the form "Making all in dir".
1695
16961) Assume you have following directories and files:
1697 ./dir1
1698 ./dir1/file1.c
1699 ./file1.c
1700
1701 If make processes the directory "./dir1" before the current directory and
1702 there is an error in the file "./file1.c", you will end up with the file
1703 "./dir1/file.c" loaded by Vim.
1704
1705 This can only be solved with a "leave directory" message.
1706
17072) Assume you have following directories and files:
1708 ./dir1
1709 ./dir1/dir2
1710 ./dir2
1711
1712 You get the following:
1713
1714 Make output Directory interpreted by Vim
1715 ------------------------ ----------------------------
1716 Making all in dir1 ./dir1
1717 Making all in dir2 ./dir1/dir2
1718 Making all in dir2 ./dir1/dir2
1719
1720 This can be solved by printing absolute directories in the "enter directory"
Bram Moolenaar214641f2017-03-05 17:04:09 +01001721 message or by printing "leave directory" messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722
Bram Moolenaar06b5d512010-05-22 15:37:44 +02001723To avoid this problem, ensure to print absolute directory names and "leave
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724directory" messages.
1725
1726Examples for Makefiles:
1727
1728Unix:
1729 libs:
1730 for dn in $(LIBDIRS); do \
1731 (cd $$dn; echo "Entering dir '$$(pwd)'"; make); \
1732 echo "Leaving dir"; \
1733 done
1734
1735Add
1736 %DEntering\ dir\ '%f',%XLeaving\ dir
1737to your 'errorformat' to handle the above output.
1738
1739Note that Vim doesn't check if the directory name in a "leave directory"
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001740messages is the current directory. This is why you could just use the message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741"Leaving dir".
1742
1743=============================================================================
17449. Specific error file formats *errorformats*
1745
1746 *errorformat-Jikes*
1747Jikes(TM), a source-to-bytecode Java compiler published by IBM Research,
1748produces simple multi-line error messages.
1749
1750An 'errorformat' string matching the produced messages is shown below.
1751The following lines can be placed in the user's |vimrc| to overwrite Vim's
1752recognized default formats, or see |:set+=| how to install this format
1753additionally to the default. >
1754
1755 :set efm=%A%f:%l:%c:%*\\d:%*\\d:,
1756 \%C%*\\s%trror:%m,
1757 \%+C%*[^:]%trror:%m,
1758 \%C%*\\s%tarning:%m,
1759 \%C%m
1760<
1761Jikes(TM) produces a single-line error message when invoked with the option
1762"+E", and can be matched with the following: >
1763
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001764 :setl efm=%f:%l:%v:%*\\d:%*\\d:%*\\s%m
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765<
1766 *errorformat-javac*
1767This 'errorformat' has been reported to work well for javac, which outputs a
1768line with "^" to indicate the column of the error: >
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001769 :setl efm=%A%f:%l:\ %m,%-Z%p^,%-C%.%#
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770or: >
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001771 :setl efm=%A%f:%l:\ %m,%+Z%p^,%+C%.%#,%-G%.%#
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772<
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001773Here is an alternative from Michael F. Lamb for Unix that filters the errors
1774first: >
1775 :setl errorformat=%Z%f:%l:\ %m,%A%p^,%-G%*[^sl]%.%#
Bram Moolenaar26df0922014-02-23 23:39:13 +01001776 :setl makeprg=javac\ %:S\ 2>&1\ \\\|\ vim-javac-filter
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001777
1778You need to put the following in "vim-javac-filter" somewhere in your path
1779(e.g., in ~/bin) and make it executable: >
1780 #!/bin/sed -f
1781 /\^$/s/\t/\ /g;/:[0-9]\+:/{h;d};/^[ \t]*\^/G;
1782
1783In English, that sed script:
1784- Changes single tabs to single spaces and
1785- Moves the line with the filename, line number, error message to just after
1786 the pointer line. That way, the unused error text between doesn't break
1787 vim's notion of a "multi-line message" and also doesn't force us to include
1788 it as a "continuation of a multi-line message."
1789
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 *errorformat-ant*
1791For ant (http://jakarta.apache.org/) the above errorformat has to be modified
1792to honour the leading [javac] in front of each javac output line: >
1793 :set efm=%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%#
1794
1795The 'errorformat' can also be configured to handle ant together with either
1796javac or jikes. If you're using jikes, you should tell ant to use jikes' +E
1797command line switch which forces jikes to generate one-line error messages.
1798This is what the second line (of a build.xml file) below does: >
1799 <property name = "build.compiler" value = "jikes"/>
1800 <property name = "build.compiler.emacs" value = "true"/>
1801
1802The 'errorformat' which handles ant with both javac and jikes is: >
1803 :set efm=\ %#[javac]\ %#%f:%l:%c:%*\\d:%*\\d:\ %t%[%^:]%#:%m,
1804 \%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%#
1805<
1806 *errorformat-jade*
1807parsing jade (see http://www.jclark.com/) errors is simple: >
1808 :set efm=jade:%f:%l:%c:%t:%m
1809<
1810 *errorformat-LaTeX*
1811The following is an example how an 'errorformat' string can be specified
1812for the (La)TeX typesetting system which displays error messages over
1813multiple lines. The output of ":clist" and ":cc" etc. commands displays
1814multi-lines in a single line, leading white space is removed.
1815It should be easy to adopt the above LaTeX errorformat to any compiler output
1816consisting of multi-line errors.
1817
1818The commands can be placed in a |vimrc| file or some other Vim script file,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001819e.g. a script containing LaTeX related stuff which is loaded only when editing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820LaTeX sources.
1821Make sure to copy all lines of the example (in the given order), afterwards
1822remove the comment lines. For the '\' notation at the start of some lines see
1823|line-continuation|.
1824
1825 First prepare 'makeprg' such that LaTeX will report multiple
1826 errors; do not stop when the first error has occurred: >
1827 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*}
1828<
1829 Start of multi-line error messages: >
1830 :set efm=%E!\ LaTeX\ %trror:\ %m,
1831 \%E!\ %m,
1832< Start of multi-line warning messages; the first two also
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001833 include the line number. Meaning of some regular expressions:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 - "%.%#" (".*") matches a (possibly empty) string
1835 - "%*\\d" ("\d\+") matches a number >
1836 \%+WLaTeX\ %.%#Warning:\ %.%#line\ %l%.%#,
1837 \%+W%.%#\ at\ lines\ %l--%*\\d,
1838 \%WLaTeX\ %.%#Warning:\ %m,
1839< Possible continuations of error/warning messages; the first
1840 one also includes the line number: >
1841 \%Cl.%l\ %m,
1842 \%+C\ \ %m.,
1843 \%+C%.%#-%.%#,
1844 \%+C%.%#[]%.%#,
1845 \%+C[]%.%#,
1846 \%+C%.%#%[{}\\]%.%#,
1847 \%+C<%.%#>%.%#,
1848 \%C\ \ %m,
1849< Lines that match the following patterns do not contain any
1850 important information; do not include them in messages: >
1851 \%-GSee\ the\ LaTeX%m,
1852 \%-GType\ \ H\ <return>%m,
1853 \%-G\ ...%.%#,
1854 \%-G%.%#\ (C)\ %.%#,
1855 \%-G(see\ the\ transcript%.%#),
1856< Generally exclude any empty or whitespace-only line from
1857 being displayed: >
1858 \%-G\\s%#,
1859< The LaTeX output log does not specify the names of erroneous
1860 source files per line; rather they are given globally,
1861 enclosed in parentheses.
1862 The following patterns try to match these names and store
1863 them in an internal stack. The patterns possibly scan over
1864 the same input line (one after another), the trailing "%r"
1865 conversion indicates the "rest" of the line that will be
1866 parsed in the next go until the end of line is reached.
1867
1868 Overread a file name enclosed in '('...')'; do not push it
1869 on a stack since the file apparently does not contain any
1870 error: >
1871 \%+O(%f)%r,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001872< Push a file name onto the stack. The name is given after '(': >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 \%+P(%f%r,
1874 \%+P\ %\\=(%f%r,
1875 \%+P%*[^()](%f%r,
1876 \%+P[%\\d%[^()]%#(%f%r,
1877< Pop the last stored file name when a ')' is scanned: >
1878 \%+Q)%r,
1879 \%+Q%*[^()])%r,
1880 \%+Q[%\\d%*[^()])%r
1881
1882Note that in some cases file names in the LaTeX output log cannot be parsed
1883properly. The parser might have been messed up by unbalanced parentheses
1884then. The above example tries to catch the most relevant cases only.
1885You can customize the given setting to suit your own purposes, for example,
1886all the annoying "Overfull ..." warnings could be excluded from being
1887recognized as an error.
1888Alternatively to filtering the LaTeX compiler output, it is also possible
1889to directly read the *.log file that is produced by the [La]TeX compiler.
1890This contains even more useful information about possible error causes.
1891However, to properly parse such a complex file, an external filter should
1892be used. See the description further above how to make such a filter known
1893by Vim.
1894
1895 *errorformat-Perl*
1896In $VIMRUNTIME/tools you can find the efm_perl.pl script, which filters Perl
1897error messages into a format that quickfix mode will understand. See the
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001898start of the file about how to use it. (This script is deprecated, see
1899|compiler-perl|.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900
1901
1902
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001903 vim:tw=78:ts=8:noet:ft=help:norl: