diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-06-11 18:40:03 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-06-11 18:40:03 +0200 |
commit | 961ade55072028055ab7532d5f0976713a0dbe3a (patch) | |
tree | 972645418ba1cb117474fabac14c81a87b5dc7a5 /lisp | |
parent | fc63be8f3f1e8bc9d2097f92bb7b4f28fe07b949 (diff) |
tag bindings on ' and ", not overloading :
Diffstat (limited to 'lisp')
-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) |