diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-09 10:50:31 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-09 10:50:31 +0200 |
| commit | 1cfd9d4d61d05e65a23892433a4bd02d147a50e8 (patch) | |
| tree | 11d5e07c7582a2581c1cf0c7e2dbd3363c8553e3 /.config/nvim/plugin | |
| parent | 20ad9ef4af40ac54e584afbff9ee82c2e9bd319b (diff) | |
| download | dotfiles-1cfd9d4d61d05e65a23892433a4bd02d147a50e8.tar.gz dotfiles-1cfd9d4d61d05e65a23892433a4bd02d147a50e8.zip | |
misc: add preview scroll key bindings for fzf (in both nvim and bash)
Diffstat (limited to '.config/nvim/plugin')
| -rw-r--r-- | .config/nvim/plugin/50-fzf-lua.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.config/nvim/plugin/50-fzf-lua.lua b/.config/nvim/plugin/50-fzf-lua.lua index cc4f440..e0c4ce3 100644 --- a/.config/nvim/plugin/50-fzf-lua.lua +++ b/.config/nvim/plugin/50-fzf-lua.lua @@ -39,6 +39,8 @@ fzf.setup({ builtin = { true, -- inherit defaults ["<M-/>"] = "toggle-preview", -- show/hide preview + ["<C-n>"] = "preview-half-page-down", -- scroll preview (Ctrl-j/k navigate) + ["<C-p>"] = "preview-half-page-up", }, }, actions = { |
