You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
977 B
32 lines
977 B
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)),
|
|
},
|
|
},
|
|
))
|
|
|