aboutsummaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
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
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-08Fix bug when file is not matched in modules/lua/commands.lua.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-06-20Simplified get_line in modules/lua/commands.lua.mitchell
2008-06-18Added modules browser to the Project Manager.mitchell
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