Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-07-25 | Highlight found text in find in files results. | ||
2015-06-30 | Updated for 8.1. | ||
2015-06-23 | Updated to Scintilla 3.5.7. | ||
2015-04-30 | Updated for 8.0. | ||
2015-04-27 | Fixed filename encoding issues on Windows; core/ui.lua | ||
2015-04-19 | Updated for 8.0 beta. | ||
2015-04-18 | Updated to Scintilla 3.5.5. | ||
2015-04-15 | Allow undocumented `events.MODIFIED` to emit position and length. | ||
2015-04-13 | Added `symlink` filter option for ignoring symlinked files and directories. | ||
2015-04-01 | Updated for 8.0 alpha. | ||
2015-03-26 | Document optional signal that can be sent to processes; core/init.lua | ||
This requires lspawn r34 (changeset 85eadda7da2a). | |||
2015-03-20 | Small documentation updates. | ||
2015-03-16 | Code cleanup based on the output of luacheck, a Lua linter. | ||
2015-03-14 | Prevent -h, --help switches from exiting single instance; core/args.lua | ||
2015-03-12 | Lua code cleanup. | ||
2015-03-12 | Removed `keys.LANGUAGE_MODULE_PREFIX` key binding. | ||
2015-03-11 | Updated to Lua 5.3, LPeg 0.12.2, and lfs 1.6.3. | ||
LuaJIT uses Lua 5.3's new utf8 library. Restored documentation for Lua 5.1 symbols and added deprecation notes. | |||
2015-03-11 | Temporarily restore definition of `keys.LANGUAGE_MODULE_PREFIX`. | ||
This is to avoid 3rd party language module breakage in 7.x. Will be removed in 8.0. | |||
2015-03-11 | Fixed bug with new view-specific properties; core/ui.lua | ||
2015-03-10 | Updated for 7.9. | ||
2015-03-10 | Stop documenting some non-useful buffer functions and fields. | ||
2015-03-10 | Made `io.boms` private, as there are few BOMs in existence; core/file_io.lua | ||
2015-03-09 | Removed `keys.LANGUAGE_MODULE_PREFIX` since language modules no longer use it. | ||
Made a note in module documentation that there has been a traditional keychain reserved for use by language modules. | |||
2015-03-09 | Moved `events.FILE_SAVED_AS` into `events.FILE_AFTER_SAVE` as extra argument. | ||
2015-03-09 | Stop documenting hotspots since new indicator attributes supplant hotspots. | ||
Scintilla 3.5.4 added "buffer.indic_hover_style" and "buffer.indic_hover_fore", effectively replacing hotspot styles and colors. Lexers were not using hotspot styles anyway -- hotspots could only be used by manually styling text. | |||
2015-03-09 | Updated to Scintilla 3.5.4. | ||
2015-02-23 | Fixed bug in previous commit when switching to new buffer; core/ui.lua | ||
2015-02-18 | Save and restore view-specific properties in view switch events; core/ui.lua | ||
2015-02-18 | Consider some view-specific properties as buffer-specific ones. | ||
These include "view_eol", "wrap_mode", "view_ws", "margin_type_n", and "margin_width_n". The latter two are for preventing clashes between modules that modify margins on a per-buffer basis. | |||
2015-02-09 | Updated LuaDoc; core/.buffer.luadoc | ||
2015-01-31 | Updated for 7.8. | ||
2015-01-29 | Removed language-specific context menus. | ||
Editing `textadept.menu.context_menu` directly is good enough. | |||
2015-01-22 | Small code and documentation cleanup. | ||
2015-01-22 | Made `args.process()` private. | ||
2015-01-20 | Check for modified files after resuming from suspend; core/file_io.lua | ||
2015-01-20 | Updated for 7.8 beta 3. | ||
2015-01-20 | Updated to Scintilla 3.5.3. | ||
2015-01-15 | Added events for terminal suspend and resume. | ||
Suspend can be prevented by an error handler, described in a new FAQ entry. New `events.RESUME` replaces `events.FOCUS` for the terminal version. Utilize these events to disable/enable bracketed paste and mouse modes. | |||
2015-01-15 | Fix opening network path files on Win32. | ||
Thanks to Daniel Wutke. | |||
2015-01-12 | Emit an `events.FOCUS` event after resuming from a suspended state. | ||
2015-01-09 | Updated for 7.8 beta 2. | ||
2015-01-03 | Fixed LuaDoc; core/init.lua | ||
The newly documented `spawn_proc:close()` function requires lspawn changeset 30:613c71d29856. | |||
2014-12-31 | Updated copyright year. | ||
2014-12-24 | Small code and documentation cleanup. | ||
2014-12-23 | Enable suspend in the terminal version. | ||
Patch libtermkey to allow this and also to support mouse enabling/disabling. Needed to change ^Z undo to M-Z and added M-S-Z as extra redo. | |||
2014-12-16 | Updated Luadoc; core/.buffer.luadoc | ||
2014-12-09 | Updated to Scintilla 3.5.2. | ||
2014-11-30 | Updated for 7.8 beta. | ||
2014-11-27 | Small code cleanup. | ||
2014-11-26 | Fixed bug in jumping to compile/run errors and clear annotations before builds. | ||