branch: elpa/mastodon commit b743ca81fcd1883d9ac80daf5ec151b2fd7e94b6 Author: marty hiatt <martianhia...@riseup.net> Commit: marty hiatt <martianhia...@riseup.net>
move sensitive binding off C-c C-c. C C is bad in search buffers (it cycles them) and profile buffers (cycling), so if point isn't on image, it does the other action, and being on an image also masks that binding. we go with S instead, which otherwise is just jump to scheduled toots. --- lisp/mastodon-tl.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 5ad5e6946a..62e4c81657 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -292,7 +292,7 @@ types of mastodon links and not just shr.el-generated ones.") ;; keep new my-profile binding; shr 'O' doesn't work here anyway (define-key map (kbd "O") #'mastodon-profile--my-profile) (define-key map (kbd "C") #'mastodon-tl--copy-image-caption) - (define-key map (kbd "C-c C-c") #'mastodon-tl--toggle-sensitive-image) + (define-key map (kbd "S") #'mastodon-tl--toggle-sensitive-image) (define-key map (kbd "<C-return>") #'mastodon-tl--mpv-play-video-at-point) (define-key map (kbd "<mouse-2>") #'mastodon-tl--click-image-or-video) map)