aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-09-23Replaced `textadept.macros.*_recording()` with `textadept.macros.record()`.mitchell
Also updated keybindings.
2019-09-22Replaced `ui.command_entry.*_mode()` with simplified `ui.command_entry.run()`.mitchell
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-21Enabled all theme colors and changed line number colors in the terminal version.mitchell
Previously, only colors used in the theme files were enabled.
2019-09-21Added back "Paste Reindent", but as a separate menu/key/command from "Paste".mitchell
2019-09-20Do not restore rectangular selection mode on buffer switch.mitchell
If the mode was not originally enabled, this just causes confusion.
2019-09-20Restore rectangular selection state when switching between buffers.mitchell
2019-09-19Restore virtual space state when switching between buffers.mitchell
2019-09-19Fixed bug introduced in r2623.mitchell
2019-09-19Do not consider theme files as countable lines of code.mitchell
2019-09-19Small LuaDoc tweak.mitchell
2019-09-19Properly handle absolute paths in run output and case-insensitivity on Windows.mitchell
2019-09-18Refactored "Replace All" to be more performant.mitchell
Avoid changing the selection and scrolling, as this drastically slows things down, particularly on long lines.
2019-09-17Fixed scroll issues when toggling line wrap.mitchell
The current line should always remain visible.
2019-09-15Updated FAQ with HiDPI font display on Windows.mitchell
Thanks to Ashwin Hirschi.
2019-09-01Added tag textadept_10.6 for changeset a3eb885540c9mitchell
2019-09-01Removed unnecessary Scintilla patch.mitchell
Block caret placement is now configurable.
2019-08-31Updated LuaDoc.mitchell
2019-08-30Updated CHANGELOG.md.mitchell
2019-08-30Updated Lua autocompletion and documentation.mitchell
2019-08-30Updated for 10.6.mitchell
2019-08-30Updated to Scintilla 3.11.0.mitchell
2019-08-25Do not auto-indent when pressing enter at the start of a non-empty line.mitchell
2019-08-08Fixed LuaDoc for keybindings.mitchell
2019-08-07Improve caret sticky behavior when switching between buffers.mitchell
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-05Added support for ksh and mksh shells.mitchell
Thanks to Ypnose.
2019-07-30Fail more gracefully when attempting to create buffers on init.mitchell
2019-07-30Document the inability to create buffers during initialization.mitchell
2019-07-30Use CP1252 instead of ISO-8859-1.mitchell
CP1252 is a superset of ISO-8859-1.
2019-07-11Updated to latest Scintilla LongTerm3 revision.mitchell
Scintilla.iface has changed, as has some of its underlying platform API. Testing sooner is better than later.
2019-07-02Added tag textadept_10.5 for changeset aa1c41ba9225mitchell
2019-06-30Updated CHANGELOG.md.mitchell
2019-06-30Updated Lua autocompletion and documentation.mitchell
2019-06-30Updated for 10.5.mitchell
2019-06-30Updated to Scintilla 3.10.6.mitchell
2019-06-02Fixed bug with filters that have extension includes and pattern excludes.mitchell
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-01GTK+ was renamed to GTK recently.mitchell
2019-05-03Updated default main window size and some default dialog sizes.mitchell
1080p (full HD) screens seem to be the norm now.
2019-05-02Added case-insensitive option to `textadept.editing.show_documentation()`.mitchell
2019-05-02Do not advance the caret on failed incremental find.mitchell
2019-04-30Added tag textadept_10.4 for changeset 594d642981eamitchell
2019-04-30Removed "new" references to the Textadept Quick References book.mitchell
2019-04-30Updated CHANGELOG.md.mitchell
2019-04-27Updated Scintilla revision to fix compile error on old Mac OSX SDK.mitchell
2019-04-26Updated CHANGELOG.md.mitchell
2019-04-26Updated Lua autocompletion and documentation.mitchell
2019-04-26Updated for 10.4.mitchell
2019-04-18Do not emit an `events.SAVE_POINT_LEFT` event for unfocused views.mitchell
Forcing a switch to and from the source buffer's view triggers "switch" view events, which can cause trouble. There's no need to know this in real-time and `buffer.modified` can be checked in an `events.BUFFER_AFTER_SWITCH` or `events.VIEW_AFTER_SWITCH` handler.
2019-04-17Updated to Scintilla 3.10.4.mitchell
2019-03-28Updated FAQ to address strange terminal version behavior due to libncurses6.mitchell
2019-03-28Fixed scrolling found text into view on long lines.mitchell