Skip to content

Commit 2526c9b

Browse files
authored
Merge pull request #1167 from tsuyoshicho/update/20221015/quickfix
Update quickfix.{txt,jax}
2 parents 619ac6b + 7618009 commit 2526c9b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

doc/quickfix.jax

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim バージョン 9.0. Last change: 2022 Feb 22
1+
*quickfix.txt* For Vim バージョン 9.0. Last change: 2022 Sep 26
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -437,7 +437,7 @@ quickfixリストとlocationリストの中の項目の数をそれぞれ |getqf
437437
を使用して行のリストをパースできる。例: >
438438
echo getqflist({'lines' : ["F1:10:Line10", "F2:20:Line20"]})
439439
echo getqflist({'lines' : systemlist('grep -Hn quickfix *')})
440-
これは 'items' キーに行からパースされたquickfixの項目のリストが含まれている辞
440+
これは "items" キーに行からパースされたquickfixの項目のリストが含まれている辞
441441
書を返す。以下は 'errorformat' オプションを変更せずにカスタム 'errorformat'
442442
使って行をパースする方法を示している。 >
443443
echo getqflist({'efm' : '%f#%l#%m', 'lines' : ['F1#10#Line']})
@@ -553,7 +553,7 @@ quickfixリストのエントリ数が多すぎる場合は、cfilterプラグ
553553
ラインに表示される。このバッファがquickfixコマンドまた
554554
は関数により変更されるたびに、|b:changedtick| 変数はイ
555555
ンクリメントされる。このバッファにおける変数の値は
556-
getqflist() や getloclist() 関数を用い 'qfbufnr'
556+
getqflist() や getloclist() 関数を用い "qfbufnr"
557557
アイテムを通して取得できる。locationリストの場合は、
558558
locationリストが削除されるときに、このバッファも削除さ
559559
れる。
@@ -1925,7 +1925,7 @@ quickfix ウィンドウおよび location リストウィンドウ内で各行
19251925
関数は項目の start_idx から end_idx について quickfix ウィンドウに表示する単一
19261926
の行の表示テキストを返さなくてはならない。関数は項目の情報を |getqflist()|
19271927
数から quickfix リストを識別する識別子 "id" で取れる。location リストの時は、
1928-
'winid' 引数付きで getloclist() 関数を使う。空のリストが返された場合、全エント
1928+
"winid" 引数付きで getloclist() 関数を使う。空のリストが返された場合、全エント
19291929
リの表示にデフォルトのフォーマットが使われる。返されたリストの項目が空文字列の
19301930
場合、そのエントリに一致する項目の表示にデフォルトのフォーマットが使われる。
19311931

en/quickfix.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim version 9.0. Last change: 2022 Feb 22
1+
*quickfix.txt* For Vim version 9.0. Last change: 2022 Sep 26
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -478,7 +478,7 @@ You can parse a list of lines using 'errorformat' without creating or
478478
modifying a quickfix list using the |getqflist()| function. Examples: >
479479
echo getqflist({'lines' : ["F1:10:Line10", "F2:20:Line20"]})
480480
echo getqflist({'lines' : systemlist('grep -Hn quickfix *')})
481-
This returns a dictionary where the 'items' key contains the list of quickfix
481+
This returns a dictionary where the "items" key contains the list of quickfix
482482
entries parsed from lines. The following shows how to use a custom
483483
'errorformat' to parse the lines without modifying the 'errorformat' option: >
484484
echo getqflist({'efm' : '%f#%l#%m', 'lines' : ['F1#10#Line']})
@@ -597,7 +597,7 @@ can go back to the unfiltered list using the |:colder|/|:lolder| command.
597597
quickfix command or function, the |b:changedtick|
598598
variable is incremented. You can get the number of
599599
this buffer using the getqflist() and getloclist()
600-
functions by passing the 'qfbufnr' item. For a
600+
functions by passing the "qfbufnr" item. For a
601601
location list, this buffer is wiped out when the
602602
location list is removed.
603603

@@ -2011,7 +2011,7 @@ The function should return a single line of text to display in the quickfix
20112011
window for each entry from start_idx to end_idx. The function can obtain
20122012
information about the entries using the |getqflist()| function and specifying
20132013
the quickfix list identifier "id". For a location list, getloclist() function
2014-
can be used with the 'winid' argument. If an empty list is returned, then the
2014+
can be used with the "winid" argument. If an empty list is returned, then the
20152015
default format is used to display all the entries. If an item in the returned
20162016
list is an empty string, then the default format is used to display the
20172017
corresponding entry.

0 commit comments

Comments
 (0)