aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/run.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2012-02-10 13:55:34 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2012-02-10 13:55:34 -0500
commitb3d0b5defde02020ad41225b4b11e82c4ea90af9 (patch)
treea3f3fbfd41b21757630c1e59cbf9d9ed801fa983 /modules/textadept/run.lua
parentfbcb4f5c1dcfa2ffa45fb82a3bad2e543ee071e9 (diff)
downloadtextadept-b3d0b5defde02020ad41225b4b11e82c4ea90af9.tar.gz
textadept-b3d0b5defde02020ad41225b4b11e82c4ea90af9.zip
Update LuaDoc with new formatting.
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.