diff options
author | jao <jao@gnu.org> | 2022-08-25 05:41:02 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-08-25 05:41:02 +0100 |
commit | 7971183b076fc98168469bcd5a1e1861de1dfa6a (patch) | |
tree | 707a882dca78f1fe76965600cbd72854c8ed466e | |
parent | 79696dae3f99bac5f2a8fe59628fb02f5246bd66 (diff) | |
download | elibs-7971183b076fc98168469bcd5a1e1861de1dfa6a.tar.gz elibs-7971183b076fc98168469bcd5a1e1861de1dfa6a.tar.bz2 |
notmuch: 'as-is completion (let bbdb trigger)
-rw-r--r-- | custom/jao-custom-notmuch.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/custom/jao-custom-notmuch.el b/custom/jao-custom-notmuch.el index d3cc8c8..f6ab68f 100644 --- a/custom/jao-custom-notmuch.el +++ b/custom/jao-custom-notmuch.el @@ -197,7 +197,7 @@ ("sent" "S") ("attachment" "📎") ("deleted" "🗙" (propertize tag 'face '(:underline nil ,@e))) - ("flagged" "⚑" (propertize tag 'face ',e)) + ("flagged" "✓" (propertize tag 'face '(:weight bold ,e))) ("jao" "j") ("bigml" "b") ("feeds" "f") @@ -219,16 +219,17 @@ (use-package notmuch :init (setq notmuch-address-use-company t - notmuch-address-command (if jao-notmuch-enabled 'internal 'as-is) + notmuch-address-command 'as-is notmuch-always-prompt-for-sender t notmuch-draft-folder "local" notmuch-draft-quoted-tags '("part") - notmuch-address-internal-completion '(received nil) notmuch-fcc-dirs '(("\\(support\\|education\\)@bigml.com" . nil) (".*@bigml.com" . "bigml/trove -unread -new +sent +bigml +trove")) notmuch-maildir-use-notmuch-insert t) + :custom ((notmuch-address-internal-completion '(sent nil))) + :config (add-hook 'message-send-hook #'notmuch-mua-attachment-check) @@ -485,7 +486,6 @@ ("d" . jao-notmuch-tree-toggle-delete) ("D" . jao-notmuch-tree-toggle-delete-thread) ("h" . jao-notmuch-goto-message-buffer) - ("H" . jao-notmuch-click-message-buffer) ("i" . jao-notmuch-toggle-images) ("K" . jao-notmuch-tag-jump-and-next) ("k" . jao-notmuch-tree-read-thread) |