aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authormousebot <mousebot@riseup.net>2021-12-20 20:28:13 +0100
committermousebot <mousebot@riseup.net>2021-12-20 20:28:13 +0100
commitcb920113ac0cd7b8b57b7936432e7d0805401441 (patch)
treeb3abbe93ae06a3f54985897a959bbc15ce469617 /lisp
parentfff33fa9206864f3bfc80f7725d76eecf074aaaa (diff)
remove old comments
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mastodon-profile.el7
1 files changed, 1 insertions, 6 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el
index d98d24c..ec9adaa 100644
--- a/lisp/mastodon-profile.el
+++ b/lisp/mastodon-profile.el
@@ -66,7 +66,6 @@
(defvar-local mastodon-profile--account nil
"The data for the account being described in the current profile buffer.")
-;; this way you can update it with C-M-x:
(defvar mastodon-profile-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "s") #'mastodon-profile--open-followers)
@@ -82,13 +81,9 @@
This minor mode is used for mastodon profile pages and adds a couple of
extra keybindings."
:init-value nil
- ;; The mode line indicator.
+ ;; modeline indicator:
:lighter " Profile"
:keymap mastodon-profile-mode-map
- ;; :keymap '(((kbd "O") . mastodon-profile--open-followers)
- ;; ((kbd "o") . mastodon-profile--open-following)
- ;; ((kbd "a") . mastodon-profile--follow-request-accept)
- ;; ((kbd "r") . mastodon-profile--follow-request-reject)
:group 'mastodon
:global nil)