diff options
author | 2011-06-23 17:33:40 -0400 | |
---|---|---|
committer | 2011-06-23 17:33:40 -0400 | |
commit | c8e1267fb5b5f9215eade1d6a45dd5228b28548b (patch) | |
tree | f7df42426ca5631ac6f67e4156d0800c0ff0befb /core/.gui.luadoc | |
parent | f4bc26099570801aef5a3f8d589ae0c8688bd448 (diff) | |
download | textadept-c8e1267fb5b5f9215eade1d6a45dd5228b28548b.tar.gz textadept-c8e1267fb5b5f9215eade1d6a45dd5228b28548b.zip |
Updated Luadoc and added extra fields to other modules.
Diffstat (limited to 'core/.gui.luadoc')
-rw-r--r-- | core/.gui.luadoc | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/core/.gui.luadoc b/core/.gui.luadoc index 785ce52b..56e576df 100644 --- a/core/.gui.luadoc +++ b/core/.gui.luadoc @@ -8,15 +8,16 @@ module('gui') -- Markdown: -- ## Fields -- --- * `title`: The title of the Textadept window. --- * `focused_doc_pointer`: The pointer to the document associated with the --- buffer of the currently focused view. (Used internally; read-only.) --- * `menubar`: A table of GTK menus defining a menubar (write-only). +-- * `title` [string]: The title of the Textadept window. +-- * `focused_doc_pointer` [number]: The pointer to the document associated with +-- the buffer of the currently focused view. (Read-only) +-- * `menubar` [table]: A table of GTK menus defining a menubar. (Write-only) -- * `context_menu`: A GTK menu defining the editor's context menu. --- * `clipboard_text`: The text on the clipboard (read-only). --- * `statusbar_text`: The text displayed by the statusbar. --- * `docstatusbar_text`: The text displayed by the doc statusbar (write-only). --- * `size`: The size of the Textadept window (`{ width, height}`). +-- * `clipboard_text` [string]: The text on the clipboard. (Read-only) +-- * `statusbar_text` [string]: The text displayed by the statusbar. +-- * `docstatusbar_text` [string]: The text displayed by the doc statusbar. +-- (Write-only) +-- * `size` [table]: The size of the Textadept window (`{ width, height }`). --- -- Goes to the specified view. |