aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon.el
diff options
context:
space:
mode:
authorJohnson Denen <johnson.denen@gmail.com>2017-04-25 23:45:29 -0400
committerJohnson Denen <johnson.denen@gmail.com>2017-04-27 16:04:28 -0400
commit3db5e26449a87728e37b086004f1581121f2469a (patch)
tree101e89b53233d43ff3b356036f634a7ecf69afff /lisp/mastodon.el
parentab900b68f03d1182fb137c48c805285f0f66e2c3 (diff)
Add toggle function for boost/unboost
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 ea55559..2926d08 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -99,7 +99,7 @@ If REPLY-TO-ID is non-nil, attach new toot to a conversation."
"Major mode for Mastodon, the federated microblogging network."
:group 'mastodon
(let ((map mastodon-mode-map))
- (define-key map (kbd "b") #'mastodon-toot--boost)
+ (define-key map (kbd "b") #'mastodon-toot--toggle-boost)
(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)