diff options
author | 2008-09-24 21:28:38 -0400 | |
---|---|---|
committer | 2008-09-24 21:28:38 -0400 | |
commit | 16874f85c75833678b40c97754a6973868a4ab9a (patch) | |
tree | 16074ddffee268ba6d623e8b0bc7d4a556382677 /core/.textadept.lua | |
parent | 3c909c583c109c271d5b858acae1614acf47dad4 (diff) | |
download | textadept-16874f85c75833678b40c97754a6973868a4ab9a.tar.gz textadept-16874f85c75833678b40c97754a6973868a4ab9a.zip |
Updated LuaDoc for textadept.size property; core/.textadept.lua
Diffstat (limited to 'core/.textadept.lua')
-rw-r--r-- | core/.textadept.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/.textadept.lua b/core/.textadept.lua index 07d1f436..fc1295fa 100644 --- a/core/.textadept.lua +++ b/core/.textadept.lua @@ -19,8 +19,9 @@ module('textadept') -- @field statusbar_text The text displayed by the statusbar (write-only). -- @field docstatusbar_text The text displayed by the doc statusbar -- (write-only). +-- @field size The size of the Textadept window. textadept = { title = nil, focused_doc_pointer = nil, clipboard_text = nil, - menubar = nil, statusbar_text = nil, docstatusbar_text = nil } + menubar = nil, statusbar_text = nil, docstatusbar_text = nil, size = nil } --- -- A numerically indexed table of open buffers in Textadept. |