mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
v:windowid #4608
Set v:windowid as writeable (but read only in the sandbox). References #3626
This commit is contained in:
parent
ba9bdb3e70
commit
5c6592fdab
@ -1763,7 +1763,8 @@ v:version Version number of Vim: Major version number times 100 plus
|
||||
v:warningmsg Last given warning message. It's allowed to set this variable.
|
||||
|
||||
*v:windowid* *windowid-variable* {Nvim}
|
||||
v:windowid Is a no-op at the moment; the value is always set to 0.
|
||||
v:windowid Application-specific window ID ("window handle" in MS-Windows)
|
||||
which may be set by any attached UI. Defaults to zero.
|
||||
Note: for windows inside Vim use |winnr()|.
|
||||
|
||||
==============================================================================
|
||||
|
@ -366,7 +366,7 @@ static struct vimvar {
|
||||
VV(VV_SEARCHFORWARD, "searchforward", VAR_NUMBER, 0),
|
||||
VV(VV_HLSEARCH, "hlsearch", VAR_NUMBER, 0),
|
||||
VV(VV_OLDFILES, "oldfiles", VAR_LIST, 0),
|
||||
VV(VV_WINDOWID, "windowid", VAR_NUMBER, VV_RO),
|
||||
VV(VV_WINDOWID, "windowid", VAR_NUMBER, VV_RO_SBX),
|
||||
VV(VV_PROGPATH, "progpath", VAR_STRING, VV_RO),
|
||||
VV(VV_COMMAND_OUTPUT, "command_output", VAR_STRING, 0),
|
||||
VV(VV_COMPLETED_ITEM, "completed_item", VAR_DICT, VV_RO),
|
||||
|
Loading…
Reference in New Issue
Block a user