How do I scroll up / down the preview buffer? #1248
-
Hi, I recently switched to Fzf Lua and I tried to scroll the preview buffer via |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Use Search the default options (in the README) for |
Beta Was this translation helpful? Give feedback.
-
Thank you very much, got it to work with setup f.setup({
keymap = {
builtin = {
["<C-d>"] = "preview-page-down",
["<C-u>"] = "preview-page-up",
},
},
}) |
Beta Was this translation helpful? Give feedback.
Use
F1
for help to see the defaults (shift-up|down).Search the default options (in the README) for
keymap
to customize.