Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-25 | Updated copyright year. | ||
2017-11-10 | Removed redundant "Select in delimiter" menus and keys. | ||
They can be auto-detected now. | |||
2017-01-11 | Fixed localization regression introduced in r2288; core/locale.conf | ||
2017-01-01 | Use more descriptive header in command selection dialog. | ||
2016-12-31 | Updated copyright information. | ||
2016-11-04 | Removed MacRoman encoding option, as OSX uses UTF-8 by default. | ||
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-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-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. | ||
2014-12-31 | Updated copyright year. | ||
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-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-06-04 | Added ncurses Find/Replace dialog. | ||
2012-03-27 | Removed mentions of GTK stock items in in translation notes. | ||
2012-03-27 | Translate all messages instead of relying on GTK to translate stock items. | ||
2012-03-07 | Updated contact email address. | ||
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. | ||
2011-08-22 | Changed some key commands. | ||
2011-07-16 | Added Toggle Fold menu command. | ||
2011-07-16 | Removed Lexer menu in favor of 'Buffer->Select Lexer...'. | ||
2011-07-16 | Rearranged Buffer and View menus and changed various accelerators. | ||
2011-07-16 | Rearranged Edit menu and accelerators. | ||
2011-07-16 | Moved Adeptsense commands into Tools menu. | ||
2011-07-15 | Fixed accelerator conflict in menu. | ||
2011-07-15 | Added menu and keys for moving lines up and down. | ||