diff options
author | Mark Reay <mark@reay.net.au> | 2020-01-03 23:08:28 +0000 |
---|---|---|
committer | Mark Reay <mark@reay.net.au> | 2020-01-03 23:08:28 +0000 |
commit | 7f43e72c8ca4555105cd0b97863d3907f7fc62a5 (patch) | |
tree | 2f4e8c73c2dc1b1e54bedda8f54fb3b4d0a3b938 /lexilla/src/Lexilla.cxx | |
parent | b5623cb722b4ba7607979f52d4cf26e8be86f385 (diff) | |
download | scintilla-mirror-7f43e72c8ca4555105cd0b97863d3907f7fc62a5.tar.gz |
Added Raku lexer and style properties and example files
Diffstat (limited to 'lexilla/src/Lexilla.cxx')
-rw-r--r-- | lexilla/src/Lexilla.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lexilla/src/Lexilla.cxx b/lexilla/src/Lexilla.cxx index 1e01598f6..2cc1ed7c9 100644 --- a/lexilla/src/Lexilla.cxx +++ b/lexilla/src/Lexilla.cxx @@ -121,6 +121,7 @@ extern LexerModule lmPS; extern LexerModule lmPureBasic; extern LexerModule lmPython; extern LexerModule lmR; +extern LexerModule lmRaku; extern LexerModule lmREBOL; extern LexerModule lmRegistry; extern LexerModule lmRuby; @@ -263,6 +264,7 @@ void AddEachLexer() { catalogueLexilla.AddLexerModule(&lmPureBasic); catalogueLexilla.AddLexerModule(&lmPython); catalogueLexilla.AddLexerModule(&lmR); + catalogueLexilla.AddLexerModule(&lmRaku); catalogueLexilla.AddLexerModule(&lmREBOL); catalogueLexilla.AddLexerModule(&lmRegistry); catalogueLexilla.AddLexerModule(&lmRuby); |