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 understand that this should ideally work, but I have multiple webdav accounts synced by vdirsyncer to local as the following-
~/.calenders - CAL1 - UUID - ev1.ics - ev2.ics - CAL2 - UUID - ev1.ics - ev2.ics - CAL3 - UUID - ev1.ics - ev2.ics
in ~/.config/todoman/config.py
~/.config/todoman/config.py
path = "~/.calendars/*"
does not recognize any todos at all.
Todos show up only when I set path = "~/.calendars/CAL1/*" or similar. But then I cannot see todos from other calendars, as expected.
path = "~/.calendars/CAL1/*"
I would suggest to allow path to be a list of locations. This may need other changes elsewhere.
path
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
It does, thanks.
I feel this should either be documented, or, even better, ~/.calendars/* should also match.
~/.calendars/*
It's a glob pattern. Things like * and ? work as usual.
*
?
Granted, more examples could be documented (and, ideally, we should take a colon-separated list of globs/paths too).
No branches or pull requests
I understand that this should ideally work, but I have multiple webdav accounts synced by vdirsyncer to local as the following-
in
~/.config/todoman/config.py
does not recognize any todos at all.
Todos show up only when I set
path = "~/.calendars/CAL1/*"
or similar. But then I cannot see todos from other calendars, as expected.Suggested fix
I would suggest to allow
path
to be a list of locations. This may need other changes elsewhere.The text was updated successfully, but these errors were encountered: