Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-16 | Added LICENSE. | ||
2007-10-08 | find_toggle_focus function code makes more sense; src/find_replace.c | ||
2007-10-08 | command_entry visibility is toggled on focus toggle; src/textadept.c | ||
The visibility of statusbar and doc_statusbar is also toggled. | |||
2007-10-08 | Switched statusbar and docstatusbar; src/textadept.c | ||
2007-10-08 | Set initial window and Scintilla window sizes to be sane; src/textadept.c | ||
2007-10-07 | Moved key command manager to core. | ||
2007-10-07 | Added refresh key for syntax highlighting; modules/textadept/key_commands.lua | ||
2007-10-06 | The run function uses textadept.print now; modules/lua/commands.lua | ||
2007-10-06 | Added textadept.print function that prints to the error buffer. | ||
2007-10-06 | Added support for "double-click, goto error" in error buffer; core/events.lua | ||
2007-09-27 | Added buffer:reload() function. | ||
2007-09-26 | Changed warn to be static to fix compile errors; src/textadept.h | ||
2007-09-26 | Fixed focus error between multiple instances of Textadept; src/textadept.c | ||
2007-09-24 | Updated documentation. | ||
2007-09-23 | Rearranged and cleaned up src/lua_interface.c; moved warn to src/textadept.h. | ||
2007-09-23 | Added textadept.popupmenu function; src/lua_interface.c | ||
2007-09-23 | Renamed l_handle_signal to l_handle_event. | ||
2007-09-23 | Replaced l_handle_completion with overloaded l_handle_signal. | ||
2007-09-23 | Added dynamically defined GTK menus and menubar. | ||
2007-09-22 | Modified snippet key commands; modules/textadept/key_commands.lua | ||
2007-09-20 | Snippet "snapshots" enable backtracking; /modules/textadept/lsnippets.lua | ||
2007-09-19 | Pressing escape anywhere in the project manager refocuses the buffer; src/pm.c | ||
2007-09-19 | Added interactive search documentation; core/ext/pm.lua | ||
2007-09-17 | Added usage documentation; core/ext/pm.lua | ||
2007-09-17 | Added core/._m.lua dummy file. | ||
2007-09-17 | Fixed typo; modules/new | ||
2007-09-06 | Words can be autocompleted from a specified dictionary. | ||
2007-08-21 | Added events defined by modules/textadept/macros.lua to the module's LuaDoc. | ||
2007-08-21 | Moved @usage LuaDocs to comment blocks inside the modules. | ||
2007-08-21 | Pruned C++ code, added additional comments. | ||
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-16 | Renamed l_*_buffer_prop to l_*_bufferp, get arg changed; src/lua_interface.c | ||
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-16 | If l_ta_get for "views" or "buffers" fails, throw an error; src/lua_interface.c | ||
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-16 | Restructured modules/textadept/key_commands.lua | ||
2007-08-16 | Fixed 'find previous' bug; core/ext/find.lua | ||
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-15 | Recent files are now tracked and a user list can be shown to open them. | ||
2007-08-15 | Renamed handlers module to events, updated everything to reflect changes. | ||
2007-08-15 | Fixed spelling and grammatical mistakes; core/.buffer.lua | ||
2007-08-15 | Searching in pm_view now uses strstr; src/pm.c | ||
Instead of the normal tree view search function which matches the start of a string, a new search function is used which uses strstr, matching anywhere in a string. | |||
2007-08-15 | Added extensive @usage LuaDoc like in lsnippets; modules/textadept/keys.lua | ||
2007-08-15 | Added new lsnippets textadept module, updated other modules to use it. | ||
2007-08-14 | Fixed bug in maintaining indentation; core/handlers.lua | ||
Adapted conditionals from SciTE to fix a bug where the caret is sometimes placed incorrectly when trying to maintain indentation. | |||
2007-08-11 | Textadept title also shows full filepath of the open buffer; core/handlers.lua | ||
2007-08-11 | MLines' update is now a single undo action; modules/textadept/mlines.lua | ||
2007-08-11 | Fixed escapes in replace, added %() sequence; core/ext/find.lua | ||
'%%' is now properly escaped. %() sequence executes Lua code, showing an error dialog if one occured. | |||
2007-08-11 | Fixed bug in restoring scroll position on buffer switching; src/lua_interface.c | ||
When switching to another buffer, typing text, and switching back, the scroll position was not restored properly all of the time. Fixed by setting the anchor and caret first, which scrolls some number of lines, then scrolling the remaining number of lines to restore the original scroll position. | |||
2007-08-11 | Improved LuaDoc for _m.textadept.keys; modules/textadept/keys.lua | ||
2007-08-10 | Renamed textadept.handlers' add_function_to_handler to add_handler_function. | ||
2007-08-10 | Added 'warn' function for printing warnings to STDOUT; src/lua_interface.c | ||
Instead of raising errors which call Lua's textadept.handlers.error function (which at this point in time opens a new buffer and prints the error message), quietly print warnings to STDOUT because an error hasn't really occured. | |||
2007-08-10 | Macros can now be recorded, saved, played, browsed, etc. | ||
2007-08-09 | Can use selected_text inside a snippet; modules/textadept/snippets.lua | ||
Originally just the global environment was available for executing Lua code in snippets, but now a 'selected_text' variable is available for (key) commands that insert snippets. This is typically useful for wrapping selected text in a snippet. |