aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-01-25Replaced str:match with str:find where applicable for speed improvements.mitchell
2009-01-25goto_file shouldn't depend on _m.textadept.editing.goto_line; core/ext/find.luamitchell
2009-01-25Fixed some GTK-OSX UI resizing issues caused by the statusbar; src/textadept.cmitchell
According to the gtk+ Bugzilla, Mac OSX implements its own resize grip. So the grip the GtkStatusBar has conflicts with the OSX one and weird stuff happens. This should be fixed in a later version of the GTK-OSX framework.
2009-01-25Fixed bug for SCN_URIDROPPED into an unfocused split view; src/textadept.cmitchell
2009-01-25Updated core/ext/pm/buffer_browser.lua to update the PM cursor appropriately.mitchell
2009-01-25The cursor in the Project Manager can be set through textadept.pm.cursor.mitchell
2009-01-25Fixed bugs with opening binary files; core/file_io.luamitchell
2009-01-25Scroll the view back to how it was for 'no results found'; core/ext/find.luamitchell
2009-01-25Fixed bug with URI dropping and do nothing with directory drops; core/events.luamitchell
2009-01-25textadept.io.reload() scrolls the view back to how it was; core/file_io.luamitchell
2009-01-24Handle 'view_switch' event on split view focus changes; src/textadept.cmitchell
2009-01-24Added Find in Files support.mitchell
2009-01-24Removed 'find' Project Manager browser.mitchell
2009-01-24Use lexer themes defined in Textadept's themes/, not scintilla-st's themes/.mitchell
2009-01-23Look for ~/.ta_theme for setting _THEME; core/init.luamitchell
2009-01-23Allow _THEME to be a directory path, not just a name in themes/; core/events.luamitchell
2009-01-22Updated LuaDoc for textadept.reset() to avoid confusion; core/.textadept.luamitchell
2009-01-22Added tag textadept_1.2 for changeset c94af9938225mitchell
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-19Command line parameters can now be used in Windows.mitchell
2009-01-16Created a way to print messages to different kinds of buffers, not just error.mitchell
Earlier textadept.print() printed to the error buffer. Now it prints to its own message buffer. Additional textadept.print() calls print to that same buffer.
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-14Added key commands, menu items, and locale strings for running/compiling files.mitchell
2009-01-14No need for 'run' function for running scripts anymore; modules/lua/commands.luamitchell
2009-01-14Changed incorrect usage of buffer.call_tip_use_style in themes.mitchell
2009-01-14Moved utilities to run/compile files and decode errors into a Textadept module.mitchell
2009-01-11Added tag textadept_1.1 for changeset 08ab61a85433mitchell
2009-01-11Manually parse ~/.gtkrc-2.0 on Mac since GTK-OSX doesn't do it; src/textadept.cmitchell
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-05Move all 'require' statements into init.lua and label for easy configuration.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-02Fixed core/ext/key_commands_std.lua key conflict.mitchell
2009-01-01Added tag textadept_1.0 for changeset 481bec8a9905mitchell
2009-01-01Updated copyright dates for 2009.mitchell
2008-12-30Added 'Show PM Project' to 'Project Manager' menu; core/ext/menu.luamitchell
2008-12-30Updated Doxygen doc for src/lua_interface.cmitchell
2008-12-30Updated core/ext/keys.lua LuaDoc for the ALT key on Mac OSX.mitchell
2008-12-30Fixes to recognize Windows path separators.mitchell
2008-12-30Use table.concat instead of multiple string concats; core/events.luamitchell
2008-12-23Use module browser for adding modules for platform independence; modules/newmitchell
2008-12-23Updated core/ext/pm/modules_browser.lua to use LuaFileSystem and templates.mitchell
2008-12-23Use table.concat instead of multiple string concats for performance improvement.mitchell
2008-12-23Changed ctags flag for use with Mac OSX; core/ext/pm/ctags_browser.luamitchell