Fix missuse of module function that has been moved to utils in window

window_management
This commit is contained in:
Martin Larsson 2025-02-24 14:55:17 +00:00
parent deba4a64a6
commit c2a9c8ea2c

View file

@ -211,13 +211,13 @@ function M.setup()
utils.set_keymap_list(enter_resizing_mode_keymaps) utils.set_keymap_list(enter_resizing_mode_keymaps)
local function on_resize_mode_enter() local function on_resize_mode_enter()
M.del_keymap_list(enter_resizing_mode_keymaps) utils.del_keymap_list(enter_resizing_mode_keymaps)
M.set_keymap_list(resizing_mode_keymaps) utils.set_keymap_list(resizing_mode_keymaps)
end end
local function on_resize_mode_exit() local function on_resize_mode_exit()
M.del_keymap_list(resizing_mode_keymaps) utils.del_keymap_list(resizing_mode_keymaps)
M.set_keymap_list(enter_resizing_mode_keymaps) utils.set_keymap_list(enter_resizing_mode_keymaps)
end end
local window_management_augroup = "WindowManagementEvents" local window_management_augroup = "WindowManagementEvents"