[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/mastodon 8404082b69 02/52: move scroll up cmd
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/mastodon 8404082b69 02/52: move scroll up cmd |
Date: |
Mon, 30 Oct 2023 16:01:23 -0400 (EDT) |
branch: elpa/mastodon
commit 8404082b696b730b3ee625474ece49f4011e02f2
Author: marty hiatt <martianhiatus [a t] riseup [d o t] net>
Commit: marty hiatt <martianhiatus [a t] riseup [d o t] net>
move scroll up cmd
---
lisp/mastodon-tl.el | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 68147d9b46..62d3d673c8 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -311,6 +311,15 @@ than `switch-to-buffer'."
;;; NAV
+(defun mastodon-tl--scroll-up-command ()
+ "Call `scroll-up-command', loading more toots if necessary.
+If we hit `point-max', call `mastodon-tl--more' then `scroll-up-command'."
+ (interactive)
+ (if (not (equal (point) (point-max)))
+ (scroll-up-command)
+ (mastodon-tl--more)
+ (scroll-up-command)))
+
(defun mastodon-tl--next-tab-item (&optional previous)
"Move to the next interesting item.
This could be the next toot, link, or image; whichever comes first.
@@ -359,15 +368,6 @@ Optionally start from POS."
(mastodon-tl--message-help-echo))
(funcall refresh))))
-(defun mastodon-tl--scroll-up-command ()
- "Call `scroll-up-command', loading more toots if necessary.
-If we hit `point-max', call `mastodon-tl--more' then `scroll-up-command'."
- (interactive)
- (if (not (equal (point) (point-max)))
- (scroll-up-command)
- (mastodon-tl--more)
- (scroll-up-command)))
-
(defun mastodon-tl--goto-next-toot ()
"Jump to next toot header."
(interactive)
- [nongnu] elpa/mastodon 50e9fc677f 06/52: fix pagination for trending tags, (continued)
- [nongnu] elpa/mastodon 50e9fc677f 06/52: fix pagination for trending tags, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon 153b1682d0 07/52: more*: msg when response is nil, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon b078849b53 11/52: implement link-header pagination for foll-reqs, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon a672c056a8 15/52: fix init-sync for notifs-get compat with link-header/get-response, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon dd5a34bb8d 18/52: remove "toots" from more msging, as its now (more) generic, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon d59b8d0f8b 22/52: next-/prev-toot>next-/prev-item, cond-case around pos update call, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon 8eda8fb5fa 24/52: fix rename do-if-item-strict, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon 506ec82941 29/52: tl--prev-toot-id: don't assume our funs return anything., ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon 979f95575a 43/52: note re tags timeline limit number of tags, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon c18aee5421 44/52: request-auth-code: select-enable-clipboard., ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon 8404082b69 02/52: move scroll up cmd,
ELPA Syncer <=
- [nongnu] elpa/mastodon d710763757 05/52: add .elpaignore file, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon f5094f4cb0 09/52: add params arg to init-sync, use limit param for foll_reqs/sugests, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon 574c17c4bd 21/52: toot-id>item-id, toot-json>item-json, item-type for nav, byline still needed, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon 48d362c6d9 37/52: no pagination for lists, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon 1bfcb22043 42/52: note re tags timeline limit number of tags, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon 312573f7ef 10/52: cond for more* pagination woes, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon f8ab918cf2 08/52: partly refactor views function., ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon a169646f8c 28/52: mastodon-toot--own-toot-p: call toot-or-base: we can edit our boosted toots, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon 6d80f5b2d2 12/52: minor-view fixme, ELPA Syncer, 2023/10/30
- [nongnu] elpa/mastodon 9aac053495 20/52: masto views map: use prev/next-toot, not item for n/p, ELPA Syncer, 2023/10/30