Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-02-26 | Improve Windows network directory path handling. | ||
2022-01-31 | Updated copyright year. | ||
2021-04-11 | Initial pass reformatting all code. | ||
Use clang-format, LuaFormatter, and 100 character limit on lines. | |||
2021-03-11 | Do not mark GCC-style "note:" output as compile/run/build/test errors. | ||
2021-02-11 | Added support for TypeScript. | ||
Requires latest Scintillua. | |||
2021-01-29 | Updated copyright information. | ||
2021-01-22 | Added `textadept.run.test()` and `textadept.run.test_commands`. | ||
This enables the running of project tests. | |||
2021-01-22 | Compile, run, and build command functions can also return environment tables. | ||
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 Clojure support. | ||
Requires latest Scintillua. | |||
2020-12-11 | Updated Go error patterns. | ||
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-10-17 | Added `textadept.run.set_arguments()`. | ||
This replaces custom code in *modules/textadept/menu.lua*. | |||
2020-10-02 | Fixed python3 auto-detection for run commands. | ||
2020-09-29 | Updated copyright information. | ||
2020-09-14 | Added support for jq. | ||
Thanks to anonymous. Requires scintillua r841 (changeset a1f0f494ff0e). | |||
2020-09-14 | More small documentation updates. | ||
2020-08-22 | Added `ui.command_entry.active` and fixed bugs in `events.KEYPRESS` handlers. | ||
2020-08-04 | Try to avoid using `lexer` as a string, as it overshadows the `lexer` module. | ||
2020-07-12 | Made `ui.find.goto_file_found()` and `textadept.run.goto_error()` args optional. | ||
2020-07-04 | Added `buffer:style_of_name()` as an analogue to `buffer:name_of_style()`. | ||
2020-07-03 | Added support for Fennel. | ||
Thanks to Momohime Honda. | |||
2020-07-01 | Only save before compile/run if the buffer has been modified. | ||
Auto-saving interferes with commands that read file modification times. | |||
2020-05-26 | Updated to latest Scintilla with ability to get style number from name. | ||
2020-03-26 | Removed extra sets of () around some buffer function calls. | ||
The Scintilla iface was changed to not return a second string length value. | |||
2020-03-26 | Switched to 1-based indices for buffer positions, lines, and countable entities. | ||
2020-03-16 | Moved individual buffer functions in `io` into `buffer`. | ||
e.g. `io.reload_buffer()` was renamed `buffer:reload()`. | |||
2020-03-16 | Detect and allow jumping to internal Lua errors. | ||
2020-03-13 | More code cleanup and refactoring. | ||
2020-03-13 | More code cleanup, refactoring, and reformatting. | ||
2020-03-03 | Added test suite and API type checking for more helpful error messages. | ||
2020-02-21 | Removed '_' mnemonics from locale keys. | ||
Kept backward-compatibility for now. | |||
2020-02-18 | Wrap searches in `textadept.run.goto_error()`. | ||
2019-12-31 | Updated copyright year. | ||
2019-11-26 | Fixed bug in previous commit where flushing does not clear output buffer. | ||
2019-11-25 | Fixed long line output for run, compile, and build commands. | ||
Output is buffered as needed until a line end marker is encountered. Thanks to Ashwin Hirschi. | |||
2019-09-19 | Properly handle absolute paths in run output and case-insensitivity on Windows. | ||
2019-08-05 | Added support for ksh and mksh shells. | ||
Thanks to Ypnose. | |||
2019-02-16 | Updated copyright year. | ||