aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2022-11-20 23:11:56 +0100
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2022-11-21 10:04:12 +0100
commitf751e7792e223a078bf63fde8c8028ee34185171 (patch)
treee0fcf8298c913f5e66e192f6d2418a50c8d846c0 /lisp/mastodon.el
parentf1c083bcf68106ff2de7e6532f8db7e3888eed18 (diff)
display edit timestamp in byline, function to view toot history
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r--lisp/mastodon.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index 393d7b6..5be168c 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -95,6 +95,7 @@
(autoload 'mastodon-notifications--get-mentions "mastodon-notifications")
(autoload 'mastodon-tl--view-lists "mastodon-tl")
(autoload 'mastodon-toot--edit-toot-at-point "mastodon-toot")
+(autoload 'mastodon-toot--view-toot-history "mastodon-tl")
(defgroup mastodon nil
"Interface with Mastodon."
@@ -199,6 +200,7 @@ Use. e.g. \"%c\" for your locale's date and time format."
(define-key map (kbd "X") #'mastodon-tl--view-lists)
(define-key map (kbd "@") #'mastodon-notifications--get-mentions)
(define-key map (kbd "e") #'mastodon-toot--edit-toot-at-point)
+ (define-key map (kbd "E") #'mastodon-toot--view-toot-edits)
(when (require 'lingva nil :no-error)
(define-key map (kbd "s") #'mastodon-toot--translate-toot-text))
map)