aboutsummaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2021-02-11Added support for TypeScript.mitchell
Requires latest Scintillua.
2021-02-09Added `ui.SHOW_ALL_TABS` option for `ui.tabs`.mitchell
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-01-29Updated for 11.1.mitchell
2021-01-29Updated copyright information.mitchell
2021-01-24Fixed bug restoring view state in an intermediate buffer after closing one.mitchell
2021-01-22`io.get_project_root()` accepts an optional flag for returning a submodule root.mitchell
This is for systems like git that have '.git' files (not directories) for submodules under a parent '.git' directory.
2021-01-22Added `textadept.run.test()` and `textadept.run.test_commands`.mitchell
This enables the running of project tests.
2021-01-22Compile, run, and build command functions can also return environment tables.mitchell
2021-01-12Added Xs support.mitchell
Requires latest Scintillua.
2021-01-12Added systemd support.mitchell
Requires latest Scintillua.
2021-01-12Added Spin support.mitchell
Requires latest Scintillua.
2021-01-12Added RouterOS support.mitchell
Requires latest Scintillua.
2021-01-12Added fstab support.mitchell
Requires latest Scintillua.
2021-01-12Added systemd-networkd support.mitchell
Requires latest Scintillua.
2021-01-12Added Zig support.mitchell
Requires latest Scintillua.
2021-01-11Added Reason support.mitchell
Requires latest Scintillua.
2021-01-11Added Pony support.mitchell
Requires latest Scintillua.
2021-01-11Added Meson support.mitchell
Requires latest Scintillua.
2021-01-11Added Julia support.mitchell
Requires latest Scintillua.
2021-01-11Added Fantom support.mitchell
Requires latest Scintillua.
2021-01-11Added Elm support.mitchell
Requires latest Scintillua.
2021-01-11Added Clojure support.mitchell
Requires latest Scintillua.
2020-12-22Fixed `buffer:reload()` only reloading up to a NUL byte, if present.mitchell
2020-12-15Do not show deleted files in recent file list.mitchell
2020-12-15Do not prompt for file reload during `io.close_all_buffers()`.mitchell
2020-11-30Updated for 11.0.mitchell
2020-11-30Updated LuaDoc.mitchell
2020-11-16Added `events.UNFOCUS` for when Textadept loses focus.mitchell
Do not emit this event when a dialog is active.
2020-11-10Fill `keys` and `snippet` tables with language-specific tables on init.mitchell
This allows users and language modules to easily add bindings and snippets without stepping on each other.
2020-11-03Fixed `lfs.walk()` bug with root directory.mitchell
Prevent dir to walk from becoming an empty string.
2020-10-30Updated for 11.0 beta 2.mitchell
2020-10-25Handle more types of recursive symlinks in `lfs.walk()`.mitchell
2020-10-25Handle recursive symlinks in `lfs.walk()`.mitchell
2020-10-20Code cleanup.mitchell
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-11Updated LuaDoc.mitchell
2020-10-11Fixed typo in Russian translation.mitchell
2020-10-08Small LuaDoc update.mitchell
2020-10-08More German translation updates.mitchell
Thanks to Christof Böckler.
2020-10-08Added `textadept.history` module for recording and navigating position history.mitchell
2020-10-06Only change EOL mode if an EOL is actually detected.mitchell
2020-10-05Increase the width of dialogs that hold filenames in the terminal version.mitchell
Long filenames are clipped.
2020-10-05Various manual and documentation updates.mitchell
2020-10-05Resolved conflicting menu mnemonics in "Tools" menu for English locale.mitchell
2020-10-05Updated German translation.mitchell
Thanks to Christof Böckler.
2020-10-02Command entry also considers contents of `textadept` as globals.mitchell
Include buffer/view constants as well, which should have been there anyway.
2020-10-01Handle CRLF in locale files.mitchell
Previously, LF was expected, so CR (if present) would be in every message.
2020-09-30Updated Lua autocompletion and documentation.mitchell
2020-09-30Updated for 11.0 beta.mitchell
2020-09-29Updated copyright information.mitchell
2020-09-27Fixed `io.quick_open()` not doing anything when file limit was exceeded.mitchell