man fzf)Calling fzf with popup window options, I found E863.
All of vimrc :
call plug#begin($HOME.'/.local/share' . '/vim-plug')
" {{{ junegunn/fzf
let g:fzf_layout = { 'window': {
\ 'width': 0.8,
\ 'height': 0.8,
\ 'border': 'ascii'
\ } }
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
let g:fzf_command_prefix = 'Fzf'
nnoremap <Leader>f :<C-u>FzfFiles<CR>
" }}}
call plug#end()
:version :
VIM - Vi IMproved 8.2 (2019 Dec 12, compiled May 13 2020 16:28:49)
macOS version
Included patches: 1-750
Compiled by Homebrew
Huge version without GUI. Features included (+) or not (-):
+acl +channel +cscope +ex_extra -hangul_input +linebreak +mouse_dec -mzscheme +profile -sound +termguicolors +vartabs +writebackup
+arabic +cindent +cursorbind +extra_search +iconv +lispindent -mouse_gpm +netbeans_intg -python +spell +terminal +vertsplit -X11
+autocmd -clientserver +cursorshape -farsi +insert_expand +listcmds -mouse_jsbterm +num64 +python3 +startuptime +terminfo +virtualedit -xfontset
+autochdir +clipboard +dialog_con +file_in_path +ipv6 +localmap +mouse_netterm +packages +quickfix +statusline +termresponse +visual -xim
-autoservername +cmdline_compl +diff +find_in_path +job +lua +mouse_sgr +path_extra +reltime -sun_workshop +textobjects +visualextra -xpm
-balloon_eval +cmdline_hist +digraphs +float +jumplist +menu -mouse_sysmouse +perl +rightleft +syntax +textprop +viminfo -xsmp
+balloon_eval_term +cmdline_info -dnd +folding +keymap +mksession +mouse_urxvt +persistent_undo +ruby +tag_binary +timers +vreplace -xterm_clipboard
-browse +comments -ebcdic -footer +lambda +modify_fname +mouse_xterm +popupwin +scrollbind -tag_old_static +title +wildignore -xterm_save
++builtin_terms +conceal +emacs_tags +fork() +langmap +mouse +multi_byte +postscript +signs -tag_any_white -toolbar +wildmenu
+byte_offset +cryptv +eval +gettext +libcall -mouseshape +multi_lang +printer +smartindent -tcl +user_commands +windows
system vimrc file: "$VIM/vimrc"
user vimrc file: "$HOME/.vimrc"
2nd user vimrc file: "~/.vim/vimrc"
user exrc file: "$HOME/.exrc"
defaults file: "$VIMRUNTIME/defaults.vim"
fall-back for $VIM: "/usr/local/share/vim"
Compilation: clang -c -I. -Iproto -DHAVE_CONFIG_H -DMACOS_X -DMACOS_X_DARWIN -g -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
Linking: clang -L. -fstack-protector-strong -L/usr/local/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/[email protected]/lib -L/usr/local/opt/readline/lib -L/usr/local/lib -o vim -lncurses -liconv -lintl -framework AppKit -L/usr/local/opt/lua/lib -llua5.3 -mmacosx-version-min=10.15 -fstack-protector-strong -L/usr/local/lib -L/usr/local/Cellar/perl/5.30.2_1/lib/perl5/5.30.2/darwin-thread-multi-2level/CORE -lperl -lm -lutil -lc -L/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.8/lib/python3.8/config-3.8-darwin -lpython3.8 -framework CoreFoundation -lruby.2.7
So now I cannot use popup window.
It's very painful
The issue is caused by the patch 8.2.0743.
Try this PR: https://github.com/junegunn/fzf/pull/2000
Thank you for this fix @junegunn! Just ran into this, and saw that you already fixed 馃挭
Most helpful comment
The issue is caused by the patch 8.2.0743.
Try this PR: https://github.com/junegunn/fzf/pull/2000