Emacs Org-Mode: fixed created property
This commit is contained in:
parent
59c4ae71d0
commit
21b38fb699
1 changed files with 6 additions and 6 deletions
|
@ -467,17 +467,17 @@
|
||||||
;; bind capture templates
|
;; bind capture templates
|
||||||
(setq org-capture-templates
|
(setq org-capture-templates
|
||||||
'(("t" "todo" entry (file+headline "~/cloud/org/todo.org" "Tasks")
|
'(("t" "todo" entry (file+headline "~/cloud/org/todo.org" "Tasks")
|
||||||
"* TODO %? %^G\n :PROPERTIES:\n :CREATED:%U\n :END:")
|
"* TODO %? %^G\n :PROPERTIES:\n :CREATED: %U\n :END:")
|
||||||
("s" "scheduled todo" entry (file+headline "~/cloud/org/todo.org" "Tasks")
|
("s" "scheduled todo" entry (file+headline "~/cloud/org/todo.org" "Tasks")
|
||||||
"* TODO %?\n SCHEDULED: %^T\n :PROPERTIES:\n :CREATED:%U\n :END:\n")
|
"* TODO %?\n SCHEDULED: %^T\n :PROPERTIES:\n :CREATED: %U\n :END:\n")
|
||||||
("m" "scheduled mail" entry (file+headline "~/cloud/org/todo.org" "Tasks")
|
("m" "scheduled mail" entry (file+headline "~/cloud/org/todo.org" "Tasks")
|
||||||
"* TODO %?\n SCHEDULED: %^T\n :PROPERTIES:\n :CREATED:%U\n :END:\n %a\n")
|
"* TODO %?\n SCHEDULED: %^T\n :PROPERTIES:\n :CREATED: %U\n :END:\n %a\n")
|
||||||
("n" "Note" entry (file+headline "~/cloud/org/notes.org" "Notes")
|
("n" "Note" entry (file+headline "~/cloud/org/notes.org" "Notes")
|
||||||
"* %? \n %i\n :PROPERTIES:\n :CREATED:%U\n :END:\n %a\n")
|
"* %? \n %i\n :PROPERTIES:\n :CREATED: %U\n :END:\n %a\n")
|
||||||
("p" "Project Idea" entry (file+headline "~/cloud/org/projects.org" "INBOX")
|
("p" "Project Idea" entry (file+headline "~/cloud/org/projects.org" "INBOX")
|
||||||
"* TODO %?\n %i\n :PROPERTIES:\n :CREATED:%U\n :END:\n")
|
"* TODO %?\n %i\n :PROPERTIES:\n :CREATED: %U\n :END:\n")
|
||||||
("w" "Wiki Entry" entry (file+headline "~/cloud/org/wiki.org" "INBOX")
|
("w" "Wiki Entry" entry (file+headline "~/cloud/org/wiki.org" "INBOX")
|
||||||
"* %? \n :PROPERTIES:\n :CREATED:%U\n :END:\n %i\n")))
|
"* %? \n :PROPERTIES:\n :CREATED: %U\n :END:\n %i\n")))
|
||||||
|
|
||||||
;; set org refile targets
|
;; set org refile targets
|
||||||
(setq org-refile-targets '((org-agenda-files :maxlevel . 2)))
|
(setq org-refile-targets '((org-agenda-files :maxlevel . 2)))
|
||||||
|
|
Loading…
Reference in a new issue