aboutsummaryrefslogtreecommitdiff
path: root/core/keys.lua
AgeCommit message (Collapse)Author
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