branch: externals/org-remark commit e6bf2426497865f6453c69808ec78bb6e1db29cc Author: Noboru Ota <m...@nobiot.com> Commit: Noboru Ota <m...@nobiot.com>
fix: Add highlighter face def for termianl The case t for defface `org-martinalia-highlighter` was missing for the cases where there are not enough colors the display is capabile of -- i.e. terminal. --- org-marginalia.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/org-marginalia.el b/org-marginalia.el index 791e5c9816..1f33e71894 100644 --- a/org-marginalia.el +++ b/org-marginalia.el @@ -179,7 +179,9 @@ separate Org file" '((((class color) (min-colors 88) (background light)) :underline "#aecf90" :background "#ecf7ed") (((class color) (min-colors 88) (background dark)) - :underline "#00422a" :background "#001904")) + :underline "#00422a" :background "#001904") + (t + :inherit highlight)) "Face for highlighters." :group 'org-marginalia)