summaryrefslogtreecommitdiff
path: root/modes/mu4e
diff options
context:
space:
mode:
authorMichael Eliachevitch <m.eliachevitch@posteo.de>2023-04-03 18:44:26 +0200
committerJames <1227856+jojojames@users.noreply.github.com>2023-04-30 12:27:31 -0700
commit35be7d3f4e376d9c11409c34817e04cc85cd43c4 (patch)
treeb290bcd45037955aab5754f817c971e2e491f337 /modes/mu4e
parent7313ce9f70ec1d099c16a9ec33381654d7b58177 (diff)
Add docstrings to satisfy checkdoc
Diffstat (limited to 'modes/mu4e')
-rw-r--r--modes/mu4e/evil-collection-mu4e.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/modes/mu4e/evil-collection-mu4e.el b/modes/mu4e/evil-collection-mu4e.el
index 5a57ec6..c31c72f 100644
--- a/modes/mu4e/evil-collection-mu4e.el
+++ b/modes/mu4e/evil-collection-mu4e.el
@@ -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))