aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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-01Added support for some AppleEvents, use Scintilla namespace on OSX.mitchell
2008-10-27Fixed indentation in src/textadept.cmitchell
2008-10-27Updated Textadept to compile and run on OSX with native GTK framework.mitchell
2008-09-24Added textadept.size property.mitchell
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
2008-09-23Removed unused 'resize_split' function.mitchell
2008-09-21Edited code to suppress warnings generated by MSVC++; src/lua_interface.cmitchell
2008-09-21Textadept gracefully exits when errors occur in core/init.lua.mitchell
Originally the error message was displayed in Textadept, but any attempts to close the program would fail because core/init.lua wasn't properly loaded. Errors from 'l_load_script' are displayed in a dialog box now.
2008-09-21Code cleanup.mitchell
2008-09-21Added LuaDoc to WinMain function, use C++ style cast in it; src/textadept.cmitchell
2008-09-21Use textadept.exe path as textadept_home instead of C:\Program Files\textadept.mitchell
2008-09-19Added preliminary support for Textadept on Windows.mitchell
2008-08-10Updated Doxygen doc; src/textadept.cmitchell
2008-08-10Made set_default_*_properties handlers for their respective *_new events.mitchell
2008-08-08Replaced C code for setting default editor and buffer properties with Lua code.mitchell
2008-06-20Added icons to Textadept.mitchell
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-18Check that 'pixbuf' key is not nil in l_pm_populate; src/lua_interface.cmitchell
2008-06-18Fixed gtktreestore.c warning by ending columns with -1; src/lua_interface.cmitchell
2008-06-17Use liblua5.1.a from Lua Binaries; src/Makefilemitchell
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-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-04Modified Makefile option flag to optimize for size; src/Makefilemitchell
2008-03-03Updated copyright notice to include the year 2008.mitchell
2008-02-29Fixed typo; src/lua_interface.cmitchell
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-21Source code cleanup; src/lua_interface.cmitchell
2007-12-20Set 8 style bits by default; src/textadept.cmitchell
2007-11-30Warn that pm_view content item ID is a string type; src/lua_interface.cmitchell
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-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-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