diff options
author | 2012-01-12 22:59:59 -0500 | |
---|---|---|
committer | 2012-01-12 22:59:59 -0500 | |
commit | 884d8f5675bdd3c3c8d308e6f2df4f8497afa1a3 (patch) | |
tree | 9757abe329f363e979522b77e5107ad28c87067b /core/init.lua | |
parent | 05646739578258cfbc19f4708d0bde97fb56a841 (diff) | |
download | textadept-884d8f5675bdd3c3c8d308e6f2df4f8497afa1a3.tar.gz textadept-884d8f5675bdd3c3c8d308e6f2df4f8497afa1a3.zip |
Create separate LuaDoc for module table fields.
Diffstat (limited to 'core/init.lua')
-rw-r--r-- | core/init.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/core/init.lua b/core/init.lua index c1aff4f9..b2ec28ea 100644 --- a/core/init.lua +++ b/core/init.lua @@ -34,7 +34,6 @@ module('_G')]] -- * `_USERHOME` [string]: Path to the user's `~/.textadept/`. -- * `_CHARSET` [string]: The character set encoding of the filesystem. This is -- used in [File I/O](../modules/io.html). --- * `_L` [table]: Contains all messages used by Textadept for localization. -- * `RESETTING` [bool]: If [`reset()`](../modules/_G.html#reset) has been -- called, this flag is `true` while the Lua state is being re-initialized. -- * `WIN32` [bool]: If Textadept is running on Windows, this flag is `true`. @@ -83,6 +82,12 @@ local _BUFFERS -- @usage _VIEWS[view] returns the index of the current view in _VIEWS. local _VIEWS +--- +-- Contains all messages used by Textadept for localization. +-- @class table +-- @name _L +local _L + -- The functions below are Lua C functions. --- |