diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-06 23:49:21 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-07 00:00:22 -0400 |
commit | d99a2689143827fae19e2354d27287587f2059cb (patch) | |
tree | 82f7bf49e9813c6cc52ac11a6bc34a5890ac3732 /runtime/doc/eval.txt | |
parent | 4eb923bfe0658a03c53326ecc7fea4ca2b820e34 (diff) | |
download | rneovim-d99a2689143827fae19e2354d27287587f2059cb.tar.gz rneovim-d99a2689143827fae19e2354d27287587f2059cb.tar.bz2 rneovim-d99a2689143827fae19e2354d27287587f2059cb.zip |
vim-patch:8.0.0922: quickfix list always added after current one
Problem: Quickfix list always added after current one.
Solution: Make it possible to add a quickfix list after the last one.
(Yegappan Lakshmanan)
https://github.com/vim/vim/commit/55b6926450d75788dada3ff44a35e328224df758
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 0014fe5d3b..1ebc1bc652 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -6901,7 +6901,10 @@ setqflist({list} [, {action}[, {what}]]) *setqflist()* freed. If {action} is not present or is set to ' ', then a new list - is created. + is created. The new quickfix list is added after the current + quickfix list in the stack and all the following lists are + freed. To add a new quickfix list at the end of the stack, + set "nr" in {what} to '$'. If {title} is given, it will be used to set |w:quickfix_title| after opening the quickfix window. |