aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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.
2007-12-02Fixed command line parameters bug; init.luamitchell
When files are passed by the command line, they are assumed to be relative to Textadept's path. Instead, check if the file has a leading '~/' or '/' indicating an absolute path. If so, do not treat it that way. Otherwise treat it as relative.
2007-12-01Added tag beta_r1 for changeset 1652db2b9d3emitchell
2007-11-30Added Usage LuaDoc for textadept.find; core/.find.luamitchell
2007-11-30Removed TODO in LuaDoc; core/ext/pm.luamitchell
2007-11-30Added LuaDoc for pm browsers.mitchell
2007-11-30Warn that pm_view content item ID is a string type; src/lua_interface.cmitchell
2007-11-30Scintilla 1.75 adds a new iface function; core/iface.luamitchell
2007-11-29Hide completions buffer on c_activated; src/textadept.cmitchell
2007-11-22Removed Alt+* key commands in favor of using gtkrc files; src/textadept.cmitchell
2007-11-17Changed font back from Monaco to Bitstream Vera Sans Mono; osx.patchmitchell
2007-11-16Added Mac OSX patch file for CocoaDialog.mitchell
2007-11-16Fixed assertion error caused by replace_target; modules/textadept/editing.luamitchell
2007-11-16Prevent data loss by opening file after 'prepare'ing for save; core/file_io.luamitchell
2007-11-08Moved GTK/GDK keypress mask logic from lua_interface.c to textadept.c.mitchell
2007-11-08Added widget names to GtkEntrys for theming.mitchell
2007-11-03Various reformatting for consistency.mitchell
2007-10-16Added LICENSE.mitchell
2007-10-08find_toggle_focus function code makes more sense; src/find_replace.cmitchell
2007-10-08command_entry visibility is toggled on focus toggle; src/textadept.cmitchell
The visibility of statusbar and doc_statusbar is also toggled.
2007-10-08Switched statusbar and docstatusbar; src/textadept.cmitchell
2007-10-08Set initial window and Scintilla window sizes to be sane; src/textadept.cmitchell
2007-10-07Moved key command manager to core.mitchell
2007-10-07Added refresh key for syntax highlighting; modules/textadept/key_commands.luamitchell
2007-10-06The run function uses textadept.print now; modules/lua/commands.luamitchell
2007-10-06Added textadept.print function that prints to the error buffer.mitchell
2007-10-06Added support for "double-click, goto error" in error buffer; core/events.luamitchell
2007-09-27Added buffer:reload() function.mitchell
2007-09-26Changed warn to be static to fix compile errors; src/textadept.hmitchell
2007-09-26Fixed focus error between multiple instances of Textadept; src/textadept.cmitchell
2007-09-24Updated documentation.mitchell
2007-09-23Rearranged and cleaned up src/lua_interface.c; moved warn to src/textadept.h.mitchell
2007-09-23Added textadept.popupmenu function; src/lua_interface.cmitchell
2007-09-23Renamed l_handle_signal to l_handle_event.mitchell
2007-09-23Replaced l_handle_completion with overloaded l_handle_signal.mitchell