aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-tl.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-08-17 21:11:28 +0200
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-08-17 21:11:28 +0200
commitb427d486a7621c10b2cc898919bd02bf3c25b423 (patch)
treec5e5e250e8abcebc6e3872d2e24138f5f98c85f0 /lisp/mastodon-tl.el
parent20dec8871c9bb5f5e418bfc197e7533b5e3065e3 (diff)
parent03841b31f2a0a1b579618271d81eeecdbed062fb (diff)
Merge branch 'develop'
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r--lisp/mastodon-tl.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 360aeaa..1d672a5 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -168,6 +168,10 @@ Note that you can hide replies on a one-off basis by loading a
timeline with a simple prefix argument, `C-u'."
:type '(boolean :tag "Whether to hide replies from the timelines."))
+(defcustom mastodon-tl--highlight-current-toot nil
+ "Whether to highlight the toot at point. Uses `cursor-face' special property."
+ :type '(boolean))
+
;;; VARIABLES
@@ -1317,7 +1321,8 @@ THREAD means the status will be displayed in a thread view."
(or base-toot
toot)) ; else normal toot with reblog check
'toot-json toot
- 'base-toot base-toot)
+ 'base-toot base-toot
+ 'cursor-face 'mastodon-cursor-highlight-face)
"\n")
(when mastodon-tl--display-media-p
(mastodon-media--inline-images start-pos (point)))))