From bf5fac97aeec3696bf34434a5b4e085a6ebc70b8 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 21 Oct 2016 14:28:55 +0200 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20show=20empty=20tags,=20discard?= =?UTF-8?q?=20junk?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mowedline/.config/mowedline/init.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mowedline/.config/mowedline/init.org b/mowedline/.config/mowedline/init.org index 5e3d308..623353e 100644 --- a/mowedline/.config/mowedline/init.org +++ b/mowedline/.config/mowedline/init.org @@ -52,9 +52,9 @@ mowedline. (list '(color "#ececec" font "FontAwesome-10" "") (string-append " " (list->string name-list) " "))) ((#\- . _) '((color "#bfbfbf" font "FontAwesome-10" "") " ")) - ((#\. . _) '((color "#969696" font "FontAwesome-10" "") " ")) ((#\: . _) '((color "#969696" font "FontAwesome-10" "") " ")) - ((#\! . _) '((color "#a85454" font "FontAwesome-10" "") " ")))) + ((#\! . _) '((color "#a85454" font "FontAwesome-10" "") " ")) + (_ '()))) (define (tag-list-display tag-list) (map tag-display tag-list))