diff options
author | 2013-10-18 10:23:57 -0400 | |
---|---|---|
committer | 2013-10-18 10:23:57 -0400 | |
commit | ee19e174bb060bbe96565af91975ed3118bc894d (patch) | |
tree | 652d622ea36690bd5f52bc938d8ec5795de31eb2 /modules/textadept/session.lua | |
parent | a488a97c9eb58d8e9db224f3793c74f23d26b07e (diff) | |
download | textadept-ee19e174bb060bbe96565af91975ed3118bc894d.tar.gz textadept-ee19e174bb060bbe96565af91975ed3118bc894d.zip |
More LuaDoc updates.
Diffstat (limited to 'modules/textadept/session.lua')
-rw-r--r-- | modules/textadept/session.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/textadept/session.lua b/modules/textadept/session.lua index d470ce5a..0aa2bc23 100644 --- a/modules/textadept/session.lua +++ b/modules/textadept/session.lua @@ -29,8 +29,8 @@ M.SAVE_ON_QUIT = true M.MAX_RECENT_FILES = 10 --- --- Loads Textadept session file *filename* or user-selected file, returning --- `true` if the session file was opened and read. +-- Loads session file *filename* or user-selected file, returning `true` if the +-- session file was opened and read. -- Textadept restores split views, opened buffers, cursor information, and -- recent files. -- @param filename Optional absolute path to the session file to load. If `nil`, @@ -116,7 +116,7 @@ events.connect(events.ARG_NONE, function() end) --- --- Saves a Textadept session to file *filename* or user-selected file. +-- Saves the session to file *filename* or user-selected file. -- Saves split views, opened buffers, cursor information, and recent files. -- @param filename Optional absolute path to the session file to save. If `nil`, -- the user is prompted for one. |