-
Notifications
You must be signed in to change notification settings - Fork 271
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
At the moment there are hard coded keymaps defined to move cursor up and down while in filter mode.
filter.lua
input:map("i", "<down>", move_cursor_down, { noremap = true })
input:map("i", "<C-n>", move_cursor_down, { noremap = true })
input:map("i", "<up>", move_cursor_up, { noremap = true })
input:map("i", "<C-p>", move_cursor_up, { noremap = true })I would love to have them configurable the same way
["<c-n>"] = "move_cursor_down",
["<c-e>"] = "move_cursor_up",
["<down>"] = "move_cursor_down",
["<up>"] = "move_cursor_up",d3fvxl, antgubarev and bew
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request