diff options
| author | Blake Romero <blake@blkrom.com> | 2025-10-03 21:53:57 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2025-10-03 21:53:57 +0100 |
| commit | 73ab4f125ad892df00ed71aedbfdd4e06357e927 (patch) | |
| tree | 9e9c3ec3550472a9983bfb8f9db5c90e3977f962 /emacs-config.org | |
| parent | d3119eb4da1fd06f4a9142b78bbab186e00dbeb2 (diff) | |
Remove CAPTURED property from templates
Diffstat (limited to 'emacs-config.org')
| -rw-r--r-- | emacs-config.org | 42 |
1 files changed, 8 insertions, 34 deletions
diff --git a/emacs-config.org b/emacs-config.org index 1699217..592fc78 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -733,7 +733,7 @@ Add =doc= LaTeX class. *** Org Agenda :PROPERTIES: -:header-args:elisp: :tangle no :noweb-ref org-agenda-settings +:header-args:elisp: :tangle no :noweb-ref org-agenda-settings :results none :END: Match encrypted org files for agenda. @@ -1042,47 +1042,30 @@ Set default clocktable parameters. **** Capture Templates Task template. #+begin_src elisp :tangle no :noweb-ref capture-task-template - "* IDLE %^{Task} %^G - :PROPERTIES: - :CAPTURED: %U - :END:" + "* IDLE %^{Task} %^G" #+end_src Event template. #+begin_src elisp :tangle no :noweb-ref capture-event-template "* %^{Event} - SCHEDULED: %^T - :PROPERTIES: - :CAPTURED: %U - :END:" + SCHEDULED: %^T" #+end_src Note template. #+begin_src elisp :tangle no :noweb-ref capture-note-template - "* %^{Note} %^G - :PROPERTIES: - :CAPTURED: %U - :END:" + "* %^{Note} %^G" #+end_src Meeting template. #+begin_src elisp :tangle no :noweb-ref capture-meeting-template "* TODO Meeting with: *%\\1* at *%\\2* :meeting: - SCHEDULED: %^T - :PROPERTIES: - :CAPTURED: %U - :NAME: %^{Name} - :LOCATION: %^{Location} - :END:" + SCHEDULED: %^T" #+end_src Goal setting template. #+begin_src elisp :tangle no :noweb-ref capture-goal-template "* [/] %^{Goal Title} :goal: DEADLINE: %^{When do you expect this goal to be completed?}t - :PROPERTIES: - :CAPTURED: %U - :END: :SMART: :SPECIFIC: %^{What SPECIFICALLY is the goal?} @@ -1095,30 +1078,21 @@ Goal setting template. Daily review template. #+begin_src elisp :tangle no :noweb-ref capture-weekly-review-template - ":PROPERTIES: - :CAPTURED: %U - :END: - %? + "%? ,,#+BEGIN: clocktable :scope agenda-with-archives :block %t ,,#+END:" #+end_src Weekly review template. #+begin_src elisp :tangle no :noweb-ref capture-weekly-review-template - ":PROPERTIES: - :CAPTURED: %U - :END: - %? + "%? ,,#+BEGIN: clocktable :scope agenda-with-archives :block %<%Y>-W%<%V> ,,#+END:" #+end_src Monthly review template. #+begin_src elisp :tangle no :noweb-ref capture-monthly-review-template - ":PROPERTIES: - :CAPTURED: %U - :END: - %? + "%? ,,#+BEGIN: clocktable :scope agenda-with-archives :block %<%Y-%m> ,,#+END:" #+end_src |
