[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/mastodon 16340dbef1 23/47: add user id to user item insert
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/mastodon 16340dbef1 23/47: add user id to user item inserting, for pagination |
Date: |
Fri, 13 Oct 2023 19:00:56 -0400 (EDT) |
branch: elpa/mastodon
commit 16340dbef16de36cb1aff10d78723bdb0652f03b
Author: marty hiatt <martianhiatus [a t] riseup [d o t] net>
Commit: marty hiatt <martianhiatus [a t] riseup [d o t] net>
add user id to user item inserting, for pagination
---
lisp/mastodon-search.el | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/lisp/mastodon-search.el b/lisp/mastodon-search.el
index bba816ff85..5b94132820 100644
--- a/lisp/mastodon-search.el
+++ b/lisp/mastodon-search.el
@@ -245,21 +245,22 @@ user's profile note. This is also called by
(defun mastodon-search--propertize-user (acct &optional note)
"Propertize display string for ACCT, optionally including profile NOTE."
- (let ((user (mastodon-search--get-user-info acct)))
+ (let* ((user (mastodon-search--get-user-info acct))
+ (id (alist-get 'id acct)))
(propertize
(concat
(propertize (car user)
'face 'mastodon-display-name-face
'byline t
- 'toot-id "0")
+ 'toot-id id) ; for prev/next nav
" : \n : "
(propertize (concat "@" (cadr user))
'face 'mastodon-handle-face
'mouse-face 'highlight
- 'mastodon-tab-stop 'user-handle
- 'keymap mastodon-tl--link-keymap
+ 'mastodon-tab-stop 'user-handle
+ 'keymap mastodon-tl--link-keymap
'mastodon-handle (concat "@" (cadr user))
- 'help-echo (concat "Browse user profile of @" (cadr
user)))
+ 'help-echo (concat "Browse user profile of @" (cadr user)))
" : \n"
(if note
(mastodon-tl--render-text (cadddr user) acct)
- [nongnu] elpa/mastodon 6691dab7aa 04/47: handle search type buffers in buffer-type, (continued)
- [nongnu] elpa/mastodon 6691dab7aa 04/47: handle search type buffers in buffer-type, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 2cd8a9a38f 08/47: profile:message cycle binding, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 2a5700a46e 13/47: http: build query str only when we have a value, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 869917a0e7 09/47: rough account statuses search, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon ab62022b50 15/47: implement following "accounts" search. FIX #493., ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 3e0badc4af 17/47: also message profile search binding, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 433a938c50 22/47: hack to avoid repeat of last search status on calling --more*, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 9bbcc60818 45/47: search headings even if no results, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 8c9f827d12 21/47: tl--more*: add cond to handle search data if in search buffer, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 1b888da280 01/47: readme re friendica, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 16340dbef1 23/47: add user id to user item inserting, for pagination,
ELPA Syncer <=
- [nongnu] elpa/mastodon ce30985860 41/47: fix offset pagination for hashtags search, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon f7526642d3 39/47: add fun mastodon-buffer-p, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 57d0f9f362 43/47: bump, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 2c9a1f7417 05/47: rework search into three separate views with view cycling on C-c C-c, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 41f814cc44 31/47: improve processing for trending-statuses, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon accd94eea7 34/47: add offset/limit params to search queries/buf spec, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 3c3ea71707 03/47: masto-url-p -> fedi-url-p, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 75f07afa41 11/47: sub command keys for profile / search msg, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon d0d4188bf9 20/47: add update function to search buf spec: --timeline, ELPA Syncer, 2023/10/13
- [nongnu] elpa/mastodon 4b8ed3bf04 28/47: update profile note: subst cmd keys, ELPA Syncer, 2023/10/13