2018-03-19 17:08:44 +01:00
|
|
|
package x
|
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
|
|
|
)
|
|
|
|
|
|
|
|
// Xorg lexer.
|
2018-03-19 17:08:44 +01:00
|
|
|
var Xorg = internal.Register(MustNewLexer(
|
2017-10-22 05:37:38 +02:00
|
|
|
&Config{
|
|
|
|
Name: "Xorg",
|
|
|
|
Aliases: []string{"xorg.conf"},
|
|
|
|
Filenames: []string{"xorg.conf"},
|
|
|
|
MimeTypes: []string{},
|
|
|
|
},
|
|
|
|
Rules{
|
|
|
|
"root": {
|
|
|
|
{`\s+`, TextWhitespace, nil},
|
|
|
|
{`#.*$`, Comment, nil},
|
|
|
|
{`((|Sub)Section)(\s+)("\w+")`, ByGroups(KeywordNamespace, LiteralStringEscape, TextWhitespace, LiteralStringEscape), nil},
|
|
|
|
{`(End(|Sub)Section)`, KeywordNamespace, nil},
|
|
|
|
{`(\w+)(\s+)([^\n#]+)`, ByGroups(NameKeyword, TextWhitespace, LiteralString), nil},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
))
|