From 0276b1bfca2d755796b95a085ea575ad08707ff1 Mon Sep 17 00:00:00 2001 From: Laurence Withers Date: Sat, 13 May 2023 12:47:52 +0100 Subject: [PATCH] Add some possible TODO items --- display.go | 5 +++++ main.go | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/display.go b/display.go index ca52888..eeaf8f2 100644 --- a/display.go +++ b/display.go @@ -7,6 +7,11 @@ import ( "golang.org/x/sys/unix" ) +// TODO: +// - bold of escaped output doesn't work. +// - could use direct ANSI codes rather than aurora package. +// - configurable colours. + type Display struct { a *aurora.Aurora } diff --git a/main.go b/main.go index 8cd4f8b..9483c93 100644 --- a/main.go +++ b/main.go @@ -16,7 +16,8 @@ import ( ) // TODO: -// - bold of escaped output doesn't work +// - it would be better to make fixed patterns case insensitive too. +// - configurable defaults for exclude. func main() { if err := rootCmd.Execute(); err != nil {