aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
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-22Light theme is the default; moved old dark default into its own theme.mitchell
2008-12-22Enable the menubar by default; init.luamitchell
2008-12-22On Mac OSX, the GTK menubar is integrated into the macbar; src/textadept.cmitchell
2008-12-21Finally added ability to quit Textadept from Lua.mitchell
2008-12-21Added an actual project manager for the PM browser.mitchell
2008-12-21Updated core/ext/pm/file_browser.lua to use the LuaFileSystem library.mitchell
2008-12-21Include the LuaFileSystem library; src/Makefilemitchell
2008-12-16textadept.io.close_all() returns true or false now; core/file_io.luamitchell
2008-12-16Project Manager entries use 'text' field, not 'display_text' anymore.mitchell
2008-12-16Updated icons.mitchell
2008-12-14Added option to load key_commands_mac to init.lua.mitchell
2008-12-14Added standard Mac key commands; core/ext/key_commands_mac.luamitchell
2008-12-14Fixed some conflicting key commands; core/ext/key_commands_std.luamitchell
2008-12-14Delete Windows/Linux built-in Scintilla key commands for Mac; core/events.luamitchell
2008-12-14Fixed key commands bug for Mac; core/ext/keys.luamitchell
2008-12-14Fixed find bug when no match is found; core/ext/find.luamitchell
2008-12-14Changed language module main command key chain root from Alt+C to Alt+L.mitchell
2008-12-12Added Light color theme.mitchell
2008-12-12Previous fix for cancelling CocoaDialog was not a fix; core/init.luamitchell
2008-12-10Use UTF8 encoding by default; core/events.luamitchell
2008-12-10Fix cancelling CocoaDialog bug; core/init.luamitchell
2008-12-06Folded code is underlined as in SciTE; themes/scite/view.luamitchell
2008-12-06Updated core/iface.lua.mitchell
2008-12-06Tweaked scripts/gen_iface.lua.mitchell
Ignores SciTE IDM_* constants automatically and changes SC_MASK_FOLDERS from 0xFE000000 to -33554432 due to lua_checklong() issues. (0xFE000000 has a value of 4261412864, but lua_checklong() gives it as -2147483648 due to overflow I suspect. Either way -2147483648 & (1 << SC_MARKNUM_FOLDEROPEN) behaves as expected, but -2147483648 & (1 << SC_MARKNUM_FOLDER) does not.
2008-12-04Use lua_checklong macro instead of checknumber with cast; src/lua_interface.cmitchell
2008-11-22Compile lpeg into Lua so external lpeg.so, lpeg.dll isn't needed; src/Makefilemitchell
2008-11-11Find functionality is mostly handled by Lua now.mitchell
2008-11-08Changed src/Makefile to make different ARCHes easier to compile and package for.mitchell
2008-11-08Added Lua interface functions to mimick find box button presses.mitchell
2008-11-02Fixed typo in src/lua_interface.c for compiling on Mac.mitchell
2008-11-02Fixed key handling and arg handling for Mac.mitchell
2008-11-01Added support for some AppleEvents, use Scintilla namespace on OSX.mitchell
2008-10-30Work around native GTK-OSX handling of Alt key for composing; core/ext/keys.luamitchell
2008-10-27Fixed indentation in src/textadept.cmitchell
2008-10-27Updated Textadept to compile and run on OSX with native GTK framework.mitchell