aboutsummaryrefslogtreecommitdiff
path: root/core/ext
AgeCommit message (Collapse)Author
2008-07-05Bugfixes in core/ext/menu.luamitchell
2008-07-05Updated menu structure; core/ext/menu.luamitchell
2008-07-05Added a comprehensive menu; core/ext/menu.luamitchell
2008-06-25Colourise from 0, not 1 when refreshing; core/ext/key_commands.luamitchell
2008-06-24Fixed bug with '%' in selected text for replacing; core/ext/find.luamitchell
2008-06-18No need for empty string pixmap in core/ext/pm/modules_browser.lua.mitchell
2008-06-18Added modules browser to the Project Manager.mitchell
2008-06-17Added Tab-completion to Lua Command Entry.mitchell
2008-05-25Added mime type for Ragel files; core/ext/mime_types.luamitchell
2008-05-13Fixed bug for menu actions on non-focused buffer; core/ext/pm/buffer_browser.luamitchell
2008-03-03Updated copyright notice to include the year 2008.mitchell
2008-02-23Eliminated Zenity dependency; replaced with my CocoaDialog clone (lua_dialog).mitchell
2008-02-10Removed boolean redundancy; core/ext/pm/ctags_browser.luamitchell
2008-02-10Added new find in files project manager browser.mitchell
2008-02-10Instead of io.popen():read(), a file descriptor is kept and close()'d afterward.mitchell
2007-12-24Fixed setting of Ruby lexer after detecting filetype; core/ext/mime_types.luamitchell
2007-11-30Removed TODO in LuaDoc; core/ext/pm.luamitchell
2007-10-07Moved key command manager to core.mitchell
2007-09-19Added interactive search documentation; core/ext/pm.luamitchell
2007-09-17Added usage documentation; core/ext/pm.luamitchell
2007-08-16Fixed 'find previous' bug; core/ext/find.luamitchell
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-15Renamed handlers module to events, updated everything to reflect changes.mitchell
2007-08-11Fixed escapes in replace, added %() sequence; core/ext/find.luamitchell
'%%' is now properly escaped. %() sequence executes Lua code, showing an error dialog if one occured.
2007-08-10Renamed textadept.handlers' add_function_to_handler to add_handler_function.mitchell
2007-08-10Macros can now be recorded, saved, played, browsed, etc.mitchell
2007-08-09Renamed modules global to _m.mitchell
2007-08-09Added new LuaDoc, updated existing LuaDoc to be more consistent.mitchell
2007-08-09'replace_all' doesn't loop infinitely, 'find' more accurate; core/ext/find.luamitchell
'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-06Added more LuaDoc, shebang recognition; ext/core/mime_types.luamitchell
Shebangs are split into words which are looked up in a shebangs table to determine the proper lexer language for the buffer.
2007-08-06Initial import of extension Lua files.mitchell