aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-06-20Added icons to Textadept.mitchell
2008-06-20Added to LuaDoc for pm.browser; core/.browser.luamitchell
2008-06-20Simplified get_line in modules/lua/commands.lua.mitchell
2008-06-19Added extra note in LuaDoc about quit handler; core/events.luamitchell
2008-06-19l_handle_event should return false if function check fails; src/lua_interface.cmitchell
2008-06-18Re-structured src/textadept.h.mitchell
2008-06-18Updated modules LuaDoc to include info about the modules browser; core/._m.luamitchell
2008-06-18No need for empty string pixmap in core/ext/pm/modules_browser.lua.mitchell
2008-06-18Check that 'pixbuf' key is not nil in l_pm_populate; src/lua_interface.cmitchell
2008-06-18Added modules browser to the Project Manager.mitchell
2008-06-18Fixed gtktreestore.c warning by ending columns with -1; src/lua_interface.cmitchell
2008-06-18Always load Project Manager settings from session file.mitchell
2008-06-17Use liblua5.1.a from Lua Binaries; src/Makefilemitchell
2008-06-17Updated copyright year information for LuaDoc files.mitchell
2008-06-17Include a lua.a like scintilla-st.a for source compile.mitchell
2008-06-17Added Tab-completion to Lua Command Entry.mitchell
2008-06-15Merged properties.h into textadept.h and textadept.c.mitchell
2008-06-15Eliminated build warnings.mitchell
2008-06-15Used 'signal' macros in find_create_ui; src/textadept.cmitchell
2008-06-15Merged pm.c and find_replace.c into textadept.c; updated Makefile.mitchell
2008-06-15Added doxygen documentation to source files.mitchell
2008-05-25Added mime type for Ragel files; core/ext/mime_types.luamitchell
2008-05-25Added LuaDoc for textadept.reset(); core/.textadept.luamitchell
2008-05-13Fixed bug for menu actions on non-focused buffer; core/ext/pm/buffer_browser.luamitchell
2008-03-05Added tag beta_r3 for changeset 4fff831300a3mitchell
2008-03-05Updated osx.patch.mitchell
2008-03-05Added list of symbols to export when compiling Lua; src/lua.symmitchell
2008-03-04No external Lua dependency; Textadept compiles with Lua and exports its symbols.mitchell
2008-03-04Updated to use new modular lua_dialog.lua; core/init.luamitchell
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-04Modified Makefile option flag to optimize for size; src/Makefilemitchell
2008-03-04Added scripts/ directory.mitchell
2008-03-03Modified some package paths for consistency.mitchell
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 typo; src/lua_interface.cmitchell
2008-02-29Fixed empty buffer.filename bug in save_as(); core/file_io.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-23Updated LuaDoc error; core/.browser.luamitchell
2008-02-10Removed boolean redundancy; core/ext/pm/ctags_browser.luamitchell
2008-02-10Added new find in files project manager browser.mitchell
2008-02-10Instead of io.popen():read(), a file descriptor is kept and close()'d afterward.mitchell
2008-02-03Added textadept.reset() function for resetting the Lua state.mitchell
The l_init function takes an additional reinit boolean as a result. When resetting, the package.loaded and _G tables are cleared. Since the textadept.buffers, textadept.views, and arg tables were originally in _G, they were moved to the LUA_REGISTRYINDEX table so as not to be lost. They are still available in _G, but as links to the tables in LUA_REGISTRYINDEX. textadept.reset() sets a global RESETTING boolean to true when init.lua is re-run so things like reloading a session or reloading files from the command line do not occur. The boolean is set to nil afterwards.
2007-12-24Fixed setting of Ruby lexer after detecting filetype; core/ext/mime_types.luamitchell
2007-12-21Source code cleanup; src/lua_interface.cmitchell
2007-12-20Added tag beta_r2 for changeset 9f2fc88306e2mitchell
2007-12-20Updated to include the setting of 8 style bits by default; osx.patchmitchell
2007-12-20Set 8 style bits by default; src/textadept.cmitchell
2007-12-03Fixed package precedence bug; init.luamitchell
When Textadept opens a file that is associated with a module, it loads that module to get filetype-specific functionality. When operating in a directory like lexers/ and opening a lexer file, Textadept wants to open the Lua module but mistakenly thinks that the Lua lexer (lua.lua) is the module. This fix gives the module path precedence over the package path.