aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-search.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/mastodon-search.el')
-rw-r--r--lisp/mastodon-search.el16
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/mastodon-search.el b/lisp/mastodon-search.el
index b5900c7..3555238 100644
--- a/lisp/mastodon-search.el
+++ b/lisp/mastodon-search.el
@@ -97,9 +97,9 @@ QUERY is the string to search."
nil)
;; hashtag results:
(insert (mastodon-tl--set-face
- (concat "\n ------------\n"
+ (concat "\n " mastodon-tl--horiz-bar "\n"
" TRENDING HASHTAGS\n"
- " ------------\n\n")
+ " " mastodon-tl--horiz-bar "\n\n")
'success))
(mastodon-search--print-tags-list tags)))))
@@ -135,23 +135,23 @@ QUERY is the string to search."
nil)
;; user results:
(insert (mastodon-tl--set-face
- (concat "\n ------------\n"
+ (concat "\n " mastodon-tl--horiz-bar "\n"
" USERS\n"
- " ------------\n\n")
+ " " mastodon-tl--horiz-bar "\n\n")
'success))
(mastodon-search--insert-users-propertized accts :note)
;; hashtag results:
(insert (mastodon-tl--set-face
- (concat "\n ------------\n"
+ (concat "\n " mastodon-tl--horiz-bar "\n"
" HASHTAGS\n"
- " ------------\n\n")
+ " " mastodon-tl--horiz-bar "\n\n")
'success))
(mastodon-search--print-tags-list tags-list)
;; status results:
(insert (mastodon-tl--set-face
- (concat "\n ------------\n"
+ (concat "\n " mastodon-tl--horiz-bar "\n"
" STATUSES\n"
- " ------------\n")
+ " " mastodon-tl--horiz-bar "\n")
'success))
(mapc #'mastodon-tl--toot toots-list-json)
(goto-char (point-min))))))