aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/file_io.lua
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2016-06-27 22:25:07 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2016-06-27 22:25:07 -0400
commit935b112fe478f750955a78ea6e15ffece78bd3f4 (patch)
tree19b68e228e4a203e8ac76811633351092b6320ec /core/file_io.lua
parente17b7a2d5608f265eefb2bde080dff2549217353 (diff)
Small code cleanup and documentation updates.
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 84f0287f..e79da353 100644
--- a/core/file_io.lua
+++ b/core/file_io.lua
@@ -403,10 +403,10 @@ io.quick_open_filters = {}
-- `ui.dialogs.filteredlist()`.
-- @usage io.quick_open(buffer.filename:match('^.+/')) -- list all files in the
-- current file's directory, subject to the default filter
--- @usage io.quick_open('/project', '!%.lua$') -- list all Lua files in a
--- project directory
--- @usage io.quick_open('/project', {folders = {'build'}}) -- list all non-built
--- files in a project directory
+-- @usage io.quick_open(io.get_current_project(), '!%.lua$') -- list all Lua
+-- files in the current project
+-- @usage io.quick_open(io.get_current_project(), {folders = {'build'}}) -- list
+-- all non-built files in the current project
-- @see io.quick_open_filters
-- @see lfs.default_filter
-- @see quick_open_max