Org-mode中的Strike-through文本(如:+ text +)默认为黑色。我想让它们变灰。问题是,我找不到定制它的地方。我试过M=x describe-face
,结果是“默认面孔”,这令人费解。 Org-mode有没有配置透视颜色的地方?
答案 0 :(得分:11)
使用 M-x customize-variable 自定义org-emphasis-alist
变量。找到“标记字符”为+
的列表条目,然后在“值菜单”弹出窗口中选择“字体锁定面”选项。输入您选择的面部的值,其精确外观可以自定义常规方式,例如使用 M-x customize-face 。
或者,更简洁:
(require 'cl) ; for delete*
(setq org-emphasis-alist
(cons '("+" '(:strike-through t :foreground "gray"))
(delete* "+" org-emphasis-alist :key 'car :test 'equal)))