First commit

This commit is contained in:
2024-08-09 19:20:42 -05:00
commit 025ec775ca
14 changed files with 543 additions and 0 deletions

10
regcolor.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import "regexp"
// A regColor is a regex-color pair. The config file is read
// into a stack of this data type.
type regColor struct {
re *regexp.Regexp
clr color
}