aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-12-01Added tag beta_r1 for changeset 1652db2b9d3emitchell
2007-11-30Added Usage LuaDoc for textadept.find; core/.find.luamitchell
2007-11-30Removed TODO in LuaDoc; core/ext/pm.luamitchell
2007-11-30Added LuaDoc for pm browsers.mitchell
2007-11-30Warn that pm_view content item ID is a string type; src/lua_interface.cmitchell
2007-11-30Scintilla 1.75 adds a new iface function; core/iface.luamitchell
2007-11-29Hide completions buffer on c_activated; src/textadept.cmitchell
2007-11-22Removed Alt+* key commands in favor of using gtkrc files; src/textadept.cmitchell
2007-11-17Changed font back from Monaco to Bitstream Vera Sans Mono; osx.patchmitchell
2007-11-16Added Mac OSX patch file for CocoaDialog.mitchell
2007-11-16Fixed assertion error caused by replace_target; modules/textadept/editing.luamitchell
2007-11-16Prevent data loss by opening file after 'prepare'ing for save; core/file_io.luamitchell
2007-11-08Moved GTK/GDK keypress mask logic from lua_interface.c to textadept.c.mitchell
2007-11-08Added widget names to GtkEntrys for theming.mitchell
2007-11-03Various reformatting for consistency.mitchell
2007-10-16Added LICENSE.mitchell
2007-10-08find_toggle_focus function code makes more sense; src/find_replace.cmitchell
2007-10-08command_entry visibility is toggled on focus toggle; src/textadept.cmitchell
The visibility of statusbar and doc_statusbar is also toggled.
2007-10-08Switched statusbar and docstatusbar; src/textadept.cmitchell
2007-10-08Set initial window and Scintilla window sizes to be sane; src/textadept.cmitchell
2007-10-07Moved key command manager to core.mitchell
2007-10-07Added refresh key for syntax highlighting; modules/textadept/key_commands.luamitchell
2007-10-06The run function uses textadept.print now; modules/lua/commands.luamitchell
2007-10-06Added textadept.print function that prints to the error buffer.mitchell
2007-10-06Added support for "double-click, goto error" in error buffer; core/events.luamitchell
2007-09-27Added buffer:reload() function.mitchell
2007-09-26Changed warn to be static to fix compile errors; src/textadept.hmitchell
2007-09-26Fixed focus error between multiple instances of Textadept; src/textadept.cmitchell
2007-09-24Updated documentation.mitchell
2007-09-23Rearranged and cleaned up src/lua_interface.c; moved warn to src/textadept.h.mitchell
2007-09-23Added textadept.popupmenu function; src/lua_interface.cmitchell
2007-09-23Renamed l_handle_signal to l_handle_event.mitchell
2007-09-23Replaced l_handle_completion with overloaded l_handle_signal.mitchell
2007-09-23Added dynamically defined GTK menus and menubar.mitchell
2007-09-22Modified snippet key commands; modules/textadept/key_commands.luamitchell
2007-09-20Snippet "snapshots" enable backtracking; /modules/textadept/lsnippets.luamitchell
2007-09-19Pressing escape anywhere in the project manager refocuses the buffer; src/pm.cmitchell
2007-09-19Added interactive search documentation; core/ext/pm.luamitchell
2007-09-17Added usage documentation; core/ext/pm.luamitchell
2007-09-17Added core/._m.lua dummy file.mitchell
2007-09-17Fixed typo; modules/newmitchell
2007-09-06Words can be autocompleted from a specified dictionary.mitchell
2007-08-21Added events defined by modules/textadept/macros.lua to the module's LuaDoc.mitchell
2007-08-21Moved @usage LuaDocs to comment blocks inside the modules.mitchell
2007-08-21Pruned C++ code, added additional comments.mitchell
Modified C++ code structure to be more consistent throughout. Also added comments for functions that handle key events, indicating which (hard-coded) keys trigger what actions.
2007-08-16Renamed l_*_buffer_prop to l_*_bufferp, get arg changed; src/lua_interface.cmitchell
Stack index argument to l_get_buffer_prop was not intuitive because it was essentially index - 1. So after lua_getglobal(lua, "buffer"), the index arg to l_get_buffer_prop had to be -2 because the property name is pushed onto the stack before calling lua_rawget. Instead, l_get_bufferp subtracts 1 from the index it is given, so -1 can be used.
2007-08-16If l_ta_get for "views" or "buffers" fails, throw an error; src/lua_interface.cmitchell
Since l_check{view|docpointer} throw errors, the unprotected C functions that call them will cause a Lua panic if either textadept.views or textadept.buffers does not exist and Textadept will exit. This makes sense since the two tables are integral to the application. Therefore instead of checking if either table exists in those unprotected C functions and handling a failed check safely, throw an error and exit Textadept anyway because sooner or later one will be thrown from l_check{view|docpointer}.
2007-08-16Restructured modules/textadept/key_commands.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-15Recent files are now tracked and a user list can be shown to open them.mitchell