I want to change an active date <2017-12-10 17:04> to inactive date [2017-12-10 17:04] and vice versa.
How do I do that?
I want to change an active date <2017-12-10 17:04> to inactive date [2017-12-10 17:04] and vice versa.
How do I do that?
TL;DR; From the keyboard (in org-mode):
C-c .
to activate (convert from inactive to active).
C-c !
to inactivate (convert from active to inactive).
From lisp:
(org-time-stamp t)
to activate, and
(org-time-stamp t t)
to inactivate.
Edit: As Juancho points out, <S-up>
and <S-down>
both toggle between active and inactive timestamps.