X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=emacstips.mdwn;h=6275f18fb0f680a4b270b080ea6f1d340543a0e3;hb=ef82988e1bbe4bf62c2471c519efa51a78267570;hp=c384fb61b17161a5b869555188f7088f6a53f3e8;hpb=cefaaee4c0b7e2e1b7f141eb4d5bf023c2a43cac;p=notmuch-wiki diff --git a/emacstips.mdwn b/emacstips.mdwn index c384fb6..6275f18 100644 --- a/emacstips.mdwn +++ b/emacstips.mdwn @@ -168,6 +168,20 @@ key: (notmuch-show-remove-tag "deleted") (notmuch-show-add-tag "deleted")))) +## Restore reply-to-all key binding to 'r' + +Starting from notmuch 0.12 the 'r' key is bound to reply-to-sender instead of +reply-to-all. Here's how to swap the reply to sender/all bindings in show mode: + + (define-key notmuch-show-mode-map "r" 'notmuch-show-reply) + (define-key notmuch-show-mode-map "R" 'notmuch-show-reply-sender) + +And in search mode: + + (define-key notmuch-search-mode-map "r" 'notmuch-search-reply-to-thread) + (define-key notmuch-search-mode-map "R" 'notmuch-search-reply-to-thread-sender) + + ## How to do FCC/BCC... The Emacs interface to notmuch will automatically add an `Fcc` @@ -305,7 +319,7 @@ address autocompletion. You can also use the notmuch database as a mail address book itself. To do this you need a command line tool that outputs likely address -candidates based on a search string. There are currently two +candidates based on a search string. There are currently three available: * The python tool `notmuch_address.py` (`git clone @@ -321,7 +335,11 @@ available: cc -o addrlookup addrlookup.c `pkg-config --cflags --libs gobject-2.0` -lnotmuch -You can perform tab-completion using either of these programs. Just add the following to your .emacs: + * Shell/fgrep/perl combination [nottoomuch-addresses.sh](http://www.iki.fi/too/nottoomuch/nottoomuch-addresses/). + This tools maintains it's own address "database" gathered from email + files notmuch knows and search from that "database" is done by fgrep(1). + +You can perform tab-completion using any of these programs. Just add the following to your .emacs: (require 'notmuch-address) (setq notmuch-address-command "/path/to/address_fetching_program")