diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-10-25 02:22:52 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-10-25 02:23:15 -0400 |
commit | 42d3f7095f3ae4093bdf64dafd3aa45993242809 (patch) | |
tree | b4b9756ca104d7b083dc890c44d20badc8c9cab1 /lisp | |
parent | d04dc649afd8f6aca2b2e4b9ae25e13972920b72 (diff) | |
download | emacs.d-42d3f7095f3ae4093bdf64dafd3aa45993242809.tar.gz |
org-capture-templates: Update for file rename
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-org.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el index 4ca3e83..a1d7506 100644 --- a/lisp/init-org.el +++ b/lisp/init-org.el @@ -399,7 +399,7 @@ called through the speed command interface." "* TODO %?%i" :prepend t) ("d" "date" entry (file+headline "~/notes/calendar.org" "Inbox") "* %?%i" :prepend t) - ("m" "misc" entry (file+headline "~/notes/misc.org" "Inbox") + ("b" "bookmark" entry (file+headline "~/notes/bookmarks.org" "Inbox") "* %?%i" :prepend t) ("v" "Visit" checkitem (file+headline "~/notes/tasks.org" "Visit") "- [ ] %?%i\n" :prepend t) @@ -410,12 +410,14 @@ called through the speed command interface." "* TODO %?%i\n\n%a" :prepend t) ("D" "date link" entry (file+headline "~/notes/calendar.org" "Inbox") "* %?%i\n\n%a" :prepend t) - ("M" "misc link" entry (file+headline "~/notes/misc.org" "Inbox") + ("B" "bookmark link" entry + (file+headline "~/notes/bookmarks.org" "Inbox") "* %?%i\n\n%a" :prepend t) ;; Clipboard ("x" "task clipboard" entry (file+headline "~/notes/tasks.org" "Inbox") "* TODO %?%i\n\n%x" :prepend t) - ("X" "misc clipboard" entry (file+headline "~/notes/misc.org" "Inbox") + ("X" "bookmark clipboard" entry + (file+headline "~/notes/bookmarks.org" "Inbox") "* %?%i\n\n%x" :prepend t))) (add-hook 'org-agenda-mode-hook 'km/org-agenda-cd-and-read-dir-locals) |