diff options
author | jao <jao@gnu.org> | 2021-11-08 01:15:50 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-11-08 01:15:50 +0000 |
commit | bf4224860427cc42bf23f566f885b9713d4606de (patch) | |
tree | 128b4999c904e5e1b39c8520cddaa1fcc727a332 | |
parent | 6747eeb748e5bae1bc1d0e45a8cfab89c7a6fa2b (diff) | |
download | elibs-bf4224860427cc42bf23f566f885b9713d4606de.tar.gz elibs-bf4224860427cc42bf23f566f885b9713d4606de.tar.bz2 |
gnus: remember to auto-tangle gnus.org when needed
-rw-r--r-- | email.org | 6 | ||||
-rw-r--r-- | gnus.org | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -334,6 +334,12 @@ gnus-home-directory "~/.emacs.d/gnus" gnus-directory gnus-home-directory mail-source-directory (expand-file-name "Mail" gnus-home-directory)) + + (when (eq jao-afio-mail-function 'gnus) + (let ((org-file (expand-file-name "gnus.org" jao-emacs-dir))) + (when (file-newer-than-file-p org-file gnus-init-file) + (org-babel-tangle-file org-file)))) + #+end_src *** Notifications #+begin_src emacs-lisp @@ -119,6 +119,7 @@ #+end_src * Search [[info:gnus#Searching][info:gnus#Searching]] + #+begin_src emacs-lisp (setq gnus-search-use-parsed-queries t gnus-search-notmuch-raw-queries-p nil) |