diff options
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. |