Emacs: Strike through headlines for DONE tasks in Org
Posted on December 23rd, 2012 by Sacha Chua
More posts about: emacs, org Tags: emacs-lisp, org // 14 Comments »
More posts about: emacs, org Tags: emacs-lisp, org // 14 Comments »
I wanted a quick way to visually distinguish DONE tasks from tasks I still need to do. This handy snippet from the Emacs Org-mode mailing list does the trick by striking through the headlines for DONE tasks.
Here’s the code:
(setq org-fontify-done-headline t) (custom-set-faces '(org-done ((t (:foreground "PaleGreen" :weight normal :strike-through t)))) '(org-headline-done ((((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon" :strike-through t)))))
One Pingback/Trackback
- 09 April 2015 at 4:04pm
- How to Strike out DONE items? | DL-UAT
[…] of use : I came across Sacha’s post that talks about how to do ...