aboutsummaryrefslogtreecommitdiff
path: root/sx-question-list.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2015-01-04 17:51:23 -0200
committerArtur Malabarba <bruce.connor.am@gmail.com>2015-01-04 18:12:16 -0200
commit707cb9f97ea9ff6e6f7b135d24a0e2e7b0f99740 (patch)
treeaa742567a4cc7d2b961da6b54898615fea5b261c /sx-question-list.el
parent63484071c93bb3b9d661ed98a77a29e587b456e7 (diff)
Set tag max-width to 40
Diffstat (limited to 'sx-question-list.el')
-rw-r--r--sx-question-list.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/sx-question-list.el b/sx-question-list.el
index ee37fb2..1342e76 100644
--- a/sx-question-list.el
+++ b/sx-question-list.el
@@ -165,7 +165,9 @@ Also see `sx-question-list-refresh'."
sx-question-list-ago-string)
'face 'sx-question-list-date)
" "
- (propertize (mapconcat #'sx-question--tag-format .tags " ")
+ ;; @TODO: Make this width customizable. (Or maybe just make
+ ;; the whole thing customizable)
+ (propertize (format "%-40s" (mapconcat #'sx-question--tag-format .tags " "))
'face 'sx-question-list-tags)
(propertize " " 'display "\n")))))))