浏览代码

org: Capture todo items using C-c c t

master
Bingen Eguzkitza 5 年前
父节点
当前提交
72f4c836c0
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. +10
    -0
      lisp/init-org.el

+ 10
- 0
lisp/init-org.el 查看文件

@@ -112,5 +112,15 @@
(sqlite . t))))


;;
;; http://pragmaticemacs.com/emacs/org-mode-basics-vii-a-todo-list-with-schedules-and-deadlines/
;; http://pragmaticemacs.com/emacs/master-your-inbox-with-mu4e-and-org-mode/
;;capture todo items using C-c c t
(define-key global-map (kbd "C-c c") 'org-capture)
(setq org-capture-templates
'(("t" "todo" entry (file+headline "~/Documents/bingen/Org/bingen.org" "Tasks")
"* TODO [#A] %?\nSCHEDULED: %(org-insert-time-stamp (org-read-date nil t \"+0d\"))\n%a\n")))


(provide 'init-org)
;;; init-org.el ends here

正在加载...
取消
保存