Fix missuse of module function that has been moved to utils in window
window_management
This commit is contained in:
parent
deba4a64a6
commit
c2a9c8ea2c
1 changed files with 4 additions and 4 deletions
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue