summaryrefslogtreecommitdiffstats
path: root/TreeViewRaw.hs
diff options
context:
space:
mode:
Diffstat (limited to 'TreeViewRaw.hs')
-rw-r--r--TreeViewRaw.hs23
1 files changed, 20 insertions, 3 deletions
diff --git a/TreeViewRaw.hs b/TreeViewRaw.hs
index 52ea966..72e2ba3 100644
--- a/TreeViewRaw.hs
+++ b/TreeViewRaw.hs
@@ -49,13 +49,21 @@ renderTreeView now cur _loc@(Node label children) =
-- TODO locale-style: headerKey = \s -> SGR [..] (s <> ": ")
-searchSGR, focusSGR, boringSGR, dateSGR, tagsSGR, unreadMessageSGR,
- unreadSearchSGR :: Trammel String -> Trammel String
+searchSGR
+ , focusSGR
+ , boringSGR
+ , dateSGR
+ , tagsSGR
+ , unreadMessageSGR
+ , unreadSearchSGR
+ , killedTagSGR
+ :: Trammel String -> Trammel String
searchSGR = SGR [38,5,162]
focusSGR = SGR [38,5,160]
boringSGR = SGR [38,5,240]
dateSGR = SGR [38,5,071]
tagsSGR = SGR [38,5,036]
+killedTagSGR = SGR [38,5,088]
unreadMessageSGR = SGR [38,5,117]
unreadSearchSGR = SGR [38,5,250]
@@ -127,7 +135,16 @@ renderFrom = \case
renderTags :: [Tag] -> Trammel String
renderTags =
- Plain . T.unpack . T.intercalate " " . L.sort
+ -- TODO sort somewhere else
+ mconcat . L.intersperse " " . map renderTag . L.sort
+
+
+renderTag :: Tag -> Trammel String
+renderTag tag = case tag of
+ "killed" -> killedTagSGR plain
+ _ -> plain
+ where
+ plain = Plain $ T.unpack tag
dropAddress :: String -> String