mirror of
https://github.com/cheat/cheat.git
synced 2025-09-02 10:08:30 +02:00
Add vendor files for go build
This commit is contained in:
32
vendor/github.com/alecthomas/chroma/lexers/r/regedit.go
generated
vendored
Normal file
32
vendor/github.com/alecthomas/chroma/lexers/r/regedit.go
generated
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
package r
|
||||
|
||||
import (
|
||||
. "github.com/alecthomas/chroma" // nolint
|
||||
"github.com/alecthomas/chroma/lexers/internal"
|
||||
)
|
||||
|
||||
// Reg lexer.
|
||||
var Reg = internal.Register(MustNewLexer(
|
||||
&Config{
|
||||
Name: "reg",
|
||||
Aliases: []string{"registry"},
|
||||
Filenames: []string{"*.reg"},
|
||||
MimeTypes: []string{"text/x-windows-registry"},
|
||||
},
|
||||
Rules{
|
||||
"root": {
|
||||
{`Windows Registry Editor.*`, Text, nil},
|
||||
{`\s+`, Text, nil},
|
||||
{`[;#].*`, CommentSingle, nil},
|
||||
{`(\[)(-?)(HKEY_[A-Z_]+)(.*?\])$`, ByGroups(Keyword, Operator, NameBuiltin, Keyword), nil},
|
||||
{`("(?:\\"|\\\\|[^"])+")([ \t]*)(=)([ \t]*)`, ByGroups(NameAttribute, Text, Operator, Text), Push("value")},
|
||||
{`(.*?)([ \t]*)(=)([ \t]*)`, ByGroups(NameAttribute, Text, Operator, Text), Push("value")},
|
||||
},
|
||||
"value": {
|
||||
{`-`, Operator, Pop(1)},
|
||||
{`(dword|hex(?:\([0-9a-fA-F]\))?)(:)([0-9a-fA-F,]+)`, ByGroups(NameVariable, Punctuation, LiteralNumber), Pop(1)},
|
||||
{`.+`, LiteralString, Pop(1)},
|
||||
Default(Pop(1)),
|
||||
},
|
||||
},
|
||||
))
|
Reference in New Issue
Block a user