mirror of
https://github.com/cheat/cheat.git
synced 2026-03-07 11:13:33 +01:00
chore(deps): bump chroma to v2 #735
Bump `alecthomas/chroma` to `v2`: https://github.com/cheat/cheat/issues/735
This commit is contained in:
24
vendor/github.com/alecthomas/chroma/v2/lexers/zed.go
generated
vendored
Normal file
24
vendor/github.com/alecthomas/chroma/v2/lexers/zed.go
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
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
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user