summaryrefslogtreecommitdiffstats
path: root/runtime/doc
diff options
context:
space:
mode:
authorlilydjwg <lilydjwg@gmail.com>2024-01-29 20:54:28 +0100
committerChristian Brabandt <cb@256bit.org>2024-01-29 20:54:28 +0100
commit6e0a18f82bd04a45e9682523c42af9cbbc37684c (patch)
treed13ee399f7bbae3045ae5afc85be2308de28e3ee /runtime/doc
parent94ff09a0935bc78fd81e9c79f099d42c94e3c218 (diff)
patch 9.1.0064: No Wayland supportv9.1.0064
Problem: No Wayland support Solution: Add Wayland UI support (lilydjwg) closes: #9639 Signed-off-by: lilydjwg <lilydjwg@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/builtin.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index 88cf642ca4..5001205ea6 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -1,4 +1,4 @@
-*builtin.txt* For Vim version 9.1. Last change: 2024 Jan 25
+*builtin.txt* For Vim version 9.1. Last change: 2024 Jan 29
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -4424,14 +4424,16 @@ getwinpos([{timeout}]) *getwinpos()*
getwinposx() The result is a Number, which is the X coordinate in pixels of
the left hand side of the GUI Vim window. Also works for an
xterm (uses a timeout of 100 msec).
- The result will be -1 if the information is not available.
+ The result will be -1 if the information is not available
+ (e.g. on the Wayland backend).
The value can be used with `:winpos`.
*getwinposy()*
getwinposy() The result is a Number, which is the Y coordinate in pixels of
the top of the GUI Vim window. Also works for an xterm (uses
a timeout of 100 msec).
- The result will be -1 if the information is not available.
+ The result will be -1 if the information is not available
+ (e.g. on the Wayland backend).
The value can be used with `:winpos`.
getwinvar({winnr}, {varname} [, {def}]) *getwinvar()*