diff options
author | Johnson Denen <johnson.denen@gmail.com> | 2017-04-18 09:07:03 -0400 |
---|---|---|
committer | Johnson Denen <johnson.denen@gmail.com> | 2017-04-18 10:44:40 -0400 |
commit | b10430e7d42d3c07f4e71ed7375d256cd5fccbf8 (patch) | |
tree | 67b836f431f6a5db8d77f2166c449af4307056b1 /lisp/mastodon.el | |
parent | 9c2d6230993340d13f85be99dcc128e09e73058a (diff) |
Add boost feature to timelines
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r-- | lisp/mastodon.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el index b74a64d..6c13299 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -94,6 +94,7 @@ "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 "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) @@ -115,6 +116,7 @@ (description "Mastodon feed viewer") (actions ("Toots" + ("b" "Boost" mastodon-toot--boost) ("j" "Next" mastodon-tl--goto-next-toot) ("k" "Prev" mastodon-tl--goto-prev-toot) ("n" "Send" mastodon-toot) |