-
|
I'm using a Mac and pressing Option-q(which is alt-qon Linux/windows) is inserting a unicode value and I can't send my search values into my quick fix list. I've tried to figure out how to change the keymap from Alt-Q to Ctrl-q. I wasn't able to do that. Any help appreciated. 🙏 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
|
See The below may or may not work, I'm not sure if require("fzf-lua").setup({
winopts = {
on_create = function(_)
vim.keymap.set("t", "<M-q>", "<A-q>", { buffer = 0, silent = true })
end
}
}) |
Beta Was this translation helpful? Give feedback.
-
|
I misread your question: local fzf = require("fzf-lua")
fzf.setup({
actions = files = { { true, ["ctrl-q"] = fzf.actions.file_sel_to_qf } }
}) |
Beta Was this translation helpful? Give feedback.
I misread your question: