組織モードで DONE タスクを完了させたいと思っています。http://lists.gnu.org/archive/html/emacs-orgmode/2007-03/msg00179.htmlのスニペットに従う(Sacha Chua のブログ経由):
(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)))))
ただし、これは機能しません (色は変更されますが、取り消し線はありません)。私が使用しているソラライズされたテーマが原因であると思います: https://github.com/sellout/emacs-color-theme-solarized
残念ながら、私はそれを自分で修正できませんでした... customize-face
org-doneを見ると、取り消し線の値は「オン」ですが、視覚効果はありません。
どうもありがとうございました!