annotate runtime/doc/quickfix.txt @ 35162:860a5fb8eaf2 default tip

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