aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authormousebot <mousebot@riseup.net>2021-11-10 10:21:42 +0100
committermousebot <mousebot@riseup.net>2021-11-10 10:21:42 +0100
commit1892014062229f3b68136495e53e90a51dfa58a1 (patch)
tree5887c897cf58e3bcebe1ca02d536246bc5cb4a93 /lisp
parent3dd4fea29835702a9664d7dd36014066edd1e49a (diff)
move profile view followers/following bindings to 's'/'g'.
because 'O' is no longer available, being used for --my-profile. the actual solution is to just have one binding that cycles through the profile views.
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 81ab837..7a9edc3 100644
--- a/lisp/mastodon-profile.el
+++ b/lisp/mastodon-profile.el
@@ -68,8 +68,8 @@
;; this way you can update it with C-M-x:
(defvar mastodon-profile-mode-map
(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 "s") #'mastodon-profile--open-followers)
+ (define-key map (kbd "g") #'mastodon-profile--open-following)
(define-key map (kbd "a") #'mastodon-profile--follow-request-accept)
(define-key map (kbd "j") #'mastodon-profile--follow-request-reject)
map)