aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-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