Mercurial > vim
annotate runtime/doc/quickfix.txt @ 28652:27dcbe70e1f0 v8.2.4850
patch 8.2.4850: mksession mixes up "tabpages" and "curdir" arguments
Commit: https://github.com/vim/vim/commit/d7c9564d8d24343f2e27205633032dd6ebe5232c
Author: LemonBoy <thatlemon@gmail.com>
Date: Sat Apr 30 16:10:27 2022 +0100
patch 8.2.4850: mksession mixes up "tabpages" and "curdir" arguments
Problem: Mksession mixes up "tabpages" and "curdir" arguments.
Solution: Correct logic for storing tabpage in session. (closes https://github.com/vim/vim/issues/10312)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 30 Apr 2022 17:15:02 +0200 |
parents | c968191a8557 |
children | f8116058ca76 |
rev | line source |
---|---|
27903 | 1 *quickfix.txt* For Vim version 8.2. Last change: 2022 Feb 22 |
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| | |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
18 10. Customizing the quickfix window |quickfix-window-function| |
7 | 19 |
20 The quickfix commands are not available when the |+quickfix| feature was | |
21 disabled at compile time. | |
22 | |
23 ============================================================================= | |
24 1. Using QuickFix commands *quickfix* *Quickfix* *E42* | |
25 | |
26 Vim has a special mode to speedup the edit-compile-edit cycle. This is | |
27 inspired by the quickfix option of the Manx's Aztec C compiler on the Amiga. | |
28 The idea is to save the error messages from the compiler in a file and use Vim | |
29 to jump to the errors one by one. You can examine each problem and fix it, | |
30 without having to remember all the error messages. | |
31 | |
170 | 32 In Vim the quickfix commands are used more generally to find a list of |
33 positions in files. For example, |:vimgrep| finds pattern matches. You can | |
231 | 34 use the positions in a script with the |getqflist()| function. Thus you can |
170 | 35 do a lot more than the edit/compile/fix cycle! |
36 | |
9407
619a98a67f67
commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents:
9379
diff
changeset
|
37 If you have the error messages in a file you can start Vim with: > |
619a98a67f67
commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents:
9379
diff
changeset
|
38 vim -q filename |
619a98a67f67
commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents:
9379
diff
changeset
|
39 |
619a98a67f67
commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents:
9379
diff
changeset
|
40 From inside Vim an easy way to run a command and handle the output is with the |
619a98a67f67
commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents:
9379
diff
changeset
|
41 |:make| command (see below). |
619a98a67f67
commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents:
9379
diff
changeset
|
42 |
619a98a67f67
commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents:
9379
diff
changeset
|
43 The 'errorformat' option should be set to match the error messages from your |
7 | 44 compiler (see |errorformat| below). |
45 | |
12427
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
11705
diff
changeset
|
46 *quickfix-ID* |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
11705
diff
changeset
|
47 Each quickfix list has a unique identifier called the quickfix ID and this |
14519 | 48 number will not change within a Vim session. The |getqflist()| function can be |
12427
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
11705
diff
changeset
|
49 used to get the identifier assigned to a list. There is also a quickfix list |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
11705
diff
changeset
|
50 number which may change whenever more than ten lists are added to a quickfix |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
11705
diff
changeset
|
51 stack. |
fc3e2d5614dd
patch 8.0.1093: various small quickfix issues
Christian Brabandt <cb@256bit.org>
parents:
11705
diff
changeset
|
52 |
644 | 53 *location-list* *E776* |
11160 | 54 A location list is a window-local quickfix list. You get one after commands |
55 like `:lvimgrep`, `:lgrep`, `:lhelpgrep`, `:lmake`, etc., which create a | |
56 location list instead of a quickfix list as the corresponding `:vimgrep`, | |
57 `:grep`, `:helpgrep`, `:make` do. | |
15424
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
58 *location-list-file-window* |
11160 | 59 A location list is associated with a window and each window can have a |
60 separate location list. A location list can be associated with only one | |
61 window. The location list is independent of the quickfix list. | |
644 | 62 |
648 | 63 When a window with a location list is split, the new window gets a copy of the |
9407
619a98a67f67
commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents:
9379
diff
changeset
|
64 location list. When there are no longer any references to a location list, |
619a98a67f67
commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents:
9379
diff
changeset
|
65 the location list is destroyed. |
648 | 66 |
13062
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
67 *quickfix-changedtick* |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
68 Every quickfix and location list has a read-only changedtick variable that |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
69 tracks the total number of changes made to the list. Every time the quickfix |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
70 list is modified, this count is incremented. This can be used to perform an |
14519 | 71 action only when the list has changed. The |getqflist()| and |getloclist()| |
13062
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
72 functions can be used to query the current value of changedtick. You cannot |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
73 change the changedtick variable. |
6479dadcf214
patch 8.0.1406: difficult to track changes to a quickfix list
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
74 |
648 | 75 The following quickfix commands can be used. The location list commands are |
76 similar to the quickfix commands, replacing the 'c' prefix in the quickfix | |
77 command with 'l'. | |
7 | 78 |
8673
ed7251c3e2d3
commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents:
7707
diff
changeset
|
79 *E924* |
ed7251c3e2d3
commit https://github.com/vim/vim/commit/e18c0b39815c5a746887a509c2cd9f11fadaba07
Christian Brabandt <cb@256bit.org>
parents:
7707
diff
changeset
|
80 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
|
81 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
|
82 |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
83 *E925* *E926* |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
84 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
|
85 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
|
86 |
7 | 87 *:cc* |
88 :cc[!] [nr] Display error [nr]. If [nr] is omitted, the same | |
16515
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
89 :[nr]cc[!] error is displayed again. Without [!] this doesn't |
7 | 90 work when jumping to another buffer, the current buffer |
91 has been changed, there is the only window for the | |
92 buffer and both 'hidden' and 'autowrite' are off. | |
93 When jumping to another buffer with [!] any changes to | |
94 the current buffer are lost, unless 'hidden' is set or | |
95 there is another window for this buffer. | |
96 The 'switchbuf' settings are respected when jumping | |
97 to a buffer. | |
16515
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
98 When used in the quickfix window the line number can |
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
99 be used, including "." for the current line and "$" |
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
100 for the last line. |
7 | 101 |
644 | 102 *:ll* |
103 :ll[!] [nr] Same as ":cc", except the location list for the | |
16515
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
104 :[nr]ll[!] current window is used instead of the quickfix list. |
644 | 105 |
16944 | 106 *:cn* *:cne* *:cnext* *E553* |
7 | 107 :[count]cn[ext][!] Display the [count] next error in the list that |
108 includes a file name. If there are no file names at | |
109 all, go to the [count] next error. See |:cc| for | |
110 [!] and 'switchbuf'. | |
111 | |
647 | 112 *:lne* *:lnext* |
113 :[count]lne[xt][!] Same as ":cnext", except the location list for the | |
644 | 114 current window is used instead of the quickfix list. |
115 | |
15512 | 116 :[count]cN[ext][!] *:cp* *:cprevious* *:cprev* *:cN* *:cNext* |
7 | 117 :[count]cp[revious][!] Display the [count] previous error in the list that |
118 includes a file name. If there are no file names at | |
119 all, go to the [count] previous error. See |:cc| for | |
120 [!] and 'switchbuf'. | |
121 | |
856 | 122 |
15512 | 123 :[count]lN[ext][!] *:lp* *:lprevious* *:lprev* *:lN* *:lNext* |
644 | 124 :[count]lp[revious][!] Same as ":cNext" and ":cprevious", except the location |
125 list for the current window is used instead of the | |
126 quickfix list. | |
127 | |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
128 *:cabo* *:cabove* |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
129 :[count]cabo[ve] Go to the [count] error above the current line in the |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
130 current buffer. If [count] is omitted, then 1 is |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
131 used. If there are no errors, then an error message |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
132 is displayed. Assumes that the entries in a quickfix |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
133 list are sorted by their buffer number and line |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
134 number. If there are multiple errors on the same line, |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
135 then only the first entry is used. If [count] exceeds |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
136 the number of entries above the current line, then the |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
137 first error in the file is selected. |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
138 |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
139 *:lab* *:labove* |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
140 :[count]lab[ove] Same as ":cabove", except the location list for the |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
141 current window is used instead of the quickfix list. |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
142 |
16555
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
143 *:cbel* *:cbelow* |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
144 :[count]cbel[ow] Go to the [count] error below the current line in the |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
145 current buffer. If [count] is omitted, then 1 is |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
146 used. If there are no errors, then an error message |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
147 is displayed. Assumes that the entries in a quickfix |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
148 list are sorted by their buffer number and line |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
149 number. If there are multiple errors on the same |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
150 line, then only the first entry is used. If [count] |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
151 exceeds the number of entries below the current line, |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
152 then the last error in the file is selected. |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
153 |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
154 *:lbel* *:lbelow* |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
155 :[count]lbel[ow] Same as ":cbelow", except the location list for the |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
156 current window is used instead of the quickfix list. |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
157 |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
158 *:cbe* *:cbefore* |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
159 :[count]cbe[fore] Go to the [count] error before the current cursor |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
160 position in the current buffer. If [count] is |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
161 omitted, then 1 is used. If there are no errors, then |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
162 an error message is displayed. Assumes that the |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
163 entries in a quickfix list are sorted by their buffer, |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
164 line and column numbers. If [count] exceeds the |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
165 number of entries before the current position, then |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
166 the first error in the file is selected. |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
167 |
16555
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
168 *:lbe* *:lbefore* |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
169 :[count]lbe[fore] Same as ":cbefore", except the location list for the |
16543
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
170 current window is used instead of the quickfix list. |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
171 |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
172 *:caf* *:cafter* |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
173 :[count]caf[ter] Go to the [count] error after the current cursor |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
174 position in the current buffer. If [count] is |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
175 omitted, then 1 is used. If there are no errors, then |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
176 an error message is displayed. Assumes that the |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
177 entries in a quickfix list are sorted by their buffer, |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
178 line and column numbers. If [count] exceeds the |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
179 number of entries after the current position, then |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
180 the last error in the file is selected. |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
181 |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
182 *:laf* *:lafter* |
1d2b3bb35414
patch 8.1.1275: cannot navigate to errors before/after the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16515
diff
changeset
|
183 :[count]laf[ter] Same as ":cafter", except the location list for the |
16505
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
184 current window is used instead of the quickfix list. |
28e3ba82d8c8
patch 8.1.1256: cannot navigate through errors relative to the cursor
Bram Moolenaar <Bram@vim.org>
parents:
16019
diff
changeset
|
185 |
7 | 186 *:cnf* *:cnfile* |
187 :[count]cnf[ile][!] Display the first error in the [count] next file in | |
188 the list that includes a file name. If there are no | |
189 file names at all or if there is no next file, go to | |
190 the [count] next error. See |:cc| for [!] and | |
191 'switchbuf'. | |
192 | |
644 | 193 *:lnf* *:lnfile* |
194 :[count]lnf[ile][!] Same as ":cnfile", except the location list for the | |
195 current window is used instead of the quickfix list. | |
196 | |
7 | 197 :[count]cNf[ile][!] *:cpf* *:cpfile* *:cNf* *:cNfile* |
198 :[count]cpf[ile][!] Display the last error in the [count] previous file in | |
199 the list that includes a file name. If there are no | |
200 file names at all or if there is no next file, go to | |
201 the [count] previous error. See |:cc| for [!] and | |
202 'switchbuf'. | |
203 | |
647 | 204 |
205 :[count]lNf[ile][!] *:lpf* *:lpfile* *:lNf* *:lNfile* | |
644 | 206 :[count]lpf[ile][!] Same as ":cNfile" and ":cpfile", except the location |
207 list for the current window is used instead of the | |
208 quickfix list. | |
209 | |
7 | 210 *:crewind* *:cr* |
211 :cr[ewind][!] [nr] Display error [nr]. If [nr] is omitted, the FIRST | |
212 error is displayed. See |:cc|. | |
213 | |
644 | 214 *:lrewind* *:lr* |
215 :lr[ewind][!] [nr] Same as ":crewind", except the location list for the | |
216 current window is used instead of the quickfix list. | |
217 | |
7 | 218 *:cfirst* *:cfir* |
219 :cfir[st][!] [nr] Same as ":crewind". | |
220 | |
644 | 221 *:lfirst* *:lfir* |
222 :lfir[st][!] [nr] Same as ":lrewind". | |
223 | |
7 | 224 *:clast* *:cla* |
225 :cla[st][!] [nr] Display error [nr]. If [nr] is omitted, the LAST | |
226 error is displayed. See |:cc|. | |
227 | |
644 | 228 *:llast* *:lla* |
229 :lla[st][!] [nr] Same as ":clast", except the location list for the | |
230 current window is used instead of the quickfix list. | |
231 | |
7 | 232 *:cq* *:cquit* |
19069
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18912
diff
changeset
|
233 :cq[uit][!] |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18912
diff
changeset
|
234 :{N}cq[uit][!] |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18912
diff
changeset
|
235 :cq[uit][!] {N} Quit Vim with error code {N}. {N} defaults to one. |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18912
diff
changeset
|
236 Useful when Vim is called from another program: |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18912
diff
changeset
|
237 e.g., a compiler will not compile the same file again, |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18912
diff
changeset
|
238 `git commit` will abort the committing process, `fc` |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18912
diff
changeset
|
239 (built-in for shells like bash and zsh) will not |
19163 | 240 execute the command, etc. |
19069
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18912
diff
changeset
|
241 {N} can also be zero, in which case Vim exits |
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18912
diff
changeset
|
242 normally. |
1624 | 243 WARNING: All changes in files are lost! Also when the |
244 [!] is not used. It works like ":qall!" |:qall|, | |
245 except that Vim returns a non-zero exit code. | |
7 | 246 |
27036 | 247 *:cf* *:cfi* *:cfile* |
7 | 248 :cf[ile][!] [errorfile] Read the error file and jump to the first error. |
249 This is done automatically when Vim is started with | |
250 the -q option. You can use this command when you | |
251 keep Vim running while compiling. If you give the | |
252 name of the errorfile, the 'errorfile' option will | |
253 be set to [errorfile]. See |:cc| for [!]. | |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
254 If the encoding of the error file differs from the |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
255 'encoding' option, you can use the 'makeencoding' |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
256 option to specify the encoding. |
7 | 257 |
16944 | 258 *:lf* *:lfi* *:lfile* |
644 | 259 :lf[ile][!] [errorfile] Same as ":cfile", except the location list for the |
260 current window is used instead of the quickfix list. | |
261 You can not use the -q command-line option to set | |
262 the location list. | |
263 | |
856 | 264 |
1624 | 265 :cg[etfile] [errorfile] *:cg* *:cgetfile* |
7 | 266 Read the error file. Just like ":cfile" but don't |
267 jump to the first error. | |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
268 If the encoding of the error file differs from the |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
269 'encoding' option, you can use the 'makeencoding' |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
270 option to specify the encoding. |
7 | 271 |
856 | 272 |
16944 | 273 :lg[etfile] [errorfile] *:lg* *:lge* *:lgetfile* |
644 | 274 Same as ":cgetfile", except the location list for the |
275 current window is used instead of the quickfix list. | |
276 | |
625 | 277 *:caddf* *:caddfile* |
278 :caddf[ile] [errorfile] Read the error file and add the errors from the | |
446 | 279 errorfile to the current quickfix list. If a quickfix |
280 list is not present, then a new list is created. | |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
281 If the encoding of the error file differs from the |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
282 'encoding' option, you can use the 'makeencoding' |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
283 option to specify the encoding. |
446 | 284 |
644 | 285 *:laddf* *:laddfile* |
286 :laddf[ile] [errorfile] Same as ":caddfile", except the location list for the | |
287 current window is used instead of the quickfix list. | |
288 | |
41 | 289 *:cb* *:cbuffer* *E681* |
1084 | 290 :cb[uffer][!] [bufnr] Read the error list from the current buffer. |
41 | 291 When [bufnr] is given it must be the number of a |
292 loaded buffer. That buffer will then be used instead | |
293 of the current buffer. | |
294 A range can be specified for the lines to be used. | |
295 Otherwise all lines in the buffer are used. | |
1084 | 296 See |:cc| for [!]. |
41 | 297 |
644 | 298 *:lb* *:lbuffer* |
1084 | 299 :lb[uffer][!] [bufnr] Same as ":cbuffer", except the location list for the |
644 | 300 current window is used instead of the quickfix list. |
301 | |
798 | 302 *:cgetb* *:cgetbuffer* |
303 :cgetb[uffer] [bufnr] Read the error list from the current buffer. Just | |
304 like ":cbuffer" but don't jump to the first error. | |
305 | |
306 *:lgetb* *:lgetbuffer* | |
307 :lgetb[uffer] [bufnr] Same as ":cgetbuffer", except the location list for | |
308 the current window is used instead of the quickfix | |
309 list. | |
310 | |
16944 | 311 *:cad* *:cadd* *:caddbuffer* |
5763 | 312 :cad[dbuffer] [bufnr] Read the error list from the current buffer and add |
658 | 313 the errors to the current quickfix list. If a |
314 quickfix list is not present, then a new list is | |
315 created. Otherwise, same as ":cbuffer". | |
316 | |
317 *:laddb* *:laddbuffer* | |
318 :laddb[uffer] [bufnr] Same as ":caddbuffer", except the location list for | |
319 the current window is used instead of the quickfix | |
320 list. | |
321 | |
626 | 322 *:cex* *:cexpr* *E777* |
625 | 323 :cex[pr][!] {expr} Create a quickfix list using the result of {expr} and |
2833 | 324 jump to the first error. |
18831 | 325 If {expr} is a String, then each newline terminated |
7701
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7418
diff
changeset
|
326 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
|
327 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
|
328 quickfix list. |
2833 | 329 If {expr} is a List, then each String item in the list |
330 is processed and added to the quickfix list. Non | |
331 String items in the List are ignored. | |
332 See |:cc| for [!]. | |
446 | 333 Examples: > |
334 :cexpr system('grep -n xyz *') | |
335 :cexpr getline(1, '$') | |
336 < | |
644 | 337 *:lex* *:lexpr* |
2833 | 338 :lex[pr][!] {expr} Same as |:cexpr|, except the location list for the |
644 | 339 current window is used instead of the quickfix list. |
340 | |
800 | 341 *:cgete* *:cgetexpr* |
1624 | 342 :cgete[xpr] {expr} Create a quickfix list using the result of {expr}. |
2833 | 343 Just like |:cexpr|, but don't jump to the first error. |
800 | 344 |
345 *:lgete* *:lgetexpr* | |
2833 | 346 :lgete[xpr] {expr} Same as |:cgetexpr|, except the location list for the |
800 | 347 current window is used instead of the quickfix list. |
348 | |
5734 | 349 *:cadde* *:caddexpr* |
5763 | 350 :cadde[xpr] {expr} Evaluate {expr} and add the resulting lines to the |
625 | 351 current quickfix list. If a quickfix list is not |
352 present, then a new list is created. The current | |
353 cursor position will not be changed. See |:cexpr| for | |
354 more information. | |
355 Example: > | |
27903 | 356 :g/mypattern/caddexpr expand("%") .. ":" .. line(".") .. ":" .. getline(".") |
625 | 357 < |
16944 | 358 *:lad* *:addd* *:laddexpr* |
1624 | 359 :lad[dexpr] {expr} Same as ":caddexpr", except the location list for the |
644 | 360 current window is used instead of the quickfix list. |
361 | |
7 | 362 *:cl* *:clist* |
363 :cl[ist] [from] [, [to]] | |
364 List all errors that are valid |quickfix-valid|. | |
365 If numbers [from] and/or [to] are given, the respective | |
237 | 366 range of errors is listed. A negative number counts |
7 | 367 from the last error backwards, -1 being the last error. |
368 The 'switchbuf' settings are respected when jumping | |
369 to a buffer. | |
14307
df27d6270691
patch 8.1.0169: calling message_filtered() a bit too often
Christian Brabandt <cb@256bit.org>
parents:
13963
diff
changeset
|
370 The |:filter| command can be used to display only the |
df27d6270691
patch 8.1.0169: calling message_filtered() a bit too often
Christian Brabandt <cb@256bit.org>
parents:
13963
diff
changeset
|
371 quickfix entries matching a supplied pattern. The |
df27d6270691
patch 8.1.0169: calling message_filtered() a bit too often
Christian Brabandt <cb@256bit.org>
parents:
13963
diff
changeset
|
372 pattern is matched against the filename, module name, |
df27d6270691
patch 8.1.0169: calling message_filtered() a bit too often
Christian Brabandt <cb@256bit.org>
parents:
13963
diff
changeset
|
373 pattern and text of the entry. |
7 | 374 |
9379
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
375 :cl[ist] +{count} List the current and next {count} valid errors. This |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
376 is similar to ":clist from from+count", where "from" |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
377 is the current error position. |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
378 |
7 | 379 :cl[ist]! [from] [, [to]] |
380 List all errors. | |
381 | |
9379
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
382 :cl[ist]! +{count} List the current and next {count} error lines. This |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
383 is useful to see unrecognized lines after the current |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
384 one. For example, if ":clist" shows: |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
385 8384 testje.java:252: error: cannot find symbol ~ |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
386 Then using ":cl! +3" shows the reason: |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
387 8384 testje.java:252: error: cannot find symbol ~ |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
388 8385: ZexitCode = Fmainx(); ~ |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
389 8386: ^ ~ |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
390 8387: symbol: method Fmainx() ~ |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
391 |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9227
diff
changeset
|
392 :lli[st] [from] [, [to]] *:lli* *:llist* |
644 | 393 Same as ":clist", except the location list for the |
394 current window is used instead of the quickfix list. | |
395 | |
396 :lli[st]! [from] [, [to]] | |
397 List all the entries in the location list for the | |
398 current window. | |
399 | |
7 | 400 If you insert or delete lines, mostly the correct error location is still |
401 found because hidden marks are used. Sometimes, when the mark has been | |
402 deleted for some reason, the message "line changed" is shown to warn you that | |
403 the error location may not be correct. If you quit Vim and start again the | |
404 marks are lost and the error locations may not be correct anymore. | |
405 | |
13437 | 406 Two autocommands are available for running commands before and after a |
407 quickfix command (':make', ':grep' and so on) is executed. See | |
408 |QuickFixCmdPre| and |QuickFixCmdPost| for details. | |
163 | 409 |
1624 | 410 *QuickFixCmdPost-example* |
411 When 'encoding' differs from the locale, the error messages may have a | |
412 different encoding from what Vim is using. To convert the messages you can | |
413 use this code: > | |
414 function QfMakeConv() | |
415 let qflist = getqflist() | |
416 for i in qflist | |
417 let i.text = iconv(i.text, "cp936", "utf-8") | |
418 endfor | |
419 call setqflist(qflist) | |
420 endfunction | |
421 | |
422 au QuickfixCmdPost make call QfMakeConv() | |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
423 Another option is using 'makeencoding'. |
1624 | 424 |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
425 *quickfix-title* |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
426 Every quickfix and location list has a title. By default the title is set to |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
427 the command that created the list. The |getqflist()| and |getloclist()| |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
428 functions can be used to get the title of a quickfix and a location list |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
429 respectively. The |setqflist()| and |setloclist()| functions can be used to |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
430 modify the title of a quickfix and location list respectively. Examples: > |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
431 call setqflist([], 'a', {'title' : 'Cmd output'}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
432 echo getqflist({'title' : 1}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
433 call setloclist(3, [], 'a', {'title' : 'Cmd output'}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
434 echo getloclist(3, {'title' : 1}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
435 < |
15424
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
436 *quickfix-index* |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
437 When you jump to a quickfix/location list entry using any of the quickfix |
15512 | 438 commands (e.g. |:cc|, |:cnext|, |:cprev|, etc.), that entry becomes the |
439 currently selected entry. The index of the currently selected entry in a | |
15424
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
440 quickfix/location list can be obtained using the getqflist()/getloclist() |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
441 functions. Examples: > |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
442 echo getqflist({'idx' : 0}).idx |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
443 echo getqflist({'id' : qfid, 'idx' : 0}).idx |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
444 echo getloclist(2, {'idx' : 0}).idx |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
445 < |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
446 For a new quickfix list, the first entry is selected and the index is 1. Any |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
447 entry in any quickfix/location list can be set as the currently selected entry |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
448 using the setqflist() function. Examples: > |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
449 call setqflist([], 'a', {'idx' : 12}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
450 call setqflist([], 'a', {'id' : qfid, 'idx' : 7}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
451 call setloclist(1, [], 'a', {'idx' : 7}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
452 < |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
453 *quickfix-size* |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
454 You can get the number of entries (size) in a quickfix and a location list |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
455 using the |getqflist()| and |getloclist()| functions respectively. Examples: > |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
456 echo getqflist({'size' : 1}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
457 echo getloclist(5, {'size' : 1}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
458 < |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
459 *quickfix-context* |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
460 Any Vim type can be associated as a context with a quickfix or location list. |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
461 The |setqflist()| and the |setloclist()| functions can be used to associate a |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
462 context with a quickfix and a location list respectively. The |getqflist()| |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
463 and the |getloclist()| functions can be used to retrieve the context of a |
13051 | 464 quickfix and a location list respectively. This is useful for a Vim plugin |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
465 dealing with multiple quickfix/location lists. |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
466 Examples: > |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
467 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
468 let somectx = {'name' : 'Vim', 'type' : 'Editor'} |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
469 call setqflist([], 'a', {'context' : somectx}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
470 echo getqflist({'context' : 1}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
471 |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
472 let newctx = ['red', 'green', 'blue'] |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
473 call setloclist(2, [], 'a', {'id' : qfid, 'context' : newctx}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
474 echo getloclist(2, {'id' : qfid, 'context' : 1}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
475 < |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
476 *quickfix-parse* |
13051 | 477 You can parse a list of lines using 'errorformat' without creating or |
478 modifying a quickfix list using the |getqflist()| function. Examples: > | |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
479 echo getqflist({'lines' : ["F1:10:Line10", "F2:20:Line20"]}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
480 echo getqflist({'lines' : systemlist('grep -Hn quickfix *')}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
481 This returns a dictionary where the 'items' key contains the list of quickfix |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
482 entries parsed from lines. The following shows how to use a custom |
13051 | 483 'errorformat' to parse the lines without modifying the 'errorformat' option: > |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
484 echo getqflist({'efm' : '%f#%l#%m', 'lines' : ['F1#10#Line']}) |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
485 < |
1624 | 486 |
7100
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
487 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
|
488 *:cdo* |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
489 :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
|
490 It works like doing this: > |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
491 :cfirst |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
492 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
493 :cnext |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
494 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
495 etc. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
496 < 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
|
497 is not present, the command fails. |
18456 | 498 When going to the next entry fails execution stops. |
7100
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
499 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
|
500 the current buffer. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
501 {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
|
502 |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
503 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
|
504 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
|
505 :10,$cdo cmd |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
506 < To skip entries 1 to 9. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
507 |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
508 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
|
509 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
|
510 'eventignore'. This considerably speeds up editing |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
511 each buffer. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
512 Also see |:bufdo|, |:tabdo|, |:argdo|, |:windo|, |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
513 |:ldo|, |:cfdo| and |:lfdo|. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
514 |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
515 *:cfdo* |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
516 :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
|
517 It works like doing this: > |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
518 :cfirst |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
519 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
520 :cnfile |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
521 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
522 etc. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
523 < 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
|
524 |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
525 *:ldo* |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
526 :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
|
527 for the current window. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
528 It works like doing this: > |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
529 :lfirst |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
530 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
531 :lnext |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
532 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
533 etc. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
534 < 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
|
535 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
|
536 |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
537 *:lfdo* |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
538 :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
|
539 the current window. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
540 It works like doing this: > |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
541 :lfirst |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
542 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
543 :lnfile |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
544 :{cmd} |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
545 etc. |
f717d96a39b3
commit https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
546 < 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
|
547 |
16555
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
548 FILTERING A QUICKFIX OR LOCATION LIST: |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
549 *cfilter-plugin* *:Cfilter* *:Lfilter* |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
550 If you have too many entries in a quickfix list, you can use the cfilter |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
551 plugin to reduce the number of entries. Load the plugin with: > |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
552 |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
553 packadd cfilter |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
554 |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
555 Then you can use the following commands to filter a quickfix/location list: > |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
556 |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
557 :Cfilter[!] /{pat}/ |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
558 :Lfilter[!] /{pat}/ |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
559 |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
560 The |:Cfilter| command creates a new quickfix list from the entries matching |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
561 {pat} in the current quickfix list. {pat} is a Vim |regular-expression| |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
562 pattern. Both the file name and the text of the entries are matched against |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
563 {pat}. If the optional ! is supplied, then the entries not matching {pat} are |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
564 used. The pattern can be optionally enclosed using one of the following |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
565 characters: ', ", /. If the pattern is empty, then the last used search |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
566 pattern is used. |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
567 |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
568 The |:Lfilter| command does the same as |:Cfilter| but operates on the current |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
569 location list. |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
570 |
7 | 571 ============================================================================= |
572 2. The error window *quickfix-window* | |
573 | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2365
diff
changeset
|
574 *:cope* *:copen* *w:quickfix_title* |
7 | 575 :cope[n] [height] Open a window to show the current list of errors. |
5763 | 576 |
7 | 577 When [height] is given, the window becomes that high |
5763 | 578 (if there is room). When [height] is omitted the |
579 window is made ten lines high. | |
580 | |
581 If there already is a quickfix window, it will be made | |
582 the current window. It is not possible to open a | |
583 second quickfix window. If [height] is given the | |
584 existing window will be resized to it. | |
585 | |
16019
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15512
diff
changeset
|
586 *quickfix-buffer* |
7 | 587 The window will contain a special buffer, with |
588 'buftype' equal to "quickfix". Don't change this! | |
5763 | 589 The window will have the w:quickfix_title variable set |
590 which will indicate the command that produced the | |
591 quickfix list. This can be used to compose a custom | |
592 status line if the value of 'statusline' is adjusted | |
11705
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11516
diff
changeset
|
593 properly. Whenever this buffer is modified by a |
c43118ecb0a3
patch 8.0.0735: no indication that the quickfix window/buffer changed
Christian Brabandt <cb@256bit.org>
parents:
11516
diff
changeset
|
594 quickfix command or function, the |b:changedtick| |
16019
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15512
diff
changeset
|
595 variable is incremented. You can get the number of |
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15512
diff
changeset
|
596 this buffer using the getqflist() and getloclist() |
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15512
diff
changeset
|
597 functions by passing the 'qfbufnr' item. For a |
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15512
diff
changeset
|
598 location list, this buffer is wiped out when the |
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15512
diff
changeset
|
599 location list is removed. |
7 | 600 |
647 | 601 *:lop* *:lopen* |
602 :lop[en] [height] Open a window to show the location list for the | |
644 | 603 current window. Works only when the location list for |
647 | 604 the current window is present. You can have more than |
605 one location window opened at a time. Otherwise, it | |
648 | 606 acts the same as ":copen". |
644 | 607 |
7 | 608 *:ccl* *:cclose* |
609 :ccl[ose] Close the quickfix window. | |
610 | |
644 | 611 *:lcl* *:lclose* |
612 :lcl[ose] Close the window showing the location list for the | |
613 current window. | |
614 | |
7 | 615 *:cw* *:cwindow* |
616 :cw[indow] [height] Open the quickfix window when there are recognized | |
617 errors. If the window is already open and there are | |
618 no recognized errors, close the window. | |
619 | |
644 | 620 *:lw* *:lwindow* |
621 :lw[indow] [height] Same as ":cwindow", except use the window showing the | |
622 location list for the current window. | |
7 | 623 |
9458
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
624 *:cbo* *:cbottom* |
9432
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9407
diff
changeset
|
625 :cbo[ttom] Put the cursor in the last line of the quickfix window |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9407
diff
changeset
|
626 and scroll to make it visible. This is useful for |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9407
diff
changeset
|
627 when errors are added by an asynchronous callback. |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9407
diff
changeset
|
628 Only call it once in a while if there are many |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9407
diff
changeset
|
629 updates to avoid a lot of redrawing. |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9407
diff
changeset
|
630 |
9458
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
631 *:lbo* *:lbottom* |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
632 :lbo[ttom] Same as ":cbottom", except use the window showing the |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
633 location list for the current window. |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
634 |
7 | 635 Normally the quickfix window is at the bottom of the screen. If there are |
636 vertical splits, it's at the bottom of the rightmost column of windows. To | |
637 make it always occupy the full width: > | |
638 :botright cwindow | |
639 You can move the window around with |window-moving| commands. | |
640 For example, to move it to the top: CTRL-W K | |
641 The 'winfixheight' option will be set, which means that the window will mostly | |
642 keep its height, ignoring 'winheight' and 'equalalways'. You can change the | |
643 height manually (e.g., by dragging the status line above it with the mouse). | |
644 | |
645 In the quickfix window, each line is one error. The line number is equal to | |
11516
80491a71c716
patch 8.0.0641: cannot set a separate highlighting for the quickfix line
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
646 the error number. The current entry is highlighted with the QuickFixLine |
80491a71c716
patch 8.0.0641: cannot set a separate highlighting for the quickfix line
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
647 highlighting. You can change it to your liking, e.g.: > |
80491a71c716
patch 8.0.0641: cannot set a separate highlighting for the quickfix line
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
648 :hi QuickFixLine ctermbg=Yellow guibg=Yellow |
80491a71c716
patch 8.0.0641: cannot set a separate highlighting for the quickfix line
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
649 |
80491a71c716
patch 8.0.0641: cannot set a separate highlighting for the quickfix line
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
650 You can use ":.cc" to jump to the error under the cursor. |
170 | 651 Hitting the <Enter> key or double-clicking the mouse on a line has the same |
7 | 652 effect. The file containing the error is opened in the window above the |
653 quickfix window. If there already is a window for that file, it is used | |
654 instead. If the buffer in the used window has changed, and the error is in | |
655 another file, jumping to the error will fail. You will first have to make | |
656 sure the window contains a buffer which can be abandoned. | |
27903 | 657 |
28010 | 658 When you select a file from the quickfix window, the following steps are used |
659 to find a window to edit the file: | |
660 | |
661 1. If a window displaying the selected file is present in the current tabpage | |
662 (starting with the window before the quickfix window), then that window is | |
663 used. | |
664 2. If the above step fails and if 'switchbuf' contains "usetab" and a window | |
665 displaying the selected file is present in any one of the tabpages | |
666 (starting with the first tabpage) then that window is used. | |
667 3. If the above step fails then a window in the current tabpage displaying a | |
668 buffer with 'buftype' not set (starting with the window before the quickfix | |
669 window) is used. | |
670 4. If the above step fails and if 'switchbuf' contains "uselast", then the | |
671 previously accessed window is used. | |
672 5. If the above step fails then the window before the quickfix window is used. | |
673 If there is no previous window, then the window after the quickfix window | |
674 is used. | |
675 6. If the above step fails, then a new horizontally split window above the | |
676 quickfix window is used. | |
27903 | 677 |
170 | 678 *CTRL-W_<Enter>* *CTRL-W_<CR>* |
679 You can use CTRL-W <Enter> to open a new window and jump to the error there. | |
7 | 680 |
681 When the quickfix window has been filled, two autocommand events are | |
682 triggered. First the 'filetype' option is set to "qf", which triggers the | |
17433 | 683 FileType event (also see |qf.vim|). Then the BufReadPost event is triggered, |
684 using "quickfix" for the buffer name. This can be used to perform some action | |
685 on the listed errors. Example: > | |
648 | 686 au BufReadPost quickfix setlocal modifiable |
27903 | 687 \ | silent exe 'g/^/s//\=line(".") .. " "/' |
648 | 688 \ | setlocal nomodifiable |
7 | 689 This prepends the line number to each line. Note the use of "\=" in the |
690 substitute string of the ":s" command, which is used to evaluate an | |
691 expression. | |
651 | 692 The BufWinEnter event is also triggered, again using "quickfix" for the buffer |
693 name. | |
7 | 694 |
9227
ecb621205ed1
commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
695 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
|
696 triggered. |
ecb621205ed1
commit https://github.com/vim/vim/commit/82af8710bf8d1caeeceafb1370a052cb7d92f076
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
697 |
7 | 698 Note: Making changes in the quickfix window has no effect on the list of |
699 errors. 'modifiable' is off to avoid making changes. If you delete or insert | |
700 lines anyway, the relation between the text and the error number is messed up. | |
701 If you really want to do this, you could write the contents of the quickfix | |
702 window to a file and use ":cfile" to have it parsed and used as the new error | |
703 list. | |
704 | |
644 | 705 *location-list-window* |
648 | 706 The location list window displays the entries in a location list. When you |
707 open a location list window, it is created below the current window and | |
708 displays the location list for the current window. The location list window | |
709 is similar to the quickfix window, except that you can have more than one | |
651 | 710 location list window open at a time. When you use a location list command in |
711 this window, the displayed location list is used. | |
648 | 712 |
713 When you select a file from the location list window, the following steps are | |
714 used to find a window to edit the file: | |
644 | 715 |
28010 | 716 1. If a non-quickfix window associated with the location list is present in |
717 the current tabpage, then that window is used. | |
718 2. If the above step fails and if the file is already opened in another window | |
719 in the current tabpage, then that window is used. | |
720 3. If the above step fails and 'switchbuf' contains "usetab" and if the file | |
721 is opened in a window in any one of the tabpages, then that window is used. | |
722 4. If the above step fails then a window in the current tabpage showing a | |
723 buffer with 'buftype' not set is used. | |
724 5. If the above step fails, then the file is edited in a new window. | |
648 | 725 |
726 In all of the above cases, if the location list for the selected window is not | |
727 yet set, then it is set to the location list displayed in the location list | |
728 window. | |
644 | 729 |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
730 *quickfix-window-ID* |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
731 You can use the |getqflist()| and |getloclist()| functions to obtain the |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
732 window ID of the quickfix window and location list window respectively (if |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
733 present). Examples: > |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
734 echo getqflist({'winid' : 1}).winid |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
735 echo getloclist(2, {'winid' : 1}).winid |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
736 < |
13818
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
737 *getqflist-examples* |
14519 | 738 The |getqflist()| and |getloclist()| functions can be used to get the various |
13818
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
739 attributes of a quickfix and location list respectively. Some examples for |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
740 using these functions are below: |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
741 > |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
742 " get the title of the current quickfix list |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
743 :echo getqflist({'title' : 0}).title |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
744 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
745 " get the identifier of the current quickfix list |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
746 :let qfid = getqflist({'id' : 0}).id |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
747 |
13948
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
748 " get the identifier of the fourth quickfix list in the stack |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
749 :let qfid = getqflist({'nr' : 4, 'id' : 0}).id |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
750 |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
751 " check whether a quickfix list with a specific identifier exists |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
752 :if getqflist({'id' : qfid}).id == qfid |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
753 |
13818
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
754 " get the index of the current quickfix list in the stack |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
755 :let qfnum = getqflist({'nr' : 0}).nr |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
756 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
757 " get the items of a quickfix list specified by an identifier |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
758 :echo getqflist({'id' : qfid, 'items' : 0}).items |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
759 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
760 " get the number of entries in a quickfix list specified by an id |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
761 :echo getqflist({'id' : qfid, 'size' : 0}).size |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
762 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
763 " get the context of the third quickfix list in the stack |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
764 :echo getqflist({'nr' : 3, 'context' : 0}).context |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
765 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
766 " get the number of quickfix lists in the stack |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
767 :echo getqflist({'nr' : '$'}).nr |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
768 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
769 " get the number of times the current quickfix list is changed |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
770 :echo getqflist({'changedtick' : 0}).changedtick |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
771 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
772 " get the current entry in a quickfix list specified by an identifier |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
773 :echo getqflist({'id' : qfid, 'idx' : 0}).idx |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
774 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
775 " get all the quickfix list attributes using an identifier |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
776 :echo getqflist({'id' : qfid, 'all' : 0}) |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
777 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
778 " parse text from a List of lines and return a quickfix list |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
779 :let myList = ["a.java:10:L10", "b.java:20:L20"] |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
780 :echo getqflist({'lines' : myList}).items |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
781 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
782 " parse text using a custom 'efm' and return a quickfix list |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
783 :echo getqflist({'lines' : ['a.c#10#Line 10'], 'efm':'%f#%l#%m'}).items |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
784 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
785 " get the quickfix list window id |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
786 :echo getqflist({'winid' : 0}).winid |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
787 |
16019
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15512
diff
changeset
|
788 " get the quickfix list window buffer number |
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15512
diff
changeset
|
789 :echo getqflist({'qfbufnr' : 0}).qfbufnr |
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15512
diff
changeset
|
790 |
13818
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
791 " get the context of the current location list |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
792 :echo getloclist(0, {'context' : 0}).context |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
793 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
794 " get the location list window id of the third window |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
795 :echo getloclist(3, {'winid' : 0}).winid |
15424
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
796 |
16019
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15512
diff
changeset
|
797 " get the location list window buffer number of the third window |
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15512
diff
changeset
|
798 :echo getloclist(3, {'qfbufnr' : 0}).qfbufnr |
096b8ccd855e
patch 8.1.1015: quickfix buffer shows up in list, can't get buffer number
Bram Moolenaar <Bram@vim.org>
parents:
15512
diff
changeset
|
799 |
15424
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
800 " get the file window id of a location list window (winnr: 4) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
801 :echo getloclist(4, {'filewinid' : 0}).filewinid |
13818
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
802 < |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
803 *setqflist-examples* |
14519 | 804 The |setqflist()| and |setloclist()| functions can be used to set the various |
13818
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
805 attributes of a quickfix and location list respectively. Some examples for |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
806 using these functions are below: |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
807 > |
13948
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
808 " create an empty quickfix list with a title and a context |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
809 :let t = 'Search results' |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
810 :let c = {'cmd' : 'grep'} |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
811 :call setqflist([], ' ', {'title' : t, 'context' : c}) |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
812 |
13818
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
813 " set the title of the current quickfix list |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
814 :call setqflist([], 'a', {'title' : 'Mytitle'}) |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
815 |
15424
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
816 " change the current entry in the list specified by an identifier |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
817 :call setqflist([], 'a', {'id' : qfid, 'idx' : 10}) |
90c8ff9c19ee
patch 8.1.0720: cannot easily change the current quickfx list index
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
818 |
13818
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
819 " set the context of a quickfix list specified by an identifier |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
820 :call setqflist([], 'a', {'id' : qfid, 'context' : {'val' : 100}}) |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
821 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
822 " create a new quickfix list from a command output |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
823 :call setqflist([], ' ', {'lines' : systemlist('grep -Hn main *.c')}) |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
824 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
825 " parse text using a custom efm and add to a particular quickfix list |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
826 :call setqflist([], 'a', {'id' : qfid, |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
827 \ 'lines' : ["a.c#10#L10", "b.c#20#L20"], 'efm':'%f#%l#%m'}) |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
828 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
829 " add items to the quickfix list specified by an identifier |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
830 :let newItems = [{'filename' : 'a.txt', 'lnum' : 10, 'text' : "Apple"}, |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
831 \ {'filename' : 'b.txt', 'lnum' : 20, 'text' : "Orange"}] |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
832 :call setqflist([], 'a', {'id' : qfid, 'items' : newItems}) |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
833 |
13948
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
834 " empty a quickfix list specified by an identifier |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
835 :call setqflist([], 'r', {'id' : qfid, 'items' : []}) |
2ed1585c6467
patch 8.0.1844: superfluous quickfix code, missing examples
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
836 |
13818
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
837 " free all the quickfix lists in the stack |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
838 :call setqflist([], 'f') |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
839 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
840 " set the title of the fourth quickfix list |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
841 :call setqflist([], 'a', {'nr' : 4, 'title' : 'SomeTitle'}) |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
842 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
843 " create a new quickfix list at the end of the stack |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
844 :call setqflist([], ' ', {'nr' : '$', |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
845 \ 'lines' : systemlist('grep -Hn class *.java')}) |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
846 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
847 " create a new location list from a command output |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
848 :call setloclist(0, [], ' ', {'lines' : systemlist('grep -Hn main *.c')}) |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
849 |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
850 " replace the location list entries for the third window |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
851 :call setloclist(3, [], 'r', {'items' : newItems}) |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13563
diff
changeset
|
852 < |
7 | 853 ============================================================================= |
854 3. Using more than one list of errors *quickfix-error-lists* | |
855 | |
856 So far has been assumed that there is only one list of errors. Actually the | |
857 ten last used lists are remembered. When starting a new list, the previous | |
858 ones are automatically kept. Two commands can be used to access older error | |
859 lists. They set one of the existing error lists as the current one. | |
860 | |
861 *:colder* *:col* *E380* | |
862 :col[der] [count] Go to older error list. When [count] is given, do | |
863 this [count] times. When already at the oldest error | |
864 list, an error message is given. | |
865 | |
644 | 866 *:lolder* *:lol* |
9555
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
867 :lol[der] [count] Same as `:colder`, except use the location list for |
644 | 868 the current window instead of the quickfix list. |
869 | |
7 | 870 *:cnewer* *:cnew* *E381* |
871 :cnew[er] [count] Go to newer error list. When [count] is given, do | |
872 this [count] times. When already at the newest error | |
873 list, an error message is given. | |
874 | |
644 | 875 *:lnewer* *:lnew* |
9555
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
876 :lnew[er] [count] Same as `:cnewer`, except use the location list for |
644 | 877 the current window instead of the quickfix list. |
878 | |
9555
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
879 *:chistory* *:chi* |
16555
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
880 :[count]chi[story] Show the list of error lists. The current list is |
9555
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
881 marked with ">". The output looks like: |
26438 | 882 error list 1 of 3; 43 errors :make ~ |
883 > error list 2 of 3; 0 errors :helpgrep tag ~ | |
884 error list 3 of 3; 15 errors :grep ex_help *.c ~ | |
9555
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
885 |
16555
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
886 When [count] is given, then the count'th quickfix |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
887 list is made the current list. Example: > |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
888 " Make the 4th quickfix list current |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
889 :4chistory |
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
890 < |
9555
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
891 *:lhistory* *:lhi* |
16555
1302bc0b80db
patch 8.1.1281: cannot specify a count with :chistory
Bram Moolenaar <Bram@vim.org>
parents:
16553
diff
changeset
|
892 :[count]lhi[story] Show the list of location lists, otherwise like |
9555
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
893 `:chistory`. |
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
894 |
7 | 895 When adding a new error list, it becomes the current list. |
896 | |
897 When ":colder" has been used and ":make" or ":grep" is used to add a new error | |
898 list, one newer list is overwritten. This is especially useful if you are | |
899 browsing with ":grep" |grep|. If you want to keep the more recent error | |
900 lists, use ":cnewer 99" first. | |
901 | |
13016
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
902 To get the number of lists in the quickfix and location list stack, you can |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
903 use the |getqflist()| and |getloclist()| functions respectively with the list |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
904 number set to the special value '$'. Examples: > |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
905 echo getqflist({'nr' : '$'}).nr |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
906 echo getloclist(3, {'nr' : '$'}).nr |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
907 To get the number of the current list in the stack: > |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
908 echo getqflist({'nr' : 0}).nr |
e47e70300f30
patch 8.0.1384: not enough quickfix help; confusing winid
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
909 < |
7 | 910 ============================================================================= |
911 4. Using :make *:make_makeprg* | |
912 | |
913 *:mak* *:make* | |
13437 | 914 :mak[e][!] [arguments] 1. All relevant |QuickFixCmdPre| autocommands are |
915 executed. | |
163 | 916 2. If the 'autowrite' option is on, write any changed |
7 | 917 buffers |
163 | 918 3. An errorfile name is made from 'makeef'. If |
7 | 919 'makeef' doesn't contain "##", and a file with this |
920 name already exists, it is deleted. | |
163 | 921 4. The program given with the 'makeprg' option is |
7 | 922 started (default "make") with the optional |
923 [arguments] and the output is saved in the | |
924 errorfile (for Unix it is also echoed on the | |
925 screen). | |
163 | 926 5. The errorfile is read using 'errorformat'. |
13437 | 927 6. All relevant |QuickFixCmdPost| autocommands are |
928 executed. See example below. | |
1167 | 929 7. If [!] is not given the first error is jumped to. |
930 8. The errorfile is deleted. | |
163 | 931 9. You can now move through the errors with commands |
7 | 932 like |:cnext| and |:cprevious|, see above. |
933 This command does not accept a comment, any " | |
934 characters are considered part of the arguments. | |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
935 If the encoding of the program output differs from the |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
936 'encoding' option, you can use the 'makeencoding' |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
937 option to specify the encoding. |
7 | 938 |
658 | 939 *:lmak* *:lmake* |
940 :lmak[e][!] [arguments] | |
941 Same as ":make", except the location list for the | |
942 current window is used instead of the quickfix list. | |
943 | |
7 | 944 The ":make" command executes the command given with the 'makeprg' option. |
945 This is done by passing the command to the shell given with the 'shell' | |
946 option. This works almost like typing | |
947 | |
948 ":!{makeprg} [arguments] {shellpipe} {errorfile}". | |
949 | |
950 {makeprg} is the string given with the 'makeprg' option. Any command can be | |
951 used, not just "make". Characters '%' and '#' are expanded as usual on a | |
952 command-line. You can use "%<" to insert the current file name without | |
953 extension, or "#<" to insert the alternate file name without extension, for | |
954 example: > | |
955 :set makeprg=make\ #<.o | |
956 | |
957 [arguments] is anything that is typed after ":make". | |
958 {shellpipe} is the 'shellpipe' option. | |
959 {errorfile} is the 'makeef' option, with ## replaced to make it unique. | |
960 | |
2072 | 961 The placeholder "$*" can be used for the argument list in {makeprg} if the |
7 | 962 command needs some additional characters after its arguments. The $* is |
963 replaced then by all arguments. Example: > | |
964 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*} | |
965 or simpler > | |
966 :let &mp = 'latex \\nonstopmode \\input\{$*}' | |
967 "$*" can be given multiple times, for example: > | |
968 :set makeprg=gcc\ -o\ $*\ $* | |
969 | |
19116 | 970 The 'shellpipe' option defaults to ">" for the Amiga and ">%s 2>&1" for Win32. |
971 This means that the output of the compiler is saved in a file and not shown on | |
972 the screen directly. For Unix "| tee" is used. The compiler output is shown | |
973 on the screen and saved in a file the same time. Depending on the shell used | |
974 "|& tee" or "2>&1| tee" is the default, so stderr output will be included. | |
7 | 975 |
976 If 'shellpipe' is empty, the {errorfile} part will be omitted. This is useful | |
977 for compilers that write to an errorfile themselves (e.g., Manx's Amiga C). | |
978 | |
1624 | 979 |
980 Using QuickFixCmdPost to fix the encoding ~ | |
981 | |
982 It may be that 'encoding' is set to an encoding that differs from the messages | |
983 your build program produces. This example shows how to fix this after Vim has | |
984 read the error messages: > | |
985 | |
986 function QfMakeConv() | |
987 let qflist = getqflist() | |
988 for i in qflist | |
989 let i.text = iconv(i.text, "cp936", "utf-8") | |
990 endfor | |
991 call setqflist(qflist) | |
992 endfunction | |
993 | |
994 au QuickfixCmdPost make call QfMakeConv() | |
995 | |
996 (Example by Faque Cheng) | |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
997 Another option is using 'makeencoding'. |
1624 | 998 |
7 | 999 ============================================================================== |
41 | 1000 5. Using :vimgrep and :grep *grep* *lid* |
1001 | |
1002 Vim has two ways to find matches for a pattern: Internal and external. The | |
1003 advantage of the internal grep is that it works on all systems and uses the | |
1004 powerful Vim search patterns. An external grep program can be used when the | |
1005 Vim grep does not do what you want. | |
1006 | |
43 | 1007 The internal method will be slower, because files are read into memory. The |
1008 advantages are: | |
1009 - Line separators and encoding are automatically recognized, as if a file is | |
1010 being edited. | |
1011 - Uses Vim search patterns. Multi-line patterns can be used. | |
1012 - When plugins are enabled: compressed and remote files can be searched. | |
1013 |gzip| |netrw| | |
717 | 1014 |
1015 To be able to do this Vim loads each file as if it is being edited. When | |
720 | 1016 there is no match in the file the associated buffer is wiped out again. The |
717 | 1017 'hidden' option is ignored here to avoid running out of memory or file |
1018 descriptors when searching many files. However, when the |:hide| command | |
1019 modifier is used the buffers are kept loaded. This makes following searches | |
1020 in the same files a lot faster. | |
41 | 1021 |
2608
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1022 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
|
1023 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
|
1024 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
|
1025 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
|
1026 commands can be combined to create a NewGrep command: > |
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1027 |
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1028 command! -nargs=+ NewGrep execute 'silent grep! <args>' | copen 42 |
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1029 |
41 | 1030 |
1031 5.1 using Vim's internal grep | |
1032 | |
86 | 1033 *:vim* *:vimgrep* *E682* *E683* |
24547
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
23931
diff
changeset
|
1034 :vim[grep][!] /{pattern}/[g][j][f] {file} ... |
41 | 1035 Search for {pattern} in the files {file} ... and set |
3682 | 1036 the error list to the matches. Files matching |
1037 'wildignore' are ignored; files in 'suffixes' are | |
1038 searched last. | |
170 | 1039 |
1040 {pattern} is a Vim search pattern. Instead of | |
1041 enclosing it in / any non-ID character (see | |
1042 |'isident'|) can be used, so long as it does not | |
1043 appear in {pattern}. | |
1044 'ignorecase' applies. To overrule it put |/\c| in the | |
1045 pattern to ignore case or |/\C| to match case. | |
1046 'smartcase' is not used. | |
4197 | 1047 If {pattern} is empty (e.g. // is specified), the last |
1048 used search pattern is used. |last-pattern| | |
23931 | 1049 |
24569 | 1050 Flags: |
1051 'g' Without the 'g' flag each line is added only | |
1052 once. With 'g' every match is added. | |
1053 | |
1054 'j' Without the 'j' flag Vim jumps to the first | |
1055 match. With 'j' only the quickfix list is | |
1056 updated. With the [!] any changes in the current | |
1057 buffer are abandoned. | |
1058 | |
1059 'f' When the 'f' flag is specified, fuzzy string | |
1060 matching is used to find matching lines. In this | |
1061 case, {pattern} is treated as a literal string | |
1062 instead of a regular expression. See | |
28010 | 1063 |fuzzy-matching| for more information about fuzzy |
24636 | 1064 matching strings. |
24569 | 1065 |
23931 | 1066 |QuickFixCmdPre| and |QuickFixCmdPost| are triggered. |
1067 A file that is opened for matching may use a buffer | |
1068 number, but it is reused if possible to avoid | |
1069 consuming buffer numbers. | |
1070 | |
14999 | 1071 :{count}vim[grep] ... |
716 | 1072 When a number is put before the command this is used |
1073 as the maximum number of matches to find. Use | |
1074 ":1vimgrep pattern file" to find only the first. | |
1075 Useful if you only want to check if there is a match | |
1076 and quit quickly when it's found. | |
1077 | |
123 | 1078 Every second or so the searched file name is displayed |
1079 to give you an idea of the progress made. | |
43 | 1080 Examples: > |
1081 :vimgrep /an error/ *.c | |
1082 :vimgrep /\<FileName\>/ *.h include/* | |
445 | 1083 :vimgrep /myfunc/ **/*.c |
1084 < For the use of "**" see |starstar-wildcard|. | |
41 | 1085 |
43 | 1086 :vim[grep][!] {pattern} {file} ... |
1087 Like above, but instead of enclosing the pattern in a | |
1088 non-ID character use a white-separated pattern. The | |
1089 pattern must start with an ID character. | |
1090 Example: > | |
1091 :vimgrep Error *.c | |
1092 < | |
658 | 1093 *:lv* *:lvimgrep* |
24547
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
23931
diff
changeset
|
1094 :lv[imgrep][!] /{pattern}/[g][j][f] {file} ... |
658 | 1095 :lv[imgrep][!] {pattern} {file} ... |
1096 Same as ":vimgrep", except the location list for the | |
1097 current window is used instead of the quickfix list. | |
1098 | |
41 | 1099 *:vimgrepa* *:vimgrepadd* |
24547
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
23931
diff
changeset
|
1100 :vimgrepa[dd][!] /{pattern}/[g][j][f] {file} ... |
170 | 1101 :vimgrepa[dd][!] {pattern} {file} ... |
41 | 1102 Just like ":vimgrep", but instead of making a new list |
1103 of errors the matches are appended to the current | |
1104 list. | |
1105 | |
658 | 1106 *:lvimgrepa* *:lvimgrepadd* |
24547
192058cad081
patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents:
23931
diff
changeset
|
1107 :lvimgrepa[dd][!] /{pattern}/[g][j][f] {file} ... |
658 | 1108 :lvimgrepa[dd][!] {pattern} {file} ... |
1109 Same as ":vimgrepadd", except the location list for | |
1110 the current window is used instead of the quickfix | |
1111 list. | |
41 | 1112 |
1113 5.2 External grep | |
7 | 1114 |
1115 Vim can interface with "grep" and grep-like programs (such as the GNU | |
1116 id-utils) in a similar way to its compiler integration (see |:make| above). | |
1117 | |
1118 [Unix trivia: The name for the Unix "grep" command comes from ":g/re/p", where | |
1119 "re" stands for Regular Expression.] | |
1120 | |
1121 *:gr* *:grep* | |
1122 :gr[ep][!] [arguments] Just like ":make", but use 'grepprg' instead of | |
1123 'makeprg' and 'grepformat' instead of 'errorformat'. | |
41 | 1124 When 'grepprg' is "internal" this works like |
1125 |:vimgrep|. Note that the pattern needs to be | |
1126 enclosed in separator characters then. | |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
1127 If the encoding of the program output differs from the |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
1128 'encoding' option, you can use the 'makeencoding' |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
1129 option to specify the encoding. |
658 | 1130 |
1131 *:lgr* *:lgrep* | |
1132 :lgr[ep][!] [arguments] Same as ":grep", except the location list for the | |
1133 current window is used instead of the quickfix list. | |
1134 | |
7 | 1135 *:grepa* *:grepadd* |
1136 :grepa[dd][!] [arguments] | |
1137 Just like ":grep", but instead of making a new list of | |
1138 errors the matches are appended to the current list. | |
1139 Example: > | |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
1140 :call setqflist([]) |
7 | 1141 :bufdo grepadd! something % |
1142 < The first command makes a new error list which is | |
1143 empty. The second command executes "grepadd" for each | |
1144 listed buffer. Note the use of ! to avoid that | |
1145 ":grepadd" jumps to the first error, which is not | |
1146 allowed with |:bufdo|. | |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
1147 An example that uses the argument list and avoids |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
1148 errors for files without matches: > |
19163 | 1149 :silent argdo try |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
1150 \ | grepadd! something % |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
1151 \ | catch /E480:/ |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
1152 \ | endtry" |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
1153 < |
11063
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
1154 If the encoding of the program output differs from the |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
1155 'encoding' option, you can use the 'makeencoding' |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
1156 option to specify the encoding. |
e71d3bdf3bc3
patch 8.0.0420: text garbled when the system encoding differs from 'encoding'
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
1157 |
658 | 1158 *:lgrepa* *:lgrepadd* |
1159 :lgrepa[dd][!] [arguments] | |
1160 Same as ":grepadd", except the location list for the | |
1161 current window is used instead of the quickfix list. | |
1162 | |
41 | 1163 5.3 Setting up external grep |
7 | 1164 |
1165 If you have a standard "grep" program installed, the :grep command may work | |
237 | 1166 well with the defaults. The syntax is very similar to the standard command: > |
7 | 1167 |
1168 :grep foo *.c | |
1169 | |
237 | 1170 Will search all files with the .c extension for the substring "foo". The |
7 | 1171 arguments to :grep are passed straight to the "grep" program, so you can use |
1172 whatever options your "grep" supports. | |
1173 | |
1174 By default, :grep invokes grep with the -n option (show file and line | |
237 | 1175 numbers). You can change this with the 'grepprg' option. You will need to set |
7 | 1176 'grepprg' if: |
1177 | |
1178 a) You are using a program that isn't called "grep" | |
1179 b) You have to call grep with a full path | |
1180 c) You want to pass other options automatically (e.g. case insensitive | |
1181 search.) | |
1182 | |
1183 Once "grep" has executed, Vim parses the results using the 'grepformat' | |
1184 option. This option works in the same way as the 'errorformat' option - see | |
1185 that for details. You may need to change 'grepformat' from the default if | |
1186 your grep outputs in a non-standard format, or you are using some other | |
1187 program with a special format. | |
1188 | |
1189 Once the results are parsed, Vim loads the first file containing a match and | |
1190 jumps to the appropriate line, in the same way that it jumps to a compiler | |
1191 error in |quickfix| mode. You can then use the |:cnext|, |:clist|, etc. | |
1192 commands to see the other matches. | |
1193 | |
1194 | |
41 | 1195 5.4 Using :grep with id-utils |
7 | 1196 |
1197 You can set up :grep to work with the GNU id-utils like this: > | |
1198 | |
1199 :set grepprg=lid\ -Rgrep\ -s | |
1200 :set grepformat=%f:%l:%m | |
1201 | |
1202 then > | |
1203 :grep (regexp) | |
1204 | |
1205 works just as you'd expect. | |
1206 (provided you remembered to mkid first :) | |
1207 | |
1208 | |
41 | 1209 5.5 Browsing source code with :vimgrep or :grep |
7 | 1210 |
1211 Using the stack of error lists that Vim keeps, you can browse your files to | |
1212 look for functions and the functions they call. For example, suppose that you | |
1213 have to add an argument to the read_file() function. You enter this command: > | |
1214 | |
41 | 1215 :vimgrep /\<read_file\>/ *.c |
7 | 1216 |
1217 You use ":cn" to go along the list of matches and add the argument. At one | |
1218 place you have to get the new argument from a higher level function msg(), and | |
1219 need to change that one too. Thus you use: > | |
1220 | |
41 | 1221 :vimgrep /\<msg\>/ *.c |
7 | 1222 |
1223 While changing the msg() functions, you find another function that needs to | |
41 | 1224 get the argument from a higher level. You can again use ":vimgrep" to find |
1225 these functions. Once you are finished with one function, you can use > | |
7 | 1226 |
1227 :colder | |
1228 | |
1229 to go back to the previous one. | |
1230 | |
41 | 1231 This works like browsing a tree: ":vimgrep" goes one level deeper, creating a |
7 | 1232 list of branches. ":colder" goes back to the previous level. You can mix |
41 | 1233 this use of ":vimgrep" and "colder" to browse all the locations in a tree-like |
7 | 1234 way. If you do this consistently, you will find all locations without the |
1235 need to write down a "todo" list. | |
1236 | |
1237 ============================================================================= | |
1238 6. Selecting a compiler *compiler-select* | |
1239 | |
1240 *:comp* *:compiler* *E666* | |
1241 :comp[iler][!] {name} Set options to work with compiler {name}. | |
1242 Without the "!" options are set for the | |
1243 current buffer. With "!" global options are | |
1244 set. | |
1245 If you use ":compiler foo" in "file.foo" and | |
1246 then ":compiler! bar" in another buffer, Vim | |
1247 will keep on using "foo" in "file.foo". | |
1248 {not available when compiled without the | |
1249 |+eval| feature} | |
1250 | |
1251 | |
1252 The Vim plugins in the "compiler" directory will set options to use the | |
10348
c78513465e6e
commit https://github.com/vim/vim/commit/25de4c232d580583feadae11ab34e3cc6333c350
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
1253 selected compiler. For `:compiler` local options are set, for `:compiler!` |
7 | 1254 global options. |
1255 *current_compiler* | |
1256 To support older Vim versions, the plugins always use "current_compiler" and | |
1257 not "b:current_compiler". What the command actually does is the following: | |
1258 | |
1259 - Delete the "current_compiler" and "b:current_compiler" variables. | |
1260 - Define the "CompilerSet" user command. With "!" it does ":set", without "!" | |
1261 it does ":setlocal". | |
1262 - Execute ":runtime! compiler/{name}.vim". The plugins are expected to set | |
1263 options with "CompilerSet" and set the "current_compiler" variable to the | |
1264 name of the compiler. | |
170 | 1265 - Delete the "CompilerSet" user command. |
7 | 1266 - Set "b:current_compiler" to the value of "current_compiler". |
1267 - Without "!" the old value of "current_compiler" is restored. | |
1268 | |
1269 | |
1270 For writing a compiler plugin, see |write-compiler-plugin|. | |
1271 | |
1272 | |
1228 | 1273 GCC *quickfix-gcc* *compiler-gcc* |
1274 | |
1275 There's one variable you can set for the GCC compiler: | |
1276 | |
1277 g:compiler_gcc_ignore_unmatched_lines | |
1278 Ignore lines that don't match any patterns | |
1279 defined for GCC. Useful if output from | |
1280 commands run from make are generating false | |
1281 positives. | |
1282 | |
1283 | |
7 | 1284 MANX AZTEC C *quickfix-manx* *compiler-manx* |
1285 | |
1286 To use Vim with Manx's Aztec C compiler on the Amiga you should do the | |
1287 following: | |
1288 - Set the CCEDIT environment variable with the command: > | |
1289 mset "CCEDIT=vim -q" | |
1290 - Compile with the -qf option. If the compiler finds any errors, Vim is | |
1291 started and the cursor is positioned on the first error. The error message | |
1292 will be displayed on the last line. You can go to other errors with the | |
1293 commands mentioned above. You can fix the errors and write the file(s). | |
1294 - If you exit Vim normally the compiler will re-compile the same file. If you | |
1295 exit with the :cq command, the compiler will terminate. Do this if you | |
1296 cannot fix the error, or if another file needs to be compiled first. | |
1297 | |
1298 There are some restrictions to the Quickfix mode on the Amiga. The | |
1299 compiler only writes the first 25 errors to the errorfile (Manx's | |
1300 documentation does not say how to get more). If you want to find the others, | |
1301 you will have to fix a few errors and exit the editor. After recompiling, | |
1302 up to 25 remaining errors will be found. | |
1303 | |
1304 If Vim was started from the compiler, the :sh and some :! commands will not | |
1305 work, because Vim is then running in the same process as the compiler and | |
1306 stdin (standard input) will not be interactive. | |
1307 | |
1308 | |
1624 | 1309 PERL *quickfix-perl* *compiler-perl* |
1310 | |
1311 The Perl compiler plugin doesn't actually compile, but invokes Perl's internal | |
1312 syntax checking feature and parses the output for possible errors so you can | |
1313 correct them in quick-fix mode. | |
1314 | |
1315 Warnings are forced regardless of "no warnings" or "$^W = 0" within the file | |
1316 being checked. To disable this set g:perl_compiler_force_warnings to a zero | |
1317 value. For example: > | |
1318 let g:perl_compiler_force_warnings = 0 | |
1319 | |
1320 | |
7 | 1321 PYUNIT COMPILER *compiler-pyunit* |
1322 | |
1323 This is not actually a compiler, but a unit testing framework for the | |
237 | 1324 Python language. It is included into standard Python distribution |
1325 starting from version 2.0. For older versions, you can get it from | |
7 | 1326 http://pyunit.sourceforge.net. |
1327 | |
1328 When you run your tests with the help of the framework, possible errors | |
1329 are parsed by Vim and presented for you in quick-fix mode. | |
1330 | |
1331 Unfortunately, there is no standard way to run the tests. | |
1332 The alltests.py script seems to be used quite often, that's all. | |
1333 Useful values for the 'makeprg' options therefore are: | |
1334 setlocal makeprg=./alltests.py " Run a testsuite | |
5690 | 1335 setlocal makeprg=python\ %:S " Run a single testcase |
7 | 1336 |
1337 Also see http://vim.sourceforge.net/tip_view.php?tip_id=280. | |
1338 | |
1339 | |
1340 TEX COMPILER *compiler-tex* | |
1341 | |
1342 Included in the distribution compiler for TeX ($VIMRUNTIME/compiler/tex.vim) | |
237 | 1343 uses make command if possible. If the compiler finds a file named "Makefile" |
7 | 1344 or "makefile" in the current directory, it supposes that you want to process |
237 | 1345 your *TeX files with make, and the makefile does the right work. In this case |
1346 compiler sets 'errorformat' for *TeX output and leaves 'makeprg' untouched. If | |
7 | 1347 neither "Makefile" nor "makefile" is found, the compiler will not use make. |
1348 You can force the compiler to ignore makefiles by defining | |
1349 b:tex_ignore_makefile or g:tex_ignore_makefile variable (they are checked for | |
1350 existence only). | |
1351 | |
19163 | 1352 If the compiler chose not to use make, it needs to choose a right program for |
237 | 1353 processing your input. If b:tex_flavor or g:tex_flavor (in this precedence) |
7 | 1354 variable exists, it defines TeX flavor for :make (actually, this is the name |
1355 of executed command), and if both variables do not exist, it defaults to | |
237 | 1356 "latex". For example, while editing chapter2.tex \input-ed from mypaper.tex |
7 | 1357 written in AMS-TeX: > |
1358 | |
1359 :let b:tex_flavor = 'amstex' | |
1360 :compiler tex | |
1361 < [editing...] > | |
1362 :make mypaper | |
1363 | |
1364 Note that you must specify a name of the file to process as an argument (to | |
1365 process the right file when editing \input-ed or \include-ed file; portable | |
237 | 1366 solution for substituting % for no arguments is welcome). This is not in the |
7 | 1367 semantics of make, where you specify a target, not source, but you may specify |
1368 filename without extension ".tex" and mean this as "make filename.dvi or | |
1369 filename.pdf or filename.some_result_extension according to compiler". | |
1370 | |
1371 Note: tex command line syntax is set to usable both for MikTeX (suggestion | |
237 | 1372 by Srinath Avadhanula) and teTeX (checked by Artem Chuprina). Suggestion |
7 | 1373 from |errorformat-LaTeX| is too complex to keep it working for different |
1374 shells and OSes and also does not allow to use other available TeX options, | |
237 | 1375 if any. If your TeX doesn't support "-interaction=nonstopmode", please |
7 | 1376 report it with different means to express \nonstopmode from the command line. |
1377 | |
1378 ============================================================================= | |
1379 7. The error format *error-file-format* | |
1380 | |
1381 *errorformat* *E372* *E373* *E374* | |
1382 *E375* *E376* *E377* *E378* | |
1383 The 'errorformat' option specifies a list of formats that are recognized. The | |
1384 first format that matches with an error message is used. You can add several | |
1385 formats for different messages your compiler produces, or even entries for | |
1386 multiple compilers. See |efm-entries|. | |
1387 | |
1388 Each entry in 'errorformat' is a scanf-like string that describes the format. | |
1389 First, you need to know how scanf works. Look in the documentation of your | |
1390 C compiler. Below you find the % items that Vim understands. Others are | |
1391 invalid. | |
1392 | |
1393 Special characters in 'errorformat' are comma and backslash. See | |
1394 |efm-entries| for how to deal with them. Note that a literal "%" is matched | |
1395 by "%%", thus it is not escaped with a backslash. | |
5277 | 1396 Keep in mind that in the `:make` and `:grep` output all NUL characters are |
1397 replaced with SOH (0x01). | |
7 | 1398 |
1399 Note: By default the difference between upper and lowercase is ignored. If | |
1400 you want to match case, add "\C" to the pattern |/\C|. | |
1401 | |
17667 | 1402 Vim will read lines of any length, but only the first 4095 bytes are used, the |
1403 rest is ignored. Items can only be 1023 bytes long. | |
1404 | |
7 | 1405 |
1406 Basic items | |
1407 | |
1408 %f file name (finds a string) | |
13821
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13818
diff
changeset
|
1409 %o module name (finds a string) |
7 | 1410 %l line number (finds a number) |
27605
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27036
diff
changeset
|
1411 %e end line number (finds a number) |
7 | 1412 %c column number (finds a number representing character |
24751 | 1413 column of the error, byte index, a <tab> is 1 |
1414 character column) | |
7 | 1415 %v virtual column number (finds a number representing |
1416 screen column of the error (1 <tab> == 8 screen | |
237 | 1417 columns)) |
27605
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27036
diff
changeset
|
1418 %k end column number (finds a number representing |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27036
diff
changeset
|
1419 the character column of the error, byte index, or a |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27036
diff
changeset
|
1420 number representing screen end column of the error if |
bf540a32439a
patch 8.2.4329: no support for end line number and column in 'errorformat'
Bram Moolenaar <Bram@vim.org>
parents:
27036
diff
changeset
|
1421 it's used with %v) |
20729
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1422 %t error type (finds a single character): |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1423 e - error message |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1424 w - warning message |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1425 i - info message |
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1426 n - note message |
7 | 1427 %n error number (finds a number) |
1428 %m error message (finds a string) | |
1429 %r matches the "rest" of a single-line file message %O/P/Q | |
3557 | 1430 %p pointer line (finds a sequence of '-', '.', ' ' or |
1431 tabs and uses the length for the column number) | |
7 | 1432 %*{conv} any scanf non-assignable conversion |
1433 %% the single '%' character | |
231 | 1434 %s search text (finds a string) |
7 | 1435 |
502 | 1436 The "%f" conversion may depend on the current 'isfname' setting. "~/" is |
279 | 1437 expanded to the home directory and environment variables are expanded. |
7 | 1438 |
502 | 1439 The "%f" and "%m" conversions have to detect the end of the string. This |
534 | 1440 normally happens by matching following characters and items. When nothing is |
502 | 1441 following the rest of the line is matched. If "%f" is followed by a '%' or a |
1442 backslash, it will look for a sequence of 'isfname' characters. | |
7 | 1443 |
18912
ccd16426a1f9
patch 8.2.0017: OS/2 and MS-DOS are still mentioned
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
1444 On MS-Windows a leading "C:" will be included in "%f", even when using "%f:". |
ccd16426a1f9
patch 8.2.0017: OS/2 and MS-DOS are still mentioned
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
1445 This means that a file name which is a single alphabetical letter will not be |
ccd16426a1f9
patch 8.2.0017: OS/2 and MS-DOS are still mentioned
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
1446 detected. |
7 | 1447 |
1448 The "%p" conversion is normally followed by a "^". It's used for compilers | |
1449 that output a line like: > | |
1450 ^ | |
1451 or > | |
1452 ---------^ | |
1453 to indicate the column of the error. This is to be used in a multi-line error | |
1454 message. See |errorformat-javac| for a useful example. | |
1455 | |
13857 | 1456 The "%s" conversion specifies the text to search for, to locate the error line. |
231 | 1457 The text is used as a literal string. The anchors "^" and "$" are added to |
1458 the text to locate the error line exactly matching the search text and the | |
1459 text is prefixed with the "\V" atom to make it "very nomagic". The "%s" | |
1460 conversion can be used to locate lines without a line number in the error | |
1461 output. Like the output of the "grep" shell command. | |
1462 When the pattern is present the line number will not be used. | |
7 | 1463 |
13821
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13818
diff
changeset
|
1464 The "%o" conversion specifies the module name in quickfix entry. If present |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13818
diff
changeset
|
1465 it will be used in quickfix error window instead of the filename. The module |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13818
diff
changeset
|
1466 name is used only for displaying purposes, the file name is used when jumping |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13818
diff
changeset
|
1467 to the file. |
98274127d675
patch 8.0.1782: no simple way to label quickfix entries
Christian Brabandt <cb@256bit.org>
parents:
13818
diff
changeset
|
1468 |
7 | 1469 Changing directory |
1470 | |
1471 The following uppercase conversion characters specify the type of special | |
14307
df27d6270691
patch 8.1.0169: calling message_filtered() a bit too often
Christian Brabandt <cb@256bit.org>
parents:
13963
diff
changeset
|
1472 format strings. At most one of them may be given as a prefix at the beginning |
7 | 1473 of a single comma-separated format pattern. |
1474 Some compilers produce messages that consist of directory names that have to | |
237 | 1475 be prepended to each file name read by %f (example: GNU make). The following |
7 | 1476 codes can be used to scan these directory names; they will be stored in an |
1477 internal directory stack. *E379* | |
1478 %D "enter directory" format string; expects a following | |
1479 %f that finds the directory name | |
1480 %X "leave directory" format string; expects following %f | |
1481 | |
1482 When defining an "enter directory" or "leave directory" format, the "%D" or | |
237 | 1483 "%X" has to be given at the start of that substring. Vim tracks the directory |
7 | 1484 changes and prepends the current directory to each erroneous file found with a |
1485 relative path. See |quickfix-directory-stack| for details, tips and | |
1486 limitations. | |
1487 | |
1488 | |
1489 Multi-line messages *errorformat-multi-line* | |
1490 | |
1491 It is possible to read the output of programs that produce multi-line | |
237 | 1492 messages, i.e. error strings that consume more than one line. Possible |
7 | 1493 prefixes are: |
1494 %E start of a multi-line error message | |
1495 %W start of a multi-line warning message | |
1496 %I start of a multi-line informational message | |
20729
ada6f26e6eb1
patch 8.2.0917: quickfix entries do not suport a "note" type
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
1497 %N start of a multi-line note message |
7 | 1498 %A start of a multi-line message (unspecified type) |
791 | 1499 %> for next line start with current pattern again |efm-%>| |
7 | 1500 %C continuation of a multi-line message |
1501 %Z end of a multi-line message | |
1502 These can be used with '+' and '-', see |efm-ignore| below. | |
1503 | |
787 | 1504 Using "\n" in the pattern won't work to match multi-line messages. |
1505 | |
7 | 1506 Example: Your compiler happens to write out errors in the following format |
1507 (leading line numbers not being part of the actual output): | |
1508 | |
787 | 1509 1 Error 275 ~ |
1510 2 line 42 ~ | |
1511 3 column 3 ~ | |
1512 4 ' ' expected after '--' ~ | |
7 | 1513 |
1514 The appropriate error format string has to look like this: > | |
1515 :set efm=%EError\ %n,%Cline\ %l,%Ccolumn\ %c,%Z%m | |
1516 | |
1517 And the |:clist| error message generated for this error is: | |
1518 | |
1519 1:42 col 3 error 275: ' ' expected after '--' | |
1520 | |
1521 Another example: Think of a Python interpreter that produces the following | |
1522 error message (line numbers are not part of the actual output): | |
1523 | |
1524 1 ============================================================== | |
1525 2 FAIL: testGetTypeIdCachesResult (dbfacadeTest.DjsDBFacadeTest) | |
1526 3 -------------------------------------------------------------- | |
1527 4 Traceback (most recent call last): | |
1528 5 File "unittests/dbfacadeTest.py", line 89, in testFoo | |
1529 6 self.assertEquals(34, dtid) | |
1530 7 File "/usr/lib/python2.2/unittest.py", line 286, in | |
1531 8 failUnlessEqual | |
1532 9 raise self.failureException, \ | |
1533 10 AssertionError: 34 != 33 | |
1534 11 | |
1535 12 -------------------------------------------------------------- | |
1536 13 Ran 27 tests in 0.063s | |
1537 | |
1538 Say you want |:clist| write the relevant information of this message only, | |
1539 namely: | |
1540 5 unittests/dbfacadeTest.py:89: AssertionError: 34 != 33 | |
1541 | |
1542 Then the error format string could be defined as follows: > | |
1543 :set efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%m | |
1544 | |
1545 Note that the %C string is given before the %A here: since the expression | |
1546 ' %.%#' (which stands for the regular expression ' .*') matches every line | |
1547 starting with a space, followed by any characters to the end of the line, | |
1548 it also hides line 7 which would trigger a separate error message otherwise. | |
1549 Error format strings are always parsed pattern by pattern until the first | |
1550 match occurs. | |
791 | 1551 *efm-%>* |
1552 The %> item can be used to avoid trying patterns that appear earlier in | |
1553 'errorformat'. This is useful for patterns that match just about anything. | |
1554 For example, if the error looks like this: | |
1555 | |
1556 Error in line 123 of foo.c: ~ | |
1557 unknown variable "i" ~ | |
1558 | |
1559 This can be found with: > | |
1560 :set efm=xxx,%E%>Error in line %l of %f:,%Z%m | |
1561 Where "xxx" has a pattern that would also match the second line. | |
7 | 1562 |
787 | 1563 Important: There is no memory of what part of the errorformat matched before; |
1564 every line in the error file gets a complete new run through the error format | |
1565 lines. For example, if one has: > | |
1566 setlocal efm=aa,bb,cc,dd,ee | |
1567 Where aa, bb, etc. are error format strings. Each line of the error file will | |
1568 be matched to the pattern aa, then bb, then cc, etc. Just because cc matched | |
1569 the previous error line does _not_ mean that dd will be tried first on the | |
1570 current line, even if cc and dd are multi-line errorformat strings. | |
1571 | |
1572 | |
7 | 1573 |
1574 Separate file name *errorformat-separate-filename* | |
1575 | |
1576 These prefixes are useful if the file name is given once and multiple messages | |
1577 follow that refer to this file name. | |
1578 %O single-line file message: overread the matched part | |
1579 %P single-line file message: push file %f onto the stack | |
1580 %Q single-line file message: pop the last file from stack | |
1581 | |
1582 Example: Given a compiler that produces the following error logfile (without | |
1583 leading line numbers): | |
1584 | |
1585 1 [a1.tt] | |
1586 2 (1,17) error: ';' missing | |
1587 3 (21,2) warning: variable 'z' not defined | |
1588 4 (67,3) error: end of file found before string ended | |
1589 5 | |
1590 6 [a2.tt] | |
1591 7 | |
1592 8 [a3.tt] | |
1593 9 NEW compiler v1.1 | |
1594 10 (2,2) warning: variable 'x' not defined | |
1595 11 (67,3) warning: 's' already defined | |
1596 | |
1597 This logfile lists several messages for each file enclosed in [...] which are | |
1598 properly parsed by an error format like this: > | |
1599 :set efm=%+P[%f],(%l\\,%c)%*[\ ]%t%*[^:]:\ %m,%-Q | |
1600 | |
1601 A call of |:clist| writes them accordingly with their correct filenames: | |
1602 | |
1603 2 a1.tt:1 col 17 error: ';' missing | |
1604 3 a1.tt:21 col 2 warning: variable 'z' not defined | |
1605 4 a1.tt:67 col 3 error: end of file found before string ended | |
1606 8 a3.tt:2 col 2 warning: variable 'x' not defined | |
1607 9 a3.tt:67 col 3 warning: 's' already defined | |
1608 | |
1609 Unlike the other prefixes that all match against whole lines, %P, %Q and %O | |
237 | 1610 can be used to match several patterns in the same line. Thus it is possible |
7 | 1611 to parse even nested files like in the following line: |
1612 {"file1" {"file2" error1} error2 {"file3" error3 {"file4" error4 error5}}} | |
1613 The %O then parses over strings that do not contain any push/pop file name | |
1614 information. See |errorformat-LaTeX| for an extended example. | |
1615 | |
1616 | |
1617 Ignoring and using whole messages *efm-ignore* | |
1618 | |
1619 The codes '+' or '-' can be combined with the uppercase codes above; in that | |
237 | 1620 case they have to precede the letter, e.g. '%+A' or '%-G': |
7 | 1621 %- do not include the matching multi-line in any output |
1622 %+ include the whole matching line in the %m error string | |
1623 | |
237 | 1624 One prefix is only useful in combination with '+' or '-', namely %G. It parses |
7 | 1625 over lines containing general information like compiler version strings or |
1626 other headers that can be skipped. | |
1627 %-G ignore this message | |
1628 %+G general message | |
1629 | |
1630 | |
1631 Pattern matching | |
1632 | |
1633 The scanf()-like "%*[]" notation is supported for backward-compatibility | |
1634 with previous versions of Vim. However, it is also possible to specify | |
1635 (nearly) any Vim supported regular expression in format strings. | |
1636 Since meta characters of the regular expression language can be part of | |
1637 ordinary matching strings or file names (and therefore internally have to | |
1638 be escaped), meta symbols have to be written with leading '%': | |
787 | 1639 %\ The single '\' character. Note that this has to be |
7 | 1640 escaped ("%\\") in ":set errorformat=" definitions. |
787 | 1641 %. The single '.' character. |
1642 %# The single '*'(!) character. | |
1643 %^ The single '^' character. Note that this is not | |
1644 useful, the pattern already matches start of line. | |
1645 %$ The single '$' character. Note that this is not | |
1646 useful, the pattern already matches end of line. | |
1647 %[ The single '[' character for a [] character range. | |
1648 %~ The single '~' character. | |
7 | 1649 When using character classes in expressions (see |/\i| for an overview), |
1650 terms containing the "\+" quantifier can be written in the scanf() "%*" | |
237 | 1651 notation. Example: "%\\d%\\+" ("\d\+", "any number") is equivalent to "%*\\d". |
7 | 1652 Important note: The \(...\) grouping of sub-matches can not be used in format |
1653 specifications because it is reserved for internal conversions. | |
1654 | |
1655 | |
1656 Multiple entries in 'errorformat' *efm-entries* | |
1657 | |
1658 To be able to detect output from several compilers, several format patterns | |
1659 may be put in 'errorformat', separated by commas (note: blanks after the comma | |
1660 are ignored). The first pattern that has a complete match is used. If no | |
1661 match is found, matching parts from the last one will be used, although the | |
1662 file name is removed and the error message is set to the whole message. If | |
1663 there is a pattern that may match output from several compilers (but not in a | |
1664 right way), put it after one that is more restrictive. | |
1665 | |
1666 To include a comma in a pattern precede it with a backslash (you have to type | |
1667 two in a ":set" command). To include a backslash itself give two backslashes | |
1668 (you have to type four in a ":set" command). You also need to put a backslash | |
1669 before a space for ":set". | |
1670 | |
1671 | |
1672 Valid matches *quickfix-valid* | |
1673 | |
1674 If a line does not completely match one of the entries in 'errorformat', the | |
1675 whole line is put in the error message and the entry is marked "not valid" | |
1676 These lines are skipped with the ":cn" and ":cp" commands (unless there is | |
1677 no valid line at all). You can use ":cl!" to display all the error messages. | |
1678 | |
1679 If the error format does not contain a file name Vim cannot switch to the | |
1680 correct file. You will have to do this by hand. | |
1681 | |
1682 | |
1683 Examples | |
1684 | |
1685 The format of the file from the Amiga Aztec compiler is: | |
1686 | |
1687 filename>linenumber:columnnumber:errortype:errornumber:errormessage | |
1688 | |
1689 filename name of the file in which the error was detected | |
1690 linenumber line number where the error was detected | |
1691 columnnumber column number where the error was detected | |
1692 errortype type of the error, normally a single 'E' or 'W' | |
1693 errornumber number of the error (for lookup in the manual) | |
1694 errormessage description of the error | |
1695 | |
1696 This can be matched with this 'errorformat' entry: | |
1697 %f>%l:%c:%t:%n:%m | |
1698 | |
1699 Some examples for C compilers that produce single-line error outputs: | |
1700 %f:%l:\ %t%*[^0123456789]%n:\ %m for Manx/Aztec C error messages | |
1701 (scanf() doesn't understand [0-9]) | |
1702 %f\ %l\ %t%*[^0-9]%n:\ %m for SAS C | |
1703 \"%f\"\\,%*[^0-9]%l:\ %m for generic C compilers | |
1704 %f:%l:\ %m for GCC | |
1705 %f:%l:\ %m,%Dgmake[%*\\d]:\ Entering\ directory\ `%f', | |
1706 %Dgmake[%*\\d]:\ Leaving\ directory\ `%f' | |
1707 for GCC with gmake (concat the lines!) | |
1708 %f(%l)\ :\ %*[^:]:\ %m old SCO C compiler (pre-OS5) | |
1709 %f(%l)\ :\ %t%*[^0-9]%n:\ %m idem, with error type and number | |
1710 %f:%l:\ %m,In\ file\ included\ from\ %f:%l:,\^I\^Ifrom\ %f:%l%m | |
1711 for GCC, with some extras | |
1712 | |
1713 Extended examples for the handling of multi-line messages are given below, | |
1714 see |errorformat-Jikes| and |errorformat-LaTeX|. | |
1715 | |
1716 Note the backslash in front of a space and double quote. It is required for | |
1717 the :set command. There are two backslashes in front of a comma, one for the | |
1718 :set command and one to avoid recognizing the comma as a separator of error | |
1719 formats. | |
1720 | |
1721 | |
1722 Filtering messages | |
1723 | |
1724 If you have a compiler that produces error messages that do not fit in the | |
1725 format string, you could write a program that translates the error messages | |
1726 into this format. You can use this program with the ":make" command by | |
1727 changing the 'makeprg' option. For example: > | |
1728 :set mp=make\ \\\|&\ error_filter | |
1729 The backslashes before the pipe character are required to avoid it to be | |
1730 recognized as a command separator. The backslash before each space is | |
1731 required for the set command. | |
1732 | |
1733 ============================================================================= | |
1734 8. The directory stack *quickfix-directory-stack* | |
1735 | |
1736 Quickfix maintains a stack for saving all used directories parsed from the | |
237 | 1737 make output. For GNU-make this is rather simple, as it always prints the |
1738 absolute path of all directories it enters and leaves. Regardless if this is | |
7 | 1739 done via a 'cd' command in the makefile or with the parameter "-C dir" (change |
237 | 1740 to directory before reading the makefile). It may be useful to use the switch |
7 | 1741 "-w" to force GNU-make to print out the working directory before and after |
1742 processing. | |
1743 | |
1744 Maintaining the correct directory is more complicated if you don't use | |
237 | 1745 GNU-make. AIX-make for example doesn't print any information about its |
1746 working directory. Then you need to enhance the makefile. In the makefile of | |
1747 LessTif there is a command which echoes "Making {target} in {dir}". The | |
2072 | 1748 special problem here is that it doesn't print information on leaving the |
237 | 1749 directory and that it doesn't print the absolute path. |
7 | 1750 |
1751 To solve the problem with relative paths and missing "leave directory" | |
21825 | 1752 messages Vim uses the following algorithm: |
7 | 1753 |
1754 1) Check if the given directory is a subdirectory of the current directory. | |
1755 If this is true, store it as the current directory. | |
1756 2) If it is not a subdir of the current directory, try if this is a | |
1757 subdirectory of one of the upper directories. | |
1758 3) If the directory still isn't found, it is assumed to be a subdirectory | |
1759 of Vim's current directory. | |
1760 | |
1761 Additionally it is checked for every file, if it really exists in the | |
1762 identified directory. If not, it is searched in all other directories of the | |
237 | 1763 directory stack (NOT the directory subtree!). If it is still not found, it is |
7 | 1764 assumed that it is in Vim's current directory. |
1765 | |
2285
69064995302a
Change SKIP_GTK to SKIP_GTK2 in configure.
Bram Moolenaar <bram@vim.org>
parents:
2283
diff
changeset
|
1766 There are limitations in this algorithm. These examples assume that make just |
7 | 1767 prints information about entering a directory in the form "Making all in dir". |
1768 | |
1769 1) Assume you have following directories and files: | |
1770 ./dir1 | |
1771 ./dir1/file1.c | |
1772 ./file1.c | |
1773 | |
1774 If make processes the directory "./dir1" before the current directory and | |
1775 there is an error in the file "./file1.c", you will end up with the file | |
1776 "./dir1/file.c" loaded by Vim. | |
1777 | |
1778 This can only be solved with a "leave directory" message. | |
1779 | |
1780 2) Assume you have following directories and files: | |
1781 ./dir1 | |
1782 ./dir1/dir2 | |
1783 ./dir2 | |
1784 | |
1785 You get the following: | |
1786 | |
1787 Make output Directory interpreted by Vim | |
1788 ------------------------ ---------------------------- | |
1789 Making all in dir1 ./dir1 | |
1790 Making all in dir2 ./dir1/dir2 | |
1791 Making all in dir2 ./dir1/dir2 | |
1792 | |
1793 This can be solved by printing absolute directories in the "enter directory" | |
11062 | 1794 message or by printing "leave directory" messages. |
7 | 1795 |
2207
b17bbfa96fa0
Add the settabvar() and gettabvar() functions.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1796 To avoid this problem, ensure to print absolute directory names and "leave |
7 | 1797 directory" messages. |
1798 | |
1799 Examples for Makefiles: | |
1800 | |
1801 Unix: | |
1802 libs: | |
1803 for dn in $(LIBDIRS); do \ | |
1804 (cd $$dn; echo "Entering dir '$$(pwd)'"; make); \ | |
1805 echo "Leaving dir"; \ | |
1806 done | |
1807 | |
1808 Add | |
1809 %DEntering\ dir\ '%f',%XLeaving\ dir | |
1810 to your 'errorformat' to handle the above output. | |
1811 | |
1812 Note that Vim doesn't check if the directory name in a "leave directory" | |
237 | 1813 messages is the current directory. This is why you could just use the message |
7 | 1814 "Leaving dir". |
1815 | |
1816 ============================================================================= | |
1817 9. Specific error file formats *errorformats* | |
1818 | |
1819 *errorformat-Jikes* | |
1820 Jikes(TM), a source-to-bytecode Java compiler published by IBM Research, | |
1821 produces simple multi-line error messages. | |
1822 | |
1823 An 'errorformat' string matching the produced messages is shown below. | |
1824 The following lines can be placed in the user's |vimrc| to overwrite Vim's | |
1825 recognized default formats, or see |:set+=| how to install this format | |
1826 additionally to the default. > | |
1827 | |
1828 :set efm=%A%f:%l:%c:%*\\d:%*\\d:, | |
1829 \%C%*\\s%trror:%m, | |
1830 \%+C%*[^:]%trror:%m, | |
1831 \%C%*\\s%tarning:%m, | |
1832 \%C%m | |
1833 < | |
1834 Jikes(TM) produces a single-line error message when invoked with the option | |
1835 "+E", and can be matched with the following: > | |
1836 | |
1167 | 1837 :setl efm=%f:%l:%v:%*\\d:%*\\d:%*\\s%m |
7 | 1838 < |
1839 *errorformat-javac* | |
1840 This 'errorformat' has been reported to work well for javac, which outputs a | |
1841 line with "^" to indicate the column of the error: > | |
1167 | 1842 :setl efm=%A%f:%l:\ %m,%-Z%p^,%-C%.%# |
7 | 1843 or: > |
1167 | 1844 :setl efm=%A%f:%l:\ %m,%+Z%p^,%+C%.%#,%-G%.%# |
7 | 1845 < |
1167 | 1846 Here is an alternative from Michael F. Lamb for Unix that filters the errors |
1847 first: > | |
1848 :setl errorformat=%Z%f:%l:\ %m,%A%p^,%-G%*[^sl]%.%# | |
5690 | 1849 :setl makeprg=javac\ %:S\ 2>&1\ \\\|\ vim-javac-filter |
1167 | 1850 |
1851 You need to put the following in "vim-javac-filter" somewhere in your path | |
1852 (e.g., in ~/bin) and make it executable: > | |
1853 #!/bin/sed -f | |
1854 /\^$/s/\t/\ /g;/:[0-9]\+:/{h;d};/^[ \t]*\^/G; | |
1855 | |
1856 In English, that sed script: | |
1857 - Changes single tabs to single spaces and | |
1858 - Moves the line with the filename, line number, error message to just after | |
1859 the pointer line. That way, the unused error text between doesn't break | |
1860 vim's notion of a "multi-line message" and also doesn't force us to include | |
1861 it as a "continuation of a multi-line message." | |
1862 | |
7 | 1863 *errorformat-ant* |
1864 For ant (http://jakarta.apache.org/) the above errorformat has to be modified | |
1865 to honour the leading [javac] in front of each javac output line: > | |
1866 :set efm=%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%# | |
1867 | |
1868 The 'errorformat' can also be configured to handle ant together with either | |
1869 javac or jikes. If you're using jikes, you should tell ant to use jikes' +E | |
1870 command line switch which forces jikes to generate one-line error messages. | |
1871 This is what the second line (of a build.xml file) below does: > | |
1872 <property name = "build.compiler" value = "jikes"/> | |
1873 <property name = "build.compiler.emacs" value = "true"/> | |
1874 | |
1875 The 'errorformat' which handles ant with both javac and jikes is: > | |
1876 :set efm=\ %#[javac]\ %#%f:%l:%c:%*\\d:%*\\d:\ %t%[%^:]%#:%m, | |
1877 \%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%# | |
1878 < | |
1879 *errorformat-jade* | |
1880 parsing jade (see http://www.jclark.com/) errors is simple: > | |
1881 :set efm=jade:%f:%l:%c:%t:%m | |
1882 < | |
1883 *errorformat-LaTeX* | |
1884 The following is an example how an 'errorformat' string can be specified | |
1885 for the (La)TeX typesetting system which displays error messages over | |
1886 multiple lines. The output of ":clist" and ":cc" etc. commands displays | |
1887 multi-lines in a single line, leading white space is removed. | |
1888 It should be easy to adopt the above LaTeX errorformat to any compiler output | |
1889 consisting of multi-line errors. | |
1890 | |
1891 The commands can be placed in a |vimrc| file or some other Vim script file, | |
237 | 1892 e.g. a script containing LaTeX related stuff which is loaded only when editing |
7 | 1893 LaTeX sources. |
1894 Make sure to copy all lines of the example (in the given order), afterwards | |
1895 remove the comment lines. For the '\' notation at the start of some lines see | |
1896 |line-continuation|. | |
1897 | |
1898 First prepare 'makeprg' such that LaTeX will report multiple | |
1899 errors; do not stop when the first error has occurred: > | |
1900 :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*} | |
1901 < | |
1902 Start of multi-line error messages: > | |
1903 :set efm=%E!\ LaTeX\ %trror:\ %m, | |
1904 \%E!\ %m, | |
1905 < Start of multi-line warning messages; the first two also | |
237 | 1906 include the line number. Meaning of some regular expressions: |
7 | 1907 - "%.%#" (".*") matches a (possibly empty) string |
1908 - "%*\\d" ("\d\+") matches a number > | |
1909 \%+WLaTeX\ %.%#Warning:\ %.%#line\ %l%.%#, | |
1910 \%+W%.%#\ at\ lines\ %l--%*\\d, | |
1911 \%WLaTeX\ %.%#Warning:\ %m, | |
1912 < Possible continuations of error/warning messages; the first | |
1913 one also includes the line number: > | |
1914 \%Cl.%l\ %m, | |
1915 \%+C\ \ %m., | |
1916 \%+C%.%#-%.%#, | |
1917 \%+C%.%#[]%.%#, | |
1918 \%+C[]%.%#, | |
1919 \%+C%.%#%[{}\\]%.%#, | |
1920 \%+C<%.%#>%.%#, | |
1921 \%C\ \ %m, | |
1922 < Lines that match the following patterns do not contain any | |
1923 important information; do not include them in messages: > | |
1924 \%-GSee\ the\ LaTeX%m, | |
1925 \%-GType\ \ H\ <return>%m, | |
1926 \%-G\ ...%.%#, | |
1927 \%-G%.%#\ (C)\ %.%#, | |
1928 \%-G(see\ the\ transcript%.%#), | |
1929 < Generally exclude any empty or whitespace-only line from | |
1930 being displayed: > | |
1931 \%-G\\s%#, | |
1932 < The LaTeX output log does not specify the names of erroneous | |
1933 source files per line; rather they are given globally, | |
1934 enclosed in parentheses. | |
1935 The following patterns try to match these names and store | |
1936 them in an internal stack. The patterns possibly scan over | |
1937 the same input line (one after another), the trailing "%r" | |
1938 conversion indicates the "rest" of the line that will be | |
1939 parsed in the next go until the end of line is reached. | |
1940 | |
1941 Overread a file name enclosed in '('...')'; do not push it | |
1942 on a stack since the file apparently does not contain any | |
1943 error: > | |
1944 \%+O(%f)%r, | |
237 | 1945 < Push a file name onto the stack. The name is given after '(': > |
7 | 1946 \%+P(%f%r, |
1947 \%+P\ %\\=(%f%r, | |
1948 \%+P%*[^()](%f%r, | |
1949 \%+P[%\\d%[^()]%#(%f%r, | |
1950 < Pop the last stored file name when a ')' is scanned: > | |
1951 \%+Q)%r, | |
1952 \%+Q%*[^()])%r, | |
1953 \%+Q[%\\d%*[^()])%r | |
1954 | |
1955 Note that in some cases file names in the LaTeX output log cannot be parsed | |
1956 properly. The parser might have been messed up by unbalanced parentheses | |
1957 then. The above example tries to catch the most relevant cases only. | |
1958 You can customize the given setting to suit your own purposes, for example, | |
1959 all the annoying "Overfull ..." warnings could be excluded from being | |
1960 recognized as an error. | |
1961 Alternatively to filtering the LaTeX compiler output, it is also possible | |
1962 to directly read the *.log file that is produced by the [La]TeX compiler. | |
1963 This contains even more useful information about possible error causes. | |
1964 However, to properly parse such a complex file, an external filter should | |
1965 be used. See the description further above how to make such a filter known | |
1966 by Vim. | |
1967 | |
1968 *errorformat-Perl* | |
1969 In $VIMRUNTIME/tools you can find the efm_perl.pl script, which filters Perl | |
1970 error messages into a format that quickfix mode will understand. See the | |
1624 | 1971 start of the file about how to use it. (This script is deprecated, see |
1972 |compiler-perl|.) | |
7 | 1973 |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1974 ============================================================================= |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1975 10. Customizing the quickfix window *quickfix-window-function* |
7 | 1976 |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1977 The default format for the lines displayed in the quickfix window and location |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1978 list window is: |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1979 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1980 <filename>|<lnum> col <col>|<text> |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1981 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1982 The values displayed in each line correspond to the "bufnr", "lnum", "col" and |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1983 "text" fields returned by the |getqflist()| function. |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1984 |
21825 | 1985 For some quickfix/location lists, the displayed text needs to be customized. |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1986 For example, if only the filename is present for a quickfix entry, then the |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1987 two "|" field separator characters after the filename are not needed. Another |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1988 use case is to customize the path displayed for a filename. By default, the |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1989 complete path (which may be too long) is displayed for files which are not |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1990 under the current directory tree. The file path may need to be simplified to a |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1991 common parent directory. |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1992 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1993 The displayed text can be customized by setting the 'quickfixtextfunc' option |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
1994 to a Vim function. This function will be called with a dict argument and |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
1995 should return a List of strings to be displayed in the quickfix or location |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
1996 list window. The dict argument will have the following fields: |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1997 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1998 quickfix set to 1 when called for a quickfix list and 0 when called for |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
1999 a location list. |
20762
68170c89e355
patch 8.2.0933: 'quickfixtextfunc' does not get window ID of location list
Bram Moolenaar <Bram@vim.org>
parents:
20753
diff
changeset
|
2000 winid for a location list, set to the id of the window with the |
68170c89e355
patch 8.2.0933: 'quickfixtextfunc' does not get window ID of location list
Bram Moolenaar <Bram@vim.org>
parents:
20753
diff
changeset
|
2001 location list. For a quickfix list, set to 0. Can be used in |
68170c89e355
patch 8.2.0933: 'quickfixtextfunc' does not get window ID of location list
Bram Moolenaar <Bram@vim.org>
parents:
20753
diff
changeset
|
2002 getloclist() to get the location list entry. |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2003 id quickfix or location list identifier |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
2004 start_idx index of the first entry for which text should be returned |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
2005 end_idx index of the last entry for which text should be returned |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2006 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2007 The function should return a single line of text to display in the quickfix |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
2008 window for each entry from start_idx to end_idx. The function can obtain |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
2009 information about the entries using the |getqflist()| function and specifying |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
2010 the quickfix list identifier "id". For a location list, getloclist() function |
21409
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
2011 can be used with the 'winid' argument. If an empty list is returned, then the |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
2012 default format is used to display all the entries. If an item in the returned |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
2013 list is an empty string, then the default format is used to display the |
2c40e60017a8
patch 8.2.1255: cannot use a lambda with quickfix functions
Bram Moolenaar <Bram@vim.org>
parents:
20814
diff
changeset
|
2014 corresponding entry. |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2015 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2016 If a quickfix or location list specific customization is needed, then the |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2017 'quickfixtextfunc' attribute of the list can be set using the |setqflist()| or |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2018 |setloclist()| function. This overrides the global 'quickfixtextfunc' option. |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2019 |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2020 The example below displays the list of old files (|v:oldfiles|) in a quickfix |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2021 window. As there is no line, column number and error text information |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2022 associated with each entry, the 'quickfixtextfunc' function returns only the |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2023 filename. |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2024 Example: > |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2025 " create a quickfix list from v:oldfiles |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2026 call setqflist([], ' ', {'lines' : v:oldfiles, 'efm' : '%f', |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2027 \ 'quickfixtextfunc' : 'QfOldFiles'}) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2028 func QfOldFiles(info) |
20814
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
2029 " get information about a range of quickfix entries |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
2030 let items = getqflist({'id' : a:info.id, 'items' : 1}).items |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
2031 let l = [] |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
2032 for idx in range(a:info.start_idx - 1, a:info.end_idx - 1) |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
2033 " use the simplified file name |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
2034 call add(l, fnamemodify(bufname(items[idx].bufnr), ':p:.')) |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
2035 endfor |
f23c6543a54d
patch 8.2.0959: using 'quickfixtextfunc' is a bit slow
Bram Moolenaar <Bram@vim.org>
parents:
20762
diff
changeset
|
2036 return l |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2037 endfunc |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
19163
diff
changeset
|
2038 < |
7 | 2039 |
14421 | 2040 vim:tw=78:ts=8:noet:ft=help:norl: |