Add docstrings to satisfy checkdoc

This commit is contained in:
Michael Eliachevitch 2023-04-03 18:44:26 +02:00 committed by James
parent 7313ce9f70
commit 35be7d3f4e
1 changed files with 4 additions and 1 deletions

View File

@ -89,9 +89,11 @@
;; putting the user into insert-state. The below code, together with the hooks
;; set in evil-collection-mu4e-setup fixes this issue.
(defun evil-collection-mu4e-org-set-header-to-normal-mode ()
"Set initial state in `mu4e-compose-mode' to \='normal."
(evil-set-initial-state 'mu4e-compose-mode 'normal))
(defun evil-collection-mu4e-org-set-header-to-insert-mode ()
"Set initial state in `mu4e-compose-mode' to \='insert."
(evil-set-initial-state 'mu4e-compose-mode 'insert))
(defvar evil-collection-mu4e-mode-map-bindings
@ -257,9 +259,10 @@
(defun evil-collection-mu4e-setup ()
"Initialize evil-mu4e if necessary.
If mu4e-main-mode is in evil-state-motion-modes, initialization
If `mu4e-main-mode' is in `evil-state-motion-modes', initialization
is already done earlier."
(evil-collection-mu4e-set-state)
(evil-collection-mu4e-set-bindings))