How to Change live_grep Keybinding from Ctrl-G to Ctrl-E for Fuzzy and Regex? #1892
KamilKleina
started this conversation in
General
Replies: 1 comment
-
require("fzf-lua").setup({
grep = {
actions = {
["ctrl-g"] = false,
["ctrl-e"] = { fn = require("fzf-lua").actions.grep_lgrep, reload = true },
}
}
}) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using fzf-lua and would like to change the keybinding for toggling between fuzzy and regex search in live_grep from Ctrl-G to Ctrl-E. I checked the documentation but couldn't find a clear way to remap this.
Thanks for all the help
Beta Was this translation helpful? Give feedback.
All reactions