We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
man fzf
Vim freezes if using fzf.vim to open a file that runs :@ (see :h :@). E.g.,
:@
:h :@
$ echo 1 > t.t $ vim -c 'au BufRead t.t let @o = "echom 111\nechom 222" | @o' :Files t.t (freeze)
, but does not freeze if opened with :e instead of :Files. This used to work without problems, don't know why it doesn't work now.
:e
:Files
Edit: :Files! (fullscreen) works fine. So my workaround is
:Files!
let g:fzf_layout = exists('$TMUX') ? {'tmux': '-p90%,80%'} : {}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
man fzf
)Vim freezes if using fzf.vim to open a file that runs
:@
(see:h :@
). E.g.,, but does not freeze if opened with
:e
instead of:Files
. This used to work without problems, don't know why it doesn't work now.Edit:
:Files!
(fullscreen) works fine. So my workaround isThe text was updated successfully, but these errors were encountered: