aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authormousebot <mousebot@riseup.net>2021-07-16 20:52:13 +0200
committermousebot <mousebot@riseup.net>2021-07-16 20:52:13 +0200
commit43fa09ef3e080b5e36338554ff7b0d0152ff3a53 (patch)
treef098ddfd19a885fef9a3d1b4807053fa4aae2e7e /lisp
parent7afc5a08e35c86acc9f009404045a787ef61b77b (diff)
move follow req acc/rej bindings so they don't shadow profiles
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mastodon-profile.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el
index 0b7ecc4..c94ed35 100644
--- a/lisp/mastodon-profile.el
+++ b/lisp/mastodon-profile.el
@@ -70,8 +70,8 @@
(let ((map (make-sparse-keymap)))
(define-key map (kbd "O") #'mastodon-profile--open-followers)
(define-key map (kbd "o") #'mastodon-profile--open-following)
- (define-key map (kbd "a") #'mastodon-profile--follow-request-accept)
- (define-key map (kbd "r") #'mastodon-profile--follow-request-reject)
+ (define-key map (kbd "C-c a") #'mastodon-profile--follow-request-accept)
+ (define-key map (kbd "C-c r") #'mastodon-profile--follow-request-reject)
map)
"Keymap for `mastodon-profile-mode'.")