Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-08-08 | Added comment support for Elixir and WSF; modules/textadept/editing.lua | ||
2015-07-16 | Fixed transpose characters bug at buffer start; modules/textadept/editing.lua | ||
2015-06-23 | Allow `select_word()` to select all occurrences; modules/textadept/editing.lua | ||
This takes advantage of some of Scintilla's new API functions. | |||
2015-03-20 | Small documentation updates. | ||
2015-03-19 | Added some support for Rust and TOML. | ||
This requires Scintillua r484 (changeset 6a4307f7d2cb). | |||
2015-03-16 | Code cleanup based on the output of luacheck, a Lua linter. | ||
2015-03-14 | Filter through now uses `spawn()`; modules/textadept/editing.lua | ||
2015-03-12 | Lua code cleanup. | ||
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-09 | Updated to Scintilla 3.5.4. | ||
2015-01-22 | Small code and documentation cleanup. | ||
2015-01-20 | Updated Lua autocompletion and documentation. | ||
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. | |||
2014-12-31 | Updated copyright year. | ||
2014-11-26 | Allow connection to `events.QUIT` without requiring index of 1. | ||
2014-11-11 | Added new `_SCINTILLA.next_image_type()` for registering images. | ||
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-06-30 | Condensed manual and API documentation into single files. | ||
2014-06-20 | More code cleanup; modules/textadept/editing.lua | ||
2014-06-12 | Lua code cleanup. | ||
2014-06-09 | Fixed word autocompletion bug when ignoring case; modules/textadept/editing.lua | ||
2014-05-29 | Code cleanup. | ||
2014-05-28 | Removed `textadept.editing.select_indented_block()`. | ||
2014-05-28 | Fixed bug in highlighting a word from its end; modules/textadept/editing.lua | ||
2014-05-28 | Removed `HIGHLIGHT_BRACES` option; modules/textadept/editing.lua | ||
Setting the style of `INDIC_BRACEMATCH` to `INDIC_HIDDEN` effectively disables brace highlighting. | |||
2014-05-28 | Utilize list separator characters instead of hard-coded characters. | ||
2014-05-25 | Added character equivalents for XPM images; modules/textadept/editing.lua | ||
2014-05-24 | Removed Adeptsense in favor of new framework committed in r1735. | ||
Replaced ANSI C and Lua module Adeptsenses with their equivalent autocompleter functions. | |||
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-13 | Added block comment support for reST and YAML; modules/textadept/editing.lua | ||
2014-01-12 | Updated copyright information. | ||
2013-12-18 | Renamed "hypertext" lexer to "html". | ||
2013-12-12 | More LuaDoc updates. | ||
2013-11-11 | Updated documentation. | ||
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 | 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-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-21 | More LuaDoc updates. | ||
2013-10-18 | Fixed corner case bug in block uncommenting; modules/textadept/editing.lua | ||
The caret is always constrained to the first line when no selection is present. | |||
2013-10-18 | Fix paragraph selection corner case; modules/textadept/editing.lua | ||
2013-10-18 | More LuaDoc updates. | ||
2013-10-09 | Use an indicator to highlight matching braces. | ||
2013-10-09 | More LuaDoc updates. | ||
2013-09-29 | Fix error when block commenting in plain text; modules/textadept/editing.lua | ||
2013-09-29 | Added new `ui.dialogs` module for more user-friendly dialog support. | ||
As a result, removed `ui.filteredlist()` and changed `io.open_file()` and `io.snapopen()` APIs to accept tables of files and paths instead of "\n" delimited strings. | |||
2013-09-27 | Fixed incorrect constants introduced in r1574; modules/textadept/editing.lua | ||
2013-09-21 | Renamed `buffer:convert_eo_ls()` to `buffer:convert_eols()`. | ||
2013-09-18 | Support multiple selections with `select_word()`; modules/textadept/editing.lua | ||