diff options
Diffstat (limited to 'modules/textadept')
-rw-r--r-- | modules/textadept/adeptsense.lua | 2 | ||||
-rw-r--r-- | modules/textadept/bookmarks.lua | 2 | ||||
-rw-r--r-- | modules/textadept/editing.lua | 2 | ||||
-rw-r--r-- | modules/textadept/filter_through.lua | 2 | ||||
-rw-r--r-- | modules/textadept/init.lua | 2 | ||||
-rw-r--r-- | modules/textadept/keys.lua | 2 | ||||
-rw-r--r-- | modules/textadept/menu.lua | 2 | ||||
-rw-r--r-- | modules/textadept/mime_types.lua | 2 | ||||
-rw-r--r-- | modules/textadept/run.lua | 2 | ||||
-rw-r--r-- | modules/textadept/session.lua | 2 | ||||
-rw-r--r-- | modules/textadept/snapopen.lua | 2 | ||||
-rw-r--r-- | modules/textadept/snippets.lua | 2 |
12 files changed, 12 insertions, 12 deletions
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 |