aboutsummaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2009-07-25Documentation overhaul.mitchell
2009-07-19Removed [Local {function,table}] documentation from being shown in LuaDoc.mitchell
2009-07-08Replace lua_dialog with gcocoadialog.mitchell
2009-07-12The 'char_added' handler shouldn't convert int to string.mitchell
2009-07-12Moved session support from core/file_io.lua to a Textadept module.mitchell
2009-07-12Lua code cleanup.mitchell
2009-07-07Compile and run commands can be user-redefinable through accessible tables.mitchell
2009-06-23Ignore Java 'package' statements inside comments; modules/textadept/run.luamitchell
2009-06-22Can use functions to return compile or go strings; modules/textadept/run.luamitchell
Utilize this with Java.
2009-04-02Removed macro support; just use Lua for scripting.mitchell
2009-03-01Added 'file_before_save' signal.mitchell
2009-03-01Use buffer:text_range() instead of buffer:get_text() because of trailing '\0'.mitchell
2009-02-28Use UTF-8 internally and respect platform filename encoding.mitchell
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-23Use lfs.chdir() instead of a command to do so; modules/textadept/run.luamitchell
2009-02-23Fixed index error on textadept.reset() for bookmarks and mlines modules.mitchell
2009-02-22Set MARK_*_COLOR for all new views rather than just the current one.mitchell
2009-02-21Fixed toggle bookmark bug, wrap searches; modules/textadept/bookmarks.luamitchell
2009-02-15Cleaned up some Lua code.mitchell
2009-02-15Removed buggy 'Select in Structure' from _m.textadept.editing.mitchell
2009-02-15Rewrote modules/textadept/run.lua.mitchell
2009-02-14Read and write in binary mode for everything.mitchell
2009-02-12Removed old Textmate-style snippets; Lua-style ones are the default anyway.mitchell
2009-02-12Use Tab and Shift+Tab for snippets instead of [MODIFIERS]+I.mitchell
2009-02-10Moved the textadept.locale table into the globals table.mitchell
2009-02-10Use a _type field for special _print() buffers' titles instead of 'Untitled'.mitchell
2009-02-08Removed buffer:find() function.mitchell
2009-01-30Moved highlight-braces from core/events.lua to modules/textadept/editing.lua.mitchell
2009-01-27Do not open a non-existant file from _m.textadept.run.goto_error.mitchell
2009-01-26Changed MARK_BOOKMARK; modules/textadept/bookmarks.luamitchell
MARK_REPLACEALL_END should be the first marker (0), so MARK_BOOKMARK was changed to be the second marker (1).
2009-01-25Removed some rarely-used functions from modules/textadept/editing.lua et. al.mitchell
Including: * autocomplete_word_from_dict * move_line (up and down) * ruby_exec * lua_exec * reformat_paragraph
2009-01-25Moved auto-indent from core/events.lua to modules/textadept/editing.lua.mitchell
2009-01-25Replaced str:match with str:find where applicable for speed improvements.mitchell
2009-01-21Updated some LuaDoc.mitchell
2009-01-21Don't need buffer:goto_pos() in modules/textadept/editing.lua's goto_line().mitchell
2009-01-21Bugfixes in modules/textadept/run.luamitchell
If buffer.shows_errors, double-click should go to the error as well. Also, if the buffer's filename doesn't exist, don't Run or Compile it.
2009-01-19Use the 'shows_messages' buffer for run commands; modules/textadept/run.luamitchell
2009-01-16Updated some LuaDoc; modules/textadept/run.luamitchell
2009-01-14Sometimes goto_line will select text, fix that; modules/textadept/editing.luamitchell
2009-01-14No need for 'run' function for running scripts anymore; modules/lua/commands.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-23Use module browser for adding modules for platform independence; modules/newmitchell
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-12-14Changed language module main command key chain root from Alt+C to Alt+L.mitchell