diff --git a/bundle/bundle--org.el b/bundle/bundle--org.el index 5ece1ad3..770c911c 100644 --- a/bundle/bundle--org.el +++ b/bundle/bundle--org.el @@ -245,14 +245,14 @@ ;; Fields: Heading, timestamp. (add-to-list 'org-capture-templates '("a" "Appointment" entry (file "agenda/appt.org") - "* %? :APPOINTMENT:\n%^{Date}t\n")) + "* %? \n%^{Date}t\n")) ;; Meeting Capture Template ;; Purpose: To capture meeting notes and automatically start a clock for time tracking. ;; Fields: Topic, timestamp, and additional notes. (add-to-list 'org-capture-templates '("m" "Meeting" entry (file "agenda/meetings.org") - "* %^{Topic} :MEETING:\n%T\n%?" + "* %^{Topic} \n%T\n%?" :clock-in t :empty-lines 1))