aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/keys.lua
AgeCommit message (Collapse)Author
2011-11-23Removed _m.textadept.editing.select_style().mitchell
2011-11-23Added theme utilities, modified light and dark themes, and removed scite theme.mitchell
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-26Lua code cleanup.mitchell
2011-09-25Refactored textadept.c and changed Lua interface a bit.mitchell
'_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-08-28Change Command+Option+Letter keys to Control+Command+Letter keys on Mac OSX.mitchell
The Option+Letter combination produces locale-dependent characters so it cannot be used reliably.
2011-08-22Changed some key commands.mitchell
2011-08-10Change bindings for switching buffers and views on Mac OSX.mitchell
2011-08-09Changed Next View/Previous View key bindings; modules/textadept/keys.luamitchell
Windows 7 eats Control+Alt+Tab and Ctrl+Alt+Shift+Tab.
2011-08-09Swap Control and Command key definitions on Mac OSX.mitchell
'c' is now Control and 'm' is Command.
2011-08-09Swap Replace/Replace All and Run/Compile key bindings.mitchell
Replace/Replace All is destructive so it should not be easily accessible where it can be mistakenly pressed.
2011-07-31Updated documentation; modules/textadept/keys.lumitchell
2011-07-30Code cleanup.mitchell
2011-07-29Eliminated the need for keys.conf and keys.osx.conf.mitchell
Thanks to Robert Gieseke for the idea and prototype code.
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-11Fixed bug in key commands; modules/textadept/keys.luamitchell
2011-07-11Allow buffer functions to omit buffer argument.mitchell
This is primarily for key and menu commands to avoid creating too many unnecessary tables.
2011-07-11Added io.open_recent_file().mitchell
2011-06-24Removed '_G' prefix from globals where necessary.mitchell
2011-06-23Use string constants for event names.mitchell
2011-06-16Use functions for generating unique IDs for markers, indicators, and user lists.mitchell
2011-05-05Removed non-existant key chain; modules/textadept/keys.luamitchell
2011-04-20Fixed incorrect key command; modules/textadept/keys.luamitchell
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-02-25Changed Ctrl+H key command (highlight word) to Ctrl+Shift+H.mitchell
Ctrl+H will now show symbol apidoc when available.
2011-01-21Code cleanup.mitchell
2010-12-28Updated copyright information.mitchell
2010-12-26Separated key command manager from key command definitions.mitchell
2010-12-23Added filter-through module for shell commands.mitchell
2010-11-30New manual.mitchell
2010-11-24Added key commands and menu options for toggling virtual space.mitchell
2010-11-23Code cleanup.mitchell
Also modified the editing module's enclose() and select_enclosed() functions.
2010-11-15LuaDoc cleanup.mitchell
2010-10-28Rename MAC variable in to OSX in Lua, __OSX__ in C.mitchell
2010-10-25Do not clear statusbar text if set by key command; modules/textadept/keys.luamitchell
2010-10-15Added key commands and changed LuaDoc for highlighting words.mitchell
2010-10-15Changed locale implementation.mitchell
2010-10-14Removed some useless editing module functions.mitchell
2010-10-13Think before clearing key command statusbar updates; modules/textadept/keys.luamitchell
2010-08-17Upgraded to Scintilla/SciTE 2.20.mitchell
2010-08-10Refactored keys; modules/textadept/keys.luamitchell
Previously it was only possible to run a single key command for a given lexer and/or scope without propagation. For example, if a Lua-specific Ctrl+Enter failed to do a keyword autocomplete, it could not propagate to a general Ctrl+Enter to do a word autocomplete. This is now possible.
2010-06-16Updated documentation.mitchell
2010-06-16Code and documentation cleanup.mitchell
2010-06-15Removed user_dofile() of keys and snippets.mitchell
2010-06-12Provide access to keys through _G.keys; modules/textadept/keys.luamitchell
2010-06-11Cleanup.mitchell
2010-06-11Renamed modules/textadept/key_commands.lua to modules/textadept/keys.lua.mitchell
2007-10-07Moved key command manager to core.mitchell
2007-08-21Moved @usage LuaDocs to comment blocks inside the modules.mitchell
2007-08-15Renamed handlers module to events, updated everything to reflect changes.mitchell