aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2008-10-08Key commands are quicker and more efficient; core/ext/keys.luamitchell
2008-10-04Added action for 'Find and Replace' menu item; core/ext/menu.luamitchell
2008-10-04Fixed view grow/shrink error when view isn't split; core/ext/menu.luamitchell
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-09-24Added tag beta_r6 for changeset 15efa8aeb048mitchell
2008-09-24Updated LuaDoc for textadept.size property; core/.textadept.luamitchell
2008-09-24Linux comes first; core/file_io.luamitchell
2008-09-24Added textadept.size property.mitchell
2008-09-24Added _THEME variable; themes are now directories with view.lua and buffer.lua.mitchell
Now editing core/events.lua's buffer_new handler function is no longer necessary on a per-user basis. If _THEME is set, that theme's buffer.lua is loaded for a 'buffer_new' event, and view.lua for 'view_new'.
2008-09-23Updated Doxygen docs.mitchell
2008-09-23Merged overloaded 'l_handle_event' functions into one with default parameter.mitchell
2008-09-23Merged 'set_docstatusbar_text' function into 'set_statusbar_text' with a flag.mitchell
2008-09-23If view.size is given a negative number, make it zero; src/lua_interface.cmitchell