Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-13 | Make new arguments to `events.TAB_CLICKED` backwards-compatible. | ||
2019-11-08 | API file lists and Lua tags lists can contain functions that return file paths. | ||
This gives more control over when to include certain autocompletion and documentation files like Textadept's API. | |||
2019-11-07 | Split Lua and Textadept autocompletion and documentation files. | ||
Textadept autocompletion and documentation is now only performed on Textadept files. Modified the LuaDoc doclet to only process "lua.luadoc" on its own, and updated the Makefile rule accordingly. | |||
2019-11-07 | Removed deprecated `ui.command_entry` functions. | ||
2019-11-07 | Simplified some Makefile rules. | ||
2019-11-07 | Changed `events.TAB_CLICKED` to emit button clicked as well as modifier keys. | ||
This allows users to close buffers on middle-click for example. | |||
2019-10-31 | Added tag textadept_10.7 for changeset 76072c308aa9 | ||
2019-10-31 | Updated CHANGELOG.md. | ||
2019-10-31 | Updated Lua autocompletion and documentation. | ||
2019-10-31 | Updated for 10.7. | ||
2019-10-26 | Updated to Scintilla 3.11.1. | ||
2019-10-06 | Ensure `events.BUFFER_BEFORE_SWITCH` is emitted properly during `buffer.new()`. | ||
It appears that calling SCI_CREATEDOCUMENT alters view state immediately such that at least fold state is no longer available to store. | |||
2019-09-27 | Fixed macro toggling with some key combinations. | ||
2019-09-25 | Fixed opening of non-UTF-8-encoded filenames dropped into a view. | ||
2019-09-23 | Replaced `textadept.macros.*_recording()` with `textadept.macros.record()`. | ||
Also updated keybindings. | |||
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-09-21 | Enabled all theme colors and changed line number colors in the terminal version. | ||
Previously, only colors used in the theme files were enabled. | |||
2019-09-21 | Added back "Paste Reindent", but as a separate menu/key/command from "Paste". | ||
2019-09-20 | Do not restore rectangular selection mode on buffer switch. | ||
If the mode was not originally enabled, this just causes confusion. | |||
2019-09-20 | Restore rectangular selection state when switching between buffers. | ||
2019-09-19 | Restore virtual space state when switching between buffers. | ||
2019-09-19 | Fixed bug introduced in r2623. | ||
2019-09-19 | Do not consider theme files as countable lines of code. | ||
2019-09-19 | Small LuaDoc tweak. | ||
2019-09-19 | Properly handle absolute paths in run output and case-insensitivity on Windows. | ||
2019-09-18 | Refactored "Replace All" to be more performant. | ||
Avoid changing the selection and scrolling, as this drastically slows things down, particularly on long lines. | |||
2019-09-17 | Fixed scroll issues when toggling line wrap. | ||
The current line should always remain visible. | |||
2019-09-15 | Updated FAQ with HiDPI font display on Windows. | ||
Thanks to Ashwin Hirschi. | |||
2019-09-01 | Added tag textadept_10.6 for changeset a3eb885540c9 | ||
2019-09-01 | Removed unnecessary Scintilla patch. | ||
Block caret placement is now configurable. | |||
2019-08-31 | Updated LuaDoc. | ||
2019-08-30 | Updated CHANGELOG.md. | ||
2019-08-30 | Updated Lua autocompletion and documentation. | ||
2019-08-30 | Updated for 10.6. | ||
2019-08-30 | Updated to Scintilla 3.11.0. | ||
2019-08-25 | Do not auto-indent when pressing enter at the start of a non-empty line. | ||
2019-08-08 | Fixed LuaDoc for keybindings. | ||
2019-08-07 | Improve caret sticky behavior when switching between buffers. | ||
This works best with buffer.CARET_STICKY_OFF. For any other sticky setting, the last x position may be lost (e.g. when set by mouse click, inserted indentation, etc.). | |||
2019-08-05 | Added support for ksh and mksh shells. | ||
Thanks to Ypnose. | |||
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-07-11 | Updated to latest Scintilla LongTerm3 revision. | ||
Scintilla.iface has changed, as has some of its underlying platform API. Testing sooner is better than later. | |||
2019-07-02 | Added tag textadept_10.5 for changeset aa1c41ba9225 | ||
2019-06-30 | Updated CHANGELOG.md. | ||
2019-06-30 | Updated Lua autocompletion and documentation. | ||
2019-06-30 | Updated for 10.5. | ||
2019-06-30 | Updated to Scintilla 3.10.6. | ||
2019-06-02 | Fixed bug with filters that have extension includes and pattern excludes. | ||
This was particularly problematic when attempting to fetch all files with a given extension, but not in a particular directory. Also updated some relevant LuaDoc and removed temporary compatibility warnings. | |||
2019-06-01 | GTK+ was renamed to GTK recently. | ||