aboutsummaryrefslogtreecommitdiff
path: root/core/events.lua
AgeCommit message (Collapse)Author
2009-08-05Updated key commands.mitchell
Changed goto_buffer key command to be more standard. Explicitly defined undo, redo, etc. key commands so they can be changed by users.
2009-07-25Documentation overhaul.mitchell
2009-07-19Removed [Local {function,table}] documentation from being shown in LuaDoc.mitchell
2009-07-12Changed implementation of handling Scintilla notifications; core/events.luamitchell
2009-07-08Replace lua_dialog with gcocoadialog.mitchell
2009-07-08Extended the event system to include project manager, find, command entry, etc.mitchell
2009-07-12The 'char_added' handler shouldn't convert int to string.mitchell
2009-07-12Moved session support from core/file_io.lua to a Textadept module.mitchell
2009-07-12Lua code cleanup.mitchell
2009-07-07Use ~/.textadept/ for user settings, sessions, themes, lexers, etc.mitchell
2009-06-19Use before_switch and after_switch events for buffers and views.mitchell
Moved C code for saving/restoring state when switching buffers to Lua. Also added saving of folding state.
2009-04-02Removed macro support; just use Lua for scripting.mitchell
2009-03-03Trimmed theme files.mitchell
2009-03-01Added support for multiple character encodings through g_convert().mitchell
Can open, save, and convert between different character encodings now.
2009-02-28Use UTF-8 internally and respect platform filename encoding.mitchell
Added 'textadept.iconv' function to interface with GLib's g_convert() and set global _CHARSET to be the platform's filename encoding/code page.
2009-02-15Cleaned up some Lua code.mitchell
2009-02-15PM browser cursors are saved and restored when switching between browsers.mitchell
2009-02-12Treat 'appleevent_odoc' event as a 'uri_dropped' event; core/events.luamitchell
2009-02-10Moved the textadept.locale table into the globals table.mitchell
2009-02-10Use a _type field for special _print() buffers' titles instead of 'Untitled'.mitchell
2009-01-30Moved highlight-braces from core/events.lua to modules/textadept/editing.lua.mitchell
2009-01-30Updated LuaDoc.mitchell
2009-01-26Menu label text is irrelevant for menu actions due to l10n; focus on menu_id.mitchell
2009-01-25Moved auto-indent from core/events.lua to modules/textadept/editing.lua.mitchell
2009-01-25Replaced str:match with str:find where applicable for speed improvements.mitchell
2009-01-25Fixed bug with URI dropping and do nothing with directory drops; core/events.luamitchell
2009-01-24Use lexer themes defined in Textadept's themes/, not scintilla-st's themes/.mitchell
2009-01-23Allow _THEME to be a directory path, not just a name in themes/; core/events.luamitchell
2009-01-16Created a way to print messages to different kinds of buffers, not just error.mitchell
Earlier textadept.print() printed to the error buffer. Now it prints to its own message buffer. Additional textadept.print() calls print to that same buffer.
2009-01-14Changed incorrect usage of buffer.call_tip_use_style in themes.mitchell
2009-01-14Moved utilities to run/compile files and decode errors into a Textadept module.mitchell
2009-01-10Various improvements to speed and readability of Lua code.mitchell
Added 'local textadept = _G.textadept' to all Lua modules, themes, etc. Added more locals to core/ext/keys.lua for speed improvement. Reformatted some Lua modules to the earlier standard committed.
2009-01-08Reformatted all C and Lua code to a single standard for each language.mitchell
2009-01-03Added localization support.mitchell
All Textadept messages are in core/locale.lua which provides the new 'textadept.locale' module.
2009-01-01Updated copyright dates for 2009.mitchell
2008-12-30Fixes to recognize Windows path separators.mitchell
2008-12-30Use table.concat instead of multiple string concats; core/events.luamitchell
2008-12-22Light theme is the default; moved old dark default into its own theme.mitchell
2008-12-14Delete Windows/Linux built-in Scintilla key commands for Mac; core/events.luamitchell
2008-12-10Use UTF8 encoding by default; core/events.luamitchell
2008-11-01Added support for some AppleEvents, use Scintilla namespace on OSX.mitchell
2008-09-24Added _THEME variable; themes are now directories with view.lua and buffer.lua.mitchell
Now editing core/events.lua's buffer_new handler function is no longer necessary on a per-user basis. If _THEME is set, that theme's buffer.lua is loaded for a 'buffer_new' event, and view.lua for 'view_new'.
2008-09-21Added uri_dropped handler in core/events.lua to open dragged and dropped files.mitchell
2008-08-10Made set_default_*_properties handlers for their respective *_new events.mitchell
2008-08-09Added color themes, fixed indentation inconsistencies; core/events.luamitchell
2008-08-09Modified core/events.lua to support new color theme functionality.mitchell
2008-08-08Replaced C code for setting default editor and buffer properties with Lua code.mitchell
2008-06-19Added extra note in LuaDoc about quit handler; core/events.luamitchell
2008-06-17Added Tab-completion to Lua Command Entry.mitchell
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.