Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | ||
2014-11-26 | Allow connection to `events.QUIT` without requiring index of 1. | ||
2014-11-25 | Fixed bug when iterating over root directory; core/lfs_ext.lua | ||
Files returned had two leading slashes (//etc, //usr, etc.). | |||
2014-11-23 | File dialogs in the terminal should span the entire view; core/file_io.lua | ||
2014-11-13 | Added Arabic translation. | ||
Thanks to Ahed Eid. | |||
2014-11-12 | Code and documentation cleanup. | ||
2014-11-11 | Added new `_SCINTILLA.next_image_type()` for registering images. | ||
2014-11-11 | Added keysym for Keypad Enter; core/keys.lua | ||
2014-11-06 | Fixed return values from `ui.dialogs.optionselect()`; core/ui.lua | ||
2014-11-06 | Use the current working directory in fileselect dialogs. | ||
This should have been committed long ago. | |||
2014-10-30 | Added `LINUX` and `BSD` platform flags for the sake of completeness. | ||
Previously, Linux was inferred from the expression `not WIN32 and not OSX`. | |||
2014-10-25 | Improvements to terminal mouse handling. | ||
Emit events for unhandled mouse events and connect to such events in order to focus and resize views. Patch libtermkey with new Win32 PDCurses driver for unified key/mouse input. Update CDK patch to always use libtermkey and to ignore mouse events. Requires Scinterm r97 (changeset 8d1a625c9b4d). Thanks to Chris Emerson for proof of concept code that handles mouse events and for the code that focuses and resizes views. | |||
2014-10-18 | Handle unknown CSI events and bracketed pasted in the terminal version. | ||
For bracketed paste, turn off auto-pair and auto-indent. |