Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-24 | Condensed textadept.h, textadept.c, lua_interface.c into textadept.c. | ||
2010-10-24 | C code consolidation and updated Doxygen doc. | ||
2010-10-22 | Load lpeg and lfs manually instead of modifying Lua itself. | ||
2010-10-18 | Use luaL_checkstring for Scintilla string parameters; src/lua_interface.c | ||
2010-10-17 | Do not allow gui.statusbar_text to be set to nil. | ||
2010-10-15 | Fix compiler warning; src/lua_interface.c | ||
2010-10-15 | Make gui.statusbar_text accessible for keys.lua; src/lua_interface.c | ||
2010-10-15 | C code cleanup. | ||
2010-10-14 | Code formatting changes. | ||
2010-10-11 | gui.dialog() can take tables of strings as arguments. | ||
2010-09-01 | Fixed compiler warnings. | ||
2010-08-31 | Change Lua interface to support updated LPeg Scintilla lexer. | ||
2010-06-16 | Code and documentation cleanup. | ||
2010-06-12 | Fixed bug with _BUFFERS and _VIEWS not being updated; src/lua_interface.c | ||
Originally textadept.buffers and textadept.views were accessible through a metatable that pointed to the most up-to-date table. | |||
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-05-24 | Fixed buffer:text_range() argcheck; src/lua_interface.c | ||
2010-04-02 | Added argcheck for buffer:text_range(); src/lua_interface.c | ||
2010-03-10 | Removed side pane. | ||
2010-02-21 | Added 'reset_before' and 'reset_after' events; src/lua_interface.c | ||
2010-01-07 | Updated copyright to 2010. | ||
2009-07-18 | Can cross-compile to Win32. | ||
2009-07-15 | C99 allows 'int' declarations in 'for' statments. | ||
2009-07-12 | Use branded Scintilla structs to remove 'using namespace Scintilla' for OSX. | ||
2009-07-10 | Compile as C99. | ||
2009-07-09 | Textadept now compiles as C code. | ||
2009-07-09 | Code cleanup and fix memory leaks. | ||
2009-07-08 | Fixed bug with gcocoadialog integration; src/lua_interface.c | ||
2009-07-08 | Replace lua_dialog with gcocoadialog. | ||
2009-07-08 | Extended the event system to include project manager, find, command entry, 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-05-01 | Fixed Doxygen doc; src/lua_interface.c | ||
2009-04-02 | Removed macro support; just use Lua for scripting. | ||
2009-03-01 | Ignore null byte for specific Scintilla messages; use buffer:get_text() again. | ||
2009-03-01 | Account for null bytes in strings pushed to Lua; src/lua_interface.c | ||
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 | Minor refactoring, more encapsulation, and code cleanup. | ||
2009-02-15 | PM browser cursors are saved and restored when switching between browsers. | ||
2009-02-14 | Refactored Project Manager code. | ||
2009-02-14 | Multi-depth PM cursor expands parent rows (if possible); src/lua_interface.c | ||
2009-02-14 | Code cleanup. | ||
2009-02-14 | Added textadept.context_menu field for a custom popup context menu. | ||
2009-02-14 | Removed worthless textadept.popupmenu() function. | ||
2009-02-08 | Removed ability to remove PM browsers; src/lua_interface.c | ||
2009-02-08 | Added ability to remove PM browsers; src/lua_interface.c | ||
2009-02-08 | Removed buffer:find() function. | ||
2009-02-08 | Cleaned up code, used argchecks instead of Lua errors, and enhanced stability. | ||
Instead of throwing luaL_error() for bad arguments, use luaL_argcheck() and luaL_argerror() for more descriptive messages. Store the 'textadept' table's 'buffers', 'views', 'constants', 'buffer_functions', and 'buffer_properties' tables in the Lua registry and refer to them via metatables so that overwrites are not possible; removed 'rawset' for Lua scripts. | |||
2009-02-05 | Fixed a bug and added enhancements to Find in Files. | ||
Double-clicking a search result will open the file in the previous view (if it exists) rather than clobbering the current one. Also added the find text to the output. | |||
2009-02-05 | Handle an empty clipboard properly; src/lua_interface.c | ||
2009-01-28 | Fixed some casts for compilation on 64-bit machines. | ||