summaryrefslogtreecommitdiffhomepage
path: root/notmuch.org
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2021-08-23 02:51:09 +0100
committerjao <jao@gnu.org>2021-08-23 02:52:40 +0100
commite73981f7292618adb972b1195944e6b2997ce190 (patch)
tree4ae7843492f37d4adbc039a3424357666ee869fa /notmuch.org
parent944e7eceb86b916ed24a85ea40dfc51b5d826e1d (diff)
downloadelibs-e73981f7292618adb972b1195944e6b2997ce190.tar.gz
elibs-e73981f7292618adb972b1195944e6b2997ce190.tar.bz2
notmuch: a better way of recovering the w3m keymap
Diffstat (limited to 'notmuch.org')
-rw-r--r--notmuch.org11
1 files changed, 7 insertions, 4 deletions
diff --git a/notmuch.org b/notmuch.org
index cb20bc1..c144c8a 100644
--- a/notmuch.org
+++ b/notmuch.org
@@ -286,15 +286,18 @@
:bind
(:map notmuch-show-mode-map
- (("h" . jao-notmuch-goto-tree-buffer)
- ("TAB" . jao-notmuch-show-next-button)
- ("S-TAB" . jao-notmuch-show-previous-button)
- ("RET" . jao-notmuch-show-ret))))
+ (("h" . jao-notmuch-goto-tree-buffer))))
#+end_src
* search
#+begin_src emacs-lisp
(use-package notmuch-search
+ :init (setq notmuch-search-result-format
+ '(("date" . "%12s ")
+ ("count" . "%-7s ")
+ ("authors" . "%-35s")
+ ("subject" . "%-100s")
+ ("tags" . "(%s)")))
:bind (:map notmuch-search-mode-map
(("RET" . notmuch-tree-from-search-thread)
("M-RET" . notmuch-search-show-thread))))