You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I pass --preview-window=hidden to export FZF_DEFAULT_OPTS somewhere on my bashrc. However, since fzf.vim (as a dependency library used by notation-fzf-vim) backed with the global FZF_DEFAULT_OPTS, it's no way with a current implementation to explicitly set --preview-window=nohidden to override the defaults when hidden is set.
@alok Do you consider to use nohidden value, eg. let s:show_preview = get(g:, 'nv_show_preview', 1) ? 'nohidden' : 'hidden' as a potential fix of the issue?