Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | ||
2009-02-15 | PM browser cursors are saved and restored when switching between browsers. | ||
2009-02-12 | Treat 'appleevent_odoc' event as a 'uri_dropped' event; core/events.lua | ||
2009-02-10 | Moved the textadept.locale table into the globals table. | ||
2009-02-10 | Use a _type field for special _print() buffers' titles instead of 'Untitled'. | ||
2009-01-30 | Moved highlight-braces from core/events.lua to modules/textadept/editing.lua. | ||
2009-01-30 | Updated LuaDoc. | ||
2009-01-26 | Menu label text is irrelevant for menu actions due to l10n; focus on menu_id. | ||
2009-01-25 | Moved auto-indent from core/events.lua to modules/textadept/editing.lua. | ||
2009-01-25 | Replaced str:match with str:find where applicable for speed improvements. | ||
2009-01-25 | Fixed bug with URI dropping and do nothing with directory drops; core/events.lua | ||
2009-01-24 | Use lexer themes defined in Textadept's themes/, not scintilla-st's themes/. | ||
2009-01-23 | Allow _THEME to be a directory path, not just a name in themes/; core/events.lua | ||
2009-01-16 | Created a way to print messages to different kinds of buffers, not just error. | ||
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. |