blob: ca00278bc31c19a9eafcdb68f7d22eb4c9004b99 [file] [log] [blame]
Bram Moolenaarc51cf032022-02-26 12:25:45 +00001*quickfix.txt* For Vim version 8.2. Last change: 2022 Feb 22
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|
Bram Moolenaar858ba062020-05-31 23:11:59 +02001810. Customizing the quickfix window |quickfix-window-function|
Bram Moolenaar071d4272004-06-13 20:20:40 +000019
Bram Moolenaar071d4272004-06-13 20:20:40 +000020The quickfix commands are not available when the |+quickfix| feature was
21disabled at compile time.
22
23=============================================================================
241. Using QuickFix commands *quickfix* *Quickfix* *E42*
25
26Vim has a special mode to speedup the edit-compile-edit cycle. This is
27inspired by the quickfix option of the Manx's Aztec C compiler on the Amiga.
28The idea is to save the error messages from the compiler in a file and use Vim
29to jump to the errors one by one. You can examine each problem and fix it,
30without having to remember all the error messages.
31
Bram Moolenaar05159a02005-02-26 23:04:13 +000032In Vim the quickfix commands are used more generally to find a list of
33positions in files. For example, |:vimgrep| finds pattern matches. You can
Bram Moolenaar2641f772005-03-25 21:58:17 +000034use the positions in a script with the |getqflist()| function. Thus you can
Bram Moolenaar05159a02005-02-26 23:04:13 +000035do a lot more than the edit/compile/fix cycle!
36
Bram Moolenaare18dbe82016-07-02 21:42:23 +020037If you have the error messages in a file you can start Vim with: >
38 vim -q filename
39
40From inside Vim an easy way to run a command and handle the output is with the
41|:make| command (see below).
42
43The 'errorformat' option should be set to match the error messages from your
Bram Moolenaar071d4272004-06-13 20:20:40 +000044compiler (see |errorformat| below).
45
Bram Moolenaarb4d5fba2017-09-11 19:31:28 +020046 *quickfix-ID*
47Each quickfix list has a unique identifier called the quickfix ID and this
Bram Moolenaard473c8c2018-08-11 18:00:22 +020048number will not change within a Vim session. The |getqflist()| function can be
Bram Moolenaarb4d5fba2017-09-11 19:31:28 +020049used to get the identifier assigned to a list. There is also a quickfix list
50number which may change whenever more than ten lists are added to a quickfix
51stack.
52
Bram Moolenaard12f5c12006-01-25 22:10:52 +000053 *location-list* *E776*
Bram Moolenaar036986f2017-03-16 17:41:02 +010054A location list is a window-local quickfix list. You get one after commands
55like `:lvimgrep`, `:lgrep`, `:lhelpgrep`, `:lmake`, etc., which create a
56location list instead of a quickfix list as the corresponding `:vimgrep`,
57`:grep`, `:helpgrep`, `:make` do.
Bram Moolenaar5b69c222019-01-11 14:50:06 +010058 *location-list-file-window*
Bram Moolenaar036986f2017-03-16 17:41:02 +010059A location list is associated with a window and each window can have a
60separate location list. A location list can be associated with only one
61window. The location list is independent of the quickfix list.
Bram Moolenaard12f5c12006-01-25 22:10:52 +000062
Bram Moolenaar280f1262006-01-30 00:14:18 +000063When a window with a location list is split, the new window gets a copy of the
Bram Moolenaare18dbe82016-07-02 21:42:23 +020064location list. When there are no longer any references to a location list,
65the location list is destroyed.
Bram Moolenaar280f1262006-01-30 00:14:18 +000066
Bram Moolenaarb254af32017-12-18 19:48:58 +010067 *quickfix-changedtick*
68Every quickfix and location list has a read-only changedtick variable that
69tracks the total number of changes made to the list. Every time the quickfix
70list is modified, this count is incremented. This can be used to perform an
Bram Moolenaard473c8c2018-08-11 18:00:22 +020071action only when the list has changed. The |getqflist()| and |getloclist()|
Bram Moolenaarb254af32017-12-18 19:48:58 +010072functions can be used to query the current value of changedtick. You cannot
73change the changedtick variable.
74
Bram Moolenaar280f1262006-01-30 00:14:18 +000075The following quickfix commands can be used. The location list commands are
76similar to the quickfix commands, replacing the 'c' prefix in the quickfix
77command with 'l'.
Bram Moolenaar071d4272004-06-13 20:20:40 +000078
Bram Moolenaare18c0b32016-03-20 21:08:34 +010079 *E924*
80If the current window was closed by an |autocommand| while processing a
81location list command, it will be aborted.
82
Bram Moolenaarffec3c52016-03-23 20:55:42 +010083 *E925* *E926*
84If the current quickfix or location list was changed by an |autocommand| while
85processing a quickfix or location list command, it will be aborted.
86
Bram Moolenaar071d4272004-06-13 20:20:40 +000087 *:cc*
88:cc[!] [nr] Display error [nr]. If [nr] is omitted, the same
Bram Moolenaar25190db2019-05-04 15:05:28 +020089:[nr]cc[!] error is displayed again. Without [!] this doesn't
Bram Moolenaar071d4272004-06-13 20:20:40 +000090 work when jumping to another buffer, the current buffer
91 has been changed, there is the only window for the
92 buffer and both 'hidden' and 'autowrite' are off.
93 When jumping to another buffer with [!] any changes to
94 the current buffer are lost, unless 'hidden' is set or
95 there is another window for this buffer.
96 The 'switchbuf' settings are respected when jumping
97 to a buffer.
Bram Moolenaar25190db2019-05-04 15:05:28 +020098 When used in the quickfix window the line number can
99 be used, including "." for the current line and "$"
100 for the last line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000102 *:ll*
103:ll[!] [nr] Same as ":cc", except the location list for the
Bram Moolenaar25190db2019-05-04 15:05:28 +0200104:[nr]ll[!] current window is used instead of the quickfix list.
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000105
Bram Moolenaar61da1bf2019-06-06 12:14:49 +0200106 *:cn* *:cne* *:cnext* *E553*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107:[count]cn[ext][!] Display the [count] next error in the list that
108 includes a file name. If there are no file names at
109 all, go to the [count] next error. See |:cc| for
110 [!] and 'switchbuf'.
111
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000112 *:lne* *:lnext*
113:[count]lne[xt][!] Same as ":cnext", except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000114 current window is used instead of the quickfix list.
115
Bram Moolenaard09091d2019-01-17 16:07:22 +0100116:[count]cN[ext][!] *:cp* *:cprevious* *:cprev* *:cN* *:cNext*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117:[count]cp[revious][!] Display the [count] previous error in the list that
118 includes a file name. If there are no file names at
119 all, go to the [count] previous error. See |:cc| for
120 [!] and 'switchbuf'.
121
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000122
Bram Moolenaard09091d2019-01-17 16:07:22 +0100123:[count]lN[ext][!] *:lp* *:lprevious* *:lprev* *:lN* *:lNext*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000124:[count]lp[revious][!] Same as ":cNext" and ":cprevious", except the location
125 list for the current window is used instead of the
126 quickfix list.
127
Bram Moolenaar3ff33112019-05-03 21:56:35 +0200128 *:cabo* *:cabove*
129:[count]cabo[ve] Go to the [count] error above the current line in the
130 current buffer. If [count] is omitted, then 1 is
131 used. If there are no errors, then an error message
132 is displayed. Assumes that the entries in a quickfix
133 list are sorted by their buffer number and line
134 number. If there are multiple errors on the same line,
135 then only the first entry is used. If [count] exceeds
136 the number of entries above the current line, then the
137 first error in the file is selected.
138
139 *:lab* *:labove*
140:[count]lab[ove] Same as ":cabove", except the location list for the
141 current window is used instead of the quickfix list.
142
Bram Moolenaar8ffc7c82019-05-05 21:00:26 +0200143 *:cbel* *:cbelow*
144:[count]cbel[ow] Go to the [count] error below the current line in the
Bram Moolenaar3ff33112019-05-03 21:56:35 +0200145 current buffer. If [count] is omitted, then 1 is
146 used. If there are no errors, then an error message
147 is displayed. Assumes that the entries in a quickfix
148 list are sorted by their buffer number and line
149 number. If there are multiple errors on the same
150 line, then only the first entry is used. If [count]
151 exceeds the number of entries below the current line,
152 then the last error in the file is selected.
153
Bram Moolenaarcf6a55c2019-05-05 15:02:30 +0200154 *:lbel* *:lbelow*
155:[count]lbel[ow] Same as ":cbelow", except the location list for the
156 current window is used instead of the quickfix list.
157
158 *:cbe* *:cbefore*
159:[count]cbe[fore] Go to the [count] error before the current cursor
160 position in the current buffer. If [count] is
161 omitted, then 1 is used. If there are no errors, then
162 an error message is displayed. Assumes that the
163 entries in a quickfix list are sorted by their buffer,
164 line and column numbers. If [count] exceeds the
165 number of entries before the current position, then
166 the first error in the file is selected.
167
Bram Moolenaar8ffc7c82019-05-05 21:00:26 +0200168 *:lbe* *:lbefore*
169:[count]lbe[fore] Same as ":cbefore", except the location list for the
Bram Moolenaarcf6a55c2019-05-05 15:02:30 +0200170 current window is used instead of the quickfix list.
171
172 *:caf* *:cafter*
173:[count]caf[ter] Go to the [count] error after the current cursor
174 position in the current buffer. If [count] is
175 omitted, then 1 is used. If there are no errors, then
176 an error message is displayed. Assumes that the
177 entries in a quickfix list are sorted by their buffer,
178 line and column numbers. If [count] exceeds the
179 number of entries after the current position, then
180 the last error in the file is selected.
181
182 *:laf* *:lafter*
183:[count]laf[ter] Same as ":cafter", except the location list for the
Bram Moolenaar3ff33112019-05-03 21:56:35 +0200184 current window is used instead of the quickfix list.
185
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 *:cnf* *:cnfile*
187:[count]cnf[ile][!] Display the first error in the [count] next file in
188 the list that includes a file name. If there are no
189 file names at all or if there is no next file, go to
190 the [count] next error. See |:cc| for [!] and
191 'switchbuf'.
192
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000193 *:lnf* *:lnfile*
194:[count]lnf[ile][!] Same as ":cnfile", except the location list for the
195 current window is used instead of the quickfix list.
196
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197:[count]cNf[ile][!] *:cpf* *:cpfile* *:cNf* *:cNfile*
198:[count]cpf[ile][!] Display the last error in the [count] previous file in
199 the list that includes a file name. If there are no
200 file names at all or if there is no next file, go to
201 the [count] previous error. See |:cc| for [!] and
202 'switchbuf'.
203
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000204
205:[count]lNf[ile][!] *:lpf* *:lpfile* *:lNf* *:lNfile*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000206:[count]lpf[ile][!] Same as ":cNfile" and ":cpfile", except the location
207 list for the current window is used instead of the
208 quickfix list.
209
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210 *:crewind* *:cr*
211:cr[ewind][!] [nr] Display error [nr]. If [nr] is omitted, the FIRST
212 error is displayed. See |:cc|.
213
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000214 *:lrewind* *:lr*
215:lr[ewind][!] [nr] Same as ":crewind", except the location list for the
216 current window is used instead of the quickfix list.
217
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 *:cfirst* *:cfir*
219:cfir[st][!] [nr] Same as ":crewind".
220
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000221 *:lfirst* *:lfir*
222:lfir[st][!] [nr] Same as ":lrewind".
223
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 *:clast* *:cla*
225:cla[st][!] [nr] Display error [nr]. If [nr] is omitted, the LAST
226 error is displayed. See |:cc|.
227
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000228 *:llast* *:lla*
229:lla[st][!] [nr] Same as ":clast", except the location list for the
230 current window is used instead of the quickfix list.
231
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232 *:cq* *:cquit*
Bram Moolenaar1860bde2020-01-06 21:47:21 +0100233:cq[uit][!]
234:{N}cq[uit][!]
235:cq[uit][!] {N} Quit Vim with error code {N}. {N} defaults to one.
236 Useful when Vim is called from another program:
237 e.g., a compiler will not compile the same file again,
238 `git commit` will abort the committing process, `fc`
239 (built-in for shells like bash and zsh) will not
Bram Moolenaarade0d392020-01-21 22:33:58 +0100240 execute the command, etc.
Bram Moolenaar1860bde2020-01-06 21:47:21 +0100241 {N} can also be zero, in which case Vim exits
242 normally.
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000243 WARNING: All changes in files are lost! Also when the
244 [!] is not used. It works like ":qall!" |:qall|,
245 except that Vim returns a non-zero exit code.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000247 *:cf* *:cfi* *:cfile*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248:cf[ile][!] [errorfile] Read the error file and jump to the first error.
249 This is done automatically when Vim is started with
250 the -q option. You can use this command when you
251 keep Vim running while compiling. If you give the
252 name of the errorfile, the 'errorfile' option will
253 be set to [errorfile]. See |:cc| for [!].
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100254 If the encoding of the error file differs from the
255 'encoding' option, you can use the 'makeencoding'
256 option to specify the encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257
Bram Moolenaar61da1bf2019-06-06 12:14:49 +0200258 *:lf* *:lfi* *:lfile*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000259:lf[ile][!] [errorfile] Same as ":cfile", except the location list for the
260 current window is used instead of the quickfix list.
261 You can not use the -q command-line option to set
262 the location list.
263
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000264
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000265:cg[etfile] [errorfile] *:cg* *:cgetfile*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 Read the error file. Just like ":cfile" but don't
267 jump to the first error.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100268 If the encoding of the error file differs from the
269 'encoding' option, you can use the 'makeencoding'
270 option to specify the encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000272
Bram Moolenaar61da1bf2019-06-06 12:14:49 +0200273:lg[etfile] [errorfile] *:lg* *:lge* *:lgetfile*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000274 Same as ":cgetfile", except the location list for the
275 current window is used instead of the quickfix list.
276
Bram Moolenaar4770d092006-01-12 23:22:24 +0000277 *:caddf* *:caddfile*
278:caddf[ile] [errorfile] Read the error file and add the errors from the
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000279 errorfile to the current quickfix list. If a quickfix
280 list is not present, then a new list is created.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100281 If the encoding of the error file differs from the
282 'encoding' option, you can use the 'makeencoding'
283 option to specify the encoding.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000284
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000285 *:laddf* *:laddfile*
286:laddf[ile] [errorfile] Same as ":caddfile", except the location list for the
287 current window is used instead of the quickfix list.
288
Bram Moolenaar86b68352004-12-27 21:59:20 +0000289 *:cb* *:cbuffer* *E681*
Bram Moolenaar6cbce9d2007-03-08 10:01:03 +0000290:cb[uffer][!] [bufnr] Read the error list from the current buffer.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000291 When [bufnr] is given it must be the number of a
292 loaded buffer. That buffer will then be used instead
293 of the current buffer.
294 A range can be specified for the lines to be used.
295 Otherwise all lines in the buffer are used.
Bram Moolenaar6cbce9d2007-03-08 10:01:03 +0000296 See |:cc| for [!].
Bram Moolenaar86b68352004-12-27 21:59:20 +0000297
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000298 *:lb* *:lbuffer*
Bram Moolenaar6cbce9d2007-03-08 10:01:03 +0000299:lb[uffer][!] [bufnr] Same as ":cbuffer", except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000300 current window is used instead of the quickfix list.
301
Bram Moolenaardb552d602006-03-23 22:59:57 +0000302 *:cgetb* *:cgetbuffer*
303:cgetb[uffer] [bufnr] Read the error list from the current buffer. Just
304 like ":cbuffer" but don't jump to the first error.
305
306 *:lgetb* *:lgetbuffer*
307:lgetb[uffer] [bufnr] Same as ":cgetbuffer", except the location list for
308 the current window is used instead of the quickfix
309 list.
310
Bram Moolenaar61da1bf2019-06-06 12:14:49 +0200311 *:cad* *:cadd* *:caddbuffer*
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100312:cad[dbuffer] [bufnr] Read the error list from the current buffer and add
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +0000313 the errors to the current quickfix list. If a
314 quickfix list is not present, then a new list is
315 created. Otherwise, same as ":cbuffer".
316
317 *:laddb* *:laddbuffer*
318:laddb[uffer] [bufnr] Same as ":caddbuffer", except the location list for
319 the current window is used instead of the quickfix
320 list.
321
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000322 *:cex* *:cexpr* *E777*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000323:cex[pr][!] {expr} Create a quickfix list using the result of {expr} and
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200324 jump to the first error.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100325 If {expr} is a String, then each newline terminated
Bram Moolenaard6357e82016-01-21 21:48:09 +0100326 line in the String is processed using the global value
327 of 'errorformat' and the result is added to the
328 quickfix list.
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200329 If {expr} is a List, then each String item in the list
330 is processed and added to the quickfix list. Non
331 String items in the List are ignored.
332 See |:cc| for [!].
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000333 Examples: >
334 :cexpr system('grep -n xyz *')
335 :cexpr getline(1, '$')
336<
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000337 *:lex* *:lexpr*
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200338:lex[pr][!] {expr} Same as |:cexpr|, except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000339 current window is used instead of the quickfix list.
340
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000341 *:cgete* *:cgetexpr*
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000342:cgete[xpr] {expr} Create a quickfix list using the result of {expr}.
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200343 Just like |:cexpr|, but don't jump to the first error.
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000344
345 *:lgete* *:lgetexpr*
Bram Moolenaar20f90cf2011-05-19 12:22:51 +0200346:lgete[xpr] {expr} Same as |:cgetexpr|, except the location list for the
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000347 current window is used instead of the quickfix list.
348
Bram Moolenaara6878372014-03-22 21:02:50 +0100349 *:cadde* *:caddexpr*
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100350:cadde[xpr] {expr} Evaluate {expr} and add the resulting lines to the
Bram Moolenaar4770d092006-01-12 23:22:24 +0000351 current quickfix list. If a quickfix list is not
352 present, then a new list is created. The current
353 cursor position will not be changed. See |:cexpr| for
354 more information.
355 Example: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000356 :g/mypattern/caddexpr expand("%") .. ":" .. line(".") .. ":" .. getline(".")
Bram Moolenaar4770d092006-01-12 23:22:24 +0000357<
Bram Moolenaar61da1bf2019-06-06 12:14:49 +0200358 *:lad* *:addd* *:laddexpr*
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000359:lad[dexpr] {expr} Same as ":caddexpr", except the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000360 current window is used instead of the quickfix list.
361
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 *:cl* *:clist*
363:cl[ist] [from] [, [to]]
364 List all errors that are valid |quickfix-valid|.
365 If numbers [from] and/or [to] are given, the respective
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000366 range of errors is listed. A negative number counts
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 from the last error backwards, -1 being the last error.
368 The 'switchbuf' settings are respected when jumping
369 to a buffer.
Bram Moolenaara9defad2018-07-08 18:20:24 +0200370 The |:filter| command can be used to display only the
371 quickfix entries matching a supplied pattern. The
372 pattern is matched against the filename, module name,
373 pattern and text of the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374
Bram Moolenaare8fea072016-07-01 14:48:27 +0200375:cl[ist] +{count} List the current and next {count} valid errors. This
376 is similar to ":clist from from+count", where "from"
377 is the current error position.
378
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379:cl[ist]! [from] [, [to]]
380 List all errors.
381
Bram Moolenaare8fea072016-07-01 14:48:27 +0200382:cl[ist]! +{count} List the current and next {count} error lines. This
383 is useful to see unrecognized lines after the current
384 one. For example, if ":clist" shows:
385 8384 testje.java:252: error: cannot find symbol ~
386 Then using ":cl! +3" shows the reason:
387 8384 testje.java:252: error: cannot find symbol ~
388 8385: ZexitCode = Fmainx(); ~
389 8386: ^ ~
390 8387: symbol: method Fmainx() ~
391
392:lli[st] [from] [, [to]] *:lli* *:llist*
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000393 Same as ":clist", except the location list for the
394 current window is used instead of the quickfix list.
395
396:lli[st]! [from] [, [to]]
397 List all the entries in the location list for the
398 current window.
399
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400If you insert or delete lines, mostly the correct error location is still
401found because hidden marks are used. Sometimes, when the mark has been
402deleted for some reason, the message "line changed" is shown to warn you that
403the error location may not be correct. If you quit Vim and start again the
404marks are lost and the error locations may not be correct anymore.
405
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100406Two autocommands are available for running commands before and after a
407quickfix command (':make', ':grep' and so on) is executed. See
408|QuickFixCmdPre| and |QuickFixCmdPost| for details.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000409
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000410 *QuickFixCmdPost-example*
411When 'encoding' differs from the locale, the error messages may have a
412different encoding from what Vim is using. To convert the messages you can
413use this code: >
414 function QfMakeConv()
415 let qflist = getqflist()
416 for i in qflist
417 let i.text = iconv(i.text, "cp936", "utf-8")
418 endfor
419 call setqflist(qflist)
420 endfunction
421
422 au QuickfixCmdPost make call QfMakeConv()
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100423Another option is using 'makeencoding'.
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000424
Bram Moolenaar74240d32017-12-10 15:26:15 +0100425 *quickfix-title*
426Every quickfix and location list has a title. By default the title is set to
427the command that created the list. The |getqflist()| and |getloclist()|
428functions can be used to get the title of a quickfix and a location list
429respectively. The |setqflist()| and |setloclist()| functions can be used to
430modify the title of a quickfix and location list respectively. Examples: >
431 call setqflist([], 'a', {'title' : 'Cmd output'})
432 echo getqflist({'title' : 1})
433 call setloclist(3, [], 'a', {'title' : 'Cmd output'})
434 echo getloclist(3, {'title' : 1})
435<
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100436 *quickfix-index*
437When you jump to a quickfix/location list entry using any of the quickfix
Bram Moolenaard09091d2019-01-17 16:07:22 +0100438commands (e.g. |:cc|, |:cnext|, |:cprev|, etc.), that entry becomes the
439currently selected entry. The index of the currently selected entry in a
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100440quickfix/location list can be obtained using the getqflist()/getloclist()
441functions. Examples: >
442 echo getqflist({'idx' : 0}).idx
443 echo getqflist({'id' : qfid, 'idx' : 0}).idx
444 echo getloclist(2, {'idx' : 0}).idx
445<
446For a new quickfix list, the first entry is selected and the index is 1. Any
447entry in any quickfix/location list can be set as the currently selected entry
448using the setqflist() function. Examples: >
449 call setqflist([], 'a', {'idx' : 12})
450 call setqflist([], 'a', {'id' : qfid, 'idx' : 7})
451 call setloclist(1, [], 'a', {'idx' : 7})
452<
Bram Moolenaar74240d32017-12-10 15:26:15 +0100453 *quickfix-size*
454You can get the number of entries (size) in a quickfix and a location list
455using the |getqflist()| and |getloclist()| functions respectively. Examples: >
456 echo getqflist({'size' : 1})
457 echo getloclist(5, {'size' : 1})
458<
459 *quickfix-context*
460Any Vim type can be associated as a context with a quickfix or location list.
461The |setqflist()| and the |setloclist()| functions can be used to associate a
462context with a quickfix and a location list respectively. The |getqflist()|
463and the |getloclist()| functions can be used to retrieve the context of a
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100464quickfix and a location list respectively. This is useful for a Vim plugin
Bram Moolenaar74240d32017-12-10 15:26:15 +0100465dealing with multiple quickfix/location lists.
466Examples: >
467
468 let somectx = {'name' : 'Vim', 'type' : 'Editor'}
469 call setqflist([], 'a', {'context' : somectx})
470 echo getqflist({'context' : 1})
471
472 let newctx = ['red', 'green', 'blue']
473 call setloclist(2, [], 'a', {'id' : qfid, 'context' : newctx})
474 echo getloclist(2, {'id' : qfid, 'context' : 1})
475<
476 *quickfix-parse*
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100477You can parse a list of lines using 'errorformat' without creating or
478modifying a quickfix list using the |getqflist()| function. Examples: >
Bram Moolenaar74240d32017-12-10 15:26:15 +0100479 echo getqflist({'lines' : ["F1:10:Line10", "F2:20:Line20"]})
480 echo getqflist({'lines' : systemlist('grep -Hn quickfix *')})
481This returns a dictionary where the 'items' key contains the list of quickfix
482entries parsed from lines. The following shows how to use a custom
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100483'errorformat' to parse the lines without modifying the 'errorformat' option: >
Bram Moolenaar74240d32017-12-10 15:26:15 +0100484 echo getqflist({'efm' : '%f#%l#%m', 'lines' : ['F1#10#Line']})
485<
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000486
Bram Moolenaar12969c02015-09-08 23:36:10 +0200487EXECUTE A COMMAND IN ALL THE BUFFERS IN QUICKFIX OR LOCATION LIST:
488 *:cdo*
489:cdo[!] {cmd} Execute {cmd} in each valid entry in the quickfix list.
490 It works like doing this: >
491 :cfirst
492 :{cmd}
493 :cnext
494 :{cmd}
495 etc.
496< When the current file can't be |abandon|ed and the [!]
497 is not present, the command fails.
Bram Moolenaar96f45c02019-10-26 19:53:45 +0200498 When going to the next entry fails execution stops.
Bram Moolenaar12969c02015-09-08 23:36:10 +0200499 The last buffer (or where an error occurred) becomes
500 the current buffer.
501 {cmd} can contain '|' to concatenate several commands.
502
503 Only valid entries in the quickfix list are used.
504 A range can be used to select entries, e.g.: >
505 :10,$cdo cmd
506< To skip entries 1 to 9.
507
508 Note: While this command is executing, the Syntax
509 autocommand event is disabled by adding it to
510 'eventignore'. This considerably speeds up editing
511 each buffer.
Bram Moolenaar12969c02015-09-08 23:36:10 +0200512 Also see |:bufdo|, |:tabdo|, |:argdo|, |:windo|,
513 |:ldo|, |:cfdo| and |:lfdo|.
514
515 *:cfdo*
516:cfdo[!] {cmd} Execute {cmd} in each file in the quickfix list.
517 It works like doing this: >
518 :cfirst
519 :{cmd}
520 :cnfile
521 :{cmd}
522 etc.
523< Otherwise it works the same as `:cdo`.
Bram Moolenaar12969c02015-09-08 23:36:10 +0200524
525 *:ldo*
526:ld[o][!] {cmd} Execute {cmd} in each valid entry in the location list
527 for the current window.
528 It works like doing this: >
529 :lfirst
530 :{cmd}
531 :lnext
532 :{cmd}
533 etc.
534< Only valid entries in the location list are used.
535 Otherwise it works the same as `:cdo`.
Bram Moolenaar12969c02015-09-08 23:36:10 +0200536
537 *:lfdo*
538:lfdo[!] {cmd} Execute {cmd} in each file in the location list for
539 the current window.
540 It works like doing this: >
541 :lfirst
542 :{cmd}
543 :lnfile
544 :{cmd}
545 etc.
546< Otherwise it works the same as `:ldo`.
Bram Moolenaar12969c02015-09-08 23:36:10 +0200547
Bram Moolenaar8ffc7c82019-05-05 21:00:26 +0200548FILTERING A QUICKFIX OR LOCATION LIST:
549 *cfilter-plugin* *:Cfilter* *:Lfilter*
550If you have too many entries in a quickfix list, you can use the cfilter
551plugin to reduce the number of entries. Load the plugin with: >
552
553 packadd cfilter
554
555Then you can use the following commands to filter a quickfix/location list: >
556
557 :Cfilter[!] /{pat}/
558 :Lfilter[!] /{pat}/
559
560The |:Cfilter| command creates a new quickfix list from the entries matching
561{pat} in the current quickfix list. {pat} is a Vim |regular-expression|
562pattern. Both the file name and the text of the entries are matched against
563{pat}. If the optional ! is supplied, then the entries not matching {pat} are
564used. The pattern can be optionally enclosed using one of the following
565characters: ', ", /. If the pattern is empty, then the last used search
566pattern is used.
567
568The |:Lfilter| command does the same as |:Cfilter| but operates on the current
569location list.
570
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571=============================================================================
5722. The error window *quickfix-window*
573
Bram Moolenaar7fd73202010-07-25 16:58:46 +0200574 *:cope* *:copen* *w:quickfix_title*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575:cope[n] [height] Open a window to show the current list of errors.
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100576
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 When [height] is given, the window becomes that high
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100578 (if there is room). When [height] is omitted the
579 window is made ten lines high.
580
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 If there already is a quickfix window, it will be made
582 the current window. It is not possible to open a
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100583 second quickfix window. If [height] is given the
584 existing window will be resized to it.
585
Bram Moolenaar647e24b2019-03-17 16:39:46 +0100586 *quickfix-buffer*
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100587 The window will contain a special buffer, with
588 'buftype' equal to "quickfix". Don't change this!
589 The window will have the w:quickfix_title variable set
590 which will indicate the command that produced the
591 quickfix list. This can be used to compose a custom
592 status line if the value of 'statusline' is adjusted
Bram Moolenaara8788f42017-07-19 17:06:20 +0200593 properly. Whenever this buffer is modified by a
594 quickfix command or function, the |b:changedtick|
Bram Moolenaar647e24b2019-03-17 16:39:46 +0100595 variable is incremented. You can get the number of
596 this buffer using the getqflist() and getloclist()
597 functions by passing the 'qfbufnr' item. For a
598 location list, this buffer is wiped out when the
599 location list is removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000601 *:lop* *:lopen*
602:lop[en] [height] Open a window to show the location list for the
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000603 current window. Works only when the location list for
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000604 the current window is present. You can have more than
605 one location window opened at a time. Otherwise, it
Bram Moolenaar280f1262006-01-30 00:14:18 +0000606 acts the same as ":copen".
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000607
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 *:ccl* *:cclose*
609:ccl[ose] Close the quickfix window.
610
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000611 *:lcl* *:lclose*
612:lcl[ose] Close the window showing the location list for the
613 current window.
614
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 *:cw* *:cwindow*
616:cw[indow] [height] Open the quickfix window when there are recognized
617 errors. If the window is already open and there are
618 no recognized errors, close the window.
619
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000620 *:lw* *:lwindow*
621:lw[indow] [height] Same as ":cwindow", except use the window showing the
622 location list for the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623
Bram Moolenaar537ef082016-07-09 17:56:19 +0200624 *:cbo* *:cbottom*
Bram Moolenaardcb17002016-07-07 18:58:59 +0200625:cbo[ttom] Put the cursor in the last line of the quickfix window
626 and scroll to make it visible. This is useful for
627 when errors are added by an asynchronous callback.
628 Only call it once in a while if there are many
629 updates to avoid a lot of redrawing.
630
Bram Moolenaar537ef082016-07-09 17:56:19 +0200631 *:lbo* *:lbottom*
632:lbo[ttom] Same as ":cbottom", except use the window showing the
633 location list for the current window.
634
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635Normally the quickfix window is at the bottom of the screen. If there are
636vertical splits, it's at the bottom of the rightmost column of windows. To
637make it always occupy the full width: >
638 :botright cwindow
639You can move the window around with |window-moving| commands.
640For example, to move it to the top: CTRL-W K
641The 'winfixheight' option will be set, which means that the window will mostly
642keep its height, ignoring 'winheight' and 'equalalways'. You can change the
643height manually (e.g., by dragging the status line above it with the mouse).
644
645In the quickfix window, each line is one error. The line number is equal to
Bram Moolenaar21020352017-06-13 17:21:04 +0200646the error number. The current entry is highlighted with the QuickFixLine
647highlighting. You can change it to your liking, e.g.: >
648 :hi QuickFixLine ctermbg=Yellow guibg=Yellow
649
650You can use ":.cc" to jump to the error under the cursor.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000651Hitting the <Enter> key or double-clicking the mouse on a line has the same
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652effect. The file containing the error is opened in the window above the
653quickfix window. If there already is a window for that file, it is used
654instead. If the buffer in the used window has changed, and the error is in
655another file, jumping to the error will fail. You will first have to make
656sure the window contains a buffer which can be abandoned.
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000657
658The following steps are used to find a window to open the file selected from
659the quickfix window:
6601. If 'switchbuf' contains "usetab", then find a window in any tabpage
661 (starting with the first tabpage) that has the selected file and jump to
662 it.
6632. Otherwise find a window displaying the selected file in the current tab
664 page (starting with the window before the quickfix window) and use it.
6653. Otherwise find a window displaying a normal buffer ('buftype' is empty)
666 starting with the window before the quickfix window. If a window is found,
667 open the file in that window.
6684. If a usable window is not found and 'switchbuf' contains "uselast", then
669 open the file in the last used window.
6705. Otherwise open the file in the window before the quickfix window. If there
671 is no previous window, then open the file in the next window.
6726. If a usable window is not found in the above steps, then create a new
673 horizontally split window above the quickfix window and open the file.
674
Bram Moolenaar05159a02005-02-26 23:04:13 +0000675 *CTRL-W_<Enter>* *CTRL-W_<CR>*
676You can use CTRL-W <Enter> to open a new window and jump to the error there.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677
678When the quickfix window has been filled, two autocommand events are
679triggered. First the 'filetype' option is set to "qf", which triggers the
Bram Moolenaar85850f32019-07-19 22:05:51 +0200680FileType event (also see |qf.vim|). Then the BufReadPost event is triggered,
681using "quickfix" for the buffer name. This can be used to perform some action
682on the listed errors. Example: >
Bram Moolenaar280f1262006-01-30 00:14:18 +0000683 au BufReadPost quickfix setlocal modifiable
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000684 \ | silent exe 'g/^/s//\=line(".") .. " "/'
Bram Moolenaar280f1262006-01-30 00:14:18 +0000685 \ | setlocal nomodifiable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686This prepends the line number to each line. Note the use of "\=" in the
687substitute string of the ":s" command, which is used to evaluate an
688expression.
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000689The BufWinEnter event is also triggered, again using "quickfix" for the buffer
690name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691
Bram Moolenaar82af8712016-06-04 20:20:29 +0200692Note: When adding to an existing quickfix list the autocommand are not
693triggered.
694
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695Note: Making changes in the quickfix window has no effect on the list of
696errors. 'modifiable' is off to avoid making changes. If you delete or insert
697lines anyway, the relation between the text and the error number is messed up.
698If you really want to do this, you could write the contents of the quickfix
699window to a file and use ":cfile" to have it parsed and used as the new error
700list.
701
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000702 *location-list-window*
Bram Moolenaar280f1262006-01-30 00:14:18 +0000703The location list window displays the entries in a location list. When you
704open a location list window, it is created below the current window and
705displays the location list for the current window. The location list window
706is similar to the quickfix window, except that you can have more than one
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000707location list window open at a time. When you use a location list command in
708this window, the displayed location list is used.
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000709
Bram Moolenaar280f1262006-01-30 00:14:18 +0000710When you select a file from the location list window, the following steps are
711used to find a window to edit the file:
712
7131. If a window with the location list displayed in the location list window is
714 present, then the file is opened in that window.
7152. If the above step fails and if the file is already opened in another
716 window, then that window is used.
7173. If the above step fails then an existing window showing a buffer with
718 'buftype' not set is used.
7194. If the above step fails, then the file is edited in a new window.
720
721In all of the above cases, if the location list for the selected window is not
722yet set, then it is set to the location list displayed in the location list
723window.
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000724
Bram Moolenaar74240d32017-12-10 15:26:15 +0100725 *quickfix-window-ID*
726You can use the |getqflist()| and |getloclist()| functions to obtain the
727window ID of the quickfix window and location list window respectively (if
728present). Examples: >
729 echo getqflist({'winid' : 1}).winid
730 echo getloclist(2, {'winid' : 1}).winid
731<
Bram Moolenaar15142e22018-04-30 22:19:58 +0200732 *getqflist-examples*
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200733The |getqflist()| and |getloclist()| functions can be used to get the various
Bram Moolenaar15142e22018-04-30 22:19:58 +0200734attributes of a quickfix and location list respectively. Some examples for
735using these functions are below:
736>
737 " get the title of the current quickfix list
738 :echo getqflist({'title' : 0}).title
739
740 " get the identifier of the current quickfix list
741 :let qfid = getqflist({'id' : 0}).id
742
Bram Moolenaar78ddc062018-05-15 21:56:34 +0200743 " get the identifier of the fourth quickfix list in the stack
744 :let qfid = getqflist({'nr' : 4, 'id' : 0}).id
745
746 " check whether a quickfix list with a specific identifier exists
747 :if getqflist({'id' : qfid}).id == qfid
748
Bram Moolenaar15142e22018-04-30 22:19:58 +0200749 " get the index of the current quickfix list in the stack
750 :let qfnum = getqflist({'nr' : 0}).nr
751
752 " get the items of a quickfix list specified by an identifier
753 :echo getqflist({'id' : qfid, 'items' : 0}).items
754
755 " get the number of entries in a quickfix list specified by an id
756 :echo getqflist({'id' : qfid, 'size' : 0}).size
757
758 " get the context of the third quickfix list in the stack
759 :echo getqflist({'nr' : 3, 'context' : 0}).context
760
761 " get the number of quickfix lists in the stack
762 :echo getqflist({'nr' : '$'}).nr
763
764 " get the number of times the current quickfix list is changed
765 :echo getqflist({'changedtick' : 0}).changedtick
766
767 " get the current entry in a quickfix list specified by an identifier
768 :echo getqflist({'id' : qfid, 'idx' : 0}).idx
769
770 " get all the quickfix list attributes using an identifier
771 :echo getqflist({'id' : qfid, 'all' : 0})
772
773 " parse text from a List of lines and return a quickfix list
774 :let myList = ["a.java:10:L10", "b.java:20:L20"]
775 :echo getqflist({'lines' : myList}).items
776
777 " parse text using a custom 'efm' and return a quickfix list
778 :echo getqflist({'lines' : ['a.c#10#Line 10'], 'efm':'%f#%l#%m'}).items
779
780 " get the quickfix list window id
781 :echo getqflist({'winid' : 0}).winid
782
Bram Moolenaar647e24b2019-03-17 16:39:46 +0100783 " get the quickfix list window buffer number
784 :echo getqflist({'qfbufnr' : 0}).qfbufnr
785
Bram Moolenaar15142e22018-04-30 22:19:58 +0200786 " get the context of the current location list
787 :echo getloclist(0, {'context' : 0}).context
788
789 " get the location list window id of the third window
790 :echo getloclist(3, {'winid' : 0}).winid
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100791
Bram Moolenaar647e24b2019-03-17 16:39:46 +0100792 " get the location list window buffer number of the third window
793 :echo getloclist(3, {'qfbufnr' : 0}).qfbufnr
794
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100795 " get the file window id of a location list window (winnr: 4)
796 :echo getloclist(4, {'filewinid' : 0}).filewinid
Bram Moolenaar15142e22018-04-30 22:19:58 +0200797<
798 *setqflist-examples*
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200799The |setqflist()| and |setloclist()| functions can be used to set the various
Bram Moolenaar15142e22018-04-30 22:19:58 +0200800attributes of a quickfix and location list respectively. Some examples for
801using these functions are below:
802>
Bram Moolenaar78ddc062018-05-15 21:56:34 +0200803 " create an empty quickfix list with a title and a context
804 :let t = 'Search results'
805 :let c = {'cmd' : 'grep'}
806 :call setqflist([], ' ', {'title' : t, 'context' : c})
807
Bram Moolenaar15142e22018-04-30 22:19:58 +0200808 " set the title of the current quickfix list
809 :call setqflist([], 'a', {'title' : 'Mytitle'})
810
Bram Moolenaar5b69c222019-01-11 14:50:06 +0100811 " change the current entry in the list specified by an identifier
812 :call setqflist([], 'a', {'id' : qfid, 'idx' : 10})
813
Bram Moolenaar15142e22018-04-30 22:19:58 +0200814 " set the context of a quickfix list specified by an identifier
815 :call setqflist([], 'a', {'id' : qfid, 'context' : {'val' : 100}})
816
817 " create a new quickfix list from a command output
818 :call setqflist([], ' ', {'lines' : systemlist('grep -Hn main *.c')})
819
820 " parse text using a custom efm and add to a particular quickfix list
821 :call setqflist([], 'a', {'id' : qfid,
822 \ 'lines' : ["a.c#10#L10", "b.c#20#L20"], 'efm':'%f#%l#%m'})
823
824 " add items to the quickfix list specified by an identifier
825 :let newItems = [{'filename' : 'a.txt', 'lnum' : 10, 'text' : "Apple"},
826 \ {'filename' : 'b.txt', 'lnum' : 20, 'text' : "Orange"}]
827 :call setqflist([], 'a', {'id' : qfid, 'items' : newItems})
828
Bram Moolenaar78ddc062018-05-15 21:56:34 +0200829 " empty a quickfix list specified by an identifier
830 :call setqflist([], 'r', {'id' : qfid, 'items' : []})
831
Bram Moolenaar15142e22018-04-30 22:19:58 +0200832 " free all the quickfix lists in the stack
833 :call setqflist([], 'f')
834
835 " set the title of the fourth quickfix list
836 :call setqflist([], 'a', {'nr' : 4, 'title' : 'SomeTitle'})
837
838 " create a new quickfix list at the end of the stack
839 :call setqflist([], ' ', {'nr' : '$',
840 \ 'lines' : systemlist('grep -Hn class *.java')})
841
842 " create a new location list from a command output
843 :call setloclist(0, [], ' ', {'lines' : systemlist('grep -Hn main *.c')})
844
845 " replace the location list entries for the third window
846 :call setloclist(3, [], 'r', {'items' : newItems})
847<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848=============================================================================
8493. Using more than one list of errors *quickfix-error-lists*
850
851So far has been assumed that there is only one list of errors. Actually the
852ten last used lists are remembered. When starting a new list, the previous
853ones are automatically kept. Two commands can be used to access older error
854lists. They set one of the existing error lists as the current one.
855
856 *:colder* *:col* *E380*
857:col[der] [count] Go to older error list. When [count] is given, do
858 this [count] times. When already at the oldest error
859 list, an error message is given.
860
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000861 *:lolder* *:lol*
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200862:lol[der] [count] Same as `:colder`, except use the location list for
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000863 the current window instead of the quickfix list.
864
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 *:cnewer* *:cnew* *E381*
866:cnew[er] [count] Go to newer error list. When [count] is given, do
867 this [count] times. When already at the newest error
868 list, an error message is given.
869
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000870 *:lnewer* *:lnew*
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200871:lnew[er] [count] Same as `:cnewer`, except use the location list for
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000872 the current window instead of the quickfix list.
873
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200874 *:chistory* *:chi*
Bram Moolenaar8ffc7c82019-05-05 21:00:26 +0200875:[count]chi[story] Show the list of error lists. The current list is
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200876 marked with ">". The output looks like:
Bram Moolenaar47003982021-12-05 21:54:04 +0000877 error list 1 of 3; 43 errors :make ~
878 > error list 2 of 3; 0 errors :helpgrep tag ~
879 error list 3 of 3; 15 errors :grep ex_help *.c ~
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200880
Bram Moolenaar8ffc7c82019-05-05 21:00:26 +0200881 When [count] is given, then the count'th quickfix
882 list is made the current list. Example: >
883 " Make the 4th quickfix list current
884 :4chistory
885<
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200886 *:lhistory* *:lhi*
Bram Moolenaar8ffc7c82019-05-05 21:00:26 +0200887:[count]lhi[story] Show the list of location lists, otherwise like
Bram Moolenaar42ebd062016-07-17 13:35:14 +0200888 `:chistory`.
889
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890When adding a new error list, it becomes the current list.
891
892When ":colder" has been used and ":make" or ":grep" is used to add a new error
893list, one newer list is overwritten. This is especially useful if you are
894browsing with ":grep" |grep|. If you want to keep the more recent error
895lists, use ":cnewer 99" first.
896
Bram Moolenaar74240d32017-12-10 15:26:15 +0100897To get the number of lists in the quickfix and location list stack, you can
898use the |getqflist()| and |getloclist()| functions respectively with the list
899number set to the special value '$'. Examples: >
900 echo getqflist({'nr' : '$'}).nr
901 echo getloclist(3, {'nr' : '$'}).nr
902To get the number of the current list in the stack: >
903 echo getqflist({'nr' : 0}).nr
904<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905=============================================================================
9064. Using :make *:make_makeprg*
907
908 *:mak* *:make*
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100909:mak[e][!] [arguments] 1. All relevant |QuickFixCmdPre| autocommands are
910 executed.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000911 2. If the 'autowrite' option is on, write any changed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 buffers
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000913 3. An errorfile name is made from 'makeef'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 'makeef' doesn't contain "##", and a file with this
915 name already exists, it is deleted.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000916 4. The program given with the 'makeprg' option is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 started (default "make") with the optional
918 [arguments] and the output is saved in the
919 errorfile (for Unix it is also echoed on the
920 screen).
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000921 5. The errorfile is read using 'errorformat'.
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100922 6. All relevant |QuickFixCmdPost| autocommands are
923 executed. See example below.
Bram Moolenaar6b803a72007-05-06 14:25:46 +0000924 7. If [!] is not given the first error is jumped to.
925 8. The errorfile is deleted.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000926 9. You can now move through the errors with commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 like |:cnext| and |:cprevious|, see above.
928 This command does not accept a comment, any "
929 characters are considered part of the arguments.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100930 If the encoding of the program output differs from the
931 'encoding' option, you can use the 'makeencoding'
932 option to specify the encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +0000934 *:lmak* *:lmake*
935:lmak[e][!] [arguments]
936 Same as ":make", except the location list for the
937 current window is used instead of the quickfix list.
938
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939The ":make" command executes the command given with the 'makeprg' option.
940This is done by passing the command to the shell given with the 'shell'
941option. This works almost like typing
942
943 ":!{makeprg} [arguments] {shellpipe} {errorfile}".
944
945{makeprg} is the string given with the 'makeprg' option. Any command can be
946used, not just "make". Characters '%' and '#' are expanded as usual on a
947command-line. You can use "%<" to insert the current file name without
948extension, or "#<" to insert the alternate file name without extension, for
949example: >
950 :set makeprg=make\ #<.o
951
952[arguments] is anything that is typed after ":make".
953{shellpipe} is the 'shellpipe' option.
954{errorfile} is the 'makeef' option, with ## replaced to make it unique.
955
Bram Moolenaar6dfc28b2010-02-11 14:19:15 +0100956The placeholder "$*" can be used for the argument list in {makeprg} if the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957command needs some additional characters after its arguments. The $* is
958replaced then by all arguments. Example: >
959 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*}
960or simpler >
961 :let &mp = 'latex \\nonstopmode \\input\{$*}'
962"$*" can be given multiple times, for example: >
963 :set makeprg=gcc\ -o\ $*\ $*
964
Bram Moolenaar8024f932020-01-14 19:29:13 +0100965The 'shellpipe' option defaults to ">" for the Amiga and ">%s 2>&1" for Win32.
966This means that the output of the compiler is saved in a file and not shown on
967the screen directly. For Unix "| tee" is used. The compiler output is shown
968on the screen and saved in a file the same time. Depending on the shell used
969"|& tee" or "2>&1| tee" is the default, so stderr output will be included.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970
971If 'shellpipe' is empty, the {errorfile} part will be omitted. This is useful
972for compilers that write to an errorfile themselves (e.g., Manx's Amiga C).
973
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000974
975Using QuickFixCmdPost to fix the encoding ~
976
977It may be that 'encoding' is set to an encoding that differs from the messages
978your build program produces. This example shows how to fix this after Vim has
979read the error messages: >
980
981 function QfMakeConv()
982 let qflist = getqflist()
983 for i in qflist
984 let i.text = iconv(i.text, "cp936", "utf-8")
985 endfor
986 call setqflist(qflist)
987 endfunction
988
989 au QuickfixCmdPost make call QfMakeConv()
990
991(Example by Faque Cheng)
Bram Moolenaar2c7292d2017-03-05 17:43:31 +0100992Another option is using 'makeencoding'.
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000993
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994==============================================================================
Bram Moolenaar86b68352004-12-27 21:59:20 +00009955. Using :vimgrep and :grep *grep* *lid*
996
997Vim has two ways to find matches for a pattern: Internal and external. The
998advantage of the internal grep is that it works on all systems and uses the
999powerful Vim search patterns. An external grep program can be used when the
1000Vim grep does not do what you want.
1001
Bram Moolenaar8fc061c2004-12-29 21:03:02 +00001002The internal method will be slower, because files are read into memory. The
1003advantages are:
1004- Line separators and encoding are automatically recognized, as if a file is
1005 being edited.
1006- Uses Vim search patterns. Multi-line patterns can be used.
1007- When plugins are enabled: compressed and remote files can be searched.
1008 |gzip| |netrw|
Bram Moolenaara3227e22006-03-08 21:32:40 +00001009
1010To be able to do this Vim loads each file as if it is being edited. When
Bram Moolenaar1056d982006-03-09 22:37:52 +00001011there is no match in the file the associated buffer is wiped out again. The
Bram Moolenaara3227e22006-03-08 21:32:40 +00001012'hidden' option is ignored here to avoid running out of memory or file
1013descriptors when searching many files. However, when the |:hide| command
1014modifier is used the buffers are kept loaded. This makes following searches
1015in the same files a lot faster.
Bram Moolenaar86b68352004-12-27 21:59:20 +00001016
Bram Moolenaar483c5d82010-10-20 18:45:33 +02001017Note that |:copen| (or |:lopen| for |:lgrep|) may be used to open a buffer
1018containing the search results in linked form. The |:silent| command may be
Bram Moolenaard58e9292011-02-09 17:07:58 +01001019used to suppress the default full screen grep output. The ":grep!" form of
Bram Moolenaar483c5d82010-10-20 18:45:33 +02001020the |:grep| command doesn't jump to the first match automatically. These
1021commands can be combined to create a NewGrep command: >
1022
1023 command! -nargs=+ NewGrep execute 'silent grep! <args>' | copen 42
1024
Bram Moolenaar86b68352004-12-27 21:59:20 +00001025
10265.1 using Vim's internal grep
1027
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001028 *:vim* *:vimgrep* *E682* *E683*
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02001029:vim[grep][!] /{pattern}/[g][j][f] {file} ...
Bram Moolenaar86b68352004-12-27 21:59:20 +00001030 Search for {pattern} in the files {file} ... and set
Bram Moolenaar30b65812012-07-12 22:01:11 +02001031 the error list to the matches. Files matching
1032 'wildignore' are ignored; files in 'suffixes' are
1033 searched last.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001034
1035 {pattern} is a Vim search pattern. Instead of
1036 enclosing it in / any non-ID character (see
1037 |'isident'|) can be used, so long as it does not
1038 appear in {pattern}.
1039 'ignorecase' applies. To overrule it put |/\c| in the
1040 pattern to ignore case or |/\C| to match case.
1041 'smartcase' is not used.
Bram Moolenaar60abe752013-03-07 16:32:54 +01001042 If {pattern} is empty (e.g. // is specified), the last
1043 used search pattern is used. |last-pattern|
Bram Moolenaar942db232021-02-13 18:14:48 +01001044
Bram Moolenaar4c295022021-05-02 17:19:11 +02001045 Flags:
1046 'g' Without the 'g' flag each line is added only
1047 once. With 'g' every match is added.
1048
1049 'j' Without the 'j' flag Vim jumps to the first
1050 match. With 'j' only the quickfix list is
1051 updated. With the [!] any changes in the current
1052 buffer are abandoned.
1053
1054 'f' When the 'f' flag is specified, fuzzy string
1055 matching is used to find matching lines. In this
1056 case, {pattern} is treated as a literal string
1057 instead of a regular expression. See
Bram Moolenaar3ec32172021-05-16 12:39:47 +02001058 |fuzzy-match| for more information about fuzzy
1059 matching strings.
Bram Moolenaar4c295022021-05-02 17:19:11 +02001060
Bram Moolenaar942db232021-02-13 18:14:48 +01001061 |QuickFixCmdPre| and |QuickFixCmdPost| are triggered.
1062 A file that is opened for matching may use a buffer
1063 number, but it is reused if possible to avoid
1064 consuming buffer numbers.
1065
Bram Moolenaarba3ff532018-11-04 14:45:49 +01001066:{count}vim[grep] ...
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00001067 When a number is put before the command this is used
1068 as the maximum number of matches to find. Use
1069 ":1vimgrep pattern file" to find only the first.
1070 Useful if you only want to check if there is a match
1071 and quit quickly when it's found.
1072
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00001073 Every second or so the searched file name is displayed
1074 to give you an idea of the progress made.
Bram Moolenaar8fc061c2004-12-29 21:03:02 +00001075 Examples: >
1076 :vimgrep /an error/ *.c
1077 :vimgrep /\<FileName\>/ *.h include/*
Bram Moolenaar231334e2005-07-25 20:46:57 +00001078 :vimgrep /myfunc/ **/*.c
1079< For the use of "**" see |starstar-wildcard|.
Bram Moolenaar86b68352004-12-27 21:59:20 +00001080
Bram Moolenaar8fc061c2004-12-29 21:03:02 +00001081:vim[grep][!] {pattern} {file} ...
1082 Like above, but instead of enclosing the pattern in a
1083 non-ID character use a white-separated pattern. The
1084 pattern must start with an ID character.
1085 Example: >
1086 :vimgrep Error *.c
1087<
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +00001088 *:lv* *:lvimgrep*
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02001089:lv[imgrep][!] /{pattern}/[g][j][f] {file} ...
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +00001090:lv[imgrep][!] {pattern} {file} ...
1091 Same as ":vimgrep", except the location list for the
1092 current window is used instead of the quickfix list.
1093
Bram Moolenaar86b68352004-12-27 21:59:20 +00001094 *:vimgrepa* *:vimgrepadd*
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02001095:vimgrepa[dd][!] /{pattern}/[g][j][f] {file} ...
Bram Moolenaar05159a02005-02-26 23:04:13 +00001096:vimgrepa[dd][!] {pattern} {file} ...
Bram Moolenaar86b68352004-12-27 21:59:20 +00001097 Just like ":vimgrep", but instead of making a new list
1098 of errors the matches are appended to the current
1099 list.
1100
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +00001101 *:lvimgrepa* *:lvimgrepadd*
Yegappan Lakshmananbb01a1e2021-04-26 21:17:52 +02001102:lvimgrepa[dd][!] /{pattern}/[g][j][f] {file} ...
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +00001103:lvimgrepa[dd][!] {pattern} {file} ...
1104 Same as ":vimgrepadd", except the location list for
1105 the current window is used instead of the quickfix
1106 list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00001107
11085.2 External grep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109
1110Vim can interface with "grep" and grep-like programs (such as the GNU
1111id-utils) in a similar way to its compiler integration (see |:make| above).
1112
1113[Unix trivia: The name for the Unix "grep" command comes from ":g/re/p", where
1114"re" stands for Regular Expression.]
1115
1116 *:gr* *:grep*
1117:gr[ep][!] [arguments] Just like ":make", but use 'grepprg' instead of
1118 'makeprg' and 'grepformat' instead of 'errorformat'.
Bram Moolenaar86b68352004-12-27 21:59:20 +00001119 When 'grepprg' is "internal" this works like
1120 |:vimgrep|. Note that the pattern needs to be
1121 enclosed in separator characters then.
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01001122 If the encoding of the program output differs from the
1123 'encoding' option, you can use the 'makeencoding'
1124 option to specify the encoding.
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +00001125
1126 *:lgr* *:lgrep*
1127:lgr[ep][!] [arguments] Same as ":grep", except the location list for the
1128 current window is used instead of the quickfix list.
1129
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 *:grepa* *:grepadd*
1131:grepa[dd][!] [arguments]
1132 Just like ":grep", but instead of making a new list of
1133 errors the matches are appended to the current list.
1134 Example: >
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001135 :call setqflist([])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 :bufdo grepadd! something %
1137< The first command makes a new error list which is
1138 empty. The second command executes "grepadd" for each
1139 listed buffer. Note the use of ! to avoid that
1140 ":grepadd" jumps to the first error, which is not
1141 allowed with |:bufdo|.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001142 An example that uses the argument list and avoids
1143 errors for files without matches: >
Bram Moolenaarade0d392020-01-21 22:33:58 +01001144 :silent argdo try
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001145 \ | grepadd! something %
1146 \ | catch /E480:/
1147 \ | endtry"
1148<
Bram Moolenaar2c7292d2017-03-05 17:43:31 +01001149 If the encoding of the program output differs from the
1150 'encoding' option, you can use the 'makeencoding'
1151 option to specify the encoding.
1152
Bram Moolenaar9f2c6e12006-02-04 22:45:44 +00001153 *:lgrepa* *:lgrepadd*
1154:lgrepa[dd][!] [arguments]
1155 Same as ":grepadd", except the location list for the
1156 current window is used instead of the quickfix list.
1157
Bram Moolenaar86b68352004-12-27 21:59:20 +000011585.3 Setting up external grep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159
1160If you have a standard "grep" program installed, the :grep command may work
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001161well with the defaults. The syntax is very similar to the standard command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162
1163 :grep foo *.c
1164
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001165Will search all files with the .c extension for the substring "foo". The
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166arguments to :grep are passed straight to the "grep" program, so you can use
1167whatever options your "grep" supports.
1168
1169By default, :grep invokes grep with the -n option (show file and line
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001170numbers). You can change this with the 'grepprg' option. You will need to set
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171'grepprg' if:
1172
1173a) You are using a program that isn't called "grep"
1174b) You have to call grep with a full path
1175c) You want to pass other options automatically (e.g. case insensitive
1176 search.)
1177
1178Once "grep" has executed, Vim parses the results using the 'grepformat'
1179option. This option works in the same way as the 'errorformat' option - see
1180that for details. You may need to change 'grepformat' from the default if
1181your grep outputs in a non-standard format, or you are using some other
1182program with a special format.
1183
1184Once the results are parsed, Vim loads the first file containing a match and
1185jumps to the appropriate line, in the same way that it jumps to a compiler
1186error in |quickfix| mode. You can then use the |:cnext|, |:clist|, etc.
1187commands to see the other matches.
1188
1189
Bram Moolenaar86b68352004-12-27 21:59:20 +000011905.4 Using :grep with id-utils
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191
1192You can set up :grep to work with the GNU id-utils like this: >
1193
1194 :set grepprg=lid\ -Rgrep\ -s
1195 :set grepformat=%f:%l:%m
1196
1197then >
1198 :grep (regexp)
1199
1200works just as you'd expect.
1201(provided you remembered to mkid first :)
1202
1203
Bram Moolenaar86b68352004-12-27 21:59:20 +000012045.5 Browsing source code with :vimgrep or :grep
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205
1206Using the stack of error lists that Vim keeps, you can browse your files to
1207look for functions and the functions they call. For example, suppose that you
1208have to add an argument to the read_file() function. You enter this command: >
1209
Bram Moolenaar86b68352004-12-27 21:59:20 +00001210 :vimgrep /\<read_file\>/ *.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211
1212You use ":cn" to go along the list of matches and add the argument. At one
1213place you have to get the new argument from a higher level function msg(), and
1214need to change that one too. Thus you use: >
1215
Bram Moolenaar86b68352004-12-27 21:59:20 +00001216 :vimgrep /\<msg\>/ *.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217
1218While changing the msg() functions, you find another function that needs to
Bram Moolenaar86b68352004-12-27 21:59:20 +00001219get the argument from a higher level. You can again use ":vimgrep" to find
1220these functions. Once you are finished with one function, you can use >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221
1222 :colder
1223
1224to go back to the previous one.
1225
Bram Moolenaar86b68352004-12-27 21:59:20 +00001226This works like browsing a tree: ":vimgrep" goes one level deeper, creating a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227list of branches. ":colder" goes back to the previous level. You can mix
Bram Moolenaar86b68352004-12-27 21:59:20 +00001228this use of ":vimgrep" and "colder" to browse all the locations in a tree-like
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229way. If you do this consistently, you will find all locations without the
1230need to write down a "todo" list.
1231
1232=============================================================================
12336. Selecting a compiler *compiler-select*
1234
1235 *:comp* *:compiler* *E666*
1236:comp[iler][!] {name} Set options to work with compiler {name}.
1237 Without the "!" options are set for the
1238 current buffer. With "!" global options are
1239 set.
1240 If you use ":compiler foo" in "file.foo" and
1241 then ":compiler! bar" in another buffer, Vim
1242 will keep on using "foo" in "file.foo".
1243 {not available when compiled without the
1244 |+eval| feature}
1245
1246
1247The Vim plugins in the "compiler" directory will set options to use the
Bram Moolenaar25de4c22016-11-06 14:48:06 +01001248selected compiler. For `:compiler` local options are set, for `:compiler!`
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249global options.
1250 *current_compiler*
1251To support older Vim versions, the plugins always use "current_compiler" and
1252not "b:current_compiler". What the command actually does is the following:
1253
1254- Delete the "current_compiler" and "b:current_compiler" variables.
1255- Define the "CompilerSet" user command. With "!" it does ":set", without "!"
1256 it does ":setlocal".
1257- Execute ":runtime! compiler/{name}.vim". The plugins are expected to set
1258 options with "CompilerSet" and set the "current_compiler" variable to the
1259 name of the compiler.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001260- Delete the "CompilerSet" user command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261- Set "b:current_compiler" to the value of "current_compiler".
1262- Without "!" the old value of "current_compiler" is restored.
1263
1264
1265For writing a compiler plugin, see |write-compiler-plugin|.
1266
1267
Bram Moolenaarbae0c162007-05-10 19:30:25 +00001268GCC *quickfix-gcc* *compiler-gcc*
1269
1270There's one variable you can set for the GCC compiler:
1271
1272g:compiler_gcc_ignore_unmatched_lines
1273 Ignore lines that don't match any patterns
1274 defined for GCC. Useful if output from
1275 commands run from make are generating false
1276 positives.
1277
1278
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279MANX AZTEC C *quickfix-manx* *compiler-manx*
1280
1281To use Vim with Manx's Aztec C compiler on the Amiga you should do the
1282following:
1283- Set the CCEDIT environment variable with the command: >
1284 mset "CCEDIT=vim -q"
1285- Compile with the -qf option. If the compiler finds any errors, Vim is
1286 started and the cursor is positioned on the first error. The error message
1287 will be displayed on the last line. You can go to other errors with the
1288 commands mentioned above. You can fix the errors and write the file(s).
1289- If you exit Vim normally the compiler will re-compile the same file. If you
1290 exit with the :cq command, the compiler will terminate. Do this if you
1291 cannot fix the error, or if another file needs to be compiled first.
1292
1293There are some restrictions to the Quickfix mode on the Amiga. The
1294compiler only writes the first 25 errors to the errorfile (Manx's
1295documentation does not say how to get more). If you want to find the others,
1296you will have to fix a few errors and exit the editor. After recompiling,
1297up to 25 remaining errors will be found.
1298
1299If Vim was started from the compiler, the :sh and some :! commands will not
1300work, because Vim is then running in the same process as the compiler and
1301stdin (standard input) will not be interactive.
1302
1303
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001304PERL *quickfix-perl* *compiler-perl*
1305
1306The Perl compiler plugin doesn't actually compile, but invokes Perl's internal
1307syntax checking feature and parses the output for possible errors so you can
1308correct them in quick-fix mode.
1309
1310Warnings are forced regardless of "no warnings" or "$^W = 0" within the file
1311being checked. To disable this set g:perl_compiler_force_warnings to a zero
1312value. For example: >
1313 let g:perl_compiler_force_warnings = 0
1314
1315
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316PYUNIT COMPILER *compiler-pyunit*
1317
1318This is not actually a compiler, but a unit testing framework for the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001319Python language. It is included into standard Python distribution
1320starting from version 2.0. For older versions, you can get it from
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321http://pyunit.sourceforge.net.
1322
1323When you run your tests with the help of the framework, possible errors
1324are parsed by Vim and presented for you in quick-fix mode.
1325
1326Unfortunately, there is no standard way to run the tests.
1327The alltests.py script seems to be used quite often, that's all.
1328Useful values for the 'makeprg' options therefore are:
1329 setlocal makeprg=./alltests.py " Run a testsuite
Bram Moolenaar26df0922014-02-23 23:39:13 +01001330 setlocal makeprg=python\ %:S " Run a single testcase
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331
1332Also see http://vim.sourceforge.net/tip_view.php?tip_id=280.
1333
1334
1335TEX COMPILER *compiler-tex*
1336
1337Included in the distribution compiler for TeX ($VIMRUNTIME/compiler/tex.vim)
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001338uses make command if possible. If the compiler finds a file named "Makefile"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339or "makefile" in the current directory, it supposes that you want to process
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001340your *TeX files with make, and the makefile does the right work. In this case
1341compiler sets 'errorformat' for *TeX output and leaves 'makeprg' untouched. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342neither "Makefile" nor "makefile" is found, the compiler will not use make.
1343You can force the compiler to ignore makefiles by defining
1344b:tex_ignore_makefile or g:tex_ignore_makefile variable (they are checked for
1345existence only).
1346
Bram Moolenaarade0d392020-01-21 22:33:58 +01001347If the compiler chose not to use make, it needs to choose a right program for
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001348processing your input. If b:tex_flavor or g:tex_flavor (in this precedence)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349variable exists, it defines TeX flavor for :make (actually, this is the name
1350of executed command), and if both variables do not exist, it defaults to
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001351"latex". For example, while editing chapter2.tex \input-ed from mypaper.tex
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352written in AMS-TeX: >
1353
1354 :let b:tex_flavor = 'amstex'
1355 :compiler tex
1356< [editing...] >
1357 :make mypaper
1358
1359Note that you must specify a name of the file to process as an argument (to
1360process the right file when editing \input-ed or \include-ed file; portable
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001361solution for substituting % for no arguments is welcome). This is not in the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362semantics of make, where you specify a target, not source, but you may specify
1363filename without extension ".tex" and mean this as "make filename.dvi or
1364filename.pdf or filename.some_result_extension according to compiler".
1365
1366Note: tex command line syntax is set to usable both for MikTeX (suggestion
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001367by Srinath Avadhanula) and teTeX (checked by Artem Chuprina). Suggestion
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368from |errorformat-LaTeX| is too complex to keep it working for different
1369shells and OSes and also does not allow to use other available TeX options,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001370if any. If your TeX doesn't support "-interaction=nonstopmode", please
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371report it with different means to express \nonstopmode from the command line.
1372
1373=============================================================================
13747. The error format *error-file-format*
1375
1376 *errorformat* *E372* *E373* *E374*
1377 *E375* *E376* *E377* *E378*
1378The 'errorformat' option specifies a list of formats that are recognized. The
1379first format that matches with an error message is used. You can add several
1380formats for different messages your compiler produces, or even entries for
1381multiple compilers. See |efm-entries|.
1382
1383Each entry in 'errorformat' is a scanf-like string that describes the format.
1384First, you need to know how scanf works. Look in the documentation of your
1385C compiler. Below you find the % items that Vim understands. Others are
1386invalid.
1387
1388Special characters in 'errorformat' are comma and backslash. See
1389|efm-entries| for how to deal with them. Note that a literal "%" is matched
1390by "%%", thus it is not escaped with a backslash.
Bram Moolenaar9d98fe92013-08-03 18:35:36 +02001391Keep in mind that in the `:make` and `:grep` output all NUL characters are
1392replaced with SOH (0x01).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393
1394Note: By default the difference between upper and lowercase is ignored. If
1395you want to match case, add "\C" to the pattern |/\C|.
1396
Bram Moolenaar088e8e32019-08-08 22:15:18 +02001397Vim will read lines of any length, but only the first 4095 bytes are used, the
1398rest is ignored. Items can only be 1023 bytes long.
1399
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400
1401Basic items
1402
1403 %f file name (finds a string)
Bram Moolenaard76ce852018-05-01 15:02:04 +02001404 %o module name (finds a string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 %l line number (finds a number)
haya14busae023d492022-02-08 18:09:29 +00001406 %e end line number (finds a number)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 %c column number (finds a number representing character
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +02001408 column of the error, byte index, a <tab> is 1
1409 character column)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 %v virtual column number (finds a number representing
1411 screen column of the error (1 <tab> == 8 screen
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001412 columns))
haya14busae023d492022-02-08 18:09:29 +00001413 %k end column number (finds a number representing
1414 the character column of the error, byte index, or a
1415 number representing screen end column of the error if
1416 it's used with %v)
Bram Moolenaare9283662020-06-07 14:10:47 +02001417 %t error type (finds a single character):
1418 e - error message
1419 w - warning message
1420 i - info message
1421 n - note message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422 %n error number (finds a number)
1423 %m error message (finds a string)
1424 %r matches the "rest" of a single-line file message %O/P/Q
Bram Moolenaarc8734422012-06-01 22:38:45 +02001425 %p pointer line (finds a sequence of '-', '.', ' ' or
1426 tabs and uses the length for the column number)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 %*{conv} any scanf non-assignable conversion
1428 %% the single '%' character
Bram Moolenaar2641f772005-03-25 21:58:17 +00001429 %s search text (finds a string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430
Bram Moolenaare344bea2005-09-01 20:46:49 +00001431The "%f" conversion may depend on the current 'isfname' setting. "~/" is
Bram Moolenaarf4630b62005-05-20 21:31:17 +00001432expanded to the home directory and environment variables are expanded.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433
Bram Moolenaare344bea2005-09-01 20:46:49 +00001434The "%f" and "%m" conversions have to detect the end of the string. This
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00001435normally happens by matching following characters and items. When nothing is
Bram Moolenaare344bea2005-09-01 20:46:49 +00001436following the rest of the line is matched. If "%f" is followed by a '%' or a
1437backslash, it will look for a sequence of 'isfname' characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438
Bram Moolenaar6f345a12019-12-17 21:27:18 +01001439On MS-Windows a leading "C:" will be included in "%f", even when using "%f:".
1440This means that a file name which is a single alphabetical letter will not be
1441detected.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442
1443The "%p" conversion is normally followed by a "^". It's used for compilers
1444that output a line like: >
1445 ^
1446or >
1447 ---------^
1448to indicate the column of the error. This is to be used in a multi-line error
1449message. See |errorformat-javac| for a useful example.
1450
Bram Moolenaar85eee132018-05-06 17:57:30 +02001451The "%s" conversion specifies the text to search for, to locate the error line.
Bram Moolenaar2641f772005-03-25 21:58:17 +00001452The text is used as a literal string. The anchors "^" and "$" are added to
1453the text to locate the error line exactly matching the search text and the
1454text is prefixed with the "\V" atom to make it "very nomagic". The "%s"
1455conversion can be used to locate lines without a line number in the error
1456output. Like the output of the "grep" shell command.
1457When the pattern is present the line number will not be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458
Bram Moolenaard76ce852018-05-01 15:02:04 +02001459The "%o" conversion specifies the module name in quickfix entry. If present
1460it will be used in quickfix error window instead of the filename. The module
1461name is used only for displaying purposes, the file name is used when jumping
1462to the file.
1463
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464Changing directory
1465
1466The following uppercase conversion characters specify the type of special
Bram Moolenaara9defad2018-07-08 18:20:24 +02001467format strings. At most one of them may be given as a prefix at the beginning
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468of a single comma-separated format pattern.
1469Some compilers produce messages that consist of directory names that have to
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001470be prepended to each file name read by %f (example: GNU make). The following
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471codes can be used to scan these directory names; they will be stored in an
1472internal directory stack. *E379*
1473 %D "enter directory" format string; expects a following
1474 %f that finds the directory name
1475 %X "leave directory" format string; expects following %f
1476
1477When defining an "enter directory" or "leave directory" format, the "%D" or
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001478"%X" has to be given at the start of that substring. Vim tracks the directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479changes and prepends the current directory to each erroneous file found with a
1480relative path. See |quickfix-directory-stack| for details, tips and
1481limitations.
1482
1483
1484Multi-line messages *errorformat-multi-line*
1485
1486It is possible to read the output of programs that produce multi-line
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001487messages, i.e. error strings that consume more than one line. Possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488prefixes are:
1489 %E start of a multi-line error message
1490 %W start of a multi-line warning message
1491 %I start of a multi-line informational message
Bram Moolenaare9283662020-06-07 14:10:47 +02001492 %N start of a multi-line note message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 %A start of a multi-line message (unspecified type)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00001494 %> for next line start with current pattern again |efm-%>|
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 %C continuation of a multi-line message
1496 %Z end of a multi-line message
1497These can be used with '+' and '-', see |efm-ignore| below.
1498
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001499Using "\n" in the pattern won't work to match multi-line messages.
1500
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501Example: Your compiler happens to write out errors in the following format
1502(leading line numbers not being part of the actual output):
1503
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001504 1 Error 275 ~
1505 2 line 42 ~
1506 3 column 3 ~
1507 4 ' ' expected after '--' ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508
1509The appropriate error format string has to look like this: >
1510 :set efm=%EError\ %n,%Cline\ %l,%Ccolumn\ %c,%Z%m
1511
1512And the |:clist| error message generated for this error is:
1513
1514 1:42 col 3 error 275: ' ' expected after '--'
1515
1516Another example: Think of a Python interpreter that produces the following
1517error message (line numbers are not part of the actual output):
1518
1519 1 ==============================================================
1520 2 FAIL: testGetTypeIdCachesResult (dbfacadeTest.DjsDBFacadeTest)
1521 3 --------------------------------------------------------------
1522 4 Traceback (most recent call last):
1523 5 File "unittests/dbfacadeTest.py", line 89, in testFoo
1524 6 self.assertEquals(34, dtid)
1525 7 File "/usr/lib/python2.2/unittest.py", line 286, in
1526 8 failUnlessEqual
1527 9 raise self.failureException, \
1528 10 AssertionError: 34 != 33
1529 11
1530 12 --------------------------------------------------------------
1531 13 Ran 27 tests in 0.063s
1532
1533Say you want |:clist| write the relevant information of this message only,
1534namely:
1535 5 unittests/dbfacadeTest.py:89: AssertionError: 34 != 33
1536
1537Then the error format string could be defined as follows: >
1538 :set efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%m
1539
1540Note that the %C string is given before the %A here: since the expression
1541' %.%#' (which stands for the regular expression ' .*') matches every line
1542starting with a space, followed by any characters to the end of the line,
1543it also hides line 7 which would trigger a separate error message otherwise.
1544Error format strings are always parsed pattern by pattern until the first
1545match occurs.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00001546 *efm-%>*
1547The %> item can be used to avoid trying patterns that appear earlier in
1548'errorformat'. This is useful for patterns that match just about anything.
1549For example, if the error looks like this:
1550
1551 Error in line 123 of foo.c: ~
1552 unknown variable "i" ~
1553
1554This can be found with: >
1555 :set efm=xxx,%E%>Error in line %l of %f:,%Z%m
1556Where "xxx" has a pattern that would also match the second line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001558Important: There is no memory of what part of the errorformat matched before;
1559every line in the error file gets a complete new run through the error format
1560lines. For example, if one has: >
1561 setlocal efm=aa,bb,cc,dd,ee
1562Where aa, bb, etc. are error format strings. Each line of the error file will
1563be matched to the pattern aa, then bb, then cc, etc. Just because cc matched
1564the previous error line does _not_ mean that dd will be tried first on the
1565current line, even if cc and dd are multi-line errorformat strings.
1566
1567
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568
1569Separate file name *errorformat-separate-filename*
1570
1571These prefixes are useful if the file name is given once and multiple messages
1572follow that refer to this file name.
1573 %O single-line file message: overread the matched part
1574 %P single-line file message: push file %f onto the stack
1575 %Q single-line file message: pop the last file from stack
1576
1577Example: Given a compiler that produces the following error logfile (without
1578leading line numbers):
1579
1580 1 [a1.tt]
1581 2 (1,17) error: ';' missing
1582 3 (21,2) warning: variable 'z' not defined
1583 4 (67,3) error: end of file found before string ended
1584 5
1585 6 [a2.tt]
1586 7
1587 8 [a3.tt]
1588 9 NEW compiler v1.1
1589 10 (2,2) warning: variable 'x' not defined
1590 11 (67,3) warning: 's' already defined
1591
1592This logfile lists several messages for each file enclosed in [...] which are
1593properly parsed by an error format like this: >
1594 :set efm=%+P[%f],(%l\\,%c)%*[\ ]%t%*[^:]:\ %m,%-Q
1595
1596A call of |:clist| writes them accordingly with their correct filenames:
1597
1598 2 a1.tt:1 col 17 error: ';' missing
1599 3 a1.tt:21 col 2 warning: variable 'z' not defined
1600 4 a1.tt:67 col 3 error: end of file found before string ended
1601 8 a3.tt:2 col 2 warning: variable 'x' not defined
1602 9 a3.tt:67 col 3 warning: 's' already defined
1603
1604Unlike the other prefixes that all match against whole lines, %P, %Q and %O
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001605can be used to match several patterns in the same line. Thus it is possible
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606to parse even nested files like in the following line:
1607 {"file1" {"file2" error1} error2 {"file3" error3 {"file4" error4 error5}}}
1608The %O then parses over strings that do not contain any push/pop file name
1609information. See |errorformat-LaTeX| for an extended example.
1610
1611
1612Ignoring and using whole messages *efm-ignore*
1613
1614The codes '+' or '-' can be combined with the uppercase codes above; in that
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001615case they have to precede the letter, e.g. '%+A' or '%-G':
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 %- do not include the matching multi-line in any output
1617 %+ include the whole matching line in the %m error string
1618
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001619One prefix is only useful in combination with '+' or '-', namely %G. It parses
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620over lines containing general information like compiler version strings or
1621other headers that can be skipped.
1622 %-G ignore this message
1623 %+G general message
1624
1625
1626Pattern matching
1627
1628The scanf()-like "%*[]" notation is supported for backward-compatibility
1629with previous versions of Vim. However, it is also possible to specify
1630(nearly) any Vim supported regular expression in format strings.
1631Since meta characters of the regular expression language can be part of
1632ordinary matching strings or file names (and therefore internally have to
1633be escaped), meta symbols have to be written with leading '%':
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001634 %\ The single '\' character. Note that this has to be
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635 escaped ("%\\") in ":set errorformat=" definitions.
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00001636 %. The single '.' character.
1637 %# The single '*'(!) character.
1638 %^ The single '^' character. Note that this is not
1639 useful, the pattern already matches start of line.
1640 %$ The single '$' character. Note that this is not
1641 useful, the pattern already matches end of line.
1642 %[ The single '[' character for a [] character range.
1643 %~ The single '~' character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644When using character classes in expressions (see |/\i| for an overview),
1645terms containing the "\+" quantifier can be written in the scanf() "%*"
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001646notation. Example: "%\\d%\\+" ("\d\+", "any number") is equivalent to "%*\\d".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647Important note: The \(...\) grouping of sub-matches can not be used in format
1648specifications because it is reserved for internal conversions.
1649
1650
1651Multiple entries in 'errorformat' *efm-entries*
1652
1653To be able to detect output from several compilers, several format patterns
1654may be put in 'errorformat', separated by commas (note: blanks after the comma
1655are ignored). The first pattern that has a complete match is used. If no
1656match is found, matching parts from the last one will be used, although the
1657file name is removed and the error message is set to the whole message. If
1658there is a pattern that may match output from several compilers (but not in a
1659right way), put it after one that is more restrictive.
1660
1661To include a comma in a pattern precede it with a backslash (you have to type
1662two in a ":set" command). To include a backslash itself give two backslashes
1663(you have to type four in a ":set" command). You also need to put a backslash
1664before a space for ":set".
1665
1666
1667Valid matches *quickfix-valid*
1668
1669If a line does not completely match one of the entries in 'errorformat', the
1670whole line is put in the error message and the entry is marked "not valid"
1671These lines are skipped with the ":cn" and ":cp" commands (unless there is
1672no valid line at all). You can use ":cl!" to display all the error messages.
1673
1674If the error format does not contain a file name Vim cannot switch to the
1675correct file. You will have to do this by hand.
1676
1677
1678Examples
1679
1680The format of the file from the Amiga Aztec compiler is:
1681
1682 filename>linenumber:columnnumber:errortype:errornumber:errormessage
1683
1684 filename name of the file in which the error was detected
1685 linenumber line number where the error was detected
1686 columnnumber column number where the error was detected
1687 errortype type of the error, normally a single 'E' or 'W'
1688 errornumber number of the error (for lookup in the manual)
1689 errormessage description of the error
1690
1691This can be matched with this 'errorformat' entry:
1692 %f>%l:%c:%t:%n:%m
1693
1694Some examples for C compilers that produce single-line error outputs:
1695%f:%l:\ %t%*[^0123456789]%n:\ %m for Manx/Aztec C error messages
1696 (scanf() doesn't understand [0-9])
1697%f\ %l\ %t%*[^0-9]%n:\ %m for SAS C
1698\"%f\"\\,%*[^0-9]%l:\ %m for generic C compilers
1699%f:%l:\ %m for GCC
1700%f:%l:\ %m,%Dgmake[%*\\d]:\ Entering\ directory\ `%f',
1701%Dgmake[%*\\d]:\ Leaving\ directory\ `%f'
1702 for GCC with gmake (concat the lines!)
1703%f(%l)\ :\ %*[^:]:\ %m old SCO C compiler (pre-OS5)
1704%f(%l)\ :\ %t%*[^0-9]%n:\ %m idem, with error type and number
1705%f:%l:\ %m,In\ file\ included\ from\ %f:%l:,\^I\^Ifrom\ %f:%l%m
1706 for GCC, with some extras
1707
1708Extended examples for the handling of multi-line messages are given below,
1709see |errorformat-Jikes| and |errorformat-LaTeX|.
1710
1711Note the backslash in front of a space and double quote. It is required for
1712the :set command. There are two backslashes in front of a comma, one for the
1713:set command and one to avoid recognizing the comma as a separator of error
1714formats.
1715
1716
1717Filtering messages
1718
1719If you have a compiler that produces error messages that do not fit in the
1720format string, you could write a program that translates the error messages
1721into this format. You can use this program with the ":make" command by
1722changing the 'makeprg' option. For example: >
1723 :set mp=make\ \\\|&\ error_filter
1724The backslashes before the pipe character are required to avoid it to be
1725recognized as a command separator. The backslash before each space is
1726required for the set command.
1727
1728=============================================================================
17298. The directory stack *quickfix-directory-stack*
1730
1731Quickfix maintains a stack for saving all used directories parsed from the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001732make output. For GNU-make this is rather simple, as it always prints the
1733absolute path of all directories it enters and leaves. Regardless if this is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734done via a 'cd' command in the makefile or with the parameter "-C dir" (change
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001735to directory before reading the makefile). It may be useful to use the switch
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736"-w" to force GNU-make to print out the working directory before and after
1737processing.
1738
1739Maintaining the correct directory is more complicated if you don't use
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001740GNU-make. AIX-make for example doesn't print any information about its
1741working directory. Then you need to enhance the makefile. In the makefile of
1742LessTif there is a command which echoes "Making {target} in {dir}". The
Bram Moolenaar6dfc28b2010-02-11 14:19:15 +01001743special problem here is that it doesn't print information on leaving the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001744directory and that it doesn't print the absolute path.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745
1746To solve the problem with relative paths and missing "leave directory"
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02001747messages Vim uses the following algorithm:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748
17491) Check if the given directory is a subdirectory of the current directory.
1750 If this is true, store it as the current directory.
17512) If it is not a subdir of the current directory, try if this is a
1752 subdirectory of one of the upper directories.
17533) If the directory still isn't found, it is assumed to be a subdirectory
1754 of Vim's current directory.
1755
1756Additionally it is checked for every file, if it really exists in the
1757identified directory. If not, it is searched in all other directories of the
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001758directory stack (NOT the directory subtree!). If it is still not found, it is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759assumed that it is in Vim's current directory.
1760
Bram Moolenaare667c952010-07-05 22:57:59 +02001761There are limitations in this algorithm. These examples assume that make just
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762prints information about entering a directory in the form "Making all in dir".
1763
17641) Assume you have following directories and files:
1765 ./dir1
1766 ./dir1/file1.c
1767 ./file1.c
1768
1769 If make processes the directory "./dir1" before the current directory and
1770 there is an error in the file "./file1.c", you will end up with the file
1771 "./dir1/file.c" loaded by Vim.
1772
1773 This can only be solved with a "leave directory" message.
1774
17752) Assume you have following directories and files:
1776 ./dir1
1777 ./dir1/dir2
1778 ./dir2
1779
1780 You get the following:
1781
1782 Make output Directory interpreted by Vim
1783 ------------------------ ----------------------------
1784 Making all in dir1 ./dir1
1785 Making all in dir2 ./dir1/dir2
1786 Making all in dir2 ./dir1/dir2
1787
1788 This can be solved by printing absolute directories in the "enter directory"
Bram Moolenaar214641f2017-03-05 17:04:09 +01001789 message or by printing "leave directory" messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790
Bram Moolenaar06b5d512010-05-22 15:37:44 +02001791To avoid this problem, ensure to print absolute directory names and "leave
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792directory" messages.
1793
1794Examples for Makefiles:
1795
1796Unix:
1797 libs:
1798 for dn in $(LIBDIRS); do \
1799 (cd $$dn; echo "Entering dir '$$(pwd)'"; make); \
1800 echo "Leaving dir"; \
1801 done
1802
1803Add
1804 %DEntering\ dir\ '%f',%XLeaving\ dir
1805to your 'errorformat' to handle the above output.
1806
1807Note that Vim doesn't check if the directory name in a "leave directory"
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001808messages is the current directory. This is why you could just use the message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809"Leaving dir".
1810
1811=============================================================================
18129. Specific error file formats *errorformats*
1813
1814 *errorformat-Jikes*
1815Jikes(TM), a source-to-bytecode Java compiler published by IBM Research,
1816produces simple multi-line error messages.
1817
1818An 'errorformat' string matching the produced messages is shown below.
1819The following lines can be placed in the user's |vimrc| to overwrite Vim's
1820recognized default formats, or see |:set+=| how to install this format
1821additionally to the default. >
1822
1823 :set efm=%A%f:%l:%c:%*\\d:%*\\d:,
1824 \%C%*\\s%trror:%m,
1825 \%+C%*[^:]%trror:%m,
1826 \%C%*\\s%tarning:%m,
1827 \%C%m
1828<
1829Jikes(TM) produces a single-line error message when invoked with the option
1830"+E", and can be matched with the following: >
1831
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001832 :setl efm=%f:%l:%v:%*\\d:%*\\d:%*\\s%m
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833<
1834 *errorformat-javac*
1835This 'errorformat' has been reported to work well for javac, which outputs a
1836line with "^" to indicate the column of the error: >
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001837 :setl efm=%A%f:%l:\ %m,%-Z%p^,%-C%.%#
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838or: >
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001839 :setl efm=%A%f:%l:\ %m,%+Z%p^,%+C%.%#,%-G%.%#
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840<
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001841Here is an alternative from Michael F. Lamb for Unix that filters the errors
1842first: >
1843 :setl errorformat=%Z%f:%l:\ %m,%A%p^,%-G%*[^sl]%.%#
Bram Moolenaar26df0922014-02-23 23:39:13 +01001844 :setl makeprg=javac\ %:S\ 2>&1\ \\\|\ vim-javac-filter
Bram Moolenaar6b803a72007-05-06 14:25:46 +00001845
1846You need to put the following in "vim-javac-filter" somewhere in your path
1847(e.g., in ~/bin) and make it executable: >
1848 #!/bin/sed -f
1849 /\^$/s/\t/\ /g;/:[0-9]\+:/{h;d};/^[ \t]*\^/G;
1850
1851In English, that sed script:
1852- Changes single tabs to single spaces and
1853- Moves the line with the filename, line number, error message to just after
1854 the pointer line. That way, the unused error text between doesn't break
1855 vim's notion of a "multi-line message" and also doesn't force us to include
1856 it as a "continuation of a multi-line message."
1857
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 *errorformat-ant*
1859For ant (http://jakarta.apache.org/) the above errorformat has to be modified
1860to honour the leading [javac] in front of each javac output line: >
1861 :set efm=%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%#
1862
1863The 'errorformat' can also be configured to handle ant together with either
1864javac or jikes. If you're using jikes, you should tell ant to use jikes' +E
1865command line switch which forces jikes to generate one-line error messages.
1866This is what the second line (of a build.xml file) below does: >
1867 <property name = "build.compiler" value = "jikes"/>
1868 <property name = "build.compiler.emacs" value = "true"/>
1869
1870The 'errorformat' which handles ant with both javac and jikes is: >
1871 :set efm=\ %#[javac]\ %#%f:%l:%c:%*\\d:%*\\d:\ %t%[%^:]%#:%m,
1872 \%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%#
1873<
1874 *errorformat-jade*
1875parsing jade (see http://www.jclark.com/) errors is simple: >
1876 :set efm=jade:%f:%l:%c:%t:%m
1877<
1878 *errorformat-LaTeX*
1879The following is an example how an 'errorformat' string can be specified
1880for the (La)TeX typesetting system which displays error messages over
1881multiple lines. The output of ":clist" and ":cc" etc. commands displays
1882multi-lines in a single line, leading white space is removed.
1883It should be easy to adopt the above LaTeX errorformat to any compiler output
1884consisting of multi-line errors.
1885
1886The commands can be placed in a |vimrc| file or some other Vim script file,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001887e.g. a script containing LaTeX related stuff which is loaded only when editing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888LaTeX sources.
1889Make sure to copy all lines of the example (in the given order), afterwards
1890remove the comment lines. For the '\' notation at the start of some lines see
1891|line-continuation|.
1892
1893 First prepare 'makeprg' such that LaTeX will report multiple
1894 errors; do not stop when the first error has occurred: >
1895 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*}
1896<
1897 Start of multi-line error messages: >
1898 :set efm=%E!\ LaTeX\ %trror:\ %m,
1899 \%E!\ %m,
1900< Start of multi-line warning messages; the first two also
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001901 include the line number. Meaning of some regular expressions:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 - "%.%#" (".*") matches a (possibly empty) string
1903 - "%*\\d" ("\d\+") matches a number >
1904 \%+WLaTeX\ %.%#Warning:\ %.%#line\ %l%.%#,
1905 \%+W%.%#\ at\ lines\ %l--%*\\d,
1906 \%WLaTeX\ %.%#Warning:\ %m,
1907< Possible continuations of error/warning messages; the first
1908 one also includes the line number: >
1909 \%Cl.%l\ %m,
1910 \%+C\ \ %m.,
1911 \%+C%.%#-%.%#,
1912 \%+C%.%#[]%.%#,
1913 \%+C[]%.%#,
1914 \%+C%.%#%[{}\\]%.%#,
1915 \%+C<%.%#>%.%#,
1916 \%C\ \ %m,
1917< Lines that match the following patterns do not contain any
1918 important information; do not include them in messages: >
1919 \%-GSee\ the\ LaTeX%m,
1920 \%-GType\ \ H\ <return>%m,
1921 \%-G\ ...%.%#,
1922 \%-G%.%#\ (C)\ %.%#,
1923 \%-G(see\ the\ transcript%.%#),
1924< Generally exclude any empty or whitespace-only line from
1925 being displayed: >
1926 \%-G\\s%#,
1927< The LaTeX output log does not specify the names of erroneous
1928 source files per line; rather they are given globally,
1929 enclosed in parentheses.
1930 The following patterns try to match these names and store
1931 them in an internal stack. The patterns possibly scan over
1932 the same input line (one after another), the trailing "%r"
1933 conversion indicates the "rest" of the line that will be
1934 parsed in the next go until the end of line is reached.
1935
1936 Overread a file name enclosed in '('...')'; do not push it
1937 on a stack since the file apparently does not contain any
1938 error: >
1939 \%+O(%f)%r,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001940< Push a file name onto the stack. The name is given after '(': >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 \%+P(%f%r,
1942 \%+P\ %\\=(%f%r,
1943 \%+P%*[^()](%f%r,
1944 \%+P[%\\d%[^()]%#(%f%r,
1945< Pop the last stored file name when a ')' is scanned: >
1946 \%+Q)%r,
1947 \%+Q%*[^()])%r,
1948 \%+Q[%\\d%*[^()])%r
1949
1950Note that in some cases file names in the LaTeX output log cannot be parsed
1951properly. The parser might have been messed up by unbalanced parentheses
1952then. The above example tries to catch the most relevant cases only.
1953You can customize the given setting to suit your own purposes, for example,
1954all the annoying "Overfull ..." warnings could be excluded from being
1955recognized as an error.
1956Alternatively to filtering the LaTeX compiler output, it is also possible
1957to directly read the *.log file that is produced by the [La]TeX compiler.
1958This contains even more useful information about possible error causes.
1959However, to properly parse such a complex file, an external filter should
1960be used. See the description further above how to make such a filter known
1961by Vim.
1962
1963 *errorformat-Perl*
1964In $VIMRUNTIME/tools you can find the efm_perl.pl script, which filters Perl
1965error messages into a format that quickfix mode will understand. See the
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001966start of the file about how to use it. (This script is deprecated, see
1967|compiler-perl|.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968
Bram Moolenaar858ba062020-05-31 23:11:59 +02001969=============================================================================
197010. Customizing the quickfix window *quickfix-window-function*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971
Bram Moolenaar858ba062020-05-31 23:11:59 +02001972The default format for the lines displayed in the quickfix window and location
1973list window is:
1974
1975 <filename>|<lnum> col <col>|<text>
1976
1977The values displayed in each line correspond to the "bufnr", "lnum", "col" and
1978"text" fields returned by the |getqflist()| function.
1979
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02001980For some quickfix/location lists, the displayed text needs to be customized.
Bram Moolenaar858ba062020-05-31 23:11:59 +02001981For example, if only the filename is present for a quickfix entry, then the
1982two "|" field separator characters after the filename are not needed. Another
1983use case is to customize the path displayed for a filename. By default, the
1984complete path (which may be too long) is displayed for files which are not
1985under the current directory tree. The file path may need to be simplified to a
1986common parent directory.
1987
1988The displayed text can be customized by setting the 'quickfixtextfunc' option
Bram Moolenaar00e260b2020-06-11 19:35:52 +02001989to a Vim function. This function will be called with a dict argument and
1990should return a List of strings to be displayed in the quickfix or location
1991list window. The dict argument will have the following fields:
Bram Moolenaar858ba062020-05-31 23:11:59 +02001992
1993 quickfix set to 1 when called for a quickfix list and 0 when called for
1994 a location list.
Bram Moolenaar7ba5a7e2020-06-08 19:20:27 +02001995 winid for a location list, set to the id of the window with the
1996 location list. For a quickfix list, set to 0. Can be used in
1997 getloclist() to get the location list entry.
Bram Moolenaar858ba062020-05-31 23:11:59 +02001998 id quickfix or location list identifier
Bram Moolenaar00e260b2020-06-11 19:35:52 +02001999 start_idx index of the first entry for which text should be returned
2000 end_idx index of the last entry for which text should be returned
Bram Moolenaar858ba062020-05-31 23:11:59 +02002001
2002The function should return a single line of text to display in the quickfix
Bram Moolenaar00e260b2020-06-11 19:35:52 +02002003window for each entry from start_idx to end_idx. The function can obtain
2004information about the entries using the |getqflist()| function and specifying
2005the quickfix list identifier "id". For a location list, getloclist() function
Bram Moolenaard43906d2020-07-20 21:31:32 +02002006can be used with the 'winid' argument. If an empty list is returned, then the
2007default format is used to display all the entries. If an item in the returned
2008list is an empty string, then the default format is used to display the
2009corresponding entry.
Bram Moolenaar858ba062020-05-31 23:11:59 +02002010
2011If a quickfix or location list specific customization is needed, then the
2012'quickfixtextfunc' attribute of the list can be set using the |setqflist()| or
2013|setloclist()| function. This overrides the global 'quickfixtextfunc' option.
2014
2015The example below displays the list of old files (|v:oldfiles|) in a quickfix
2016window. As there is no line, column number and error text information
2017associated with each entry, the 'quickfixtextfunc' function returns only the
2018filename.
2019Example: >
2020 " create a quickfix list from v:oldfiles
2021 call setqflist([], ' ', {'lines' : v:oldfiles, 'efm' : '%f',
2022 \ 'quickfixtextfunc' : 'QfOldFiles'})
2023 func QfOldFiles(info)
Bram Moolenaar00e260b2020-06-11 19:35:52 +02002024 " get information about a range of quickfix entries
2025 let items = getqflist({'id' : a:info.id, 'items' : 1}).items
2026 let l = []
2027 for idx in range(a:info.start_idx - 1, a:info.end_idx - 1)
2028 " use the simplified file name
2029 call add(l, fnamemodify(bufname(items[idx].bufnr), ':p:.'))
2030 endfor
2031 return l
Bram Moolenaar858ba062020-05-31 23:11:59 +02002032 endfunc
2033<
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034
Bram Moolenaar91f84f62018-07-29 15:07:52 +02002035 vim:tw=78:ts=8:noet:ft=help:norl: