aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-profile.el
diff options
context:
space:
mode:
authormousebot <mousebot@riseup.net>2022-02-15 17:06:03 +0100
committermousebot <mousebot@riseup.net>2022-02-15 19:38:19 +0100
commit7058db5848987df4c089bd0c0e34813f830d372c (patch)
tree19f167e86a402eaccc8d2f9752a9a0a9f90f8f47 /lisp/mastodon-profile.el
parentb2302027969ec305969c4024296b05f50e4f1846 (diff)
add generic goto-next/prev-item funs for filters/foll reqs
fix remnant call to goto-next-filter
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r--lisp/mastodon-profile.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el
index 857c349..c7f8963 100644
--- a/lisp/mastodon-profile.el
+++ b/lisp/mastodon-profile.el
@@ -78,8 +78,10 @@
(let ((map (make-sparse-keymap)))
(define-key map (kbd "r") #'mastodon-notifications--follow-request-reject)
(define-key map (kbd "a") #'mastodon-notifications--follow-request-accept)
- ;; (define-key map (kbd "g") 'mastodon-notifications--view-follow-requests
- ;; (define-key map (kbd "t") #'mastodon-toot)
+ (define-key map (kbd "n") #'mastodon-tl--goto-next-item)
+ (define-key map (kbd "p") #'mastodon-tl--goto-prev-item)
+ (define-key map (kbd "g") 'mastodon-notifications--view-follow-requests)
+ (define-key map (kbd "t") #'mastodon-toot)
(define-key map (kbd "q") #'kill-current-buffer)
(define-key map (kbd "Q") #'kill-buffer-and-window)
map)