summaryrefslogtreecommitdiffstats
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-05-10 17:24:16 +0000
committerBram Moolenaar <Bram@vim.org>2007-05-10 17:24:16 +0000
commitff1d0d4cf5b9ec789cb0223154d7b76510d32d7b (patch)
tree80a15de6533fb6d15dd38dcde4daf601615ee414 /runtime/doc
parent4868726a3f8ad92f5e2025315072edddad9ab506 (diff)
updated for version 7.1b
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/gui_w32.txt2
-rw-r--r--runtime/doc/if_ole.txt8
-rw-r--r--runtime/doc/usr_42.txt2
3 files changed, 9 insertions, 3 deletions
diff --git a/runtime/doc/gui_w32.txt b/runtime/doc/gui_w32.txt
index a518f032a5..c81d5a1ce3 100644
--- a/runtime/doc/gui_w32.txt
+++ b/runtime/doc/gui_w32.txt
@@ -1,4 +1,4 @@
-*gui_w32.txt* For Vim version 7.1a. Last change: 2007 May 03
+*gui_w32.txt* For Vim version 7.1b. Last change: 2007 May 03
VIM REFERENCE MANUAL by Bram Moolenaar
diff --git a/runtime/doc/if_ole.txt b/runtime/doc/if_ole.txt
index 626da3e2fd..51357c7b9f 100644
--- a/runtime/doc/if_ole.txt
+++ b/runtime/doc/if_ole.txt
@@ -1,4 +1,4 @@
-*if_ole.txt* For Vim version 7.1a. Last change: 2006 Apr 30
+*if_ole.txt* For Vim version 7.1b. Last change: 2007 May 10
VIM REFERENCE MANUAL by Paul Moore
@@ -40,6 +40,12 @@ instance), code similar to the following should be used:
use Win32::OLE;
$vim = new Win32::OLE 'Vim.Application';
+[C#] >
+ // Add a reference to VIM in your project.
+ // Choose the COM tab.
+ // Select "VIM Ole Interface 1.1 Type Library"
+ Vim.Vim vimobj = new Vim.Vim();
+
Vim does not support acting as a "hidden" OLE server, like some other OLE
Automation servers. When a client starts up an instance of Vim, that instance
is immediately visible. Simply closing the OLE connection to the Vim instance
diff --git a/runtime/doc/usr_42.txt b/runtime/doc/usr_42.txt
index 3b0cb0498f..98be3f7d7d 100644
--- a/runtime/doc/usr_42.txt
+++ b/runtime/doc/usr_42.txt
@@ -1,4 +1,4 @@
-*usr_42.txt* For Vim version 7.1a. Last change: 2006 Apr 24
+*usr_42.txt* For Vim version 7.1b. Last change: 2006 Apr 24
VIM USER MANUAL - by Bram Moolenaar