chroma-markdown/vendor/github.com/alecthomas/chroma/lexers/pacman.go

26 lines
605 B
Go
Raw Normal View History

2017-10-22 05:37:38 +02:00
package lexers
import (
. "github.com/alecthomas/chroma" // nolint
)
// Pacmanconf lexer.
var Pacmanconf = Register(MustNewLexer(
&Config{
Name: "PacmanConf",
Aliases: []string{"pacmanconf"},
Filenames: []string{"pacman.conf"},
MimeTypes: []string{},
},
Rules{
"root": {
{`#.*$`, CommentSingle, nil},
{`^\s*\[.*?\]\s*$`, Keyword, nil},
{`(\w+)(\s*)(=)`, ByGroups(NameAttribute, Text, Operator), nil},
{`^(\s*)(\w+)(\s*)$`, ByGroups(Text, NameAttribute, Text), nil},
{Words(``, `\b`, `$repo`, `$arch`, `%o`, `%u`), NameVariable, nil},
{`.`, Text, nil},
},
},
))