aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/._m.lua9
-rw-r--r--modules/textadept/run.lua2
2 files changed, 3 insertions, 8 deletions
diff --git a/core/._m.lua b/core/._m.lua
index b1b63716..e2ca375b 100644
--- a/core/._m.lua
+++ b/core/._m.lua
@@ -28,13 +28,8 @@ module('_m')
-- set an 'api' variable to textadept.io.read_api_file(path, word_chars)'s
-- return value. It will be used for displaying calltips and autocomplete lists
-- by default.
--- To create a new module template, run the /modules/new script with the first
--- argument being the module's name, and the second being the language's name
--- (escaped characters must be used appropriately). The commands.lua script
--- provides useful functions and key-commands for the module; the snippets.lua
--- script provides snippets.
--- Alternatively you can use the 'modules' Project Manager browser to create and
--- manage modules.
+-- You can use the 'modules' Project Manager browser to create and manage
+-- language-specific modules.
--
-- When assigning key commands to module functions, do not forget to do so AFTER
-- the function has been defined. Typically key commands are placed at the end
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua
index 1d9842a5..9a9901f9 100644
--- a/modules/textadept/run.lua
+++ b/modules/textadept/run.lua
@@ -7,7 +7,7 @@ local textadept = _G.textadept
module('_m.textadept.run', package.seeall)
---
--- [Local function] Prints a command to Textadept.
+-- [Local function] Prints a command and its output to Textadept.
-- @param cmd The OS command executed.
-- @param output The output from that OS command.
local function print_command(cmd, output)