aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorLibravatar Fabian Kirchner <kirchner@posteo.de>2023-10-13 20:14:58 +0200
committerLibravatar Fabian Kirchner <kirchner@posteo.de>2023-10-13 20:14:58 +0200
commit7fcaeb29bfb87c82468df2ec1cea1c70f96aedff (patch)
tree18dca6cecc93ddc74c18181d985c519c31573220 /app
parent1e8edfde87c76f1f599b3a89d4542542fd17c39c (diff)
print tags like they are written
Diffstat (limited to 'app')
-rw-r--r--app/Main.hs5
1 files changed, 1 insertions, 4 deletions
diff --git a/app/Main.hs b/app/Main.hs
index 0cb5036..d69530f 100644
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -171,10 +171,7 @@ main = do
map
( \(I.Tag k v) ->
P.annotate (P.colorDull P.Yellow) $
- -- TODO print tags like they are written
- --
- -- i.e. without colon (`:`)
- P.pretty ("@" `T.append` k `T.append` ":" `T.append` v)
+ P.pretty ("@" `T.append` k `T.append` " " `T.append` v)
)
( issue.tags
++ if internalTags then issue.internalTags else []