aboutsummaryrefslogtreecommitdiff
path: root/core/ext
AgeCommit message (Collapse)Author
2008-12-21Added an actual project manager for the PM browser.mitchell
2008-12-21Updated core/ext/pm/file_browser.lua to use the LuaFileSystem library.mitchell
2008-12-16Project Manager entries use 'text' field, not 'display_text' anymore.mitchell
2008-12-14Added standard Mac key commands; core/ext/key_commands_mac.luamitchell
2008-12-14Fixed some conflicting key commands; core/ext/key_commands_std.luamitchell
2008-12-14Fixed key commands bug for Mac; core/ext/keys.luamitchell
2008-12-14Fixed find bug when no match is found; core/ext/find.luamitchell
2008-11-11Find functionality is mostly handled by Lua now.mitchell
2008-11-08Added Lua interface functions to mimick find box button presses.mitchell
2008-11-02Fixed key handling and arg handling for Mac.mitchell
2008-11-01Added support for some AppleEvents, use Scintilla namespace on OSX.mitchell
2008-10-30Work around native GTK-OSX handling of Alt key for composing; core/ext/keys.luamitchell
2008-10-08Key commands are quicker and more efficient; core/ext/keys.luamitchell
2008-10-04Added action for 'Find and Replace' menu item; core/ext/menu.luamitchell
2008-10-04Fixed view grow/shrink error when view isn't split; core/ext/menu.luamitchell
2008-09-21Modified some of the pm browsers to play nice with Windows.mitchell
2008-09-04Changed core/ext/mime_types.lua to use 'sql' lexer instead of 'mysql'.mitchell
2008-08-08Added first-line pattern matching to determine lexer; core/ext/mime_types.luamitchell
2008-08-07Added menu options and mime types for 3 new lexers.mitchell
2008-07-23Can change lexer via the menu in core/ext/menu.lua.mitchell
2008-07-21Moved block comment key commands from language modules to _m.textadept.editing.mitchell
2008-07-21Added mime type for R files; core/ext/mime_types.luamitchell
2008-07-15Added additional mime types, some for new lexers; core/ext/mime_types.luamitchell
2008-07-14Added mime types for new lexers; core/ext/mime_types.luamitchell
2008-07-08Added additional standard key commands and added some TODO menu items.mitchell
2008-07-05Added menu option to show command entry; core/ext/menu.luamitchell
2008-07-05Added skeleton set of standard key commands; core/ext/key_commands_std.luamitchell
2008-07-05Fixed mnemonics, added more PM browsers; core/ext/menu.luamitchell
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