Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2014-10-05 | Replaced command entry text field with a Scintilla buffer. | ||
`ui.command_entry` now has the same functions and fields as `buffer`s as well as an additional `height` property. Note that when the command entry is active, `_G.buffer` is unchanged, so many existing key commands cannot be bound to command entry key modes. See `keys.lua_command` in *modules/textadept/command_entry.lua* for the proper way to bind them. Removed `ui.command_entry.entry_text` and `ui.command_entry.show_completions()`. | |||
2014-09-29 | Updated for 7.7. | ||
2014-09-29 | Updated to Scintilla 3.5.1. | ||
2014-09-17 | More LuaDoc updates. | ||
2014-09-16 | Updated some LuaDoc. | ||
2014-09-11 | Fixed corner-case in switching to most recent buffer after closing; core/ui.lua | ||
2014-09-04 | Enable true spawning on Mac OSX GUI version. | ||
This requires lspawn r25 (changeset acdfac5eb4cf). | |||
2014-09-01 | Updated for Textadept 7.6. | ||
2014-08-18 | Updated to Scintilla 3.5.0. | ||
2014-08-15 | Fixed LuaDoc; core/.buffer.luadoc | ||
2014-08-15 | More options for `lfs.dir_foreach()`; core/lfs_ext.lua | ||
A limit on the level of directories to recurse into can be placed, and directory names can be passed to functions. | |||
2014-08-10 | Switch to previous buffer after closing a buffer; core/ui.lua | ||
2014-08-09 | Indicate presence of a BOM next to statusbar encoding; core/ui.lua | ||
2014-07-19 | Updated Swedish translation; core/locales/locale.sv.conf | ||
Thanks to Niklas Wallén. | |||
2014-07-12 | Implement spawn functionality for terminal version. | ||
Requires lspawn r21. Thanks to Chris Emerson for proof-of-concept code. Spawning still does not work for Win32 terminal version, though. | |||
2014-07-10 | Updated for 7.5. | ||
2014-07-09 | Updated Polish translation; core/locales/locale.pl.conf | ||
Thanks to Piotr Orzechowski. | |||
2014-07-03 | Updated to Scintilla 3.4.4. | ||
2014-07-02 | Updated links and homepage. | ||
2014-06-30 | Condensed manual and API documentation into single files. | ||
2014-06-24 | Updated Polish translation; core/locales/locale.pl.conf | ||
Thanks to Piotr Orzechowski | |||
2014-06-21 | Added Polish translation. | ||
Thanks to Piotr Orzechowski. | |||
2014-06-20 | Added `event.FOCUS` for when Textadept's window receives focus. | ||
2014-06-12 | Lua code cleanup. | ||