aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Updated to a more recent version of cloc for counting code.Gravatar mitchell2021-06-16
|
* Added tag textadept_11.2_beta_3 for changeset 83cd6420b3a4Gravatar mitchell2021-06-12
|
* Fixed incorrect bitwise operation.Gravatar mitchell2021-06-12
| | | | This consolidates changes from r3135 and r3149 and fixes an additional restore selection case.
* Updated changelog.Gravatar mitchell2021-06-11
|
* Updated Lua autocompletion and documentation.Gravatar mitchell2021-06-11
|
* Updated for 11.2 beta 3.Gravatar mitchell2021-06-11
|
* Support "Replace All" in multiple and rectangular selection.Gravatar mitchell2021-06-11
|
* `textadept.editing.filter_through` respects multiple and rectangular ↵Gravatar mitchell2021-06-10
| | | | | | selection now. The required Scintilla patch has been upstreamed and will be in the next release.
* Do not attempt to restore the selection when typing after selecting/deleting ↵Gravatar mitchell2021-06-08
| | | | | | all text. This extends r3135 to also handle auto-paired characters.
* Fixed display of secondary selections on Linux.Gravatar mitchell2021-06-05
|
* Allow "Replace All" for empty regex matches.Gravatar mitchell2021-06-05
|
* Allow syntax highlighting to be preserved in selected text.Gravatar mitchell2021-06-04
| | | | Also fix some visual issues with selected and inactive text.
* Fixed download link in changelog.Gravatar mitchell2021-06-02
|
* Added tag textadept_11.2_beta_2 for changeset 3831d8295575Gravatar mitchell2021-06-01
|
* Fixed typo in changelog.Gravatar mitchell2021-06-01
|
* Updated to latest Scintillua and Scinterm.Gravatar mitchell2021-06-01
|
* Updated scintilla.patch for Scintilla 5.0.3.Gravatar mitchell2021-06-01
|
* Updated changelog.Gravatar mitchell2021-06-01
|
* Added support for Gleam.Gravatar mitchell2021-06-01
|
* Updated LuaDoc.Gravatar mitchell2021-05-30
|
* Updated for 11.2 beta 2.Gravatar mitchell2021-05-29
|
* Updated to Scintilla 5.0.3.Gravatar mitchell2021-05-29
| | | | Updated themes to use new `view.element_color` and treat all colors as opaque if no alpha was given.
* Do not attempt to restore the selection when typing after selecting/deleting ↵Gravatar mitchell2021-05-29
| | | | | | all text. Otherwise each typed character overwrites the previously typed character.
* Revert printing test output to stdout.Gravatar mitchell2021-05-01
| | | | This was not working as hoped in a headless test environment.
* Print test output to stdout and add option to quit after running tests.Gravatar mitchell2021-05-01
|
* Reverted printing initialization errors to stderr.Gravatar mitchell2021-05-01
|
* Do not clobber user's terminal on initialization error.Gravatar mitchell2021-05-01
| | | | Also fix memory leak.
* Print initialization errors to stderr in addition to showing dialog.Gravatar mitchell2021-05-01
| | | | This can be helpful when running in a headless test environment.
* Replaced `events.FILE_{BEFORE,AFTER}_RELOAD` with ↵Gravatar mitchell2021-04-30
| | | | | | | `events.BUFFER_{BEFORE,AFTER}_REPLACE_TEXT`. This allows more features to save/restore state when buffer contents are replaced (e.g. file reload, filter through, etc.)
* When filtering through, do not replace buffer contents if nothing changed.Gravatar mitchell2021-04-30
| | | | This will clear the redo stack, which can be unhelpful when formatting code on save, for example.
* Fixed Scintilla crash on macOS related to recent Scintilla changes.Gravatar mitchell2021-04-26
| | | | Like Windows, macOS does not support font options.
* Fixed documentation on generating Lua autocompletion and documentation files ↵Gravatar mitchell2021-04-19
| | | | for user modules.
* Added ability to specify find & replace pane entry font via ↵Gravatar mitchell2021-04-16
| | | | | | `ui.find.entry_font`. Also use type checks when setting find & replace text and labels.
* Updated note on running gcov over Textadept.Gravatar mitchell2021-04-15
|
* Fixed a couple failing unit tests.Gravatar mitchell2021-04-15
| | | | These were not defects, but "stylistic."
* Attempt to restore view scroll state after `textadept.editing.filter_through()`.Gravatar mitchell2021-04-14
| | | | | Also prefer `view.first_visible_line =` rather than `view:scroll_lines()` since the latter is only needed when display lines are involved.
* Updated Scintilla iface LuaDoc.Gravatar mitchell2021-04-14
|
* Fixed file extension conflicts.Gravatar mitchell2021-04-14
| | | | | | | | Prefer: * ANTLR '.g' over Gap * ASM '.S' over R * ini '.inf' over Inform * ASP '.asa' over VB
* Addressed some minor Luacheck issues.Gravatar mitchell2021-04-14
| | | | Not all shadowing warnings need to be fixed.
* Fixed crash on Windows with new font options in Scintilla 5.0.1.Gravatar mitchell2021-04-13
| | | | This patch has been submitted upstream and should be removed after the next Scintilla release.
* Updated to Scintilla 5.0.1 and latest Scintillua and Scinterm.Gravatar mitchell2021-04-13
| | | | Some of the Scintilla API has changed, and by extension the Scintillua API.
* Fixed a bug where redoing a full-buffer change could jump to an unrelated state.Gravatar mitchell2021-04-12
| | | | Do a simple position save instead of using the history mechanism.
* Fixed some formatting controls.Gravatar mitchell2021-04-12
|
* Save/restore view state when undoing/redoing full-buffer changes.Gravatar mitchell2021-04-11
| | | | For example external code formatting commands that replace buffer contents.
* Added tag textadept_11.2_beta for changeset fb167ec0a8beGravatar mitchell2021-04-11
|
* Initial pass reformatting all code.Gravatar mitchell2021-04-11
| | | | Use clang-format, LuaFormatter, and 100 character limit on lines.
* Updated changelog.Gravatar mitchell2021-03-31
|
* Textadept Quick Reference is no longer considered newly published.Gravatar mitchell2021-03-31
|
* Added lexilla to clean-deps Makefile rule.Gravatar mitchell2021-03-28
|
* Updated lexer fold properties test.Gravatar mitchell2021-03-28
| | | | | Scintilla 5 and ILexer5 appear to fetch lexer properties with SCI_GETPROPERTY now.