2018-03-19 17:08:44 +01:00
|
|
|
package p
|
2017-10-22 05:37:38 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/alecthomas/chroma" // nolint
|
2018-03-19 17:08:44 +01:00
|
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
2017-10-22 05:37:38 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Pacmanconf lexer.
|
2021-08-04 20:11:59 +02:00
|
|
|
var Pacmanconf = internal.Register(MustNewLazyLexer(
|
2017-10-22 05:37:38 +02:00
|
|
|
&Config{
|
|
|
|
Name: "PacmanConf",
|
|
|
|
Aliases: []string{"pacmanconf"},
|
|
|
|
Filenames: []string{"pacman.conf"},
|
|
|
|
MimeTypes: []string{},
|
|
|
|
},
|
2021-08-04 20:11:59 +02:00
|
|
|
pacmanconfRules,
|
|
|
|
))
|
|
|
|
|
|
|
|
func pacmanconfRules() Rules {
|
|
|
|
return Rules{
|
2017-10-22 05:37:38 +02:00
|
|
|
"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},
|
|
|
|
},
|
2021-08-04 20:11:59 +02:00
|
|
|
}
|
|
|
|
}
|