Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-01-29 | Updated copyright information. | ||
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-08 | Added `textadept.history` module for recording and navigating position history. | ||
2020-09-29 | Updated copyright information. | ||
2020-07-25 | Moved incremental find into Find & Replace Pane. | ||
Added new `events.FIND_TEXT_CHANGED` to help facilitate this. "Whole word" and "Regex" are now supported in addition to "Match case". Also updated tests. | |||
2020-07-12 | Updated macro record to use new modifier keys. | ||
2020-06-28 | Be more consistent with Command key variable name. | ||
2020-03-14 | More code cleanup, refactoring, and reformatting. | ||
2020-03-12 | More code cleanup, refactoring, reformatting, and bug fixes. | ||
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. | |||
2019-09-27 | Fixed macro toggling with some key combinations. | ||
2019-09-23 | Replaced `textadept.macros.*_recording()` with `textadept.macros.record()`. | ||
Also updated keybindings. | |||
2018-10-23 | Actually commit new macros module. | ||
2009-04-02 | Removed macro support; just use Lua for scripting. | ||
2009-02-14 | Read and write in binary mode for everything. | ||
2009-02-10 | Moved the textadept.locale table into the globals table. | ||
2009-01-10 | Various improvements to speed and readability of Lua code. | ||
Added 'local textadept = _G.textadept' to all Lua modules, themes, etc. Added more locals to core/ext/keys.lua for speed improvement. Reformatted some Lua modules to the earlier standard committed. | |||
2009-01-08 | Reformatted all C and Lua code to a single standard for each language. | ||
2009-01-03 | Added localization support. | ||
All Textadept messages are in core/locale.lua which provides the new 'textadept.locale' module. | |||
2009-01-01 | Updated copyright dates for 2009. | ||
2008-12-22 | Fixed bugs in macros and macro browser. | ||
2008-03-03 | Updated copyright notice to include the year 2008. | ||
2008-02-23 | Eliminated Zenity dependency; replaced with my CocoaDialog clone (lua_dialog). | ||
2008-02-10 | Instead of io.popen():read(), a file descriptor is kept and close()'d afterward. | ||
2007-08-21 | Added events defined by modules/textadept/macros.lua to the module's LuaDoc. | ||
2007-08-15 | Renamed handlers module to events, updated everything to reflect changes. | ||
2007-08-10 | Renamed textadept.handlers' add_function_to_handler to add_handler_function. | ||
2007-08-10 | Macros can now be recorded, saved, played, browsed, etc. | ||