Variable: org-ellipsis

org-ellipsis is a customizable variable defined in org.el.gz.

Value

nil

Documentation

The ellipsis to use in the Org mode outline.

When nil, just use the standard three dots. When a non-empty string, use that string instead.

The change affects only Org mode (which will then use its own display table). Changing this requires executing M-x org-mode (org-mode) in a buffer to become effective. It cannot be set as a local variable.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-ellipsis nil
  "The ellipsis to use in the Org mode outline.

When nil, just use the standard three dots.  When a non-empty string,
use that string instead.

The change affects only Org mode (which will then use its own display table).
Changing this requires executing `\\[org-mode]' in a buffer to become
effective.  It cannot be set as a local variable."
  :group 'org-startup
  :type '(choice (const :tag "Default" nil)
		 (string :tag "String" :value "...#")))