aboutsummaryrefslogtreecommitdiff
path: root/core/keys.lua
AgeCommit message (Collapse)Author
2012-09-12Documentation overhaul.mitchell
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-09Ignore Fn-key combinations on Mac OSX.mitchell
GTKOSX passes a keycode that confuses Scintilla, which inserts a 'DLE' char.
2012-06-22Updated key commands for ncurses.mitchell
2012-06-06`gui.statusbar_text` is write-only again.mitchell
2012-03-16Moved "Markdown:" comments into module LuaDoc comments.mitchell
2012-03-07Updated contact email address.mitchell
2012-03-07Documentation overhaul with Discount (Markdown implementation).mitchell
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-06Added keypad keys to KEYSYMS; core/keys.luamitchell
2012-03-03Added documentation on propagation; core/keys.luamitchell
2012-02-22Use GtkOSXApplication, which is Cocoa-based, instead of Carbon API calls on OSX.mitchell
2012-02-10Update LuaDoc with new formatting.mitchell
2012-01-06Updated copyright information.mitchell
2012-01-05Rename '_m' to '_M'.mitchell
2011-12-31Changed 'locale.localize()' to global '_L' table.mitchell
2011-12-31Code cleanup.mitchell
2011-12-13Remove 'package.seeall' from LuaDoc comments.mitchell
2011-12-12Remove 'module' and update LuaDoc comments appropriately.mitchell
2011-12-12Updated to Lua 5.2.mitchell
2011-11-23Code cleanup.mitchell
2011-09-28Use lexer at the caret for key commands and snippets.mitchell
2011-09-27Reformatted some LuaDoc.mitchell
2011-09-26Lua code cleanup.mitchell
2011-08-17LANGUAGE_MODULE_PREFIX should be Command on Mac OSX, not Control; core/keys.luamitchell
2011-08-09Swap Control and Command key definitions on Mac OSX.mitchell
'c' is now Control and 'm' is Command.
2011-07-27Only allow meta key on Mac OSX; core/keys.luamitchell
On Linux, AltGr is sometimes registered as GDK_MOD5_MASK which Mac OSX identifies as meta.
2011-07-14Changed menu labels to be more descriptive and added select_command() dialog.mitchell
2011-07-13Refactored key commands and added menu accelerators.mitchell
Key commands are now in keys.conf and keys.osx.conf which are loaded by the _m.textadept.menu module.
2011-07-07Detect Alt/Option modifier on Mac OSX.mitchell
2011-06-24Removed '_G' prefix from globals where necessary.mitchell
2011-06-23Use string constants for event names.mitchell
2011-06-23Updated Luadoc and added extra fields to other modules.mitchell
2011-03-24Changes to key and menu command definitions.mitchell
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-23Rewrote _m.textadept.snippets module.mitchell
Snippet syntax has changed; see LuaDoc for details.
2011-03-17Performance and speed improvements.mitchell
2011-02-06Clear keychain on key command error; core/keys.luamitchell
2011-01-21Code cleanup.mitchell
2010-12-29Fix bug for gui.statusbar_text being nil; core/keys.luamitchell
2010-12-28Updated copyright information.mitchell
2010-12-26Separated key command manager from key command definitions.mitchell