Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-10-22 | Do not call snippet functions by mistake; modules/textadept/snippets.lua | ||
2015-10-22 | Snippets can now be functions that return text; modules/textadept/snippets.lua | ||
Also fixed a small bug and documentation. | |||
2015-10-20 | Tabbing through a choice should autocomplete it; modules/textadept/snippets.lua | ||
2015-10-20 | Added snippet choice placeholders; modules/textadept/snippets.lua | ||
2015-10-12 | Do not interpret `%n</...>` as transforms; modules/textadept/snippets.lua | ||
They are often seen in XML snippets and escaping would be tedious. | |||
2015-10-07 | Fixed potential bug in UPDATE_UI handler; modules/textadept/snippets.lua | ||
It's possible for the `updated` parameter to be `nil`; handle it. | |||
2015-10-07 | Fixed '%' escape sequences in snippets; modules/textadept/snippets.lua | ||
2015-09-18 | Refactored snippets to use indicators instead of ugly placeholder text. | ||
2015-03-16 | Code cleanup based on the output of luacheck, a Lua linter. | ||
2015-03-12 | Lua code cleanup. | ||
2015-03-11 | Updated to Lua 5.3, LPeg 0.12.2, and lfs 1.6.3. | ||
LuaJIT uses Lua 5.3's new utf8 library. Restored documentation for Lua 5.1 symbols and added deprecation notes. | |||
2015-03-09 | Updated to Scintilla 3.5.4. | ||
2015-01-29 | Fixed snippets bug when name matches lexer name; modules/textadept/snippets.lua | ||
Ensure the result of snippets[name] is not a table. | |||
2014-12-31 | Updated copyright year. | ||
2014-09-16 | Updated some LuaDoc. | ||
2014-06-30 | Condensed manual and API documentation into single files. | ||
2014-06-12 | Lua code cleanup. | ||
2014-01-12 | Updated copyright information. | ||
2013-12-12 | More LuaDoc updates. | ||
2013-11-10 | Updated LuaDoc. | ||
2013-10-18 | More LuaDoc updates. | ||
2013-09-29 | Added new `ui.dialogs` module for more user-friendly dialog support. | ||
As a result, removed `ui.filteredlist()` and changed `io.open_file()` and `io.snapopen()` APIs to accept tables of files and paths instead of "\n" delimited strings. | |||
2013-09-16 | Removed the `SC_` prefix from constants in `_SCINTILLA.constants`. | ||
Also removed more unused constants. | |||
2013-09-06 | Updated LuaDoc. | ||
2013-08-31 | Allow user scripts to handle `BUFFER_NEW` and `VIEW_NEW` events on startup. | ||
A side effect is more efficient event emission during startup. | |||
2013-08-26 | Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now. | ||
2013-08-26 | Renamed `gui` to `ui` since it's more applicable. | ||
2013-08-24 | Include Scintilla constants in `buffer`s. | ||
2013-08-11 | Fixed some documentation typos. | ||
2013-08-10 | Updated some documentation. | ||
2013-05-26 | Rewrote some LuaDoc to use the active voice. | ||
2013-04-29 | More code cleanup. | ||
"local buffer = buffer" and similar optimizations are not needed since lexing the buffer is much more expensive and reaction time is limited by how fast the keyboard can submit key presses. | |||
2013-04-03 | Textadept should support multiple curses platforms; remove ncurses references. | ||
Requires Scintilla r4436 and Scinterm r45. | |||
2013-01-20 | Updated copyright date. | ||
2012-12-01 | Updated parameter LuaDoc. | ||
2012-11-19 | Rewrote LuaDoc. | ||
2012-11-19 | Changed Lua code style for tables. | ||
2012-10-29 | Updated documentation formatting. | ||
Pathnames and filenames are italic and be more consistent with constant width text. | |||
2012-10-02 | Fixed bug introduced by r1260; modules/textadept/snippets.lua | ||
2012-09-12 | Documentation overhaul. | ||
Rewrote most of the manual and Lua API to complement each other. Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc. | |||
2012-06-22 | Resize most filteredlists to fit the ncurses screen. | ||
2012-03-16 | Moved "Markdown:" comments into module LuaDoc comments. | ||
2012-03-14 | Use buffer:get_lexer(true) more often when it should be used. | ||
2012-03-07 | Updated contact email address. | ||
2012-03-07 | Documentation overhaul with Discount (Markdown implementation). | ||
The standard LuaDoc template is no longer used. Instead, the new `scripts/markdowndoc.lua` has the template for LuaDoc and `scripts/update_doc` has the template for the Manual. Also added README, CHANGELOG, and THANKS files. | |||
2012-02-10 | Update LuaDoc with new formatting. | ||
2012-01-06 | Updated copyright information. | ||
2012-01-05 | Rename '_m' to '_M'. | ||
2011-12-31 | Changed 'locale.localize()' to global '_L' table. | ||
2011-12-31 | Code cleanup. | ||