gilo/editor/highlight/constants.go

17 lines
326 B
Go
Raw Normal View History

package highlight
// ----------------------------------------------------------------------------
// !Syntax Highlighting Constants
// ----------------------------------------------------------------------------
const (
Normal = iota
2023-10-04 14:22:51 -04:00
String
Number
Match
2021-04-07 12:32:57 -04:00
)
2023-10-04 14:22:51 -04:00
const (
HighlightNumbers = 1 << 0
HighlightStrings = 1 << 1
)