Q: how do I change the face of the outline ellipsis?
When working with outlines, the (customizable) ellipsis indicates when a section is folded and there is hidden text, eg:
* A heading...
** A subheading...
*** A subsubheading...
The ellipsis is customizable via the selective-display
slot of the display-table
, eg:
(set-display-table-slot standard-display-table
'selective-display
(string-to-vector "!!!"))
Which gets us to:
* A heading!!!
** A subheading!!!
*** A subsubheading!!!
(No, I'm not actually using exclamation points, it's just an example.)
However, what I'd like to do is customize the ellipsis so that it takes the same face as the outline header it is on. How would one do that?
PS: Note that the EmacsWiki outline-mode
node has a couple of suggestions for setting the face, but neither seem to work (at least for me).
PPS: A related thread on the org-ellipsis
does not explicitly handle the faces issue.