diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-06 21:54:30 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-06 22:36:49 -0400 |
commit | 4eb923bfe0658a03c53326ecc7fea4ca2b820e34 (patch) | |
tree | 8d6aff22659b09428b5b04bd5d9e2e5db46bb349 /runtime/doc/eval.txt | |
parent | 2be853d486be2cac3b04efbf425afac2dd9361a3 (diff) | |
download | rneovim-4eb923bfe0658a03c53326ecc7fea4ca2b820e34.tar.gz rneovim-4eb923bfe0658a03c53326ecc7fea4ca2b820e34.tar.bz2 rneovim-4eb923bfe0658a03c53326ecc7fea4ca2b820e34.zip |
vim-patch:8.0.0904: cannot set a location list from text
Problem: Cannot set a location list from text.
Solution: Add the "text" argument to setqflist(). (Yegappan Lakshmanan)
https://github.com/vim/vim/commit/ae338338508ef42866204f90dca861ac555f4298
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index e51ecbd688..0014fe5d3b 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -6851,10 +6851,12 @@ setpos({expr}, {list}) setqflist({list} [, {action}[, {what}]]) *setqflist()* - Create or replace or add to the quickfix list using the items - in {list}. Each item in {list} is a dictionary. - Non-dictionary items in {list} are ignored. Each dictionary - item can contain the following entries: + Create or replace or add to the quickfix list. + + When {what} is not present, use the items in {list}. Each + item must be a dictionary. Non-dictionary items in {list} are + ignored. Each dictionary item can contain the following + entries: bufnr buffer number; must be the number of a valid buffer @@ -6909,6 +6911,10 @@ setqflist({list} [, {action}[, {what}]]) *setqflist()* argument is ignored. The following items can be specified in {what}: context any Vim type can be stored as a context + text use 'errorformat' to extract items from the + text and add the resulting entries to the + quickfix list {nr}. The value can be a string + with one line or a list with multiple lines. items list of quickfix entries. Same as the {list} argument. nr list number in the quickfix stack; zero |