-
I want to go to the next line on |
Beta Was this translation helpful? Give feedback.
Answered by
stevearc
Mar 12, 2023
Replies: 1 comment
-
Assuming you are using the built-in vim.api.nvim_create_autocmd("FileType", {
pattern = "DressingSelect",
callback = function(args)
vim.keymap.set("n", "<Tab>", "j", { buffer = args.buf })
end,
}) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mrtnvgr
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Assuming you are using the built-in
vim.ui.select
backend, you can create a mapping using a filetype autocmd: