emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: org-capture-templates: %date is too long


From: Robert Pluim
Subject: Re: org-capture-templates: %date is too long
Date: Tue, 09 Mar 2021 16:21:11 +0100

>>>>> On Thu, 04 Mar 2021 21:24:03 +0100, Uwe Brauer <oub@mat.ucm.es> said:

    Uwe> I am not acquainted with let-bound (only with let)

'let-bound' is a shorthand for saying 'binding a value using let'

    Uwe> So are you saying I should may use defadvice to modify org-capture?

Well, you have control over how org-capture is invoked, so you could
do:

(defun my-org-capture ()
       (let ((org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a>")))
            (org-capture)))

although you could do it with advice if you wanted. Untested, of course :-)

Robert
-- 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]