aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorJohnson Denen <johnson.denen@gmail.com>2017-04-18 11:13:50 -0400
committerJohnson Denen <johnson.denen@gmail.com>2017-04-18 11:16:43 -0400
commit6375aa46466b980d5923773f7fe04e11384d82f0 (patch)
tree5ff1b07e62ed8df5ab5ab63c5a001df7369a6edb /lisp
parent3b781f850c825813fba4719cd5e082d010389eeb (diff)
Add keybinding and update README
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mastodon.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index 6c13299..42bfb67 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -95,6 +95,7 @@
: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-tl--get-federated-timeline)
(define-key map (kbd "H") #'mastodon-tl--get-home-timeline)
(define-key map (kbd "j") #'mastodon-tl--goto-next-toot)
@@ -117,6 +118,7 @@
(actions
("Toots"
("b" "Boost" mastodon-toot--boost)
+ ("f" "Favourite" mastodon-toot--favourite)
("j" "Next" mastodon-tl--goto-next-toot)
("k" "Prev" mastodon-tl--goto-prev-toot)
("n" "Send" mastodon-toot)