summaryrefslogtreecommitdiff
path: root/runtime
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
parent80fc04348a4ea2e0b993c9acbc3f11e59cab9d4a (diff)
downloadvim-git-a3ffd9c7801c3a32c6361f745af8711444df8abf.tar.gz
updated for version 7.0112
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/gui.txt8
-rw-r--r--runtime/doc/map.txt4
-rw-r--r--runtime/doc/usr_41.txt1
3 files changed, 7 insertions, 6 deletions
diff --git a/runtime/doc/gui.txt b/runtime/doc/gui.txt
index 6158bbc5d..8969b4c19 100644
--- a/runtime/doc/gui.txt
+++ b/runtime/doc/gui.txt
@@ -1,4 +1,4 @@
-*gui.txt* For Vim version 7.0aa. Last change: 2005 Jul 07
+*gui.txt* For Vim version 7.0aa. Last change: 2005 Jul 21
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -736,9 +736,9 @@ from the main menu bar. You must then use the |:popup| or |:tearoff| command
to display it.
*popup-menu*
-In the Win32, KDE, GTK+, Motif, Athena and Photon GUI, you can define the special
-menu "PopUp". This is the menu that is displayed when the right mouse button
-is pressed, if 'mousemodel' is set to popup or popup_setpos.
+In the Win32, KDE, GTK+, Motif, Athena and Photon GUI, you can define the
+special menu "PopUp". This is the menu that is displayed when the right mouse
+button is pressed, if 'mousemodel' is set to popup or popup_setpos.
5.3 Showing What Menus Are Mapped To *showing-menus*
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt
index a42b744af..19a9d531c 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*
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt
index 1c0a09dda..7084d1eab 100644
--- a/runtime/doc/usr_41.txt
+++ b/runtime/doc/usr_41.txt
@@ -692,6 +692,7 @@ Buffers, windows and the argument list:
winnr() get the window number for the current window
bufwinnr() get the window number of a specific buffer
winbufnr() get the buffer number of a specific window
+ getbufline() get a list of lines from the specified buffer
getbufvar() get a variable value from a specific buffer
setbufvar() set a variable in a specific buffer
getwinvar() get a variable value from a specific window