aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus@riseup.net>2024-07-30 14:24:10 +0200
committermarty hiatt <martianhiatus@riseup.net>2024-07-30 14:24:10 +0200
commitdd1b0ab77043508623e0bb0e7861beeeb00c8e2f (patch)
treede2c164a7347269afa2290e93df7d4920cce87f6 /lisp
parent3eb1c4f794edcf582c2eed7e2857f1ee01a5c107 (diff)
add mastodon-tl--fold-post
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mastodon-tl.el28
1 files changed, 18 insertions, 10 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index d3a11ed..908a063 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -1566,7 +1566,8 @@ When DOMAIN, force inclusion of user's domain in their handle."
(mastodon-media--inline-images start-pos (point)))))
(defun mastodon-tl--fold-body-maybe (body &optional unfolded)
- "Fold toot BODY if it is very long."
+ "Fold toot BODY if it is very long.
+Folding decided by `mastodon-tl--fold-toots-at-length'."
(if (or unfolded
(eq nil mastodon-tl--fold-toots-at-length)
(length< body mastodon-tl--fold-toots-at-length))
@@ -1581,30 +1582,37 @@ When DOMAIN, force inclusion of user's domain in their handle."
(propertize display
'read-more body))))
-(defun mastodon-tl--unfold-post ()
+(defun mastodon-tl--unfold-post (&optional fold)
"Unfold the toot at point if it is folded (read-more)."
(interactive)
;; if at byline, must search backwards:
(let* ((byline (mastodon-tl--property 'byline :no-move))
(read-more-p (mastodon-tl--find-property-range
'read-more (point) byline)))
- (if (not read-more-p)
+ (if (and (not fold)
+ (not read-more-p))
(user-error "No folded item at point?")
(let* ((inhibit-read-only t)
- (range (mastodon-tl--find-property-range
- 'item-json (point)))
+ (range (mastodon-tl--find-property-range 'item-json (point)))
(toot (mastodon-tl--property 'item-json)))
- ;; `replace-region-contents' is much to slow, our hack from fedi.el
- ;; is much simpler and much faster
+ ;; `replace-region-contents' is much to slow, our hack from fedi.el is
+ ;; much simpler and much faster
(let ((beg (car range))
(end (cdr range)))
(save-excursion
(goto-char beg)
(delete-region beg end)
- (mastodon-tl--toot toot nil nil nil :unfolded))
+ (mastodon-tl--toot toot nil nil nil
+ (when (not fold) :unfolded)))
;; move point to line where text formerly ended:
- (goto-char end)
- (beginning-of-line))))))
+ (unless fold
+ (goto-char end)
+ (beginning-of-line)))))))
+
+(defun mastodon-tl--fold-post ()
+ "Fold post at point, if it is too long."
+ (interactive)
+ (mastodon-tl--unfold-post :fold))
;; from mastodon-alt.el:
(defun mastodon-tl--toot-for-stats (&optional toot)