From 817d98514dede0036f9a8d5afde72805eb2b3647 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sun, 15 Mar 2015 23:43:15 -0400 Subject: Org capture: Move point before copied text --- lisp/init-org.el | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'lisp/init-org.el') diff --git a/lisp/init-org.el b/lisp/init-org.el index 38e2569..76b00ec 100644 --- a/lisp/init-org.el +++ b/lisp/init-org.el @@ -336,27 +336,27 @@ called through the speed command interface." (setq org-capture-templates '(("t" "task" entry (file+headline "~/notes/tasks.org" "Inbox") - "* TODO %i%?" :prepend t) + "* TODO %?%i" :prepend t) ("d" "date" entry (file+headline "~/notes/calendar.org" "Inbox") - "* %i%?" :prepend t) + "* %?%i" :prepend t) ("m" "misc" entry (file+headline "~/notes/misc.org" "Inbox") - "* %i%?" :prepend t) + "* %?%i" :prepend t) ("v" "Visit" checkitem (file+headline "~/notes/tasks.org" "Visit") - "- [ ] %i%?\n" :prepend t) + "- [ ] %?%i\n" :prepend t) ("r" "Revisit" entry (file+headline "~/notes/tasks.org" "Revisit") - "* TODO %i%?" :prepend t) + "* TODO %?%i" :prepend t) ;; Link counterparts ("T" "task link" entry (file+headline "~/notes/tasks.org" "Inbox") - "* TODO %i%?\n\n%a" :prepend t) + "* TODO %?%i\n\n%a" :prepend t) ("D" "date link" entry (file+headline "~/notes/calendar.org" "Inbox") - "* %i%?\n\n%a" :prepend t) + "* %?%i\n\n%a" :prepend t) ("M" "misc link" entry (file+headline "~/notes/misc.org" "Inbox") - "* %i%?\n\n%a" :prepend t) + "* %?%i\n\n%a" :prepend t) ;; Clipboard ("x" "task clipboard" entry (file+headline "~/notes/tasks.org" "Inbox") - "* TODO %i%?\n\n%x" :prepend t) + "* TODO %?%i\n\n%x" :prepend t) ("X" "misc clipboard" entry (file+headline "~/notes/misc.org" "Inbox") - "* %i%?\n\n%x" :prepend t))) + "* %?%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) -- cgit v1.2.3