aboutsummaryrefslogtreecommitdiff
path: root/core/file_io.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2012-12-01 18:40:57 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2012-12-01 18:40:57 -0500
commitcd5994c518513a5adca92bdc14b6d721b95310ac (patch)
tree24a0553c91332a35788bc12ac57336b829e8fa07 /core/file_io.lua
parent6693478c076f4d58b709ac9deba809cd9d84a6ee (diff)
downloadtextadept-cd5994c518513a5adca92bdc14b6d721b95310ac.tar.gz
textadept-cd5994c518513a5adca92bdc14b6d721b95310ac.zip
Updated parameter LuaDoc.
Diffstat (limited to 'core/file_io.lua')
-rw-r--r--core/file_io.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/file_io.lua b/core/file_io.lua
index d4f365ba..eff67008 100644
--- a/core/file_io.lua
+++ b/core/file_io.lua
@@ -6,9 +6,9 @@
--
-- ## Working with UTF-8
--
--- If your filesystem does not use UTF-8 encoded filenames (e.g. Windows),
+-- If your filesystem does not use UTF-8-encoded filenames (e.g. Windows),
-- conversions to and from that encoding are necessary since all of Textadept's
--- internal strings are UTF-8 encoded. When opening and saving files through
+-- internal strings are UTF-8-encoded. When opening and saving files through
-- dialogs, these conversions are performed automatically, but if you need to do
-- them manually, use [`string.iconv()`][] along with [`_CHARSET`][], your
-- filesystem's detected encoding. An example is
@@ -141,8 +141,8 @@ io.try_encodings = {'UTF-8', 'ASCII', 'ISO-8859-1', 'MacRoman'}
-- Opens *utf8_filenames*, a "\n" delimited string of UTF-8-encoded filenames,
-- or user-selected files.
-- Emits a `FILE_OPENED` event.
--- @param utf8_filenames Optional list of filenames to open. If `nil`, the user
--- is prompted with a fileselect dialog.
+-- @param utf8_filenames Optional list of UTF-8-encoded filenames to open. If
+-- `nil`, the user is prompted with a fileselect dialog.
-- @see _G.events
-- @name open_file
function io.open_file(utf8_filenames)