-
Notifications
You must be signed in to change notification settings - Fork 109
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
Can't use simple lisp expressions for :deadline #235
Comments
If you want to inline the value to which an expression evaluates, you can do that by backquoting the list and splicing the value, like any other Lisp list. The variable |
Hi, I've tried something as simple as
And it doesn't work. None of the categories get captured by "Due Soon"... Comparing that to just
Which does capture the deadline items before 2022-12-17 |
Saw my problem...it's in the way I initialized org-agenda-custom commands...things work with
|
FYI, there's no need to use backquoting and splicing with the expression But when doing that, you need to be aware of when the evaluation happens; e.g. if you set the variable |
A simple lisp expression isn't available for the :deadline + "before" arguments.
For instance, a simple expression like
:deadline ( before (org-read-date nil nil "+7"))
Should allow a user to list deadlines that are within 7 days of today. The documentation states
The output of (org-read-date nil nil "+7") is this exact format.
The text was updated successfully, but these errors were encountered: