Skip to content

Commit

Permalink
feat(fzf-lua): add key mappings similar to telescope (#1343)
Browse files Browse the repository at this point in the history
feat(fzf-lua): add mappings similar to telescope
  • Loading branch information
azdanov authored Jan 31, 2025
1 parent e6bd16b commit b7a458d
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion lua/astrocommunity/fuzzy-finder/fzf-lua/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,20 @@ return {
end,
},
},
opts = { "default-title" },
opts = {
"default-title",
keymap = {
builtin = {
true,
["<C-d>"] = "preview-page-down",
["<C-u>"] = "preview-page-up",
},
fzf = {
true,
["ctrl-d"] = "preview-page-down",
["ctrl-u"] = "preview-page-up",
["ctrl-q"] = "select-all+accept",
},
},
},
}

0 comments on commit b7a458d

Please sign in to comment.