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

18 lines
335 B
Go

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