mu4e compose improvements

This commit is contained in:
Emmet 2024-02-25 10:14:11 -06:00
parent a7dd41eb2c
commit 98b3719499
2 changed files with 12 additions and 6 deletions

View file

@ -1338,14 +1338,17 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)."
;; ))
;;(mu4e-context-switch t "example1")
(org-msg-mode 0)
;; https://emacs.stackexchange.com/questions/3061/how-to-stop-mu4e-from-inserting-line-breaks
(defun no-auto-fill ()
"Turn off auto-fill-mode."
(auto-fill-mode -1))
(add-hook 'mu4e-compose-mode-hook #'no-auto-fill)
(defun no-org-msg-mode ()
"Disable org-msg-mode since it doesn't respect multiline emails"
(org-msg-mode 0))
(add-hook 'mu4e-compose-mode-hook #'no-auto-fill)
(add-hook 'mu4e-compose-pre-hook #'no-org-msg-mode)
)
;; TODO fix my make-mu4e-context wrapper

View file

@ -1561,14 +1561,17 @@ I don't have this active right now since it's kinda weird with pgtk...
;; ))
;;(mu4e-context-switch t "example1")
(org-msg-mode 0)
;; https://emacs.stackexchange.com/questions/3061/how-to-stop-mu4e-from-inserting-line-breaks
(defun no-auto-fill ()
"Turn off auto-fill-mode."
(auto-fill-mode -1))
(add-hook 'mu4e-compose-mode-hook #'no-auto-fill)
(defun no-org-msg-mode ()
"Disable org-msg-mode since it doesn't respect multiline emails"
(org-msg-mode 0))
(add-hook 'mu4e-compose-mode-hook #'no-auto-fill)
(add-hook 'mu4e-compose-pre-hook #'no-org-msg-mode)
)
;; TODO fix my make-mu4e-context wrapper