Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-28 | Renamed `ui.bufstatusbar_text` to `ui.buffer_statusbar_text`. | ||
2020-06-28 | Changed keybinding modifier keys. | ||
They had always been a bit counter-intuitive. | |||
2020-06-10 | Renamed some buffer/view fields to use American English instead of Australian. | ||
This requires theme updates, primarily due to colour -> color. | |||
2020-06-10 | Replaced `lfs.dir_foreach()` with `lfs.walk()` generator. | ||
2020-06-09 | Prefer `view.call_tip_*` instead of `buffer.call_tip_*`. | ||
2020-06-08 | Prefer `view.property*` instead of `buffer.property*`. | ||
2020-06-05 | Renamed `buffer:set_theme()` to `view:set_theme()` and fixed a bug with splits. | ||
Also improved separate themes-per-view functionality. | |||
2020-05-25 | Allow views to be used as buffers and update API. | ||
This allows for a superficial separation of buffer- and view-specific Scintilla functionality. buffers and views can now be used interchangeably for the most part, and the APIs are guidance, not hard requirements. User scripts do not require any modification and will continue to function normally. | |||
2020-05-09 | Updated migration guide with lexer updates. | ||
2020-04-05 | Updated curses compatibility. | ||
2020-03-30 | Fixed off-by-one issues with `buffer:get_cur_line()`. | ||
2020-03-29 | Removed old migration guides. | ||
Previous guides are in prior releases and in revision history. | |||
2020-03-26 | Switched to 1-based indices for buffer positions, lines, and countable entities. | ||
2020-03-18 | Added `ui.dialogs.progressbar()` and utilize it with Find in Files. | ||
2020-03-17 | Added per-mode command entry history. | ||
2020-03-17 | Updated manual. | ||
2020-03-17 | Added initial migration guide from Textadept 10 to 11. | ||
2020-03-16 | Moved individual buffer functions in `io` into `buffer`. | ||
e.g. `io.reload_buffer()` was renamed `buffer:reload()`. | |||
2020-02-21 | Removed '_' mnemonics from locale keys. | ||
Kept backward-compatibility for now. | |||
2019-09-22 | Replaced `ui.command_entry.*_mode()` with simplified `ui.command_entry.run()`. | ||
The command entry no longer uses named key modes. Instead, mode keys are supplied to `run()` if necessary. The command entry remains modal, though. | |||
2019-07-30 | Fail more gracefully when attempting to create buffers on init. | ||
2019-07-30 | Document the inability to create buffers during initialization. | ||
2019-07-30 | Use CP1252 instead of ISO-8859-1. | ||
CP1252 is a superset of ISO-8859-1. | |||
2019-06-01 | GTK+ was renamed to GTK recently. | ||
2018-11-27 | Added command line switch to jump to a buffer line. | ||
This is more convenient than '-e "goto_line(n - 1)"'. | |||
2018-11-01 | Updated manual and CHANGELOG.md. | ||
2018-05-22 | Note lack of ability to search for newline characters in regexes. | ||
2018-05-04 | Updated migration guide to note that `bit32` has been removed. | ||
2018-04-25 | Removed LuaJIT version of Textadept. | ||
Also updated to Lua 5.3 syntax where held back by LuaJIT's 5.1/5.2 syntax. | |||
2018-04-25 | 64-bit executables require Mac OSX 10.6 or later. | ||
2018-04-19 | Experimental move to 64-bit executables on Mac OSX. | ||
It seems 32-bit executables will not be allowed soon. | |||
2018-03-25 | Removed call restriction on `buffer.set_theme()` and added initial `buffer` arg. | ||
2018-03-19 | Clarified `M-` modifier key for the terminal version in the manual. | ||
2018-03-12 | Start using Scintilla's LongTerm3, which now includes Scintillua and Scinterm. | ||
Since LongTerm3 requires a C++11 compiler, GCC 4.9+ is required. Since C++11 includes regex capability, drop TRE dependency. | |||
2018-02-24 | Terminal key sequence for Ctrl+Space is now 'c ' instead of 'c@'. | ||
2018-02-16 | Save to the loaded session on quit and removed `default_session` option. | ||
2018-02-16 | Added UTF-16 to the default list of detected encodings. | ||
2017-12-31 | Added Textadept 9 to 10 migration guide. | ||
2017-11-12 | Buffer settings on startup apply to subsequent buffers. | ||
As a result, no need for a *properties.lua* file anymore. Also, renamed `ui.set_theme()` to `buffer.set_theme()`. | |||
2017-11-06 | Backported bugfixes and changes from Scintilla 4.0.0 to 4.0.2. | ||
2017-07-02 | Added ability for buffer list to show buffers by z-order. | ||
2017-06-22 | Lua command entry improvements. | ||
Mimic Lua 5.3 interpreter by auto-printing results and making '=' prefix optional, call returned functions implicitly (no calling parentheses required), and pretty print tables. | |||
2017-06-20 | Updated key binding in manual for cancelling a snippet. | ||
2017-03-16 | Mac uses `Esc` now instead of `⎋`; doc/manual.md | ||
2017-02-12 | Improved build for when dependencies are updated, and added summary to manual. | ||
2017-01-06 | Fixed typo; doc/manual.md | ||
2016-11-04 | Removed MacRoman encoding option, as OSX uses UTF-8 by default. | ||
2016-07-06 | Document how to generate Lua autocompletion and documentation for user modules. | ||
2016-07-04 | Added timeout prompt for "Find in Files". | ||
It is now possible to cancel a "Find in Files" search part-way through. | |||
2016-07-04 | Replaced Lua pattern matching with Regex via Scintilla and TRE. | ||
As a result, changed `ui.find.lua` to `ui.find.regex` Also removed luautf8 dependency since it is no longer needed. Regex replacements cannot contain embedded Lua code. Jumping to "find in files" results selects those results instead of just jumping to their respective lines. |