Created
January 4, 2012 19:08
-
-
Save ieure/1561507 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 pdl-agenda () | |
"Switch to my agenda, regenerating it in the process." | |
(interactive) | |
(save-selected-window | |
(pop-to-buffer | |
(prog1 org-agenda-buffer-name | |
(if (get-buffer org-agenda-buffer-name) | |
(org-agenda-redo) | |
(org-agenda nil "a") | |
(org-agenda-day-view)))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment