64-bitman | 88d41ab | 2025-04-06 17:20:39 +0200 | [diff] [blame] | 1 | *quickfix.txt* For Vim version 9.1. Last change: 2025 Apr 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| |
Bram Moolenaar | 858ba06 | 2020-05-31 23:11:59 +0200 | [diff] [blame] | 18 | 10. Customizing the quickfix window |quickfix-window-function| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 19 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 20 | The quickfix commands are not available when the |+quickfix| feature was |
| 21 | disabled at compile time. |
| 22 | |
| 23 | ============================================================================= |
| 24 | 1. Using QuickFix commands *quickfix* *Quickfix* *E42* |
| 25 | |
| 26 | Vim has a special mode to speedup the edit-compile-edit cycle. This is |
| 27 | inspired by the quickfix option of the Manx's Aztec C compiler on the Amiga. |
| 28 | The idea is to save the error messages from the compiler in a file and use Vim |
| 29 | to jump to the errors one by one. You can examine each problem and fix it, |
| 30 | without having to remember all the error messages. |
| 31 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 32 | In Vim the quickfix commands are used more generally to find a list of |
| 33 | positions in files. For example, |:vimgrep| finds pattern matches. You can |
Bram Moolenaar | 2641f77 | 2005-03-25 21:58:17 +0000 | [diff] [blame] | 34 | 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] | 35 | do a lot more than the edit/compile/fix cycle! |
| 36 | |
Bram Moolenaar | e18dbe8 | 2016-07-02 21:42:23 +0200 | [diff] [blame] | 37 | If you have the error messages in a file you can start Vim with: > |
| 38 | vim -q filename |
| 39 | |
| 40 | From inside Vim an easy way to run a command and handle the output is with the |
| 41 | |:make| command (see below). |
| 42 | |
| 43 | 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] | 44 | compiler (see |errorformat| below). |
| 45 | |
64-bitman | 88d41ab | 2025-04-06 17:20:39 +0200 | [diff] [blame] | 46 | *quickfix-stack* *quickfix-ID* |
Bram Moolenaar | b4d5fba | 2017-09-11 19:31:28 +0200 | [diff] [blame] | 47 | 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] | 48 | 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] | 49 | used to get the identifier assigned to a list. There is also a quickfix list |
64-bitman | 88d41ab | 2025-04-06 17:20:39 +0200 | [diff] [blame] | 50 | number which may change whenever more than 'chistory' lists are added to a |
| 51 | quickfix stack. |
Bram Moolenaar | b4d5fba | 2017-09-11 19:31:28 +0200 | [diff] [blame] | 52 | |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 53 | *location-list* *E776* |
Bram Moolenaar | 036986f | 2017-03-16 17:41:02 +0100 | [diff] [blame] | 54 | A location list is a window-local quickfix list. You get one after commands |
| 55 | like `:lvimgrep`, `:lgrep`, `:lhelpgrep`, `:lmake`, etc., which create a |
| 56 | location list instead of a quickfix list as the corresponding `:vimgrep`, |
| 57 | `:grep`, `:helpgrep`, `:make` do. |
Bram Moolenaar | 5b69c22 | 2019-01-11 14:50:06 +0100 | [diff] [blame] | 58 | *location-list-file-window* |
Bram Moolenaar | 036986f | 2017-03-16 17:41:02 +0100 | [diff] [blame] | 59 | A location list is associated with a window and each window can have a |
| 60 | separate location list. A location list can be associated with only one |
| 61 | window. The location list is independent of the quickfix list. |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 62 | |
Bram Moolenaar | 280f126 | 2006-01-30 00:14:18 +0000 | [diff] [blame] | 63 | 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] | 64 | location list. When there are no longer any references to a location list, |
| 65 | the location list is destroyed. |
Bram Moolenaar | 280f126 | 2006-01-30 00:14:18 +0000 | [diff] [blame] | 66 | |
Bram Moolenaar | b254af3 | 2017-12-18 19:48:58 +0100 | [diff] [blame] | 67 | *quickfix-changedtick* |
| 68 | Every quickfix and location list has a read-only changedtick variable that |
| 69 | tracks the total number of changes made to the list. Every time the quickfix |
| 70 | 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] | 71 | action only when the list has changed. The |getqflist()| and |getloclist()| |
Bram Moolenaar | b254af3 | 2017-12-18 19:48:58 +0100 | [diff] [blame] | 72 | functions can be used to query the current value of changedtick. You cannot |
| 73 | change the changedtick variable. |
| 74 | |
Bram Moolenaar | 280f126 | 2006-01-30 00:14:18 +0000 | [diff] [blame] | 75 | The following quickfix commands can be used. The location list commands are |
| 76 | similar to the quickfix commands, replacing the 'c' prefix in the quickfix |
| 77 | command with 'l'. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 78 | |
Bram Moolenaar | e18c0b3 | 2016-03-20 21:08:34 +0100 | [diff] [blame] | 79 | *E924* |
| 80 | If the current window was closed by an |autocommand| while processing a |
| 81 | location list command, it will be aborted. |
| 82 | |
Bram Moolenaar | ffec3c5 | 2016-03-23 20:55:42 +0100 | [diff] [blame] | 83 | *E925* *E926* |
| 84 | If the current quickfix or location list was changed by an |autocommand| while |
| 85 | processing a quickfix or location list command, it will be aborted. |
| 86 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 87 | *:cc* |
| 88 | :cc[!] [nr] Display error [nr]. If [nr] is omitted, the same |
Bram Moolenaar | 25190db | 2019-05-04 15:05:28 +0200 | [diff] [blame] | 89 | :[nr]cc[!] error is displayed again. Without [!] this doesn't |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 90 | work when jumping to another buffer, the current buffer |
| 91 | has been changed, there is the only window for the |
| 92 | buffer and both 'hidden' and 'autowrite' are off. |
| 93 | When jumping to another buffer with [!] any changes to |
| 94 | the current buffer are lost, unless 'hidden' is set or |
| 95 | there is another window for this buffer. |
| 96 | The 'switchbuf' settings are respected when jumping |
| 97 | to a buffer. |
Bram Moolenaar | 25190db | 2019-05-04 15:05:28 +0200 | [diff] [blame] | 98 | When used in the quickfix window the line number can |
| 99 | be used, including "." for the current line and "$" |
| 100 | for the last line. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 101 | |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 102 | *:ll* |
| 103 | :ll[!] [nr] Same as ":cc", except the location list for the |
Bram Moolenaar | 25190db | 2019-05-04 15:05:28 +0200 | [diff] [blame] | 104 | :[nr]ll[!] current window is used instead of the quickfix list. |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 105 | |
Bram Moolenaar | 61da1bf | 2019-06-06 12:14:49 +0200 | [diff] [blame] | 106 | *:cn* *:cne* *:cnext* *E553* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 107 | :[count]cn[ext][!] Display the [count] next error in the list that |
| 108 | includes a file name. If there are no file names at |
| 109 | all, go to the [count] next error. See |:cc| for |
| 110 | [!] and 'switchbuf'. |
| 111 | |
Bram Moolenaar | 17c7c01 | 2006-01-26 22:25:15 +0000 | [diff] [blame] | 112 | *:lne* *:lnext* |
| 113 | :[count]lne[xt][!] Same as ":cnext", except the location list for the |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 114 | current window is used instead of the quickfix list. |
| 115 | |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 116 | :[count]cN[ext][!] *:cp* *:cprevious* *:cprev* *:cN* *:cNext* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 117 | :[count]cp[revious][!] Display the [count] previous error in the list that |
| 118 | includes a file name. If there are no file names at |
| 119 | all, go to the [count] previous error. See |:cc| for |
| 120 | [!] and 'switchbuf'. |
| 121 | |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 122 | |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 123 | :[count]lN[ext][!] *:lp* *:lprevious* *:lprev* *:lN* *:lNext* |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 124 | :[count]lp[revious][!] Same as ":cNext" and ":cprevious", except the location |
| 125 | list for the current window is used instead of the |
| 126 | quickfix list. |
| 127 | |
Bram Moolenaar | 3ff3311 | 2019-05-03 21:56:35 +0200 | [diff] [blame] | 128 | *:cabo* *:cabove* |
| 129 | :[count]cabo[ve] Go to the [count] error above the current line in the |
| 130 | current buffer. If [count] is omitted, then 1 is |
| 131 | used. If there are no errors, then an error message |
| 132 | is displayed. Assumes that the entries in a quickfix |
| 133 | list are sorted by their buffer number and line |
| 134 | number. If there are multiple errors on the same line, |
| 135 | then only the first entry is used. If [count] exceeds |
| 136 | the number of entries above the current line, then the |
| 137 | first error in the file is selected. |
| 138 | |
| 139 | *:lab* *:labove* |
| 140 | :[count]lab[ove] Same as ":cabove", except the location list for the |
| 141 | current window is used instead of the quickfix list. |
| 142 | |
Bram Moolenaar | 8ffc7c8 | 2019-05-05 21:00:26 +0200 | [diff] [blame] | 143 | *:cbel* *:cbelow* |
| 144 | :[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] | 145 | current buffer. If [count] is omitted, then 1 is |
| 146 | used. If there are no errors, then an error message |
| 147 | is displayed. Assumes that the entries in a quickfix |
| 148 | list are sorted by their buffer number and line |
| 149 | number. If there are multiple errors on the same |
| 150 | line, then only the first entry is used. If [count] |
| 151 | exceeds the number of entries below the current line, |
| 152 | then the last error in the file is selected. |
| 153 | |
Bram Moolenaar | cf6a55c | 2019-05-05 15:02:30 +0200 | [diff] [blame] | 154 | *:lbel* *:lbelow* |
| 155 | :[count]lbel[ow] Same as ":cbelow", except the location list for the |
| 156 | current window is used instead of the quickfix list. |
| 157 | |
| 158 | *:cbe* *:cbefore* |
| 159 | :[count]cbe[fore] Go to the [count] error before the current cursor |
| 160 | position in the current buffer. If [count] is |
| 161 | omitted, then 1 is used. If there are no errors, then |
| 162 | an error message is displayed. Assumes that the |
| 163 | entries in a quickfix list are sorted by their buffer, |
| 164 | line and column numbers. If [count] exceeds the |
| 165 | number of entries before the current position, then |
| 166 | the first error in the file is selected. |
| 167 | |
Bram Moolenaar | 8ffc7c8 | 2019-05-05 21:00:26 +0200 | [diff] [blame] | 168 | *:lbe* *:lbefore* |
| 169 | :[count]lbe[fore] Same as ":cbefore", except the location list for the |
Bram Moolenaar | cf6a55c | 2019-05-05 15:02:30 +0200 | [diff] [blame] | 170 | current window is used instead of the quickfix list. |
| 171 | |
| 172 | *:caf* *:cafter* |
| 173 | :[count]caf[ter] Go to the [count] error after the current cursor |
| 174 | position in the current buffer. If [count] is |
| 175 | omitted, then 1 is used. If there are no errors, then |
| 176 | an error message is displayed. Assumes that the |
| 177 | entries in a quickfix list are sorted by their buffer, |
| 178 | line and column numbers. If [count] exceeds the |
| 179 | number of entries after the current position, then |
| 180 | the last error in the file is selected. |
| 181 | |
| 182 | *:laf* *:lafter* |
| 183 | :[count]laf[ter] Same as ":cafter", except the location list for the |
Bram Moolenaar | 3ff3311 | 2019-05-03 21:56:35 +0200 | [diff] [blame] | 184 | current window is used instead of the quickfix list. |
| 185 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 186 | *:cnf* *:cnfile* |
| 187 | :[count]cnf[ile][!] Display the first error in the [count] next file in |
| 188 | the list that includes a file name. If there are no |
| 189 | file names at all or if there is no next file, go to |
| 190 | the [count] next error. See |:cc| for [!] and |
| 191 | 'switchbuf'. |
| 192 | |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 193 | *:lnf* *:lnfile* |
| 194 | :[count]lnf[ile][!] Same as ":cnfile", except the location list for the |
| 195 | current window is used instead of the quickfix list. |
| 196 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 197 | :[count]cNf[ile][!] *:cpf* *:cpfile* *:cNf* *:cNfile* |
| 198 | :[count]cpf[ile][!] Display the last error in the [count] previous file in |
| 199 | the list that includes a file name. If there are no |
| 200 | file names at all or if there is no next file, go to |
| 201 | the [count] previous error. See |:cc| for [!] and |
| 202 | 'switchbuf'. |
| 203 | |
Bram Moolenaar | 17c7c01 | 2006-01-26 22:25:15 +0000 | [diff] [blame] | 204 | |
| 205 | :[count]lNf[ile][!] *:lpf* *:lpfile* *:lNf* *:lNfile* |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 206 | :[count]lpf[ile][!] Same as ":cNfile" and ":cpfile", except the location |
| 207 | list for the current window is used instead of the |
| 208 | quickfix list. |
| 209 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 210 | *:crewind* *:cr* |
| 211 | :cr[ewind][!] [nr] Display error [nr]. If [nr] is omitted, the FIRST |
| 212 | error is displayed. See |:cc|. |
| 213 | |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 214 | *:lrewind* *:lr* |
| 215 | :lr[ewind][!] [nr] Same as ":crewind", except the location list for the |
| 216 | current window is used instead of the quickfix list. |
| 217 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 218 | *:cfirst* *:cfir* |
| 219 | :cfir[st][!] [nr] Same as ":crewind". |
| 220 | |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 221 | *:lfirst* *:lfir* |
| 222 | :lfir[st][!] [nr] Same as ":lrewind". |
| 223 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 224 | *:clast* *:cla* |
| 225 | :cla[st][!] [nr] Display error [nr]. If [nr] is omitted, the LAST |
| 226 | error is displayed. See |:cc|. |
| 227 | |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 228 | *:llast* *:lla* |
| 229 | :lla[st][!] [nr] Same as ":clast", except the location list for the |
| 230 | current window is used instead of the quickfix list. |
| 231 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 232 | *:cq* *:cquit* |
Bram Moolenaar | 1860bde | 2020-01-06 21:47:21 +0100 | [diff] [blame] | 233 | :cq[uit][!] |
| 234 | :{N}cq[uit][!] |
| 235 | :cq[uit][!] {N} Quit Vim with error code {N}. {N} defaults to one. |
| 236 | Useful when Vim is called from another program: |
| 237 | e.g., a compiler will not compile the same file again, |
| 238 | `git commit` will abort the committing process, `fc` |
| 239 | (built-in for shells like bash and zsh) will not |
Bram Moolenaar | ade0d39 | 2020-01-21 22:33:58 +0100 | [diff] [blame] | 240 | execute the command, etc. |
Bram Moolenaar | 1860bde | 2020-01-06 21:47:21 +0100 | [diff] [blame] | 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 | |
Bram Moolenaar | 2f0936c | 2022-01-08 21:51:59 +0000 | [diff] [blame] | 247 | *:cf* *:cfi* *:cfile* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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* |
Christian Brabandt | 652c821 | 2024-04-29 20:36:49 +0200 | [diff] [blame] | 290 | :[range]cb[uffer][!] [bufnr] |
| 291 | Read the error list from the current buffer. |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 292 | When [bufnr] is given it must be the number of a |
| 293 | loaded buffer. That buffer will then be used instead |
| 294 | of the current buffer. |
| 295 | A range can be specified for the lines to be used. |
| 296 | Otherwise all lines in the buffer are used. |
Bram Moolenaar | 6cbce9d | 2007-03-08 10:01:03 +0000 | [diff] [blame] | 297 | See |:cc| for [!]. |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 298 | |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 299 | *:lb* *:lbuffer* |
Christian Brabandt | 652c821 | 2024-04-29 20:36:49 +0200 | [diff] [blame] | 300 | :[range]lb[uffer][!] [bufnr] |
| 301 | Same as ":cbuffer", except the location list for the |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 302 | current window is used instead of the quickfix list. |
| 303 | |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 304 | *:cgetb* *:cgetbuffer* |
Christian Brabandt | 652c821 | 2024-04-29 20:36:49 +0200 | [diff] [blame] | 305 | :[range]cgetb[uffer] [bufnr] |
| 306 | Read the error list from the current buffer. Just |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 307 | like ":cbuffer" but don't jump to the first error. |
| 308 | |
| 309 | *:lgetb* *:lgetbuffer* |
Christian Brabandt | 652c821 | 2024-04-29 20:36:49 +0200 | [diff] [blame] | 310 | :[range]lgetb[uffer] [bufnr] |
| 311 | Same as ":cgetbuffer", except the location list for |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 312 | the current window is used instead of the quickfix |
| 313 | list. |
| 314 | |
Bram Moolenaar | 61da1bf | 2019-06-06 12:14:49 +0200 | [diff] [blame] | 315 | *:cad* *:cadd* *:caddbuffer* |
Christian Brabandt | 652c821 | 2024-04-29 20:36:49 +0200 | [diff] [blame] | 316 | :[range]cad[dbuffer] [bufnr] |
| 317 | Read the error list from the current buffer and add |
Bram Moolenaar | 9f2c6e1 | 2006-02-04 22:45:44 +0000 | [diff] [blame] | 318 | the errors to the current quickfix list. If a |
| 319 | quickfix list is not present, then a new list is |
| 320 | created. Otherwise, same as ":cbuffer". |
| 321 | |
| 322 | *:laddb* *:laddbuffer* |
Christian Brabandt | 652c821 | 2024-04-29 20:36:49 +0200 | [diff] [blame] | 323 | :[range]laddb[uffer] [bufnr] |
| 324 | Same as ":caddbuffer", except the location list for |
Bram Moolenaar | 9f2c6e1 | 2006-02-04 22:45:44 +0000 | [diff] [blame] | 325 | the current window is used instead of the quickfix |
| 326 | list. |
| 327 | |
Bram Moolenaar | a40ceaf | 2006-01-13 22:35:40 +0000 | [diff] [blame] | 328 | *:cex* *:cexpr* *E777* |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 329 | :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] | 330 | jump to the first error. |
Bram Moolenaar | 664f3cf | 2019-12-07 16:03:51 +0100 | [diff] [blame] | 331 | If {expr} is a String, then each newline terminated |
Bram Moolenaar | d6357e8 | 2016-01-21 21:48:09 +0100 | [diff] [blame] | 332 | line in the String is processed using the global value |
| 333 | of 'errorformat' and the result is added to the |
| 334 | quickfix list. |
Bram Moolenaar | 20f90cf | 2011-05-19 12:22:51 +0200 | [diff] [blame] | 335 | If {expr} is a List, then each String item in the list |
| 336 | is processed and added to the quickfix list. Non |
| 337 | String items in the List are ignored. |
| 338 | See |:cc| for [!]. |
Bram Moolenaar | 87e25fd | 2005-07-27 21:13:01 +0000 | [diff] [blame] | 339 | Examples: > |
| 340 | :cexpr system('grep -n xyz *') |
| 341 | :cexpr getline(1, '$') |
| 342 | < |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 343 | *:lex* *:lexpr* |
Bram Moolenaar | 20f90cf | 2011-05-19 12:22:51 +0200 | [diff] [blame] | 344 | :lex[pr][!] {expr} Same as |:cexpr|, except the location list for the |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 345 | current window is used instead of the quickfix list. |
| 346 | |
Bram Moolenaar | 76b92b2 | 2006-03-24 22:46:53 +0000 | [diff] [blame] | 347 | *:cgete* *:cgetexpr* |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 348 | :cgete[xpr] {expr} Create a quickfix list using the result of {expr}. |
Bram Moolenaar | 20f90cf | 2011-05-19 12:22:51 +0200 | [diff] [blame] | 349 | Just like |:cexpr|, but don't jump to the first error. |
Bram Moolenaar | 76b92b2 | 2006-03-24 22:46:53 +0000 | [diff] [blame] | 350 | |
| 351 | *:lgete* *:lgetexpr* |
Bram Moolenaar | 20f90cf | 2011-05-19 12:22:51 +0200 | [diff] [blame] | 352 | :lgete[xpr] {expr} Same as |:cgetexpr|, except the location list for the |
Bram Moolenaar | 76b92b2 | 2006-03-24 22:46:53 +0000 | [diff] [blame] | 353 | current window is used instead of the quickfix list. |
| 354 | |
Bram Moolenaar | a687837 | 2014-03-22 21:02:50 +0100 | [diff] [blame] | 355 | *:cadde* *:caddexpr* |
Bram Moolenaar | 76f3b1a | 2014-03-27 22:30:07 +0100 | [diff] [blame] | 356 | :cadde[xpr] {expr} Evaluate {expr} and add the resulting lines to the |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 357 | current quickfix list. If a quickfix list is not |
| 358 | present, then a new list is created. The current |
| 359 | cursor position will not be changed. See |:cexpr| for |
| 360 | more information. |
| 361 | Example: > |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 362 | :g/mypattern/caddexpr expand("%") .. ":" .. line(".") .. ":" .. getline(".") |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 363 | < |
zeertzjq | 7c51528 | 2024-11-10 20:26:12 +0100 | [diff] [blame] | 364 | *:lad* *:ladd* *:laddexpr* |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 365 | :lad[dexpr] {expr} Same as ":caddexpr", except the location list for the |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 366 | current window is used instead of the quickfix list. |
| 367 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 368 | *:cl* *:clist* |
| 369 | :cl[ist] [from] [, [to]] |
| 370 | List all errors that are valid |quickfix-valid|. |
| 371 | If numbers [from] and/or [to] are given, the respective |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 372 | range of errors is listed. A negative number counts |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 373 | from the last error backwards, -1 being the last error. |
Bram Moolenaar | a9defad | 2018-07-08 18:20:24 +0200 | [diff] [blame] | 374 | The |:filter| command can be used to display only the |
| 375 | quickfix entries matching a supplied pattern. The |
| 376 | pattern is matched against the filename, module name, |
| 377 | pattern and text of the entry. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 378 | |
Bram Moolenaar | e8fea07 | 2016-07-01 14:48:27 +0200 | [diff] [blame] | 379 | :cl[ist] +{count} List the current and next {count} valid errors. This |
| 380 | is similar to ":clist from from+count", where "from" |
| 381 | is the current error position. |
| 382 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 383 | :cl[ist]! [from] [, [to]] |
| 384 | List all errors. |
| 385 | |
Bram Moolenaar | e8fea07 | 2016-07-01 14:48:27 +0200 | [diff] [blame] | 386 | :cl[ist]! +{count} List the current and next {count} error lines. This |
zeertzjq | d086b8f | 2024-02-25 15:42:52 +0800 | [diff] [blame] | 387 | is useful to see unrecognized lines after the current |
Bram Moolenaar | e8fea07 | 2016-07-01 14:48:27 +0200 | [diff] [blame] | 388 | one. For example, if ":clist" shows: |
zeertzjq | d086b8f | 2024-02-25 15:42:52 +0800 | [diff] [blame] | 389 | 8384 testje.java:252: error: cannot find symbol ~ |
| 390 | Then using ":cl! +3" shows the reason: |
| 391 | 8384 testje.java:252: error: cannot find symbol ~ |
| 392 | 8385: ZexitCode = Fmainx(); ~ |
| 393 | 8386: ^ ~ |
| 394 | 8387: symbol: method Fmainx() ~ |
Bram Moolenaar | e8fea07 | 2016-07-01 14:48:27 +0200 | [diff] [blame] | 395 | |
| 396 | :lli[st] [from] [, [to]] *:lli* *:llist* |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 397 | Same as ":clist", except the location list for the |
| 398 | current window is used instead of the quickfix list. |
| 399 | |
| 400 | :lli[st]! [from] [, [to]] |
| 401 | List all the entries in the location list for the |
| 402 | current window. |
| 403 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 404 | If you insert or delete lines, mostly the correct error location is still |
| 405 | found because hidden marks are used. Sometimes, when the mark has been |
| 406 | deleted for some reason, the message "line changed" is shown to warn you that |
| 407 | the error location may not be correct. If you quit Vim and start again the |
| 408 | marks are lost and the error locations may not be correct anymore. |
| 409 | |
Bram Moolenaar | b5b7562 | 2018-03-09 22:22:21 +0100 | [diff] [blame] | 410 | Two autocommands are available for running commands before and after a |
| 411 | quickfix command (':make', ':grep' and so on) is executed. See |
| 412 | |QuickFixCmdPre| and |QuickFixCmdPost| for details. |
Bram Moolenaar | b11bd7e | 2005-02-07 22:05:52 +0000 | [diff] [blame] | 413 | |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 414 | *QuickFixCmdPost-example* |
| 415 | When 'encoding' differs from the locale, the error messages may have a |
| 416 | different encoding from what Vim is using. To convert the messages you can |
| 417 | use this code: > |
| 418 | function QfMakeConv() |
| 419 | let qflist = getqflist() |
| 420 | for i in qflist |
| 421 | let i.text = iconv(i.text, "cp936", "utf-8") |
| 422 | endfor |
| 423 | call setqflist(qflist) |
| 424 | endfunction |
| 425 | |
| 426 | au QuickfixCmdPost make call QfMakeConv() |
Bram Moolenaar | 2c7292d | 2017-03-05 17:43:31 +0100 | [diff] [blame] | 427 | Another option is using 'makeencoding'. |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 428 | |
Bram Moolenaar | 74240d3 | 2017-12-10 15:26:15 +0100 | [diff] [blame] | 429 | *quickfix-title* |
| 430 | Every quickfix and location list has a title. By default the title is set to |
| 431 | the command that created the list. The |getqflist()| and |getloclist()| |
| 432 | functions can be used to get the title of a quickfix and a location list |
| 433 | respectively. The |setqflist()| and |setloclist()| functions can be used to |
| 434 | modify the title of a quickfix and location list respectively. Examples: > |
| 435 | call setqflist([], 'a', {'title' : 'Cmd output'}) |
| 436 | echo getqflist({'title' : 1}) |
| 437 | call setloclist(3, [], 'a', {'title' : 'Cmd output'}) |
| 438 | echo getloclist(3, {'title' : 1}) |
| 439 | < |
Bram Moolenaar | 5b69c22 | 2019-01-11 14:50:06 +0100 | [diff] [blame] | 440 | *quickfix-index* |
| 441 | 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] | 442 | commands (e.g. |:cc|, |:cnext|, |:cprev|, etc.), that entry becomes the |
| 443 | currently selected entry. The index of the currently selected entry in a |
Bram Moolenaar | 5b69c22 | 2019-01-11 14:50:06 +0100 | [diff] [blame] | 444 | quickfix/location list can be obtained using the getqflist()/getloclist() |
| 445 | functions. Examples: > |
| 446 | echo getqflist({'idx' : 0}).idx |
| 447 | echo getqflist({'id' : qfid, 'idx' : 0}).idx |
| 448 | echo getloclist(2, {'idx' : 0}).idx |
| 449 | < |
| 450 | For a new quickfix list, the first entry is selected and the index is 1. Any |
| 451 | entry in any quickfix/location list can be set as the currently selected entry |
| 452 | using the setqflist() function. Examples: > |
| 453 | call setqflist([], 'a', {'idx' : 12}) |
| 454 | call setqflist([], 'a', {'id' : qfid, 'idx' : 7}) |
| 455 | call setloclist(1, [], 'a', {'idx' : 7}) |
| 456 | < |
Bram Moolenaar | 74240d3 | 2017-12-10 15:26:15 +0100 | [diff] [blame] | 457 | *quickfix-size* |
| 458 | You can get the number of entries (size) in a quickfix and a location list |
| 459 | using the |getqflist()| and |getloclist()| functions respectively. Examples: > |
| 460 | echo getqflist({'size' : 1}) |
| 461 | echo getloclist(5, {'size' : 1}) |
| 462 | < |
| 463 | *quickfix-context* |
| 464 | Any Vim type can be associated as a context with a quickfix or location list. |
| 465 | The |setqflist()| and the |setloclist()| functions can be used to associate a |
| 466 | context with a quickfix and a location list respectively. The |getqflist()| |
| 467 | 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] | 468 | 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] | 469 | dealing with multiple quickfix/location lists. |
| 470 | Examples: > |
| 471 | |
| 472 | let somectx = {'name' : 'Vim', 'type' : 'Editor'} |
| 473 | call setqflist([], 'a', {'context' : somectx}) |
| 474 | echo getqflist({'context' : 1}) |
| 475 | |
| 476 | let newctx = ['red', 'green', 'blue'] |
| 477 | call setloclist(2, [], 'a', {'id' : qfid, 'context' : newctx}) |
| 478 | echo getloclist(2, {'id' : qfid, 'context' : 1}) |
| 479 | < |
| 480 | *quickfix-parse* |
Bram Moolenaar | f0b03c4 | 2017-12-17 17:17:07 +0100 | [diff] [blame] | 481 | You can parse a list of lines using 'errorformat' without creating or |
| 482 | modifying a quickfix list using the |getqflist()| function. Examples: > |
Bram Moolenaar | 74240d3 | 2017-12-10 15:26:15 +0100 | [diff] [blame] | 483 | echo getqflist({'lines' : ["F1:10:Line10", "F2:20:Line20"]}) |
| 484 | echo getqflist({'lines' : systemlist('grep -Hn quickfix *')}) |
Bram Moolenaar | 9fbdbb8 | 2022-09-27 17:30:34 +0100 | [diff] [blame] | 485 | This returns a dictionary where the "items" key contains the list of quickfix |
Bram Moolenaar | 74240d3 | 2017-12-10 15:26:15 +0100 | [diff] [blame] | 486 | entries parsed from lines. The following shows how to use a custom |
Bram Moolenaar | f0b03c4 | 2017-12-17 17:17:07 +0100 | [diff] [blame] | 487 | 'errorformat' to parse the lines without modifying the 'errorformat' option: > |
Bram Moolenaar | 74240d3 | 2017-12-10 15:26:15 +0100 | [diff] [blame] | 488 | echo getqflist({'efm' : '%f#%l#%m', 'lines' : ['F1#10#Line']}) |
| 489 | < |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 490 | |
Bram Moolenaar | 12969c0 | 2015-09-08 23:36:10 +0200 | [diff] [blame] | 491 | EXECUTE A COMMAND IN ALL THE BUFFERS IN QUICKFIX OR LOCATION LIST: |
| 492 | *:cdo* |
| 493 | :cdo[!] {cmd} Execute {cmd} in each valid entry in the quickfix list. |
| 494 | It works like doing this: > |
| 495 | :cfirst |
| 496 | :{cmd} |
| 497 | :cnext |
| 498 | :{cmd} |
| 499 | etc. |
| 500 | < When the current file can't be |abandon|ed and the [!] |
| 501 | is not present, the command fails. |
Bram Moolenaar | 96f45c0 | 2019-10-26 19:53:45 +0200 | [diff] [blame] | 502 | When going to the next entry fails execution stops. |
Bram Moolenaar | 12969c0 | 2015-09-08 23:36:10 +0200 | [diff] [blame] | 503 | The last buffer (or where an error occurred) becomes |
| 504 | the current buffer. |
| 505 | {cmd} can contain '|' to concatenate several commands. |
| 506 | |
| 507 | Only valid entries in the quickfix list are used. |
| 508 | A range can be used to select entries, e.g.: > |
| 509 | :10,$cdo cmd |
| 510 | < To skip entries 1 to 9. |
| 511 | |
| 512 | Note: While this command is executing, the Syntax |
| 513 | autocommand event is disabled by adding it to |
| 514 | 'eventignore'. This considerably speeds up editing |
| 515 | each buffer. |
Bram Moolenaar | 12969c0 | 2015-09-08 23:36:10 +0200 | [diff] [blame] | 516 | Also see |:bufdo|, |:tabdo|, |:argdo|, |:windo|, |
| 517 | |:ldo|, |:cfdo| and |:lfdo|. |
| 518 | |
| 519 | *:cfdo* |
| 520 | :cfdo[!] {cmd} Execute {cmd} in each file in the quickfix list. |
| 521 | It works like doing this: > |
| 522 | :cfirst |
| 523 | :{cmd} |
| 524 | :cnfile |
| 525 | :{cmd} |
| 526 | etc. |
| 527 | < Otherwise it works the same as `:cdo`. |
Bram Moolenaar | 12969c0 | 2015-09-08 23:36:10 +0200 | [diff] [blame] | 528 | |
| 529 | *:ldo* |
| 530 | :ld[o][!] {cmd} Execute {cmd} in each valid entry in the location list |
| 531 | for the current window. |
| 532 | It works like doing this: > |
| 533 | :lfirst |
| 534 | :{cmd} |
| 535 | :lnext |
| 536 | :{cmd} |
| 537 | etc. |
| 538 | < Only valid entries in the location list are used. |
| 539 | Otherwise it works the same as `:cdo`. |
Bram Moolenaar | 12969c0 | 2015-09-08 23:36:10 +0200 | [diff] [blame] | 540 | |
| 541 | *:lfdo* |
| 542 | :lfdo[!] {cmd} Execute {cmd} in each file in the location list for |
| 543 | the current window. |
| 544 | It works like doing this: > |
| 545 | :lfirst |
| 546 | :{cmd} |
| 547 | :lnfile |
| 548 | :{cmd} |
| 549 | etc. |
| 550 | < Otherwise it works the same as `:ldo`. |
Bram Moolenaar | 12969c0 | 2015-09-08 23:36:10 +0200 | [diff] [blame] | 551 | |
Bram Moolenaar | 8ffc7c8 | 2019-05-05 21:00:26 +0200 | [diff] [blame] | 552 | FILTERING A QUICKFIX OR LOCATION LIST: |
Christian Brabandt | 9598a63 | 2025-01-11 10:14:24 +0100 | [diff] [blame] | 553 | *cfilter-plugin* *:Cfilter* *:Lfilter* *package-cfilter* |
Bram Moolenaar | 8ffc7c8 | 2019-05-05 21:00:26 +0200 | [diff] [blame] | 554 | If you have too many entries in a quickfix list, you can use the cfilter |
Christian Brabandt | 9598a63 | 2025-01-11 10:14:24 +0100 | [diff] [blame] | 555 | plugin to reduce the number of entries. Load the plugin with: >vim |
Bram Moolenaar | 8ffc7c8 | 2019-05-05 21:00:26 +0200 | [diff] [blame] | 556 | |
| 557 | packadd cfilter |
| 558 | |
| 559 | Then you can use the following commands to filter a quickfix/location list: > |
| 560 | |
| 561 | :Cfilter[!] /{pat}/ |
| 562 | :Lfilter[!] /{pat}/ |
| 563 | |
| 564 | The |:Cfilter| command creates a new quickfix list from the entries matching |
| 565 | {pat} in the current quickfix list. {pat} is a Vim |regular-expression| |
| 566 | pattern. Both the file name and the text of the entries are matched against |
| 567 | {pat}. If the optional ! is supplied, then the entries not matching {pat} are |
| 568 | used. The pattern can be optionally enclosed using one of the following |
| 569 | characters: ', ", /. If the pattern is empty, then the last used search |
| 570 | pattern is used. |
| 571 | |
| 572 | The |:Lfilter| command does the same as |:Cfilter| but operates on the current |
| 573 | location list. |
| 574 | |
Bram Moolenaar | 0d878b9 | 2022-07-01 18:45:04 +0100 | [diff] [blame] | 575 | The current quickfix/location list is not modified by these commands, so you |
| 576 | can go back to the unfiltered list using the |:colder|/|:lolder| command. |
| 577 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 578 | ============================================================================= |
| 579 | 2. The error window *quickfix-window* |
| 580 | |
Bram Moolenaar | 7fd7320 | 2010-07-25 16:58:46 +0200 | [diff] [blame] | 581 | *:cope* *:copen* *w:quickfix_title* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 582 | :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] | 583 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 584 | When [height] is given, the window becomes that high |
Bram Moolenaar | 76f3b1a | 2014-03-27 22:30:07 +0100 | [diff] [blame] | 585 | (if there is room). When [height] is omitted the |
| 586 | window is made ten lines high. |
| 587 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 588 | If there already is a quickfix window, it will be made |
| 589 | the current window. It is not possible to open a |
Bram Moolenaar | 76f3b1a | 2014-03-27 22:30:07 +0100 | [diff] [blame] | 590 | second quickfix window. If [height] is given the |
| 591 | existing window will be resized to it. |
| 592 | |
Bram Moolenaar | 647e24b | 2019-03-17 16:39:46 +0100 | [diff] [blame] | 593 | *quickfix-buffer* |
Bram Moolenaar | 76f3b1a | 2014-03-27 22:30:07 +0100 | [diff] [blame] | 594 | The window will contain a special buffer, with |
| 595 | 'buftype' equal to "quickfix". Don't change this! |
| 596 | The window will have the w:quickfix_title variable set |
| 597 | which will indicate the command that produced the |
| 598 | quickfix list. This can be used to compose a custom |
| 599 | status line if the value of 'statusline' is adjusted |
Bram Moolenaar | a8788f4 | 2017-07-19 17:06:20 +0200 | [diff] [blame] | 600 | properly. Whenever this buffer is modified by a |
| 601 | quickfix command or function, the |b:changedtick| |
Bram Moolenaar | 647e24b | 2019-03-17 16:39:46 +0100 | [diff] [blame] | 602 | variable is incremented. You can get the number of |
| 603 | this buffer using the getqflist() and getloclist() |
Bram Moolenaar | 9fbdbb8 | 2022-09-27 17:30:34 +0100 | [diff] [blame] | 604 | functions by passing the "qfbufnr" item. For a |
Bram Moolenaar | 647e24b | 2019-03-17 16:39:46 +0100 | [diff] [blame] | 605 | location list, this buffer is wiped out when the |
| 606 | location list is removed. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 607 | |
Bram Moolenaar | 17c7c01 | 2006-01-26 22:25:15 +0000 | [diff] [blame] | 608 | *:lop* *:lopen* |
| 609 | :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] | 610 | current window. Works only when the location list for |
Bram Moolenaar | 17c7c01 | 2006-01-26 22:25:15 +0000 | [diff] [blame] | 611 | the current window is present. You can have more than |
| 612 | one location window opened at a time. Otherwise, it |
Bram Moolenaar | 280f126 | 2006-01-30 00:14:18 +0000 | [diff] [blame] | 613 | acts the same as ":copen". |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 614 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 615 | *:ccl* *:cclose* |
| 616 | :ccl[ose] Close the quickfix window. |
| 617 | |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 618 | *:lcl* *:lclose* |
| 619 | :lcl[ose] Close the window showing the location list for the |
| 620 | current window. |
| 621 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 622 | *:cw* *:cwindow* |
| 623 | :cw[indow] [height] Open the quickfix window when there are recognized |
| 624 | errors. If the window is already open and there are |
| 625 | no recognized errors, close the window. |
| 626 | |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 627 | *:lw* *:lwindow* |
| 628 | :lw[indow] [height] Same as ":cwindow", except use the window showing the |
| 629 | location list for the current window. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 630 | |
Bram Moolenaar | 537ef08 | 2016-07-09 17:56:19 +0200 | [diff] [blame] | 631 | *:cbo* *:cbottom* |
Bram Moolenaar | dcb1700 | 2016-07-07 18:58:59 +0200 | [diff] [blame] | 632 | :cbo[ttom] Put the cursor in the last line of the quickfix window |
| 633 | and scroll to make it visible. This is useful for |
| 634 | when errors are added by an asynchronous callback. |
| 635 | Only call it once in a while if there are many |
| 636 | updates to avoid a lot of redrawing. |
| 637 | |
Bram Moolenaar | 537ef08 | 2016-07-09 17:56:19 +0200 | [diff] [blame] | 638 | *:lbo* *:lbottom* |
| 639 | :lbo[ttom] Same as ":cbottom", except use the window showing the |
| 640 | location list for the current window. |
| 641 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 642 | Normally the quickfix window is at the bottom of the screen. If there are |
| 643 | vertical splits, it's at the bottom of the rightmost column of windows. To |
| 644 | make it always occupy the full width: > |
| 645 | :botright cwindow |
| 646 | You can move the window around with |window-moving| commands. |
| 647 | For example, to move it to the top: CTRL-W K |
| 648 | The 'winfixheight' option will be set, which means that the window will mostly |
| 649 | keep its height, ignoring 'winheight' and 'equalalways'. You can change the |
| 650 | height manually (e.g., by dragging the status line above it with the mouse). |
| 651 | |
| 652 | 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] | 653 | the error number. The current entry is highlighted with the QuickFixLine |
| 654 | highlighting. You can change it to your liking, e.g.: > |
| 655 | :hi QuickFixLine ctermbg=Yellow guibg=Yellow |
| 656 | |
| 657 | You can use ":.cc" to jump to the error under the cursor. |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 658 | 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] | 659 | effect. The file containing the error is opened in the window above the |
| 660 | quickfix window. If there already is a window for that file, it is used |
| 661 | instead. If the buffer in the used window has changed, and the error is in |
| 662 | another file, jumping to the error will fail. You will first have to make |
| 663 | sure the window contains a buffer which can be abandoned. |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 664 | |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 665 | When you select a file from the quickfix window, the following steps are used |
| 666 | to find a window to edit the file: |
| 667 | |
| 668 | 1. If a window displaying the selected file is present in the current tabpage |
| 669 | (starting with the window before the quickfix window), then that window is |
| 670 | used. |
| 671 | 2. If the above step fails and if 'switchbuf' contains "usetab" and a window |
| 672 | displaying the selected file is present in any one of the tabpages |
| 673 | (starting with the first tabpage) then that window is used. |
| 674 | 3. If the above step fails then a window in the current tabpage displaying a |
| 675 | buffer with 'buftype' not set (starting with the window before the quickfix |
| 676 | window) is used. |
| 677 | 4. If the above step fails and if 'switchbuf' contains "uselast", then the |
| 678 | previously accessed window is used. |
| 679 | 5. If the above step fails then the window before the quickfix window is used. |
| 680 | If there is no previous window, then the window after the quickfix window |
| 681 | is used. |
| 682 | 6. If the above step fails, then a new horizontally split window above the |
| 683 | quickfix window is used. |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 684 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 685 | *CTRL-W_<Enter>* *CTRL-W_<CR>* |
| 686 | 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] | 687 | |
| 688 | When the quickfix window has been filled, two autocommand events are |
| 689 | triggered. First the 'filetype' option is set to "qf", which triggers the |
Bram Moolenaar | 85850f3 | 2019-07-19 22:05:51 +0200 | [diff] [blame] | 690 | FileType event (also see |qf.vim|). Then the BufReadPost event is triggered, |
| 691 | using "quickfix" for the buffer name. This can be used to perform some action |
| 692 | on the listed errors. Example: > |
Bram Moolenaar | 280f126 | 2006-01-30 00:14:18 +0000 | [diff] [blame] | 693 | au BufReadPost quickfix setlocal modifiable |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 694 | \ | silent exe 'g/^/s//\=line(".") .. " "/' |
Bram Moolenaar | 280f126 | 2006-01-30 00:14:18 +0000 | [diff] [blame] | 695 | \ | setlocal nomodifiable |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 696 | This prepends the line number to each line. Note the use of "\=" in the |
| 697 | substitute string of the ":s" command, which is used to evaluate an |
| 698 | expression. |
Bram Moolenaar | 1ef15e3 | 2006-02-01 21:56:25 +0000 | [diff] [blame] | 699 | The BufWinEnter event is also triggered, again using "quickfix" for the buffer |
| 700 | name. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 701 | |
Bram Moolenaar | 82af871 | 2016-06-04 20:20:29 +0200 | [diff] [blame] | 702 | Note: When adding to an existing quickfix list the autocommand are not |
| 703 | triggered. |
| 704 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 705 | Note: Making changes in the quickfix window has no effect on the list of |
| 706 | errors. 'modifiable' is off to avoid making changes. If you delete or insert |
| 707 | lines anyway, the relation between the text and the error number is messed up. |
| 708 | If you really want to do this, you could write the contents of the quickfix |
| 709 | window to a file and use ":cfile" to have it parsed and used as the new error |
| 710 | list. |
| 711 | |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 712 | *location-list-window* |
Bram Moolenaar | 280f126 | 2006-01-30 00:14:18 +0000 | [diff] [blame] | 713 | The location list window displays the entries in a location list. When you |
| 714 | open a location list window, it is created below the current window and |
| 715 | displays the location list for the current window. The location list window |
| 716 | 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] | 717 | location list window open at a time. When you use a location list command in |
| 718 | this window, the displayed location list is used. |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 719 | |
Bram Moolenaar | 280f126 | 2006-01-30 00:14:18 +0000 | [diff] [blame] | 720 | When you select a file from the location list window, the following steps are |
| 721 | used to find a window to edit the file: |
| 722 | |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 723 | 1. If a non-quickfix window associated with the location list is present in |
| 724 | the current tabpage, then that window is used. |
| 725 | 2. If the above step fails and if the file is already opened in another window |
| 726 | in the current tabpage, then that window is used. |
| 727 | 3. If the above step fails and 'switchbuf' contains "usetab" and if the file |
| 728 | is opened in a window in any one of the tabpages, then that window is used. |
| 729 | 4. If the above step fails then a window in the current tabpage showing a |
| 730 | buffer with 'buftype' not set is used. |
| 731 | 5. If the above step fails, then the file is edited in a new window. |
Bram Moolenaar | 280f126 | 2006-01-30 00:14:18 +0000 | [diff] [blame] | 732 | |
| 733 | In all of the above cases, if the location list for the selected window is not |
| 734 | yet set, then it is set to the location list displayed in the location list |
| 735 | window. |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 736 | |
Bram Moolenaar | 74240d3 | 2017-12-10 15:26:15 +0100 | [diff] [blame] | 737 | *quickfix-window-ID* |
| 738 | You can use the |getqflist()| and |getloclist()| functions to obtain the |
| 739 | window ID of the quickfix window and location list window respectively (if |
| 740 | present). Examples: > |
| 741 | echo getqflist({'winid' : 1}).winid |
| 742 | echo getloclist(2, {'winid' : 1}).winid |
| 743 | < |
Bram Moolenaar | 15142e2 | 2018-04-30 22:19:58 +0200 | [diff] [blame] | 744 | *getqflist-examples* |
Bram Moolenaar | d473c8c | 2018-08-11 18:00:22 +0200 | [diff] [blame] | 745 | The |getqflist()| and |getloclist()| functions can be used to get the various |
Bram Moolenaar | 15142e2 | 2018-04-30 22:19:58 +0200 | [diff] [blame] | 746 | attributes of a quickfix and location list respectively. Some examples for |
| 747 | using these functions are below: |
| 748 | > |
| 749 | " get the title of the current quickfix list |
| 750 | :echo getqflist({'title' : 0}).title |
| 751 | |
| 752 | " get the identifier of the current quickfix list |
| 753 | :let qfid = getqflist({'id' : 0}).id |
| 754 | |
Bram Moolenaar | 78ddc06 | 2018-05-15 21:56:34 +0200 | [diff] [blame] | 755 | " get the identifier of the fourth quickfix list in the stack |
| 756 | :let qfid = getqflist({'nr' : 4, 'id' : 0}).id |
| 757 | |
| 758 | " check whether a quickfix list with a specific identifier exists |
| 759 | :if getqflist({'id' : qfid}).id == qfid |
| 760 | |
Bram Moolenaar | 15142e2 | 2018-04-30 22:19:58 +0200 | [diff] [blame] | 761 | " get the index of the current quickfix list in the stack |
| 762 | :let qfnum = getqflist({'nr' : 0}).nr |
| 763 | |
| 764 | " get the items of a quickfix list specified by an identifier |
| 765 | :echo getqflist({'id' : qfid, 'items' : 0}).items |
| 766 | |
| 767 | " get the number of entries in a quickfix list specified by an id |
| 768 | :echo getqflist({'id' : qfid, 'size' : 0}).size |
| 769 | |
| 770 | " get the context of the third quickfix list in the stack |
| 771 | :echo getqflist({'nr' : 3, 'context' : 0}).context |
| 772 | |
| 773 | " get the number of quickfix lists in the stack |
| 774 | :echo getqflist({'nr' : '$'}).nr |
| 775 | |
| 776 | " get the number of times the current quickfix list is changed |
| 777 | :echo getqflist({'changedtick' : 0}).changedtick |
| 778 | |
| 779 | " get the current entry in a quickfix list specified by an identifier |
| 780 | :echo getqflist({'id' : qfid, 'idx' : 0}).idx |
| 781 | |
| 782 | " get all the quickfix list attributes using an identifier |
| 783 | :echo getqflist({'id' : qfid, 'all' : 0}) |
| 784 | |
| 785 | " parse text from a List of lines and return a quickfix list |
| 786 | :let myList = ["a.java:10:L10", "b.java:20:L20"] |
| 787 | :echo getqflist({'lines' : myList}).items |
| 788 | |
| 789 | " parse text using a custom 'efm' and return a quickfix list |
| 790 | :echo getqflist({'lines' : ['a.c#10#Line 10'], 'efm':'%f#%l#%m'}).items |
| 791 | |
| 792 | " get the quickfix list window id |
| 793 | :echo getqflist({'winid' : 0}).winid |
| 794 | |
Bram Moolenaar | 647e24b | 2019-03-17 16:39:46 +0100 | [diff] [blame] | 795 | " get the quickfix list window buffer number |
| 796 | :echo getqflist({'qfbufnr' : 0}).qfbufnr |
| 797 | |
Bram Moolenaar | 15142e2 | 2018-04-30 22:19:58 +0200 | [diff] [blame] | 798 | " get the context of the current location list |
| 799 | :echo getloclist(0, {'context' : 0}).context |
| 800 | |
| 801 | " get the location list window id of the third window |
| 802 | :echo getloclist(3, {'winid' : 0}).winid |
Bram Moolenaar | 5b69c22 | 2019-01-11 14:50:06 +0100 | [diff] [blame] | 803 | |
Bram Moolenaar | 647e24b | 2019-03-17 16:39:46 +0100 | [diff] [blame] | 804 | " get the location list window buffer number of the third window |
| 805 | :echo getloclist(3, {'qfbufnr' : 0}).qfbufnr |
| 806 | |
Bram Moolenaar | 5b69c22 | 2019-01-11 14:50:06 +0100 | [diff] [blame] | 807 | " get the file window id of a location list window (winnr: 4) |
| 808 | :echo getloclist(4, {'filewinid' : 0}).filewinid |
Bram Moolenaar | 15142e2 | 2018-04-30 22:19:58 +0200 | [diff] [blame] | 809 | < |
| 810 | *setqflist-examples* |
Bram Moolenaar | d473c8c | 2018-08-11 18:00:22 +0200 | [diff] [blame] | 811 | The |setqflist()| and |setloclist()| functions can be used to set the various |
Bram Moolenaar | 15142e2 | 2018-04-30 22:19:58 +0200 | [diff] [blame] | 812 | attributes of a quickfix and location list respectively. Some examples for |
| 813 | using these functions are below: |
| 814 | > |
Bram Moolenaar | 78ddc06 | 2018-05-15 21:56:34 +0200 | [diff] [blame] | 815 | " create an empty quickfix list with a title and a context |
| 816 | :let t = 'Search results' |
| 817 | :let c = {'cmd' : 'grep'} |
| 818 | :call setqflist([], ' ', {'title' : t, 'context' : c}) |
| 819 | |
Bram Moolenaar | 15142e2 | 2018-04-30 22:19:58 +0200 | [diff] [blame] | 820 | " set the title of the current quickfix list |
| 821 | :call setqflist([], 'a', {'title' : 'Mytitle'}) |
| 822 | |
Bram Moolenaar | 5b69c22 | 2019-01-11 14:50:06 +0100 | [diff] [blame] | 823 | " change the current entry in the list specified by an identifier |
| 824 | :call setqflist([], 'a', {'id' : qfid, 'idx' : 10}) |
| 825 | |
Bram Moolenaar | 15142e2 | 2018-04-30 22:19:58 +0200 | [diff] [blame] | 826 | " set the context of a quickfix list specified by an identifier |
| 827 | :call setqflist([], 'a', {'id' : qfid, 'context' : {'val' : 100}}) |
| 828 | |
| 829 | " create a new quickfix list from a command output |
| 830 | :call setqflist([], ' ', {'lines' : systemlist('grep -Hn main *.c')}) |
| 831 | |
| 832 | " parse text using a custom efm and add to a particular quickfix list |
| 833 | :call setqflist([], 'a', {'id' : qfid, |
| 834 | \ 'lines' : ["a.c#10#L10", "b.c#20#L20"], 'efm':'%f#%l#%m'}) |
| 835 | |
| 836 | " add items to the quickfix list specified by an identifier |
| 837 | :let newItems = [{'filename' : 'a.txt', 'lnum' : 10, 'text' : "Apple"}, |
| 838 | \ {'filename' : 'b.txt', 'lnum' : 20, 'text' : "Orange"}] |
| 839 | :call setqflist([], 'a', {'id' : qfid, 'items' : newItems}) |
| 840 | |
Bram Moolenaar | 78ddc06 | 2018-05-15 21:56:34 +0200 | [diff] [blame] | 841 | " empty a quickfix list specified by an identifier |
| 842 | :call setqflist([], 'r', {'id' : qfid, 'items' : []}) |
| 843 | |
Bram Moolenaar | 15142e2 | 2018-04-30 22:19:58 +0200 | [diff] [blame] | 844 | " free all the quickfix lists in the stack |
| 845 | :call setqflist([], 'f') |
| 846 | |
| 847 | " set the title of the fourth quickfix list |
| 848 | :call setqflist([], 'a', {'nr' : 4, 'title' : 'SomeTitle'}) |
| 849 | |
| 850 | " create a new quickfix list at the end of the stack |
| 851 | :call setqflist([], ' ', {'nr' : '$', |
| 852 | \ 'lines' : systemlist('grep -Hn class *.java')}) |
| 853 | |
| 854 | " create a new location list from a command output |
| 855 | :call setloclist(0, [], ' ', {'lines' : systemlist('grep -Hn main *.c')}) |
| 856 | |
| 857 | " replace the location list entries for the third window |
| 858 | :call setloclist(3, [], 'r', {'items' : newItems}) |
| 859 | < |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 860 | ============================================================================= |
| 861 | 3. Using more than one list of errors *quickfix-error-lists* |
| 862 | |
64-bitman | 88d41ab | 2025-04-06 17:20:39 +0200 | [diff] [blame] | 863 | So far it has been assumed that there is only one list of errors. Actually |
| 864 | there can be multiple used lists that are remembered; see 'chistory' and |
| 865 | 'lhistory'. |
| 866 | When starting a new list, the previous ones are automatically kept. Two |
| 867 | commands can be used to access older error lists. They set one of the |
| 868 | existing error lists as the current one. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 869 | |
| 870 | *:colder* *:col* *E380* |
| 871 | :col[der] [count] Go to older error list. When [count] is given, do |
| 872 | this [count] times. When already at the oldest error |
| 873 | list, an error message is given. |
| 874 | |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 875 | *:lolder* *:lol* |
Bram Moolenaar | 42ebd06 | 2016-07-17 13:35:14 +0200 | [diff] [blame] | 876 | :lol[der] [count] Same as `:colder`, except use the location list for |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 877 | the current window instead of the quickfix list. |
| 878 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 879 | *:cnewer* *:cnew* *E381* |
| 880 | :cnew[er] [count] Go to newer error list. When [count] is given, do |
| 881 | this [count] times. When already at the newest error |
| 882 | list, an error message is given. |
| 883 | |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 884 | *:lnewer* *:lnew* |
Bram Moolenaar | 42ebd06 | 2016-07-17 13:35:14 +0200 | [diff] [blame] | 885 | :lnew[er] [count] Same as `:cnewer`, except use the location list for |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 886 | the current window instead of the quickfix list. |
| 887 | |
Bram Moolenaar | 42ebd06 | 2016-07-17 13:35:14 +0200 | [diff] [blame] | 888 | *:chistory* *:chi* |
Bram Moolenaar | 8ffc7c8 | 2019-05-05 21:00:26 +0200 | [diff] [blame] | 889 | :[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] | 890 | marked with ">". The output looks like: |
Bram Moolenaar | 4700398 | 2021-12-05 21:54:04 +0000 | [diff] [blame] | 891 | error list 1 of 3; 43 errors :make ~ |
| 892 | > error list 2 of 3; 0 errors :helpgrep tag ~ |
| 893 | error list 3 of 3; 15 errors :grep ex_help *.c ~ |
Bram Moolenaar | 42ebd06 | 2016-07-17 13:35:14 +0200 | [diff] [blame] | 894 | |
Bram Moolenaar | 8ffc7c8 | 2019-05-05 21:00:26 +0200 | [diff] [blame] | 895 | When [count] is given, then the count'th quickfix |
| 896 | list is made the current list. Example: > |
| 897 | " Make the 4th quickfix list current |
| 898 | :4chistory |
| 899 | < |
Bram Moolenaar | 42ebd06 | 2016-07-17 13:35:14 +0200 | [diff] [blame] | 900 | *:lhistory* *:lhi* |
Bram Moolenaar | 8ffc7c8 | 2019-05-05 21:00:26 +0200 | [diff] [blame] | 901 | :[count]lhi[story] Show the list of location lists, otherwise like |
Bram Moolenaar | 42ebd06 | 2016-07-17 13:35:14 +0200 | [diff] [blame] | 902 | `:chistory`. |
| 903 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 904 | When adding a new error list, it becomes the current list. |
| 905 | |
| 906 | When ":colder" has been used and ":make" or ":grep" is used to add a new error |
| 907 | list, one newer list is overwritten. This is especially useful if you are |
| 908 | browsing with ":grep" |grep|. If you want to keep the more recent error |
| 909 | lists, use ":cnewer 99" first. |
| 910 | |
Bram Moolenaar | 74240d3 | 2017-12-10 15:26:15 +0100 | [diff] [blame] | 911 | To get the number of lists in the quickfix and location list stack, you can |
| 912 | use the |getqflist()| and |getloclist()| functions respectively with the list |
| 913 | number set to the special value '$'. Examples: > |
| 914 | echo getqflist({'nr' : '$'}).nr |
| 915 | echo getloclist(3, {'nr' : '$'}).nr |
| 916 | To get the number of the current list in the stack: > |
| 917 | echo getqflist({'nr' : 0}).nr |
| 918 | < |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 919 | ============================================================================= |
| 920 | 4. Using :make *:make_makeprg* |
| 921 | |
| 922 | *:mak* *:make* |
Bram Moolenaar | b5b7562 | 2018-03-09 22:22:21 +0100 | [diff] [blame] | 923 | :mak[e][!] [arguments] 1. All relevant |QuickFixCmdPre| autocommands are |
| 924 | executed. |
Bram Moolenaar | b11bd7e | 2005-02-07 22:05:52 +0000 | [diff] [blame] | 925 | 2. If the 'autowrite' option is on, write any changed |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 926 | buffers |
Bram Moolenaar | b11bd7e | 2005-02-07 22:05:52 +0000 | [diff] [blame] | 927 | 3. An errorfile name is made from 'makeef'. If |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 928 | 'makeef' doesn't contain "##", and a file with this |
| 929 | name already exists, it is deleted. |
Bram Moolenaar | b11bd7e | 2005-02-07 22:05:52 +0000 | [diff] [blame] | 930 | 4. The program given with the 'makeprg' option is |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 931 | started (default "make") with the optional |
| 932 | [arguments] and the output is saved in the |
| 933 | errorfile (for Unix it is also echoed on the |
| 934 | screen). |
Bram Moolenaar | b11bd7e | 2005-02-07 22:05:52 +0000 | [diff] [blame] | 935 | 5. The errorfile is read using 'errorformat'. |
Bram Moolenaar | b5b7562 | 2018-03-09 22:22:21 +0100 | [diff] [blame] | 936 | 6. All relevant |QuickFixCmdPost| autocommands are |
| 937 | executed. See example below. |
Bram Moolenaar | 6b803a7 | 2007-05-06 14:25:46 +0000 | [diff] [blame] | 938 | 7. If [!] is not given the first error is jumped to. |
| 939 | 8. The errorfile is deleted. |
Bram Moolenaar | b11bd7e | 2005-02-07 22:05:52 +0000 | [diff] [blame] | 940 | 9. You can now move through the errors with commands |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 941 | like |:cnext| and |:cprevious|, see above. |
| 942 | This command does not accept a comment, any " |
| 943 | characters are considered part of the arguments. |
Bram Moolenaar | 2c7292d | 2017-03-05 17:43:31 +0100 | [diff] [blame] | 944 | If the encoding of the program output differs from the |
| 945 | 'encoding' option, you can use the 'makeencoding' |
| 946 | option to specify the encoding. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 947 | |
Bram Moolenaar | 9f2c6e1 | 2006-02-04 22:45:44 +0000 | [diff] [blame] | 948 | *:lmak* *:lmake* |
| 949 | :lmak[e][!] [arguments] |
| 950 | Same as ":make", except the location list for the |
| 951 | current window is used instead of the quickfix list. |
| 952 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 953 | The ":make" command executes the command given with the 'makeprg' option. |
| 954 | This is done by passing the command to the shell given with the 'shell' |
| 955 | option. This works almost like typing |
| 956 | |
| 957 | ":!{makeprg} [arguments] {shellpipe} {errorfile}". |
| 958 | |
| 959 | {makeprg} is the string given with the 'makeprg' option. Any command can be |
| 960 | used, not just "make". Characters '%' and '#' are expanded as usual on a |
| 961 | command-line. You can use "%<" to insert the current file name without |
| 962 | extension, or "#<" to insert the alternate file name without extension, for |
| 963 | example: > |
| 964 | :set makeprg=make\ #<.o |
| 965 | |
| 966 | [arguments] is anything that is typed after ":make". |
| 967 | {shellpipe} is the 'shellpipe' option. |
| 968 | {errorfile} is the 'makeef' option, with ## replaced to make it unique. |
| 969 | |
Bram Moolenaar | 6dfc28b | 2010-02-11 14:19:15 +0100 | [diff] [blame] | 970 | 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] | 971 | command needs some additional characters after its arguments. The $* is |
| 972 | replaced then by all arguments. Example: > |
| 973 | :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*} |
| 974 | or simpler > |
| 975 | :let &mp = 'latex \\nonstopmode \\input\{$*}' |
| 976 | "$*" can be given multiple times, for example: > |
| 977 | :set makeprg=gcc\ -o\ $*\ $* |
| 978 | |
Bram Moolenaar | 8024f93 | 2020-01-14 19:29:13 +0100 | [diff] [blame] | 979 | The 'shellpipe' option defaults to ">" for the Amiga and ">%s 2>&1" for Win32. |
| 980 | This means that the output of the compiler is saved in a file and not shown on |
| 981 | the screen directly. For Unix "| tee" is used. The compiler output is shown |
| 982 | on the screen and saved in a file the same time. Depending on the shell used |
| 983 | "|& 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] | 984 | |
| 985 | If 'shellpipe' is empty, the {errorfile} part will be omitted. This is useful |
| 986 | for compilers that write to an errorfile themselves (e.g., Manx's Amiga C). |
| 987 | |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 988 | |
| 989 | Using QuickFixCmdPost to fix the encoding ~ |
| 990 | |
| 991 | It may be that 'encoding' is set to an encoding that differs from the messages |
| 992 | your build program produces. This example shows how to fix this after Vim has |
| 993 | read the error messages: > |
| 994 | |
| 995 | function QfMakeConv() |
| 996 | let qflist = getqflist() |
| 997 | for i in qflist |
| 998 | let i.text = iconv(i.text, "cp936", "utf-8") |
| 999 | endfor |
| 1000 | call setqflist(qflist) |
| 1001 | endfunction |
| 1002 | |
| 1003 | au QuickfixCmdPost make call QfMakeConv() |
| 1004 | |
| 1005 | (Example by Faque Cheng) |
Bram Moolenaar | 2c7292d | 2017-03-05 17:43:31 +0100 | [diff] [blame] | 1006 | Another option is using 'makeencoding'. |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 1007 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1008 | ============================================================================== |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1009 | 5. Using :vimgrep and :grep *grep* *lid* |
| 1010 | |
Christian Brabandt | 217d3c1 | 2024-08-05 17:36:09 +0200 | [diff] [blame] | 1011 | Vim has two ways to find matches for a pattern: internal and external. The |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1012 | advantage of the internal grep is that it works on all systems and uses the |
| 1013 | powerful Vim search patterns. An external grep program can be used when the |
| 1014 | Vim grep does not do what you want. |
| 1015 | |
Bram Moolenaar | 8fc061c | 2004-12-29 21:03:02 +0000 | [diff] [blame] | 1016 | The internal method will be slower, because files are read into memory. The |
| 1017 | advantages are: |
| 1018 | - Line separators and encoding are automatically recognized, as if a file is |
| 1019 | being edited. |
| 1020 | - Uses Vim search patterns. Multi-line patterns can be used. |
| 1021 | - When plugins are enabled: compressed and remote files can be searched. |
| 1022 | |gzip| |netrw| |
Bram Moolenaar | a3227e2 | 2006-03-08 21:32:40 +0000 | [diff] [blame] | 1023 | |
| 1024 | 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] | 1025 | 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] | 1026 | 'hidden' option is ignored here to avoid running out of memory or file |
| 1027 | descriptors when searching many files. However, when the |:hide| command |
| 1028 | modifier is used the buffers are kept loaded. This makes following searches |
| 1029 | in the same files a lot faster. |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1030 | |
Bram Moolenaar | 483c5d8 | 2010-10-20 18:45:33 +0200 | [diff] [blame] | 1031 | Note that |:copen| (or |:lopen| for |:lgrep|) may be used to open a buffer |
| 1032 | containing the search results in linked form. The |:silent| command may be |
Bram Moolenaar | d58e929 | 2011-02-09 17:07:58 +0100 | [diff] [blame] | 1033 | 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] | 1034 | the |:grep| command doesn't jump to the first match automatically. These |
| 1035 | commands can be combined to create a NewGrep command: > |
| 1036 | |
| 1037 | command! -nargs=+ NewGrep execute 'silent grep! <args>' | copen 42 |
| 1038 | |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1039 | |
Christian Brabandt | 217d3c1 | 2024-08-05 17:36:09 +0200 | [diff] [blame] | 1040 | 5.1 Using Vim's internal grep |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1041 | |
Bram Moolenaar | e49b69a | 2005-01-08 16:11:57 +0000 | [diff] [blame] | 1042 | *:vim* *:vimgrep* *E682* *E683* |
Yegappan Lakshmanan | bb01a1e | 2021-04-26 21:17:52 +0200 | [diff] [blame] | 1043 | :vim[grep][!] /{pattern}/[g][j][f] {file} ... |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1044 | Search for {pattern} in the files {file} ... and set |
Bram Moolenaar | 30b6581 | 2012-07-12 22:01:11 +0200 | [diff] [blame] | 1045 | the error list to the matches. Files matching |
| 1046 | 'wildignore' are ignored; files in 'suffixes' are |
| 1047 | searched last. |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1048 | |
| 1049 | {pattern} is a Vim search pattern. Instead of |
| 1050 | enclosing it in / any non-ID character (see |
| 1051 | |'isident'|) can be used, so long as it does not |
| 1052 | appear in {pattern}. |
| 1053 | 'ignorecase' applies. To overrule it put |/\c| in the |
| 1054 | pattern to ignore case or |/\C| to match case. |
| 1055 | 'smartcase' is not used. |
Bram Moolenaar | 60abe75 | 2013-03-07 16:32:54 +0100 | [diff] [blame] | 1056 | If {pattern} is empty (e.g. // is specified), the last |
| 1057 | used search pattern is used. |last-pattern| |
Bram Moolenaar | 942db23 | 2021-02-13 18:14:48 +0100 | [diff] [blame] | 1058 | |
Bram Moolenaar | 4c29502 | 2021-05-02 17:19:11 +0200 | [diff] [blame] | 1059 | Flags: |
| 1060 | 'g' Without the 'g' flag each line is added only |
| 1061 | once. With 'g' every match is added. |
| 1062 | |
| 1063 | 'j' Without the 'j' flag Vim jumps to the first |
| 1064 | match. With 'j' only the quickfix list is |
| 1065 | updated. With the [!] any changes in the current |
| 1066 | buffer are abandoned. |
| 1067 | |
| 1068 | 'f' When the 'f' flag is specified, fuzzy string |
| 1069 | matching is used to find matching lines. In this |
| 1070 | case, {pattern} is treated as a literal string |
| 1071 | instead of a regular expression. See |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 1072 | |fuzzy-matching| for more information about fuzzy |
Bram Moolenaar | 3ec3217 | 2021-05-16 12:39:47 +0200 | [diff] [blame] | 1073 | matching strings. |
Bram Moolenaar | 4c29502 | 2021-05-02 17:19:11 +0200 | [diff] [blame] | 1074 | |
Bram Moolenaar | 942db23 | 2021-02-13 18:14:48 +0100 | [diff] [blame] | 1075 | |QuickFixCmdPre| and |QuickFixCmdPost| are triggered. |
| 1076 | A file that is opened for matching may use a buffer |
| 1077 | number, but it is reused if possible to avoid |
| 1078 | consuming buffer numbers. |
| 1079 | |
Bram Moolenaar | ba3ff53 | 2018-11-04 14:45:49 +0100 | [diff] [blame] | 1080 | :{count}vim[grep] ... |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 1081 | When a number is put before the command this is used |
| 1082 | as the maximum number of matches to find. Use |
| 1083 | ":1vimgrep pattern file" to find only the first. |
| 1084 | Useful if you only want to check if there is a match |
| 1085 | and quit quickly when it's found. |
| 1086 | |
Bram Moolenaar | dcaf10e | 2005-01-21 11:55:25 +0000 | [diff] [blame] | 1087 | Every second or so the searched file name is displayed |
| 1088 | to give you an idea of the progress made. |
Bram Moolenaar | 8fc061c | 2004-12-29 21:03:02 +0000 | [diff] [blame] | 1089 | Examples: > |
| 1090 | :vimgrep /an error/ *.c |
| 1091 | :vimgrep /\<FileName\>/ *.h include/* |
Bram Moolenaar | 231334e | 2005-07-25 20:46:57 +0000 | [diff] [blame] | 1092 | :vimgrep /myfunc/ **/*.c |
| 1093 | < For the use of "**" see |starstar-wildcard|. |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1094 | |
Bram Moolenaar | 8fc061c | 2004-12-29 21:03:02 +0000 | [diff] [blame] | 1095 | :vim[grep][!] {pattern} {file} ... |
| 1096 | Like above, but instead of enclosing the pattern in a |
Shane Harper | c1b3984 | 2024-07-17 19:40:40 +0200 | [diff] [blame] | 1097 | non-ID character use a white space separated pattern. |
| 1098 | The pattern must start with an ID character. |
Bram Moolenaar | 8fc061c | 2004-12-29 21:03:02 +0000 | [diff] [blame] | 1099 | Example: > |
| 1100 | :vimgrep Error *.c |
| 1101 | < |
Bram Moolenaar | 9f2c6e1 | 2006-02-04 22:45:44 +0000 | [diff] [blame] | 1102 | *:lv* *:lvimgrep* |
Yegappan Lakshmanan | bb01a1e | 2021-04-26 21:17:52 +0200 | [diff] [blame] | 1103 | :lv[imgrep][!] /{pattern}/[g][j][f] {file} ... |
Bram Moolenaar | 9f2c6e1 | 2006-02-04 22:45:44 +0000 | [diff] [blame] | 1104 | :lv[imgrep][!] {pattern} {file} ... |
| 1105 | Same as ":vimgrep", except the location list for the |
| 1106 | current window is used instead of the quickfix list. |
| 1107 | |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1108 | *:vimgrepa* *:vimgrepadd* |
Yegappan Lakshmanan | bb01a1e | 2021-04-26 21:17:52 +0200 | [diff] [blame] | 1109 | :vimgrepa[dd][!] /{pattern}/[g][j][f] {file} ... |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1110 | :vimgrepa[dd][!] {pattern} {file} ... |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1111 | Just like ":vimgrep", but instead of making a new list |
| 1112 | of errors the matches are appended to the current |
| 1113 | list. |
| 1114 | |
Bram Moolenaar | 9f2c6e1 | 2006-02-04 22:45:44 +0000 | [diff] [blame] | 1115 | *:lvimgrepa* *:lvimgrepadd* |
Yegappan Lakshmanan | bb01a1e | 2021-04-26 21:17:52 +0200 | [diff] [blame] | 1116 | :lvimgrepa[dd][!] /{pattern}/[g][j][f] {file} ... |
Bram Moolenaar | 9f2c6e1 | 2006-02-04 22:45:44 +0000 | [diff] [blame] | 1117 | :lvimgrepa[dd][!] {pattern} {file} ... |
| 1118 | Same as ":vimgrepadd", except the location list for |
| 1119 | the current window is used instead of the quickfix |
| 1120 | list. |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1121 | |
| 1122 | 5.2 External grep |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1123 | |
| 1124 | Vim can interface with "grep" and grep-like programs (such as the GNU |
| 1125 | id-utils) in a similar way to its compiler integration (see |:make| above). |
| 1126 | |
| 1127 | [Unix trivia: The name for the Unix "grep" command comes from ":g/re/p", where |
| 1128 | "re" stands for Regular Expression.] |
| 1129 | |
| 1130 | *:gr* *:grep* |
| 1131 | :gr[ep][!] [arguments] Just like ":make", but use 'grepprg' instead of |
| 1132 | 'makeprg' and 'grepformat' instead of 'errorformat'. |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1133 | When 'grepprg' is "internal" this works like |
| 1134 | |:vimgrep|. Note that the pattern needs to be |
| 1135 | enclosed in separator characters then. |
Bram Moolenaar | 2c7292d | 2017-03-05 17:43:31 +0100 | [diff] [blame] | 1136 | If the encoding of the program output differs from the |
| 1137 | 'encoding' option, you can use the 'makeencoding' |
| 1138 | option to specify the encoding. |
Bram Moolenaar | 9f2c6e1 | 2006-02-04 22:45:44 +0000 | [diff] [blame] | 1139 | |
| 1140 | *:lgr* *:lgrep* |
| 1141 | :lgr[ep][!] [arguments] Same as ":grep", except the location list for the |
| 1142 | current window is used instead of the quickfix list. |
| 1143 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1144 | *:grepa* *:grepadd* |
| 1145 | :grepa[dd][!] [arguments] |
| 1146 | Just like ":grep", but instead of making a new list of |
| 1147 | errors the matches are appended to the current list. |
| 1148 | Example: > |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 1149 | :call setqflist([]) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1150 | :bufdo grepadd! something % |
| 1151 | < The first command makes a new error list which is |
| 1152 | empty. The second command executes "grepadd" for each |
| 1153 | listed buffer. Note the use of ! to avoid that |
| 1154 | ":grepadd" jumps to the first error, which is not |
| 1155 | allowed with |:bufdo|. |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 1156 | An example that uses the argument list and avoids |
| 1157 | errors for files without matches: > |
Bram Moolenaar | ade0d39 | 2020-01-21 22:33:58 +0100 | [diff] [blame] | 1158 | :silent argdo try |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 1159 | \ | grepadd! something % |
| 1160 | \ | catch /E480:/ |
| 1161 | \ | endtry" |
| 1162 | < |
Bram Moolenaar | 2c7292d | 2017-03-05 17:43:31 +0100 | [diff] [blame] | 1163 | If the encoding of the program output differs from the |
| 1164 | 'encoding' option, you can use the 'makeencoding' |
| 1165 | option to specify the encoding. |
| 1166 | |
Bram Moolenaar | 9f2c6e1 | 2006-02-04 22:45:44 +0000 | [diff] [blame] | 1167 | *:lgrepa* *:lgrepadd* |
| 1168 | :lgrepa[dd][!] [arguments] |
| 1169 | Same as ":grepadd", except the location list for the |
| 1170 | current window is used instead of the quickfix list. |
| 1171 | |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1172 | 5.3 Setting up external grep |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1173 | |
| 1174 | 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] | 1175 | 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] | 1176 | |
| 1177 | :grep foo *.c |
| 1178 | |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 1179 | 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] | 1180 | arguments to :grep are passed straight to the "grep" program, so you can use |
| 1181 | whatever options your "grep" supports. |
| 1182 | |
| 1183 | 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] | 1184 | 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] | 1185 | 'grepprg' if: |
| 1186 | |
| 1187 | a) You are using a program that isn't called "grep" |
| 1188 | b) You have to call grep with a full path |
| 1189 | c) You want to pass other options automatically (e.g. case insensitive |
| 1190 | search.) |
| 1191 | |
| 1192 | Once "grep" has executed, Vim parses the results using the 'grepformat' |
| 1193 | option. This option works in the same way as the 'errorformat' option - see |
| 1194 | that for details. You may need to change 'grepformat' from the default if |
| 1195 | your grep outputs in a non-standard format, or you are using some other |
| 1196 | program with a special format. |
| 1197 | |
| 1198 | Once the results are parsed, Vim loads the first file containing a match and |
| 1199 | jumps to the appropriate line, in the same way that it jumps to a compiler |
| 1200 | error in |quickfix| mode. You can then use the |:cnext|, |:clist|, etc. |
| 1201 | commands to see the other matches. |
| 1202 | |
| 1203 | |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1204 | 5.4 Using :grep with id-utils |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1205 | |
| 1206 | You can set up :grep to work with the GNU id-utils like this: > |
| 1207 | |
| 1208 | :set grepprg=lid\ -Rgrep\ -s |
| 1209 | :set grepformat=%f:%l:%m |
| 1210 | |
| 1211 | then > |
| 1212 | :grep (regexp) |
| 1213 | |
| 1214 | works just as you'd expect. |
| 1215 | (provided you remembered to mkid first :) |
| 1216 | |
| 1217 | |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1218 | 5.5 Browsing source code with :vimgrep or :grep |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1219 | |
| 1220 | Using the stack of error lists that Vim keeps, you can browse your files to |
| 1221 | look for functions and the functions they call. For example, suppose that you |
| 1222 | have to add an argument to the read_file() function. You enter this command: > |
| 1223 | |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1224 | :vimgrep /\<read_file\>/ *.c |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1225 | |
| 1226 | You use ":cn" to go along the list of matches and add the argument. At one |
| 1227 | place you have to get the new argument from a higher level function msg(), and |
| 1228 | need to change that one too. Thus you use: > |
| 1229 | |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1230 | :vimgrep /\<msg\>/ *.c |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1231 | |
| 1232 | While changing the msg() functions, you find another function that needs to |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1233 | get the argument from a higher level. You can again use ":vimgrep" to find |
| 1234 | these functions. Once you are finished with one function, you can use > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1235 | |
| 1236 | :colder |
| 1237 | |
| 1238 | to go back to the previous one. |
| 1239 | |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 1240 | 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] | 1241 | 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] | 1242 | 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] | 1243 | way. If you do this consistently, you will find all locations without the |
| 1244 | need to write down a "todo" list. |
| 1245 | |
| 1246 | ============================================================================= |
| 1247 | 6. Selecting a compiler *compiler-select* |
| 1248 | |
| 1249 | *:comp* *:compiler* *E666* |
| 1250 | :comp[iler][!] {name} Set options to work with compiler {name}. |
| 1251 | Without the "!" options are set for the |
| 1252 | current buffer. With "!" global options are |
| 1253 | set. |
| 1254 | If you use ":compiler foo" in "file.foo" and |
| 1255 | then ":compiler! bar" in another buffer, Vim |
| 1256 | will keep on using "foo" in "file.foo". |
| 1257 | {not available when compiled without the |
| 1258 | |+eval| feature} |
| 1259 | |
| 1260 | |
| 1261 | 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] | 1262 | selected compiler. For `:compiler` local options are set, for `:compiler!` |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1263 | global options. |
| 1264 | *current_compiler* |
| 1265 | To support older Vim versions, the plugins always use "current_compiler" and |
| 1266 | not "b:current_compiler". What the command actually does is the following: |
| 1267 | |
| 1268 | - Delete the "current_compiler" and "b:current_compiler" variables. |
| 1269 | - Define the "CompilerSet" user command. With "!" it does ":set", without "!" |
| 1270 | it does ":setlocal". |
| 1271 | - Execute ":runtime! compiler/{name}.vim". The plugins are expected to set |
| 1272 | options with "CompilerSet" and set the "current_compiler" variable to the |
| 1273 | name of the compiler. |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1274 | - Delete the "CompilerSet" user command. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1275 | - Set "b:current_compiler" to the value of "current_compiler". |
| 1276 | - Without "!" the old value of "current_compiler" is restored. |
| 1277 | |
| 1278 | |
| 1279 | For writing a compiler plugin, see |write-compiler-plugin|. |
| 1280 | |
Konfekt | 077d1d2 | 2024-09-10 21:06:22 +0200 | [diff] [blame] | 1281 | Use the |compiler-make| plugin to undo the effect of a compiler plugin. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1282 | |
Konfekt | af449f6 | 2024-10-05 17:09:21 +0200 | [diff] [blame] | 1283 | CPPCHECK *quickfix-cppcheck* *compiler-cppcheck* |
| 1284 | |
| 1285 | Use g/b:`c_cppcheck_params` to set cppcheck parameters. The global |
| 1286 | settings by default include |
| 1287 | |
| 1288 | - `--verbose`: Enables verbose output. |
| 1289 | - `--force`: Forces checking of all configurations. |
| 1290 | - `--inline-suppr`: Allows inline suppressions. |
| 1291 | - `--enable=...`: Enables specific checks like warnings, style, performance, |
| 1292 | portability, information, and missing includes. |
| 1293 | - `-j`: Utilizes multiple processors if available, determined by the |
| 1294 | `getconf` command if available (requires omitting the unusedFunction check) |
| 1295 | |
| 1296 | For C++ files (`filetype == 'cpp'`), the `--language=c++` option is added to |
| 1297 | ensure Cppcheck treats the file as C++. |
| 1298 | |
| 1299 | If compile_commands.json is present in the current directory, it is added as a |
| 1300 | `--project` parameter to the command line. Otherwise, by default the |
| 1301 | directories in &path are passed as include directories. These can be set by |
| 1302 | g/b:`c_cppcheck_includes` as a list of `-I` flags. Tim Pope's vim-apathy |
| 1303 | plug-in [0] can expand &path. To also append the folders in a git repo use > |
| 1304 | |
| 1305 | let &l:path = join(systemlist('git ls-tree -d --name-only -r HEAD'), ',') |
| 1306 | |
| 1307 | [0] https://github.com/tpope/vim-apathy |
| 1308 | |
Bram Moolenaar | 7db29e4 | 2022-12-11 15:53:04 +0000 | [diff] [blame] | 1309 | DOTNET *compiler-dotnet* |
| 1310 | |
| 1311 | The .NET CLI compiler outputs both errors and warnings by default. The output |
| 1312 | may be limited to include only errors, by setting the g:dotnet_errors_only |
| 1313 | variable to |v:true|. |
| 1314 | |
Bram Moolenaar | 938ae28 | 2023-02-20 20:44:55 +0000 | [diff] [blame] | 1315 | The associated project name is included in each error and warning. To suppress |
Bram Moolenaar | 7db29e4 | 2022-12-11 15:53:04 +0000 | [diff] [blame] | 1316 | the project name, set the g:dotnet_show_project_file variable to |v:false|. |
| 1317 | |
| 1318 | Example: limit output to only display errors, and suppress the project name: > |
| 1319 | let dotnet_errors_only = v:true |
| 1320 | let dotnet_show_project_file = v:false |
| 1321 | compiler dotnet |
| 1322 | < |
Bram Moolenaar | bae0c16 | 2007-05-10 19:30:25 +0000 | [diff] [blame] | 1323 | GCC *quickfix-gcc* *compiler-gcc* |
| 1324 | |
| 1325 | There's one variable you can set for the GCC compiler: |
| 1326 | |
| 1327 | g:compiler_gcc_ignore_unmatched_lines |
| 1328 | Ignore lines that don't match any patterns |
| 1329 | defined for GCC. Useful if output from |
| 1330 | commands run from make are generating false |
| 1331 | positives. |
| 1332 | |
Doug Kearns | 0ddab58 | 2024-06-16 16:58:09 +0200 | [diff] [blame] | 1333 | JAVAC *compiler-javac* |
| 1334 | |
| 1335 | Commonly used compiler options can be added to 'makeprg' by setting the |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1336 | b/g:javac_makeprg_params variable. For example: > |
Doug Kearns | 0ddab58 | 2024-06-16 16:58:09 +0200 | [diff] [blame] | 1337 | |
| 1338 | let g:javac_makeprg_params = "-Xlint:all -encoding utf-8" |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1339 | |
| 1340 | MAVEN *compiler-maven* |
| 1341 | |
| 1342 | Commonly used compiler options can be added to 'makeprg' by setting the |
| 1343 | b/g:maven_makeprg_params variable. For example: > |
| 1344 | |
| 1345 | let g:maven_makeprg_params = "-DskipTests -U -X" |
| 1346 | |
| 1347 | SPOTBUGS *compiler-spotbugs* |
| 1348 | |
| 1349 | SpotBugs is a static analysis tool that can be used to find bugs in Java. |
| 1350 | It scans the Java bytecode of all classes in the currently open buffer. |
| 1351 | (Therefore, `:compiler! spotbugs` is not supported.) |
| 1352 | |
| 1353 | Commonly used compiler options can be added to 'makeprg' by setting the |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1354 | "b:" or "g:spotbugs_makeprg_params" variable. For example: >vim |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1355 | |
| 1356 | let b:spotbugs_makeprg_params = "-longBugCodes -effort:max -low" |
| 1357 | |
| 1358 | The global default is "-workHard -experimental". |
| 1359 | |
| 1360 | By default, the class files are searched in the directory where the source |
| 1361 | files are placed. However, typical Java projects use distinct directories |
| 1362 | for source files and class files. To make both known to SpotBugs, assign |
| 1363 | their paths (distinct and relative to their common root directory) to the |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1364 | following properties (using the example of a common Maven project): >vim |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1365 | |
| 1366 | let g:spotbugs_properties = { |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1367 | \ 'sourceDirPath': ['src/main/java'], |
| 1368 | \ 'classDirPath': ['target/classes'], |
| 1369 | \ 'testSourceDirPath': ['src/test/java'], |
| 1370 | \ 'testClassDirPath': ['target/test-classes'], |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1371 | \ } |
| 1372 | |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1373 | Note that source and class path entries are expected to come in pairs: define |
| 1374 | both "sourceDirPath" and "classDirPath" when you are considering at least one, |
| 1375 | and apply the same logic to "testSourceDirPath" and "testClassDirPath". |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1376 | Note that values for the path keys describe only for SpotBugs where to look |
| 1377 | for files; refer to the documentation for particular compiler plugins for more |
| 1378 | information. |
| 1379 | |
| 1380 | The default pre- and post-compiler actions are provided for Ant, Maven, and |
| 1381 | Javac compiler plugins and can be selected by assigning the name of a compiler |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1382 | plugin (`ant`, `maven`, or `javac`) to the "compiler" key: >vim |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1383 | |
| 1384 | let g:spotbugs_properties = { |
| 1385 | \ 'compiler': 'maven', |
| 1386 | \ } |
| 1387 | |
| 1388 | This single setting is essentially equivalent to all the settings below, with |
| 1389 | the exception made for the "PreCompilerAction" and "PreCompilerTestAction" |
| 1390 | values: their listed |Funcref|s will obtain no-op implementations whereas the |
| 1391 | implicit Funcrefs of the "compiler" key will obtain the requested defaults if |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1392 | available. >vim |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1393 | |
| 1394 | let g:spotbugs_properties = { |
| 1395 | \ 'PreCompilerAction': |
| 1396 | \ function('spotbugs#DefaultPreCompilerAction'), |
| 1397 | \ 'PreCompilerTestAction': |
| 1398 | \ function('spotbugs#DefaultPreCompilerTestAction'), |
| 1399 | \ 'PostCompilerAction': |
| 1400 | \ function('spotbugs#DefaultPostCompilerAction'), |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1401 | \ 'sourceDirPath': ['src/main/java'], |
| 1402 | \ 'classDirPath': ['target/classes'], |
| 1403 | \ 'testSourceDirPath': ['src/test/java'], |
| 1404 | \ 'testClassDirPath': ['target/test-classes'], |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1405 | \ } |
| 1406 | |
| 1407 | With default actions, the compiler of choice will attempt to rebuild the class |
| 1408 | files for the buffer (and possibly for the whole project) as soon as a Java |
| 1409 | syntax file is loaded; then, `spotbugs` will attempt to analyze the quality of |
| 1410 | the compilation unit of the buffer. |
| 1411 | |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1412 | Vim commands proficient in 'makeprg' [0] can be composed with default actions. |
| 1413 | Begin by considering which of the supported keys, "DefaultPreCompilerCommand", |
| 1414 | "DefaultPreCompilerTestCommand", or "DefaultPostCompilerCommand", you need to |
| 1415 | write an implementation for, observing that each of these keys corresponds to |
| 1416 | a particular "*Action" key. Follow it by defining a new function that always |
| 1417 | declares an only parameter of type string and puts to use a command equivalent |
| 1418 | of |:make|, and assigning its |Funcref| to the selected key. For example: |
| 1419 | >vim |
| 1420 | function! GenericPostCompilerCommand(arguments) abort |
| 1421 | execute 'make ' . a:arguments |
| 1422 | endfunction |
| 1423 | |
| 1424 | let g:spotbugs_properties = { |
| 1425 | \ 'DefaultPostCompilerCommand': |
| 1426 | \ function('GenericPostCompilerCommand'), |
| 1427 | \ } |
| 1428 | |
Aliaksei Budavei | 2e25247 | 2024-12-27 16:46:36 +0100 | [diff] [blame] | 1429 | When "PostCompilerAction" is available, "PostCompilerActionExecutor" is also |
| 1430 | supported. Its value must be a Funcref pointing to a function that always |
| 1431 | declares a single parameter of type string and decides whether |:execute| can |
| 1432 | be dispatched on its argument, containing a pending post-compiler action, |
| 1433 | after ascertaining the current status of |:cc| (or |:ll|): >vim |
| 1434 | |
| 1435 | function! GenericPostCompilerActionExecutor(action) abort |
| 1436 | try |
| 1437 | cc |
| 1438 | catch /\<E42:/ |
| 1439 | execute a:action |
| 1440 | endtry |
| 1441 | endfunction |
| 1442 | |
| 1443 | Complementary, some or all of the available "Pre*Action"s (or "*Pre*Command"s) |
| 1444 | may run `:doautocmd java_spotbugs_post User` in their implementations before |
| 1445 | |:make| (or its equivalent) to define a once-only |ShellCmdPost| `:autocmd` |
| 1446 | that will arrange for "PostCompilerActionExecutor" to be invoked; and then run |
| 1447 | `:doautocmd java_spotbugs_post ShellCmdPost` to consume this event: >vim |
| 1448 | |
| 1449 | function! GenericPreCompilerCommand(arguments) abort |
| 1450 | if !exists('g:spotbugs_compilation_done') |
| 1451 | doautocmd java_spotbugs_post User |
| 1452 | execute 'make ' . a:arguments |
| 1453 | " only run doautocmd when :make was synchronous |
| 1454 | " see note below |
| 1455 | doautocmd java_spotbugs_post ShellCmdPost " XXX: (a) |
| 1456 | let g:spotbugs_compilation_done = 1 |
| 1457 | else |
| 1458 | cc |
| 1459 | endif |
| 1460 | endfunction |
| 1461 | |
| 1462 | function! GenericPreCompilerTestCommand(arguments) abort |
| 1463 | if !exists('g:spotbugs_test_compilation_done') |
| 1464 | doautocmd java_spotbugs_post User |
| 1465 | execute 'make ' . a:arguments |
| 1466 | " only run doautocmd when :make was synchronous |
| 1467 | " see note below |
| 1468 | doautocmd java_spotbugs_post ShellCmdPost " XXX: (b) |
| 1469 | let g:spotbugs_test_compilation_done = 1 |
| 1470 | else |
| 1471 | cc |
| 1472 | endif |
| 1473 | endfunction |
| 1474 | |
| 1475 | let g:spotbugs_properties = { |
| 1476 | \ 'compiler': 'maven', |
| 1477 | \ 'DefaultPreCompilerCommand': |
| 1478 | \ function('GenericPreCompilerCommand'), |
| 1479 | \ 'DefaultPreCompilerTestCommand': |
| 1480 | \ function('GenericPreCompilerTestCommand'), |
| 1481 | \ 'PostCompilerActionExecutor': |
| 1482 | \ function('GenericPostCompilerActionExecutor'), |
| 1483 | \ } |
| 1484 | |
| 1485 | If a command equivalent of `:make` is capable of asynchronous execution and |
| 1486 | consuming `ShellCmdPost` events, `:doautocmd java_spotbugs_post ShellCmdPost` |
| 1487 | must be removed from such "*Action" (or "*Command") implementations (i.e. the |
| 1488 | lines `(a)` and `(b)` in the listed examples) to retain a sequential order for |
| 1489 | non-blocking execution, and any notification (see below) must be suppressed. |
| 1490 | A `ShellCmdPost` `:autocmd` can be associated with any |:augroup| by assigning |
| 1491 | its name to the "augroupForPostCompilerAction" key. |
| 1492 | |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1493 | When default actions are not suited to a desired workflow, proceed by writing |
| 1494 | arbitrary functions yourself and matching their Funcrefs to the supported |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1495 | keys: "PreCompilerAction", "PreCompilerTestAction", and "PostCompilerAction". |
| 1496 | |
| 1497 | The next example re-implements the default pre-compiler actions for a Maven |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1498 | project and requests other default Maven settings with the "compiler" entry: |
| 1499 | >vim |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1500 | function! MavenPreCompilerAction() abort |
| 1501 | call spotbugs#DeleteClassFiles() |
| 1502 | compiler maven |
| 1503 | make compile |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1504 | cc |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1505 | endfunction |
| 1506 | |
| 1507 | function! MavenPreCompilerTestAction() abort |
| 1508 | call spotbugs#DeleteClassFiles() |
| 1509 | compiler maven |
| 1510 | make test-compile |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1511 | cc |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1512 | endfunction |
| 1513 | |
| 1514 | let g:spotbugs_properties = { |
| 1515 | \ 'compiler': 'maven', |
| 1516 | \ 'PreCompilerAction': |
| 1517 | \ function('MavenPreCompilerAction'), |
| 1518 | \ 'PreCompilerTestAction': |
| 1519 | \ function('MavenPreCompilerTestAction'), |
| 1520 | \ } |
| 1521 | |
| 1522 | Note that all entered custom settings will take precedence over the matching |
| 1523 | default settings in "g:spotbugs_properties". |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1524 | Note that it is necessary to notify the plugin of the result of a pre-compiler |
| 1525 | action before further work can be undertaken. Using |:cc| after |:make| (or |
| 1526 | |:ll| after |:lmake|) as the last command of an action is the supported means |
| 1527 | of such communication. |
| 1528 | |
| 1529 | Two commands, "SpotBugsRemoveBufferAutocmd" and "SpotBugsDefineBufferAutocmd", |
| 1530 | are provided to toggle actions for buffer-local autocommands. For example, to |
| 1531 | also run actions on any |BufWritePost| and |SigUSR1| event, add these lines to |
| 1532 | `~/.vim/after/ftplugin/java.vim`: >vim |
| 1533 | |
| 1534 | if exists(':SpotBugsDefineBufferAutocmd') == 2 |
| 1535 | SpotBugsDefineBufferAutocmd BufWritePost SigUSR1 |
| 1536 | endif |
| 1537 | |
| 1538 | Otherwise, you can turn to `:doautocmd java_spotbugs User` at any time. |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1539 | |
| 1540 | The "g:spotbugs_properties" variable is consulted by the Java filetype plugin |
| 1541 | (|ft-java-plugin|) to arrange for the described automation, and, therefore, it |
| 1542 | must be defined before |FileType| events can take place for the buffers loaded |
| 1543 | with Java source files. It could, for example, be set in a project-local |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1544 | |vimrc| loaded by [1]. |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1545 | |
Aliaksei Budavei | 368ef5a | 2024-12-16 21:37:54 +0100 | [diff] [blame] | 1546 | Both "g:spotbugs_properties" and "b:spotbugs_properties" are recognized and |
| 1547 | must be modifiable (|:unlockvar|). The "*Command" entries are always treated |
| 1548 | as global functions to be shared among all Java buffers. |
| 1549 | |
| 1550 | The SpotBugs Java library and, by extension, its distributed shell scripts do |
| 1551 | not support in the `-textui` mode listed pathnames with directory filenames |
| 1552 | that contain blank characters [2]. To work around this limitation, consider |
| 1553 | making a symbolic link to such a directory from a directory that does not have |
| 1554 | blank characters in its name and passing this information to SpotBugs: >vim |
| 1555 | |
| 1556 | let g:spotbugs_alternative_path = { |
| 1557 | \ 'fromPath': 'path/to/dir_without_blanks', |
| 1558 | \ 'toPath': 'path/to/dir with blanks', |
| 1559 | \ } |
| 1560 | |
| 1561 | [0] https://github.com/Konfekt/vim-compilers |
| 1562 | [1] https://github.com/MarcWeber/vim-addon-local-vimrc |
| 1563 | [2] https://github.com/spotbugs/spotbugs/issues/909 |
Konfekt | 65311c6 | 2024-11-28 21:06:09 +0100 | [diff] [blame] | 1564 | |
Konfekt | 077d1d2 | 2024-09-10 21:06:22 +0200 | [diff] [blame] | 1565 | GNU MAKE *compiler-make* |
| 1566 | |
| 1567 | Since the default make program is "make", the compiler plugin for make, |
| 1568 | :compiler make, will reset the 'makeprg' and 'errorformat' option to |
| 1569 | the default values and unlet any variables that may have been set by a |
| 1570 | previous compiler plugin. |
Doug Kearns | 0ddab58 | 2024-06-16 16:58:09 +0200 | [diff] [blame] | 1571 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1572 | MANX AZTEC C *quickfix-manx* *compiler-manx* |
| 1573 | |
| 1574 | To use Vim with Manx's Aztec C compiler on the Amiga you should do the |
| 1575 | following: |
| 1576 | - Set the CCEDIT environment variable with the command: > |
| 1577 | mset "CCEDIT=vim -q" |
| 1578 | - Compile with the -qf option. If the compiler finds any errors, Vim is |
| 1579 | started and the cursor is positioned on the first error. The error message |
| 1580 | will be displayed on the last line. You can go to other errors with the |
| 1581 | commands mentioned above. You can fix the errors and write the file(s). |
| 1582 | - If you exit Vim normally the compiler will re-compile the same file. If you |
| 1583 | exit with the :cq command, the compiler will terminate. Do this if you |
| 1584 | cannot fix the error, or if another file needs to be compiled first. |
| 1585 | |
| 1586 | There are some restrictions to the Quickfix mode on the Amiga. The |
| 1587 | compiler only writes the first 25 errors to the errorfile (Manx's |
| 1588 | documentation does not say how to get more). If you want to find the others, |
| 1589 | you will have to fix a few errors and exit the editor. After recompiling, |
| 1590 | up to 25 remaining errors will be found. |
| 1591 | |
| 1592 | If Vim was started from the compiler, the :sh and some :! commands will not |
| 1593 | work, because Vim is then running in the same process as the compiler and |
| 1594 | stdin (standard input) will not be interactive. |
| 1595 | |
Konfekt | 7cc0e91 | 2024-09-09 20:03:03 +0200 | [diff] [blame] | 1596 | GROFF *quickfix-groff* *compiler-groff* |
| 1597 | |
| 1598 | The GROFF compiler plugin uses the mom macro set (documented in the groff_mom |
| 1599 | manpage) as input and expects that the output file type extension is passed to |
| 1600 | make, say :make html or :make pdf. |
| 1601 | |
| 1602 | Additional arguments can be passed to groff by setting them in |
| 1603 | `b:groff_compiler_args` or `g:groff_compiler_args`. The `language` argument |
| 1604 | passed to groff is set using 'spelllang'; it can be overridden by setting |
zeertzjq | 8feed3a | 2024-09-29 10:37:47 +0200 | [diff] [blame] | 1605 | `b:groff_compiler_lang`. The default encoding is `UTF-8` and can be changed |
Konfekt | 7cc0e91 | 2024-09-09 20:03:03 +0200 | [diff] [blame] | 1606 | by setting `b:groff_compiler_encoding` or `g:groff_compiler_encoding`. |
| 1607 | |
Konfekt | fb8f31e | 2024-04-15 19:33:08 +0200 | [diff] [blame] | 1608 | PANDOC *quickfix-pandoc* *compiler-pandoc* |
| 1609 | |
| 1610 | The Pandoc compiler plugin expects that an output file type extension is |
| 1611 | passed to make, say :make html or :make pdf. |
| 1612 | |
| 1613 | Additional arguments can be passed to pandoc: |
| 1614 | |
| 1615 | - either by appending them to make, say `:make html --self-contained` . |
h-east | 9c4389a | 2024-06-09 16:32:19 +0200 | [diff] [blame] | 1616 | - or setting them in `b:pandoc_compiler_args` or `g:pandoc_compiler_args`. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1617 | |
Konfekt | d55e698 | 2024-08-20 20:18:28 +0200 | [diff] [blame] | 1618 | The `--from` argument is an educated guess using the buffer file type; |
| 1619 | it can be overridden by setting `b:pandoc_compiler_from`. |
Christian Brabandt | d30ffdc | 2024-09-09 20:26:28 +0200 | [diff] [blame] | 1620 | The `--metadata lang` argument is set using 'spelllang'; |
Konfekt | d55e698 | 2024-08-20 20:18:28 +0200 | [diff] [blame] | 1621 | If `--from=markdown` is assumed and no title set in a title header or |
| 1622 | YAML block, then the filename (without extension) is used as the title. |
| 1623 | |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 1624 | PERL *quickfix-perl* *compiler-perl* |
| 1625 | |
| 1626 | The Perl compiler plugin doesn't actually compile, but invokes Perl's internal |
| 1627 | syntax checking feature and parses the output for possible errors so you can |
| 1628 | correct them in quick-fix mode. |
| 1629 | |
| 1630 | Warnings are forced regardless of "no warnings" or "$^W = 0" within the file |
| 1631 | being checked. To disable this set g:perl_compiler_force_warnings to a zero |
| 1632 | value. For example: > |
| 1633 | let g:perl_compiler_force_warnings = 0 |
| 1634 | |
Konfekt | 6d9a145 | 2024-11-07 21:40:22 +0100 | [diff] [blame] | 1635 | MYPY TYPE CHECKER *compiler-mypy* |
| 1636 | |
| 1637 | Commonly used compiler options can be added to 'makeprg' by setting the |
| 1638 | b/g:mypy_makeprg_params variable. For example: > |
| 1639 | |
| 1640 | let b:mypy_makeprg_params = "--warn-unused-ignores" |
| 1641 | |
| 1642 | The global default is "--strict --ignore-missing-imports". |
| 1643 | |
| 1644 | RUFF LINTER *compiler-ruff* |
| 1645 | |
| 1646 | Commonly used compiler options can be added to 'makeprg' by setting the |
| 1647 | b/g:ruff_makeprg_params variable. For example: > |
| 1648 | |
Konfekt | 210c49b | 2024-11-12 20:48:31 +0100 | [diff] [blame] | 1649 | let b:ruff_makeprg_params = "--max-line-length "..&textwidth |
Konfekt | 6d9a145 | 2024-11-07 21:40:22 +0100 | [diff] [blame] | 1650 | |
| 1651 | The global default is "--preview". |
| 1652 | |
| 1653 | PYLINT LINTER *compiler-pylint* |
| 1654 | |
| 1655 | Commonly used compiler options can be added to 'makeprg' by setting the |
| 1656 | b/g:pylint_makeprg_params variable. For example: > |
| 1657 | |
Konfekt | 210c49b | 2024-11-12 20:48:31 +0100 | [diff] [blame] | 1658 | let b:pylint_makeprg_params = "--max-line-length "..&textwidth |
Konfekt | 6d9a145 | 2024-11-07 21:40:22 +0100 | [diff] [blame] | 1659 | |
Konfekt | 210c49b | 2024-11-12 20:48:31 +0100 | [diff] [blame] | 1660 | The global default is "--jobs=0" to use (almost) all cores. |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 1661 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1662 | PYUNIT COMPILER *compiler-pyunit* |
| 1663 | |
| 1664 | 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] | 1665 | Python language. It is included into standard Python distribution |
| 1666 | 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] | 1667 | http://pyunit.sourceforge.net. |
| 1668 | |
| 1669 | When you run your tests with the help of the framework, possible errors |
| 1670 | are parsed by Vim and presented for you in quick-fix mode. |
| 1671 | |
| 1672 | Unfortunately, there is no standard way to run the tests. |
| 1673 | The alltests.py script seems to be used quite often, that's all. |
| 1674 | Useful values for the 'makeprg' options therefore are: |
| 1675 | setlocal makeprg=./alltests.py " Run a testsuite |
Bram Moolenaar | 26df092 | 2014-02-23 23:39:13 +0100 | [diff] [blame] | 1676 | setlocal makeprg=python\ %:S " Run a single testcase |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1677 | |
| 1678 | Also see http://vim.sourceforge.net/tip_view.php?tip_id=280. |
| 1679 | |
Konfekt | 3c2596a | 2024-11-30 11:32:49 +0100 | [diff] [blame] | 1680 | PYTEST COMPILER *compiler-pytest* |
| 1681 | |
| 1682 | Commonly used compiler options can be added to 'makeprg' by setting the |
| 1683 | b/g:pytest_makeprg_params variable. For example: > |
| 1684 | |
| 1685 | let b:pytest_makeprg_params = "--verbose --no-summary --disable-warnings" |
| 1686 | |
| 1687 | The global default is "--tb=short --quiet"; Python warnings are suppressed. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1688 | |
| 1689 | TEX COMPILER *compiler-tex* |
| 1690 | |
| 1691 | Included in the distribution compiler for TeX ($VIMRUNTIME/compiler/tex.vim) |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 1692 | 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] | 1693 | 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] | 1694 | your *TeX files with make, and the makefile does the right work. In this case |
| 1695 | compiler sets 'errorformat' for *TeX output and leaves 'makeprg' untouched. If |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1696 | neither "Makefile" nor "makefile" is found, the compiler will not use make. |
| 1697 | You can force the compiler to ignore makefiles by defining |
| 1698 | b:tex_ignore_makefile or g:tex_ignore_makefile variable (they are checked for |
| 1699 | existence only). |
| 1700 | |
Bram Moolenaar | ade0d39 | 2020-01-21 22:33:58 +0100 | [diff] [blame] | 1701 | If the compiler chose not to use make, it needs to choose a right program for |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 1702 | 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] | 1703 | variable exists, it defines TeX flavor for :make (actually, this is the name |
| 1704 | 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] | 1705 | "latex". For example, while editing chapter2.tex \input-ed from mypaper.tex |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1706 | written in AMS-TeX: > |
| 1707 | |
| 1708 | :let b:tex_flavor = 'amstex' |
| 1709 | :compiler tex |
| 1710 | < [editing...] > |
| 1711 | :make mypaper |
| 1712 | |
| 1713 | Note that you must specify a name of the file to process as an argument (to |
| 1714 | 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] | 1715 | 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] | 1716 | semantics of make, where you specify a target, not source, but you may specify |
| 1717 | filename without extension ".tex" and mean this as "make filename.dvi or |
| 1718 | filename.pdf or filename.some_result_extension according to compiler". |
| 1719 | |
| 1720 | 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] | 1721 | by Srinath Avadhanula) and teTeX (checked by Artem Chuprina). Suggestion |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1722 | from |errorformat-LaTeX| is too complex to keep it working for different |
| 1723 | 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] | 1724 | if any. If your TeX doesn't support "-interaction=nonstopmode", please |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1725 | report it with different means to express \nonstopmode from the command line. |
| 1726 | |
Konfekt | 2347330 | 2025-03-11 21:40:04 +0100 | [diff] [blame] | 1727 | TSC COMPILER *compiler-tsc* |
| 1728 | |
| 1729 | The executable and compiler options can be added to 'makeprg' by setting the |
| 1730 | b/g:tsc_makeprg variable. For example: > |
| 1731 | |
| 1732 | let b:tsc_makeprg = "npx tsc --noEmit" |
| 1733 | |
Gregory Anders | 1cc4cae | 2024-07-15 20:00:48 +0200 | [diff] [blame] | 1734 | TYPST COMPILER *compiler-typst* |
| 1735 | |
| 1736 | Vim includes a compiler plugin for Typst files. This compiler is enabled |
| 1737 | automatically in Typst buffers by the Typst filetype plugin |ft-typst-plugin|. |
| 1738 | Run |:make| to compile the current Typst file. |
| 1739 | |
| 1740 | *g:typst_cmd* |
| 1741 | By default Vim will use "typst" as the command to run the Typst compiler. This |
| 1742 | can be changed by setting the |g:typst_cmd| variable: > |
| 1743 | let g:typst_cmd = "/path/to/other/command" |
| 1744 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1745 | ============================================================================= |
| 1746 | 7. The error format *error-file-format* |
| 1747 | |
| 1748 | *errorformat* *E372* *E373* *E374* |
| 1749 | *E375* *E376* *E377* *E378* |
| 1750 | The 'errorformat' option specifies a list of formats that are recognized. The |
| 1751 | first format that matches with an error message is used. You can add several |
| 1752 | formats for different messages your compiler produces, or even entries for |
| 1753 | multiple compilers. See |efm-entries|. |
| 1754 | |
| 1755 | Each entry in 'errorformat' is a scanf-like string that describes the format. |
| 1756 | First, you need to know how scanf works. Look in the documentation of your |
| 1757 | C compiler. Below you find the % items that Vim understands. Others are |
| 1758 | invalid. |
| 1759 | |
| 1760 | Special characters in 'errorformat' are comma and backslash. See |
| 1761 | |efm-entries| for how to deal with them. Note that a literal "%" is matched |
| 1762 | by "%%", thus it is not escaped with a backslash. |
Bram Moolenaar | 9d98fe9 | 2013-08-03 18:35:36 +0200 | [diff] [blame] | 1763 | Keep in mind that in the `:make` and `:grep` output all NUL characters are |
| 1764 | replaced with SOH (0x01). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1765 | |
| 1766 | Note: By default the difference between upper and lowercase is ignored. If |
| 1767 | you want to match case, add "\C" to the pattern |/\C|. |
| 1768 | |
Bram Moolenaar | 088e8e3 | 2019-08-08 22:15:18 +0200 | [diff] [blame] | 1769 | Vim will read lines of any length, but only the first 4095 bytes are used, the |
| 1770 | rest is ignored. Items can only be 1023 bytes long. |
| 1771 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1772 | |
| 1773 | Basic items |
| 1774 | |
| 1775 | %f file name (finds a string) |
Yegappan Lakshmanan | b731800 | 2023-10-25 20:50:28 +0200 | [diff] [blame] | 1776 | %b buffer number (finds a number) |
Bram Moolenaar | d76ce85 | 2018-05-01 15:02:04 +0200 | [diff] [blame] | 1777 | %o module name (finds a string) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1778 | %l line number (finds a number) |
haya14busa | e023d49 | 2022-02-08 18:09:29 +0000 | [diff] [blame] | 1779 | %e end line number (finds a number) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1780 | %c column number (finds a number representing character |
Bram Moolenaar | d2ea7cf | 2021-05-30 20:54:13 +0200 | [diff] [blame] | 1781 | column of the error, byte index, a <tab> is 1 |
| 1782 | character column) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1783 | %v virtual column number (finds a number representing |
| 1784 | screen column of the error (1 <tab> == 8 screen |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 1785 | columns)) |
haya14busa | e023d49 | 2022-02-08 18:09:29 +0000 | [diff] [blame] | 1786 | %k end column number (finds a number representing |
| 1787 | the character column of the error, byte index, or a |
| 1788 | number representing screen end column of the error if |
| 1789 | it's used with %v) |
Bram Moolenaar | e928366 | 2020-06-07 14:10:47 +0200 | [diff] [blame] | 1790 | %t error type (finds a single character): |
| 1791 | e - error message |
| 1792 | w - warning message |
| 1793 | i - info message |
| 1794 | n - note message |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1795 | %n error number (finds a number) |
| 1796 | %m error message (finds a string) |
| 1797 | %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] | 1798 | %p pointer line (finds a sequence of '-', '.', ' ' or |
| 1799 | tabs and uses the length for the column number) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1800 | %*{conv} any scanf non-assignable conversion |
| 1801 | %% the single '%' character |
Bram Moolenaar | 2641f77 | 2005-03-25 21:58:17 +0000 | [diff] [blame] | 1802 | %s search text (finds a string) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1803 | |
Bram Moolenaar | e344bea | 2005-09-01 20:46:49 +0000 | [diff] [blame] | 1804 | The "%f" conversion may depend on the current 'isfname' setting. "~/" is |
Bram Moolenaar | f4630b6 | 2005-05-20 21:31:17 +0000 | [diff] [blame] | 1805 | expanded to the home directory and environment variables are expanded. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1806 | |
Bram Moolenaar | e344bea | 2005-09-01 20:46:49 +0000 | [diff] [blame] | 1807 | 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] | 1808 | normally happens by matching following characters and items. When nothing is |
Bram Moolenaar | e344bea | 2005-09-01 20:46:49 +0000 | [diff] [blame] | 1809 | following the rest of the line is matched. If "%f" is followed by a '%' or a |
| 1810 | backslash, it will look for a sequence of 'isfname' characters. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1811 | |
Bram Moolenaar | 6f345a1 | 2019-12-17 21:27:18 +0100 | [diff] [blame] | 1812 | On MS-Windows a leading "C:" will be included in "%f", even when using "%f:". |
| 1813 | This means that a file name which is a single alphabetical letter will not be |
| 1814 | detected. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1815 | |
Yegappan Lakshmanan | b731800 | 2023-10-25 20:50:28 +0200 | [diff] [blame] | 1816 | The "%b" conversion is used to parse a buffer number. This is useful for |
| 1817 | referring to lines in a scratch buffer or a buffer with no name. If a buffer |
| 1818 | with the matching number doesn't exist, then that line is used as a non-error |
| 1819 | line. |
| 1820 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1821 | The "%p" conversion is normally followed by a "^". It's used for compilers |
| 1822 | that output a line like: > |
| 1823 | ^ |
| 1824 | or > |
| 1825 | ---------^ |
| 1826 | to indicate the column of the error. This is to be used in a multi-line error |
| 1827 | message. See |errorformat-javac| for a useful example. |
| 1828 | |
Bram Moolenaar | 85eee13 | 2018-05-06 17:57:30 +0200 | [diff] [blame] | 1829 | 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] | 1830 | The text is used as a literal string. The anchors "^" and "$" are added to |
| 1831 | the text to locate the error line exactly matching the search text and the |
| 1832 | text is prefixed with the "\V" atom to make it "very nomagic". The "%s" |
| 1833 | conversion can be used to locate lines without a line number in the error |
| 1834 | output. Like the output of the "grep" shell command. |
| 1835 | When the pattern is present the line number will not be used. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1836 | |
Bram Moolenaar | d76ce85 | 2018-05-01 15:02:04 +0200 | [diff] [blame] | 1837 | The "%o" conversion specifies the module name in quickfix entry. If present |
| 1838 | it will be used in quickfix error window instead of the filename. The module |
| 1839 | name is used only for displaying purposes, the file name is used when jumping |
| 1840 | to the file. |
| 1841 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1842 | Changing directory |
| 1843 | |
| 1844 | The following uppercase conversion characters specify the type of special |
Bram Moolenaar | a9defad | 2018-07-08 18:20:24 +0200 | [diff] [blame] | 1845 | 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] | 1846 | of a single comma-separated format pattern. |
| 1847 | Some compilers produce messages that consist of directory names that have to |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 1848 | 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] | 1849 | codes can be used to scan these directory names; they will be stored in an |
| 1850 | internal directory stack. *E379* |
| 1851 | %D "enter directory" format string; expects a following |
| 1852 | %f that finds the directory name |
| 1853 | %X "leave directory" format string; expects following %f |
| 1854 | |
| 1855 | When defining an "enter directory" or "leave directory" format, the "%D" or |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 1856 | "%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] | 1857 | changes and prepends the current directory to each erroneous file found with a |
| 1858 | relative path. See |quickfix-directory-stack| for details, tips and |
| 1859 | limitations. |
| 1860 | |
| 1861 | |
| 1862 | Multi-line messages *errorformat-multi-line* |
| 1863 | |
| 1864 | 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] | 1865 | messages, i.e. error strings that consume more than one line. Possible |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1866 | prefixes are: |
| 1867 | %E start of a multi-line error message |
| 1868 | %W start of a multi-line warning message |
| 1869 | %I start of a multi-line informational message |
Bram Moolenaar | e928366 | 2020-06-07 14:10:47 +0200 | [diff] [blame] | 1870 | %N start of a multi-line note message |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1871 | %A start of a multi-line message (unspecified type) |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 1872 | %> for next line start with current pattern again |efm-%>| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1873 | %C continuation of a multi-line message |
| 1874 | %Z end of a multi-line message |
| 1875 | These can be used with '+' and '-', see |efm-ignore| below. |
| 1876 | |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 1877 | Using "\n" in the pattern won't work to match multi-line messages. |
| 1878 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1879 | Example: Your compiler happens to write out errors in the following format |
| 1880 | (leading line numbers not being part of the actual output): |
| 1881 | |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 1882 | 1 Error 275 ~ |
| 1883 | 2 line 42 ~ |
| 1884 | 3 column 3 ~ |
| 1885 | 4 ' ' expected after '--' ~ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1886 | |
| 1887 | The appropriate error format string has to look like this: > |
| 1888 | :set efm=%EError\ %n,%Cline\ %l,%Ccolumn\ %c,%Z%m |
| 1889 | |
| 1890 | And the |:clist| error message generated for this error is: |
| 1891 | |
| 1892 | 1:42 col 3 error 275: ' ' expected after '--' |
| 1893 | |
| 1894 | Another example: Think of a Python interpreter that produces the following |
| 1895 | error message (line numbers are not part of the actual output): |
| 1896 | |
| 1897 | 1 ============================================================== |
| 1898 | 2 FAIL: testGetTypeIdCachesResult (dbfacadeTest.DjsDBFacadeTest) |
| 1899 | 3 -------------------------------------------------------------- |
| 1900 | 4 Traceback (most recent call last): |
| 1901 | 5 File "unittests/dbfacadeTest.py", line 89, in testFoo |
| 1902 | 6 self.assertEquals(34, dtid) |
| 1903 | 7 File "/usr/lib/python2.2/unittest.py", line 286, in |
| 1904 | 8 failUnlessEqual |
| 1905 | 9 raise self.failureException, \ |
| 1906 | 10 AssertionError: 34 != 33 |
| 1907 | 11 |
| 1908 | 12 -------------------------------------------------------------- |
| 1909 | 13 Ran 27 tests in 0.063s |
| 1910 | |
| 1911 | Say you want |:clist| write the relevant information of this message only, |
| 1912 | namely: |
| 1913 | 5 unittests/dbfacadeTest.py:89: AssertionError: 34 != 33 |
| 1914 | |
| 1915 | Then the error format string could be defined as follows: > |
| 1916 | :set efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%m |
| 1917 | |
| 1918 | Note that the %C string is given before the %A here: since the expression |
| 1919 | ' %.%#' (which stands for the regular expression ' .*') matches every line |
| 1920 | starting with a space, followed by any characters to the end of the line, |
| 1921 | it also hides line 7 which would trigger a separate error message otherwise. |
| 1922 | Error format strings are always parsed pattern by pattern until the first |
| 1923 | match occurs. |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 1924 | *efm-%>* |
| 1925 | The %> item can be used to avoid trying patterns that appear earlier in |
| 1926 | 'errorformat'. This is useful for patterns that match just about anything. |
| 1927 | For example, if the error looks like this: |
| 1928 | |
| 1929 | Error in line 123 of foo.c: ~ |
| 1930 | unknown variable "i" ~ |
| 1931 | |
| 1932 | This can be found with: > |
| 1933 | :set efm=xxx,%E%>Error in line %l of %f:,%Z%m |
| 1934 | Where "xxx" has a pattern that would also match the second line. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1935 | |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 1936 | Important: There is no memory of what part of the errorformat matched before; |
| 1937 | every line in the error file gets a complete new run through the error format |
| 1938 | lines. For example, if one has: > |
| 1939 | setlocal efm=aa,bb,cc,dd,ee |
| 1940 | Where aa, bb, etc. are error format strings. Each line of the error file will |
| 1941 | be matched to the pattern aa, then bb, then cc, etc. Just because cc matched |
| 1942 | the previous error line does _not_ mean that dd will be tried first on the |
| 1943 | current line, even if cc and dd are multi-line errorformat strings. |
| 1944 | |
| 1945 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1946 | |
| 1947 | Separate file name *errorformat-separate-filename* |
| 1948 | |
| 1949 | These prefixes are useful if the file name is given once and multiple messages |
| 1950 | follow that refer to this file name. |
| 1951 | %O single-line file message: overread the matched part |
| 1952 | %P single-line file message: push file %f onto the stack |
| 1953 | %Q single-line file message: pop the last file from stack |
| 1954 | |
| 1955 | Example: Given a compiler that produces the following error logfile (without |
| 1956 | leading line numbers): |
| 1957 | |
| 1958 | 1 [a1.tt] |
| 1959 | 2 (1,17) error: ';' missing |
| 1960 | 3 (21,2) warning: variable 'z' not defined |
| 1961 | 4 (67,3) error: end of file found before string ended |
| 1962 | 5 |
| 1963 | 6 [a2.tt] |
| 1964 | 7 |
| 1965 | 8 [a3.tt] |
| 1966 | 9 NEW compiler v1.1 |
| 1967 | 10 (2,2) warning: variable 'x' not defined |
| 1968 | 11 (67,3) warning: 's' already defined |
| 1969 | |
| 1970 | This logfile lists several messages for each file enclosed in [...] which are |
| 1971 | properly parsed by an error format like this: > |
| 1972 | :set efm=%+P[%f],(%l\\,%c)%*[\ ]%t%*[^:]:\ %m,%-Q |
| 1973 | |
| 1974 | A call of |:clist| writes them accordingly with their correct filenames: |
| 1975 | |
| 1976 | 2 a1.tt:1 col 17 error: ';' missing |
| 1977 | 3 a1.tt:21 col 2 warning: variable 'z' not defined |
| 1978 | 4 a1.tt:67 col 3 error: end of file found before string ended |
| 1979 | 8 a3.tt:2 col 2 warning: variable 'x' not defined |
| 1980 | 9 a3.tt:67 col 3 warning: 's' already defined |
| 1981 | |
| 1982 | 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] | 1983 | 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] | 1984 | to parse even nested files like in the following line: |
| 1985 | {"file1" {"file2" error1} error2 {"file3" error3 {"file4" error4 error5}}} |
| 1986 | The %O then parses over strings that do not contain any push/pop file name |
| 1987 | information. See |errorformat-LaTeX| for an extended example. |
| 1988 | |
| 1989 | |
| 1990 | Ignoring and using whole messages *efm-ignore* |
| 1991 | |
| 1992 | 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] | 1993 | case they have to precede the letter, e.g. '%+A' or '%-G': |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1994 | %- do not include the matching multi-line in any output |
| 1995 | %+ include the whole matching line in the %m error string |
| 1996 | |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 1997 | 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] | 1998 | over lines containing general information like compiler version strings or |
| 1999 | other headers that can be skipped. |
| 2000 | %-G ignore this message |
| 2001 | %+G general message |
| 2002 | |
| 2003 | |
| 2004 | Pattern matching |
| 2005 | |
| 2006 | The scanf()-like "%*[]" notation is supported for backward-compatibility |
| 2007 | with previous versions of Vim. However, it is also possible to specify |
| 2008 | (nearly) any Vim supported regular expression in format strings. |
| 2009 | Since meta characters of the regular expression language can be part of |
| 2010 | ordinary matching strings or file names (and therefore internally have to |
| 2011 | be escaped), meta symbols have to be written with leading '%': |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 2012 | %\ The single '\' character. Note that this has to be |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2013 | escaped ("%\\") in ":set errorformat=" definitions. |
Bram Moolenaar | ceaf7b8 | 2006-03-19 22:18:55 +0000 | [diff] [blame] | 2014 | %. The single '.' character. |
| 2015 | %# The single '*'(!) character. |
| 2016 | %^ The single '^' character. Note that this is not |
| 2017 | useful, the pattern already matches start of line. |
| 2018 | %$ The single '$' character. Note that this is not |
| 2019 | useful, the pattern already matches end of line. |
| 2020 | %[ The single '[' character for a [] character range. |
| 2021 | %~ The single '~' character. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2022 | When using character classes in expressions (see |/\i| for an overview), |
| 2023 | terms containing the "\+" quantifier can be written in the scanf() "%*" |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 2024 | notation. Example: "%\\d%\\+" ("\d\+", "any number") is equivalent to "%*\\d". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2025 | Important note: The \(...\) grouping of sub-matches can not be used in format |
| 2026 | specifications because it is reserved for internal conversions. |
| 2027 | |
| 2028 | |
| 2029 | Multiple entries in 'errorformat' *efm-entries* |
| 2030 | |
| 2031 | To be able to detect output from several compilers, several format patterns |
| 2032 | may be put in 'errorformat', separated by commas (note: blanks after the comma |
| 2033 | are ignored). The first pattern that has a complete match is used. If no |
| 2034 | match is found, matching parts from the last one will be used, although the |
| 2035 | file name is removed and the error message is set to the whole message. If |
| 2036 | there is a pattern that may match output from several compilers (but not in a |
| 2037 | right way), put it after one that is more restrictive. |
| 2038 | |
| 2039 | To include a comma in a pattern precede it with a backslash (you have to type |
| 2040 | two in a ":set" command). To include a backslash itself give two backslashes |
| 2041 | (you have to type four in a ":set" command). You also need to put a backslash |
| 2042 | before a space for ":set". |
| 2043 | |
| 2044 | |
| 2045 | Valid matches *quickfix-valid* |
| 2046 | |
| 2047 | If a line does not completely match one of the entries in 'errorformat', the |
| 2048 | whole line is put in the error message and the entry is marked "not valid" |
| 2049 | These lines are skipped with the ":cn" and ":cp" commands (unless there is |
| 2050 | no valid line at all). You can use ":cl!" to display all the error messages. |
| 2051 | |
| 2052 | If the error format does not contain a file name Vim cannot switch to the |
| 2053 | correct file. You will have to do this by hand. |
| 2054 | |
| 2055 | |
| 2056 | Examples |
| 2057 | |
| 2058 | The format of the file from the Amiga Aztec compiler is: |
| 2059 | |
| 2060 | filename>linenumber:columnnumber:errortype:errornumber:errormessage |
| 2061 | |
| 2062 | filename name of the file in which the error was detected |
| 2063 | linenumber line number where the error was detected |
| 2064 | columnnumber column number where the error was detected |
| 2065 | errortype type of the error, normally a single 'E' or 'W' |
| 2066 | errornumber number of the error (for lookup in the manual) |
| 2067 | errormessage description of the error |
| 2068 | |
| 2069 | This can be matched with this 'errorformat' entry: |
| 2070 | %f>%l:%c:%t:%n:%m |
| 2071 | |
| 2072 | Some examples for C compilers that produce single-line error outputs: |
| 2073 | %f:%l:\ %t%*[^0123456789]%n:\ %m for Manx/Aztec C error messages |
| 2074 | (scanf() doesn't understand [0-9]) |
| 2075 | %f\ %l\ %t%*[^0-9]%n:\ %m for SAS C |
| 2076 | \"%f\"\\,%*[^0-9]%l:\ %m for generic C compilers |
| 2077 | %f:%l:\ %m for GCC |
| 2078 | %f:%l:\ %m,%Dgmake[%*\\d]:\ Entering\ directory\ `%f', |
| 2079 | %Dgmake[%*\\d]:\ Leaving\ directory\ `%f' |
| 2080 | for GCC with gmake (concat the lines!) |
| 2081 | %f(%l)\ :\ %*[^:]:\ %m old SCO C compiler (pre-OS5) |
| 2082 | %f(%l)\ :\ %t%*[^0-9]%n:\ %m idem, with error type and number |
| 2083 | %f:%l:\ %m,In\ file\ included\ from\ %f:%l:,\^I\^Ifrom\ %f:%l%m |
| 2084 | for GCC, with some extras |
| 2085 | |
| 2086 | Extended examples for the handling of multi-line messages are given below, |
| 2087 | see |errorformat-Jikes| and |errorformat-LaTeX|. |
| 2088 | |
| 2089 | Note the backslash in front of a space and double quote. It is required for |
| 2090 | the :set command. There are two backslashes in front of a comma, one for the |
| 2091 | :set command and one to avoid recognizing the comma as a separator of error |
| 2092 | formats. |
| 2093 | |
| 2094 | |
| 2095 | Filtering messages |
| 2096 | |
| 2097 | If you have a compiler that produces error messages that do not fit in the |
| 2098 | format string, you could write a program that translates the error messages |
| 2099 | into this format. You can use this program with the ":make" command by |
| 2100 | changing the 'makeprg' option. For example: > |
| 2101 | :set mp=make\ \\\|&\ error_filter |
| 2102 | The backslashes before the pipe character are required to avoid it to be |
| 2103 | recognized as a command separator. The backslash before each space is |
| 2104 | required for the set command. |
| 2105 | |
| 2106 | ============================================================================= |
| 2107 | 8. The directory stack *quickfix-directory-stack* |
| 2108 | |
| 2109 | Quickfix maintains a stack for saving all used directories parsed from the |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 2110 | make output. For GNU-make this is rather simple, as it always prints the |
| 2111 | 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] | 2112 | 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] | 2113 | 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] | 2114 | "-w" to force GNU-make to print out the working directory before and after |
| 2115 | processing. |
| 2116 | |
| 2117 | Maintaining the correct directory is more complicated if you don't use |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 2118 | GNU-make. AIX-make for example doesn't print any information about its |
| 2119 | working directory. Then you need to enhance the makefile. In the makefile of |
| 2120 | LessTif there is a command which echoes "Making {target} in {dir}". The |
Bram Moolenaar | 6dfc28b | 2010-02-11 14:19:15 +0100 | [diff] [blame] | 2121 | 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] | 2122 | directory and that it doesn't print the absolute path. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2123 | |
| 2124 | To solve the problem with relative paths and missing "leave directory" |
Bram Moolenaar | 3d1cde8 | 2020-08-15 18:55:18 +0200 | [diff] [blame] | 2125 | messages Vim uses the following algorithm: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2126 | |
| 2127 | 1) Check if the given directory is a subdirectory of the current directory. |
| 2128 | If this is true, store it as the current directory. |
| 2129 | 2) If it is not a subdir of the current directory, try if this is a |
| 2130 | subdirectory of one of the upper directories. |
| 2131 | 3) If the directory still isn't found, it is assumed to be a subdirectory |
| 2132 | of Vim's current directory. |
| 2133 | |
| 2134 | Additionally it is checked for every file, if it really exists in the |
| 2135 | 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] | 2136 | 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] | 2137 | assumed that it is in Vim's current directory. |
| 2138 | |
Bram Moolenaar | e667c95 | 2010-07-05 22:57:59 +0200 | [diff] [blame] | 2139 | There are limitations in this algorithm. These examples assume that make just |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2140 | prints information about entering a directory in the form "Making all in dir". |
| 2141 | |
| 2142 | 1) Assume you have following directories and files: |
| 2143 | ./dir1 |
| 2144 | ./dir1/file1.c |
| 2145 | ./file1.c |
| 2146 | |
| 2147 | If make processes the directory "./dir1" before the current directory and |
| 2148 | there is an error in the file "./file1.c", you will end up with the file |
| 2149 | "./dir1/file.c" loaded by Vim. |
| 2150 | |
| 2151 | This can only be solved with a "leave directory" message. |
| 2152 | |
| 2153 | 2) Assume you have following directories and files: |
| 2154 | ./dir1 |
| 2155 | ./dir1/dir2 |
| 2156 | ./dir2 |
| 2157 | |
| 2158 | You get the following: |
| 2159 | |
| 2160 | Make output Directory interpreted by Vim |
| 2161 | ------------------------ ---------------------------- |
| 2162 | Making all in dir1 ./dir1 |
| 2163 | Making all in dir2 ./dir1/dir2 |
| 2164 | Making all in dir2 ./dir1/dir2 |
| 2165 | |
| 2166 | This can be solved by printing absolute directories in the "enter directory" |
Bram Moolenaar | 214641f | 2017-03-05 17:04:09 +0100 | [diff] [blame] | 2167 | message or by printing "leave directory" messages. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2168 | |
Bram Moolenaar | 06b5d51 | 2010-05-22 15:37:44 +0200 | [diff] [blame] | 2169 | To avoid this problem, ensure to print absolute directory names and "leave |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2170 | directory" messages. |
| 2171 | |
| 2172 | Examples for Makefiles: |
| 2173 | |
| 2174 | Unix: |
| 2175 | libs: |
| 2176 | for dn in $(LIBDIRS); do \ |
| 2177 | (cd $$dn; echo "Entering dir '$$(pwd)'"; make); \ |
| 2178 | echo "Leaving dir"; \ |
| 2179 | done |
| 2180 | |
| 2181 | Add |
| 2182 | %DEntering\ dir\ '%f',%XLeaving\ dir |
| 2183 | to your 'errorformat' to handle the above output. |
| 2184 | |
| 2185 | 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] | 2186 | 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] | 2187 | "Leaving dir". |
| 2188 | |
| 2189 | ============================================================================= |
| 2190 | 9. Specific error file formats *errorformats* |
| 2191 | |
| 2192 | *errorformat-Jikes* |
| 2193 | Jikes(TM), a source-to-bytecode Java compiler published by IBM Research, |
| 2194 | produces simple multi-line error messages. |
| 2195 | |
| 2196 | An 'errorformat' string matching the produced messages is shown below. |
| 2197 | The following lines can be placed in the user's |vimrc| to overwrite Vim's |
| 2198 | recognized default formats, or see |:set+=| how to install this format |
| 2199 | additionally to the default. > |
| 2200 | |
| 2201 | :set efm=%A%f:%l:%c:%*\\d:%*\\d:, |
| 2202 | \%C%*\\s%trror:%m, |
| 2203 | \%+C%*[^:]%trror:%m, |
| 2204 | \%C%*\\s%tarning:%m, |
| 2205 | \%C%m |
| 2206 | < |
| 2207 | Jikes(TM) produces a single-line error message when invoked with the option |
| 2208 | "+E", and can be matched with the following: > |
| 2209 | |
Bram Moolenaar | 6b803a7 | 2007-05-06 14:25:46 +0000 | [diff] [blame] | 2210 | :setl efm=%f:%l:%v:%*\\d:%*\\d:%*\\s%m |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2211 | < |
| 2212 | *errorformat-javac* |
| 2213 | This 'errorformat' has been reported to work well for javac, which outputs a |
| 2214 | line with "^" to indicate the column of the error: > |
Bram Moolenaar | 6b803a7 | 2007-05-06 14:25:46 +0000 | [diff] [blame] | 2215 | :setl efm=%A%f:%l:\ %m,%-Z%p^,%-C%.%# |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2216 | or: > |
Bram Moolenaar | 6b803a7 | 2007-05-06 14:25:46 +0000 | [diff] [blame] | 2217 | :setl efm=%A%f:%l:\ %m,%+Z%p^,%+C%.%#,%-G%.%# |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2218 | < |
Bram Moolenaar | 6b803a7 | 2007-05-06 14:25:46 +0000 | [diff] [blame] | 2219 | Here is an alternative from Michael F. Lamb for Unix that filters the errors |
| 2220 | first: > |
| 2221 | :setl errorformat=%Z%f:%l:\ %m,%A%p^,%-G%*[^sl]%.%# |
Bram Moolenaar | 26df092 | 2014-02-23 23:39:13 +0100 | [diff] [blame] | 2222 | :setl makeprg=javac\ %:S\ 2>&1\ \\\|\ vim-javac-filter |
Bram Moolenaar | 6b803a7 | 2007-05-06 14:25:46 +0000 | [diff] [blame] | 2223 | |
| 2224 | You need to put the following in "vim-javac-filter" somewhere in your path |
| 2225 | (e.g., in ~/bin) and make it executable: > |
| 2226 | #!/bin/sed -f |
| 2227 | /\^$/s/\t/\ /g;/:[0-9]\+:/{h;d};/^[ \t]*\^/G; |
| 2228 | |
| 2229 | In English, that sed script: |
| 2230 | - Changes single tabs to single spaces and |
| 2231 | - Moves the line with the filename, line number, error message to just after |
| 2232 | the pointer line. That way, the unused error text between doesn't break |
| 2233 | vim's notion of a "multi-line message" and also doesn't force us to include |
| 2234 | it as a "continuation of a multi-line message." |
| 2235 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2236 | *errorformat-ant* |
| 2237 | For ant (http://jakarta.apache.org/) the above errorformat has to be modified |
| 2238 | to honour the leading [javac] in front of each javac output line: > |
| 2239 | :set efm=%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%# |
| 2240 | |
| 2241 | The 'errorformat' can also be configured to handle ant together with either |
| 2242 | javac or jikes. If you're using jikes, you should tell ant to use jikes' +E |
| 2243 | command line switch which forces jikes to generate one-line error messages. |
| 2244 | This is what the second line (of a build.xml file) below does: > |
| 2245 | <property name = "build.compiler" value = "jikes"/> |
| 2246 | <property name = "build.compiler.emacs" value = "true"/> |
| 2247 | |
| 2248 | The 'errorformat' which handles ant with both javac and jikes is: > |
| 2249 | :set efm=\ %#[javac]\ %#%f:%l:%c:%*\\d:%*\\d:\ %t%[%^:]%#:%m, |
| 2250 | \%A\ %#[javac]\ %f:%l:\ %m,%-Z\ %#[javac]\ %p^,%-C%.%# |
| 2251 | < |
| 2252 | *errorformat-jade* |
| 2253 | parsing jade (see http://www.jclark.com/) errors is simple: > |
| 2254 | :set efm=jade:%f:%l:%c:%t:%m |
| 2255 | < |
| 2256 | *errorformat-LaTeX* |
| 2257 | The following is an example how an 'errorformat' string can be specified |
| 2258 | for the (La)TeX typesetting system which displays error messages over |
| 2259 | multiple lines. The output of ":clist" and ":cc" etc. commands displays |
| 2260 | multi-lines in a single line, leading white space is removed. |
| 2261 | It should be easy to adopt the above LaTeX errorformat to any compiler output |
| 2262 | consisting of multi-line errors. |
| 2263 | |
| 2264 | 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] | 2265 | 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] | 2266 | LaTeX sources. |
| 2267 | Make sure to copy all lines of the example (in the given order), afterwards |
| 2268 | remove the comment lines. For the '\' notation at the start of some lines see |
| 2269 | |line-continuation|. |
| 2270 | |
| 2271 | First prepare 'makeprg' such that LaTeX will report multiple |
| 2272 | errors; do not stop when the first error has occurred: > |
| 2273 | :set makeprg=latex\ \\\\nonstopmode\ \\\\input\\{$*} |
| 2274 | < |
| 2275 | Start of multi-line error messages: > |
| 2276 | :set efm=%E!\ LaTeX\ %trror:\ %m, |
| 2277 | \%E!\ %m, |
| 2278 | < Start of multi-line warning messages; the first two also |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 2279 | include the line number. Meaning of some regular expressions: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2280 | - "%.%#" (".*") matches a (possibly empty) string |
| 2281 | - "%*\\d" ("\d\+") matches a number > |
| 2282 | \%+WLaTeX\ %.%#Warning:\ %.%#line\ %l%.%#, |
| 2283 | \%+W%.%#\ at\ lines\ %l--%*\\d, |
| 2284 | \%WLaTeX\ %.%#Warning:\ %m, |
| 2285 | < Possible continuations of error/warning messages; the first |
| 2286 | one also includes the line number: > |
| 2287 | \%Cl.%l\ %m, |
| 2288 | \%+C\ \ %m., |
| 2289 | \%+C%.%#-%.%#, |
| 2290 | \%+C%.%#[]%.%#, |
| 2291 | \%+C[]%.%#, |
| 2292 | \%+C%.%#%[{}\\]%.%#, |
| 2293 | \%+C<%.%#>%.%#, |
| 2294 | \%C\ \ %m, |
| 2295 | < Lines that match the following patterns do not contain any |
| 2296 | important information; do not include them in messages: > |
| 2297 | \%-GSee\ the\ LaTeX%m, |
| 2298 | \%-GType\ \ H\ <return>%m, |
| 2299 | \%-G\ ...%.%#, |
| 2300 | \%-G%.%#\ (C)\ %.%#, |
| 2301 | \%-G(see\ the\ transcript%.%#), |
| 2302 | < Generally exclude any empty or whitespace-only line from |
| 2303 | being displayed: > |
| 2304 | \%-G\\s%#, |
| 2305 | < The LaTeX output log does not specify the names of erroneous |
| 2306 | source files per line; rather they are given globally, |
| 2307 | enclosed in parentheses. |
| 2308 | The following patterns try to match these names and store |
| 2309 | them in an internal stack. The patterns possibly scan over |
| 2310 | the same input line (one after another), the trailing "%r" |
| 2311 | conversion indicates the "rest" of the line that will be |
| 2312 | parsed in the next go until the end of line is reached. |
| 2313 | |
| 2314 | Overread a file name enclosed in '('...')'; do not push it |
| 2315 | on a stack since the file apparently does not contain any |
| 2316 | error: > |
| 2317 | \%+O(%f)%r, |
Bram Moolenaar | 13fcaaf | 2005-04-15 21:13:42 +0000 | [diff] [blame] | 2318 | < Push a file name onto the stack. The name is given after '(': > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2319 | \%+P(%f%r, |
| 2320 | \%+P\ %\\=(%f%r, |
| 2321 | \%+P%*[^()](%f%r, |
| 2322 | \%+P[%\\d%[^()]%#(%f%r, |
| 2323 | < Pop the last stored file name when a ')' is scanned: > |
| 2324 | \%+Q)%r, |
| 2325 | \%+Q%*[^()])%r, |
| 2326 | \%+Q[%\\d%*[^()])%r |
| 2327 | |
| 2328 | Note that in some cases file names in the LaTeX output log cannot be parsed |
| 2329 | properly. The parser might have been messed up by unbalanced parentheses |
| 2330 | then. The above example tries to catch the most relevant cases only. |
| 2331 | You can customize the given setting to suit your own purposes, for example, |
| 2332 | all the annoying "Overfull ..." warnings could be excluded from being |
| 2333 | recognized as an error. |
| 2334 | Alternatively to filtering the LaTeX compiler output, it is also possible |
| 2335 | to directly read the *.log file that is produced by the [La]TeX compiler. |
| 2336 | This contains even more useful information about possible error causes. |
| 2337 | However, to properly parse such a complex file, an external filter should |
| 2338 | be used. See the description further above how to make such a filter known |
| 2339 | by Vim. |
| 2340 | |
| 2341 | *errorformat-Perl* |
| 2342 | In $VIMRUNTIME/tools you can find the efm_perl.pl script, which filters Perl |
| 2343 | error messages into a format that quickfix mode will understand. See the |
Bram Moolenaar | 8c8de83 | 2008-06-24 22:58:06 +0000 | [diff] [blame] | 2344 | start of the file about how to use it. (This script is deprecated, see |
| 2345 | |compiler-perl|.) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2346 | |
Bram Moolenaar | 858ba06 | 2020-05-31 23:11:59 +0200 | [diff] [blame] | 2347 | ============================================================================= |
| 2348 | 10. Customizing the quickfix window *quickfix-window-function* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2349 | |
Bram Moolenaar | 858ba06 | 2020-05-31 23:11:59 +0200 | [diff] [blame] | 2350 | The default format for the lines displayed in the quickfix window and location |
| 2351 | list window is: |
| 2352 | |
| 2353 | <filename>|<lnum> col <col>|<text> |
| 2354 | |
| 2355 | The values displayed in each line correspond to the "bufnr", "lnum", "col" and |
| 2356 | "text" fields returned by the |getqflist()| function. |
| 2357 | |
Bram Moolenaar | 3d1cde8 | 2020-08-15 18:55:18 +0200 | [diff] [blame] | 2358 | For some quickfix/location lists, the displayed text needs to be customized. |
Bram Moolenaar | 858ba06 | 2020-05-31 23:11:59 +0200 | [diff] [blame] | 2359 | For example, if only the filename is present for a quickfix entry, then the |
| 2360 | two "|" field separator characters after the filename are not needed. Another |
| 2361 | use case is to customize the path displayed for a filename. By default, the |
| 2362 | complete path (which may be too long) is displayed for files which are not |
| 2363 | under the current directory tree. The file path may need to be simplified to a |
| 2364 | common parent directory. |
| 2365 | |
| 2366 | The displayed text can be customized by setting the 'quickfixtextfunc' option |
Bram Moolenaar | 00e260b | 2020-06-11 19:35:52 +0200 | [diff] [blame] | 2367 | to a Vim function. This function will be called with a dict argument and |
| 2368 | should return a List of strings to be displayed in the quickfix or location |
| 2369 | list window. The dict argument will have the following fields: |
Bram Moolenaar | 858ba06 | 2020-05-31 23:11:59 +0200 | [diff] [blame] | 2370 | |
| 2371 | quickfix set to 1 when called for a quickfix list and 0 when called for |
| 2372 | a location list. |
Bram Moolenaar | 7ba5a7e | 2020-06-08 19:20:27 +0200 | [diff] [blame] | 2373 | winid for a location list, set to the id of the window with the |
| 2374 | location list. For a quickfix list, set to 0. Can be used in |
| 2375 | getloclist() to get the location list entry. |
Bram Moolenaar | 858ba06 | 2020-05-31 23:11:59 +0200 | [diff] [blame] | 2376 | id quickfix or location list identifier |
Bram Moolenaar | 00e260b | 2020-06-11 19:35:52 +0200 | [diff] [blame] | 2377 | start_idx index of the first entry for which text should be returned |
| 2378 | end_idx index of the last entry for which text should be returned |
Bram Moolenaar | 858ba06 | 2020-05-31 23:11:59 +0200 | [diff] [blame] | 2379 | |
| 2380 | The function should return a single line of text to display in the quickfix |
Bram Moolenaar | 00e260b | 2020-06-11 19:35:52 +0200 | [diff] [blame] | 2381 | window for each entry from start_idx to end_idx. The function can obtain |
| 2382 | information about the entries using the |getqflist()| function and specifying |
| 2383 | the quickfix list identifier "id". For a location list, getloclist() function |
Bram Moolenaar | 9fbdbb8 | 2022-09-27 17:30:34 +0100 | [diff] [blame] | 2384 | can be used with the "winid" argument. If an empty list is returned, then the |
Bram Moolenaar | d43906d | 2020-07-20 21:31:32 +0200 | [diff] [blame] | 2385 | default format is used to display all the entries. If an item in the returned |
| 2386 | list is an empty string, then the default format is used to display the |
| 2387 | corresponding entry. |
Bram Moolenaar | 858ba06 | 2020-05-31 23:11:59 +0200 | [diff] [blame] | 2388 | |
| 2389 | If a quickfix or location list specific customization is needed, then the |
| 2390 | 'quickfixtextfunc' attribute of the list can be set using the |setqflist()| or |
| 2391 | |setloclist()| function. This overrides the global 'quickfixtextfunc' option. |
| 2392 | |
| 2393 | The example below displays the list of old files (|v:oldfiles|) in a quickfix |
| 2394 | window. As there is no line, column number and error text information |
| 2395 | associated with each entry, the 'quickfixtextfunc' function returns only the |
| 2396 | filename. |
| 2397 | Example: > |
| 2398 | " create a quickfix list from v:oldfiles |
| 2399 | call setqflist([], ' ', {'lines' : v:oldfiles, 'efm' : '%f', |
| 2400 | \ 'quickfixtextfunc' : 'QfOldFiles'}) |
| 2401 | func QfOldFiles(info) |
Bram Moolenaar | 00e260b | 2020-06-11 19:35:52 +0200 | [diff] [blame] | 2402 | " get information about a range of quickfix entries |
| 2403 | let items = getqflist({'id' : a:info.id, 'items' : 1}).items |
| 2404 | let l = [] |
| 2405 | for idx in range(a:info.start_idx - 1, a:info.end_idx - 1) |
| 2406 | " use the simplified file name |
| 2407 | call add(l, fnamemodify(bufname(items[idx].bufnr), ':p:.')) |
| 2408 | endfor |
| 2409 | return l |
Bram Moolenaar | 858ba06 | 2020-05-31 23:11:59 +0200 | [diff] [blame] | 2410 | endfunc |
| 2411 | < |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2412 | |
Bram Moolenaar | 91f84f6 | 2018-07-29 15:07:52 +0200 | [diff] [blame] | 2413 | vim:tw=78:ts=8:noet:ft=help:norl: |