Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-11-30 | Keep auto-enclosed text selected. | ||
2021-11-30 | Added optional argument to `textadept.editing.enclose()` to keep text selected. | ||
2021-11-05 | Added '`' to autopair and typeover. | ||
Also, small code cleanup. | |||
2021-10-01 | Fixed uncommenting comments that are not initially aligned. | ||
2021-06-26 | Append trailing newline to multiple and rectangular selection input for ↵ | ||
`filter_through()`. This fixes issues for commands like `tac` (print in reverse). | |||
2021-06-10 | `textadept.editing.filter_through` respects multiple and rectangular ↵ | ||
selection now. The required Scintilla patch has been upstreamed and will be in the next release. | |||
2021-06-01 | Added support for Gleam. | ||
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-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 | Addressed some minor Luacheck issues. | ||
Not all shadowing warnings need to be fixed. | |||
2021-04-11 | Initial pass reformatting all code. | ||
Use clang-format, LuaFormatter, and 100 character limit on lines. | |||
2021-02-11 | Added support for TypeScript. | ||
Requires latest Scintillua. | |||
2021-01-29 | Updated copyright information. | ||
2021-01-12 | Added Xs support. | ||
Requires latest Scintillua. | |||
2021-01-12 | Added systemd support. | ||
Requires latest Scintillua. | |||
2021-01-12 | Added Spin support. | ||
Requires latest Scintillua. | |||
2021-01-12 | Added RouterOS support. | ||
Requires latest Scintillua. | |||
2021-01-12 | Added fstab support. | ||
Requires latest Scintillua. | |||
2021-01-12 | Added systemd-networkd support. | ||
Requires latest Scintillua. | |||
2021-01-12 | Added Zig support. | ||
Requires latest Scintillua. | |||
2021-01-11 | Added Reason support. | ||
Requires latest Scintillua. | |||
2021-01-11 | Added Pony support. | ||
Requires latest Scintillua. | |||
2021-01-11 | Added Meson support. | ||
Requires latest Scintillua. | |||
2021-01-11 | Added Julia support. | ||
Requires latest Scintillua. | |||
2021-01-11 | Added Fantom support. | ||
Requires latest Scintillua. | |||
2021-01-11 | Added Elm support. | ||
Requires latest Scintillua. | |||
2021-01-11 | Added Clojure support. | ||
Requires latest Scintillua. | |||
2020-10-22 | `textadept.editing.strip_trailing_spaces` should not apply to binary files. | ||
2020-10-20 | Code cleanup. | ||
Of note: * io.save_all_files() does not visit each buffer to save anymore. An unintended side-effect was checking for outside modification (but only if the file itself was modified), so outside changes will always be saved over now. * The menu clicked handler uses assert_type(), so the 'Unknown command' localization is no longer needed. * When printing to a new buffer type would split the view, use an existing split view when possible. * Prefer 'goto continue' construct in loops over nested 'if's. * Fixed clearing of ui.find.replace_entry_text on reset in the GUI version. * Fixed lack of statusbar updating when setting options like buffer EOL mode, indentation, and encoding. * Renamed internal new_snippet() to new() and put it in the snippet metatable. | |||
2020-09-29 | Updated copyright information. | ||
2020-09-14 | Added support for jq. | ||
Thanks to anonymous. Requires scintillua r841 (changeset a1f0f494ff0e). | |||
2020-09-07 | Added `ui.find.active` and prevent word highlighting when searching. | ||
Word auto-highlighting when searching is too distracting. | |||
2020-08-22 | Added `ui.command_entry.active` and fixed bugs in `events.KEYPRESS` handlers. | ||
2020-08-20 | Do not accidentally activate "auto enclose" with some symbol keybindings. | ||
2020-08-17 | Small code cleanup. | ||
2020-08-17 | Added `textadept.editing.auto_enclose` for auto-enclosing selected text. | ||
2020-08-03 | Fixed regression in showing images in Lua command entry completions. | ||
2020-08-03 | Updated LuaDoc. | ||
2020-07-25 | Fixed selected word highlighting with multiple selections. | ||
2020-07-25 | Moved word highlighting back into editing module and disable by default. | ||
Also fixed `HIGHLIGHT_SELECTED` behavior with non-word selections. | |||
2020-07-16 | Minor LuaDoc updates and spelling corrections. | ||
2020-07-14 | Renamed `textadept.editing.block_comment()` to `toggle_comment()`. | ||
2020-07-13 | Auto-highlight all occurrences of selected words and find results. | ||
This supercedes `textadept.editing.highlight_word()`, which has been removed. Changed the color of word highlights in themes. | |||
2020-07-12 | Fixed --line command line switch. | ||
Line number strings need to be converted to numbers. | |||
2020-07-03 | Added support for Fennel. | ||
Thanks to Momohime Honda. | |||
2020-06-09 | Prefer `view.call_tip_*` instead of `buffer.call_tip_*`. | ||
2020-05-26 | Fixed undocumented regression with word completion and case sensitivity. | ||
This feature was inadvertently removed during a refactor. | |||
2020-05-26 | Small code cleanup. | ||
2020-05-25 | Allow views to be used as buffers and update API. | ||
This allows for a superficial separation of buffer- and view-specific Scintilla functionality. buffers and views can now be used interchangeably for the most part, and the APIs are guidance, not hard requirements. User scripts do not require any modification and will continue to function normally. | |||
2020-05-03 | `textadept.editing.highlight_word()` highlights whole words based on context. | ||