gilo/editor/highlight/constants.go
Timothy Warren 469679cf6f
Some checks failed
timw4mail/gilo/pipeline/head There was a failure building this commit
Complete step 164 in Chapter 7 of Kilo tutorial
2023-10-04 10:37:47 -04:00

13 lines
288 B
Go

package highlight
// ----------------------------------------------------------------------------
// !Syntax Highlighting Constants
// ----------------------------------------------------------------------------
const (
Normal = iota
Number
Match
)
const HighlightNumbers = (1 << 0)