aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/eval.txt
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-12-18 21:34:09 -0500
committerGitHub <noreply@github.com>2017-12-18 21:34:09 -0500
commit88863bb6ae5ce6409341a2cf4155d69210c319a4 (patch)
treea52b868658736b424efd3a036b4c927ac9fd0d98 /runtime/doc/eval.txt
parentc01a84e34407a87752db8fba20a0edabc8a8bf2f (diff)
parent765ff94b5be90bc33eb8eba3fdfe3e910124450d (diff)
downloadrneovim-88863bb6ae5ce6409341a2cf4155d69210c319a4.tar.gz
rneovim-88863bb6ae5ce6409341a2cf4155d69210c319a4.tar.bz2
rneovim-88863bb6ae5ce6409341a2cf4155d69210c319a4.zip
Merge pull request #7744 from jamessan/vim-8.0.0517
[RFC] vim-patch:8.0.0517,8.0.0536,8.0.0584
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r--runtime/doc/eval.txt19
1 files changed, 11 insertions, 8 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index e337c5d6d5..efc8775d0a 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -6855,16 +6855,19 @@ setqflist({list} [, {action}[, {what}]]) *setqflist()*
Note that the list is not exactly the same as what
|getqflist()| returns.
- *E927*
- If {action} is set to 'a', then the items from {list} are
- added to the existing quickfix list. If there is no existing
- list, then a new list is created.
+ {action} values: *E927*
+ 'a' The items from {list} are added to the existing
+ quickfix list. If there is no existing list, then a
+ new list is created.
- If {action} is set to 'r', then the items from the current
- quickfix list are replaced with the items from {list}. This
- can also be used to clear the list: >
- :call setqflist([], 'r')
+ 'r' The items from the current quickfix list are replaced
+ with the items from {list}. This can also be used to
+ clear the list: >
+ :call setqflist([], 'r')
<
+ 'f' All the quickfix lists in the quickfix stack are
+ freed.
+
If {action} is not present or is set to ' ', then a new list
is created.