aboutsummaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2008-06-20Added icons to Textadept.mitchell
2008-06-20Added to LuaDoc for pm.browser; core/.browser.luamitchell
2008-06-19Added extra note in LuaDoc about quit handler; core/events.luamitchell
2008-06-18Updated modules LuaDoc to include info about the modules browser; core/._m.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-18Always load Project Manager settings from session file.mitchell
2008-06-17Updated copyright year information for LuaDoc files.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-25Added LuaDoc for textadept.reset(); core/.textadept.luamitchell
2008-05-13Fixed bug for menu actions on non-focused buffer; core/ext/pm/buffer_browser.luamitchell
2008-03-04Updated to use new modular lua_dialog.lua; core/init.luamitchell
2008-03-04Fixed bugs with tonumber(cocoa_dialog(...)) in various files.mitchell
Instead of the extra overhead when calling tonumber(), add the --no-newline option and do a direct string comparison.
2008-03-03Modified some package paths for consistency.mitchell
2008-03-03Updated copyright notice to include the year 2008.mitchell
2008-02-29Fixed empty buffer.filename bug in save_as(); core/file_io.luamitchell
2008-02-23Eliminated Zenity dependency; replaced with my CocoaDialog clone (lua_dialog).mitchell
2008-02-23Updated LuaDoc error; core/.browser.luamitchell
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-30Added Usage LuaDoc for textadept.find; core/.find.luamitchell
2007-11-30Removed TODO in LuaDoc; core/ext/pm.luamitchell
2007-11-30Added LuaDoc for pm browsers.mitchell
2007-11-30Scintilla 1.75 adds a new iface function; core/iface.luamitchell
2007-11-16Prevent data loss by opening file after 'prepare'ing for save; core/file_io.luamitchell
2007-11-03Various reformatting for consistency.mitchell
2007-10-07Moved key command manager to core.mitchell
2007-10-06Added textadept.print function that prints to the error buffer.mitchell
2007-10-06Added support for "double-click, goto error" in error buffer; core/events.luamitchell
2007-09-27Added buffer:reload() function.mitchell
2007-09-24Updated documentation.mitchell
2007-09-23Added dynamically defined GTK menus and menubar.mitchell
2007-09-19Added interactive search documentation; core/ext/pm.luamitchell
2007-09-17Added usage documentation; core/ext/pm.luamitchell
2007-09-17Added core/._m.lua dummy file.mitchell
2007-08-21Moved @usage LuaDocs to comment blocks inside the modules.mitchell
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-15Recent files are now tracked and a user list can be shown to open them.mitchell
2007-08-15Renamed handlers module to events, updated everything to reflect changes.mitchell
2007-08-15Fixed spelling and grammatical mistakes; core/.buffer.luamitchell
2007-08-14Fixed bug in maintaining indentation; core/handlers.luamitchell
Adapted conditionals from SciTE to fix a bug where the caret is sometimes placed incorrectly when trying to maintain indentation.
2007-08-11Textadept title also shows full filepath of the open buffer; core/handlers.luamitchell
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-09Improved completion of buffer functions and properties; core/handlers.luamitchell
Each buffer function or property is matched to prefix before being added to the completion list.