gilo/editor/highlight/constants.go
Timothy Warren ee99e553f0
All checks were successful
timw4mail/gilo/pipeline/head This commit looks good
Highlight string literals
2023-10-04 14:22:51 -04:00

17 lines
326 B
Go

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