[Emacs] Remove extra spaces added to :PROPERTIES: drawer in capture templates

This commit is contained in:
Ivan Malison 2023-08-23 13:43:31 -06:00
parent 6642f49548
commit 851ba4514c

View File

@ -3392,9 +3392,9 @@ The following is taken from [[https://github.com/syl20bnr/spacemacs/blob/a650877
(defvar org-capture-templates nil))
(defvar imalison:created-property-string "
:PROPERTIES:
:CREATED: %U
:END:")
:PROPERTIES:
:CREATED: %U
:END:")
(imalison:add-to-org-agenda-files
(nconc (list imalison:org-gtd-file imalison:org-habits-file
@ -3432,11 +3432,11 @@ The following is taken from [[https://github.com/syl20bnr/spacemacs/blob/a650877
(add-to-list 'org-capture-templates
`("h" "Habit" entry (file ,imalison:org-habits-file)
"* TODO
SCHEDULED: %^t
:PROPERTIES:
:CREATED: %U
:STYLE: habit
:END:"))
SCHEDULED: %^t
:PROPERTIES:
:CREATED: %U
:STYLE: habit
:END:"))
(defun org-get-priority-at-point ()