Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-24 | Renamed `_G.buffer_new()` to `buffer.new()`. | ||
2013-04-21 | Updates to compile with latest GTK-OSX. | ||
This fixes Fn key recognition. | |||
2013-04-11 | Added key modes and changed the command entry to use them. | ||
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`. | |||
2013-04-05 | Initial support for Windows terminal via pdcurses. | ||
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-12-03 | Recognize special ncurses keys better. | ||
2012-11-19 | Rewrote LuaDoc. | ||
2012-11-19 | Changed Lua code style for tables. | ||
2012-10-30 | Continued updating documentation formatting. | ||
2012-10-30 | Pass "Escape" key to Scintilla correctly in ncurses. | ||
2012-10-29 | Updated documentation formatting. | ||
Pathnames and filenames are italic and be more consistent with constant width text. | |||
2012-10-17 | `keys.get_gdk_key()` has no use to ncurses; core/keys.lua | ||
2012-10-16 | Fixed GUI menu key shortcut handling. | ||
2012-09-18 | Fixed incremental find in ncurses. | ||
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-07-09 | Ignore Fn-key combinations on Mac OSX. | ||
GTKOSX passes a keycode that confuses Scintilla, which inserts a 'DLE' char. | |||
2012-06-22 | Updated key commands for ncurses. | ||
2012-06-06 | `gui.statusbar_text` is write-only again. | ||
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-03-06 | Added keypad keys to KEYSYMS; core/keys.lua | ||
2012-03-03 | Added documentation on propagation; core/keys.lua | ||
2012-02-22 | Use GtkOSXApplication, which is Cocoa-based, instead of Carbon API calls on OSX. | ||
2012-02-10 | Update LuaDoc with new formatting. | ||
2012-01-06 | Updated copyright information. | ||
2012-01-05 | Rename '_m' to '_M'. | ||
2011-12-31 | Changed 'locale.localize()' to global '_L' table. | ||
2011-12-31 | Code cleanup. | ||
2011-12-13 | Remove 'package.seeall' from LuaDoc comments. | ||
2011-12-12 | Remove 'module' and update LuaDoc comments appropriately. | ||
2011-12-12 | Updated to Lua 5.2. | ||
2011-11-23 | Code cleanup. | ||
2011-09-28 | Use lexer at the caret for key commands and snippets. | ||
2011-09-27 | Reformatted some LuaDoc. | ||
2011-09-26 | Lua code cleanup. | ||
2011-08-17 | LANGUAGE_MODULE_PREFIX should be Command on Mac OSX, not Control; core/keys.lua | ||
2011-08-09 | Swap Control and Command key definitions on Mac OSX. | ||
'c' is now Control and 'm' is Command. | |||
2011-07-27 | Only allow meta key on Mac OSX; core/keys.lua | ||
On Linux, AltGr is sometimes registered as GDK_MOD5_MASK which Mac OSX identifies as meta. | |||
2011-07-14 | Changed menu labels to be more descriptive and added select_command() dialog. | ||
2011-07-13 | Refactored key commands and added menu accelerators. | ||
Key commands are now in keys.conf and keys.osx.conf which are loaded by the _m.textadept.menu module. | |||
2011-07-07 | Detect Alt/Option modifier on Mac OSX. | ||
2011-06-24 | Removed '_G' prefix from globals where necessary. | ||
2011-06-23 | Use string constants for event names. | ||
2011-06-23 | Updated Luadoc and added extra fields to other modules. | ||
2011-03-24 | Changes to key and menu command definitions. | ||
Functions can be used directly without being contained within a table. Also, buffer and view functions and references should be used directly (e.g. { buffer.undo, buffer } and { view.split, view }). References are handled correctly at runtime. | |||
2011-03-23 | Rewrote _m.textadept.snippets module. | ||
Snippet syntax has changed; see LuaDoc for details. | |||
2011-03-17 | Performance and speed improvements. | ||
2011-02-06 | Clear keychain on key command error; core/keys.lua | ||