aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-profile.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-10-12 19:25:58 +0200
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-10-12 19:25:58 +0200
commit75f07afa41a75bd94d4867350b0e425bf3b2e978 (patch)
tree39273a2236eac776f4e1573be7441ee82d19f7d7 /lisp/mastodon-profile.el
parent9d2a85b36d8d32a0ac5dcecc7cfd1223bf908056 (diff)
sub command keys for profile / search msg
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r--lisp/mastodon-profile.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el
index 56a7b49..6d5d92d 100644
--- a/lisp/mastodon-profile.el
+++ b/lisp/mastodon-profile.el
@@ -662,7 +662,10 @@ HEADERS means also fetch link headers for pagination."
(setq mastodon-tl--update-point (point))) ; updates after pinned toots
(funcall update-function json)))
(goto-char (point-min))
- (message "`C-c' `C-c' to cycle profile views."))))
+ (message
+ (substitute-command-keys
+ ;; "\\[mastodon-profile--account-view-cycle]" ; not always bound?
+ "\\`C-c C-c' to cycle profile views: toots, followers, following.")))))
(defun mastodon-profile--format-joined-date-string (joined)
"Format a human-readable Joined string from timestamp JOINED.
@@ -708,8 +711,7 @@ IMG-TYPE is the JSON key from the account data."
(if account
(progn
(message "Loading profile of user %s..." user-handle)
- (mastodon-profile--make-author-buffer account)
- (message "'C-c C-c' to cycle profile views: toots, followers, following"))
+ (mastodon-profile--make-author-buffer account))
(message "Cannot find a user with handle %S" user-handle)))))
(defun mastodon-profile--my-profile ()