aboutsummaryrefslogtreecommitdiff
path: root/modules/lua/init.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/lua/init.lua
parentfbcb4f5c1dcfa2ffa45fb82a3bad2e543ee071e9 (diff)
downloadtextadept-b3d0b5defde02020ad41225b4b11e82c4ea90af9.tar.gz
textadept-b3d0b5defde02020ad41225b4b11e82c4ea90af9.zip
Update LuaDoc with new formatting.
Diffstat (limited to 'modules/lua/init.lua')
-rw-r--r--modules/lua/init.lua21
1 files changed, 13 insertions, 8 deletions
diff --git a/modules/lua/init.lua b/modules/lua/init.lua
index c224ea9d..0accbb5c 100644
--- a/modules/lua/init.lua
+++ b/modules/lua/init.lua
@@ -13,18 +13,23 @@ module('_M.lua')]]
-- Markdown:
-- ## Key Commands
--
--- + `Ctrl+L, M` (`⌘L, M` on Mac OSX): Open this module for editing.
--- + `Ctrl+L, G` (`⌘L, G`): Goto file being 'require'd on the current line.
--- + `Shift+Return` (`⇧↩`): Try to autocomplete an `if`, `for`, etc. statement
--- with `end`.
--- + `.`: When to the right of a known symbol, show an autocompletion list of
--- fields and functions.
--- + `:`: When to the right of a known symbol, show an autocompletion list of
+-- + `Ctrl+L, M` (`⌘L, M` on Mac OSX)
+-- Open this module for editing.
+-- + `Ctrl+L, G` (`⌘L, G`)
+-- Goto file being 'require'd on the current line.
+-- + `Shift+Return` (`⇧↩`)
+-- Try to autocomplete an `if`, `for`, etc. statement with `end`.
+-- + `.`
+-- When to the right of a known symbol, show an autocompletion list of fields
+-- and functions.
+-- + `:`
+-- When to the right of a known symbol, show an autocompletion list of
-- functions only.
--
-- ## Fields
--
--- * `sense`: The Lua [Adeptsense](_M.textadept.adeptsense.html).
+-- * `sense`
+-- The Lua [Adeptsense](_M.textadept.adeptsense.html).
local m_editing, m_run = _M.textadept.editing, _M.textadept.run
-- Comment string tables use lexer names.