summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-04-22 10:56:16 +0000
committerBram Moolenaar <Bram@vim.org>2009-04-22 10:56:16 +0000
commit798b30bdfd71546ae975df583020dd118936511a (patch)
tree5b99c78ae96064efab86dc60e39c05986e07767f /runtime
parentf3205d1ee7b3cc7b054680bfa4e7e14a9a5b477e (diff)
downloadvim-git-798b30bdfd71546ae975df583020dd118936511a.tar.gz
updated for version 7.2-149v7.2.149
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index cc0f79134..6a57ae524 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -2414,6 +2414,7 @@ cursor({list})
When 'virtualedit' is used {off} specifies the offset in
screen columns from the start of the character. E.g., a
position within a <Tab> or after the last character.
+ Returns 0 when the position could be set, -1 otherwise.
deepcopy({expr}[, {noref}]) *deepcopy()* *E698*
@@ -4516,6 +4517,7 @@ rename({from}, {to}) *rename()*
should also work to move files across file systems. The
result is a Number, which is 0 if the file was renamed
successfully, and non-zero when the renaming failed.
+ NOTE: If {to} exists it is overwritten without warning.
This function is not available in the |sandbox|.
repeat({expr}, {count}) *repeat()*