diff options
| author | Will Hopkins <willothyh@gmail.com> | 2025-09-19 10:31:34 -0700 |
|---|---|---|
| committer | Sean Dewar <6256228+seandewar@users.noreply.github.com> | 2026-03-16 13:05:46 +0000 |
| commit | e80d19142bdb7b2856ef304f3a5ae05d22ba6532 (patch) | |
| tree | cbb119e3fdfe21c32ed98ffd9afef46cfbc0bcdc /runtime/lua/vim/_meta/api_keysets.lua | |
| parent | 46f538c210e2c1d53d71ddba83ec6cfa36f802e1 (diff) | |
feat(api): add nvim_open_tabpage
Problem: no API function for opening a new tab page and returning its handle, or
to open without entering.
Solution: add nvim_open_tabpage.
Diffstat (limited to 'runtime/lua/vim/_meta/api_keysets.lua')
| -rw-r--r-- | runtime/lua/vim/_meta/api_keysets.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/lua/vim/_meta/api_keysets.lua b/runtime/lua/vim/_meta/api_keysets.lua index acbe5a76e4..fb7728547f 100644 --- a/runtime/lua/vim/_meta/api_keysets.lua +++ b/runtime/lua/vim/_meta/api_keysets.lua @@ -437,6 +437,10 @@ error('Cannot require a meta file') --- @field scoped? boolean --- @field _subpriority? integer +--- @class vim.api.keyset.tabpage_config +--- @field enter? boolean +--- @field after? integer + --- @class vim.api.keyset.user_command --- @field addr? any --- @field bang? boolean |
