aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/args.lua2
-rw-r--r--core/events.lua2
-rw-r--r--core/file_io.lua2
-rw-r--r--core/gui.lua2
-rw-r--r--core/keys.lua2
-rw-r--r--core/locale.lua2
-rw-r--r--modules/cpp/init.lua2
-rw-r--r--modules/lua/init.lua2
-rw-r--r--modules/textadept/adeptsense.lua2
-rw-r--r--modules/textadept/bookmarks.lua2
-rw-r--r--modules/textadept/editing.lua2
-rw-r--r--modules/textadept/filter_through.lua2
-rw-r--r--modules/textadept/init.lua2
-rw-r--r--modules/textadept/keys.lua2
-rw-r--r--modules/textadept/menu.lua2
-rw-r--r--modules/textadept/mime_types.lua2
-rw-r--r--modules/textadept/run.lua2
-rw-r--r--modules/textadept/session.lua2
-rw-r--r--modules/textadept/snapopen.lua2
-rw-r--r--modules/textadept/snippets.lua2
20 files changed, 21 insertions, 19 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
diff --git a/modules/cpp/init.lua b/modules/cpp/init.lua
index 63401b16..5062de51 100644
--- a/modules/cpp/init.lua
+++ b/modules/cpp/init.lua
@@ -8,7 +8,7 @@ local M = {}
-- It provides utilities for editing C/C++ code.
-- User tags are loaded from _USERHOME/modules/cpp/tags and user apis are loaded
-- from _USERHOME/modules/cpp/api.
-module('_m.cpp', package.seeall)]]
+module('_m.cpp')]]
-- Markdown:
-- ## Key Commands
diff --git a/modules/lua/init.lua b/modules/lua/init.lua
index 80bf7956..0bc0084f 100644
--- a/modules/lua/init.lua
+++ b/modules/lua/init.lua
@@ -8,7 +8,7 @@ local M = {}
-- It provides utilities for editing Lua code.
-- User tags are loaded from _USERHOME/modules/lua/tags and user apis are loaded
-- from _USERHOME/modules/lua/api.
-module('_m.lua', package.seeall)]]
+module('_m.lua')]]
-- Markdown:
-- ## Key Commands
diff --git a/modules/textadept/adeptsense.lua b/modules/textadept/adeptsense.lua
index b115bc58..39381762 100644
--- a/modules/textadept/adeptsense.lua
+++ b/modules/textadept/adeptsense.lua
@@ -5,7 +5,7 @@ local M = {}
--[[ This comment is for LuaDoc.
---
-- Language autocompletion support for the textadept module.
-module('_m.textadept.adeptsense', package.seeall)]]
+module('_m.textadept.adeptsense')]]
-- Markdown:
-- ## Overview
diff --git a/modules/textadept/bookmarks.lua b/modules/textadept/bookmarks.lua
index 146dc157..38a031e0 100644
--- a/modules/textadept/bookmarks.lua
+++ b/modules/textadept/bookmarks.lua
@@ -7,7 +7,7 @@ local M = {}
--[[ This comment is for LuaDoc.
---
-- Bookmarks for the textadept module.
-module('_m.textadept.bookmarks', package.seeall)]]
+module('_m.textadept.bookmarks')]]
-- Markdown:
-- ## Settings
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua
index c62b7116..6c9c0bfa 100644
--- a/modules/textadept/editing.lua
+++ b/modules/textadept/editing.lua
@@ -9,7 +9,7 @@ local M = {}
--[[ This comment is for LuaDoc.
---
-- Editing commands for the textadept module.
-module('_m.textadept.editing', package.seeall)]]
+module('_m.textadept.editing')]]
-- Markdown:
-- ## Settings
diff --git a/modules/textadept/filter_through.lua b/modules/textadept/filter_through.lua
index 98c21945..c97562fe 100644
--- a/modules/textadept/filter_through.lua
+++ b/modules/textadept/filter_through.lua
@@ -8,7 +8,7 @@ local M = {}
--[[ This comment is for LuaDoc.
---
-- Filter-Through for the textadept module.
-module('_m.textadept.filter_through', package.seeall)]]
+module('_m.textadept.filter_through')]]
local cat = not WIN32 and 'cat' or 'type'
local tmpfile = _USERHOME..'/.ft'
diff --git a/modules/textadept/init.lua b/modules/textadept/init.lua
index c5dc1ea9..c8c022b0 100644
--- a/modules/textadept/init.lua
+++ b/modules/textadept/init.lua
@@ -7,7 +7,7 @@ _m.textadept = M
---
-- The textadept module.
-- It provides utilities for editing text in Textadept.
-module('_m.textadept', package.seeall)]]
+module('_m.textadept')]]
M.adeptsense = require 'textadept.adeptsense'
M.bookmarks = require 'textadept.bookmarks'
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua
index ec9133f3..fb7f3ca8 100644
--- a/modules/textadept/keys.lua
+++ b/modules/textadept/keys.lua
@@ -10,7 +10,7 @@ local M = {}
-- Defines key commands for Textadept.
-- This set of key commands is pretty standard among other text editors.
-- This module, should be 'require'ed last, but before _m.textadept.menu.
-module('_m.textadept.keys', package.seeall)]]
+module('_m.textadept.keys')]]
local keys, _buffer, _view = keys, buffer, view
local m_textadept, m_editing = _m.textadept, _m.textadept.editing
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua
index 653437cf..70fc406d 100644
--- a/modules/textadept/menu.lua
+++ b/modules/textadept/menu.lua
@@ -11,7 +11,7 @@ local M = {}
-- Provides dynamic menus for Textadept.
-- This module should be `require`ed last, after `_m.textadept.keys` since it
-- looks up defined key commands to show them in menus.
-module('_m.textadept.menu', package.seeall)]]
+module('_m.textadept.menu')]]
local _buffer, _view = buffer, view
local m_textadept, m_editing = _m.textadept, _m.textadept.editing
diff --git a/modules/textadept/mime_types.lua b/modules/textadept/mime_types.lua
index 8a11be5d..c763895d 100644
--- a/modules/textadept/mime_types.lua
+++ b/modules/textadept/mime_types.lua
@@ -8,7 +8,7 @@ local M = {}
--[[ This comment is for LuaDoc.
---
-- Handles file-specific settings.
-module('_m.textadept.mime_types', package.seeall)]]
+module('_m.textadept.mime_types')]]
-- Markdown:
-- ## Overview
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua
index 7267b486..0947258b 100644
--- a/modules/textadept/run.lua
+++ b/modules/textadept/run.lua
@@ -11,7 +11,7 @@ local M = {}
-- Typically, language-specific modules populate the 'compile_command',
-- 'run_command', and 'error_detail' tables for a particular language's file
-- extension.
-module('_m.textadept.run', package.seeall)]]
+module('_m.textadept.run')]]
-- Markdown:
-- ## Run Events
diff --git a/modules/textadept/session.lua b/modules/textadept/session.lua
index 0bab1b40..ce92febd 100644
--- a/modules/textadept/session.lua
+++ b/modules/textadept/session.lua
@@ -7,7 +7,7 @@ local M = {}
--[[ This comment is for LuaDoc.
---
-- Session support for the textadept module.
-module('_m.textadept.session', package.seeall)]]
+module('_m.textadept.session')]]
-- Markdown:
-- ## Settings
diff --git a/modules/textadept/snapopen.lua b/modules/textadept/snapopen.lua
index 3d295730..cb233a82 100644
--- a/modules/textadept/snapopen.lua
+++ b/modules/textadept/snapopen.lua
@@ -7,7 +7,7 @@ local M = {}
--[[ This comment is for LuaDoc.
---
-- Snapopen for the textadept module.
-module('_m.textadept.snapopen', package.seeall)]]
+module('_m.textadept.snapopen')]]
-- Markdown:
-- ## Settings
diff --git a/modules/textadept/snippets.lua b/modules/textadept/snippets.lua
index 883b0fcf..fc26427b 100644
--- a/modules/textadept/snippets.lua
+++ b/modules/textadept/snippets.lua
@@ -7,7 +7,7 @@ local M = {}
--[[ This comment is for LuaDoc.
---
-- Provides Lua-style snippets for Textadept.
-module('_m.textadept.snippets', package.seeall)]]
+module('_m.textadept.snippets')]]
-- Markdown:
-- ## Overview