Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-07 | Moved key command manager to core. | ||
2007-10-06 | Added textadept.print function that prints to the error buffer. | ||
2007-10-06 | Added support for "double-click, goto error" in error buffer; core/events.lua | ||
2007-09-27 | Added buffer:reload() function. | ||
2007-09-24 | Updated documentation. | ||
2007-09-23 | Added dynamically defined GTK menus and menubar. | ||
2007-09-19 | Added interactive search documentation; core/ext/pm.lua | ||
2007-09-17 | Added usage documentation; core/ext/pm.lua | ||
2007-09-17 | Added core/._m.lua dummy file. | ||
2007-08-21 | Moved @usage LuaDocs to comment blocks inside the modules. | ||
2007-08-16 | Fixed 'find previous' bug; core/ext/find.lua | ||
Changeset 15 introduced an 'increment' variable that is normally +/-1 for find next and find prev respectively. However instead of adding the increment for find prev, it subtracts it, effectively adding 1 which is not right. | |||
2007-08-15 | Recent files are now tracked and a user list can be shown to open them. | ||
2007-08-15 | Renamed handlers module to events, updated everything to reflect changes. | ||
2007-08-15 | Fixed spelling and grammatical mistakes; core/.buffer.lua | ||
2007-08-14 | Fixed bug in maintaining indentation; core/handlers.lua | ||
Adapted conditionals from SciTE to fix a bug where the caret is sometimes placed incorrectly when trying to maintain indentation. | |||
2007-08-11 | Textadept title also shows full filepath of the open buffer; core/handlers.lua | ||
2007-08-11 | Fixed escapes in replace, added %() sequence; core/ext/find.lua | ||
'%%' is now properly escaped. %() sequence executes Lua code, showing an error dialog if one occured. | |||
2007-08-10 | Renamed textadept.handlers' add_function_to_handler to add_handler_function. | ||
2007-08-10 | Macros can now be recorded, saved, played, browsed, etc. | ||
2007-08-09 | Renamed modules global to _m. | ||
2007-08-09 | Improved completion of buffer functions and properties; core/handlers.lua | ||
Each buffer function or property is matched to prefix before being added to the completion list. | |||
2007-08-09 | Added new LuaDoc, updated existing LuaDoc to be more consistent. | ||
2007-08-09 | 'replace_all' doesn't loop infinitely, 'find' more accurate; core/ext/find.lua | ||
'find' has an additional nowrap parameter that 'replace_all' uses so the latter will not loop indefinately if there are still matches in the document. 'find' also sets search_anchor more appropriately based on context so some matches aren't skipped accidentally. | |||
2007-08-06 | Changed docstatusbar_text and improved command completion; core/handlers.lua | ||
docstatusbar_text now uses 4 spaces instead of pipes for separation. Command completion entries are sorted and the ':' character is allowed. If the path is 'buffer', show the available functions or properties depending on if 'buffer' is followed by a '.' or ':' in addition to its table fields. | |||
2007-08-06 | Added more LuaDoc, shebang recognition; ext/core/mime_types.lua | ||
Shebangs are split into words which are looked up in a shebangs table to determine the proper lexer language for the buffer. | |||
2007-08-06 | Initial import of extension Lua files. | ||
2007-08-06 | Initial import of core Lua files. | ||