aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/session.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2016-06-15 17:27:55 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2016-06-15 17:27:55 -0400
commit190f9aaeb206bfe209291898fae17880d5f62748 (patch)
tree3ce9c580c2445d97615c418218dac43cb963786d /modules/textadept/session.lua
parent27c42565b3b1cccf0c2eb5770614b67617de6b48 (diff)
downloadtextadept-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.lua7
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)