Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | ||
2020-09-18 | Updated wiki link. | ||
2020-09-14 | Refresh generated documentation. | ||
2020-09-14 | More link updates. | ||
2020-09-14 | More small documentation updates. | ||
2020-09-13 | Updated LuaDoc to avoid writing '{{'. | ||
This confuses Jekyll's Liquid tag processing. | |||
2020-09-13 | Updated book links and information. | ||
2020-09-13 | Lots of documentation updates. | ||
Updated header id generation, anchors, links, and header levels. Added dedicated book page and support data. Removed extra module autocompletion and documentation from Lua module. Removed GPG signing and verification, as everything is built and distributed on GitHub. Removed all release links prior to 10.8 since there is no point in uploading the relevant files to GitHub. | |||
2020-09-13 | Switch back to Scintilla default (4.x), Scinterm, and Scintillua. | ||
Scintilla LongTerm3 maintenance is ending with upcoming Scintilla 5. Textadept now requires a C++17 compiler. Also updated Docker image. | |||
2020-09-10 | Updated documentation header levels. | ||
2020-09-09 | LuaDoc doclet outputs markdown to stdout now. | ||
Now all markdown to HTML is done in one place. Previously, the doclet generated its own HTML. | |||
2020-09-08 | Changed processing pipeline for manually generating documentation. | ||
2020-09-04 | Moved all top-level .md files into docs/ except README.md. | ||
Also fixed lack of header anchors in generated HTML. | |||
2020-09-04 | Renamed doc/ to docs/ and removed bombay dependency. | ||
Added some documentation infrastructure for eventual migration to a new build service. Use a simple Lua script for generating documentation offline. |