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's more nice-to-have than anything, but I've been spoiled with systemd's time and date specifications.
Being able to do journalctl -u [someservice] --since "5h ago" is really nice!
journalctl -u [someservice] --since "5h ago"
I'd love to be able to do himalaya envelope list since "2 days ago"
himalaya envelope list since "2 days ago"
Supporting such time specifications would be a great hassle, but a good first step might be to add ISO8601 compatibility with https://docs.rs/chrono/ or https://docs.rs/iso8601/.
If such timestamps were supported, one could do
himalaya envelope list after $(date --date="5 hours ago" --iso-8601=seconds)
and call it a day.
The text was updated successfully, but these errors were encountered:
As a side note,
himalaya envelope list after $(date --date="5 days ago" --iso-8601) and not flag seen
Already works out of the box, you might want to showcase that in your examples, as it's already pretty cool. Only works on Linux though
Sorry, something went wrong.
It should definitely be doable. FYI, the actual grammar for the search query derives from the IMAP RFC. Thanks for the idea!
No branches or pull requests
It's more nice-to-have than anything, but I've been spoiled with systemd's time and date specifications.
Being able to do
journalctl -u [someservice] --since "5h ago"
is really nice!I'd love to be able to do
himalaya envelope list since "2 days ago"
Supporting such time specifications would be a great hassle, but a good first step might be to add ISO8601 compatibility with https://docs.rs/chrono/ or https://docs.rs/iso8601/.
If such timestamps were supported, one could do
and call it a day.
The text was updated successfully, but these errors were encountered: