-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
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
CTRL+T completion causes error #1460
Comments
Check if |
@junegunn Removing the glob still presents the same os error 2, and using fzf works fine normally... The same issue is present in bash, I tried putting in the commands and they just gave an event error.
|
Confirms that the command itself is incorrect and it's not an issue of fzf. Like I mentioned above, use single quotes to avoid ! expansion. See https://serverfault.com/questions/239046/strange-banghistory-bash-expand |
I have this same issue too. I ran this |
fd https://github.com/sharkdp/fd is better than rg especially for fzf, rg brings too much chaos to fzf fd as fast as rg without coloring, as: export FZF_DEFAULT_COMMAND='fd --type f --color=never'
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
export FZF_ALT_C_COMMAND="fd --type d --color=never" |
In case anyone else comes here looking for an answer you can silence ripgrep error messages with the export FZF_DEFAULT_COMMAND="rg --files --hidden --follow --no-messages" |
I'm using ripgrep and fzf with key bindings, when I press Ctrl+T the output will have errors of no such file or directory that will not occur if I run the binary by typing the
fzf
command in.The text was updated successfully, but these errors were encountered: