neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit c9b5ac113a4103956407165a7ebb2bba0c425e07
parent afc3c43f12e2d9d8114c29636ba976f732efc3ed
Author: Vlad <52591095+MeanderingProgrammer@users.noreply.github.com>
Date:   Mon, 10 Mar 2025 08:18:11 -0700

docs(vvars): vim.v.event.windows #32673


Diffstat:
Mruntime/doc/vvars.txt | 1+
Mruntime/lua/vim/_meta/vvars.lua | 1+
Mruntime/lua/vim/_meta/vvars_extra.lua | 2++
Msrc/nvim/vvars.lua | 1+
4 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/runtime/doc/vvars.txt b/runtime/doc/vvars.txt @@ -192,6 +192,7 @@ v:event reason Reason for completion being done. |CompleteDone| complete_word The word that was selected, empty if abandoned complete. complete_type See |complete_info_mode| + windows List of window IDs that changed on |WinResized| *v:exception* *exception-variable* v:exception diff --git a/runtime/lua/vim/_meta/vvars.lua b/runtime/lua/vim/_meta/vvars.lua @@ -199,6 +199,7 @@ vim.v.errors = ... --- reason Reason for completion being done. `CompleteDone` --- complete_word The word that was selected, empty if abandoned complete. --- complete_type See `complete_info_mode` +--- windows List of window IDs that changed on `WinResized` --- @type vim.v.event vim.v.event = ... diff --git a/runtime/lua/vim/_meta/vvars_extra.lua b/runtime/lua/vim/_meta/vvars_extra.lua @@ -75,3 +75,5 @@ error('Cannot require a meta file') --- @field reason? string Reason for completion being done. |CompleteDone| --- The word that was selected, empty if abandoned complete. @field complete_word? string --- @field complete_type? string See |complete_info_mode| +--- List of window IDs that changed on |WinResized| +--- @field windows? integer[] diff --git a/src/nvim/vvars.lua b/src/nvim/vvars.lua @@ -214,6 +214,7 @@ M.vars = { reason Reason for completion being done. |CompleteDone| complete_word The word that was selected, empty if abandoned complete. complete_type See |complete_info_mode| + windows List of window IDs that changed on |WinResized| ]=], }, exception = {