John Kitchin <[email protected]> writes:
> I just type C-c C-d and add it while the capture is open.
>
> Xebar Saram writes:
>
>> Hi guys
>>
>> i looked in the capture docu but couldn't seem to find it. anyone knows how
>> to prompt for deadline in capture template?
If you want to do it more pragmatically, you could use something like
this (adjust the template as needed).
(add-to-list 'org-capture-templates
'("d" "Deadline" entry
(file "~/org/inbox.org")
"* %^{Headline}\n DEADLINE: %^t"))
See (info "(org) Template expansion")
Matt