emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Change folded headline symbol
@ 2015-02-05  8:55 Centre ML personnel
  2015-02-05 11:36 ` Fabrice Niessen
  0 siblings, 1 reply; 2+ messages in thread
From: Centre ML personnel @ 2015-02-05  8:55 UTC (permalink / raw)
  To: org-mode

Hi,
    I wonder if it is possible, without a deep knowledge of emacs/org, 
to change the "..." symbol used when headlines are folded into something 
else ("--->" for instance)?
Thanks
Thierry

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Change folded headline symbol
  2015-02-05  8:55 Change folded headline symbol Centre ML personnel
@ 2015-02-05 11:36 ` Fabrice Niessen
  0 siblings, 0 replies; 2+ messages in thread
From: Fabrice Niessen @ 2015-02-05 11:36 UTC (permalink / raw)
  To: emacs-orgmode-mXXj517/zsQ

Centre ML personnel wrote:
> I wonder if it is possible, without a deep knowledge of emacs/org, to
> change the "..." symbol used when headlines are folded into something
> else ("--->" for instance)?

Yes, it is!

For example, that's what I have in my .emacs file [1] to get a black
right-pointing pointer (if supported by the current font, as it is
a UTF8 character):

--8<---------------cut here---------------start------------->8---
  ;; Improve display of the ellipsis.
  (set-face-attribute 'org-ellipsis nil
                      :box '(:line-width 1 :color "#999999")
                      :foreground "#999999" :background "#FFF8C0"
                      :underline nil)

  ;; Ellipsis to use in the Org mode outline.
  (setq org-ellipsis
        (if (char-displayable-p ?\u25BA)
            " \u25BA"                   ; Black right-pointing pointer.
          'org-ellipsis)))              ; Face.
--8<---------------cut here---------------end--------------->8---

Fabrice

[1] https://github.com/fniessen/emacs-leuven

-- 
Fabrice Niessen
Leuven, Belgium
http://www.pirilampo.org/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-02-05 11:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-05  8:55 Change folded headline symbol Centre ML personnel
2015-02-05 11:36 ` Fabrice Niessen

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).