Releases: dail8859/LuaScript
Releases · dail8859/LuaScript
v0.5.0
Changelog:
- More callback events e.g. "OnDoubleClick", "OnModification", "OnStyle"
- Ability to write a custom Lexer
- Better user experience when using the console.
- Highlighting of Scintilla/Notepad++ constants
- Bracket matching
- Automatic indentation
See the documentation.
v0.4.0
Now with 100% more documentation. https://dail8859.github.io/LuaScript/
Enhancements include:
- More event types
- Console GUI tweaks
- More examples
Note: This makes a slight change to the API that may cause errors with scripts using the previous versions. Adding/removing callbacks has slightly changed. Instead of a each callback having a specific function, a string is passed in for the desired event. For example npp.AddOnChar(function(c) ... end)
would become npp.AddEventHandler("OnChar", function(c) ... end)
. See the documentation.