aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-05-19Fixed bug in opening Manual from Help menu; modules/textadept/menu.luamitchell
2014-05-19Use `spawn()` for launching help; modules/textadept/keys.luamitchell
2014-05-13Added block comment support for reST and YAML; modules/textadept/editing.luamitchell
2014-05-13Documented new `proc:read()`; core/.proc.luadocmitchell
Requires lspawn r18.
2014-05-10Recognize reST and YAML files.mitchell
Requires Scintillua r423.
2014-05-10Add "_HOME/modules" to `package.cpath`; init.luamitchell
2014-05-10Fixed bug in exporting Lua symbols on Windows.mitchell
2014-04-30Added tag textadept_7.2 for changeset d68f10053b9bmitchell
2014-04-30Updated CHANGELOG.md.mitchell
2014-04-30Updated documentation.mitchell
2014-04-30Disable output buffering in Python; modules/textadept/run.luamitchell
2014-04-30Updated for 7.2.mitchell
2014-04-22Message buffer can send input to spawned processes; modules/textadept/run.luamitchell
2014-04-11Added tag textadept_7.2_beta_4 for changeset b11bd30a7e6amitchell
2014-04-11Updated CHANGELOG.md.mitchell
2014-04-10Updated Lua Adeptsense.mitchell
2014-04-10Updated for 7.2 beta 4.mitchell
2014-04-10More accurate error message; src/textadept.cmitchell
2014-04-10Temporarily disable spawn in OSX due to GLib crashes.mitchell
2014-04-10Fixed bug introduced by r1710 relating to absolute paths.mitchell
2014-04-07Added page describing Textadept's underlying technologies.mitchell
2014-04-06Added `lfs.abspath()` in order to always use absolute paths.mitchell
Thanks to Pedro Andres Aranda Gutierrez.
2014-04-06Fixed bug when cancelling dropdown dialog; core/ui.luamitchell
2014-04-06Clarified "wrapping" in find/replace; modules/textadept/find.luamitchell
2014-04-01Added tag textadept_7.2_beta_3 for changeset ecdf2fd8e2e7mitchell
2014-04-01Updated CHANGELOG.md.mitchell
2014-04-01Updated for 7.2 beta 2.mitchell
2014-04-01Updated to Scintilla 3.4.1; src/Makefilemitchell
2014-04-01Updated Lua Adeptsense; modules/lua/init.luamitchell
2014-04-01Workaround for GTKOSX abort; modules/textadept/run.luamitchell
There is a failed assertion related to file descriptors which is somehow caused by executing a Lua callback on process exit. If there is no Lua callback, there is no abort. Closing file descriptors before executing the Lua callback has no effect.
2014-03-28Updated Lua Adeptsense.mitchell
2014-03-28Arguments to `spawn()` should be in _CHARSET, not necessarily UTF-8.mitchell
2014-03-28Added more documentation on project building.mitchell
2014-03-27Added basic project support for snapopen and build scripts.mitchell
Also fixed some curses errors introduced by the last commit.
2014-03-26Include my new "lspawn" module by default for spawning processes.mitchell
The `textadept.run` module now uses `spawn()` instead of `io.popen()`. This module replaces the dependency on winapi. Removed experimental `io.popen()` and `os.execute()` hooks. They may be re-implemented later using `spawn()`.
2014-03-24Apparently newer versions of OSX use "Esc"; modules/textadept/keys.luamitchell
Corrected documentation.
2014-03-24Updated CDK compiling info for new "optionselect" dialog; doc/12_Compiling.mdmitchell
2014-03-23Updated to Scintilla 3.4.0 and LuaJIT 2.0.3.mitchell
2014-03-20Added new `ui.SILENT_PRINT` option for printing to buffers silently; core/ui.luamitchell
Those buffers will not steal focus and no views will be split.
2014-03-12Changed line endings back to UNIX; THANKS.mdmitchell
2014-03-10Fixed Win32 terminal bug that disallowed Shifted characters; src/textadept.cmitchell
2014-03-05Added compilation issue to FAQ.md.mitchell
2014-03-05Added support for gtdialog's new `optionselect` dialog.mitchell
This requires gtdialog r68 (changeset 1426c89d2874).
2014-03-01Added tag textadept_7.2_beta_2 for changeset 6fee281f7ea8mitchell
2014-03-01Updated CHANGELOG.md.mitchell
2014-03-01Added tag textadept_7.2_beta for changeset b81655094b51mitchell
2014-03-01Updated for 7.2 beta 2.mitchell
2014-03-01Use `assert(...)` as a shortcut for `if not ... then error() end`.mitchell
2014-02-19Fixed bug introduced by last commit; core/ui.luamitchell
2014-02-18Fixed bug with empty entries in multiple entry inputdialogs; core/ui.luamitchell