aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnson Denen <johnson.denen@gmail.com>2017-04-18 15:51:08 -0400
committerJohnson Denen <johnson.denen@gmail.com>2017-04-18 15:54:19 -0400
commit31c141d371d7e634a5ca813cfa207d10e8ddc0ea (patch)
tree84b1730c6de88e9bae559bb237dc2bdeb4b592a2
parentf8f4aff3312f0fb6f07c0c34196c9d12b2288208 (diff)
Add keybinding for `mastodon-tl--thread' and update README
-rw-r--r--README.org1
-rw-r--r--lisp/mastodon.el2
2 files changed, 3 insertions, 0 deletions
diff --git a/README.org b/README.org
index a5ab83b..c2d801d 100644
--- a/README.org
+++ b/README.org
@@ -71,6 +71,7 @@ Opens a =*mastodon-home*= buffer in the major mode so you can see toots.
| =q= | Quit mastodon buffer. Leave window open. |
| =Q= | Quit mastodon buffer and kill window. |
| =r= | Reply to toot under =point=. |
+| =t= | Open thread buffer for toot under =point=. |
| =T= | Prompt for tag and open its timeline |
|-----+------------------------------------------------|
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index c7dc772..49b2458 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -108,6 +108,7 @@
(define-key map (kbd "q") #'kill-this-buffer)
(define-key map (kbd "Q") #'kill-buffer-and-window)
(define-key map (kbd "r") #'mastodon-toot--reply)
+ (define-key map (kbd "t") #'mastodon-tl--thread)
(define-key map (kbd "T") #'mastodon-tl--get-tag-timeline)
(define-key map (kbd "u") #'mastodon-tl--update)))
@@ -127,6 +128,7 @@
("k" "Prev" mastodon-tl--goto-prev-toot)
("n" "Send" mastodon-toot)
("r" "Reply" mastodon-toot--reply)
+ ("t" "Thread" mastodon-tl--thread)
("u" "Update" mastodon-tl--update))
("Timelines"
("F" "Federated" mastodon-tl--get-federated-timeline)