Welcome to Vifm Q&A, where you can ask questions about Vifm usage. Registration is optional, anonymous posts are moderated. GitHub or Google logins are enabled.
0 votes
in vifm by

I am using the following script from wiki.

command! FZFlocate : set noquickview
              \| let $FZF_PICK = term('locate $HOME | fzf-tmux --height 10 2>/dev/tty')
              \| if $FZF_PICK != ''
              \|     execute 'goto' fnameescape($FZF_PICK)
              \| endif

It open a new tmux window and then show fzf on the bottom half of the new window. Is there a way to get it to show up in the same window as vifm?

Thanks

1 Answer

+1 vote
by
selected by
 
Best answer

Have you tried using fzf instead of fzf-tmux? fzf-tmux probably opens the new window.

by
edited by

I just ried :!fzf and it opens up in new window. Is there any way to run fzf in the same window as vifm?

by

That's not the same as using fzf in term(). These are different things and they behave differently with regard to multiplexers. :! opens new window unless you add %n, but term()/system() never use multiplexer.

by

got it, thank you

If you would like to make a bug report or feature request consider using GitHub, SourceForge or e-mail. Posting such things here is acceptable, but this is not a perfect place for them.
...