diff options
Diffstat (limited to 'vendor/github.com/alecthomas/chroma/v2/lexers/zed.go')
| -rw-r--r-- | vendor/github.com/alecthomas/chroma/v2/lexers/zed.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/vendor/github.com/alecthomas/chroma/v2/lexers/zed.go b/vendor/github.com/alecthomas/chroma/v2/lexers/zed.go new file mode 100644 index 0000000..aadc80f --- /dev/null +++ b/vendor/github.com/alecthomas/chroma/v2/lexers/zed.go @@ -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 + }) +} |
