aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.el
diff options
context:
space:
mode:
authorGravatar Keith Packard <keithp@keithp.com>2009-11-18 00:28:14 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-18 23:30:10 +0100
commitadbdafbde289ebb724a31cf5ea82e1986ff88ccd (patch)
treec3af95dd005511fb62a645651a85e96ef4064f81 /notmuch.el
parent86f7ee24d6d0b15775b6f63f3bf88639e5be6e03 (diff)
Create a default notmuch-show-hook that highlights URLs and uses word-wrap
I created the notmuch-show-hook precisely so I could add these two options, but I suspect most people will want them, so I just made them the default. If you don't want them, you can use remove-hook to get rid of this. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'notmuch.el')
-rw-r--r--notmuch.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/notmuch.el b/notmuch.el
index 59a5851b..1934ddfc 100644
--- a/notmuch.el
+++ b/notmuch.el
@@ -651,6 +651,14 @@ view, (remove the \"inbox\" tag from each), with
:options '(goto-address)
:group 'notmuch)
+; Make show mode a bit prettier, highlighting URLs and using word wrap
+
+(defun notmuch-show-pretty-hook ()
+ (goto-address-mode 1)
+ (visual-line-mode))
+
+(add-hook 'notmuch-show-hook 'notmuch-show-pretty-hook)
+
(defun notmuch-show (thread-id &optional parent-buffer)
"Run \"notmuch show\" with the given thread ID and display results.