diff options
author | jao <jao@gnu.org> | 2022-02-21 23:54:12 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-02-21 23:54:12 +0000 |
commit | 6bf2777ec1fbc57cecc695026348370587d3631c (patch) | |
tree | fe06a2cb10231c1ee5e330c09039b75bc14afae4 /lib/net | |
parent | 2ff0b1593ae8d372b696ecb3640b0627b863a20f (diff) | |
download | elibs-6bf2777ec1fbc57cecc695026348370587d3631c.tar.gz elibs-6bf2777ec1fbc57cecc695026348370587d3631c.tar.bz2 |
jao-notmuch: better cursor movement in tree outlines
Diffstat (limited to 'lib/net')
-rw-r--r-- | lib/net/jao-notmuch.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/net/jao-notmuch.el b/lib/net/jao-notmuch.el index b4c587e..87e2e2c 100644 --- a/lib/net/jao-notmuch.el +++ b/lib/net/jao-notmuch.el @@ -263,7 +263,8 @@ ;;;; Outline mode for tree view (defun jao-notmuch-tree--msg-prefix (msg) - (insert (propertize (if (plist-get msg :first) "> " " ") 'display ""))) + (insert (propertize (if (plist-get msg :first) "> " " ") + 'display "" 'intangible t 'field t))) (defun jao-notmuch-tree--mode-setup () (setq-local outline-regexp "^> \\|^En") |