没有位置和日期的组织模式捕获

时间:2015-04-12 11:35:06

标签: emacs org-mode

我想自定义我的组织模式捕获,以便我notes.org文件中的输出更简单:

* TODO WhatIwanttodo

没有别的。目前我得到这样的东西:

* TODO Make a new post in the blog explaining how u can put TODO in org mode using the android app by IFTTT  [2015-03-14 Sat 09:21 [[file:~/Dropbox/org/dailywork.org::*ES][TODOES]]

1 个答案:

答案 0 :(得分:0)

以下是两种变体:

第一个将标题添加到标题TODO-HEADER下的文件中。第二个只是将它附加到文件末尾。

 (setq org-capture-templates
      '(
        ("s" "Simple" entry (file+headline "my-org-todo-file" "TODO-HEADER")
         "* TODO %?")
        ("x" "Very Simple" entry (file "my-org-todo-file")
         "* TODO %?")
         ))

模板可以非常强大。我建议你阅读

http://orgmode.org/manual/Capture-templates.html#Capture-templates