mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 19:23:03 +03:00
mail: don't move signature to top
This commit is contained in:
parent
2cbac89911
commit
d5c7b30fd1
2 changed files with 6 additions and 2 deletions
|
|
@ -90,7 +90,7 @@
|
||||||
(encrypt))))
|
(encrypt))))
|
||||||
|
|
||||||
(defun my/message-insert-signature-need-on-top ()
|
(defun my/message-insert-signature-need-on-top ()
|
||||||
t)
|
nil)
|
||||||
|
|
||||||
(defun my/message-maybe-fix-signature (&rest _)
|
(defun my/message-maybe-fix-signature (&rest _)
|
||||||
(when (my/message-insert-signature-need-on-top)
|
(when (my/message-insert-signature-need-on-top)
|
||||||
|
|
|
||||||
6
Mail.org
6
Mail.org
|
|
@ -521,6 +521,8 @@ The following formats the tables above to a proper syntax for =setq notmuch-save
|
||||||
(encrypt))))
|
(encrypt))))
|
||||||
#+end_src
|
#+end_src
|
||||||
** Tuning signature
|
** Tuning signature
|
||||||
|
Edit <2024-08-19 Mon>: Apparently this was a feature, not a bug. Disabling this.
|
||||||
|
|
||||||
By default, =message.el= inserts the signature at the bottom of the message, like this:
|
By default, =message.el= inserts the signature at the bottom of the message, like this:
|
||||||
|
|
||||||
#+begin_example
|
#+begin_example
|
||||||
|
|
@ -555,9 +557,11 @@ So here I modifiy the citation function to insert the signature like in the seco
|
||||||
|
|
||||||
Edit <2022-10-27 Thu>: for consistency's sake, I'll make the signature on the top for all cases.
|
Edit <2022-10-27 Thu>: for consistency's sake, I'll make the signature on the top for all cases.
|
||||||
|
|
||||||
|
Edit <2024-08-19 Mon>: see above
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(defun my/message-insert-signature-need-on-top ()
|
(defun my/message-insert-signature-need-on-top ()
|
||||||
t)
|
nil)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
Then advice the =notmuch-mua-reply= function:
|
Then advice the =notmuch-mua-reply= function:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue