aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus@riseup.net>2024-06-04 15:46:26 +0200
committermarty hiatt <martianhiatus@riseup.net>2024-06-04 15:46:26 +0200
commitb743ca81fcd1883d9ac80daf5ec151b2fd7e94b6 (patch)
tree51949505a2bbfddb6ebc749f0a4611f620bf11a4 /lisp
parent7c7f02b5b4211913324c5a1d18528f6533513830 (diff)
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.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mastodon-tl.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 5ad5e69..62e4c81 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)