Well, doing "git add ." not from repository's root is a bad idea. Updated chroma dependency, added more languages to syntax highlighting.
		
			
				
	
	
		
			26 lines
		
	
	
		
			639 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			639 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package i
 | |
| 
 | |
| import (
 | |
| 	. "github.com/alecthomas/chroma" // nolint
 | |
| 	"github.com/alecthomas/chroma/lexers/internal"
 | |
| )
 | |
| 
 | |
| // Ini lexer.
 | |
| var Ini = internal.Register(MustNewLexer(
 | |
| 	&Config{
 | |
| 		Name:      "INI",
 | |
| 		Aliases:   []string{"ini", "cfg", "dosini"},
 | |
| 		Filenames: []string{"*.ini", "*.cfg", "*.inf", ".gitconfig"},
 | |
| 		MimeTypes: []string{"text/x-ini", "text/inf"},
 | |
| 	},
 | |
| 	Rules{
 | |
| 		"root": {
 | |
| 			{`\s+`, Text, nil},
 | |
| 			{`[;#].*`, CommentSingle, nil},
 | |
| 			{`\[.*?\]$`, Keyword, nil},
 | |
| 			{`(.*?)([ \t]*)(=)([ \t]*)(.*(?:\n[ \t].+)*)`, ByGroups(NameAttribute, Text, Operator, Text, LiteralString), nil},
 | |
| 			{`(.+?)$`, NameAttribute, nil},
 | |
| 		},
 | |
| 	},
 | |
| ))
 |