calendar: setup org bindings on demand

Fix #518
This commit is contained in:
condy 2021-09-18 04:13:07 +08:00
parent a053a47b9e
commit 1acc80b8bd
1 changed files with 6 additions and 5 deletions

View File

@ -62,6 +62,11 @@
(evil-collection-define-key 'normal 'calendar-mode-map
(kbd key) 'org-agenda-diary-entry))))
;; Otherwise it will load tons of org stuff at startup.
(defvar evil-collection-calendar-want-org-bindings)
(when evil-collection-calendar-want-org-bindings
(add-hook 'calendar-mode-hook #'evil-collection-calendar-setup-org-bindings))
;;;###autoload
(defun evil-collection-calendar-setup ()
"Set up `evil' bindings for `calendar'."
@ -135,11 +140,7 @@
;; quit
"q" 'calendar-exit
"ZQ" 'evil-quit
"ZZ" 'calendar-exit)
(defvar evil-collection-calendar-want-org-bindings)
(when evil-collection-calendar-want-org-bindings
(evil-collection-calendar-setup-org-bindings)))
"ZZ" 'calendar-exit))
(provide 'evil-collection-calendar)
;;; evil-collection-calendar.el ends here