diff options
author | Will Hopkins <willothyh@gmail.com> | 2024-03-01 14:59:32 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-02 06:59:32 +0800 |
commit | 813dd36b72979dfd05479eb6402b9becc0faea29 (patch) | |
tree | 36209e9901fb7e8eee0ce23cf6d083c9b3e5f78e /scripts/gen_eval_files.lua | |
parent | 62d04f21d9eb16f8fca2ed5038c7af4fa3f8c63a (diff) | |
download | rneovim-813dd36b72979dfd05479eb6402b9becc0faea29.tar.gz rneovim-813dd36b72979dfd05479eb6402b9becc0faea29.tar.bz2 rneovim-813dd36b72979dfd05479eb6402b9becc0faea29.zip |
fix(types): rename win_get_config return type to win_config
Follow-up to #27397
Diffstat (limited to 'scripts/gen_eval_files.lua')
-rwxr-xr-x | scripts/gen_eval_files.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen_eval_files.lua b/scripts/gen_eval_files.lua index 83e55b3bc4..f1bba5c0a2 100755 --- a/scripts/gen_eval_files.lua +++ b/scripts/gen_eval_files.lua @@ -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 = { |