aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept
AgeCommit message (Collapse)Author
2009-01-14Sometimes goto_line will select text, fix that; modules/textadept/editing.luamitchell
2009-01-14Moved utilities to run/compile files and decode errors into a Textadept module.mitchell
2009-01-10Various improvements to speed and readability of Lua code.mitchell
Added 'local textadept = _G.textadept' to all Lua modules, themes, etc. Added more locals to core/ext/keys.lua for speed improvement. Reformatted some Lua modules to the earlier standard committed.
2009-01-08Reformatted all C and Lua code to a single standard for each language.mitchell
2009-01-05Add bookmarks to the textadept module and menu.mitchell
2009-01-05Fixed modules/textadept/bookmarks.lua bug for goto next and prev bookmark.mitchell
2009-01-03Added localization support.mitchell
All Textadept messages are in core/locale.lua which provides the new 'textadept.locale' module.
2009-01-01Updated copyright dates for 2009.mitchell
2008-12-23Added option for smart_paste() to reindent text; modules/textadept/editing.luamitchell
2008-12-22Fixed bugs in macros and macro browser.mitchell
2008-09-27Fixed modules/textadept/lsnippets.lua bug for placeholders.mitchell
If placeholders occured just before an EOL, Scintilla regex matching cannot recognize newline characters as [^(]. Had to explicitly search for the case where an EOL occurs after the placeholder being searched for.
2008-07-22Fixed goto_line bug when cancelling dialog; modules/textadept/editing.luamitchell
2008-07-21Moved block comment key commands from language modules to _m.textadept.editing.mitchell
2008-07-05Cancelling 'goto line' dialog shouldn't error; modules/textadept/editing.luamitchell
2008-06-24Added _m.textadept.bookmarks module; modules/textadept/bookmarks.luamitchell
2008-03-04Fixed bugs with tonumber(cocoa_dialog(...)) in various files.mitchell
Instead of the extra overhead when calling tonumber(), add the --no-newline option and do a direct string comparison.
2008-03-03Updated copyright notice to include the year 2008.mitchell
2008-03-03Need non-negative return value from goto dialog; modules/textadept/editing.luamitchell
2008-02-29Fixed select_indented_block() bug; modules/textadept/editing.luamitchell
2008-02-23Eliminated Zenity dependency; replaced with my CocoaDialog clone (lua_dialog).mitchell
2008-02-10Instead of io.popen():read(), a file descriptor is kept and close()'d afterward.mitchell
2007-11-16Fixed assertion error caused by replace_target; modules/textadept/editing.luamitchell
2007-10-07Moved key command manager to core.mitchell
2007-10-07Added refresh key for syntax highlighting; modules/textadept/key_commands.luamitchell
2007-09-27Added buffer:reload() function.mitchell
2007-09-22Modified snippet key commands; modules/textadept/key_commands.luamitchell
2007-09-20Snippet "snapshots" enable backtracking; /modules/textadept/lsnippets.luamitchell
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-16Restructured modules/textadept/key_commands.luamitchell
2007-08-15Recent files are now tracked and a user list can be shown to open them.mitchell
2007-08-15Renamed handlers module to events, updated everything to reflect changes.mitchell
2007-08-15Added extensive @usage LuaDoc like in lsnippets; modules/textadept/keys.luamitchell
2007-08-15Added new lsnippets textadept module, updated other modules to use it.mitchell
2007-08-11MLines' update is now a single undo action; modules/textadept/mlines.luamitchell
2007-08-11Improved LuaDoc for _m.textadept.keys; modules/textadept/keys.luamitchell
2007-08-10Renamed textadept.handlers' add_function_to_handler to add_handler_function.mitchell
2007-08-10Macros can now be recorded, saved, played, browsed, etc.mitchell
2007-08-09Can use selected_text inside a snippet; modules/textadept/snippets.luamitchell
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.
2007-08-09Removed unnecessary LuaDoc; modules/textadept/snippets.luamitchell
Option variables for file in/out, redirect, and Ruby are not longer used.
2007-08-09Renamed modules global to _m.mitchell
2007-08-09Added new LuaDoc, updated existing LuaDoc to be more consistent.mitchell
2007-08-06Initial import of the textadept module.mitchell