Skip to content

Commit d0cd5ed

Browse files
authored
Merge pull request #1521 from vim-jp/hh-update-quickfix
Update quickfix.{txt,jax}
2 parents 66ba0ea + 6b560a6 commit d0cd5ed

File tree

2 files changed

+45
-14
lines changed

2 files changed

+45
-14
lines changed

doc/quickfix.jax

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim バージョン 9.1. Last change: 2023 Jan 18
1+
*quickfix.txt* For Vim バージョン 9.1. Last change: 2024 Apr 28
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -266,7 +266,8 @@ locationリストが |autocommand| に変更される場合、それは中断さ
266266
ウィンドウのlocationリストが使われる。
267267

268268
*:cb* *:cbuffer* *E681*
269-
:cb[uffer][!] [bufnr] カレントバッファからエラーリストを読み込む。[bufnr] を
269+
:[range]cb[uffer][!] [bufnr]
270+
カレントバッファからエラーリストを読み込む。[bufnr] を
270271
指定すると、カレントバッファの代わりにそのバッファが使
271272
われる。bufnrには読み込まれているバッファ番号を指定し
272273
なければならない。範囲を指定すると、読み込む行を指定す
@@ -275,25 +276,30 @@ locationリストが |autocommand| に変更される場合、それは中断さ
275276
[!]については|:cc|を参照。
276277

277278
*:lb* *:lbuffer*
278-
:lb[uffer][!] [bufnr] ":cbuffer" と同様だが、quickfixリストでなく、カレント
279+
:[range]lb[uffer][!] [bufnr]
280+
":cbuffer" と同様だが、quickfixリストでなく、カレント
279281
ウィンドウのlocationリストが使われる。
280282

281283
*:cgetb* *:cgetbuffer*
282-
:cgetb[uffer] [bufnr] カレントバッファからエラーリストを読み込む。":cbuffer"
284+
:[range]cgetb[uffer] [bufnr]
285+
カレントバッファからエラーリストを読み込む。":cbuffer"
283286
と同じだが、最初のエラーにジャンプしない点が異なる。
284287

285288
*:lgetb* *:lgetbuffer*
286-
:lgetb[uffer] [bufnr] ":cgetbuffer" と同様だが、quickfixリストでなく、カレン
289+
:[range]lgetb[uffer] [bufnr]
290+
":cgetbuffer" と同様だが、quickfixリストでなく、カレン
287291
トウィンドウのlocationリストが使われる。
288292

289293
*:cad* *:cadd* *:caddbuffer*
290-
:cad[dbuffer] [bufnr] カレントバッファからエラーリストを読み込み、現在の
294+
:[range]cad[dbuffer] [bufnr]
295+
カレントバッファからエラーリストを読み込み、現在の
291296
quickfixリストにエラーを追加する。quickfixリストがまだ
292297
存在しない場合は、新しいリストが作成される。それ以外は
293298
":cbuffer" と同じ。
294299

295300
*:laddb* *:laddbuffer*
296-
:laddb[uffer] [bufnr] ":caddbuffer" と同様だが、quickfixリストでなく、カレン
301+
:[range]laddb[uffer] [bufnr]
302+
":caddbuffer" と同様だが、quickfixリストでなく、カレン
297303
トウィンドウのlocationリストが使われる。
298304

299305
*:cex* *:cexpr* *E777*
@@ -1270,6 +1276,16 @@ Vimがコンパイラから起動された場合、:shやいくつかの:!コマ
12701276
がコンパイラと同じプロセスの中で動いているため、標準出力が利用できないからで
12711277
ある。
12721278

1279+
PANDOC *quickfix-pandoc* *compiler-pandoc*
1280+
1281+
Pandoc コンパイラプラグインは、:make html や :make pdf のように、出力ファイル
1282+
タイプの拡張子が make に渡されることを想定している。
1283+
1284+
追加の引数を Pandoc に渡すことができる:
1285+
1286+
- `:make html --self-contained` のように make に追加することによっても可能であ
1287+
る。
1288+
- または、`b:pandoc_compiler_args``g:pandoc_compiler_args` に設定する。
12731289

12741290
PERL *quickfix-perl* *compiler-perl*
12751291

en/quickfix.txt

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
13211327
work, because Vim is then running in the same process as the compiler and
13221328
stdin (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

13251340
PERL *quickfix-perl* *compiler-perl*
13261341

0 commit comments

Comments
 (0)