diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-04 17:51:23 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-04 18:12:16 -0200 |
commit | 707cb9f97ea9ff6e6f7b135d24a0e2e7b0f99740 (patch) | |
tree | aa742567a4cc7d2b961da6b54898615fea5b261c | |
parent | 63484071c93bb3b9d661ed98a77a29e587b456e7 (diff) |
Set tag max-width to 40
-rw-r--r-- | sx-question-list.el | 4 |
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"))))))) |