1- *quickfix.txt* For Vim version 9.1. Last change: 2023 Jan 18
1+ *quickfix.txt* For Vim version 9.1. Last change: 2024 Apr 28
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -287,7 +287,8 @@ processing a quickfix or location list command, it will be aborted.
287287 current window is used instead of the quickfix list.
288288
289289 *:cb* *:cbuffer* *E681*
290- :cb[uffer][!] [bufnr] Read the error list from the current buffer.
290+ :[range] cb[uffer][!] [bufnr]
291+ Read the error list from the current buffer.
291292 When [bufnr] is given it must be the number of a
292293 loaded buffer. That buffer will then be used instead
293294 of the current buffer.
@@ -296,26 +297,31 @@ processing a quickfix or location list command, it will be aborted.
296297 See | :cc | for [!].
297298
298299 *:lb* *:lbuffer*
299- :lb[uffer][!] [bufnr] Same as ":cbuffer", except the location list for the
300+ :[range] lb[uffer][!] [bufnr]
301+ Same as ":cbuffer", except the location list for the
300302 current window is used instead of the quickfix list.
301303
302304 *:cgetb* *:cgetbuffer*
303- :cgetb[uffer] [bufnr] Read the error list from the current buffer. Just
305+ :[range] cgetb[uffer] [bufnr]
306+ Read the error list from the current buffer. Just
304307 like ":cbuffer" but don't jump to the first error.
305308
306309 *:lgetb* *:lgetbuffer*
307- :lgetb[uffer] [bufnr] Same as ":cgetbuffer", except the location list for
310+ :[range] lgetb[uffer] [bufnr]
311+ Same as ":cgetbuffer", except the location list for
308312 the current window is used instead of the quickfix
309313 list.
310314
311315 *:cad* *:cadd* *:caddbuffer*
312- :cad[dbuffer] [bufnr] Read the error list from the current buffer and add
316+ :[range] cad[dbuffer] [bufnr]
317+ Read the error list from the current buffer and add
313318 the errors to the current quickfix list. If a
314319 quickfix list is not present, then a new list is
315320 created. Otherwise, same as ":cbuffer".
316321
317322 *:laddb* *:laddbuffer*
318- :laddb[uffer] [bufnr] Same as ":caddbuffer", except the location list for
323+ :[range] laddb[uffer] [bufnr]
324+ Same as ":caddbuffer", except the location list for
319325 the current window is used instead of the quickfix
320326 list.
321327
@@ -1321,6 +1327,15 @@ If Vim was started from the compiler, the :sh and some :! commands will not
13211327work, because Vim is then running in the same process as the compiler and
13221328stdin (standard input) will not be interactive.
13231329
1330+ PANDOC *quickfix-pandoc* *compiler-pandoc*
1331+
1332+ The Pandoc compiler plugin expects that an output file type extension is
1333+ passed to make, say :make html or :make pdf.
1334+
1335+ Additional arguments can be passed to pandoc:
1336+
1337+ - either by appending them to make, say `:make html --self-contained` .
1338+ - or setting them in `b: pandoc_compiler_args ` or `g: pandoc_compiler_args `
13241339
13251340PERL *quickfix-perl* *compiler-perl*
13261341
0 commit comments