aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2010-09-30 21:00:22 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2010-09-30 21:00:22 -0400
commit7365dd7e4f27de629331ce2ed5a5c89c9d0c3432 (patch)
tree413f6fba778e9bdc6a165642ec06a60dc048d5e5
parentac0924dab7b84333813b4a9ca44295affdb8bb73 (diff)
downloadtextadept-7365dd7e4f27de629331ce2ed5a5c89c9d0c3432.tar.gz
textadept-7365dd7e4f27de629331ce2ed5a5c89c9d0c3432.zip
Updated documentation; modules/textadept/snapopen.lua
-rw-r--r--modules/textadept/snapopen.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/snapopen.lua b/modules/textadept/snapopen.lua
index c2c867a4..43da3f6e 100644
--- a/modules/textadept/snapopen.lua
+++ b/modules/textadept/snapopen.lua
@@ -6,7 +6,7 @@ local locale = _G.locale
-- Snapopen for the textadept module.
module('_m.textadept.snapopen', package.seeall)
--- Markdown
+-- Markdown:
-- ## Settings
--
-- * `PATHS`: Table of default paths to search.
@@ -88,7 +88,7 @@ end
-- @usage _m.textadept.snapopen.open()
-- @usage _m.textadept.snapopen.open(buffer.filename:match('^.+/'), nil, true)
-- @usage _m.textadept.snapopen.open(nil, '!%.lua$')
--- @usage _m.textadept.snapopen.open(nil, { folders = { '.hg' } })
+-- @usage _m.textadept.snapopen.open(nil, { folders = { '%.hg' } })
function open(paths, filter, exclusive)
if not paths then paths = {} end
if type(paths) == 'string' then paths = { paths } end