cheat/vendor/github.com/alecthomas/chroma/lexers/i/ini.go

30 lines
704 B
Go
Raw Normal View History

2019-10-27 17:04:31 +01:00
package i
import (
. "github.com/alecthomas/chroma" // nolint
"github.com/alecthomas/chroma/lexers/internal"
)
// Ini lexer.
var Ini = internal.Register(MustNewLazyLexer(
2019-10-27 17:04:31 +01:00
&Config{
Name: "INI",
Aliases: []string{"ini", "cfg", "dosini"},
2020-08-08 16:29:29 +02:00
Filenames: []string{"*.ini", "*.cfg", "*.inf", ".gitconfig", ".editorconfig"},
2019-10-27 17:04:31 +01:00
MimeTypes: []string{"text/x-ini", "text/inf"},
},
iniRules,
))
func iniRules() Rules {
return Rules{
2019-10-27 17:04:31 +01:00
"root": {
{`\s+`, Text, nil},
{`[;#].*`, CommentSingle, nil},
{`\[.*?\]$`, Keyword, nil},
{`(.*?)([ \t]*)(=)([ \t]*)(.*(?:\n[ \t].+)*)`, ByGroups(NameAttribute, Text, Operator, Text, LiteralString), nil},
{`(.+?)$`, NameAttribute, nil},
},
}
}