diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-02-01 21:51:12 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-02-01 21:51:12 +0000 |
commit | afeb4fa8a7ffc357cea70668b9ad3c66edfc8ce0 (patch) | |
tree | ff6cda8c2a6fd2ea026f1f182195752feb5f7dac /runtime/doc/eval.txt | |
parent | b8a7b560b1c25a059dfb57cbe40f0a3f98ed8e97 (diff) | |
download | vim-git-afeb4fa8a7ffc357cea70668b9ad3c66edfc8ce0.tar.gz |
updated for version 7.0191
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index d119e127d..b8539f434 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1,4 +1,4 @@ -*eval.txt* For Vim version 7.0aa. Last change: 2006 Jan 29 +*eval.txt* For Vim version 7.0aa. Last change: 2006 Jan 31 VIM REFERENCE MANUAL by Bram Moolenaar @@ -2371,7 +2371,7 @@ filter({expr}, {string}) *filter()* The operation is done in-place. If you want a List or Dictionary to remain unmodified make a copy first: > - :let l = filter(copy(mylist), '& =~ "KEEP"') + :let l = filter(copy(mylist), 'v:val =~ "KEEP"') < Returns {expr}, the List or Dictionary that was filtered. When an error is encountered while evaluating {string} no |