Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-25 | Updated copyright year. | ||
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-10-31 | Removed accidentally committed link. | ||
2017-10-31 | Updated for 9.6. | ||
2017-08-28 | Updated for 9.5. | ||
2017-07-08 | Just link to donation page and e-book page instead of embedding them. | ||
2017-07-02 | Added ability for buffer list to show buffers by z-order. | ||
2017-06-27 | Textadept Quick Reference Third Edition is no longer "new". | ||
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-04-30 | Updated for 9.4. | ||
2017-03-16 | Mac uses `Esc` now instead of `⎋`; doc/manual.md | ||
2017-02-28 | Updated for 9.3. | ||
2017-02-12 | Improved build for when dependencies are updated, and added summary to manual. | ||
2017-01-06 | Fixed typo; doc/manual.md | ||
2016-12-31 | Added footer link; doc/.footer.md | ||
2016-12-31 | Updated copyright information. | ||
2016-12-21 | Updated for 9.2. | ||
2016-12-08 | Updated for 9.1. | ||
2016-11-04 | Removed MacRoman encoding option, as OSX uses UTF-8 by default. | ||
2016-09-29 | Added link to learning Lua; doc/index.html | ||
2016-09-28 | Updated book links. | ||
2016-09-28 | Updated for 9.0. | ||
2016-09-19 | Updated "Why Textadept?" section to be more factual; doc/index.html | ||
2016-09-15 | Added a "Why Textadept?" type of section; doc/index.html | ||
2016-09-15 | Allow on-site donations and EBook purchases. | ||
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. | |||
2016-06-30 | Small manual and LuaDoc updates. | ||
2016-06-27 | Added note on scripting auto-save; doc/manual.md | ||
2016-06-27 | Document new snippet directory paths preference; doc/manual.md | ||
2016-06-27 | Added `textadept.snippets._paths` for file-based snippets. | ||
Thanks to Michael Richter for the idea. | |||
2016-06-27 | Updated migration guide section to read a bit easier; doc/manual.md | ||
2016-06-25 | Updated migration guide; doc/manual.md | ||
2016-06-16 | Changed arguments to `ui.goto_view()` and `view:goto_buffer()`. | ||
They can accept either objects or relative numbers now. They do not accept absolute indices anymore. | |||
2016-06-15 | `textadept.editing.goto_line()` takes 0-based line number. | ||
It used to take a 1-based line number. Mimic Scintilla. | |||
2016-06-15 | Updated migration guide along with formatting updates; doc/manual.md | ||
2016-06-15 | Added new "Getting Started" section to "Scripting"; doc/manual.md | ||
2016-06-15 | Rewrote manual sections 7-9 and updated other sections and links; doc/manual.md | ||
2016-06-15 | Refactored `textadept.run`; modules/textadept/run.lua | ||
Renamed settings, allowed filename arguments to `run()` and `compile()`, changed parameters to `*_OUTPUT` events, changed format of `error_patterns`, and removed syntax checking. | |||
2016-06-15 | Renamed `textadept.session` fields. | ||
2016-06-15 | Changed "find in files" API a bit. | ||
Changed `ui.find.FILTER` to `ui.find.find_in_files_filter` and added an optional filter argument to `ui.find.find_in_files()`. | |||
2016-06-15 | Do not auto-load `post_init.lua` files in language modules anymore. | ||
Additional language module functionality should be manually loaded by the user. | |||
2016-06-15 | Changed some settings and table names in `textadept.editing`. | ||
Language-specific auto-paired characters, typeover characters, and matching braces is no longer supported. | |||
2016-06-15 | Renamed `ui.SILENT_PRINT` to `ui.silent_print`. | ||
2016-06-15 | Changed some of 'lfs_ext' API. | ||
Renamed `lfs.FILTER` to `lfs.default_filter` and removed `exclude_FILTER` argument from `lfs.dir_foreach()`. | |||
2016-06-15 | Removed `exclude_FILTER` parameter from `io.quick_open()`. | ||
It was unnecessarily complicating things. Just construct the proper filter. |