diff options
author | jao <jao@gnu.org> | 2022-02-28 19:59:53 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-02-28 19:59:53 +0000 |
commit | 7c0ae514b67723fa62229e1778e727833228f016 (patch) | |
tree | f7ae5cc6161305703a0bb2691b6343c74d5dec4f | |
parent | 9c1becb12896ee1cc30131eb5e8bc1ac57f2ace0 (diff) | |
download | elibs-7c0ae514b67723fa62229e1778e727833228f016.tar.gz elibs-7c0ae514b67723fa62229e1778e727833228f016.tar.bz2 |
whitespace
-rw-r--r-- | gnus.org | 27 |
1 files changed, 13 insertions, 14 deletions
@@ -367,8 +367,19 @@ (jao-minibuffer-add-variable 'jao-gnus--notify-strs -20)) #+end_src -* Notmuch integration -*** notmuch -> gnus +* Delayed messages + #+BEGIN_SRC emacs-lisp + ;;; delayed messages (C-cC-j in message buffer) + (require 'gnus-util) + (gnus-delay-initialize) + (setq gnus-delay-default-delay "3h") + ;;; so that the Date is set when the message is sent, not when it's + ;;; delayed + (eval-after-load "message" + '(setq message-draft-headers (remove 'Date message-draft-headers))) + #+END_SRC +* Add-ons +*** notmuch -> gnus / consult-notmuch #+begin_src emacs-lisp (defun jao-notmuch-goto-message-in-gnus () "Open a summary buffer containing the current notmuch article." @@ -398,18 +409,6 @@ (define-key notmuch-show-mode-map (kbd "C-c C-c") #'jao-notmuch-goto-message-in-gnus)) #+end_src -* Delayed messages - #+BEGIN_SRC emacs-lisp - ;;; delayed messages (C-cC-j in message buffer) - (require 'gnus-util) - (gnus-delay-initialize) - (setq gnus-delay-default-delay "3h") - ;;; so that the Date is set when the message is sent, not when it's - ;;; delayed - (eval-after-load "message" - '(setq message-draft-headers (remove 'Date message-draft-headers))) - #+END_SRC -* Add-ons *** icalendar/org #+begin_src emacs-lisp (require 'ol-gnus) |