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 trying to add entry with argument, but receive this error:
frece add ~/.cache/rofi-search '--provider aur test' error: Found argument '--provider aur test' which wasn't expected, or isn't valid in this context
Can I somehow add entries with arguments?
The text was updated successfully, but these errors were encountered:
Try this:
frece add ~/.cache/rofi-search -- "--provider aur test"
(Previous suggestions.)
Workaround 1:
echo "--provider aur test" > entries.txt frece update ~/.cache/rofi-search entries.txt
Workaround 2 (very hacky):
frece add ~/.cache/rofi-search '#-provider aur test' sed -i 's/#-/--/' ~/.cache/rofi-search
Properly fixing this requires fiddling with the clap parser and/or allowing stdin input. Or maybe adding an -e flag like ripgrep.
-e
Sorry, something went wrong.
No branches or pull requests
I'm trying to add entry with argument, but receive this error:
Can I somehow add entries with arguments?
The text was updated successfully, but these errors were encountered: