aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/run.lua
diff options
context:
space:
mode:
Diffstat (limited to 'modules/textadept/run.lua')
-rw-r--r--modules/textadept/run.lua14
1 files changed, 9 insertions, 5 deletions
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua
index f200bd83..4f1aea0c 100644
--- a/modules/textadept/run.lua
+++ b/modules/textadept/run.lua
@@ -13,18 +13,22 @@ module('_M.textadept.run')]]
-- Markdown:
-- ## Run Events
--
--- * `_G.events.COMPILE_OUTPUT`: Called after a compile command is executed.
+-- * `_G.events.COMPILE_OUTPUT`
+-- Called after a compile command is executed.
-- When connecting to this event (typically from a language-specific module),
-- connect with an index of `1` and return `true` if the event was handled and
-- you want to override the default handler that prints the output to a new
--- view.<br />
+-- view.
+-- Arguments:
-- * `lexer`: The lexer language.
-- * `output`: The output from the command.
--- * `_G.events.RUN_OUTPUT`: Called after a run command is executed. When
--- connecting to this event (typically from a language-specific module),
+-- * `_G.events.RUN_OUTPUT`
+-- Called after a run command is executed.
+-- When connecting to this event (typically from a language-specific module),
-- connect with an index of `1` and return `true` if the event was handled and
-- you want to override the default handler that prints the output to a new
--- view.<br />
+-- view.
+-- Arguments:
-- * `lexer`: The lexer language.
-- * `output`: The output from the command.