Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-01 | Handle CRLF in locale files. | ||
Previously, LF was expected, so CR (if present) would be in every message. | |||
2020-09-29 | Updated copyright information. | ||
2020-03-10 | Core code cleanup, reformat, refactoring, and bugfixes. | ||
`events.FILE_CHANGED` was not emitting a filename. Added tests for key commands, keychains, and key modes. | |||
2020-03-03 | Added test suite and API type checking for more helpful error messages. | ||
2020-02-26 | Small code cleanup. | ||
2020-02-21 | Tweaked localization keys. | ||
This is in anticipate of removing '_' from keys, which would have created duplicate keys. | |||
2019-12-31 | Updated copyright year. | ||
2019-02-16 | Updated copyright year. | ||
2018-01-25 | Updated copyright year. | ||
2016-12-31 | Updated copyright information. | ||
2016-06-15 | Be more liberal about comments in locale files and use '#' by default. | ||
2015-12-31 | Updated copyright date. | ||
2015-03-16 | Code cleanup based on the output of luacheck, a Lua linter. | ||
2014-12-31 | Updated copyright year. | ||
2014-03-01 | Use `assert(...)` as a shortcut for `if not ... then error() end`. | ||
2014-01-14 | Added Swedish translation from Niklas Wallén. | ||
2014-01-12 | Updated copyright information. | ||
2013-06-12 | Removed `_L._EXISTS()`; core/locale.lua | ||
2013-04-03 | Textadept should support multiple curses platforms; remove ncurses references. | ||
Requires Scintilla r4436 and Scinterm r45. | |||
2013-01-20 | Updated copyright date. | ||
2012-11-19 | Rewrote LuaDoc. | ||
2012-11-19 | Changed Lua code style for tables. | ||
2012-09-12 | Documentation overhaul. | ||
Rewrote most of the manual and Lua API to complement each other. Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc. | |||
2012-09-05 | Attempt to auto-detect locale using 'LANG' environment variable; core/locale.lua | ||
2012-07-17 | Added function to check if a localized message exists; core/locale.lua | ||
2012-07-17 | Remove mnemonics from localized ncurses strings; core/locale.lua | ||
2012-06-24 | Show the text to be localized in the 'No Localization' message; core/locale.lua | ||
2012-03-16 | Moved "Markdown:" comments into module LuaDoc comments. | ||
2012-03-07 | Updated contact email address. | ||
2012-03-07 | Documentation overhaul with Discount (Markdown implementation). | ||
The standard LuaDoc template is no longer used. Instead, the new `scripts/markdowndoc.lua` has the template for LuaDoc and `scripts/update_doc` has the template for the Manual. Also added README, CHANGELOG, and THANKS files. | |||
2012-02-10 | Update LuaDoc with new formatting. | ||
2012-01-17 | Updated LuaDoc. | ||
2012-01-06 | Updated copyright information. | ||
2011-12-31 | Changed 'locale.localize()' to global '_L' table. | ||
2011-12-13 | Remove 'package.seeall' from LuaDoc comments. | ||
2011-12-12 | Remove 'module' and update LuaDoc comments appropriately. | ||
2010-12-28 | Updated copyright information. | ||
2010-11-30 | New manual. | ||
2010-10-15 | Changed locale implementation. | ||
2010-03-29 | Check for ~/.textadept/locale.conf first; core/locale.lua | ||
2010-01-07 | Updated copyright to 2010. | ||
2009-07-25 | Documentation overhaul. | ||
2009-02-17 | Moved localization into a configuration file. | ||
2009-02-15 | Removed buggy 'Select in Structure' from _m.textadept.editing. | ||
2009-02-14 | Prompt for file reload if it was modified outside of Textadept. | ||
2009-02-14 | Can toggle the showing of 'dot' files in the PM file browser via popupmenu. | ||
2009-02-10 | Moved the textadept.locale table into the globals table. | ||
2009-02-10 | Use a _type field for special _print() buffers' titles instead of 'Untitled'. | ||