Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | ||
2013-09-16 | Removed the `SC` prefix from most constants in `_SCINTILLA.constants`. | ||
2013-09-16 | Moved custom markers and indicators into themes and added more properties. | ||
2013-09-13 | Updated some LuaDoc. | ||
2013-09-08 | Expose marker and indicator numbers for greater customization. | ||
Removed their respective color settings. | |||
2013-09-06 | Updated LuaDoc. | ||
2013-08-31 | Allow user scripts to handle `BUFFER_NEW` and `VIEW_NEW` events on startup. | ||
A side effect is more efficient event emission during startup. | |||
2013-08-26 | Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now. | ||
2013-08-26 | Renamed `gui` to `ui` since it's more applicable. | ||
2013-08-24 | Include Scintilla constants in `buffer`s. | ||
2013-06-21 | Do not allow transposing in empty buffer; modules/textadept/editing.lua | ||
2013-06-20 | Fixed crash when transposing in empty buffer; modules/textadept/editing.lua | ||
2013-06-12 | `_M.textadept.editing.block_comment()` supports block comment delimiters. | ||
Also integrated comment strings into `_M.textadept.editing.comment_string` so block commenting works out of the box. | |||
2013-06-12 | Renamed editing module's `STRIP_WHITESPACE_ON_SAVE` to `STRIP_TRAILING_SPACES`. | ||
2013-05-15 | Rewrote theme implementation. | ||
Themes are now just single files that share Textadept's Lua state. Also added a new "settings.lua" that functions in place of buffer and view theme files. Requires latest Scintillua. | |||
2013-05-20 | Code cleanup; modules/textadept/editing.lua | ||
2013-05-20 | Fix caret placement in block comment/uncomment. | ||
Thanks to Richard Philips. | |||
2013-04-30 | More code cleanup. | ||
2013-04-29 | More code cleanup. | ||
"local buffer = buffer" and similar optimizations are not needed since lexing the buffer is much more expensive and reaction time is limited by how fast the keyboard can submit key presses. | |||
2013-04-26 | Consolidated the editing module's `grow_selection()` into `enclose_selected()`. | ||
The former was originally designed to complement the latter. | |||
2013-04-25 | Code and documentation cleanup. | ||
2013-04-24 | Moved `_M.textadept.filter_through` functionality into `editing` module. | ||
2013-04-24 | Use `buffer.word_chars` for autocompleting words instead of a Lua pattern. | ||
2013-04-24 | Changed display of highlighted words; modules/textadept/editing.lua | ||
Indicators are drawn under text and are not translucent anymore. Also, markers are no longer placed on lines. | |||
2013-04-12 | Updated to Scintilla 3.3.1. | ||
2013-04-09 | Fixed bug with highlighting words; modules/textadept/editing.lua | ||
2013-04-03 | Textadept should support multiple curses platforms; remove ncurses references. | ||
Requires Scintilla r4436 and Scinterm r45. | |||
2013-03-10 | Indicator for highlighted words works in ncurses. | ||
This requires Scinterm hg changeset 40 (7e25b9a35fbd). |