diff options
author | 2011-06-23 17:33:40 -0400 | |
---|---|---|
committer | 2011-06-23 17:33:40 -0400 | |
commit | c8e1267fb5b5f9215eade1d6a45dd5228b28548b (patch) | |
tree | f7df42426ca5631ac6f67e4156d0800c0ff0befb /modules/textadept/session.lua | |
parent | f4bc26099570801aef5a3f8d589ae0c8688bd448 (diff) | |
download | textadept-c8e1267fb5b5f9215eade1d6a45dd5228b28548b.tar.gz textadept-c8e1267fb5b5f9215eade1d6a45dd5228b28548b.zip |
Updated Luadoc and added extra fields to other modules.
Diffstat (limited to 'modules/textadept/session.lua')
-rw-r--r-- | modules/textadept/session.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/textadept/session.lua b/modules/textadept/session.lua index 503ee248..fbda6ae9 100644 --- a/modules/textadept/session.lua +++ b/modules/textadept/session.lua @@ -9,10 +9,10 @@ module('_m.textadept.session', package.seeall) -- Markdown: -- ## Settings -- --- * `DEFAULT_SESSION`: The path to the default session file. --- * `SAVE_ON_QUIT`: Save the session when quitting. Defaults to true and can be --- disabled by passing the command line switch '-n' or '--nosession' to --- Textadept. +-- * `DEFAULT_SESSION` [string]: The path to the default session file. +-- * `SAVE_ON_QUIT` [bool]: Save the session when quitting. The default value is +-- `true` and can be disabled by passing the command line switch '-n' or +-- '--nosession' to Textadept. -- settings DEFAULT_SESSION = _USERHOME..'/session' |