Variable: org-agenda-sticky

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

Value

nil

Documentation

Non-nil means agenda q key will bury agenda buffers.

Agenda commands will then show existing buffer instead of generating new ones. When nil, q will kill the single agenda buffer.

This variable was added, or its default value changed, in Emacs 24.3.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
;;; Multiple agenda buffers support

(defcustom org-agenda-sticky nil
  "Non-nil means agenda q key will bury agenda buffers.
Agenda commands will then show existing buffer instead of generating new ones.
When nil, `q' will kill the single agenda buffer."
  :group 'org-agenda
  :version "24.3"
  :type 'boolean)