Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding the date to the CLOSED tag in emacs org-mode

Tags:

emacs

org-mode

I have started using emacs org-mode recently to maintain my TODO lists. I have used it before a long time back. Back then, I was able to automatically add a date whenever moving a task from TODO to DONE tag adding a CLOSED: sub-label to the DONE label.

However, I forgot how to do that. Can anyone help tell me how to add the CLOSED tag. in org-mode

like image 326
Ankit Avatar asked Feb 22 '23 02:02

Ankit


1 Answers

You can achieve this by setting the following variable (See the Org Manual for more info and further customization if desired).

(setq org-log-done 'time)
like image 133
Jonathan Leech-Pepin Avatar answered Mar 04 '23 04:03

Jonathan Leech-Pepin