diff options
author | 2013-10-18 10:23:57 -0400 | |
---|---|---|
committer | 2013-10-18 10:23:57 -0400 | |
commit | ee19e174bb060bbe96565af91975ed3118bc894d (patch) | |
tree | 652d622ea36690bd5f52bc938d8ec5795de31eb2 /core/file_io.lua | |
parent | a488a97c9eb58d8e9db224f3793c74f23d26b07e (diff) | |
download | textadept-ee19e174bb060bbe96565af91975ed3118bc894d.tar.gz textadept-ee19e174bb060bbe96565af91975ed3118bc894d.zip |
More LuaDoc updates.
Diffstat (limited to 'core/file_io.lua')
-rw-r--r-- | core/file_io.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/file_io.lua b/core/file_io.lua index b68247ad..ad8f677f 100644 --- a/core/file_io.lua +++ b/core/file_io.lua @@ -91,7 +91,7 @@ io.boms = { io.encodings = {'UTF-8', 'ASCII', 'ISO-8859-1', 'MacRoman'} --- --- Opens *filenames*, a string filename, table of filenames, or user-selected +-- Opens *filenames*, a string filename or table of provided or user-selected -- filenames. -- Emits a `FILE_OPENED` event. -- @param filenames Optional string filename or table of filenames to open. If @@ -326,7 +326,7 @@ events_connect(events.FILE_OPENED, function(filename) end) --- --- Prompts the user to open a recently opened file. +-- Prompts the user to select a recently opened file to reopen. -- @see recent_files -- @name open_recent_file function io.open_recent_file() @@ -342,8 +342,8 @@ function io.open_recent_file() end --- --- Quickly open files from *paths*, a string directory path or table of --- directory paths, using a filtered list dialog. +-- Prompts the user to select files to open from *paths*, a string directory +-- path or table of directory paths, using a filtered list dialog. -- Files shown in the dialog do not match any pattern in string or table -- *filter*, and, unless *exclude_FILTER* is `true`, `lfs.FILTER` as well. A -- filter table contains Lua patterns that match filenames to exclude, an |