aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2022-11-13 11:21:26 +0100
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2022-11-13 11:21:26 +0100
commit66b37a1ad65caa1c6cbe3e7b6ad7bc3ad7084da4 (patch)
tree4dd76c1d1f49854f56f3b1a5e5594f5bb0d09d2f
parent7c893ba3fa9557402610b80198b1d8cea0249a0c (diff)
comment profile 's' and 'g' view followers/-ing bindings
's' conflicts with translate-toot-at-point. C-c C-c does the job anyway
-rw-r--r--lisp/mastodon-profile.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el
index 56e5fef..ea73b99 100644
--- a/lisp/mastodon-profile.el
+++ b/lisp/mastodon-profile.el
@@ -82,8 +82,11 @@
(defvar mastodon-profile-mode-map
(let ((map (make-sparse-keymap)))
- (define-key map (kbd "s") #'mastodon-profile--open-followers)
- (define-key map (kbd "g") #'mastodon-profile--open-following)
+ ;; conflicts with `s' keybinding to translate toot at point
+ ;; seeing as we now have the C-c C-c cycle functionality,
+ ;; maybe we can retire both of these awful bindings
+ ;; (define-key map (kbd "s") #'mastodon-profile--open-followers)
+ ;; (define-key map (kbd "g") #'mastodon-profile--open-following)
(define-key map (kbd "C-c C-c") #'mastodon-profile-account-view-cycle)
map)
"Keymap for `mastodon-profile-mode'.")