We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm always getting this line when doing :Files. Is this normal behaviour? This line dissapear when I start typing.
:Files
My fzf configuration: .zshrc
.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
The text was updated successfully, but these errors were encountered:
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)
Sorry, something went wrong.
Yes it still happened.
Possibly related: junegunn/fzf#881
No branches or pull requests
I'm always getting this line when doing
:Files
. Is this normal behaviour? This line dissapear when I start typing.My fzf configuration:
.zshrc
nvim
The text was updated successfully, but these errors were encountered: