Add some possible TODO items
This commit is contained in:
parent
333b6dbc27
commit
0276b1bfca
|
@ -7,6 +7,11 @@ import (
|
||||||
"golang.org/x/sys/unix"
|
"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 {
|
type Display struct {
|
||||||
a *aurora.Aurora
|
a *aurora.Aurora
|
||||||
}
|
}
|
||||||
|
|
3
main.go
3
main.go
|
@ -16,7 +16,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// TODO:
|
// 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() {
|
func main() {
|
||||||
if err := rootCmd.Execute(); err != nil {
|
if err := rootCmd.Execute(); err != nil {
|
||||||
|
|
Loading…
Reference in New Issue