diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-04-21 23:01:07 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-04-21 23:01:07 +0200 |
commit | 28e418cbbf8bfa3b600a8bf53361b93e2b8d9f3b (patch) | |
tree | 769c13b8646d0aa42381bab4e2b056b39e99c7d8 /lisp | |
parent | f02c09e768feaf142db587c79006299205dd4818 (diff) |
add horiz bar to follow suggests/reqs
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mastodon-search.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mastodon-search.el b/lisp/mastodon-search.el index 9b3641b..8cfa3cb 100644 --- a/lisp/mastodon-search.el +++ b/lisp/mastodon-search.el @@ -191,7 +191,9 @@ user's profile note. This is also called by `mastodon-tl--get-follow-suggestions' and `mastodon-profile--insert-follow-requests'." (mapc (lambda (acct) - (insert (mastodon-search--propertize-user acct note))) + (insert (concat (mastodon-search--propertize-user acct note) + mastodon-tl--horiz-bar + "\n\n"))) json)) (defun mastodon-search--propertize-user (acct &optional note) |