aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon.el
diff options
context:
space:
mode:
authormousebot <mousebot@riseup.net>2022-02-15 21:54:30 +0100
committermousebot <mousebot@riseup.net>2022-02-17 09:50:03 +0100
commit241aa9b35101e6e8814e4aab64597caf6a285f75 (patch)
tree5cb0c5bdccbcc197fa714671d203f4c19998cf84 /lisp/mastodon.el
parentbc164b9eb3df4e4050d0c4a05fea7c9b5b368178 (diff)
fix view filters/foll suggests
- they get keymaps that inherit and so override the main masto keymap, which allows them to still have the basic timeline/view nav functions. - but we give them next-item rather than next toot so that they never try to e.g. load for toots into the buffer, which wouldn't work. - also remove the reference to foll requests view in tl--init as it is not longer needed. binding for follow suggestions remove tab from foll suggests keymap makes tab work as default, which means you can n/p to next/prev user, while still being able to tab to user next handle, to visit profile squashed commit: remove foll suggestions keymap
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r--lisp/mastodon.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index c8ceee7..51e27ec 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -166,6 +166,7 @@ Use. e.g. \"%c\" for your locale's date and time format."
(define-key map (kbd "k") #'mastodon-toot--bookmark-toot-toggle)
(define-key map (kbd "K") #'mastodon-profile--view-bookmarks)
(define-key map (kbd "I") #'mastodon-tl--view-filters)
+ (define-key map (kbd "G") #'mastodon-tl--get-follow-suggestions)
map)
"Keymap for `mastodon-mode'.")