diff options
author | jao <jao@gnu.org> | 2021-08-19 02:43:49 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-08-19 02:43:49 +0100 |
commit | 551d5547ede275fac483cfdcbc442976d8f9b7d4 (patch) | |
tree | d3c4086344c7a50f6264822d23c39662ff57f368 /lib | |
parent | 26f7ffb67c1740835e966fe3832a6ddf9bc0b9cf (diff) | |
download | elibs-551d5547ede275fac483cfdcbc442976d8f9b7d4.tar.gz elibs-551d5547ede275fac483cfdcbc442976d8f9b7d4.tar.bz2 |
jao-notmuch: hidden outline indicators via display property
Diffstat (limited to 'lib')
-rw-r--r-- | lib/net/jao-notmuch.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/jao-notmuch.el b/lib/net/jao-notmuch.el index 6b88e80..e2536c0 100644 --- a/lib/net/jao-notmuch.el +++ b/lib/net/jao-notmuch.el @@ -281,7 +281,7 @@ ;; Outline mode for tree view (defun jao-notmuch-tree--msg-prefix (msg) - (insert (if (plist-get msg :first) "> " " "))) + (insert (propertize (if (plist-get msg :first) "> " " ") 'display ""))) (defun jao-notmuch-tree--mode-setup () (setq-local outline-regexp "^> \\|^En") |