Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-09 | Updated download links for 11.1. | ||
2021-02-03 | Updated FAQ mentioning initial Git repository size and how to shrink it. | ||
2021-01-29 | Updated changelog. | ||
2021-01-29 | Updated for 11.1. | ||
2021-01-29 | Updated copyright information. | ||
2021-01-22 | `io.get_project_root()` accepts an optional flag for returning a submodule root. | ||
This is for systems like git that have '.git' files (not directories) for submodules under a parent '.git' directory. | |||
2021-01-22 | Added `textadept.run.test()` and `textadept.run.test_commands`. | ||
This enables the running of project tests. | |||
2021-01-22 | Compile, run, and build command functions can also return environment tables. | ||
2020-12-19 | Ensure a bare `ui.find.focus()` call resets incremental and in files options. | ||
2020-12-18 | Shrink images in docs to fit the window/screen. | ||
This is better for mobile in particular. | |||
2020-12-15 | Attempt to improve mobile presentation of docs. | ||
2020-12-11 | Deprecating mailing list in favor of Discussions. | ||
2020-12-01 | Updated book cover thumbnail. | ||
2020-12-01 | Updated Amazon book links. | ||
2020-11-30 | New Quick Reference edition. | ||
2020-11-30 | Updated for 11.0. | ||
2020-11-30 | Updated LuaDoc. | ||
2020-11-16 | Added `events.UNFOCUS` for when Textadept loses focus. | ||
Do not emit this event when a dialog is active. | |||
2020-11-10 | Added argument to `events.FIND_RESULT_FOUND`. | ||
This fixes a bug introduced by r3029 when invoking search via a macro. | |||
2020-11-10 | Fill `keys` and `snippet` tables with language-specific tables on init. | ||
This allows users and language modules to easily add bindings and snippets without stepping on each other. | |||
2020-11-01 | Added optional mode parameter to `ui.command_entry.append_history()`. | ||
This allows for arbitrary appending to history, not just for the current or most recent mode. | |||
2020-10-30 | Updated changelog. | ||
2020-10-30 | Updated for 11.0 beta 2. | ||
2020-10-27 | Updated LuaDoc. | ||
2020-10-20 | Code cleanup. | ||
Of note: * io.save_all_files() does not visit each buffer to save anymore. An unintended side-effect was checking for outside modification (but only if the file itself was modified), so outside changes will always be saved over now. * The menu clicked handler uses assert_type(), so the 'Unknown command' localization is no longer needed. * When printing to a new buffer type would split the view, use an existing split view when possible. * Prefer 'goto continue' construct in loops over nested 'if's. * Fixed clearing of ui.find.replace_entry_text on reset in the GUI version. * Fixed lack of statusbar updating when setting options like buffer EOL mode, indentation, and encoding. * Renamed internal new_snippet() to new() and put it in the snippet metatable. | |||
2020-10-17 | Added `textadept.run.set_arguments()`. | ||
This replaces custom code in *modules/textadept/menu.lua*. | |||
2020-10-13 | Updated migration guide with missing fields. | ||
2020-10-13 | Implement \U, \L, \u, and \l case transformations in regex replacements. | ||
2020-10-12 | Updated LuaDoc for `ui.command_entry.append_history()`. | ||
Clarify that it's not normally needed. | |||
2020-10-12 | Added `ui.command_entry.append_history()` for manually appending history. | ||
Normally history is auto-appended by the default '\n' key handler, but some custom modes may have their own '\n' handlers and did not have a way to append history. | |||
2020-10-11 | Updated LuaDoc. | ||
2020-10-11 | Updated contact information. | ||
2020-10-08 | Small LuaDoc update. | ||
2020-10-08 | Added `textadept.history` module for recording and navigating position history. | ||
2020-10-05 | Various manual and documentation updates. | ||
2020-10-02 | Command entry also considers contents of `textadept` as globals. | ||
Include buffer/view constants as well, which should have been there anyway. | |||
2020-10-01 | Moved 'docs/markdowndoc.lua' into 'scripts/markdowndoc.lua'. | ||
2020-09-30 | Updated code plots. | ||
2020-09-30 | Updated stale links in changelog. | ||
2020-09-30 | Updated changelog. | ||
2020-09-30 | Updated Lua autocompletion and documentation. | ||
2020-09-30 | Updated for 11.0 beta. | ||
2020-09-30 | Document building Textadept using GTK 3.x instead of 2.24. | ||
2020-09-29 | Updated copyright information. | ||
2020-09-25 | Ensure version is included in Manual and API Documentation headers. | ||
2020-09-20 | Added code counting script and inline plots. | ||
Removed redundant stats link. | |||
2020-09-19 | Updated to Scintilla 4.4.5 and Scintillua 4.4.5-1. | ||
2020-09-19 | Added `events.COMMAND_TEXT_CHANGED`. | ||
This is analagous to `events.FIND_TEXT_CHANGED`. | |||
2020-09-19 | Added `events.FILE_{BEFORE,AFTER}_RELOAD` and save/restore bookmarks. | ||
Also moved buffer state save/restore into ui module. | |||
2020-09-19 | Added `ui.update()` for unit tests. | ||