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 have read through the manual page of fzf (man fzf)
I have searched through the existing issues
I'm learning to work with buffers in Vim. Sometimes I open the Vim documentation in a split and later accidentally close the other window. I could do :vsp #, but I have a nice key binding for :Buffers. Unfortunately :Buffers won't let me select the bottom-most buffer in the list, which means I can't Ctrl-V to reopen in a split.
Any ideas?
The text was updated successfully, but these errors were encountered:
Most of the time, the bottom-most item is the current buffer, not the alternate buffer. We use --header-lines=1 option of fzf to disallow selecting the current buffer so it's easier to switch between two buffers.
What you're experiencing here is an exceptional case where the current buffer is an unlisted buffer (i.e. vim help) so it does not appear on the list, but we still apply --header-lines=1 when we shouldn't. I can fix this.
man fzf
)I'm learning to work with buffers in Vim. Sometimes I open the Vim documentation in a split and later accidentally close the other window. I could do
:vsp #
, but I have a nice key binding for:Buffers
. Unfortunately:Buffers
won't let me select the bottom-most buffer in the list, which means I can't Ctrl-V to reopen in a split.Any ideas?
The text was updated successfully, but these errors were encountered: