aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon.el
diff options
context:
space:
mode:
authorJohnson Denen <johnson.denen@gmail.com>2017-04-25 13:19:27 -0400
committerJohnson Denen <johnson.denen@gmail.com>2017-04-28 19:57:23 -0400
commit40d8cac89c94367ce7adda04684e0fa6255f0c64 (patch)
tree20cefd151f5504cb309ee59a88c6c970f65f8160 /lisp/mastodon.el
parentc99b717c3ca818e3f8ecc0b0b508fcc31c54cc5a (diff)
Parity with non-toggle favourite function
TODOs: - Boost/unboost toggle function - Store 'favourite-p property on toots
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r--lisp/mastodon.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index 5921e2a..ea55559 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -100,7 +100,7 @@ If REPLY-TO-ID is non-nil, attach new toot to a conversation."
:group 'mastodon
(let ((map mastodon-mode-map))
(define-key map (kbd "b") #'mastodon-toot--boost)
- (define-key map (kbd "f") #'mastodon-toot--favourite)
+ (define-key map (kbd "f") #'mastodon-toot--toggle-favourite)
(define-key map (kbd "F") #'mastodon-tl--get-federated-timeline)
(define-key map (kbd "H") #'mastodon-tl--get-home-timeline)
(define-key map (kbd "j") #'mastodon-tl--goto-next-toot)