Variable: org-agenda-block-separator

org-agenda-block-separator is a customizable variable defined in org-agenda.el.gz.

Value

61

Documentation

The separator between blocks in the agenda.

If this is a string, it will be used as the separator, with a newline added. If it is a character, it will be repeated to fill the window width. If nil the separator is disabled. In org-agenda-custom-commands this addresses the separator between the current and the previous block.

This variable was added, or its default value changed, in Org version
9.6.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-block-separator
  (if (and (display-graphic-p)
           (char-displayable-p ?─))
      ?─
    ?=)
  "The separator between blocks in the agenda.
If this is a string, it will be used as the separator, with a newline added.
If it is a character, it will be repeated to fill the window width.
If nil the separator is disabled.  In `org-agenda-custom-commands' this
addresses the separator between the current and the previous block."
  :group 'org-agenda
  :package-version '(Org . "9.6")
  :type '(choice
	  (const :tag "Disabled" nil)
	  (character)
	  (string)))