diff options
Diffstat (limited to 'core')
-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. |