summaryrefslogtreecommitdiffstats
path: root/runtime/doc/map.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-07-21 21:03:15 +0000
committerBram Moolenaar <Bram@vim.org>2005-07-21 21:03:15 +0000
commita3ffd9c7801c3a32c6361f745af8711444df8abf (patch)
tree51936c82144ad09d94b029e1d11798754982ecd8 /runtime/doc/map.txt
parent80fc04348a4ea2e0b993c9acbc3f11e59cab9d4a (diff)
updated for version 7.0112
Diffstat (limited to 'runtime/doc/map.txt')
-rw-r--r--runtime/doc/map.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt
index a42b744afc..19a9d531c0 100644
--- a/runtime/doc/map.txt
+++ b/runtime/doc/map.txt
@@ -1,4 +1,4 @@
-*map.txt* For Vim version 7.0aa. Last change: 2005 Jun 03
+*map.txt* For Vim version 7.0aa. Last change: 2005 Jul 21
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -974,7 +974,7 @@ the 'path' option: >
:com -nargs=1 -bang -complete=customlist,EditFileComplete
\ EditFile edit<bang> <args>
:fun EditFileComplete(A,L,P)
- : return split(globpath(&path, a:ArgLead))
+ : return split(globpath(&path, a:ArgLead), "\n")
:endfun
<
Range handling *E177* *E178*