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