diff options
author | 2010-10-09 12:55:59 -0400 | |
---|---|---|
committer | 2010-10-09 12:55:59 -0400 | |
commit | b235c7d1e3d738d839915ba922b25acea03e182a (patch) | |
tree | aa5a835eef3862bc070fb5cf84534a8b3ca07ccc /modules | |
parent | 00a2d5b27a8044fc137c206223eef40571a37ae2 (diff) | |
download | textadept-b235c7d1e3d738d839915ba922b25acea03e182a.tar.gz textadept-b235c7d1e3d738d839915ba922b25acea03e182a.zip |
Fixed some snapopen Luadoc; modules/textadept/snapopen.lua
Diffstat (limited to 'modules')
-rw-r--r-- | modules/textadept/snapopen.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/snapopen.lua b/modules/textadept/snapopen.lua index d4b1471b..d1f7f3d4 100644 --- a/modules/textadept/snapopen.lua +++ b/modules/textadept/snapopen.lua @@ -15,13 +15,13 @@ module('_m.textadept.snapopen', package.seeall) --
-- ## Examples
--
--- local snapopen = _m.textadept.snapopen
+-- local snapopen = _m.textadept.snapopen.open
--
-- -- Show all files in PATHS.
-- snapopen()
--
-- -- Show all files in the current file's directory.
--- snapopen(buffer.filename:match('^.+[/\\]'), nil, true)
+-- snapopen(buffer.filename:match('^(.+)[/\\]'), nil, true)
--
-- -- Show all Lua files in PATHS.
-- snapopen(nil, '!%.lua$')
|