junegunn / fzf.vim

fzf :heart: vim
MIT License
9.6k stars 584 forks source link

Is this normal? #345

Open rawaludin opened 7 years ago

rawaludin commented 7 years ago

I'm always getting this line when doing :Files. Is this normal behaviour? This line dissapear when I start typing.

screen shot 2017-03-22 at 10 10 37 pm

My fzf configuration: .zshrc

# Configure FZF
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# use ag
export FZF_DEFAULT_COMMAND='ag --hidden -U --ignore .git -g ""'
# To apply the command to CTRL-T as well
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
# preview
export FZF_CTRL_T_OPTS="--preview '(highlight -O ansi -l {} 2> /dev/null || cat {} || tree -C {}) 2> /dev/null | head -200'"
export FZF_ALT_C_OPTS="--preview 'tree -C {} | head -200'"

nvim

let g:fzf_action = {
  \ 'ctrl-t': 'tab split',
  \ 'ctrl-s': 'split',
  \ 'ctrl-v': 'vsplit' }
" [Tags] Command to generate tags file
let g:fzf_tags_command = 'ctags -R --language=php --php-kinds=cfit'
command! -bang -nargs=? -complete=dir Files
  \ call fzf#vim#files(<q-args>, fzf#vim#with_preview(), <bang>0)
if has('nvim')
  let $FZF_DEFAULT_OPTS .= ' --inline-info'
endif
junegunn commented 7 years ago

No it's not. Have you checked you can reproduce the problem with the minimal configuration file as suggested in the issue template?

nvim -Nu <(curl https://gist.githubusercontent.com/junegunn/6936bf79fedd3a079aeb1dd2f3c81ef5/raw)

(https://gist.githubusercontent.com/junegunn/6936bf79fedd3a079aeb1dd2f3c81ef5/raw)

rawaludin commented 7 years ago

Yes it still happened.

screen shot 2017-03-23 at 10 19 27 am
junegunn commented 7 years ago

Possibly related: https://github.com/junegunn/fzf/issues/881