summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-04-27 13:04:25 -0400
committerKyle Meyer <kyle@kyleam.com>2014-04-27 13:04:25 -0400
commitf570f1042263c743f3d3feac0342fe8a5f82403b (patch)
tree71a71341311fdafc8b443121c720e4085b648d77 /lisp
parent4693eaac7178389cfe303f8669c91a1f1b5066e0 (diff)
downloademacs.d-f570f1042263c743f3d3feac0342fe8a5f82403b.tar.gz
Restore misc capture templates
These were deleted in d2ed8d9 (along with the backburner templates), but it's useful to have these for non-TODO items because, unlike the backburner items, these don't fit well with refiling from tasks.org.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/init-org.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el
index 599ef51..f708b47 100644
--- a/lisp/init-org.el
+++ b/lisp/init-org.el
@@ -18,14 +18,20 @@
"* TODO %?\n%i")
("d" "date" entry (file+headline "~/notes/calendar.org" "Inbox")
"* %?\n%i")
+ ("m" "misc" entry (file+headline "~/notes/misc.org" "Inbox")
+ "* %?\n%i")
;; Link counterparts
("T" "task link" entry (file+headline "~/notes/tasks.org" "Inbox")
"* TODO %?\n%i\nLink: %a")
("D" "date link" entry (file+headline "~/notes/calendar.org" "Inbox")
"* %?\n%i\nLink: %a")
+ ("M" "misc link" entry (file+headline "~/notes/misc.org" "Inbox")
+ "* %?\n%i\nLink: %a")
;; Clipboard
("x" "task clipboard" entry (file+headline "~/notes/tasks.org" "Inbox")
- "* TODO %?\n%x")))
+ "* TODO %?\n%x")
+ ("X" "misc clipboard" entry (file+headline "~/notes/misc.org" "Inbox")
+ "* %?\n%x")))
(key-chord-define-global ",t" 'org-capture)
(defun km/open-main-orgfile ()