1
0
Fork 0
gilo/editor/highlight/fn.go

13 lines
192 B
Go
Raw Normal View History

package highlight
2021-04-07 13:10:40 -04:00
import "timshome.page/gilo/terminal"
func SyntaxToColor(hl int) string {
switch hl {
case Number:
return terminal.FGRed
default:
return terminal.DefaultFGColor
}
}