aboutsummaryrefslogtreecommitdiff
path: root/modules
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-10Recognize reST and YAML files.mitchell
Requires Scintillua r423.
2014-04-30Updated documentation.mitchell
2014-04-30Disable output buffering in Python; modules/textadept/run.luamitchell
2014-04-22Message buffer can send input to spawned processes; modules/textadept/run.luamitchell
2014-04-10Updated Lua Adeptsense.mitchell
2014-04-10Temporarily disable spawn in OSX due to GLib crashes.mitchell
2014-04-06Clarified "wrapping" in find/replace; modules/textadept/find.luamitchell
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-23Updated to Scintilla 3.4.0 and LuaJIT 2.0.3.mitchell
2014-03-01Use `assert(...)` as a shortcut for `if not ... then error() end`.mitchell
2014-02-12Added split views in the terminal version thanks to Chris Emerson.mitchell
2014-02-05Updated to Scintilla 3.3.9.mitchell
2014-01-12Updated copyright information.mitchell
2014-01-01Updated Lua Adeptsense.mitchell
2014-01-01Merge the separate Textadept and lexer Lua states into a single unified one.mitchell
This is an experimental change and requires the latest Scintillua changes.
2013-12-22Fixed error in file types; modules/textadept/file_types.luamitchell
2013-12-19Added configurable tab context menus.mitchell
Deprecated `textadept.menu.set_contextmenu()` in favor of new `textadept.menu.set_contextmenus()`.
2013-12-18Renamed "hypertext" lexer to "html".mitchell
2013-12-12Honor window maximized setting in session files; modules/textadept/session.luamitchell
2013-12-12More LuaDoc updates.mitchell
2013-11-18LuaDoc updates.mitchell
2013-11-14Added support for Dart; modules/textadept/file_types.luamitchell
2013-11-11Updated Lua Adeptsense.mitchell
2013-11-11Updated documentation.mitchell
2013-11-11Fixed bug when replacement captures have escapes; modules/textadept/find.luamitchell
2013-11-10Disable strip trailing spaces by default.mitchell
It's probably better to have users enable it manually than to do something unexpected.
2013-11-10Store the full Lua pattern match in "%0" for use in replacement text.mitchell
2013-11-10Updated LuaDoc.mitchell
2013-11-07New ANSI C lexer.mitchell
C/C++ lexer was separated into ANSI C and C++ lexers. Also took the opportunity to use shorter macros in compile/run commands.
2013-10-30Updated Lua Adeptsense.mitchell
2013-10-29More documentation updates.mitchell
2013-10-29Fix `enclose()` to enclose the whole current word; modules/textadept/editing.luamitchell
It used to enclose just the part of the word behind the caret.
2013-10-23`goto_ctag()` can show all known tags now; modules/textadept/adeptsense.luamitchell
The "kind" argument is optional.
2013-10-23Added ASM lexer and compile and run commands.mitchell
2013-10-21Updated Lua Adeptsense.mitchell
2013-10-21More LuaDoc updates.mitchell
2013-10-18Fixed corner case bug in block uncommenting; modules/textadept/editing.luamitchell
The caret is always constrained to the first line when no selection is present.
2013-10-18Added "Save All" to the menu.mitchell
2013-10-18The buffer API applies to all buffers now, not just the global one.mitchell
Created a "dummy" Scintilla view for operating on non-global documents. Removed `buffer:check_global()` and replaced `buffer.dirty` with Scintilla's `buffer.modify`.
2013-10-18Fix paragraph selection corner case; modules/textadept/editing.luamitchell