Do not query for ticket when capturing GOALs

I usually do not need those.
This commit is contained in:
Daniel Borchmann 2026-04-03 20:56:57 +02:00
parent 09b4b4dbb9
commit f5679930b8
No known key found for this signature in database
GPG Key ID: 50EA937BF472ADD1

View File

@ -1359,7 +1359,7 @@ accordingly."
(use-package org-capture (use-package org-capture
:commands (org-capture) :commands (org-capture)
:init (setq org-capture-use-agenda-date nil :init (setopt org-capture-use-agenda-date nil
org-bookmark-names-plist nil org-bookmark-names-plist nil
org-capture-templates org-capture-templates
`(("t" "Simple Task" `(("t" "Simple Task"
@ -1374,7 +1374,7 @@ accordingly."
("g" "Record new goal" ("g" "Record new goal"
entry entry
(file db/org-default-refile-file) (file db/org-default-refile-file)
,(concat "* %^{Description} (%^{Ticket Number}) :GOAL:\n" ,(concat "* %^{Description} :GOAL:\n"
":PROPERTIES:\n:CREATED: %U\n:END:" ":PROPERTIES:\n:CREATED: %U\n:END:"
"%?")) "%?"))
("h" "Headline (generic Org item)" ("h" "Headline (generic Org item)"
@ -1422,7 +1422,7 @@ accordingly."
:empty-lines-after 1) :empty-lines-after 1)
("q" "Quick note" ("q" "Quick note"
plain plain
(function db/goto-quick-notes) #'db/goto-quick-notes
"- [ ] %?\n\n On %U via %K." "- [ ] %?\n\n On %U via %K."
:empty-lines-before 1 :empty-lines-before 1
:empty-lines-after 1)))) :empty-lines-after 1))))