summaryrefslogtreecommitdiff
path: root/lisp/init-org.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2015-02-25 23:04:21 -0500
committerKyle Meyer <kyle@kyleam.com>2015-02-28 00:29:49 -0500
commit04bc3adb495b48dfa37b314303345be75431693d (patch)
tree138cf748301ae72ee8e761a05b4d9d175bbeb710 /lisp/init-org.el
parent9058aa93e06f1066facbfbe0df413cd680c3f4e5 (diff)
downloademacs.d-04bc3adb495b48dfa37b314303345be75431693d.tar.gz
Prepend new entries when capture
Diffstat (limited to 'lisp/init-org.el')
-rw-r--r--lisp/init-org.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el
index d910945..a6e7b60 100644
--- a/lisp/init-org.el
+++ b/lisp/init-org.el
@@ -362,27 +362,27 @@ called through the speed command interface."
(setq org-capture-templates
'(("t" "task" entry (file+headline "~/notes/tasks.org" "Inbox")
- "* TODO %i%?")
+ "* TODO %i%?" :prepend t)
("d" "date" entry (file+headline "~/notes/calendar.org" "Inbox")
- "* %i%?")
+ "* %i%?" :prepend t)
("m" "misc" entry (file+headline "~/notes/misc.org" "Inbox")
- "* %i%?")
+ "* %i%?" :prepend t)
("v" "Visit" checkitem (file+headline "~/notes/tasks.org" "Visit")
- "- [ ] %i%?\n")
+ "- [ ] %i%?\n" :prepend t)
("r" "Revisit" entry (file+headline "~/notes/tasks.org" "Revisit")
- "* TODO %i%?")
+ "* TODO %i%?" :prepend t)
;; Link counterparts
("T" "task link" entry (file+headline "~/notes/tasks.org" "Inbox")
- "* TODO %i%?\n\n%a")
+ "* TODO %i%?\n\n%a" :prepend t)
("D" "date link" entry (file+headline "~/notes/calendar.org" "Inbox")
- "* %i%?\n\n%a")
+ "* %i%?\n\n%a" :prepend t)
("M" "misc link" entry (file+headline "~/notes/misc.org" "Inbox")
- "* %i%?\n\n%a")
+ "* %i%?\n\n%a" :prepend t)
;; Clipboard
("x" "task clipboard" entry (file+headline "~/notes/tasks.org" "Inbox")
- "* TODO %i%?\n\n%x")
+ "* TODO %i%?\n\n%x" :prepend t)
("X" "misc clipboard" entry (file+headline "~/notes/misc.org" "Inbox")
- "* %i%?\n\n%x")))
+ "* %i%?\n\n%x" :prepend t)))
(add-hook 'org-agenda-mode-hook 'km/org-agenda-cd-and-read-dir-locals)
(add-hook 'org-agenda-finalize-hook 'km/org-agenda-store-current-span)