Skip to content

Commit db9426a

Browse files
committed
Update quickfix.{txt,jax}
1 parent 0c6a526 commit db9426a

File tree

2 files changed

+22
-18
lines changed

2 files changed

+22
-18
lines changed

doc/quickfix.jax

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim バージョン 9.1. Last change: 2025 Mar 11
1+
*quickfix.txt* For Vim バージョン 9.1. Last change: 2025 Apr 06
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -43,11 +43,11 @@ Vim の中でコマンドを実行し結果を得る方法の一つに|:make|コ
4343
各コンパイラからのエラーメッセージを解釈させるためには、オプション
4444
'errorformat' をセットする (下の|errorformat|を参照)。
4545

46-
*quickfix-ID*
47-
各quickfixリストはquickfix IDと呼ばれる一意な識別子を持ち、この番号はVimセッ
48-
ションの中で変わらない|getqflist()| 関数はリストに割り当てられた識別子の取得
49-
に使用できる。quickfixリスト番号もある。この番号は、10個以上のリストがquickfix
50-
スタックに追加されるたびに変更される可能性がある。
46+
*quickfix-stack* *quickfix-ID*
47+
各 quickfix リストは quickfix ID と呼ばれる一意な識別子を持ち、この番号は Vim
48+
セッションの中で変わらない|getqflist()| 関数はリストに割り当てられた識別子の
49+
取得に使用できる。quickfix リスト番号もある。この番号は、'chistory' 個以上のリ
50+
ストが quickfix スタックに追加されるたびに変更される可能性がある。
5151

5252
*location-list* *E776*
5353
locationリストはウィンドウローカルなquickfixリストである。`:vimgrep`, `:grep`,
@@ -821,10 +821,12 @@ locationリストウィンドウからファイルを選択する場合、ファ
821821
=============================================================================
822822
3. 複数のエラーリストを使う *quickfix-error-lists*
823823

824-
これまでは一つだけのエラーリストがあると仮定してきた。実際は最後に使った10個
825-
迄のエラーリストが記憶される。新しいリストではじめた時には、以前のリストは自動
826-
的に保存される。古いエラーリストにアクセスするために、2つのコマンドが用意され
827-
ている。これらは存在するエラーリストの内1つを現在のエラーリストに設定する。
824+
これまでは、エラーリストは 1 つしかないと仮定してきた。実際には使用済みのリス
825+
トが複数存在しそれらが記憶されている。詳細は 'chistory' および 'lhistory' を参
826+
照。
827+
新しいリストを開始すると、以前のリストは自動的に保持される。古いエラーリストに
828+
アクセスするには、2 つのコマンドが使用できる。これらのコマンドは、既存のエラー
829+
リストの 1 つを現在のリストとして設定する。
828830

829831
*:colder* *:col* *E380*
830832
:col[der] [count] 古いエラーリストへ移動する。[count]が与えられると、そ

en/quickfix.txt

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim version 9.1. Last change: 2025 Mar 11
1+
*quickfix.txt* For Vim version 9.1. Last change: 2025 Apr 06
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -43,12 +43,12 @@ From inside Vim an easy way to run a command and handle the output is with the
4343
The 'errorformat' option should be set to match the error messages from your
4444
compiler (see |errorformat| below).
4545

46-
*quickfix-ID*
46+
*quickfix-stack* *quickfix-ID*
4747
Each quickfix list has a unique identifier called the quickfix ID and this
4848
number will not change within a Vim session. The |getqflist()| function can be
4949
used to get the identifier assigned to a list. There is also a quickfix list
50-
number which may change whenever more than ten lists are added to a quickfix
51-
stack.
50+
number which may change whenever more than 'chistory' lists are added to a
51+
quickfix stack.
5252

5353
*location-list* *E776*
5454
A location list is a window-local quickfix list. You get one after commands
@@ -860,10 +860,12 @@ using these functions are below:
860860
=============================================================================
861861
3. Using more than one list of errors *quickfix-error-lists*
862862

863-
So far has been assumed that there is only one list of errors. Actually the
864-
ten last used lists are remembered. When starting a new list, the previous
865-
ones are automatically kept. Two commands can be used to access older error
866-
lists. They set one of the existing error lists as the current one.
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.
867869

868870
*:colder* *:col* *E380*
869871
:col[der] [count] Go to older error list. When [count] is given, do

0 commit comments

Comments
 (0)