瀏覽代碼

org-capture.el: When capturing from an agenda buffer use the cursor date at the default date

* org-capture.el (org-capture): When called from an agenda
buffer, use the cursor date at the default date.
Bastien Guerry 12 年之前
父節點
當前提交
a3f82f430b
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      lisp/org-capture.el

+ 3 - 0
lisp/org-capture.el

@@ -505,6 +505,9 @@ Lisp programs can set KEYS to a string associated with a template in
 `org-capture-templates'.  In this case, interactive selection will be
 bypassed."
   (interactive "P")
+  (if (eq major-mode 'org-agenda-mode)
+      (setq org-overriding-default-time
+	    (org-get-cursor-date)))
   (cond
    ((equal goto '(4)) (org-capture-goto-target))
    ((equal goto '(16)) (org-capture-goto-last-stored))