Variable: org-calendar-to-agenda-key
org-calendar-to-agenda-key is a customizable variable defined in
org-compat.el.
Value
default
Documentation
Key to be installed in calendar-mode-map for switching to the agenda.
The command org-calendar-goto-agenda will be bound to this key.
When set to default, bind the function to c, but only if it is
available in the Calendar keymap. This is the default choice because
c can then be used to switch back and forth between agenda and calendar.
When nil, org-calendar-goto-agenda is not bound to any key.
This variable was added, or its default value changed, in Org version
9.2.
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-compat.el
;;;; Calendar
(defcustom org-calendar-to-agenda-key 'default
"Key to be installed in `calendar-mode-map' for switching to the agenda.
The command `org-calendar-goto-agenda' will be bound to this key.
When set to `default', bind the function to `c', but only if it is
available in the Calendar keymap. This is the default choice because
`c' can then be used to switch back and forth between agenda and calendar.
When nil, `org-calendar-goto-agenda' is not bound to any key."
:group 'org-agenda
:type '(choice
(const :tag "Bind to `c' if available" default)
(key-sequence :tag "Other binding")
(const :tag "No binding" nil))
:safe (lambda (v) (or (symbolp v) (stringp v)))
:package-version '(Org . "9.2"))