From 8438af1b33930acd17e3ca1b266eaccd8b2e381b Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Fri, 5 May 2023 08:31:34 +0200 Subject: help-echo for toot stats --- lisp/mastodon-tl.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 78178c5..7d48c12 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -1377,16 +1377,19 @@ To disable showing the stats, customize (propertize favourites 'favourited-p favourited 'favourites-field t + 'help-echo (format "%s favourites" favourites-count) 'face font-lock-comment-face) (propertize " | " 'face font-lock-comment-face) (propertize boosts 'boosted-p boosted 'boosts-field t + 'help-echo (format "%s boosts" boosts-count) 'face font-lock-comment-face) (propertize " | " 'face font-lock-comment-face) (propertize replies 'replies-field t 'replies-count replies-count + 'help-echo (format "%s replies" replies-count) 'face font-lock-comment-face))) (status (concat -- cgit v1.2.3