Created
March 10, 2016 19:14
-
-
Save narendraj9/738861060f3de2db4dff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun org-late-todo (n) | |
"Switch todo assuming an old date [n days ago]" | |
(interactive "nDays: ") | |
(let* ((delta-time (days-to-time n)) | |
(now (time-subtract (current-time) | |
delta-time))) | |
(letf ((symbol-function 'current-time) (lambda () | |
now)) | |
(org-agenda-todo)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment