It would be nice if you could add mappings to the search input for insert mode, similarly to how telescope does it
mappings = {
i = {
["<A-BS>"] = function()
vim.api.nvim_input("<C-w>")
end
}
},
In my case, I would like to remap <A-BS> (alt-backspace) to input <C-w>
It would be nice if you could add mappings to the search input for insert mode, similarly to how telescope does it
In my case, I would like to remap
<A-BS>(alt-backspace) to input<C-w>