diff options
author | glepnir <glephunter@gmail.com> | 2023-09-14 13:30:51 +0800 |
---|---|---|
committer | glepnir <glephunter@gmail.com> | 2023-09-18 18:21:14 +0800 |
commit | fd08fd3de3020647c8ae73f1c7d2cf9a4926c828 (patch) | |
tree | d6ea15fe5c720985f146431cac3587ced8516ced /runtime | |
parent | a6e74c1f0a2bbf03f5b99c167b549018f4c8fb0d (diff) | |
download | rneovim-fd08fd3de3020647c8ae73f1c7d2cf9a4926c828.tar.gz rneovim-fd08fd3de3020647c8ae73f1c7d2cf9a4926c828.tar.bz2 rneovim-fd08fd3de3020647c8ae73f1c7d2cf9a4926c828.zip |
fix(float): add fixd option
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/api.txt | 2 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/api.lua | 2 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/api_keysets.lua | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index 34e2aedabf..d710217305 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -3172,6 +3172,8 @@ nvim_open_win({buffer}, {enter}, {*config}) *nvim_open_win()* • noautocmd: If true then no buffer-related autocommand events such as |BufEnter|, |BufLeave| or |BufWinEnter| may fire from calling this function. + • fixed: If true when anchor is NW or SW, the float window + would be kept fixed even if the window would be truncated. Return: ~ Window handle, or 0 on error diff --git a/runtime/lua/vim/_meta/api.lua b/runtime/lua/vim/_meta/api.lua index 7cd0d825a1..392f733112 100644 --- a/runtime/lua/vim/_meta/api.lua +++ b/runtime/lua/vim/_meta/api.lua @@ -1585,6 +1585,8 @@ function vim.api.nvim_open_term(buffer, opts) end --- • noautocmd: If true then no buffer-related autocommand --- events such as `BufEnter`, `BufLeave` or `BufWinEnter` may --- fire from calling this function. +--- • fixed: If true when anchor is NW or SW, the float window +--- would be kept fixed even if the window would be truncated. --- @return integer function vim.api.nvim_open_win(buffer, enter, config) end diff --git a/runtime/lua/vim/_meta/api_keysets.lua b/runtime/lua/vim/_meta/api_keysets.lua index 4d08563ce2..b249f6629f 100644 --- a/runtime/lua/vim/_meta/api_keysets.lua +++ b/runtime/lua/vim/_meta/api_keysets.lua @@ -112,6 +112,7 @@ error('Cannot require a meta file') --- @field footer_pos? string --- @field style? string --- @field noautocmd? boolean +--- @field fixed? boolean --- @class vim.api.keyset.get_autocmds --- @field event? any |