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 | |
parent | b5623cb722b4ba7607979f52d4cf26e8be86f385 (diff) | |
download | scintilla-mirror-7f43e72c8ca4555105cd0b97863d3907f7fc62a5.tar.gz |
Added Raku lexer and style properties and example files
Diffstat (limited to 'lexilla/src')
-rw-r--r-- | lexilla/src/Lexilla.cxx | 2 | ||||
-rw-r--r-- | lexilla/src/deps.mak | 14 | ||||
-rw-r--r-- | lexilla/src/lexilla.mak | 1 | ||||
-rw-r--r-- | lexilla/src/nmdeps.mak | 14 |
4 files changed, 31 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); diff --git a/lexilla/src/deps.mak b/lexilla/src/deps.mak index 4fb265559..ae10b42c4 100644 --- a/lexilla/src/deps.mak +++ b/lexilla/src/deps.mak @@ -1170,6 +1170,20 @@ LexR.o: \ ../../lexlib/StyleContext.h \ ../../lexlib/CharacterSet.h \ ../../lexlib/LexerModule.h +LexRaku.o: \ + ../../lexers/LexRaku.cxx \ + ../../include/ILexer.h \ + ../../include/Sci_Position.h \ + ../../include/Scintilla.h \ + ../../include/SciLexer.h \ + ../../lexlib/WordList.h \ + ../../lexlib/LexAccessor.h \ + ../../lexlib/StyleContext.h \ + ../../lexlib/CharacterSet.h \ + ../../lexlib/CharacterCategory.h \ + ../../lexlib/LexerModule.h \ + ../../lexlib/OptionSet.h \ + ../../lexlib/DefaultLexer.h LexRebol.o: \ ../../lexers/LexRebol.cxx \ ../../include/ILexer.h \ diff --git a/lexilla/src/lexilla.mak b/lexilla/src/lexilla.mak index fd14b9ac3..2a7a839c8 100644 --- a/lexilla/src/lexilla.mak +++ b/lexilla/src/lexilla.mak @@ -143,6 +143,7 @@ LEX_OBJS=\ $(DIR_O)\LexPS.obj \ $(DIR_O)\LexPython.obj \ $(DIR_O)\LexR.obj \ + $(DIR_O)\LexRaku.obj \ $(DIR_O)\LexRebol.obj \ $(DIR_O)\LexRegistry.obj \ $(DIR_O)\LexRuby.obj \ diff --git a/lexilla/src/nmdeps.mak b/lexilla/src/nmdeps.mak index bd56ef9cd..50b7b3a30 100644 --- a/lexilla/src/nmdeps.mak +++ b/lexilla/src/nmdeps.mak @@ -1170,6 +1170,20 @@ $(DIR_O)/LexR.obj: \ ../../lexlib/StyleContext.h \ ../../lexlib/CharacterSet.h \ ../../lexlib/LexerModule.h +$(DIR_O)/LexRaku.obj: \ + ../../lexers/LexRaku.cxx \ + ../../include/ILexer.h \ + ../../include/Sci_Position.h \ + ../../include/Scintilla.h \ + ../../include/SciLexer.h \ + ../../lexlib/WordList.h \ + ../../lexlib/LexAccessor.h \ + ../../lexlib/StyleContext.h \ + ../../lexlib/CharacterSet.h \ + ../../lexlib/CharacterCategory.h \ + ../../lexlib/LexerModule.h \ + ../../lexlib/OptionSet.h \ + ../../lexlib/DefaultLexer.h $(DIR_O)/LexRebol.obj: \ ../../lexers/LexRebol.cxx \ ../../include/ILexer.h \ |