diff options
author | 2007-08-21 23:32:26 -0400 | |
---|---|---|
committer | 2007-08-21 23:32:26 -0400 | |
commit | b14e7d17b2e57507cb1f0f69e332a733be9fadb2 (patch) | |
tree | 07c95cd3f2dc0b8229117addd608f71bcfff81b4 /modules/textadept/keys.lua | |
parent | 1ec412529982f5860445023495e6c3d915e14c84 (diff) | |
download | textadept-b14e7d17b2e57507cb1f0f69e332a733be9fadb2.tar.gz textadept-b14e7d17b2e57507cb1f0f69e332a733be9fadb2.zip |
Moved @usage LuaDocs to comment blocks inside the modules.
Diffstat (limited to 'modules/textadept/keys.lua')
-rw-r--r-- | modules/textadept/keys.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua index 996cdabf..89fd4b36 100644 --- a/modules/textadept/keys.lua +++ b/modules/textadept/keys.lua @@ -13,7 +13,9 @@ -- ADD: The string representing used to join together a sequence of Control, -- Shift, or Alt modifier keys. -- --- @usage +module('_m.textadept.keys', package.seeall) + +-- Usage: -- Keys are defined in the global table 'keys'. Keys in that table are key -- sequences, and values are tables of Lua functions and arguments to execute. -- The exceptions are language names, style names, and keychains (discussed @@ -64,7 +66,6 @@ -- Keep in mind that all Lua functions used in key commands must be defined -- BEFORE the key command references it. Therefore the module containing key -- commands should be loaded LAST, after all other modules have been loaded. -module('_m.textadept.keys', package.seeall) -- options local SCOPES_ENABLED = true |