diff options
author | 2009-07-25 23:34:13 -0400 | |
---|---|---|
committer | 2009-07-25 23:34:13 -0400 | |
commit | 033416a15fe60fe10387119e0e63bb9ed9e8aedd (patch) | |
tree | 31bc4d91e15b484c336eadf25c0008f7bd17facc /modules/textadept/session.lua | |
parent | b9e5e58446c95344b550c0a6ab91aa57ee9468ef (diff) | |
download | textadept-033416a15fe60fe10387119e0e63bb9ed9e8aedd.tar.gz textadept-033416a15fe60fe10387119e0e63bb9ed9e8aedd.zip |
Documentation overhaul.
Diffstat (limited to 'modules/textadept/session.lua')
-rw-r--r-- | modules/textadept/session.lua | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/modules/textadept/session.lua b/modules/textadept/session.lua index a464da68..ba98a728 100644 --- a/modules/textadept/session.lua +++ b/modules/textadept/session.lua @@ -5,11 +5,16 @@ local locale = _G.locale --- -- Session support for the textadept module. --- There are several option variables used: --- DEFAULT_SESSION: The path to the default session file. module('_m.textadept.session', package.seeall) -local DEFAULT_SESSION = _USERHOME..'/session' +-- Markdown: +-- ## Settings +-- +-- * `DEFAULT_SESSION`: The path to the default session file. + +-- settings +DEFAULT_SESSION = _USERHOME..'/session' +-- end settings --- -- Loads a Textadept session file. |