From 48f6f77cbffcdf8bfdc4ad6bb23d6e3dd7d67dda Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Sun, 7 Aug 2022 20:52:18 +0200 Subject: Revert "profile - small cleanup of fields-insert" This reverts commit 7b51ffda41dbf40ed5c5830b4911c5a6cab68d4d. --- lisp/mastodon-profile.el | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'lisp') diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index 0ac1c04..260c2d3 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -267,15 +267,23 @@ Returns a list of lists." (defun mastodon-profile--fields-insert (fields) "Format and insert field pairs (a.k.a profile metadata) in FIELDS." (let* ((car-fields (mapcar 'car fields)) + ;; (cdr-fields (mapcar 'cadr fields)) + ;; (cdr-fields-rendered + ;; (list + ;; (mapcar (lambda (x) + ;; (mastodon-tl--render-text x nil)) + ;; cdr-fields))) (left-width (car (sort (mapcar 'length car-fields) '>)))) ;; (right-width (car (sort (mapcar 'length cdr-fields) '>)))) (mapconcat (lambda (field) (mastodon-tl--render-text (concat - (format "_ '%-54s " (car field)) - ;; (make-string (- (+ 1 left-width) (length (car field))) ?_) + (format "_ %s " (car field)) + (make-string (- (+ 1 left-width) (length (car field))) ?_) (format " :: %s" (cadr field))) - field)) ; hack to make links tabstops + ;; (make-string (- (+ 1 right-width) (length (cdr field))) ?_) + ;; " |") + field)) ; nil)) ; hack to make links tabstops fields ""))) (defun mastodon-profile--get-statuses-pinned (account) -- cgit v1.2.3