28 lines
591 B
Go
28 lines
591 B
Go
|
package b
|
||
|
|
||
|
import (
|
||
|
. "github.com/alecthomas/chroma" // nolint
|
||
|
"github.com/alecthomas/chroma/lexers/internal"
|
||
|
)
|
||
|
|
||
|
// BashSession lexer.
|
||
|
var BashSession = internal.Register(MustNewLazyLexer(
|
||
|
&Config{
|
||
|
Name: "BashSession",
|
||
|
Aliases: []string{"bash-session", "console", "shell-session"},
|
||
|
Filenames: []string{".sh-session"},
|
||
|
MimeTypes: []string{"text/x-sh"},
|
||
|
EnsureNL: true,
|
||
|
},
|
||
|
bashsessionRules,
|
||
|
))
|
||
|
|
||
|
func bashsessionRules() Rules {
|
||
|
return Rules{
|
||
|
"root": {
|
||
|
{`(^[#$%>]\s*)(.*\n?)`, ByGroups(GenericPrompt, Using(Bash)), nil},
|
||
|
{`^.+\n?`, GenericOutput, nil},
|
||
|
},
|
||
|
}
|
||
|
}
|