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
It looks like I have some globs in my projectile-globally-ignored-files. This results in:
projectile-globally-ignored-files
rg --fixed-strings --glob !TAGS --glob !00*.py --glob !.idea/ --glob !.eunit/ --glob !.git/ --glob !.hg/ --glob !.fslckout/ --glob !.bzr/ --glob !_darcs/ --glob !venv/ --glob !build/ --no-heading --line-number --with-filename --color=always --ignore-case -- black . zsh:1: no matches found: !00*.py Ripgrep exited abnormally with code 1 at Mon Mar 11 13:01:53
There should be some quoting of these to avoid the problem. Thanks!
The text was updated successfully, but these errors were encountered:
as a workaround you can set the ripgrep-executable option to "noglob rg"
ripgrep-executable
"noglob rg"
Sorry, something went wrong.
Merge pull request #39 from kanak/patch-1
b6bd5be
projectile-ripgrep: fix unescaped glob (#31)
No branches or pull requests
It looks like I have some globs in my
projectile-globally-ignored-files
. This results in:There should be some quoting of these to avoid the problem. Thanks!
The text was updated successfully, but these errors were encountered: