diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/args.lua | 2 | ||||
-rw-r--r-- | core/events.lua | 2 | ||||
-rw-r--r-- | core/file_io.lua | 2 | ||||
-rw-r--r-- | core/gui.lua | 2 | ||||
-rw-r--r-- | core/keys.lua | 2 | ||||
-rw-r--r-- | core/locale.lua | 2 |
6 files changed, 7 insertions, 5 deletions
diff --git a/core/args.lua b/core/args.lua index 8d305db7..6a2f3849 100644 --- a/core/args.lua +++ b/core/args.lua @@ -5,7 +5,7 @@ local M = {} --[[ This comment is for LuaDoc. --- -- Processes command line arguments for Textadept. -module('args', package.seeall)]] +module('args')]] -- Markdown: -- ## Arg Events diff --git a/core/events.lua b/core/events.lua index e0f10ebe..87861fca 100644 --- a/core/events.lua +++ b/core/events.lua @@ -7,7 +7,7 @@ local M = {} --[[ This comment is for LuaDoc. --- -- Textadept's core event structure and handlers. -module('events', package.seeall)]] +module('events')]] -- Markdown: -- ## Overview diff --git a/core/file_io.lua b/core/file_io.lua index a5aca1a3..b91ad2b7 100644 --- a/core/file_io.lua +++ b/core/file_io.lua @@ -6,7 +6,7 @@ local events = events --[[ This comment is for LuaDoc. --- -- Extends Lua's io package to provide file input/output routines for Textadept. -module('io', package.seeall)]] +module('io')]] -- Markdown: -- ## Converting Filenames to and from UTF-8 diff --git a/core/gui.lua b/core/gui.lua index 9e657d45..056c6672 100644 --- a/core/gui.lua +++ b/core/gui.lua @@ -414,6 +414,8 @@ connect(events.ERROR, function(...) gui._print(L('[Error Buffer]'), ...) end) -- Each argument is like a string in Lua's `arg` table. Tables of strings are -- allowed as arguments and are expanded in place. This is useful for -- filteredlist dialogs with many items. +-- @param kind The kind of gcocoadialog. +-- @param ... Parameters to the gcocoadialog. -- @return string gcocoadialog result. -- @class function -- @name dialog diff --git a/core/keys.lua b/core/keys.lua index 46bd1a9c..aacd6560 100644 --- a/core/keys.lua +++ b/core/keys.lua @@ -7,7 +7,7 @@ local M = {} --[[ This comment is for LuaDoc. --- -- Manages key commands in Textadept. -module('keys', package.seeall)]] +module('keys')]] -- Markdown: -- ## Overview diff --git a/core/locale.lua b/core/locale.lua index 29885848..3975c323 100644 --- a/core/locale.lua +++ b/core/locale.lua @@ -5,7 +5,7 @@ local M = {} --[[ This comment is for LuaDoc. --- -- Contains all messages used by Textadept for localization. -module('locale', package.seeall)]] +module('locale')]] -- Markdown: -- ## Fields |