aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon.el
diff options
context:
space:
mode:
authormousebot <mousebot@riseup.net>2021-05-08 14:07:34 +0200
committermousebot <mousebot@riseup.net>2021-05-08 14:07:34 +0200
commit6d944039bef1288745ae5535f6a407bb7cef1a51 (patch)
tree032ff42e0c540dc69dbd93df987b81de088f9a7d /lisp/mastodon.el
parent77941ed350b83ab36459e0bb1346699e1db992c2 (diff)
mute/unmute, block/unblock funs and bindings
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r--lisp/mastodon.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index 22c7c1c..929ae8c 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -109,6 +109,10 @@ Use. e.g. \"%c\" for your locale's date and time format."
(define-key map (kbd "D") #'mastodon-tl--delete-toot)
(define-key map (kbd "W") #'mastodon-tl--follow-user)
(define-key map (kbd "C-S-W") #'mastodon-tl--unfollow-user)
+ (define-key map (kbd "B") #'mastodon-tl--block-user)
+ (define-key map (kbd "C-S-B") #'mastodon-tl--unblock-user)
+ (define-key map (kbd "M") #'mastodon-tl--mute-user)
+ (define-key map (kbd "C-S-M") #'mastodon-tl--unmute-user)
map)
"Keymap for `mastodon-mode'.")