Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-06 | Added context to localization messages for easier translation. | ||
2016-07-04 | Added timeout prompt for "Find in Files". | ||
It is now possible to cancel a "Find in Files" search part-way through. | |||
2016-07-04 | Replaced Lua pattern matching with Regex via Scintilla and TRE. | ||
As a result, changed `ui.find.lua` to `ui.find.regex` Also removed luautf8 dependency since it is no longer needed. Regex replacements cannot contain embedded Lua code. Jumping to "find in files" results selects those results instead of just jumping to their respective lines. | |||
2016-06-19 | Updated translations. | ||
2016-06-15 | Allow binary files to be encoded in something else. | ||
UTF-16 files (and other encodings with null bytes) are initially recognized as binary files (no encoding). Allow encodings to be set for such files after load. | |||
2016-06-15 | Be more liberal about comments in locale files and use '#' by default. | ||
2016-06-15 | Removed explicit detection and use of extinct CR line endings. | ||
It's quite possible some of Textadept's functions didn't handle them properly anyway. | |||
2016-06-15 | Renamed "snapopen" to "quick open" in APIs and menus. | ||
2016-04-28 | Updated some translations. | ||
2016-04-16 | Added menu item and dialog for setting run/compile command arguments. | ||
2016-04-16 | Localize "Lua reset" message. | ||
2016-04-16 | Fixed spelling error in English-localized messages. | ||
2016-04-16 | Find in files should not print the contents of binary files. | ||
Use placeholder text instead. This is common in Unix tools. | |||
2016-04-07 | Only show snippet trigger and text in selection dialog. | ||
2015-12-31 | Updated copyright date. | ||
2015-11-04 | Updated Swedish translation; core/locales/locale.sv.conf | ||
Thanks to Niklas Wallén. | |||
2015-07-28 | Added Italian translation and updated French translation. | ||
Thanks to Giovanni Salmeri. | |||
2014-12-31 | Updated copyright year. | ||
2014-11-13 | Added Arabic translation. | ||
Thanks to Ahed Eid. | |||
2014-07-19 | Updated Swedish translation; core/locales/locale.sv.conf | ||
Thanks to Niklas Wallén. | |||
2014-07-09 | Updated Polish translation; core/locales/locale.pl.conf | ||
Thanks to Piotr Orzechowski. | |||
2014-06-24 | Updated Polish translation; core/locales/locale.pl.conf | ||
Thanks to Piotr Orzechowski | |||
2014-06-21 | Added Polish translation. | ||
Thanks to Piotr Orzechowski. | |||
2014-05-28 | Removed `textadept.editing.select_indented_block()`. | ||
2014-05-24 | Removed Adeptsense in favor of new framework committed in r1735. | ||
Replaced ANSI C and Lua module Adeptsenses with their equivalent autocompleter functions. | |||
2014-03-26 | Include my new "lspawn" module by default for spawning processes. | ||
The `textadept.run` module now uses `spawn()` instead of `io.popen()`. This module replaces the dependency on winapi. Removed experimental `io.popen()` and `os.execute()` hooks. They may be re-implemented later using `spawn()`. | |||
2014-01-14 | Added Swedish translation from Niklas Wallén. | ||
2014-01-12 | Updated copyright information. | ||
2013-12-12 | More LuaDoc updates. | ||
2013-10-18 | Added "Save All" to the menu. | ||
2013-06-21 | Remove theme selection since it does not persist. | ||
Encourage calling `gui.set_theme()` from *~/.textadept/init.lua* instead. | |||
2013-04-26 | Consolidated the editing module's `grow_selection()` into `enclose_selected()`. | ||
The former was originally designed to complement the latter. | |||
2013-04-24 | Mark recognized errors in compile/run output and added navigation functions. | ||
2013-04-24 | Moved `_M.textadept.filter_through` functionality into `editing` module. | ||
2013-04-03 | Textadept should support multiple curses platforms; remove ncurses references. | ||
Requires Scintilla r4436 and Scinterm r45. | |||
2013-03-25 | Added lfs.dir_foreach() for allowing Find in Files to have a filter. | ||
Also moved snapopen module into core as io.snapopen(). | |||
2013-02-26 | Removed useless gui.dialog() options for fileopen/filesave. | ||
2013-01-20 | Updated copyright date. | ||
2012-12-06 | Added French translation from Gilles Grégoire; core/locales/locale.fr.conf | ||
2012-03-27 | Removed mentions of GTK stock items in in translation notes. | ||
2012-03-27 | Added German translation from Robert Gieseke; core/locales/locale.de.conf | ||
2012-03-27 | Translate all messages instead of relying on GTK to translate stock items. | ||
2012-03-26 | Updated some links. | ||
2012-03-22 | Added Spanish translation from Manuel Montenegro. | ||
2012-03-07 | Updated contact email address. | ||
2011-11-29 | Updated Russian localization; core/locales/locale.ru.conf | ||
Thanks to Vladimir Lomov. | |||
2011-11-23 | Removed _m.textadept.editing.select_style(). | ||
2011-11-23 | Added theme utilities, modified light and dark themes, and removed scite theme. | ||
Added gui.set_theme() and gui.select_theme() theming utilities. All new light and dark themes. Moved old classic themes to the wiki. | |||
2011-09-25 | Refactored textadept.c and changed Lua interface a bit. | ||
'_BUFFERS' and '_VIEWS' now also have buffer and view keys with index values; 'buffer.doc_pointer', 'view.doc_pointer', and 'gui.focused_doc_pointer' are no longer used; 'buffer:check_global()' replaces 'gui.check_focused_buffer()'; Added 'view.buffer' field; 'view:goto_buffer()' and 'gui.goto_view()' arguments changed to make more sense. | |||
2011-09-21 | Rearranged Tools menu. | ||