aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon.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.el
parent20dec8871c9bb5f5e418bfc197e7533b5e3065e3 (diff)
parent03841b31f2a0a1b579618271d81eeecdbed062fb (diff)
Merge branch 'develop'
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r--lisp/mastodon.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index 53986cf..84d3d1d 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -99,6 +99,7 @@
(autoload 'mastodon-views--view-scheduled-toots "mastodon-views")
(autoload 'special-mode "simple")
+(defvar mastodon-tl--highlight-current-toot)
(defvar mastodon-notifications--map)
(defgroup mastodon nil
@@ -258,6 +259,10 @@ mastodon.el needs to be re-loaded for this to be correctly set.")
"Face used for reply text in toot compose buffer.
See `mastodon-toot-display-orig-in-reply-buffer'.")
+(defface mastodon-cursor-highlight-face
+ `((t :inherit highlight :extend t))
+ "Face for `mastodon-tl--highlight-current-toot'.")
+
;;;###autoload
(defun mastodon ()
"Connect Mastodon client to `mastodon-instance-url' instance."
@@ -401,7 +406,9 @@ Calls `mastodon-tl--get-buffer-type', which see."
(when (require 'emojify nil :noerror)
(emojify-mode t)
(when mastodon-toot--enable-custom-instance-emoji
- (mastodon-toot--enable-custom-emoji)))))
+ (mastodon-toot--enable-custom-emoji))
+ (when mastodon-tl--highlight-current-toot
+ (cursor-face-highlight-mode)))))
;;;###autoload
(add-hook 'mastodon-mode-hook #'mastodon-profile--fetch-server-account-settings)