]> git.notmuchmail.org Git - notmuch/blob - test/corpus/cur/39:2,
clean up spelling
[notmuch] / test / corpus / cur / 39:2,
1 From: "Alexander Botero-Lowry" <alex.boterolowry@gmail.com>
2 To: notmuch@notmuchmail.org
3 Date: Wed, 18 Nov 2009 00:52:34 -0800
4 Subject: [notmuch] [PATCH] Create a default notmuch-show-hook that
5  highlights URLs and uses word-wrap
6 In-Reply-To: <1258532999-9316-1-git-send-email-keithp@keithp.com>
7 References: <1258532999-9316-1-git-send-email-keithp@keithp.com>
8 Message-ID: <867hto2p0t.fsf@fortitudo.i-did-not-set--mail-host-address--so-tickle-me>
9
10 On Wed, 18 Nov 2009 00:29:59 -0800, Keith Packard <keithp at keithp.com> wrote:
11 > I created the notmuch-show-hook precisely so I could add these two
12 > options, but I suspect most people will want them, so I just made them
13 > the default. If you don't want them, you can use remove-hook to get
14 > rid of this.
15
16 Yes, hooks should be added for search as well. :)
17
18 > +; Make show mode a bit prettier, highlighting URLs and using word wrap
19 > +
20 > +(defun notmuch-show-pretty-hook ()
21 > +  (goto-address-mode 1)
22 > +  (visual-line-mode))
23 > +
24 visual-line-mode turns out to make subject look pretty ugly if there is a
25 continuation. It doesn't do much good for the citation headers
26 either. We probably need to do our own intelligent wrapping rather then
27 use visual-line-mode to make this actually look right.
28
29 goto-address-mode is important though. :)
30
31 alex
32