diff options
-rw-r--r-- | lisp/mastodon-discover.el | 3 | ||||
-rw-r--r-- | lisp/mastodon.el | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/lisp/mastodon-discover.el b/lisp/mastodon-discover.el index 57c4bd1..c1d28f3 100644 --- a/lisp/mastodon-discover.el +++ b/lisp/mastodon-discover.el @@ -79,7 +79,8 @@ ("Views" ("h/?" "View mode help/keybindings" describe-mode) ("#" "Tag search" mastodon-tl--get-tag-timeline) - (":" "List followed tags" mastodon-tl--list-followed-tags) + ("\"" "List followed tags" mastodon-tl--list-followed-tags) + ("'" "Followed tags timeline" mastodon-tl--followed-tags-timeline) ("F" "Federated" mastodon-tl--get-federated-timeline) ("H" "Home" mastodon-tl--get-home-timeline) ("L" "Local" mastodon-tl--get-local-timeline) diff --git a/lisp/mastodon.el b/lisp/mastodon.el index a76bdf1..a991726 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -155,8 +155,8 @@ Use. e.g. \"%c\" for your locale's date and time format." (define-key map (kbd "l") #'recenter-top-bottom) ;; navigation between timelines (define-key map (kbd "#") #'mastodon-tl--get-tag-timeline) - (define-key map (kbd ":") #'mastodon-tl--list-followed-tags) - (define-key map (kbd "C-:") #'mastodon-tl--followed-tags-timeline) + (define-key map (kbd "\"") #'mastodon-tl--list-followed-tags) + (define-key map (kbd "'") #'mastodon-tl--followed-tags-timeline) (define-key map (kbd "A") #'mastodon-profile--get-toot-author) (define-key map (kbd "F") #'mastodon-tl--get-federated-timeline) (define-key map (kbd "H") #'mastodon-tl--get-home-timeline) |