Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-04-02 | Code cleanup. | ||
Do not use `ipairs()` and use more consistent variable names among other things. | |||
2016-01-30 | Added single-instance functionality for Win32 and require GLib 2.28+. | ||
Thanks to Carl Sturtivant for the Win32 proof-of-concept code. | |||
2016-01-29 | Code cleanup; core/args.lua | ||
2016-01-29 | Added '-v' and '--version' command line parameters. | ||
2015-12-31 | Updated copyright date. | ||
2015-03-14 | Prevent -h, --help switches from exiting single instance; core/args.lua | ||
2015-03-12 | Lua code cleanup. | ||
2015-01-22 | Made `args.process()` private. | ||
2014-12-31 | Updated copyright year. | ||
2014-06-30 | Condensed manual and API documentation into single files. | ||
2014-04-10 | Fixed bug introduced by r1710 relating to absolute paths. | ||
2014-04-06 | Added `lfs.abspath()` in order to always use absolute paths. | ||
Thanks to Pedro Andres Aranda Gutierrez. | |||
2014-01-12 | Updated copyright information. | ||
2013-12-19 | Some programs pass lower-case drive letters to external editors; core/args.lua | ||
2013-09-10 | Do not cache `_G.arg`; core/args.lua | ||
This also helps fix a bug caused in part by r1557. | |||
2013-09-09 | Use `events.ARG_NONE` constant instead of string. | ||
2013-05-15 | `_M.textadept = require('textadept')` in user init is superfluous. | ||
The module was being loaded by default anyway. Besides, the user's modules/textadept/init.lua controls which parts are loaded. | |||
2013-04-29 | More code cleanup. | ||
"local buffer = buffer" and similar optimizations are not needed since lexing the buffer is much more expensive and reaction time is limited by how fast the keyboard can submit key presses. | |||
2013-04-25 | Code and documentation cleanup. | ||
2013-04-05 | Initial support for Windows terminal via pdcurses. | ||
2013-04-03 | Textadept should support multiple curses platforms; remove ncurses references. | ||
Requires Scintilla r4436 and Scinterm r45. | |||
2013-01-20 | Updated copyright date. | ||
2012-12-01 | Updated parameter LuaDoc. | ||
2012-11-19 | Rewrote LuaDoc. | ||
2012-11-19 | Changed Lua code style for tables. | ||
2012-09-12 | Documentation overhaul. | ||
Rewrote most of the manual and Lua API to complement each other. Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc. | |||
2012-08-01 | Disable showing help in ncurses; core/args.lua | ||
Lua 'print' statements do not work properly once ncurses has been initialized and there is no way to print to a buffer without overwriting an existing session on exit. | |||
2012-04-10 | Support for single-instance on Linux and BSD with GLib 2.28. | ||
Also added documentation on running with LuaJIT and require GTK+ 2.18 now. | |||
2012-03-16 | Moved "Markdown:" comments into module LuaDoc comments. | ||
2012-03-13 | Use absolute paths for command line files; core/args.lua | ||
2012-03-07 | Updated contact email address. | ||
2012-03-07 | Documentation overhaul with Discount (Markdown implementation). | ||
The standard LuaDoc template is no longer used. Instead, the new `scripts/markdowndoc.lua` has the template for LuaDoc and `scripts/update_doc` has the template for the Manual. Also added README, CHANGELOG, and THANKS files. | |||
2012-01-06 | Updated copyright information. | ||
2011-12-13 | Remove 'package.seeall' from LuaDoc comments. | ||
2011-12-12 | Remove 'module' and update LuaDoc comments appropriately. | ||
2011-12-12 | Updated to Lua 5.2. | ||
2011-09-27 | Reformatted some LuaDoc. | ||
2011-06-24 | Removed '_G' prefix from globals where necessary. | ||
2011-06-24 | Updated Luadoc; core/args.lua | ||
2011-06-23 | Use string constants for event names. | ||
2011-01-21 | Code cleanup. | ||
2010-12-28 | Updated copyright information. | ||
2010-11-30 | New manual. | ||
2010-11-23 | Code cleanup. | ||
Also modified the editing module's enclose() and select_enclosed() functions. | |||
2010-11-19 | Mac OSX textadept.app includes GTK-OSX; the framework is no longer needed. | ||
2010-10-28 | Rename MAC variable in to OSX in Lua, __OSX__ in C. | ||
2010-08-31 | Updated LuaDoc. | ||
2010-06-19 | Small changes to dynamic args messages and Luadoc. | ||
2010-06-18 | Fixed bug with args and sessions. | ||
2010-06-17 | Added dynamic command line argument handling. | ||