Mercurial > vim
annotate runtime/doc/quickfix.txt @ 9295:0a5adc97fac8 v7.4.1930
commit https://github.com/vim/vim/commit/bf2c0ee0b2e8465847cf67aff22dd4bda7be81d1
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jun 13 20:23:53 2016 +0200
patch 7.4.1930
Problem: Can't build without +spell but with +quickfix. (Charles)
Solution: Add better #ifdef around ml_append_buf(). (closes https://github.com/vim/vim/issues/864)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 13 Jun 2016 20:30:08 +0200 |
parents | ecb621205ed1 |
children | b398e4e12751 |
rev | line source |
---|---|
9227
ecb621205ed1
commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1 *quickfix.txt* For Vim version 7.4. Last change: 2016 Jun 02 |
7 | 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 | |
170 | 33 In Vim the quickfix commands are used more generally to find a list of |
34 positions in files. For example, |:vimgrep| finds pattern matches. You can | |
231 | 35 use the positions in a script with the |getqflist()| function. Thus you can |
170 | 36 do a lot more than the edit/compile/fix cycle! |
37 | |
7 | 38 If you are using Manx's Aztec C compiler on the Amiga look here for how to use |
39 it with Vim: |quickfix-manx|. If you are using another compiler you should | |
40 save the error messages in a file and start Vim with "vim -q filename". An | |
41 easy way to do this is with the |:make| command (see below). The | |
42 'errorformat' option should be set to match the error messages from your | |
43 compiler (see |errorformat| below). | |
44 | |
644 | 45 *location-list* *E776* |
648 | 46 A location list is similar to a quickfix list and contains a list of positions |
47 in files. A location list is associated with a window and each window can | |
48 have a separate location list. A location list can be associated with only | |
49 one window. The location list is independent of the quickfix list. | |
644 | 50 |
648 | 51 When a window with a location list is split, the new window gets a copy of the |
52 location list. When there are no references to a location list, the location | |
53 list is destroyed. | |
54 | |
55 The following quickfix commands can be used. The location list commands are | |
56 similar to the quickfix commands, replacing the 'c' prefix in the quickfix | |
57 command with 'l'. | |
7 | 58 |
8673
ed7251c3e2d3
commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents:
7707
diff
changeset
|
59 *E924* |
ed7251c3e2d3
commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents:
7707
diff
changeset
|
60 If the current window was closed by an |autocommand| while processing a |
ed7251c3e2d3
commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents:
7707
diff
changeset
|
61 location list command, it will be aborted. |
ed7251c3e2d3
commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents:
7707
diff
changeset
|
62 |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
63 *E925* *E926* |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
64 If the current quickfix or location list was changed by an |autocommand| while |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
65 processing a quickfix or location list command, it will be aborted. |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
66 |
7 | 67 *:cc* |
68 :cc[!] [nr] Display error [nr]. If [nr] is omitted, the same | |
69 error is displayed again. Without [!] this doesn't | |
70 work when jumping to another buffer, the current buffer | |
71 has been changed, there is the only window for the | |
72 buffer and both 'hidden' and 'autowrite' are off. | |
73 When jumping to another buffer with [!] any changes to | |
74 the current buffer are lost, unless 'hidden' is set or | |
75 there is another window for this buffer. | |
76 The 'switchbuf' settings are respected when jumping | |
77 to a buffer. | |
78 | |
644 | 79 *:ll* |
80 :ll[!] [nr] Same as ":cc", except the location list for the | |
81 current window is used instead of the quickfix list. | |
82 | |
7 | 83 *:cn* *:cnext* *E553* |
84 :[count]cn[ext][!] Display the [count] next error in the list that | |
85 includes a file name. If there are no file names at | |
86 all, go to the [count] next error. See |:cc| for | |
87 [!] and 'switchbuf'. | |
88 | |
647 | 89 *:lne* *:lnext* |
90 :[count]lne[xt][!] Same as ":cnext", except the location list for the | |
644 | 91 current window is used instead of the quickfix list. |
92 | |
7 | 93 :[count]cN[ext][!] *:cp* *:cprevious* *:cN* *:cNext* |
94 :[count]cp[revious][!] Display the [count] previous error in the list that | |
95 includes a file name. If there are no file names at | |
96 all, go to the [count] previous error. See |:cc| for | |
97 [!] and 'switchbuf'. | |
98 | |
856 | 99 |
647 | 100 :[count]lN[ext][!] *:lp* *:lprevious* *:lN* *:lNext* |
644 | 101 :[count]lp[revious][!] Same as ":cNext" and ":cprevious", except the location |
102 list for the current window is used instead of the | |
103 quickfix list. | |
104 | |
7 | 105 *:cnf* *:cnfile* |
106 :[count]cnf[ile][!] Display the first error in the [count] next file in | |
107 the list that includes a file name. If there are no | |
108 file names at all or if there is no next file, go to | |
109 the [count] next error. See |:cc| for [!] and | |
110 'switchbuf'. | |
111 | |
644 | 112 *:lnf* *:lnfile* |
113 :[count]lnf[ile][!] Same as ":cnfile", except the location list for the | |
114 current window is used instead of the quickfix list. | |
115 | |
7 | 116 :[count]cNf[ile][!] *:cpf* *:cpfile* *:cNf* *:cNfile* |
117 :[count]cpf[ile][!] Display the last error in the [count] previous file in | |
118 the list that includes a file name. If there are no | |
119 file names at all or if there is no next file, go to | |
120 the [count] previous error. See |:cc| for [!] and | |
121 'switchbuf'. | |
122 | |
647 | 123 |
124 :[count]lNf[ile][!] *:lpf* *:lpfile* *:lNf* *:lNfile* | |
644 | 125 :[count]lpf[ile][!] Same as ":cNfile" and ":cpfile", except the location |
126 list for the current window is used instead of the | |
127 quickfix list. | |
128 | |
7 | 129 *:crewind* *:cr* |
130 :cr[ewind][!] [nr] Display error [nr]. If [nr] is omitted, the FIRST | |
131 error is displayed. See |:cc|. | |
132 | |
644 | 133 *:lrewind* *:lr* |
134 :lr[ewind][!] [nr] Same as ":crewind", except the location list for the | |
135 current window is used instead of the quickfix list. | |
136 | |
7 | 137 *:cfirst* *:cfir* |
138 :cfir[st][!] [nr] Same as ":crewind". | |
139 | |
644 | 140 *:lfirst* *:lfir* |
141 :lfir[st][!] [nr] Same as ":lrewind". | |
142 | |
7 | 143 *:clast* *:cla* |
144 :cla[st][!] [nr] Display error [nr]. If [nr] is omitted, the LAST | |
145 error is displayed. See |:cc|. | |
146 | |
644 | 147 *:llast* *:lla* |
148 :lla[st][!] [nr] Same as ":clast", except the location list for the | |
149 current window is used instead of the quickfix list. | |
150 | |
7 | 151 *:cq* *:cquit* |
1624 | 152 :cq[uit][!] Quit Vim with an error code, so that the compiler |
7 | 153 will not compile the same file again. |
1624 | 154 WARNING: All changes in files are lost! Also when the |
155 [!] is not used. It works like ":qall!" |:qall|, | |
156 except that Vim returns a non-zero exit code. | |
7 | 157 |
158 *:cf* *:cfile* | |
159 :cf[ile][!] [errorfile] Read the error file and jump to the first error. | |
160 This is done automatically when Vim is started with | |
161 the -q option. You can use this command when you | |
162 keep Vim running while compiling. If you give the | |
163 name of the errorfile, the 'errorfile' option will | |
164 be set to [errorfile]. See |:cc| for [!]. | |
165 | |
644 | 166 *:lf* *:lfile* |
167 :lf[ile][!] [errorfile] Same as ":cfile", except the location list for the | |
168 current window is used instead of the quickfix list. | |
169 You can not use the -q command-line option to set | |
170 the location list. | |
171 | |
856 | 172 |
1624 | 173 :cg[etfile] [errorfile] *:cg* *:cgetfile* |
7 | 174 Read the error file. Just like ":cfile" but don't |
175 jump to the first error. | |
176 | |
856 | 177 |
1624 | 178 :lg[etfile] [errorfile] *:lg* *:lgetfile* |
644 | 179 Same as ":cgetfile", except the location list for the |
180 current window is used instead of the quickfix list. | |
181 | |
625 | 182 *:caddf* *:caddfile* |
183 :caddf[ile] [errorfile] Read the error file and add the errors from the | |
446 | 184 errorfile to the current quickfix list. If a quickfix |
185 list is not present, then a new list is created. | |
186 | |
644 | 187 *:laddf* *:laddfile* |
188 :laddf[ile] [errorfile] Same as ":caddfile", except the location list for the | |
189 current window is used instead of the quickfix list. | |
190 | |
41 | 191 *:cb* *:cbuffer* *E681* |
1084 | 192 :cb[uffer][!] [bufnr] Read the error list from the current buffer. |
41 | 193 When [bufnr] is given it must be the number of a |
194 loaded buffer. That buffer will then be used instead | |
195 of the current buffer. | |
196 A range can be specified for the lines to be used. | |
197 Otherwise all lines in the buffer are used. | |
1084 | 198 See |:cc| for [!]. |
41 | 199 |
644 | 200 *:lb* *:lbuffer* |
1084 | 201 :lb[uffer][!] [bufnr] Same as ":cbuffer", except the location list for the |
644 | 202 current window is used instead of the quickfix list. |
203 | |
798 | 204 *:cgetb* *:cgetbuffer* |
205 :cgetb[uffer] [bufnr] Read the error list from the current buffer. Just | |
206 like ":cbuffer" but don't jump to the first error. | |
207 | |
208 *:lgetb* *:lgetbuffer* | |
209 :lgetb[uffer] [bufnr] Same as ":cgetbuffer", except the location list for | |
210 the current window is used instead of the quickfix | |
211 list. | |
212 | |
5734 | 213 *:cad* *:caddbuffer* |
5763 | 214 :cad[dbuffer] [bufnr] Read the error list from the current buffer and add |
658 | 215 the errors to the current quickfix list. If a |
216 quickfix list is not present, then a new list is | |
217 created. Otherwise, same as ":cbuffer". | |
218 | |
219 *:laddb* *:laddbuffer* | |
220 :laddb[uffer] [bufnr] Same as ":caddbuffer", except the location list for | |
221 the current window is used instead of the quickfix | |
222 list. | |
223 | |
626 | 224 *:cex* *:cexpr* *E777* |
625 | 225 :cex[pr][!] {expr} Create a quickfix list using the result of {expr} and |
2833 | 226 jump to the first error. |
227 If {expr} is a String, then each new-line terminated | |
7701
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
228 line in the String is processed using the global value |
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
229 of 'errorformat' and the result is added to the |
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
230 quickfix list. |
2833 | 231 If {expr} is a List, then each String item in the list |
232 is processed and added to the quickfix list. Non | |
233 String items in the List are ignored. | |
234 See |:cc| for [!]. | |
446 | 235 Examples: > |
236 :cexpr system('grep -n xyz *') | |
237 :cexpr getline(1, '$') | |
238 < | |
644 | 239 *:lex* *:lexpr* |
2833 | 240 :lex[pr][!] {expr} Same as |:cexpr|, except the location list for the |
644 | 241 current window is used instead of the quickfix list. |
242 | |
800 | 243 *:cgete* *:cgetexpr* |
1624 | 244 :cgete[xpr] {expr} Create a quickfix list using the result of {expr}. |
2833 | 245 Just like |:cexpr|, but don't jump to the first error. |
800 | 246 |
247 *:lgete* *:lgetexpr* | |
2833 | 248 :lgete[xpr] {expr} Same as |:cgetexpr|, except the location list for the |
800 | 249 current window is used instead of the quickfix list. |
250 | |
5734 | 251 *:cadde* *:caddexpr* |
5763 | 252 :cadde[xpr] {expr} Evaluate {expr} and add the resulting lines to the |
625 | 253 current quickfix list. If a quickfix list is not |
254 present, then a new list is created. The current | |
255 cursor position will not be changed. See |:cexpr| for | |
256 more information. | |
257 Example: > | |
258 :g/mypattern/caddexpr expand("%") . ":" . line(".") . ":" . getline(".") | |
259 < | |
644 | 260 *:lad* *:laddexpr* |
1624 | 261 :lad[dexpr] {expr} Same as ":caddexpr", except the location list for the |
644 | 262 current window is used instead of the quickfix list. |
263 | |
7 | 264 *:cl* *:clist* |
265 :cl[ist] [from] [, [to]] | |
266 List all errors that are valid |quickfix-valid|. | |
267 If numbers [from] and/or [to] are given, the respective | |
237 | 268 range of errors is listed. A negative number counts |
7 | 269 from the last error backwards, -1 being the last error. |
270 The 'switchbuf' settings are respected when jumping | |
271 to a buffer. | |
272 | |
273 :cl[ist]! [from] [, [to]] | |
274 List all errors. | |
275 | |
644 | 276 *:lli* *:llist* |
277 :lli[st] [from] [, [to]] | |
278 Same as ":clist", except the location list for the | |
279 current window is used instead of the quickfix list. | |
280 | |
281 :lli[st]! [from] [, [to]] | |
282 List all the entries in the location list for the | |
283 current window. | |
284 | |
7 | 285 If you insert or delete lines, mostly the correct error location is still |
286 found because hidden marks are used. Sometimes, when the mark has been | |
287 deleted for some reason, the message "line changed" is shown to warn you that | |
288 the error location may not be correct. If you quit Vim and start again the | |
289 marks are lost and the error locations may not be correct anymore. | |
290 | |
163 | 291 If vim is built with |+autocmd| support, two autocommands are available for |
292 running commands before and after a quickfix command (':make', ':grep' and so | |
293 on) is executed. See |QuickFixCmdPre| and |QuickFixCmdPost| for details. | |
294 | |
1624 | 295 *QuickFixCmdPost-example* |
296 When 'encoding' differs from the locale, the error messages may have a | |
297 different encoding from what Vim is using. To convert the messages you can | |
298 use this code: > | |
299 function QfMakeConv() | |
300 let qflist = getqflist() | |
301 for i in qflist | |
302 let i.text = iconv(i.text, "cp936", "utf-8") | |
303 endfor | |
304 call setqflist(qflist) | |
305 endfunction | |
306 | |
307 au QuickfixCmdPost make call QfMakeConv() | |
308 | |
309 | |
7100
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
310 EXECUTE A COMMAND IN ALL THE BUFFERS IN QUICKFIX OR LOCATION LIST: |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
311 *:cdo* |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
312 :cdo[!] {cmd} Execute {cmd} in each valid entry in the quickfix list. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
313 It works like doing this: > |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
314 :cfirst |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
315 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
316 :cnext |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
317 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
318 etc. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
319 < When the current file can't be |abandon|ed and the [!] |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
320 is not present, the command fails. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
321 When an error is detected excecution stops. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
322 The last buffer (or where an error occurred) becomes |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
323 the current buffer. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
324 {cmd} can contain '|' to concatenate several commands. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
325 |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
326 Only valid entries in the quickfix list are used. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
327 A range can be used to select entries, e.g.: > |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
328 :10,$cdo cmd |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
329 < To skip entries 1 to 9. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
330 |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
331 Note: While this command is executing, the Syntax |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
332 autocommand event is disabled by adding it to |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
333 'eventignore'. This considerably speeds up editing |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
334 each buffer. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
335 {not in Vi} {not available when compiled without the |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
336 |+listcmds| feature} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
337 Also see |:bufdo|, |:tabdo|, |:argdo|, |:windo|, |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
338 |:ldo|, |:cfdo| and |:lfdo|. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
339 |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
340 *:cfdo* |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
341 :cfdo[!] {cmd} Execute {cmd} in each file in the quickfix list. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
342 It works like doing this: > |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
343 :cfirst |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
344 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
345 :cnfile |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
346 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
347 etc. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
348 < Otherwise it works the same as `:cdo`. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
349 {not in Vi} {not available when compiled without the |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
350 |+listcmds| feature} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
351 |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
352 *:ldo* |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
353 :ld[o][!] {cmd} Execute {cmd} in each valid entry in the location list |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
354 for the current window. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
355 It works like doing this: > |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
356 :lfirst |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
357 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
358 :lnext |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
359 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
360 etc. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
361 < Only valid entries in the location list are used. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
362 Otherwise it works the same as `:cdo`. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
363 {not in Vi} {not available when compiled without the |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
364 |+listcmds| feature} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
365 |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
366 *:lfdo* |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
367 :lfdo[!] {cmd} Execute {cmd} in each file in the location list for |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
368 the current window. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
369 It works like doing this: > |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
370 :lfirst |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
371 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
372 :lnfile |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
373 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
374 etc. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
375 < Otherwise it works the same as `:ldo`. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
376 {not in Vi} {not available when compiled without the |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
377 |+listcmds| feature} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
378 |
7 | 379 ============================================================================= |
380 2. The error window *quickfix-window* | |
381 | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2365
diff
changeset
|
382 *:cope* *:copen* *w:quickfix_title* |
7 | 383 :cope[n] [height] Open a window to show the current list of errors. |
5763 | 384 |
7 | 385 When [height] is given, the window becomes that high |
5763 | 386 (if there is room). When [height] is omitted the |
387 window is made ten lines high. | |
388 | |
389 If there already is a quickfix window, it will be made | |
390 the current window. It is not possible to open a | |
391 second quickfix window. If [height] is given the | |
392 existing window will be resized to it. | |
393 | |
7 | 394 The window will contain a special buffer, with |
395 'buftype' equal to "quickfix". Don't change this! | |
5763 | 396 The window will have the w:quickfix_title variable set |
397 which will indicate the command that produced the | |
398 quickfix list. This can be used to compose a custom | |
399 status line if the value of 'statusline' is adjusted | |
400 properly. | |
7 | 401 |
647 | 402 *:lop* *:lopen* |
403 :lop[en] [height] Open a window to show the location list for the | |
644 | 404 current window. Works only when the location list for |
647 | 405 the current window is present. You can have more than |
406 one location window opened at a time. Otherwise, it | |
648 | 407 acts the same as ":copen". |
644 | 408 |
7 | 409 *:ccl* *:cclose* |
410 :ccl[ose] Close the quickfix window. | |
411 | |
644 | 412 *:lcl* *:lclose* |
413 :lcl[ose] Close the window showing the location list for the | |
414 current window. | |
415 | |
7 | 416 *:cw* *:cwindow* |
417 :cw[indow] [height] Open the quickfix window when there are recognized | |
418 errors. If the window is already open and there are | |
419 no recognized errors, close the window. | |
420 | |
644 | 421 *:lw* *:lwindow* |
422 :lw[indow] [height] Same as ":cwindow", except use the window showing the | |
423 location list for the current window. | |
7 | 424 |
425 Normally the quickfix window is at the bottom of the screen. If there are | |
426 vertical splits, it's at the bottom of the rightmost column of windows. To | |
427 make it always occupy the full width: > | |
428 :botright cwindow | |
429 You can move the window around with |window-moving| commands. | |
430 For example, to move it to the top: CTRL-W K | |
431 The 'winfixheight' option will be set, which means that the window will mostly | |
432 keep its height, ignoring 'winheight' and 'equalalways'. You can change the | |
433 height manually (e.g., by dragging the status line above it with the mouse). | |
434 | |
435 In the quickfix window, each line is one error. The line number is equal to | |
436 the error number. You can use ":.cc" to jump to the error under the cursor. | |
170 | 437 Hitting the <Enter> key or double-clicking the mouse on a line has the same |
7 | 438 effect. The file containing the error is opened in the window above the |
439 quickfix window. If there already is a window for that file, it is used | |
440 instead. If the buffer in the used window has changed, and the error is in | |
441 another file, jumping to the error will fail. You will first have to make | |
442 sure the window contains a buffer which can be abandoned. | |
170 | 443 *CTRL-W_<Enter>* *CTRL-W_<CR>* |
444 You can use CTRL-W <Enter> to open a new window and jump to the error there. | |
7 | 445 |
446 When the quickfix window has been filled, two autocommand events are | |
447 triggered. First the 'filetype' option is set to "qf", which triggers the | |
651 | 448 FileType event. Then the BufReadPost event is triggered, using "quickfix" for |
449 the buffer name. This can be used to perform some action on the listed | |
450 errors. Example: > | |
648 | 451 au BufReadPost quickfix setlocal modifiable |
452 \ | silent exe 'g/^/s//\=line(".")." "/' | |
453 \ | setlocal nomodifiable | |
7 | 454 This prepends the line number to each line. Note the use of "\=" in the |
455 substitute string of the ":s" command, which is used to evaluate an | |
456 expression. | |
651 | 457 The BufWinEnter event is also triggered, again using "quickfix" for the buffer |
458 name. | |
7 | 459 |
9227
ecb621205ed1
commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
460 Note: When adding to an existing quickfix list the autocommand are not |
ecb621205ed1
commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
461 triggered. |
ecb621205ed1
commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
462 |
7 | 463 Note: Making changes in the quickfix window has no effect on the list of |
464 errors. 'modifiable' is off to avoid making changes. If you delete or insert | |
465 lines anyway, the relation between the text and the error number is messed up. | |
466 If you really want to do this, you could write the contents of the quickfix | |
467 window to a file and use ":cfile" to have it parsed and used as the new error | |
468 list. | |
469 | |
644 | 470 *location-list-window* |
648 | 471 The location list window displays the entries in a location list. When you |
472 open a location list window, it is created below the current window and | |
473 displays the location list for the current window. The location list window | |
474 is similar to the quickfix window, except that you can have more than one | |
651 | 475 location list window open at a time. When you use a location list command in |
476 this window, the displayed location list is used. | |
648 | 477 |
478 When you select a file from the location list window, the following steps are | |
479 used to find a window to edit the file: | |
644 | 480 |
648 | 481 1. If a window with the location list displayed in the location list window is |
482 present, then the file is opened in that window. | |
483 2. If the above step fails and if the file is already opened in another | |
484 window, then that window is used. | |
485 3. If the above step fails then an existing window showing a buffer with | |
486 'buftype' not set is used. | |
487 4. If the above step fails, then the file is edited in a new window. | |
488 | |
489 In all of the above cases, if the location list for the selected window is not | |
490 yet set, then it is set to the location list displayed in the location list | |
491 window. | |
644 | 492 |
7 | 493 ============================================================================= |
494 3. Using more than one list of errors *quickfix-error-lists* | |
495 | |
496 So far has been assumed that there is only one list of errors. Actually the | |
497 ten last used lists are remembered. When starting a new list, the previous | |
498 ones are automatically kept. Two commands can be used to access older error | |
499 lists. They set one of the existing error lists as the current one. | |
500 | |
501 *:colder* *:col* *E380* | |
502 :col[der] [count] Go to older error list. When [count] is given, do | |
503 this [count] times. When already at the oldest error | |
504 list, an error message is given. | |
505 | |
644 | 506 *:lolder* *:lol* |
507 :lol[der] [count] Same as ":colder", except use the location list for | |
508 the current window instead of the quickfix list. | |
509 | |
7 | 510 *:cnewer* *:cnew* *E381* |
511 :cnew[er] [count] Go to newer error list. When [count] is given, do | |
512 this [count] times. When already at the newest error | |
513 list, an error message is given. | |
514 | |
644 | 515 *:lnewer* *:lnew* |
516 :lnew[er] [count] Same as ":cnewer", except use the location list for | |
517 the current window instead of the quickfix list. | |
518 | |
7 | 519 When adding a new error list, it becomes the current list. |
520 | |
521 When ":colder" has been used and ":make" or ":grep" is used to add a new error | |
522 list, one newer list is overwritten. This is especially useful if you are | |
523 browsing with ":grep" |grep|. If you want to keep the more recent error | |
524 lists, use ":cnewer 99" first. | |
525 | |
526 ============================================================================= | |
527 4. Using :make *:make_makeprg* | |
528 | |
529 *:mak* *:make* | |
163 | 530 :mak[e][!] [arguments] 1. If vim was built with |+autocmd|, all relevant |
531 |QuickFixCmdPre| autocommands are executed. | |
532 2. If the 'autowrite' option is on, write any changed | |
7 | 533 buffers |
163 | 534 3. An errorfile name is made from 'makeef'. If |
7 | 535 'makeef' doesn't contain "##", and a file with this |
536 name already exists, it is deleted. | |
163 | 537 4. The program given with the 'makeprg' option is |
7 | 538 started (default "make") with the optional |
539 [arguments] and the output is saved in the | |
540 errorfile (for Unix it is also echoed on the | |
541 screen). | |
163 | 542 5. The errorfile is read using 'errorformat'. |
1167 | 543 6. If vim was built with |+autocmd|, all relevant |
163 | 544 |QuickFixCmdPost| autocommands are executed. |
1624 | 545 See example below. |
1167 | 546 7. If [!] is not given the first error is jumped to. |
547 8. The errorfile is deleted. | |
163 | 548 9. You can now move through the errors with commands |
7 | 549 like |:cnext| and |:cprevious|, see above. |
550 This command does not accept a comment, any " | |
551 characters are considered part of the arguments. | |
552 | |
658 | 553 *:lmak* *:lmake* |
554 :lmak[e][!] [arguments] | |
555 Same as ":make", except the location list for the | |
556 current window is used instead of the quickfix list. | |
557 | |
7 | 558 The ":make" command executes the command given with the 'makeprg' option. |
559 This is done by passing the command to the shell given with the 'shell' | |
560 option. This works almost like typing | |
561 | |
562 ":!{makeprg} [arguments] {shellpipe} {errorfile}". | |
563 | |
564 {makeprg} is the string given with the 'makeprg' option. Any command can be | |
565 used, not just "make". Characters '%' and '#' are expanded as usual on a | |
566 command-line. You can use "%<" to insert the current file name without | |
567 extension, or "#<" to insert the alternate file name without extension, for | |
568 example: > | |
569 :set makeprg=make\ #<.o | |
570 | |
571 [arguments] is anything that is typed after ":make". | |
572 {shellpipe} is the 'shellpipe' option. | |
573 {errorfile} is the 'makeef' option, with ## replaced to make it unique. | |
574 | |
2072 | 575 The placeholder "$*" can be used for the argument list in {makeprg} if the |
7 | 576 command needs some additional characters after its arguments. The $* is |
577 replaced then by all arguments. Example: > | |
578 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*} | |
579 or simpler > | |
580 :let &mp = 'latex \\nonstopmode \\input\{$*}' | |
581 "$*" can be given multiple times, for example: > | |
582 :set makeprg=gcc\ -o\ $*\ $* | |
583 | |
584 The 'shellpipe' option defaults to ">" for the Amiga, MS-DOS and Win32. This | |
585 means that the output of the compiler is saved in a file and not shown on the | |
586 screen directly. For Unix "| tee" is used. The compiler output is shown on | |
587 the screen and saved in a file the same time. Depending on the shell used | |
588 "|& tee" or "2>&1| tee" is the default, so stderr output will be included. | |
589 | |
590 If 'shellpipe' is empty, the {errorfile} part will be omitted. This is useful | |
591 for compilers that write to an errorfile themselves (e.g., Manx's Amiga C). | |
592 | |
1624 | 593 |
594 Using QuickFixCmdPost to fix the encoding ~ | |
595 | |
596 It may be that 'encoding' is set to an encoding that differs from the messages | |
597 your build program produces. This example shows how to fix this after Vim has | |
598 read the error messages: > | |
599 | |
600 function QfMakeConv() | |
601 let qflist = getqflist() | |
602 for i in qflist | |
603 let i.text = iconv(i.text, "cp936", "utf-8") | |
604 endfor | |
605 call setqflist(qflist) | |
606 endfunction | |
607 | |
608 au QuickfixCmdPost make call QfMakeConv() | |
609 | |
610 (Example by Faque Cheng) | |
611 | |
7 | 612 ============================================================================== |
41 | 613 5. Using :vimgrep and :grep *grep* *lid* |
614 | |
615 Vim has two ways to find matches for a pattern: Internal and external. The | |
616 advantage of the internal grep is that it works on all systems and uses the | |
617 powerful Vim search patterns. An external grep program can be used when the | |
618 Vim grep does not do what you want. | |
619 | |
43 | 620 The internal method will be slower, because files are read into memory. The |
621 advantages are: | |
622 - Line separators and encoding are automatically recognized, as if a file is | |
623 being edited. | |
624 - Uses Vim search patterns. Multi-line patterns can be used. | |
625 - When plugins are enabled: compressed and remote files can be searched. | |
626 |gzip| |netrw| | |
717 | 627 |
628 To be able to do this Vim loads each file as if it is being edited. When | |
720 | 629 there is no match in the file the associated buffer is wiped out again. The |
717 | 630 'hidden' option is ignored here to avoid running out of memory or file |
631 descriptors when searching many files. However, when the |:hide| command | |
632 modifier is used the buffers are kept loaded. This makes following searches | |
633 in the same files a lot faster. | |
41 | 634 |
2608
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
635 Note that |:copen| (or |:lopen| for |:lgrep|) may be used to open a buffer |
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
636 containing the search results in linked form. The |:silent| command may be |
2698
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2608
diff
changeset
|
637 used to suppress the default full screen grep output. The ":grep!" form of |
2608
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
638 the |:grep| command doesn't jump to the first match automatically. These |
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
639 commands can be combined to create a NewGrep command: > |
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
640 |
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
641 command! -nargs=+ NewGrep execute 'silent grep! <args>' | copen 42 |
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
642 |
41 | 643 |
644 5.1 using Vim's internal grep | |
645 | |
86 | 646 *:vim* *:vimgrep* *E682* *E683* |
170 | 647 :vim[grep][!] /{pattern}/[g][j] {file} ... |
41 | 648 Search for {pattern} in the files {file} ... and set |
3682 | 649 the error list to the matches. Files matching |
650 'wildignore' are ignored; files in 'suffixes' are | |
651 searched last. | |
170 | 652 Without the 'g' flag each line is added only once. |
653 With 'g' every match is added. | |
654 | |
655 {pattern} is a Vim search pattern. Instead of | |
656 enclosing it in / any non-ID character (see | |
657 |'isident'|) can be used, so long as it does not | |
658 appear in {pattern}. | |
659 'ignorecase' applies. To overrule it put |/\c| in the | |
660 pattern to ignore case or |/\C| to match case. | |
661 'smartcase' is not used. | |
4197 | 662 If {pattern} is empty (e.g. // is specified), the last |
663 used search pattern is used. |last-pattern| | |
170 | 664 |
716 | 665 When a number is put before the command this is used |
666 as the maximum number of matches to find. Use | |
667 ":1vimgrep pattern file" to find only the first. | |
668 Useful if you only want to check if there is a match | |
669 and quit quickly when it's found. | |
670 | |
170 | 671 Without the 'j' flag Vim jumps to the first match. |
672 With 'j' only the quickfix list is updated. | |
673 With the [!] any changes in the current buffer are | |
674 abandoned. | |
675 | |
123 | 676 Every second or so the searched file name is displayed |
677 to give you an idea of the progress made. | |
43 | 678 Examples: > |
679 :vimgrep /an error/ *.c | |
680 :vimgrep /\<FileName\>/ *.h include/* | |
445 | 681 :vimgrep /myfunc/ **/*.c |
682 < For the use of "**" see |starstar-wildcard|. | |
41 | 683 |
43 | 684 :vim[grep][!] {pattern} {file} ... |
685 Like above, but instead of enclosing the pattern in a | |
686 non-ID character use a white-separated pattern. The | |
687 pattern must start with an ID character. | |
688 Example: > | |
689 :vimgrep Error *.c | |
690 < | |
658 | 691 *:lv* *:lvimgrep* |
692 :lv[imgrep][!] /{pattern}/[g][j] {file} ... | |
693 :lv[imgrep][!] {pattern} {file} ... | |
694 Same as ":vimgrep", except the location list for the | |
695 current window is used instead of the quickfix list. | |
696 | |
41 | 697 *:vimgrepa* *:vimgrepadd* |
170 | 698 :vimgrepa[dd][!] /{pattern}/[g][j] {file} ... |
699 :vimgrepa[dd][!] {pattern} {file} ... | |
41 | 700 Just like ":vimgrep", but instead of making a new list |
701 of errors the matches are appended to the current | |
702 list. | |
703 | |
658 | 704 *:lvimgrepa* *:lvimgrepadd* |
705 :lvimgrepa[dd][!] /{pattern}/[g][j] {file} ... | |
706 :lvimgrepa[dd][!] {pattern} {file} ... | |
707 Same as ":vimgrepadd", except the location list for | |
708 the current window is used instead of the quickfix | |
709 list. | |
41 | 710 |
711 5.2 External grep | |
7 | 712 |
713 Vim can interface with "grep" and grep-like programs (such as the GNU | |
714 id-utils) in a similar way to its compiler integration (see |:make| above). | |
715 | |
716 [Unix trivia: The name for the Unix "grep" command comes from ":g/re/p", where | |
717 "re" stands for Regular Expression.] | |
718 | |
719 *:gr* *:grep* | |
720 :gr[ep][!] [arguments] Just like ":make", but use 'grepprg' instead of | |
721 'makeprg' and 'grepformat' instead of 'errorformat'. | |
41 | 722 When 'grepprg' is "internal" this works like |
723 |:vimgrep|. Note that the pattern needs to be | |
724 enclosed in separator characters then. | |
658 | 725 |
726 *:lgr* *:lgrep* | |
727 :lgr[ep][!] [arguments] Same as ":grep", except the location list for the | |
728 current window is used instead of the quickfix list. | |
729 | |
7 | 730 *:grepa* *:grepadd* |
731 :grepa[dd][!] [arguments] | |
732 Just like ":grep", but instead of making a new list of | |
733 errors the matches are appended to the current list. | |
734 Example: > | |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
735 :call setqflist([]) |
7 | 736 :bufdo grepadd! something % |
737 < The first command makes a new error list which is | |
738 empty. The second command executes "grepadd" for each | |
739 listed buffer. Note the use of ! to avoid that | |
740 ":grepadd" jumps to the first error, which is not | |
741 allowed with |:bufdo|. | |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
742 An example that uses the argument list and avoids |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
743 errors for files without matches: > |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
744 :silent argdo try |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
745 \ | grepadd! something % |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
746 \ | catch /E480:/ |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
747 \ | endtry" |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
748 < |
658 | 749 *:lgrepa* *:lgrepadd* |
750 :lgrepa[dd][!] [arguments] | |
751 Same as ":grepadd", except the location list for the | |
752 current window is used instead of the quickfix list. | |
753 | |
41 | 754 5.3 Setting up external grep |
7 | 755 |
756 If you have a standard "grep" program installed, the :grep command may work | |
237 | 757 well with the defaults. The syntax is very similar to the standard command: > |
7 | 758 |
759 :grep foo *.c | |
760 | |
237 | 761 Will search all files with the .c extension for the substring "foo". The |
7 | 762 arguments to :grep are passed straight to the "grep" program, so you can use |
763 whatever options your "grep" supports. | |
764 | |
765 By default, :grep invokes grep with the -n option (show file and line | |
237 | 766 numbers). You can change this with the 'grepprg' option. You will need to set |
7 | 767 'grepprg' if: |
768 | |
769 a) You are using a program that isn't called "grep" | |
770 b) You have to call grep with a full path | |
771 c) You want to pass other options automatically (e.g. case insensitive | |
772 search.) | |
773 | |
774 Once "grep" has executed, Vim parses the results using the 'grepformat' | |
775 option. This option works in the same way as the 'errorformat' option - see | |
776 that for details. You may need to change 'grepformat' from the default if | |
777 your grep outputs in a non-standard format, or you are using some other | |
778 program with a special format. | |
779 | |
780 Once the results are parsed, Vim loads the first file containing a match and | |
781 jumps to the appropriate line, in the same way that it jumps to a compiler | |
782 error in |quickfix| mode. You can then use the |:cnext|, |:clist|, etc. | |
783 commands to see the other matches. | |
784 | |
785 | |
41 | 786 5.4 Using :grep with id-utils |
7 | 787 |
788 You can set up :grep to work with the GNU id-utils like this: > | |
789 | |
790 :set grepprg=lid\ -Rgrep\ -s | |
791 :set grepformat=%f:%l:%m | |
792 | |
793 then > | |
794 :grep (regexp) | |
795 | |
796 works just as you'd expect. | |
797 (provided you remembered to mkid first :) | |
798 | |
799 | |
41 | 800 5.5 Browsing source code with :vimgrep or :grep |
7 | 801 |
802 Using the stack of error lists that Vim keeps, you can browse your files to | |
803 look for functions and the functions they call. For example, suppose that you | |
804 have to add an argument to the read_file() function. You enter this command: > | |
805 | |
41 | 806 :vimgrep /\<read_file\>/ *.c |
7 | 807 |
808 You use ":cn" to go along the list of matches and add the argument. At one | |
809 place you have to get the new argument from a higher level function msg(), and | |
810 need to change that one too. Thus you use: > | |
811 | |
41 | 812 :vimgrep /\<msg\>/ *.c |
7 | 813 |
814 While changing the msg() functions, you find another function that needs to | |
41 | 815 get the argument from a higher level. You can again use ":vimgrep" to find |
816 these functions. Once you are finished with one function, you can use > | |
7 | 817 |
818 :colder | |
819 | |
820 to go back to the previous one. | |
821 | |
41 | 822 This works like browsing a tree: ":vimgrep" goes one level deeper, creating a |
7 | 823 list of branches. ":colder" goes back to the previous level. You can mix |
41 | 824 this use of ":vimgrep" and "colder" to browse all the locations in a tree-like |
7 | 825 way. If you do this consistently, you will find all locations without the |
826 need to write down a "todo" list. | |
827 | |
828 ============================================================================= | |
829 6. Selecting a compiler *compiler-select* | |
830 | |
831 *:comp* *:compiler* *E666* | |
832 :comp[iler][!] {name} Set options to work with compiler {name}. | |
833 Without the "!" options are set for the | |
834 current buffer. With "!" global options are | |
835 set. | |
836 If you use ":compiler foo" in "file.foo" and | |
837 then ":compiler! bar" in another buffer, Vim | |
838 will keep on using "foo" in "file.foo". | |
839 {not available when compiled without the | |
840 |+eval| feature} | |
841 | |
842 | |
843 The Vim plugins in the "compiler" directory will set options to use the | |
844 selected compiler. For ":compiler" local options are set, for ":compiler!" | |
845 global options. | |
846 *current_compiler* | |
847 To support older Vim versions, the plugins always use "current_compiler" and | |
848 not "b:current_compiler". What the command actually does is the following: | |
849 | |
850 - Delete the "current_compiler" and "b:current_compiler" variables. | |
851 - Define the "CompilerSet" user command. With "!" it does ":set", without "!" | |
852 it does ":setlocal". | |
853 - Execute ":runtime! compiler/{name}.vim". The plugins are expected to set | |
854 options with "CompilerSet" and set the "current_compiler" variable to the | |
855 name of the compiler. | |
170 | 856 - Delete the "CompilerSet" user command. |
7 | 857 - Set "b:current_compiler" to the value of "current_compiler". |
858 - Without "!" the old value of "current_compiler" is restored. | |
859 | |
860 | |
861 For writing a compiler plugin, see |write-compiler-plugin|. | |
862 | |
863 | |
1228 | 864 GCC *quickfix-gcc* *compiler-gcc* |
865 | |
866 There's one variable you can set for the GCC compiler: | |
867 | |
868 g:compiler_gcc_ignore_unmatched_lines | |
869 Ignore lines that don't match any patterns | |
870 defined for GCC. Useful if output from | |
871 commands run from make are generating false | |
872 positives. | |
873 | |
874 | |
7 | 875 MANX AZTEC C *quickfix-manx* *compiler-manx* |
876 | |
877 To use Vim with Manx's Aztec C compiler on the Amiga you should do the | |
878 following: | |
879 - Set the CCEDIT environment variable with the command: > | |
880 mset "CCEDIT=vim -q" | |
881 - Compile with the -qf option. If the compiler finds any errors, Vim is | |
882 started and the cursor is positioned on the first error. The error message | |
883 will be displayed on the last line. You can go to other errors with the | |
884 commands mentioned above. You can fix the errors and write the file(s). | |
885 - If you exit Vim normally the compiler will re-compile the same file. If you | |
886 exit with the :cq command, the compiler will terminate. Do this if you | |
887 cannot fix the error, or if another file needs to be compiled first. | |
888 | |
889 There are some restrictions to the Quickfix mode on the Amiga. The | |
890 compiler only writes the first 25 errors to the errorfile (Manx's | |
891 documentation does not say how to get more). If you want to find the others, | |
892 you will have to fix a few errors and exit the editor. After recompiling, | |
893 up to 25 remaining errors will be found. | |
894 | |
895 If Vim was started from the compiler, the :sh and some :! commands will not | |
896 work, because Vim is then running in the same process as the compiler and | |
897 stdin (standard input) will not be interactive. | |
898 | |
899 | |
1624 | 900 PERL *quickfix-perl* *compiler-perl* |
901 | |
902 The Perl compiler plugin doesn't actually compile, but invokes Perl's internal | |
903 syntax checking feature and parses the output for possible errors so you can | |
904 correct them in quick-fix mode. | |
905 | |
906 Warnings are forced regardless of "no warnings" or "$^W = 0" within the file | |
907 being checked. To disable this set g:perl_compiler_force_warnings to a zero | |
908 value. For example: > | |
909 let g:perl_compiler_force_warnings = 0 | |
910 | |
911 | |
7 | 912 PYUNIT COMPILER *compiler-pyunit* |
913 | |
914 This is not actually a compiler, but a unit testing framework for the | |
237 | 915 Python language. It is included into standard Python distribution |
916 starting from version 2.0. For older versions, you can get it from | |
7 | 917 http://pyunit.sourceforge.net. |
918 | |
919 When you run your tests with the help of the framework, possible errors | |
920 are parsed by Vim and presented for you in quick-fix mode. | |
921 | |
922 Unfortunately, there is no standard way to run the tests. | |
923 The alltests.py script seems to be used quite often, that's all. | |
924 Useful values for the 'makeprg' options therefore are: | |
925 setlocal makeprg=./alltests.py " Run a testsuite | |
5690 | 926 setlocal makeprg=python\ %:S " Run a single testcase |
7 | 927 |
928 Also see http://vim.sourceforge.net/tip_view.php?tip_id=280. | |
929 | |
930 | |
931 TEX COMPILER *compiler-tex* | |
932 | |
933 Included in the distribution compiler for TeX ($VIMRUNTIME/compiler/tex.vim) | |
237 | 934 uses make command if possible. If the compiler finds a file named "Makefile" |
7 | 935 or "makefile" in the current directory, it supposes that you want to process |
237 | 936 your *TeX files with make, and the makefile does the right work. In this case |
937 compiler sets 'errorformat' for *TeX output and leaves 'makeprg' untouched. If | |
7 | 938 neither "Makefile" nor "makefile" is found, the compiler will not use make. |
939 You can force the compiler to ignore makefiles by defining | |
940 b:tex_ignore_makefile or g:tex_ignore_makefile variable (they are checked for | |
941 existence only). | |
942 | |
943 If the compiler chose not to use make, it need to choose a right program for | |
237 | 944 processing your input. If b:tex_flavor or g:tex_flavor (in this precedence) |
7 | 945 variable exists, it defines TeX flavor for :make (actually, this is the name |
946 of executed command), and if both variables do not exist, it defaults to | |
237 | 947 "latex". For example, while editing chapter2.tex \input-ed from mypaper.tex |
7 | 948 written in AMS-TeX: > |
949 | |
950 :let b:tex_flavor = 'amstex' | |
951 :compiler tex | |
952 < [editing...] > | |
953 :make mypaper | |
954 | |
955 Note that you must specify a name of the file to process as an argument (to | |
956 process the right file when editing \input-ed or \include-ed file; portable | |
237 | 957 solution for substituting % for no arguments is welcome). This is not in the |
7 | 958 semantics of make, where you specify a target, not source, but you may specify |
959 filename without extension ".tex" and mean this as "make filename.dvi or | |
960 filename.pdf or filename.some_result_extension according to compiler". | |
961 | |
962 Note: tex command line syntax is set to usable both for MikTeX (suggestion | |
237 | 963 by Srinath Avadhanula) and teTeX (checked by Artem Chuprina). Suggestion |
7 | 964 from |errorformat-LaTeX| is too complex to keep it working for different |
965 shells and OSes and also does not allow to use other available TeX options, | |
237 | 966 if any. If your TeX doesn't support "-interaction=nonstopmode", please |
7 | 967 report it with different means to express \nonstopmode from the command line. |
968 | |
969 ============================================================================= | |
970 7. The error format *error-file-format* | |
971 | |
972 *errorformat* *E372* *E373* *E374* | |
973 *E375* *E376* *E377* *E378* | |
974 The 'errorformat' option specifies a list of formats that are recognized. The | |
975 first format that matches with an error message is used. You can add several | |
976 formats for different messages your compiler produces, or even entries for | |
977 multiple compilers. See |efm-entries|. | |
978 | |
979 Each entry in 'errorformat' is a scanf-like string that describes the format. | |
980 First, you need to know how scanf works. Look in the documentation of your | |
981 C compiler. Below you find the % items that Vim understands. Others are | |
982 invalid. | |
983 | |
984 Special characters in 'errorformat' are comma and backslash. See | |
985 |efm-entries| for how to deal with them. Note that a literal "%" is matched | |
986 by "%%", thus it is not escaped with a backslash. | |
5277 | 987 Keep in mind that in the `:make` and `:grep` output all NUL characters are |
988 replaced with SOH (0x01). | |
7 | 989 |
990 Note: By default the difference between upper and lowercase is ignored. If | |
991 you want to match case, add "\C" to the pattern |/\C|. | |
992 | |
993 | |
994 Basic items | |
995 | |
996 %f file name (finds a string) | |
997 %l line number (finds a number) | |
998 %c column number (finds a number representing character | |
999 column of the error, (1 <tab> == 1 character column)) | |
1000 %v virtual column number (finds a number representing | |
1001 screen column of the error (1 <tab> == 8 screen | |
237 | 1002 columns)) |
7 | 1003 %t error type (finds a single character) |
1004 %n error number (finds a number) | |
1005 %m error message (finds a string) | |
1006 %r matches the "rest" of a single-line file message %O/P/Q | |
3557 | 1007 %p pointer line (finds a sequence of '-', '.', ' ' or |
1008 tabs and uses the length for the column number) | |
7 | 1009 %*{conv} any scanf non-assignable conversion |
1010 %% the single '%' character | |
231 | 1011 %s search text (finds a string) |
7 | 1012 |
502 | 1013 The "%f" conversion may depend on the current 'isfname' setting. "~/" is |
279 | 1014 expanded to the home directory and environment variables are expanded. |
7 | 1015 |
502 | 1016 The "%f" and "%m" conversions have to detect the end of the string. This |
534 | 1017 normally happens by matching following characters and items. When nothing is |
502 | 1018 following the rest of the line is matched. If "%f" is followed by a '%' or a |
1019 backslash, it will look for a sequence of 'isfname' characters. | |
7 | 1020 |
1021 On MS-DOS, MS-Windows and OS/2 a leading "C:" will be included in "%f", even | |
1022 when using "%f:". This means that a file name which is a single alphabetical | |
1023 letter will not be detected. | |
1024 | |
1025 The "%p" conversion is normally followed by a "^". It's used for compilers | |
1026 that output a line like: > | |
1027 ^ | |
1028 or > | |
1029 ---------^ | |
1030 to indicate the column of the error. This is to be used in a multi-line error | |
1031 message. See |errorformat-javac| for a useful example. | |
1032 | |
231 | 1033 The "%s" conversion specifies the text to search for to locate the error line. |
1034 The text is used as a literal string. The anchors "^" and "$" are added to | |
1035 the text to locate the error line exactly matching the search text and the | |
1036 text is prefixed with the "\V" atom to make it "very nomagic". The "%s" | |
1037 conversion can be used to locate lines without a line number in the error | |
1038 output. Like the output of the "grep" shell command. | |
1039 When the pattern is present the line number will not be used. | |
7 | 1040 |
1041 Changing directory | |
1042 | |
1043 The following uppercase conversion characters specify the type of special | |
1044 format strings. At most one of them may be given as a prefix at the begin | |
1045 of a single comma-separated format pattern. | |
1046 Some compilers produce messages that consist of directory names that have to | |
237 | 1047 be prepended to each file name read by %f (example: GNU make). The following |
7 | 1048 codes can be used to scan these directory names; they will be stored in an |
1049 internal directory stack. *E379* | |
1050 %D "enter directory" format string; expects a following | |
1051 %f that finds the directory name | |
1052 %X "leave directory" format string; expects following %f | |
1053 | |
1054 When defining an "enter directory" or "leave directory" format, the "%D" or | |
237 | 1055 "%X" has to be given at the start of that substring. Vim tracks the directory |
7 | 1056 changes and prepends the current directory to each erroneous file found with a |
1057 relative path. See |quickfix-directory-stack| for details, tips and | |
1058 limitations. | |
1059 | |
1060 | |
1061 Multi-line messages *errorformat-multi-line* | |
1062 | |
1063 It is possible to read the output of programs that produce multi-line | |
237 | 1064 messages, i.e. error strings that consume more than one line. Possible |
7 | 1065 prefixes are: |
1066 %E start of a multi-line error message | |
1067 %W start of a multi-line warning message | |
1068 %I start of a multi-line informational message | |
1069 %A start of a multi-line message (unspecified type) | |
791 | 1070 %> for next line start with current pattern again |efm-%>| |
7 | 1071 %C continuation of a multi-line message |
1072 %Z end of a multi-line message | |
1073 These can be used with '+' and '-', see |efm-ignore| below. | |
1074 | |
787 | 1075 Using "\n" in the pattern won't work to match multi-line messages. |
1076 | |
7 | 1077 Example: Your compiler happens to write out errors in the following format |
1078 (leading line numbers not being part of the actual output): | |
1079 | |
787 | 1080 1 Error 275 ~ |
1081 2 line 42 ~ | |
1082 3 column 3 ~ | |
1083 4 ' ' expected after '--' ~ | |
7 | 1084 |
1085 The appropriate error format string has to look like this: > | |
1086 :set efm=%EError\ %n,%Cline\ %l,%Ccolumn\ %c,%Z%m | |
1087 | |
1088 And the |:clist| error message generated for this error is: | |
1089 | |
1090 1:42 col 3 error 275: ' ' expected after '--' | |
1091 | |
1092 Another example: Think of a Python interpreter that produces the following | |
1093 error message (line numbers are not part of the actual output): | |
1094 | |
1095 1 ============================================================== | |
1096 2 FAIL: testGetTypeIdCachesResult (dbfacadeTest.DjsDBFacadeTest) | |
1097 3 -------------------------------------------------------------- | |
1098 4 Traceback (most recent call last): | |
1099 5 File "unittests/dbfacadeTest.py", line 89, in testFoo | |
1100 6 self.assertEquals(34, dtid) | |
1101 7 File "/usr/lib/python2.2/unittest.py", line 286, in | |
1102 8 failUnlessEqual | |
1103 9 raise self.failureException, \ | |
1104 10 AssertionError: 34 != 33 | |
1105 11 | |
1106 12 -------------------------------------------------------------- | |
1107 13 Ran 27 tests in 0.063s | |
1108 | |
1109 Say you want |:clist| write the relevant information of this message only, | |
1110 namely: | |
1111 5 unittests/dbfacadeTest.py:89: AssertionError: 34 != 33 | |
1112 | |
1113 Then the error format string could be defined as follows: > | |
1114 :set efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%m | |
1115 | |
1116 Note that the %C string is given before the %A here: since the expression | |
1117 ' %.%#' (which stands for the regular expression ' .*') matches every line | |
1118 starting with a space, followed by any characters to the end of the line, | |
1119 it also hides line 7 which would trigger a separate error message otherwise. | |
1120 Error format strings are always parsed pattern by pattern until the first | |
1121 match occurs. | |
791 | 1122 *efm-%>* |
1123 The %> item can be used to avoid trying patterns that appear earlier in | |
1124 'errorformat'. This is useful for patterns that match just about anything. | |
1125 For example, if the error looks like this: | |
1126 | |
1127 Error in line 123 of foo.c: ~ | |
1128 unknown variable "i" ~ | |
1129 | |
1130 This can be found with: > | |
1131 :set efm=xxx,%E%>Error in line %l of %f:,%Z%m | |
1132 Where "xxx" has a pattern that would also match the second line. | |
7 | 1133 |
787 | 1134 Important: There is no memory of what part of the errorformat matched before; |
1135 every line in the error file gets a complete new run through the error format | |
1136 lines. For example, if one has: > | |
1137 setlocal efm=aa,bb,cc,dd,ee | |
1138 Where aa, bb, etc. are error format strings. Each line of the error file will | |
1139 be matched to the pattern aa, then bb, then cc, etc. Just because cc matched | |
1140 the previous error line does _not_ mean that dd will be tried first on the | |
1141 current line, even if cc and dd are multi-line errorformat strings. | |
1142 | |
1143 | |
7 | 1144 |
1145 Separate file name *errorformat-separate-filename* | |
1146 | |
1147 These prefixes are useful if the file name is given once and multiple messages | |
1148 follow that refer to this file name. | |
1149 %O single-line file message: overread the matched part | |
1150 %P single-line file message: push file %f onto the stack | |
1151 %Q single-line file message: pop the last file from stack | |
1152 | |
1153 Example: Given a compiler that produces the following error logfile (without | |
1154 leading line numbers): | |
1155 | |
1156 1 [a1.tt] | |
1157 2 (1,17) error: ';' missing | |
1158 3 (21,2) warning: variable 'z' not defined | |
1159 4 (67,3) error: end of file found before string ended | |
1160 5 | |
1161 6 [a2.tt] | |
1162 7 | |
1163 8 [a3.tt] | |
1164 9 NEW compiler v1.1 | |
1165 10 (2,2) warning: variable 'x' not defined | |
1166 11 (67,3) warning: 's' already defined | |
1167 | |
1168 This logfile lists several messages for each file enclosed in [...] which are | |
1169 properly parsed by an error format like this: > | |
1170 :set efm=%+P[%f],(%l\\,%c)%*[\ ]%t%*[^:]:\ %m,%-Q | |
1171 | |
1172 A call of |:clist| writes them accordingly with their correct filenames: | |
1173 | |
1174 2 a1.tt:1 col 17 error: ';' missing | |
1175 3 a1.tt:21 col 2 warning: variable 'z' not defined | |
1176 4 a1.tt:67 col 3 error: end of file found before string ended | |
1177 8 a3.tt:2 col 2 warning: variable 'x' not defined | |
1178 9 a3.tt:67 col 3 warning: 's' already defined | |
1179 | |
1180 Unlike the other prefixes that all match against whole lines, %P, %Q and %O | |
237 | 1181 can be used to match several patterns in the same line. Thus it is possible |
7 | 1182 to parse even nested files like in the following line: |
1183 {"file1" {"file2" error1} error2 {"file3" error3 {"file4" error4 error5}}} | |
1184 The %O then parses over strings that do not contain any push/pop file name | |
1185 information. See |errorformat-LaTeX| for an extended example. | |
1186 | |
1187 | |
1188 Ignoring and using whole messages *efm-ignore* | |
1189 | |
1190 The codes '+' or '-' can be combined with the uppercase codes above; in that | |
237 | 1191 case they have to precede the letter, e.g. '%+A' or '%-G': |
7 | 1192 %- do not include the matching multi-line in any output |
1193 %+ include the whole matching line in the %m error string | |
1194 | |
237 | 1195 One prefix is only useful in combination with '+' or '-', namely %G. It parses |
7 | 1196 over lines containing general information like compiler version strings or |
1197 other headers that can be skipped. | |
1198 %-G ignore this message | |
1199 %+G general message | |
1200 | |
1201 | |
1202 Pattern matching | |
1203 | |
1204 The scanf()-like "%*[]" notation is supported for backward-compatibility | |
1205 with previous versions of Vim. However, it is also possible to specify | |
1206 (nearly) any Vim supported regular expression in format strings. | |
1207 Since meta characters of the regular expression language can be part of | |
1208 ordinary matching strings or file names (and therefore internally have to | |
1209 be escaped), meta symbols have to be written with leading '%': | |
787 | 1210 %\ The single '\' character. Note that this has to be |
7 | 1211 escaped ("%\\") in ":set errorformat=" definitions. |
787 | 1212 %. The single '.' character. |
1213 %# The single '*'(!) character. | |
1214 %^ The single '^' character. Note that this is not | |
1215 useful, the pattern already matches start of line. | |
1216 %$ The single '$' character. Note that this is not | |
1217 useful, the pattern already matches end of line. | |
1218 %[ The single '[' character for a [] character range. | |
1219 %~ The single '~' character. | |
7 | 1220 When using character classes in expressions (see |/\i| for an overview), |
1221 terms containing the "\+" quantifier can be written in the scanf() "%*" | |
237 | 1222 notation. Example: "%\\d%\\+" ("\d\+", "any number") is equivalent to "%*\\d". |
7 | 1223 Important note: The \(...\) grouping of sub-matches can not be used in format |
1224 specifications because it is reserved for internal conversions. | |
1225 | |
1226 | |
1227 Multiple entries in 'errorformat' *efm-entries* | |
1228 | |
1229 To be able to detect output from several compilers, several format patterns | |
1230 may be put in 'errorformat', separated by commas (note: blanks after the comma | |
1231 are ignored). The first pattern that has a complete match is used. If no | |
1232 match is found, matching parts from the last one will be used, although the | |
1233 file name is removed and the error message is set to the whole message. If | |
1234 there is a pattern that may match output from several compilers (but not in a | |
1235 right way), put it after one that is more restrictive. | |
1236 | |
1237 To include a comma in a pattern precede it with a backslash (you have to type | |
1238 two in a ":set" command). To include a backslash itself give two backslashes | |
1239 (you have to type four in a ":set" command). You also need to put a backslash | |
1240 before a space for ":set". | |
1241 | |
1242 | |
1243 Valid matches *quickfix-valid* | |
1244 | |
1245 If a line does not completely match one of the entries in 'errorformat', the | |
1246 whole line is put in the error message and the entry is marked "not valid" | |
1247 These lines are skipped with the ":cn" and ":cp" commands (unless there is | |
1248 no valid line at all). You can use ":cl!" to display all the error messages. | |
1249 | |
1250 If the error format does not contain a file name Vim cannot switch to the | |
1251 correct file. You will have to do this by hand. | |
1252 | |
1253 | |
1254 Examples | |
1255 | |
1256 The format of the file from the Amiga Aztec compiler is: | |
1257 | |
1258 filename>linenumber:columnnumber:errortype:errornumber:errormessage | |
1259 | |
1260 filename name of the file in which the error was detected | |
1261 linenumber line number where the error was detected | |
1262 columnnumber column number where the error was detected | |
1263 errortype type of the error, normally a single 'E' or 'W' | |
1264 errornumber number of the error (for lookup in the manual) | |
1265 errormessage description of the error | |
1266 | |
1267 This can be matched with this 'errorformat' entry: | |
1268 %f>%l:%c:%t:%n:%m | |
1269 | |
1270 Some examples for C compilers that produce single-line error outputs: | |
1271 %f:%l:\ %t%*[^0123456789]%n:\ %m for Manx/Aztec C error messages | |
1272 (scanf() doesn't understand [0-9]) | |
1273 %f\ %l\ %t%*[^0-9]%n:\ %m for SAS C | |
1274 \"%f\"\\,%*[^0-9]%l:\ %m for generic C compilers | |
1275 %f:%l:\ %m for GCC | |
1276 %f:%l:\ %m,%Dgmake[%*\\d]:\ Entering\ directory\ `%f', | |
1277 %Dgmake[%*\\d]:\ Leaving\ directory\ `%f' | |
1278 for GCC with gmake (concat the lines!) | |
1279 %f(%l)\ :\ %*[^:]:\ %m old SCO C compiler (pre-OS5) | |
1280 %f(%l)\ :\ %t%*[^0-9]%n:\ %m idem, with error type and number | |
1281 %f:%l:\ %m,In\ file\ included\ from\ %f:%l:,\^I\^Ifrom\ %f:%l%m | |
1282 for GCC, with some extras | |
1283 | |
1284 Extended examples for the handling of multi-line messages are given below, | |
1285 see |errorformat-Jikes| and |errorformat-LaTeX|. | |
1286 | |
1287 Note the backslash in front of a space and double quote. It is required for | |
1288 the :set command. There are two backslashes in front of a comma, one for the | |
1289 :set command and one to avoid recognizing the comma as a separator of error | |
1290 formats. | |
1291 | |
1292 | |
1293 Filtering messages | |
1294 | |
1295 If you have a compiler that produces error messages that do not fit in the | |
1296 format string, you could write a program that translates the error messages | |
1297 into this format. You can use this program with the ":make" command by | |
1298 changing the 'makeprg' option. For example: > | |
1299 :set mp=make\ \\\|&\ error_filter | |
1300 The backslashes before the pipe character are required to avoid it to be | |
1301 recognized as a command separator. The backslash before each space is | |
1302 required for the set command. | |
1303 | |
1304 ============================================================================= | |
1305 8. The directory stack *quickfix-directory-stack* | |
1306 | |
1307 Quickfix maintains a stack for saving all used directories parsed from the | |
237 | 1308 make output. For GNU-make this is rather simple, as it always prints the |
1309 absolute path of all directories it enters and leaves. Regardless if this is | |
7 | 1310 done via a 'cd' command in the makefile or with the parameter "-C dir" (change |
237 | 1311 to directory before reading the makefile). It may be useful to use the switch |
7 | 1312 "-w" to force GNU-make to print out the working directory before and after |
1313 processing. | |
1314 | |
1315 Maintaining the correct directory is more complicated if you don't use | |
237 | 1316 GNU-make. AIX-make for example doesn't print any information about its |
1317 working directory. Then you need to enhance the makefile. In the makefile of | |
1318 LessTif there is a command which echoes "Making {target} in {dir}". The | |
2072 | 1319 special problem here is that it doesn't print information on leaving the |
237 | 1320 directory and that it doesn't print the absolute path. |
7 | 1321 |
1322 To solve the problem with relative paths and missing "leave directory" | |
1323 messages Vim uses following algorithm: | |
1324 | |
1325 1) Check if the given directory is a subdirectory of the current directory. | |
1326 If this is true, store it as the current directory. | |
1327 2) If it is not a subdir of the current directory, try if this is a | |
1328 subdirectory of one of the upper directories. | |
1329 3) If the directory still isn't found, it is assumed to be a subdirectory | |
1330 of Vim's current directory. | |
1331 | |
1332 Additionally it is checked for every file, if it really exists in the | |
1333 identified directory. If not, it is searched in all other directories of the | |
237 | 1334 directory stack (NOT the directory subtree!). If it is still not found, it is |
7 | 1335 assumed that it is in Vim's current directory. |
1336 | |
2285
69064995302a
Change SKIP_GTK to SKIP_GTK2 in configure.
Bram Moolenaar <bram@vim.org>
parents:
2283
diff
changeset
|
1337 There are limitations in this algorithm. These examples assume that make just |
7 | 1338 prints information about entering a directory in the form "Making all in dir". |
1339 | |
1340 1) Assume you have following directories and files: | |
1341 ./dir1 | |
1342 ./dir1/file1.c | |
1343 ./file1.c | |
1344 | |
1345 If make processes the directory "./dir1" before the current directory and | |
1346 there is an error in the file "./file1.c", you will end up with the file | |
1347 "./dir1/file.c" loaded by Vim. | |
1348 | |
1349 This can only be solved with a "leave directory" message. | |
1350 | |
1351 2) Assume you have following directories and files: | |
1352 ./dir1 | |
1353 ./dir1/dir2 | |
1354 ./dir2 | |
1355 | |
1356 You get the following: | |
1357 | |
1358 Make output Directory interpreted by Vim | |
1359 ------------------------ ---------------------------- | |
1360 Making all in dir1 ./dir1 | |
1361 Making all in dir2 ./dir1/dir2 | |
1362 Making all in dir2 ./dir1/dir2 | |
1363 | |
1364 This can be solved by printing absolute directories in the "enter directory" | |
1365 message or by printing "leave directory" messages.. | |
1366 | |
2207
b17bbfa96fa0
Add the settabvar() and gettabvar() functions.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1367 To avoid this problem, ensure to print absolute directory names and "leave |
7 | 1368 directory" messages. |
1369 | |
1370 Examples for Makefiles: | |
1371 | |
1372 Unix: | |
1373 libs: | |
1374 for dn in $(LIBDIRS); do \ | |
1375 (cd $$dn; echo "Entering dir '$$(pwd)'"; make); \ | |
1376 echo "Leaving dir"; \ | |
1377 done | |
1378 | |
1379 Add | |
1380 %DEntering\ dir\ '%f',%XLeaving\ dir | |
1381 to your 'errorformat' to handle the above output. | |
1382 | |
1383 Note that Vim doesn't check if the directory name in a "leave directory" | |
237 | 1384 messages is the current directory. This is why you could just use the message |
7 | 1385 "Leaving dir". |
1386 | |
1387 ============================================================================= | |
1388 9. Specific error file formats *errorformats* | |
1389 | |
1390 *errorformat-Jikes* | |
1391 Jikes(TM), a source-to-bytecode Java compiler published by IBM Research, | |
1392 produces simple multi-line error messages. | |
1393 | |
1394 An 'errorformat' string matching the produced messages is shown below. | |
1395 The following lines can be placed in the user's |vimrc| to overwrite Vim's | |
1396 recognized default formats, or see |:set+=| how to install this format | |
1397 additionally to the default. > | |
1398 | |
1399 :set efm=%A%f:%l:%c:%*\\d:%*\\d:, | |
1400 \%C%*\\s%trror:%m, | |
1401 \%+C%*[^:]%trror:%m, | |
1402 \%C%*\\s%tarning:%m, | |
1403 \%C%m | |
1404 < | |
1405 Jikes(TM) produces a single-line error message when invoked with the option | |
1406 "+E", and can be matched with the following: > | |
1407 | |
1167 | 1408 :setl efm=%f:%l:%v:%*\\d:%*\\d:%*\\s%m |
7 | 1409 < |
1410 *errorformat-javac* | |
1411 This 'errorformat' has been reported to work well for javac, which outputs a | |
1412 line with "^" to indicate the column of the error: > | |
1167 | 1413 :setl efm=%A%f:%l:\ %m,%-Z%p^,%-C%.%# |
7 | 1414 or: > |
1167 | 1415 :setl efm=%A%f:%l:\ %m,%+Z%p^,%+C%.%#,%-G%.%# |
7 | 1416 < |
1167 | 1417 Here is an alternative from Michael F. Lamb for Unix that filters the errors |
1418 first: > | |
1419 :setl errorformat=%Z%f:%l:\ %m,%A%p^,%-G%*[^sl]%.%# | |
5690 | 1420 :setl makeprg=javac\ %:S\ 2>&1\ \\\|\ vim-javac-filter |
1167 | 1421 |
1422 You need to put the following in "vim-javac-filter" somewhere in your path | |
1423 (e.g., in ~/bin) and make it executable: > | |
1424 #!/bin/sed -f | |
1425 /\^$/s/\t/\ /g;/:[0-9]\+:/{h;d};/^[ \t]*\^/G; | |
1426 | |
1427 In English, that sed script: | |
1428 - Changes single tabs to single spaces and | |
1429 - Moves the line with the filename, line number, error message to just after | |
1430 the pointer line. That way, the unused error text between doesn't break | |
1431 vim's notion of a "multi-line message" and also doesn't force us to include | |
1432 it as a "continuation of a multi-line message." | |
1433 | |
7 | 1434 *errorformat-ant* |
1435 For ant (http://jakarta.apache.org/) the above errorformat has to be modified | |
1436 to honour the leading [javac] in front of each javac output line: > | |
1437 :set efm=%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%# | |
1438 | |
1439 The 'errorformat' can also be configured to handle ant together with either | |
1440 javac or jikes. If you're using jikes, you should tell ant to use jikes' +E | |
1441 command line switch which forces jikes to generate one-line error messages. | |
1442 This is what the second line (of a build.xml file) below does: > | |
1443 <property name = "build.compiler" value = "jikes"/> | |
1444 <property name = "build.compiler.emacs" value = "true"/> | |
1445 | |
1446 The 'errorformat' which handles ant with both javac and jikes is: > | |
1447 :set efm=\ %#[javac]\ %#%f:%l:%c:%*\\d:%*\\d:\ %t%[%^:]%#:%m, | |
1448 \%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%# | |
1449 < | |
1450 *errorformat-jade* | |
1451 parsing jade (see http://www.jclark.com/) errors is simple: > | |
1452 :set efm=jade:%f:%l:%c:%t:%m | |
1453 < | |
1454 *errorformat-LaTeX* | |
1455 The following is an example how an 'errorformat' string can be specified | |
1456 for the (La)TeX typesetting system which displays error messages over | |
1457 multiple lines. The output of ":clist" and ":cc" etc. commands displays | |
1458 multi-lines in a single line, leading white space is removed. | |
1459 It should be easy to adopt the above LaTeX errorformat to any compiler output | |
1460 consisting of multi-line errors. | |
1461 | |
1462 The commands can be placed in a |vimrc| file or some other Vim script file, | |
237 | 1463 e.g. a script containing LaTeX related stuff which is loaded only when editing |
7 | 1464 LaTeX sources. |
1465 Make sure to copy all lines of the example (in the given order), afterwards | |
1466 remove the comment lines. For the '\' notation at the start of some lines see | |
1467 |line-continuation|. | |
1468 | |
1469 First prepare 'makeprg' such that LaTeX will report multiple | |
1470 errors; do not stop when the first error has occurred: > | |
1471 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*} | |
1472 < | |
1473 Start of multi-line error messages: > | |
1474 :set efm=%E!\ LaTeX\ %trror:\ %m, | |
1475 \%E!\ %m, | |
1476 < Start of multi-line warning messages; the first two also | |
237 | 1477 include the line number. Meaning of some regular expressions: |
7 | 1478 - "%.%#" (".*") matches a (possibly empty) string |
1479 - "%*\\d" ("\d\+") matches a number > | |
1480 \%+WLaTeX\ %.%#Warning:\ %.%#line\ %l%.%#, | |
1481 \%+W%.%#\ at\ lines\ %l--%*\\d, | |
1482 \%WLaTeX\ %.%#Warning:\ %m, | |
1483 < Possible continuations of error/warning messages; the first | |
1484 one also includes the line number: > | |
1485 \%Cl.%l\ %m, | |
1486 \%+C\ \ %m., | |
1487 \%+C%.%#-%.%#, | |
1488 \%+C%.%#[]%.%#, | |
1489 \%+C[]%.%#, | |
1490 \%+C%.%#%[{}\\]%.%#, | |
1491 \%+C<%.%#>%.%#, | |
1492 \%C\ \ %m, | |
1493 < Lines that match the following patterns do not contain any | |
1494 important information; do not include them in messages: > | |
1495 \%-GSee\ the\ LaTeX%m, | |
1496 \%-GType\ \ H\ <return>%m, | |
1497 \%-G\ ...%.%#, | |
1498 \%-G%.%#\ (C)\ %.%#, | |
1499 \%-G(see\ the\ transcript%.%#), | |
1500 < Generally exclude any empty or whitespace-only line from | |
1501 being displayed: > | |
1502 \%-G\\s%#, | |
1503 < The LaTeX output log does not specify the names of erroneous | |
1504 source files per line; rather they are given globally, | |
1505 enclosed in parentheses. | |
1506 The following patterns try to match these names and store | |
1507 them in an internal stack. The patterns possibly scan over | |
1508 the same input line (one after another), the trailing "%r" | |
1509 conversion indicates the "rest" of the line that will be | |
1510 parsed in the next go until the end of line is reached. | |
1511 | |
1512 Overread a file name enclosed in '('...')'; do not push it | |
1513 on a stack since the file apparently does not contain any | |
1514 error: > | |
1515 \%+O(%f)%r, | |
237 | 1516 < Push a file name onto the stack. The name is given after '(': > |
7 | 1517 \%+P(%f%r, |
1518 \%+P\ %\\=(%f%r, | |
1519 \%+P%*[^()](%f%r, | |
1520 \%+P[%\\d%[^()]%#(%f%r, | |
1521 < Pop the last stored file name when a ')' is scanned: > | |
1522 \%+Q)%r, | |
1523 \%+Q%*[^()])%r, | |
1524 \%+Q[%\\d%*[^()])%r | |
1525 | |
1526 Note that in some cases file names in the LaTeX output log cannot be parsed | |
1527 properly. The parser might have been messed up by unbalanced parentheses | |
1528 then. The above example tries to catch the most relevant cases only. | |
1529 You can customize the given setting to suit your own purposes, for example, | |
1530 all the annoying "Overfull ..." warnings could be excluded from being | |
1531 recognized as an error. | |
1532 Alternatively to filtering the LaTeX compiler output, it is also possible | |
1533 to directly read the *.log file that is produced by the [La]TeX compiler. | |
1534 This contains even more useful information about possible error causes. | |
1535 However, to properly parse such a complex file, an external filter should | |
1536 be used. See the description further above how to make such a filter known | |
1537 by Vim. | |
1538 | |
1539 *errorformat-Perl* | |
1540 In $VIMRUNTIME/tools you can find the efm_perl.pl script, which filters Perl | |
1541 error messages into a format that quickfix mode will understand. See the | |
1624 | 1542 start of the file about how to use it. (This script is deprecated, see |
1543 |compiler-perl|.) | |
7 | 1544 |
1545 | |
1546 | |
1547 vim:tw=78:ts=8:ft=help:norl: |