aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/eval.txt
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2015-05-29 23:26:27 -0400
committerMichael Reed <m.reed@mykolab.com>2015-06-01 16:17:08 -0400
commite099b545be027befb51e0b5c283c2468fda0456c (patch)
tree1547c2c9ddd92875282ee4c5a107b0d64ec60db2 /runtime/doc/eval.txt
parent7f16dc14dba6b4b667f5374ed98b7c795f5781a9 (diff)
downloadrneovim-e099b545be027befb51e0b5c283c2468fda0456c.tar.gz
rneovim-e099b545be027befb51e0b5c283c2468fda0456c.tar.bz2
rneovim-e099b545be027befb51e0b5c283c2468fda0456c.zip
doc: Misc. X11-related cleanups
These were all introduced by the previous commit, and spotted with with `make html` in `runtime/doc`. [ci skip]
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r--runtime/doc/eval.txt18
1 files changed, 6 insertions, 12 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 81a965d0c6..110813dd13 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1562,9 +1562,7 @@ v:progname Contains the name (with path removed) with which Nvim was
*v:progpath* *progpath-variable*
v:progpath Contains the command with which Vim was invoked, including the
- path. Useful if you want to message a Vim server using a
- |--remote-expr|.
- To get the full path use: >
+ path. To get the full path use: >
echo exepath(v:progpath)
< NOTE: This does not work when the command is a relative path
and the current directory has changed.
@@ -1694,13 +1692,8 @@ v:version Version number of Vim: Major version number times 100 plus
*v:warningmsg* *warningmsg-variable*
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.
- When an MS-Windows GUI is running this will be set to the
- window handle.
- Otherwise the value is zero.
+ *v:windowid* *windowid-variable* {Nvim}
+v:windowid Is a no-op at the moment; the value is always set to 0.
Note: for windows inside Vim use |winnr()|.
==============================================================================
@@ -5388,8 +5381,9 @@ serverlist() *serverlist()*
When there are no servers an empty string is returned.
Example: >
:echo serverlist()
-< *--serverlist*
- The Vim command-line option `--serverlist` can be imitated: >
+< {Nvim} *--serverlist*
+ The Vim command-line option `--serverlist` was removed from
+ Nvim, but it can be imitated if needed: >
nvim --cmd "echo serverlist()" --cmd "q"
<
serverstart([{address}]) *serverstart()*