mirror of
https://github.com/cheat/cheat.git
synced 2024-11-18 01:40:39 +01:00
1790aec85d
Bump `alecthomas/chroma` to `v2`: https://github.com/cheat/cheat/issues/735
24 lines
495 B
Go
24 lines
495 B
Go
package lexers
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
// Zed lexer.
|
|
func init() { // nolint: gochecknoinits
|
|
Get("Zed").SetAnalyser(func(text string) float32 {
|
|
if strings.Contains(text, "definition ") && strings.Contains(text, "relation ") && strings.Contains(text, "permission ") {
|
|
return 0.9
|
|
}
|
|
if strings.Contains(text, "definition ") {
|
|
return 0.5
|
|
}
|
|
if strings.Contains(text, "relation ") {
|
|
return 0.5
|
|
}
|
|
if strings.Contains(text, "permission ") {
|
|
return 0.25
|
|
}
|
|
return 0.0
|
|
})
|
|
}
|