diff options
author | 2016-06-15 17:27:55 -0400 | |
---|---|---|
committer | 2016-06-15 17:27:55 -0400 | |
commit | 190f9aaeb206bfe209291898fae17880d5f62748 (patch) | |
tree | 3ce9c580c2445d97615c418218dac43cb963786d /modules/textadept/session.lua | |
parent | 27c42565b3b1cccf0c2eb5770614b67617de6b48 (diff) | |
download | textadept-190f9aaeb206bfe209291898fae17880d5f62748.tar.gz textadept-190f9aaeb206bfe209291898fae17880d5f62748.zip |
Lots of small LuaDoc improvements (grammar mainly).
Diffstat (limited to 'modules/textadept/session.lua')
-rw-r--r-- | modules/textadept/session.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/textadept/session.lua b/modules/textadept/session.lua index f0dea31c..e497aad0 100644 --- a/modules/textadept/session.lua +++ b/modules/textadept/session.lua @@ -27,8 +27,8 @@ M.max_recent_files = 10 --- -- Loads session file *filename* or the user-selected session, returning `true` -- if a session file was opened and read. --- Textadept restores split views, opened buffers, cursor information, and --- recent files. +-- Textadept restores split views, opened buffers, cursor information, recent +-- files, and bookmarks. -- @param filename Optional absolute path to the session file to load. If `nil`, -- the user is prompted for one. -- @return `true` if the session file was opened and read; `false` otherwise. @@ -110,7 +110,8 @@ end) --- -- Saves the session to file *filename* or the user-selected file. --- Saves split views, opened buffers, cursor information, and recent files. +-- Saves split views, opened buffers, cursor information, recent files, and +-- bookmarks. -- @param filename Optional absolute path to the session file to save. If `nil`, -- the user is prompted for one. -- @usage textadept.session.save(filename) |