我真的很想在 Org 模式下完成我的 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 删除线的值“打开”,但没有视觉效果。
非常感谢!