Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | ||
2011-01-21 | Code cleanup. | ||
2010-12-29 | Fix bug for gui.statusbar_text being nil; core/keys.lua | ||
2010-12-28 | Updated copyright information. | ||
2010-12-26 | Separated key command manager from key command definitions. | ||