Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-07-08 | Renamed Textadept module's "mime_types" to "file_types" and removed config file. | ||
2013-07-08 | Renamed "language-specific" modules to just "language modules" in documentation. | ||
2013-06-24 | Removed `_G.RESETTING`; test for `arg` instead. | ||
2013-06-21 | Always emit `events.LANGUAGE_MODULE_LOADED`; modules/textadept/mime_types.lua | ||
Creates an empty language-specific module if none exists. This enables users to add keys and snippets for any lexer without an existing language-specific module. It also allows themes to override styles for any lexer. | |||
2013-06-12 | Removed `_LEXERPATH`. | ||
2013-05-15 | Set language-specific buffer properties through an event instead of a function. | ||
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-26 | Handle new "lexer/current" format from LPeg lexer's API change. | ||
Also refactored modules/textadept/mime_types.lua. Requires Scintillua r357. | |||
2013-04-25 | Code and documentation cleanup. | ||
2013-01-20 | Updated copyright date. | ||
2012-12-15 | Greatly improve speed when loading large files; modules/textadept/mime_types.lua | ||
2012-11-20 | Be consistent with regard to "caret" vs. "current position". | ||
2012-11-19 | Rewrote LuaDoc. | ||
2012-10-29 | Updated documentation formatting. | ||
Pathnames and filenames are italic and be more consistent with constant width text. | |||
2012-10-08 | Use '@field' LuaDoc for events defined in modules. | ||
2012-09-18 | Use 'text' plain text lexer instead of 'container'. | ||
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-07-21 | Converted some `buffer` "get" and "set" functions into properties. | ||
Also updated to Scintilla 3.2.1. | |||
2012-03-16 | Moved "Markdown:" comments into module LuaDoc comments. | ||
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-03-04 | `_M.set_buffer_properties()` is now optional; modules/textadept/mime_types.lua | ||
2012-02-10 | Update LuaDoc with new formatting. | ||
2012-01-06 | Updated copyright information. | ||
2012-01-05 | Rename '_m' to '_M'. | ||
2012-01-01 | Code cleanup. | ||
2011-12-31 | Changed 'locale.localize()' to global '_L' table. | ||
2011-12-13 | Remove 'package.seeall' from LuaDoc comments. | ||
2011-12-12 | Remove 'module' and update LuaDoc comments appropriately. | ||
2011-09-27 | Reformatted some LuaDoc. | ||
2011-09-26 | Lua code cleanup. | ||
2011-09-25 | Refactored textadept.c and changed Lua interface a bit. | ||
'_BUFFERS' and '_VIEWS' now also have buffer and view keys with index values; 'buffer.doc_pointer', 'view.doc_pointer', and 'gui.focused_doc_pointer' are no longer used; 'buffer:check_global()' replaces 'gui.check_focused_buffer()'; Added 'view.buffer' field; 'view:goto_buffer()' and 'gui.goto_view()' arguments changed to make more sense. | |||
2011-06-24 | Removed '_G' prefix from globals where necessary. | ||
2011-06-23 | Use string constants for event names. | ||
2011-04-20 | Fixed bug in buffer:get_lexer(); modules/textadept/mime_types.lua | ||
2011-03-17 | Performance and speed improvements. | ||
2011-03-14 | get_lexer(true) returns the lexer at the caret; modules/textadept/mime_types.lua | ||
2011-03-14 | get_lexer() returns the lexer at the caret; modules/textadept/mime_types.lua | ||
This method is not 100% accurate, but will work for most cases. | |||
2011-03-09 | Try to determine lexer by file extension last; modules/textadept/mime_types.lua | ||
2011-03-07 | Load a post_init.lua script for language-specific module extensions. | ||
2011-01-23 | Allow language-specific char_matches and braces for _m.textadept.editing. | ||
Thanks to Robert Gieseke. | |||
2011-01-23 | Fixed problem with trailing '/'s in Win32; modules/textadept/mime_types.lua | ||
2011-01-21 | Code cleanup. | ||
2011-01-19 | Added gui.filteredlist() shortcut function for gui.dialog('filteredlist', ...). | ||
2011-01-18 | Emit an event after loading a language module; modules/textadept/mime_types.lua | ||
2011-01-13 | More informative check_focused_buffer() error message. | ||
2010-12-28 | Updated copyright information. | ||
2010-11-30 | New manual. | ||
2010-11-23 | Code cleanup. | ||
Also modified the editing module's enclose() and select_enclosed() functions. | |||
2010-11-15 | LuaDoc cleanup. | ||