diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-07-28 10:22:19 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-07-28 23:58:34 -0400 |
commit | 91b8210779c11d5ff6c37929f67d76fd738987b5 (patch) | |
tree | f749c89ea6f4b06c25387b8a1fc714c08ec02b52 /runtime/doc/eval.txt | |
parent | a2253744c9bcd9229be9533540075e977f0be2cd (diff) | |
download | rneovim-91b8210779c11d5ff6c37929f67d76fd738987b5.tar.gz rneovim-91b8210779c11d5ff6c37929f67d76fd738987b5.tar.bz2 rneovim-91b8210779c11d5ff6c37929f67d76fd738987b5.zip |
vim-patch:8.0.0687: minor issues related to quickfix
Problem: Minor issues related to quickfix.
Solution: Set the proper return status for all cases in setqflist() and at
test cases for this. Move the "adding" flag outside of
FEAT_WINDOWS. Minor update to the setqflist() help text. (Yegappan
Lakshmanan)
https://github.com/vim/vim/commit/86f100dc0922e83bead7bcd5fd2bb2abbf153f46
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 7b5fc191e9..b3ab0a4500 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -6914,7 +6914,8 @@ setqflist({list} [, {action}[, {what}]]) *setqflist()* title quickfix list title text Unsupported keys in {what} are ignored. If the "nr" item is not present, then the current quickfix list - is modified. + is modified. When creating a new quickfix list, "nr" can be + set to a value one greater than the quickfix stack size. Examples: > :call setqflist([], 'r', {'title': 'My search'}) |