blob: ee61f6a26b05176727c8c21354ef70187111711b [file] [log] [blame]
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00001*quickfix.txt* For Vim version 7.0aa. Last change: 2005 Feb 06
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7This subject is introduced in section |30.1| of the user manual.
8
91. Using QuickFix commands |quickfix|
102. The error window |quickfix-window|
113. Using more than one list of errors |quickfix-error-lists|
124. Using :make |:make_makeprg|
135. Using :grep |grep|
146. Selecting a compiler |compiler-select|
157. The error format |error-file-format|
168. The directory stack |quickfix-directory-stack|
179. Specific error file formats |errorformats|
18
19{Vi does not have any of these commands}
20
21The quickfix commands are not available when the |+quickfix| feature was
22disabled at compile time.
23
24=============================================================================
251. Using QuickFix commands *quickfix* *Quickfix* *E42*
26
27Vim has a special mode to speedup the edit-compile-edit cycle. This is
28inspired by the quickfix option of the Manx's Aztec C compiler on the Amiga.
29The idea is to save the error messages from the compiler in a file and use Vim
30to jump to the errors one by one. You can examine each problem and fix it,
31without having to remember all the error messages.
32
33If you are using Manx's Aztec C compiler on the Amiga look here for how to use
34it with Vim: |quickfix-manx|. If you are using another compiler you should
35save the error messages in a file and start Vim with "vim -q filename". An
36easy way to do this is with the |:make| command (see below). The
37'errorformat' option should be set to match the error messages from your
38compiler (see |errorformat| below).
39
40The following quickfix commands can be used:
41
42 *:cc*
43:cc[!] [nr] Display error [nr]. If [nr] is omitted, the same
44 error is displayed again. Without [!] this doesn't
45 work when jumping to another buffer, the current buffer
46 has been changed, there is the only window for the
47 buffer and both 'hidden' and 'autowrite' are off.
48 When jumping to another buffer with [!] any changes to
49 the current buffer are lost, unless 'hidden' is set or
50 there is another window for this buffer.
51 The 'switchbuf' settings are respected when jumping
52 to a buffer.
53
54 *:cn* *:cnext* *E553*
55:[count]cn[ext][!] Display the [count] next error in the list that
56 includes a file name. If there are no file names at
57 all, go to the [count] next error. See |:cc| for
58 [!] and 'switchbuf'.
59
60:[count]cN[ext][!] *:cp* *:cprevious* *:cN* *:cNext*
61:[count]cp[revious][!] Display the [count] previous error in the list that
62 includes a file name. If there are no file names at
63 all, go to the [count] previous error. See |:cc| for
64 [!] and 'switchbuf'.
65
66 *:cnf* *:cnfile*
67:[count]cnf[ile][!] Display the first error in the [count] next file in
68 the list that includes a file name. If there are no
69 file names at all or if there is no next file, go to
70 the [count] next error. See |:cc| for [!] and
71 'switchbuf'.
72
73:[count]cNf[ile][!] *:cpf* *:cpfile* *:cNf* *:cNfile*
74:[count]cpf[ile][!] Display the last error in the [count] previous file in
75 the list that includes a file name. If there are no
76 file names at all or if there is no next file, go to
77 the [count] previous error. See |:cc| for [!] and
78 'switchbuf'.
79
80 *:crewind* *:cr*
81:cr[ewind][!] [nr] Display error [nr]. If [nr] is omitted, the FIRST
82 error is displayed. See |:cc|.
83
84 *:cfirst* *:cfir*
85:cfir[st][!] [nr] Same as ":crewind".
86
87 *:clast* *:cla*
88:cla[st][!] [nr] Display error [nr]. If [nr] is omitted, the LAST
89 error is displayed. See |:cc|.
90
91 *:cq* *:cquit*
92:cq[uit] Quit Vim with an error code, so that the compiler
93 will not compile the same file again.
94
95 *:cf* *:cfile*
96:cf[ile][!] [errorfile] Read the error file and jump to the first error.
97 This is done automatically when Vim is started with
98 the -q option. You can use this command when you
99 keep Vim running while compiling. If you give the
100 name of the errorfile, the 'errorfile' option will
101 be set to [errorfile]. See |:cc| for [!].
102
103 *:cg* *:cgetfile*
104:cg[etfile][!] [errorfile]
105 Read the error file. Just like ":cfile" but don't
106 jump to the first error.
107
Bram Moolenaar86b68352004-12-27 21:59:20 +0000108 *:cb* *:cbuffer* *E681*
109:cb[uffer] [bufnr] Read the error list from the current buffer.
110 When [bufnr] is given it must be the number of a
111 loaded buffer. That buffer will then be used instead
112 of the current buffer.
113 A range can be specified for the lines to be used.
114 Otherwise all lines in the buffer are used.
115
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116 *:cl* *:clist*
117:cl[ist] [from] [, [to]]
118 List all errors that are valid |quickfix-valid|.
119 If numbers [from] and/or [to] are given, the respective
120 range of errors is listed. A negative number counts
121 from the last error backwards, -1 being the last error.
122 The 'switchbuf' settings are respected when jumping
123 to a buffer.
124
125:cl[ist]! [from] [, [to]]
126 List all errors.
127
128If you insert or delete lines, mostly the correct error location is still
129found because hidden marks are used. Sometimes, when the mark has been
130deleted for some reason, the message "line changed" is shown to warn you that
131the error location may not be correct. If you quit Vim and start again the
132marks are lost and the error locations may not be correct anymore.
133
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000134If vim is built with |+autocmd| support, two autocommands are available for
135running commands before and after a quickfix command (':make', ':grep' and so
136on) is executed. See |QuickFixCmdPre| and |QuickFixCmdPost| for details.
137
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138=============================================================================
1392. The error window *quickfix-window*
140
141 *:cope* *:copen*
142:cope[n] [height] Open a window to show the current list of errors.
143 When [height] is given, the window becomes that high
144 (if there is room). Otherwise the window is made ten
145 lines high.
146 The window will contain a special buffer, with
147 'buftype' equal to "quickfix". Don't change this!
148 If there already is a quickfix window, it will be made
149 the current window. It is not possible to open a
150 second quickfix window.
151
152 *:ccl* *:cclose*
153:ccl[ose] Close the quickfix window.
154
155 *:cw* *:cwindow*
156:cw[indow] [height] Open the quickfix window when there are recognized
157 errors. If the window is already open and there are
158 no recognized errors, close the window.
159
160
161Normally the quickfix window is at the bottom of the screen. If there are
162vertical splits, it's at the bottom of the rightmost column of windows. To
163make it always occupy the full width: >
164 :botright cwindow
165You can move the window around with |window-moving| commands.
166For example, to move it to the top: CTRL-W K
167The 'winfixheight' option will be set, which means that the window will mostly
168keep its height, ignoring 'winheight' and 'equalalways'. You can change the
169height manually (e.g., by dragging the status line above it with the mouse).
170
171In the quickfix window, each line is one error. The line number is equal to
172the error number. You can use ":.cc" to jump to the error under the cursor.
173Hitting the <CR> key or double-clicking the mouse on a line has the same
174effect. The file containing the error is opened in the window above the
175quickfix window. If there already is a window for that file, it is used
176instead. If the buffer in the used window has changed, and the error is in
177another file, jumping to the error will fail. You will first have to make
178sure the window contains a buffer which can be abandoned.
179
180When the quickfix window has been filled, two autocommand events are
181triggered. First the 'filetype' option is set to "qf", which triggers the
182FileType event. Then the BufReadPost event is triggered. This can be used to
183perform some action on the listed errors. Example: >
184 au BufReadPost quickfix setlocal nomodifiable
185 \ | silent g/^/s//\=line(".")." "/
186 \ | setlocal modifiable
187This prepends the line number to each line. Note the use of "\=" in the
188substitute string of the ":s" command, which is used to evaluate an
189expression.
190
191Note: Making changes in the quickfix window has no effect on the list of
192errors. 'modifiable' is off to avoid making changes. If you delete or insert
193lines anyway, the relation between the text and the error number is messed up.
194If you really want to do this, you could write the contents of the quickfix
195window to a file and use ":cfile" to have it parsed and used as the new error
196list.
197
198=============================================================================
1993. Using more than one list of errors *quickfix-error-lists*
200
201So far has been assumed that there is only one list of errors. Actually the
202ten last used lists are remembered. When starting a new list, the previous
203ones are automatically kept. Two commands can be used to access older error
204lists. They set one of the existing error lists as the current one.
205
206 *:colder* *:col* *E380*
207:col[der] [count] Go to older error list. When [count] is given, do
208 this [count] times. When already at the oldest error
209 list, an error message is given.
210
211 *:cnewer* *:cnew* *E381*
212:cnew[er] [count] Go to newer error list. When [count] is given, do
213 this [count] times. When already at the newest error
214 list, an error message is given.
215
216When adding a new error list, it becomes the current list.
217
218When ":colder" has been used and ":make" or ":grep" is used to add a new error
219list, one newer list is overwritten. This is especially useful if you are
220browsing with ":grep" |grep|. If you want to keep the more recent error
221lists, use ":cnewer 99" first.
222
223=============================================================================
2244. Using :make *:make_makeprg*
225
226 *:mak* *:make*
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000227:mak[e][!] [arguments] 1. If vim was built with |+autocmd|, all relevant
228 |QuickFixCmdPre| autocommands are executed.
229 2. If the 'autowrite' option is on, write any changed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230 buffers
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000231 3. An errorfile name is made from 'makeef'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232 'makeef' doesn't contain "##", and a file with this
233 name already exists, it is deleted.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000234 4. The program given with the 'makeprg' option is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 started (default "make") with the optional
236 [arguments] and the output is saved in the
237 errorfile (for Unix it is also echoed on the
238 screen).
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000239 5. The errorfile is read using 'errorformat'.
240 6. If [!] is not given the first error is jumped to.
241 7. The errorfile is deleted.
242 8. If vim was built with |+autocmd|, all relevant
243 |QuickFixCmdPost| autocommands are executed.
244 9. You can now move through the errors with commands
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 like |:cnext| and |:cprevious|, see above.
246 This command does not accept a comment, any "
247 characters are considered part of the arguments.
248
249The ":make" command executes the command given with the 'makeprg' option.
250This is done by passing the command to the shell given with the 'shell'
251option. This works almost like typing
252
253 ":!{makeprg} [arguments] {shellpipe} {errorfile}".
254
255{makeprg} is the string given with the 'makeprg' option. Any command can be
256used, not just "make". Characters '%' and '#' are expanded as usual on a
257command-line. You can use "%<" to insert the current file name without
258extension, or "#<" to insert the alternate file name without extension, for
259example: >
260 :set makeprg=make\ #<.o
261
262[arguments] is anything that is typed after ":make".
263{shellpipe} is the 'shellpipe' option.
264{errorfile} is the 'makeef' option, with ## replaced to make it unique.
265
266The placeholder "$*" can be used for the argument list in {makeprog} if the
267command needs some additional characters after its arguments. The $* is
268replaced then by all arguments. Example: >
269 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*}
270or simpler >
271 :let &mp = 'latex \\nonstopmode \\input\{$*}'
272"$*" can be given multiple times, for example: >
273 :set makeprg=gcc\ -o\ $*\ $*
274
275The 'shellpipe' option defaults to ">" for the Amiga, MS-DOS and Win32. This
276means that the output of the compiler is saved in a file and not shown on the
277screen directly. For Unix "| tee" is used. The compiler output is shown on
278the screen and saved in a file the same time. Depending on the shell used
279"|& tee" or "2>&1| tee" is the default, so stderr output will be included.
280
281If 'shellpipe' is empty, the {errorfile} part will be omitted. This is useful
282for compilers that write to an errorfile themselves (e.g., Manx's Amiga C).
283
284==============================================================================
Bram Moolenaar86b68352004-12-27 21:59:20 +00002855. Using :vimgrep and :grep *grep* *lid*
286
287Vim has two ways to find matches for a pattern: Internal and external. The
288advantage of the internal grep is that it works on all systems and uses the
289powerful Vim search patterns. An external grep program can be used when the
290Vim grep does not do what you want.
291
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000292The internal method will be slower, because files are read into memory. The
293advantages are:
294- Line separators and encoding are automatically recognized, as if a file is
295 being edited.
296- Uses Vim search patterns. Multi-line patterns can be used.
297- When plugins are enabled: compressed and remote files can be searched.
298 |gzip| |netrw|
Bram Moolenaardcaf10e2005-01-21 11:55:25 +0000299- When 'hidden' is set the files are kept loaded, thus repeating a search is
300 much faster. Uses a lot of memory though!
Bram Moolenaar86b68352004-12-27 21:59:20 +0000301
302
3035.1 using Vim's internal grep
304
Bram Moolenaare49b69a2005-01-08 16:11:57 +0000305 *:vim* *:vimgrep* *E682* *E683*
Bram Moolenaar86b68352004-12-27 21:59:20 +0000306:vim[grep][!] /{pattern}/ {file} ...
307 Search for {pattern} in the files {file} ... and set
308 the error list to the matches.
309 {pattern} if a Vim search pattern. Instead of
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000310 enclosing it in / any non-ID character |'isident'|
311 can be used, so long as it does not appear in
312 {pattern}.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +0000313 'ignorecase' applies. To overrule it use |/\c| to
314 ignore case or |/\C| to match case. 'smartcase' is
315 not used.
Bram Moolenaardcaf10e2005-01-21 11:55:25 +0000316 Every second or so the searched file name is displayed
317 to give you an idea of the progress made.
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000318 Examples: >
319 :vimgrep /an error/ *.c
320 :vimgrep /\<FileName\>/ *.h include/*
Bram Moolenaar86b68352004-12-27 21:59:20 +0000321
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000322:vim[grep][!] {pattern} {file} ...
323 Like above, but instead of enclosing the pattern in a
324 non-ID character use a white-separated pattern. The
325 pattern must start with an ID character.
326 Example: >
327 :vimgrep Error *.c
328<
Bram Moolenaar86b68352004-12-27 21:59:20 +0000329 *:vimgrepa* *:vimgrepadd*
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000330:vimgrepa[dd][!] [/]{pattern}[/] {file} ...
Bram Moolenaar86b68352004-12-27 21:59:20 +0000331 Just like ":vimgrep", but instead of making a new list
332 of errors the matches are appended to the current
333 list.
334
335
3365.2 External grep
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337
338Vim can interface with "grep" and grep-like programs (such as the GNU
339id-utils) in a similar way to its compiler integration (see |:make| above).
340
341[Unix trivia: The name for the Unix "grep" command comes from ":g/re/p", where
342"re" stands for Regular Expression.]
343
344 *:gr* *:grep*
345:gr[ep][!] [arguments] Just like ":make", but use 'grepprg' instead of
346 'makeprg' and 'grepformat' instead of 'errorformat'.
Bram Moolenaar86b68352004-12-27 21:59:20 +0000347 When 'grepprg' is "internal" this works like
348 |:vimgrep|. Note that the pattern needs to be
349 enclosed in separator characters then.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 *:grepa* *:grepadd*
351:grepa[dd][!] [arguments]
352 Just like ":grep", but instead of making a new list of
353 errors the matches are appended to the current list.
354 Example: >
355 :grep nothing %
356 :bufdo grepadd! something %
357< The first command makes a new error list which is
358 empty. The second command executes "grepadd" for each
359 listed buffer. Note the use of ! to avoid that
360 ":grepadd" jumps to the first error, which is not
361 allowed with |:bufdo|.
362
Bram Moolenaar86b68352004-12-27 21:59:20 +00003635.3 Setting up external grep
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364
365If you have a standard "grep" program installed, the :grep command may work
366well with the defaults. The syntax is very similar to the standard command: >
367
368 :grep foo *.c
369
370Will search all files with the .c extension for the substring "foo". The
371arguments to :grep are passed straight to the "grep" program, so you can use
372whatever options your "grep" supports.
373
374By default, :grep invokes grep with the -n option (show file and line
375numbers). You can change this with the 'grepprg' option. You will need to set
376'grepprg' if:
377
378a) You are using a program that isn't called "grep"
379b) You have to call grep with a full path
380c) You want to pass other options automatically (e.g. case insensitive
381 search.)
382
383Once "grep" has executed, Vim parses the results using the 'grepformat'
384option. This option works in the same way as the 'errorformat' option - see
385that for details. You may need to change 'grepformat' from the default if
386your grep outputs in a non-standard format, or you are using some other
387program with a special format.
388
389Once the results are parsed, Vim loads the first file containing a match and
390jumps to the appropriate line, in the same way that it jumps to a compiler
391error in |quickfix| mode. You can then use the |:cnext|, |:clist|, etc.
392commands to see the other matches.
393
394
Bram Moolenaar86b68352004-12-27 21:59:20 +00003955.4 Using :grep with id-utils
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396
397You can set up :grep to work with the GNU id-utils like this: >
398
399 :set grepprg=lid\ -Rgrep\ -s
400 :set grepformat=%f:%l:%m
401
402then >
403 :grep (regexp)
404
405works just as you'd expect.
406(provided you remembered to mkid first :)
407
408
Bram Moolenaar86b68352004-12-27 21:59:20 +00004095.5 Browsing source code with :vimgrep or :grep
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410
411Using the stack of error lists that Vim keeps, you can browse your files to
412look for functions and the functions they call. For example, suppose that you
413have to add an argument to the read_file() function. You enter this command: >
414
Bram Moolenaar86b68352004-12-27 21:59:20 +0000415 :vimgrep /\<read_file\>/ *.c
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416
417You use ":cn" to go along the list of matches and add the argument. At one
418place you have to get the new argument from a higher level function msg(), and
419need to change that one too. Thus you use: >
420
Bram Moolenaar86b68352004-12-27 21:59:20 +0000421 :vimgrep /\<msg\>/ *.c
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422
423While changing the msg() functions, you find another function that needs to
Bram Moolenaar86b68352004-12-27 21:59:20 +0000424get the argument from a higher level. You can again use ":vimgrep" to find
425these functions. Once you are finished with one function, you can use >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426
427 :colder
428
429to go back to the previous one.
430
Bram Moolenaar86b68352004-12-27 21:59:20 +0000431This works like browsing a tree: ":vimgrep" goes one level deeper, creating a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432list of branches. ":colder" goes back to the previous level. You can mix
Bram Moolenaar86b68352004-12-27 21:59:20 +0000433this use of ":vimgrep" and "colder" to browse all the locations in a tree-like
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434way. If you do this consistently, you will find all locations without the
435need to write down a "todo" list.
436
437=============================================================================
4386. Selecting a compiler *compiler-select*
439
440 *:comp* *:compiler* *E666*
441:comp[iler][!] {name} Set options to work with compiler {name}.
442 Without the "!" options are set for the
443 current buffer. With "!" global options are
444 set.
445 If you use ":compiler foo" in "file.foo" and
446 then ":compiler! bar" in another buffer, Vim
447 will keep on using "foo" in "file.foo".
448 {not available when compiled without the
449 |+eval| feature}
450
451
452The Vim plugins in the "compiler" directory will set options to use the
453selected compiler. For ":compiler" local options are set, for ":compiler!"
454global options.
455 *current_compiler*
456To support older Vim versions, the plugins always use "current_compiler" and
457not "b:current_compiler". What the command actually does is the following:
458
459- Delete the "current_compiler" and "b:current_compiler" variables.
460- Define the "CompilerSet" user command. With "!" it does ":set", without "!"
461 it does ":setlocal".
462- Execute ":runtime! compiler/{name}.vim". The plugins are expected to set
463 options with "CompilerSet" and set the "current_compiler" variable to the
464 name of the compiler.
465- Delete the "CompilerSet user command.
466- Set "b:current_compiler" to the value of "current_compiler".
467- Without "!" the old value of "current_compiler" is restored.
468
469
470For writing a compiler plugin, see |write-compiler-plugin|.
471
472
473MANX AZTEC C *quickfix-manx* *compiler-manx*
474
475To use Vim with Manx's Aztec C compiler on the Amiga you should do the
476following:
477- Set the CCEDIT environment variable with the command: >
478 mset "CCEDIT=vim -q"
479- Compile with the -qf option. If the compiler finds any errors, Vim is
480 started and the cursor is positioned on the first error. The error message
481 will be displayed on the last line. You can go to other errors with the
482 commands mentioned above. You can fix the errors and write the file(s).
483- If you exit Vim normally the compiler will re-compile the same file. If you
484 exit with the :cq command, the compiler will terminate. Do this if you
485 cannot fix the error, or if another file needs to be compiled first.
486
487There are some restrictions to the Quickfix mode on the Amiga. The
488compiler only writes the first 25 errors to the errorfile (Manx's
489documentation does not say how to get more). If you want to find the others,
490you will have to fix a few errors and exit the editor. After recompiling,
491up to 25 remaining errors will be found.
492
493If Vim was started from the compiler, the :sh and some :! commands will not
494work, because Vim is then running in the same process as the compiler and
495stdin (standard input) will not be interactive.
496
497
498PYUNIT COMPILER *compiler-pyunit*
499
500This is not actually a compiler, but a unit testing framework for the
501Python language. It is included into standard Python distribution
502starting from version 2.0. For older versions, you can get it from
503http://pyunit.sourceforge.net.
504
505When you run your tests with the help of the framework, possible errors
506are parsed by Vim and presented for you in quick-fix mode.
507
508Unfortunately, there is no standard way to run the tests.
509The alltests.py script seems to be used quite often, that's all.
510Useful values for the 'makeprg' options therefore are:
511 setlocal makeprg=./alltests.py " Run a testsuite
512 setlocal makeprg=python % " Run a single testcase
513
514Also see http://vim.sourceforge.net/tip_view.php?tip_id=280.
515
516
517TEX COMPILER *compiler-tex*
518
519Included in the distribution compiler for TeX ($VIMRUNTIME/compiler/tex.vim)
520uses make command if possible. If the compiler finds a file named "Makefile"
521or "makefile" in the current directory, it supposes that you want to process
522your *TeX files with make, and the makefile does the right work. In this case
523compiler sets 'errorformat' for *TeX output and leaves 'makeprg' untouched. If
524neither "Makefile" nor "makefile" is found, the compiler will not use make.
525You can force the compiler to ignore makefiles by defining
526b:tex_ignore_makefile or g:tex_ignore_makefile variable (they are checked for
527existence only).
528
529If the compiler chose not to use make, it need to choose a right program for
530processing your input. If b:tex_flavor or g:tex_flavor (in this precedence)
531variable exists, it defines TeX flavor for :make (actually, this is the name
532of executed command), and if both variables do not exist, it defaults to
533"latex". For example, while editing chapter2.tex \input-ed from mypaper.tex
534written in AMS-TeX: >
535
536 :let b:tex_flavor = 'amstex'
537 :compiler tex
538< [editing...] >
539 :make mypaper
540
541Note that you must specify a name of the file to process as an argument (to
542process the right file when editing \input-ed or \include-ed file; portable
543solution for substituting % for no arguments is welcome). This is not in the
544semantics of make, where you specify a target, not source, but you may specify
545filename without extension ".tex" and mean this as "make filename.dvi or
546filename.pdf or filename.some_result_extension according to compiler".
547
548Note: tex command line syntax is set to usable both for MikTeX (suggestion
549by Srinath Avadhanula) and teTeX (checked by Artem Chuprina). Suggestion
550from |errorformat-LaTeX| is too complex to keep it working for different
551shells and OSes and also does not allow to use other available TeX options,
552if any. If your TeX doesn't support "-interaction=nonstopmode", please
553report it with different means to express \nonstopmode from the command line.
554
555=============================================================================
5567. The error format *error-file-format*
557
558 *errorformat* *E372* *E373* *E374*
559 *E375* *E376* *E377* *E378*
560The 'errorformat' option specifies a list of formats that are recognized. The
561first format that matches with an error message is used. You can add several
562formats for different messages your compiler produces, or even entries for
563multiple compilers. See |efm-entries|.
564
565Each entry in 'errorformat' is a scanf-like string that describes the format.
566First, you need to know how scanf works. Look in the documentation of your
567C compiler. Below you find the % items that Vim understands. Others are
568invalid.
569
570Special characters in 'errorformat' are comma and backslash. See
571|efm-entries| for how to deal with them. Note that a literal "%" is matched
572by "%%", thus it is not escaped with a backslash.
573
574Note: By default the difference between upper and lowercase is ignored. If
575you want to match case, add "\C" to the pattern |/\C|.
576
577
578Basic items
579
580 %f file name (finds a string)
581 %l line number (finds a number)
582 %c column number (finds a number representing character
583 column of the error, (1 <tab> == 1 character column))
584 %v virtual column number (finds a number representing
585 screen column of the error (1 <tab> == 8 screen
586 columns)
587 %t error type (finds a single character)
588 %n error number (finds a number)
589 %m error message (finds a string)
590 %r matches the "rest" of a single-line file message %O/P/Q
591 %p pointer line (finds a sequence of '-', '.' or ' ' and
592 uses the length for the column number)
593 %*{conv} any scanf non-assignable conversion
594 %% the single '%' character
595
596The "%f" conversion depends on the current 'isfname' setting.
597
598The "%f" and "%m" conversions have to detect the end of the string. They
599should be followed by a character that cannot be in the string. Everything
600up to that character is included in the string. But when the next character
601is a '%' or a backslash, "%f" will look for any 'isfname' character and "%m"
602finds anything. If the "%f" or "%m" is at the end, everything up to the end
603of the line is included.
604
605On MS-DOS, MS-Windows and OS/2 a leading "C:" will be included in "%f", even
606when using "%f:". This means that a file name which is a single alphabetical
607letter will not be detected.
608
609The "%p" conversion is normally followed by a "^". It's used for compilers
610that output a line like: >
611 ^
612or >
613 ---------^
614to indicate the column of the error. This is to be used in a multi-line error
615message. See |errorformat-javac| for a useful example.
616
617
618Changing directory
619
620The following uppercase conversion characters specify the type of special
621format strings. At most one of them may be given as a prefix at the begin
622of a single comma-separated format pattern.
623Some compilers produce messages that consist of directory names that have to
624be prepended to each file name read by %f (example: GNU make). The following
625codes can be used to scan these directory names; they will be stored in an
626internal directory stack. *E379*
627 %D "enter directory" format string; expects a following
628 %f that finds the directory name
629 %X "leave directory" format string; expects following %f
630
631When defining an "enter directory" or "leave directory" format, the "%D" or
632"%X" has to be given at the start of that substring. Vim tracks the directory
633changes and prepends the current directory to each erroneous file found with a
634relative path. See |quickfix-directory-stack| for details, tips and
635limitations.
636
637
638Multi-line messages *errorformat-multi-line*
639
640It is possible to read the output of programs that produce multi-line
641messages, ie. error strings that consume more than one line. Possible
642prefixes are:
643 %E start of a multi-line error message
644 %W start of a multi-line warning message
645 %I start of a multi-line informational message
646 %A start of a multi-line message (unspecified type)
647 %C continuation of a multi-line message
648 %Z end of a multi-line message
649These can be used with '+' and '-', see |efm-ignore| below.
650
651Example: Your compiler happens to write out errors in the following format
652(leading line numbers not being part of the actual output):
653
654 1 Error 275
655 2 line 42
656 3 column 3
657 4 ' ' expected after '--'
658
659The appropriate error format string has to look like this: >
660 :set efm=%EError\ %n,%Cline\ %l,%Ccolumn\ %c,%Z%m
661
662And the |:clist| error message generated for this error is:
663
664 1:42 col 3 error 275: ' ' expected after '--'
665
666Another example: Think of a Python interpreter that produces the following
667error message (line numbers are not part of the actual output):
668
669 1 ==============================================================
670 2 FAIL: testGetTypeIdCachesResult (dbfacadeTest.DjsDBFacadeTest)
671 3 --------------------------------------------------------------
672 4 Traceback (most recent call last):
673 5 File "unittests/dbfacadeTest.py", line 89, in testFoo
674 6 self.assertEquals(34, dtid)
675 7 File "/usr/lib/python2.2/unittest.py", line 286, in
676 8 failUnlessEqual
677 9 raise self.failureException, \
678 10 AssertionError: 34 != 33
679 11
680 12 --------------------------------------------------------------
681 13 Ran 27 tests in 0.063s
682
683Say you want |:clist| write the relevant information of this message only,
684namely:
685 5 unittests/dbfacadeTest.py:89: AssertionError: 34 != 33
686
687Then the error format string could be defined as follows: >
688 :set efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%m
689
690Note that the %C string is given before the %A here: since the expression
691' %.%#' (which stands for the regular expression ' .*') matches every line
692starting with a space, followed by any characters to the end of the line,
693it also hides line 7 which would trigger a separate error message otherwise.
694Error format strings are always parsed pattern by pattern until the first
695match occurs.
696
697
698Separate file name *errorformat-separate-filename*
699
700These prefixes are useful if the file name is given once and multiple messages
701follow that refer to this file name.
702 %O single-line file message: overread the matched part
703 %P single-line file message: push file %f onto the stack
704 %Q single-line file message: pop the last file from stack
705
706Example: Given a compiler that produces the following error logfile (without
707leading line numbers):
708
709 1 [a1.tt]
710 2 (1,17) error: ';' missing
711 3 (21,2) warning: variable 'z' not defined
712 4 (67,3) error: end of file found before string ended
713 5
714 6 [a2.tt]
715 7
716 8 [a3.tt]
717 9 NEW compiler v1.1
718 10 (2,2) warning: variable 'x' not defined
719 11 (67,3) warning: 's' already defined
720
721This logfile lists several messages for each file enclosed in [...] which are
722properly parsed by an error format like this: >
723 :set efm=%+P[%f],(%l\\,%c)%*[\ ]%t%*[^:]:\ %m,%-Q
724
725A call of |:clist| writes them accordingly with their correct filenames:
726
727 2 a1.tt:1 col 17 error: ';' missing
728 3 a1.tt:21 col 2 warning: variable 'z' not defined
729 4 a1.tt:67 col 3 error: end of file found before string ended
730 8 a3.tt:2 col 2 warning: variable 'x' not defined
731 9 a3.tt:67 col 3 warning: 's' already defined
732
733Unlike the other prefixes that all match against whole lines, %P, %Q and %O
734can be used to match several patterns in the same line. Thus it is possible
735to parse even nested files like in the following line:
736 {"file1" {"file2" error1} error2 {"file3" error3 {"file4" error4 error5}}}
737The %O then parses over strings that do not contain any push/pop file name
738information. See |errorformat-LaTeX| for an extended example.
739
740
741Ignoring and using whole messages *efm-ignore*
742
743The codes '+' or '-' can be combined with the uppercase codes above; in that
744case they have to precede the letter, eg. '%+A' or '%-G':
745 %- do not include the matching multi-line in any output
746 %+ include the whole matching line in the %m error string
747
748One prefix is only useful in combination with '+' or '-', namely %G. It parses
749over lines containing general information like compiler version strings or
750other headers that can be skipped.
751 %-G ignore this message
752 %+G general message
753
754
755Pattern matching
756
757The scanf()-like "%*[]" notation is supported for backward-compatibility
758with previous versions of Vim. However, it is also possible to specify
759(nearly) any Vim supported regular expression in format strings.
760Since meta characters of the regular expression language can be part of
761ordinary matching strings or file names (and therefore internally have to
762be escaped), meta symbols have to be written with leading '%':
763 %\ the single '\' character. Note that this has to be
764 escaped ("%\\") in ":set errorformat=" definitions.
765 %. the single '.' character.
766 %# the single '*'(!) character.
767 %^ the single '^' character.
768 %$ the single '$' character.
769 %[ the single '[' character for a [] character range.
770 %~ the single '~' character.
771When using character classes in expressions (see |/\i| for an overview),
772terms containing the "\+" quantifier can be written in the scanf() "%*"
773notation. Example: "%\\d%\\+" ("\d\+", "any number") is equivalent to "%*\\d".
774Important note: The \(...\) grouping of sub-matches can not be used in format
775specifications because it is reserved for internal conversions.
776
777
778Multiple entries in 'errorformat' *efm-entries*
779
780To be able to detect output from several compilers, several format patterns
781may be put in 'errorformat', separated by commas (note: blanks after the comma
782are ignored). The first pattern that has a complete match is used. If no
783match is found, matching parts from the last one will be used, although the
784file name is removed and the error message is set to the whole message. If
785there is a pattern that may match output from several compilers (but not in a
786right way), put it after one that is more restrictive.
787
788To include a comma in a pattern precede it with a backslash (you have to type
789two in a ":set" command). To include a backslash itself give two backslashes
790(you have to type four in a ":set" command). You also need to put a backslash
791before a space for ":set".
792
793
794Valid matches *quickfix-valid*
795
796If a line does not completely match one of the entries in 'errorformat', the
797whole line is put in the error message and the entry is marked "not valid"
798These lines are skipped with the ":cn" and ":cp" commands (unless there is
799no valid line at all). You can use ":cl!" to display all the error messages.
800
801If the error format does not contain a file name Vim cannot switch to the
802correct file. You will have to do this by hand.
803
804
805Examples
806
807The format of the file from the Amiga Aztec compiler is:
808
809 filename>linenumber:columnnumber:errortype:errornumber:errormessage
810
811 filename name of the file in which the error was detected
812 linenumber line number where the error was detected
813 columnnumber column number where the error was detected
814 errortype type of the error, normally a single 'E' or 'W'
815 errornumber number of the error (for lookup in the manual)
816 errormessage description of the error
817
818This can be matched with this 'errorformat' entry:
819 %f>%l:%c:%t:%n:%m
820
821Some examples for C compilers that produce single-line error outputs:
822%f:%l:\ %t%*[^0123456789]%n:\ %m for Manx/Aztec C error messages
823 (scanf() doesn't understand [0-9])
824%f\ %l\ %t%*[^0-9]%n:\ %m for SAS C
825\"%f\"\\,%*[^0-9]%l:\ %m for generic C compilers
826%f:%l:\ %m for GCC
827%f:%l:\ %m,%Dgmake[%*\\d]:\ Entering\ directory\ `%f',
828%Dgmake[%*\\d]:\ Leaving\ directory\ `%f'
829 for GCC with gmake (concat the lines!)
830%f(%l)\ :\ %*[^:]:\ %m old SCO C compiler (pre-OS5)
831%f(%l)\ :\ %t%*[^0-9]%n:\ %m idem, with error type and number
832%f:%l:\ %m,In\ file\ included\ from\ %f:%l:,\^I\^Ifrom\ %f:%l%m
833 for GCC, with some extras
834
835Extended examples for the handling of multi-line messages are given below,
836see |errorformat-Jikes| and |errorformat-LaTeX|.
837
838Note the backslash in front of a space and double quote. It is required for
839the :set command. There are two backslashes in front of a comma, one for the
840:set command and one to avoid recognizing the comma as a separator of error
841formats.
842
843
844Filtering messages
845
846If you have a compiler that produces error messages that do not fit in the
847format string, you could write a program that translates the error messages
848into this format. You can use this program with the ":make" command by
849changing the 'makeprg' option. For example: >
850 :set mp=make\ \\\|&\ error_filter
851The backslashes before the pipe character are required to avoid it to be
852recognized as a command separator. The backslash before each space is
853required for the set command.
854
855=============================================================================
8568. The directory stack *quickfix-directory-stack*
857
858Quickfix maintains a stack for saving all used directories parsed from the
859make output. For GNU-make this is rather simple, as it always prints the
860absolute path of all directories it enters and leaves. Regardless if this is
861done via a 'cd' command in the makefile or with the parameter "-C dir" (change
862to directory before reading the makefile). It may be useful to use the switch
863"-w" to force GNU-make to print out the working directory before and after
864processing.
865
866Maintaining the correct directory is more complicated if you don't use
867GNU-make. AIX-make for example doesn't print any information about its working
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000868directory. Then you need to enhance the makefile. In the makefile of LessTif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869there is a command which echoes "Making {target} in {dir}". The special
870problem here is that it doesn't print informations on leaving the directory
871and that it doesn't print the absolute path.
872
873To solve the problem with relative paths and missing "leave directory"
874messages Vim uses following algorithm:
875
8761) Check if the given directory is a subdirectory of the current directory.
877 If this is true, store it as the current directory.
8782) If it is not a subdir of the current directory, try if this is a
879 subdirectory of one of the upper directories.
8803) If the directory still isn't found, it is assumed to be a subdirectory
881 of Vim's current directory.
882
883Additionally it is checked for every file, if it really exists in the
884identified directory. If not, it is searched in all other directories of the
885directory stack (NOT the directory subtree!). If it is still not found, it is
886assumed that it is in Vim's current directory.
887
888There are limitation in this algorithm. This examples assume that make just
889prints information about entering a directory in the form "Making all in dir".
890
8911) Assume you have following directories and files:
892 ./dir1
893 ./dir1/file1.c
894 ./file1.c
895
896 If make processes the directory "./dir1" before the current directory and
897 there is an error in the file "./file1.c", you will end up with the file
898 "./dir1/file.c" loaded by Vim.
899
900 This can only be solved with a "leave directory" message.
901
9022) Assume you have following directories and files:
903 ./dir1
904 ./dir1/dir2
905 ./dir2
906
907 You get the following:
908
909 Make output Directory interpreted by Vim
910 ------------------------ ----------------------------
911 Making all in dir1 ./dir1
912 Making all in dir2 ./dir1/dir2
913 Making all in dir2 ./dir1/dir2
914
915 This can be solved by printing absolute directories in the "enter directory"
916 message or by printing "leave directory" messages..
917
918To avoid this problems, ensure to print absolute directory names and "leave
919directory" messages.
920
921Examples for Makefiles:
922
923Unix:
924 libs:
925 for dn in $(LIBDIRS); do \
926 (cd $$dn; echo "Entering dir '$$(pwd)'"; make); \
927 echo "Leaving dir"; \
928 done
929
930Add
931 %DEntering\ dir\ '%f',%XLeaving\ dir
932to your 'errorformat' to handle the above output.
933
934Note that Vim doesn't check if the directory name in a "leave directory"
935messages is the current directory. This is why you could just use the message
936"Leaving dir".
937
938=============================================================================
9399. Specific error file formats *errorformats*
940
941 *errorformat-Jikes*
942Jikes(TM), a source-to-bytecode Java compiler published by IBM Research,
943produces simple multi-line error messages.
944
945An 'errorformat' string matching the produced messages is shown below.
946The following lines can be placed in the user's |vimrc| to overwrite Vim's
947recognized default formats, or see |:set+=| how to install this format
948additionally to the default. >
949
950 :set efm=%A%f:%l:%c:%*\\d:%*\\d:,
951 \%C%*\\s%trror:%m,
952 \%+C%*[^:]%trror:%m,
953 \%C%*\\s%tarning:%m,
954 \%C%m
955<
956Jikes(TM) produces a single-line error message when invoked with the option
957"+E", and can be matched with the following: >
958
959 :set efm=%f:%l:%v:%*\\d:%*\\d:%*\\s%m
960<
961 *errorformat-javac*
962This 'errorformat' has been reported to work well for javac, which outputs a
963line with "^" to indicate the column of the error: >
964 :set efm=%A%f:%l:\ %m,%-Z%p^,%-C%.%#
965or: >
966 :set efm=%A%f:%l:\ %m,%+Z%p^,%+C%.%#,%-G%.%#
967<
968 *errorformat-ant*
969For ant (http://jakarta.apache.org/) the above errorformat has to be modified
970to honour the leading [javac] in front of each javac output line: >
971 :set efm=%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%#
972
973The 'errorformat' can also be configured to handle ant together with either
974javac or jikes. If you're using jikes, you should tell ant to use jikes' +E
975command line switch which forces jikes to generate one-line error messages.
976This is what the second line (of a build.xml file) below does: >
977 <property name = "build.compiler" value = "jikes"/>
978 <property name = "build.compiler.emacs" value = "true"/>
979
980The 'errorformat' which handles ant with both javac and jikes is: >
981 :set efm=\ %#[javac]\ %#%f:%l:%c:%*\\d:%*\\d:\ %t%[%^:]%#:%m,
982 \%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%#
983<
984 *errorformat-jade*
985parsing jade (see http://www.jclark.com/) errors is simple: >
986 :set efm=jade:%f:%l:%c:%t:%m
987<
988 *errorformat-LaTeX*
989The following is an example how an 'errorformat' string can be specified
990for the (La)TeX typesetting system which displays error messages over
991multiple lines. The output of ":clist" and ":cc" etc. commands displays
992multi-lines in a single line, leading white space is removed.
993It should be easy to adopt the above LaTeX errorformat to any compiler output
994consisting of multi-line errors.
995
996The commands can be placed in a |vimrc| file or some other Vim script file,
997eg. a script containing LaTeX related stuff which is loaded only when editing
998LaTeX sources.
999Make sure to copy all lines of the example (in the given order), afterwards
1000remove the comment lines. For the '\' notation at the start of some lines see
1001|line-continuation|.
1002
1003 First prepare 'makeprg' such that LaTeX will report multiple
1004 errors; do not stop when the first error has occurred: >
1005 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*}
1006<
1007 Start of multi-line error messages: >
1008 :set efm=%E!\ LaTeX\ %trror:\ %m,
1009 \%E!\ %m,
1010< Start of multi-line warning messages; the first two also
1011 include the line number. Meaning of some regular expressions:
1012 - "%.%#" (".*") matches a (possibly empty) string
1013 - "%*\\d" ("\d\+") matches a number >
1014 \%+WLaTeX\ %.%#Warning:\ %.%#line\ %l%.%#,
1015 \%+W%.%#\ at\ lines\ %l--%*\\d,
1016 \%WLaTeX\ %.%#Warning:\ %m,
1017< Possible continuations of error/warning messages; the first
1018 one also includes the line number: >
1019 \%Cl.%l\ %m,
1020 \%+C\ \ %m.,
1021 \%+C%.%#-%.%#,
1022 \%+C%.%#[]%.%#,
1023 \%+C[]%.%#,
1024 \%+C%.%#%[{}\\]%.%#,
1025 \%+C<%.%#>%.%#,
1026 \%C\ \ %m,
1027< Lines that match the following patterns do not contain any
1028 important information; do not include them in messages: >
1029 \%-GSee\ the\ LaTeX%m,
1030 \%-GType\ \ H\ <return>%m,
1031 \%-G\ ...%.%#,
1032 \%-G%.%#\ (C)\ %.%#,
1033 \%-G(see\ the\ transcript%.%#),
1034< Generally exclude any empty or whitespace-only line from
1035 being displayed: >
1036 \%-G\\s%#,
1037< The LaTeX output log does not specify the names of erroneous
1038 source files per line; rather they are given globally,
1039 enclosed in parentheses.
1040 The following patterns try to match these names and store
1041 them in an internal stack. The patterns possibly scan over
1042 the same input line (one after another), the trailing "%r"
1043 conversion indicates the "rest" of the line that will be
1044 parsed in the next go until the end of line is reached.
1045
1046 Overread a file name enclosed in '('...')'; do not push it
1047 on a stack since the file apparently does not contain any
1048 error: >
1049 \%+O(%f)%r,
1050< Push a file name onto the stack. The name is given after '(': >
1051 \%+P(%f%r,
1052 \%+P\ %\\=(%f%r,
1053 \%+P%*[^()](%f%r,
1054 \%+P[%\\d%[^()]%#(%f%r,
1055< Pop the last stored file name when a ')' is scanned: >
1056 \%+Q)%r,
1057 \%+Q%*[^()])%r,
1058 \%+Q[%\\d%*[^()])%r
1059
1060Note that in some cases file names in the LaTeX output log cannot be parsed
1061properly. The parser might have been messed up by unbalanced parentheses
1062then. The above example tries to catch the most relevant cases only.
1063You can customize the given setting to suit your own purposes, for example,
1064all the annoying "Overfull ..." warnings could be excluded from being
1065recognized as an error.
1066Alternatively to filtering the LaTeX compiler output, it is also possible
1067to directly read the *.log file that is produced by the [La]TeX compiler.
1068This contains even more useful information about possible error causes.
1069However, to properly parse such a complex file, an external filter should
1070be used. See the description further above how to make such a filter known
1071by Vim.
1072
1073 *errorformat-Perl*
1074In $VIMRUNTIME/tools you can find the efm_perl.pl script, which filters Perl
1075error messages into a format that quickfix mode will understand. See the
1076start of the file about how to use it.
1077
1078
1079
1080 vim:tw=78:ts=8:ft=help:norl: