diff options
Diffstat (limited to 'vendor/github.com/alecthomas/chroma/lexers/o/octave.go')
-rw-r--r-- | vendor/github.com/alecthomas/chroma/lexers/o/octave.go | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/vendor/github.com/alecthomas/chroma/lexers/o/octave.go b/vendor/github.com/alecthomas/chroma/lexers/o/octave.go index c23b586f23..99fe298c7a 100644 --- a/vendor/github.com/alecthomas/chroma/lexers/o/octave.go +++ b/vendor/github.com/alecthomas/chroma/lexers/o/octave.go @@ -6,14 +6,18 @@ import ( ) // Octave lexer. -var Octave = internal.Register(MustNewLexer( +var Octave = internal.Register(MustNewLazyLexer( &Config{ Name: "Octave", Aliases: []string{"octave"}, Filenames: []string{"*.m"}, MimeTypes: []string{"text/octave"}, }, - Rules{ + octaveRules, +)) + +func octaveRules() Rules { + return Rules{ "root": { {`[%#].*$`, Comment, nil}, {`^\s*function`, Keyword, Push("deffunc")}, @@ -42,5 +46,5 @@ var Octave = internal.Register(MustNewLexer( {`(\s*)(?:(.+)(\s*)(=)(\s*))?(.+)(\()(.*)(\))(\s*)`, ByGroups(TextWhitespace, Text, TextWhitespace, Punctuation, TextWhitespace, NameFunction, Punctuation, Text, Punctuation, TextWhitespace), Pop(1)}, {`(\s*)([a-zA-Z_]\w*)`, ByGroups(Text, NameFunction), Pop(1)}, }, - }, -)) + } +} |