mirror of
https://github.com/cheat/cheat.git
synced 2025-09-02 18:18:30 +02:00
Add vendor files for go build
This commit is contained in:
30
vendor/github.com/alecthomas/chroma/lexers/l/lighttpd.go
generated
vendored
Normal file
30
vendor/github.com/alecthomas/chroma/lexers/l/lighttpd.go
generated
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
package l
|
||||
|
||||
import (
|
||||
. "github.com/alecthomas/chroma" // nolint
|
||||
"github.com/alecthomas/chroma/lexers/internal"
|
||||
)
|
||||
|
||||
// Lighttpd Configuration File lexer.
|
||||
var Lighttpd = internal.Register(MustNewLexer(
|
||||
&Config{
|
||||
Name: "Lighttpd configuration file",
|
||||
Aliases: []string{"lighty", "lighttpd"},
|
||||
Filenames: []string{},
|
||||
MimeTypes: []string{"text/x-lighttpd-conf"},
|
||||
},
|
||||
Rules{
|
||||
"root": {
|
||||
{`#.*\n`, CommentSingle, nil},
|
||||
{`/\S*`, Name, nil},
|
||||
{`[a-zA-Z._-]+`, Keyword, nil},
|
||||
{`\d+\.\d+\.\d+\.\d+(?:/\d+)?`, LiteralNumber, nil},
|
||||
{`[0-9]+`, LiteralNumber, nil},
|
||||
{`=>|=~|\+=|==|=|\+`, Operator, nil},
|
||||
{`\$[A-Z]+`, NameBuiltin, nil},
|
||||
{`[(){}\[\],]`, Punctuation, nil},
|
||||
{`"([^"\\]*(?:\\.[^"\\]*)*)"`, LiteralStringDouble, nil},
|
||||
{`\s+`, Text, nil},
|
||||
},
|
||||
},
|
||||
))
|
Reference in New Issue
Block a user