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