mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
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>
This commit is contained in:
parent
86f7ee24d6
commit
adbdafbde2
1 changed files with 8 additions and 0 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue