Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-11 | Added tag textadept_9.0_alpha_2 for changeset fb2479930a18 | ||
2016-07-11 | Updated CHANGELOG.md. | ||
2016-07-11 | Updated Lua autocompletion and documentation. | ||
2016-07-11 | Updated for 9.0 alpha 2. | ||
2016-07-07 | Try to differentiate between Python 3 and 2 in run commands. | ||
2016-07-06 | Document how to generate Lua autocompletion and documentation for user modules. | ||
2016-07-06 | Added context to localization messages for easier translation. | ||
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 | Fixed inability to effectively halt `lfs.dir_foreach()` loops; core/lfs_ext.lua | ||
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-07-04 | Check bounds for `buffer:text_range()`; core/init.lua | ||
2016-07-04 | Fixed OSX build; src/Makefile | ||
libgthread.dylib is still required by at least libgtkmacintegration.dylib. | |||
2016-07-01 | Added tag textadept_9.0_alpha for changeset 6f36de80cf97 | ||
2016-07-01 | Fixed compile error introduced in the terminal version; src/textadept.c | ||
2016-07-01 | Updated CHANGELOG.md. | ||
2016-07-01 | Updated Lua autocompletion and documentation. | ||
2016-06-30 | Small manual and LuaDoc updates. | ||
2016-06-30 | Updated for 9.0 alpha. | ||
2016-06-27 | Added note on scripting auto-save; doc/manual.md | ||
2016-06-27 | Small code cleanup and documentation updates. | ||
2016-06-27 | Document new snippet directory paths preference; doc/manual.md | ||
2016-06-27 | Show file-based snippets in the selection dialog; modules/textadept/snippets.lua | ||
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-25 | Combined view metamethods into one and cleaned up some code and comments. | ||
Also added placeholder code for emulating view-specific properties. | |||
2016-06-25 | Small code and documentation cleanup. | ||
2016-06-19 | Updated translations. | ||
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 | Updated links in documentation pages. | ||
2016-06-15 | Added new "Getting Started" section to "Scripting"; doc/manual.md | ||
2016-06-15 | Lots of small LuaDoc improvements (grammar mainly). | ||
2016-06-15 | Refactored LuaDoc for `_M`; core/._M.luadoc | ||
2016-06-15 | Rewrote manual sections 7-9 and updated other sections and links; doc/manual.md | ||
2016-06-15 | Prefer '$(...)' notation in themes over '%(...)'. | ||
The latter will still work though for now. | |||
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 | Allow binary files to be encoded in something else. | ||
UTF-16 files (and other encodings with null bytes) are initially recognized as binary files (no encoding). Allow encodings to be set for such files after load. | |||
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 | Be more liberal about comments in locale files and use '#' by default. | ||
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 handling of tables as key/menu commands; use functions only. | ||
2016-06-15 | Removed `exclude_FILTER` parameter from `io.quick_open()`. | ||
It was unnecessarily complicating things. Just construct the proper filter. | |||
2016-06-15 | Removed CVS project recognition and assume Subversion v1.8+. | ||
2016-06-15 | Removed explicit detection and use of extinct CR line endings. | ||
It's quite possible some of Textadept's functions didn't handle them properly anyway. |