diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-13 11:23:39 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-13 11:38:19 +0100 |
commit | 447081217888977ecfcbe8a005566f44929a16e6 (patch) | |
tree | 2064544e1601f02437105352d7e5021ce85d1f75 /lisp | |
parent | 66b37a1ad65caa1c6cbe3e7b6ad7bc3ad7084da4 (diff) |
change foll-reqs view reject binding to 'j', like notifs view
then 'r' is only ever used for reply, even tho not avail in fr view
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-profile.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index ea73b99..63c062b 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -94,7 +94,10 @@ (defvar mastodon-profile--view-follow-requests-keymap (let ((map ;(make-sparse-keymap))) (copy-keymap mastodon-mode-map))) - (define-key map (kbd "r") #'mastodon-notifications--follow-request-reject) + ;; make reject binding match the binding in notifs view + ;; 'r' is then reserved for replying, even tho it is not avail + ;; in foll-reqs view + (define-key map (kbd "j") #'mastodon-notifications--follow-request-reject) (define-key map (kbd "a") #'mastodon-notifications--follow-request-accept) (define-key map (kbd "n") #'mastodon-tl--goto-next-item) (define-key map (kbd "p") #'mastodon-tl--goto-prev-item) |