Open
Description
- Category
- fzf binary
- fzf-tmux script
- Key bindings
- Completion
- Vim
- Neovim
- Etc.
- OS
- Linux
- Mac OS X
- Windows
- Windows Subsystem for Linux
- Etc.
- Shell
- bash
- zsh
- fish
So I'm not quite sure if it's a neovim or fzf issue hope you guys can help me on this, I am running into a very annoying issue, for some reason, anytime I run FZF from neovim with let g:fzf_prefer_tmux set as 1 it seems that neovim gets suspended, and blocks all the content of the file opened at the moment, I know it might seems a very silly problem but sometimes I'd like to search something based on an info within the file I'm editing. Here's how it looks like.
this very simple setup is able to reproduce this issue
" init.vim
call plug#begin('~/.vim/plugged')
Plug '/usr/local/opt/fzf'
Plug 'junegunn/fzf.vim'
call plug#end()
let g:fzf_prefer_tmux = 1
NVM: 0.3.4
FZF: 0.17.5
TMUX: 2.8
Thanks in advanvance.