aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVlad <52591095+MeanderingProgrammer@users.noreply.github.com>2025-03-10 08:18:11 -0700
committerGitHub <noreply@github.com>2025-03-10 08:18:11 -0700
commitc9b5ac113a4103956407165a7ebb2bba0c425e07 (patch)
treee2768245910b8b882af89e3786a55b30cae1a569
parentafc3c43f12e2d9d8114c29636ba976f732efc3ed (diff)
downloadrneovim-c9b5ac113a4103956407165a7ebb2bba0c425e07.tar.gz
rneovim-c9b5ac113a4103956407165a7ebb2bba0c425e07.tar.bz2
rneovim-c9b5ac113a4103956407165a7ebb2bba0c425e07.zip
docs(vvars): vim.v.event.windows #32673
-rw-r--r--runtime/doc/vvars.txt1
-rw-r--r--runtime/lua/vim/_meta/vvars.lua1
-rw-r--r--runtime/lua/vim/_meta/vvars_extra.lua2
-rw-r--r--src/nvim/vvars.lua1
4 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/vvars.txt b/runtime/doc/vvars.txt
index e4f6b10ef7..848942a21f 100644
--- 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
index d7a80911c6..a44ad6c7d9 100644
--- 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
index 7ef3021e89..9fe0be4f27 100644
--- 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
index 55f979364f..52af56e607 100644
--- 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 = {