diff options
-rw-r--r-- | runtime/doc/vvars.txt | 1 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/vvars.lua | 1 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/vvars_extra.lua | 2 | ||||
-rw-r--r-- | src/nvim/vvars.lua | 1 |
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 = { |