|
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 |
2 | 2 |
|
3 | 3 |
|
4 | 4 | VIM REFERENCE MANUAL by Bram Moolenaar
|
@@ -478,7 +478,7 @@ You can parse a list of lines using 'errorformat' without creating or
|
478 | 478 | modifying a quickfix list using the |getqflist()| function. Examples: >
|
479 | 479 | echo getqflist({'lines' : ["F1:10:Line10", "F2:20:Line20"]})
|
480 | 480 | 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 |
482 | 482 | entries parsed from lines. The following shows how to use a custom
|
483 | 483 | 'errorformat' to parse the lines without modifying the 'errorformat' option: >
|
484 | 484 | 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.
|
597 | 597 | quickfix command or function, the |b:changedtick|
|
598 | 598 | variable is incremented. You can get the number of
|
599 | 599 | 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 |
601 | 601 | location list, this buffer is wiped out when the
|
602 | 602 | location list is removed.
|
603 | 603 |
|
@@ -2011,7 +2011,7 @@ The function should return a single line of text to display in the quickfix
|
2011 | 2011 | window for each entry from start_idx to end_idx. The function can obtain
|
2012 | 2012 | information about the entries using the |getqflist()| function and specifying
|
2013 | 2013 | 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 |
2015 | 2015 | default format is used to display all the entries. If an item in the returned
|
2016 | 2016 | list is an empty string, then the default format is used to display the
|
2017 | 2017 | corresponding entry.
|
|
0 commit comments