diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-05 08:31:34 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-05-05 08:31:34 +0200 |
commit | 8438af1b33930acd17e3ca1b266eaccd8b2e381b (patch) | |
tree | 432ec3190bb0043bc7876b64d0abb03555f2d403 | |
parent | 61b3ae0a6751d2bbd495867e4a757c67a4f117a8 (diff) |
help-echo for toot stats
-rw-r--r-- | lisp/mastodon-tl.el | 3 |
1 files changed, 3 insertions, 0 deletions
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 |