Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-12-28 | Updated copyright information. | ||
2010-12-26 | Moved gui events from core/events.lua to core/gui.lua. | ||
2010-12-07 | Fix infinite recursion errors caused in events. | ||
2010-11-23 | Code cleanup. | ||
Also modified the editing module's enclose() and select_enclosed() functions. | |||
2010-10-28 | Rename MAC variable in to OSX in Lua, __OSX__ in C. | ||
2010-10-28 | Use new Scintilla API for saving fold state; core/events.lua | ||
2010-10-15 | Changed locale implementation. | ||
2010-10-14 | Code formatting changes. | ||
2010-09-29 | Use newest LexLPeg.cxx from scintillua; core/events.lua | ||
2010-09-01 | Clear appropriate defaultt Scintilla key commands; core/events.lua | ||
2010-08-31 | Change Lua interface to support updated LPeg Scintilla lexer. | ||
2010-08-21 | Changed Scintillua private_lexer_call operation parameters. | ||
2010-08-17 | Upgraded to Scintilla/SciTE 2.20. | ||
2010-07-21 | Use forward slashes in uri_dropped event for Win32; core/events.lua | ||
2010-06-18 | Added statusbar notification on reset(); core/events.lua | ||
2010-06-17 | Added dynamic command line argument handling. | ||
2010-06-16 | Code and documentation cleanup. | ||
2010-06-14 | Added events.disconnect() function; core/events.lua | ||
2010-06-11 | Removed _G.textadept. | ||
Created new _SCINTILLA core module. Renamed textadept.constants to _SCINTILLA.constants Renamed textadept.buffer_functions to _SCINTILLA.functions Renamed textadept.buffer_properties to _SCINTILLA.properties Created new gui core module. Renamed textadept._print() to gui._print(). Renamed textadept.check_focused_buffer() to gui.check_focused_buffer(). Renamed textadept.clipboard_text to gui.clipboard_text. Renamed textadept.context_menu to gui.context_menu Renamed textadept.command_entry to gui.command_entry. Renamed textadept.dialog to gui.dialog. Renamed textadept.docstatusbar_text to gui.docstatusbar_text. Renamed textadept.find to gui.find. Renamed textadept.focused_doc_pointer to gui.focused_doc_pointer. Renamed textadept.get_split_table() to gui.get_split_table(). Renamed textadept.gtkmenu() to gui.gtkmenu(). Renamed textadept.goto_view() to gui.goto_view(). Renamed textadept.menubar to gui.menubar. Renamed textadept.print() to gui.print(). Renamed textadept.size to gui.size. Renamed textadept.statusbar_text to gui.statusbar_text. Renamed textadept.switch_buffer() to gui.switch_buffer(). Renamed textadept.title to gui.title. Renamed textadept.buffers to _G._BUFFERS. Renamed textadept.new_buffer() to _G.new_buffer(). Renamed textadept.quit() to _G.quit(). Renamed textadept.reset() to _G.reset(). Renamed textadept.views to _G._VIEWS. Renamed textadept.user_dofile() to _G.user_dofile(). Renamed textadept.iconv to string.iconv. Renamed textadept.session_file to _SESSIONFILE. Renamed appropriate C functions. | |||
2010-06-11 | Renamed textadept.events to events, renamed 'handle' and 'add_handler'. | ||
2010-06-10 | Moved textadept.io into Lua's io table. | ||
Renamed textadept.io.open to textadept.io.open_file to prevent conflicts. | |||
2010-05-25 | Fixed Mac OSX paste issue; core/events.lua | ||
2010-04-11 | Reverted r556. | ||
2010-04-09 | Fix bug with previous commit; core/events.lua | ||
2010-04-09 | No need to set lexer to SCLEX_LPEG as it already is; core/events.lua | ||
2010-04-09 | Remove initial 'Untitled' buffer when necessary; core/events.lua | ||
2010-04-05 | Code cleanup. | ||
2010-03-17 | Undefine standard Scintilla key commands; core/events.lua | ||
2010-03-10 | Removed side pane. | ||
2010-03-02 | Removed default fallback themes; core/events.lua | ||
2010-02-25 | Modified quit and close dialogs to be more readable. | ||
Submitted by rgieseke. | |||
2010-02-21 | Added LuaDoc for textadept.reset()'s events; core/events.lua | ||
2010-01-07 | Updated copyright to 2010. | ||
2009-11-08 | Search _USERHOME for theme names in addition to _HOME. | ||
2009-08-05 | Updated key commands. | ||
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-25 | Documentation overhaul. | ||
2009-07-19 | Removed [Local {function,table}] documentation from being shown in LuaDoc. | ||
2009-07-12 | Changed implementation of handling Scintilla notifications; core/events.lua | ||
2009-07-08 | Replace lua_dialog with gcocoadialog. | ||
2009-07-08 | Extended the event system to include project manager, find, command entry, etc. | ||
2009-07-12 | The 'char_added' handler shouldn't convert int to string. | ||
2009-07-12 | Moved session support from core/file_io.lua to a Textadept module. | ||
2009-07-12 | Lua code cleanup. | ||
2009-07-07 | Use ~/.textadept/ for user settings, sessions, themes, lexers, etc. | ||
2009-06-19 | Use before_switch and after_switch events for buffers and views. | ||
Moved C code for saving/restoring state when switching buffers to Lua. Also added saving of folding state. | |||
2009-04-02 | Removed macro support; just use Lua for scripting. | ||
2009-03-03 | Trimmed theme files. | ||
2009-03-01 | Added support for multiple character encodings through g_convert(). | ||
Can open, save, and convert between different character encodings now. | |||
2009-02-28 | Use UTF-8 internally and respect platform filename encoding. | ||
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-15 | Cleaned up some Lua code. | ||