Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-01 | Updated changelog. | ||
2021-06-01 | Added support for Gleam. | ||
2021-05-30 | Updated LuaDoc. | ||
2021-05-29 | Updated for 11.2 beta 2. | ||
2021-05-29 | Updated to Scintilla 5.0.3. | ||
Updated themes to use new `view.element_color` and treat all colors as opaque if no alpha was given. | |||
2021-05-29 | Do not attempt to restore the selection when typing after selecting/deleting ↵ | ||
all text. Otherwise each typed character overwrites the previously typed character. | |||
2021-05-01 | Revert printing test output to stdout. | ||
This was not working as hoped in a headless test environment. | |||
2021-05-01 | Print test output to stdout and add option to quit after running tests. | ||
2021-05-01 | Reverted printing initialization errors to stderr. | ||
2021-05-01 | Do not clobber user's terminal on initialization error. | ||
Also fix memory leak. | |||
2021-05-01 | Print initialization errors to stderr in addition to showing dialog. | ||
This can be helpful when running in a headless test environment. | |||
2021-04-30 | Replaced `events.FILE_{BEFORE,AFTER}_RELOAD` with ↵ | ||
`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.) | |||
2021-04-30 | When filtering through, do not replace buffer contents if nothing changed. | ||
This will clear the redo stack, which can be unhelpful when formatting code on save, for example. | |||
2021-04-26 | Fixed Scintilla crash on macOS related to recent Scintilla changes. | ||
Like Windows, macOS does not support font options. | |||
2021-04-19 | Fixed documentation on generating Lua autocompletion and documentation files ↵ | ||
for user modules. | |||
2021-04-16 | Added ability to specify find & replace pane entry font via ↵ | ||
`ui.find.entry_font`. Also use type checks when setting find & replace text and labels. | |||
2021-04-15 | Updated note on running gcov over Textadept. | ||
2021-04-15 | Fixed a couple failing unit tests. | ||
These were not defects, but "stylistic." | |||
2021-04-14 | Attempt to restore view scroll state after `textadept.editing.filter_through()`. | ||
Also prefer `view.first_visible_line =` rather than `view:scroll_lines()` since the latter is only needed when display lines are involved. | |||
2021-04-14 | Updated Scintilla iface LuaDoc. | ||
2021-04-14 | Fixed file extension conflicts. | ||
Prefer: * ANTLR '.g' over Gap * ASM '.S' over R * ini '.inf' over Inform * ASP '.asa' over VB | |||
2021-04-14 | Addressed some minor Luacheck issues. | ||
Not all shadowing warnings need to be fixed. | |||
2021-04-13 | Fixed crash on Windows with new font options in Scintilla 5.0.1. | ||
This patch has been submitted upstream and should be removed after the next Scintilla release. | |||
2021-04-13 | Updated to Scintilla 5.0.1 and latest Scintillua and Scinterm. | ||
Some of the Scintilla API has changed, and by extension the Scintillua API. | |||
2021-04-12 | Fixed a bug where redoing a full-buffer change could jump to an unrelated state. | ||
Do a simple position save instead of using the history mechanism. | |||
2021-04-12 | Fixed some formatting controls. | ||
2021-04-11 | Save/restore view state when undoing/redoing full-buffer changes. | ||
For example external code formatting commands that replace buffer contents. | |||
2021-04-11 | Added tag textadept_11.2_beta for changeset fb167ec0a8be | ||
2021-04-11 | Initial pass reformatting all code. | ||
Use clang-format, LuaFormatter, and 100 character limit on lines. | |||
2021-03-31 | Updated changelog. | ||
2021-03-31 | Textadept Quick Reference is no longer considered newly published. | ||
2021-03-28 | Added lexilla to clean-deps Makefile rule. | ||
2021-03-28 | Updated lexer fold properties test. | ||
Scintilla 5 and ILexer5 appear to fetch lexer properties with SCI_GETPROPERTY now. | |||
2021-03-28 | Updated for 11.2 beta. | ||
2021-03-28 | Updated .gitignore. | ||
2021-03-28 | Updated debugger tests with new project commands. | ||
2021-03-27 | Updated to Scintilla 5.0.0 and Lexilla 5.0.0. | ||
Also updated to latest Scintillua and Scinterm that compile against 5.0.0. | |||
2021-03-11 | Do not mark GCC-style "note:" output as compile/run/build/test errors. | ||
2021-03-01 | Fixed accidental change in lua.sym. | ||
2021-03-01 | Fixed new theme's overriding of default theme's colors. | ||
This only happens on startup when recording initial buffer settings with the `lexer` module mimic. | |||
2021-02-20 | Updated to Lua 5.4.2. | ||
2021-02-15 | Fixed inability to replace found text with escapes like '\n' and '\t'. | ||
2021-02-13 | Take advantage of Scinterm being able to use a native terminal caret. | ||
Also change brace highlight style to not change the background color, as some terminal cursors invert the current cell, so this would cause the highlighted brace at the current position to "unhighlight", causing confusion. This requires latest Scinterm. | |||
2021-02-11 | Added support for TypeScript. | ||
Requires latest Scintillua. | |||
2021-02-10 | Fixed failing test in the terminal version. | ||
2021-02-09 | Fixed curses compile error introduced in previous commit. | ||
2021-02-09 | Added `ui.SHOW_ALL_TABS` option for `ui.tabs`. | ||
Textadept hides the first tab by default since its information is duplicated in the titlebar and screen space is wasted. However, some users choose to hide titlebars (e.g. on window maximize/fullscreen), so this option now exists. | |||
2021-02-09 | Updated download links for 11.1. | ||
2021-02-08 | Expose "lines_added" field for SCN_MODIFIED notifications. | ||
Note that connecting to `events.MODIFIED` is still intentionally undocumented. | |||
2021-02-03 | Updated FAQ mentioning initial Git repository size and how to shrink it. | ||