Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-24 | Updated past Scintilla 3.4.2 for `buffer.auto_c_multi` feature. | ||
Removed workaround for autocompleting in multiple selections. Requires Scintilla changeset 5114:bd09a915437d. | |||
2014-05-23 | Renamed `textadept.editing.autocomplete_word()` and added `AUTOCOMPLETE_ALL`. | ||
The new `textadept.editing.autocomplete()` is a generic function for a new autocompletion framework that will replace Adeptsense. The framework involves individual autocompletion functions, such as one for autocompleting words. Also added new `AUTOCOMPLETE_ALL` setting for searching all buffers for word completions. | |||
2014-05-23 | Fixed bug related to captures from previous searches; modules/textadept/find.lua | ||
2014-05-19 | Fixed bug when double-clicking message buffer; modules/textadept/run.lua | ||
2014-05-19 | Fixed bug in opening Manual from Help menu; modules/textadept/menu.lua | ||
2014-05-19 | Use `spawn()` for launching help; modules/textadept/keys.lua | ||
2014-05-13 | Added block comment support for reST and YAML; modules/textadept/editing.lua | ||
2014-05-10 | Recognize reST and YAML files. | ||
Requires Scintillua r423. | |||
2014-04-30 | Updated documentation. | ||
2014-04-30 | Disable output buffering in Python; modules/textadept/run.lua | ||
2014-04-22 | Message buffer can send input to spawned processes; modules/textadept/run.lua | ||
2014-04-10 | Updated Lua Adeptsense. | ||
2014-04-10 | Temporarily disable spawn in OSX due to GLib crashes. | ||
2014-04-06 | Clarified "wrapping" in find/replace; modules/textadept/find.lua | ||
2014-04-01 | Updated Lua Adeptsense; modules/lua/init.lua | ||
2014-04-01 | Workaround for GTKOSX abort; modules/textadept/run.lua | ||
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-28 | Updated Lua Adeptsense. | ||
2014-03-28 | Arguments to `spawn()` should be in _CHARSET, not necessarily UTF-8. | ||
2014-03-28 | Added more documentation on project building. | ||
2014-03-27 | Added basic project support for snapopen and build scripts. | ||
Also fixed some curses errors introduced by the last commit. | |||
2014-03-26 | Include my new "lspawn" module by default for spawning processes. | ||
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-24 | Apparently newer versions of OSX use "Esc"; modules/textadept/keys.lua | ||
Corrected documentation. | |||
2014-03-23 | Updated to Scintilla 3.4.0 and LuaJIT 2.0.3. | ||
2014-03-01 | Use `assert(...)` as a shortcut for `if not ... then error() end`. | ||
2014-02-12 | Added split views in the terminal version thanks to Chris Emerson. | ||
2014-02-05 | Updated to Scintilla 3.3.9. | ||
2014-01-12 | Updated copyright information. | ||
2014-01-01 | Updated Lua Adeptsense. | ||
2014-01-01 | Merge the separate Textadept and lexer Lua states into a single unified one. | ||
This is an experimental change and requires the latest Scintillua changes. | |||
2013-12-22 | Fixed error in file types; modules/textadept/file_types.lua | ||
2013-12-19 | Added configurable tab context menus. | ||
Deprecated `textadept.menu.set_contextmenu()` in favor of new `textadept.menu.set_contextmenus()`. | |||
2013-12-18 | Renamed "hypertext" lexer to "html". | ||
2013-12-12 | Honor window maximized setting in session files; modules/textadept/session.lua | ||
2013-12-12 | More LuaDoc updates. | ||
2013-11-18 | LuaDoc updates. | ||
2013-11-14 | Added support for Dart; modules/textadept/file_types.lua | ||
2013-11-11 | Updated Lua Adeptsense. | ||
2013-11-11 | Updated documentation. | ||
2013-11-11 | Fixed bug when replacement captures have escapes; modules/textadept/find.lua | ||
2013-11-10 | Disable strip trailing spaces by default. | ||
It's probably better to have users enable it manually than to do something unexpected. | |||
2013-11-10 | Store the full Lua pattern match in "%0" for use in replacement text. | ||
2013-11-10 | Updated LuaDoc. | ||
2013-11-07 | New ANSI C lexer. | ||
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-30 | Updated Lua Adeptsense. | ||
2013-10-29 | More documentation updates. | ||
2013-10-29 | Fix `enclose()` to enclose the whole current word; modules/textadept/editing.lua | ||
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.lua | ||
The "kind" argument is optional. | |||
2013-10-23 | Added ASM lexer and compile and run commands. | ||
2013-10-21 | Updated Lua Adeptsense. | ||
2013-10-21 | More LuaDoc updates. | ||