From: Kyle Meyer <kyle@kyleam.com>
To: Tim Landscheidt <tim@tim-landscheidt.de>, emacs-orgmode@gnu.org
Subject: Re: How to mark task as done at specified (past) time?
Date: Thu, 12 Dec 2019 03:26:55 +0000 [thread overview]
Message-ID: <877e32ql4w.fsf@kyleam.com> (raw)
In-Reply-To: <875zj42rpx.fsf@passepartout.tim-landscheidt.de>
Tim Landscheidt <tim@tim-landscheidt.de> writes:
[...]
> I want Gnus to mark the task as done /at the time when the mail was
> sent/, i. e. in:
> | - State "DONE" from "TODO" [2019-11-27 Mi 16:44]
>
> I want "2019-11-27 Mi 16:44" not to be the current time, but
> some other (past) time.
>
> How can I mark a task as done at a specified time? Looking
> at org-add-planning-info, there seems to be a mechanism to
> pass a timestamp, but it does not seem to be exposed at
> higher levels (?).
Yes, as far as I can see, org-todo uses the TIME argument of
org-add-planning-info for the org-extend-today-until feature, but
there's not a way for the caller to directly specify the timestamp.
> Do I have to cl-flet org-current-time or something similar?
Something along those lines would probably be the most straightforward.
Light testing with the command below suggests overriding current-time is
sufficient:
(defun my-org-todo-time-machine ()
(interactive)
(cl-letf (((symbol-function 'current-time)
(lambda ()
(apply #'encode-time (org-parse-time-string
"2019-11-27 Mi 16:44")))))
(call-interactively #'org-todo)))
next prev parent reply other threads:[~2019-12-12 3:27 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-28 10:57 How to mark task as done at specified (past) time? Tim Landscheidt
2019-12-12 3:26 ` Kyle Meyer [this message]
2020-07-08 20:50 ` Tim Landscheidt
2020-07-09 2:56 ` Kyle Meyer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=877e32ql4w.fsf@kyleam.com \
--to=kyle@kyleam.com \
--cc=emacs-orgmode@gnu.org \
--cc=tim@tim-landscheidt.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.