-
How do I hide and show the preview window? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Are you asking how to hide and show preview while already in fzf? For that, you'll need to pass in a keybinding to call the If you just want to disable it completely, then pass in Edit: just added this to the cookbook https://github.com/PatrickF1/fzf.fish/wiki/Cookbook#how-can-i-toggle-the-preview-window-on-and-off-while-in-fzf. |
Beta Was this translation helpful? Give feedback.
Are you asking how to hide and show preview while already in fzf? For that, you'll need to pass in a keybinding to call the
toggle-preview
action. e.g.set fzf_dir_opts --bind ctrl-h:toggle-preview
will allow you to toggle the preview using Ctrl+h for the search files feature.If you just want to disable it completely, then pass in
--preview=""
.Edit: just added this to the cookbook https://github.com/PatrickF1/fzf.fish/wiki/Cookbook#how-can-i-toggle-the-preview-window-on-and-off-while-in-fzf.