summaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-10-27 12:33:17 +0200
committerBram Moolenaar <Bram@vim.org>2010-10-27 12:33:17 +0200
commit264e9fd61b92bbf27c00b95537f6bebbbe5324f6 (patch)
tree731bb027c0ce2ee1e33138b1cbea75ae01501754 /runtime/doc
parent6b5ef067a548f1995dfb09190eca5a3560c2dad6 (diff)
downloadvim-git-264e9fd61b92bbf27c00b95537f6bebbbe5324f6.tar.gz
updated for version 7.3.038v7.3.038
Problem: v:windowid isn't set on MS-Windows. Solution: Set it to the window handle. (Chris Sutcliffe)
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/eval.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index d1a1ba3f2..bceb6800e 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1660,7 +1660,11 @@ v:warningmsg Last given warning message. It's allowed to set this variable.
*v:windowid* *windowid-variable*
v:windowid When any X11 based GUI is running or when running in a
terminal and Vim connects to the X server (|-X|) this will be
- set to the window ID. Otherwise the value is zero.
+ set to the window ID.
+ When an MS-Windows GUI is running this will be set to the
+ window handle.
+ Otherwise the value is zero.
+ Note: for windows inside Vim use |winnr()|.
==============================================================================
4. Builtin Functions *functions*