Created
December 9, 2013 15:44
-
-
Save nicgrayson/7874197 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(setq org-capture-templates | |
(quote (("d" "quick-todo" entry (file "~/Dropbox/org-mode/inbox.org") | |
"* TODO %cCreateAt: %U" :immediate-finish t) | |
("t" "quick-todo" entry (file "~/Dropbox/org-mode/inbox.org") | |
"* TODO %cCreateAt: %U")))) | |
(defun mine-alfred-capture () | |
(interactive) | |
"Capture from alfred" | |
(org-capture nil "d")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment