junegunn / fzf.vim

fzf :heart: vim
MIT License
9.56k stars 581 forks source link

Vim Requirements #205

Open zutsume opened 7 years ago

zutsume commented 7 years ago

I tried using fzf.vim with my compiled vim using the following ./configure :

./configure --with-features=normal\
            --disable-darwin \
            --disable-selinux \
            --disable-netbeans \
            --enable-luainterp \
            --enable-perlinterp \
            --enable-pythoninterp \
            --enable-python3interp \
            --enable-tclinterp \
            --enable-rubyinterp \
            --enable-cscope \
            --enable-multibyte \
            --enable-xim \
            --enable-fontset \
            --enable-gui=no \
            --with-x 

fzf would work properly until I tried accessing one of the files listed by FZF. It would display an error related to autochdir - I fixed it by recompiling with huge on the --with-features flag.

Hopefully, it'll help someone.

junegunn commented 7 years ago

Thank you.