mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 12:45:17 -07:00
fix(types): rename win_get_config return type to win_config
Follow-up to #27397
This commit is contained in:
parent
62d04f21d9
commit
813dd36b72
2
runtime/lua/vim/_meta/api.lua
generated
2
runtime/lua/vim/_meta/api.lua
generated
@ -2118,7 +2118,7 @@ function vim.api.nvim_win_get_buf(window) end
|
||||
--- `relative` is empty for normal windows.
|
||||
---
|
||||
--- @param window integer Window handle, or 0 for current window
|
||||
--- @return vim.api.keyset.float_config
|
||||
--- @return vim.api.keyset.win_config
|
||||
function vim.api.nvim_win_get_config(window) end
|
||||
|
||||
--- Gets the (1,0)-indexed, buffer-relative cursor position for a given window
|
||||
|
@ -40,7 +40,7 @@ local LUA_API_RETURN_OVERRIDES = {
|
||||
nvim_get_option_info = 'vim.api.keyset.get_option_info',
|
||||
nvim_get_option_info2 = 'vim.api.keyset.get_option_info',
|
||||
nvim_parse_cmd = 'vim.api.keyset.parse_cmd',
|
||||
nvim_win_get_config = 'vim.api.keyset.float_config',
|
||||
nvim_win_get_config = 'vim.api.keyset.win_config',
|
||||
}
|
||||
|
||||
local LUA_META_HEADER = {
|
||||
|
Loading…
Reference in New Issue
Block a user