2019-10-27 17:04:31 +01:00
|
|
|
package d
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Diff lexer.
|
2021-04-28 18:35:32 +02:00
|
|
|
var Diff = internal.Register(MustNewLazyLexer(
|
2019-10-27 17:04:31 +01:00
|
|
|
&Config{
|
|
|
|
Name: "Diff",
|
|
|
|
Aliases: []string{"diff", "udiff"},
|
|
|
|
EnsureNL: true,
|
|
|
|
Filenames: []string{"*.diff", "*.patch"},
|
|
|
|
MimeTypes: []string{"text/x-diff", "text/x-patch"},
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
diffRules,
|
|
|
|
))
|
|
|
|
|
|
|
|
func diffRules() Rules {
|
|
|
|
return Rules{
|
2019-10-27 17:04:31 +01:00
|
|
|
"root": {
|
|
|
|
{` .*\n`, Text, nil},
|
|
|
|
{`\+.*\n`, GenericInserted, nil},
|
|
|
|
{`-.*\n`, GenericDeleted, nil},
|
|
|
|
{`!.*\n`, GenericStrong, nil},
|
|
|
|
{`@.*\n`, GenericSubheading, nil},
|
|
|
|
{`([Ii]ndex|diff).*\n`, GenericHeading, nil},
|
|
|
|
{`=.*\n`, GenericHeading, nil},
|
|
|
|
{`.*\n`, Text, nil},
|
|
|
|
},
|
2021-04-28 18:35:32 +02:00
|
|
|
}
|
|
|
|
}
|