diff options
author | 2012-01-05 05:20:39 -0500 | |
---|---|---|
committer | 2012-01-05 05:20:39 -0500 | |
commit | 2ab6deaecb4576c932dd63186927e9481bf5dedc (patch) | |
tree | 2574adf1f9c7a789456c1e467c0d98a17a4609b6 /modules/textadept/editing.lua | |
parent | 6143b96a6d71a0d8d04ed7d4ddc3696a141112c7 (diff) | |
download | textadept-2ab6deaecb4576c932dd63186927e9481bf5dedc.tar.gz textadept-2ab6deaecb4576c932dd63186927e9481bf5dedc.zip |
Rename '_m' to '_M'.
Diffstat (limited to 'modules/textadept/editing.lua')
-rw-r--r-- | modules/textadept/editing.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua index 7111870b..f960f7b9 100644 --- a/modules/textadept/editing.lua +++ b/modules/textadept/editing.lua @@ -5,7 +5,7 @@ local M = {} --[[ This comment is for LuaDoc. --- -- Editing commands for the textadept module. -module('_m.textadept.editing')]] +module('_M.textadept.editing')]] -- Markdown: -- ## Settings @@ -52,7 +52,7 @@ M.comment_string = {} -- '[]', '{}', '''', and '""'. -- @class table -- @name char_matches --- @usage _m.textadept.editing.char_matches.hypertext = { ..., [60] = '>' } +-- @usage _M.textadept.editing.char_matches.hypertext = { ..., [60] = '>' } M.char_matches = { [40] = ')', [91] = ']', [123] = '}', [39] = "'", [34] = '"' } --- @@ -62,7 +62,7 @@ M.char_matches = { [40] = ')', [91] = ']', [123] = '}', [39] = "'", [34] = '"' } -- modules. The defaults are '(', ')', '[', ']', '{', and '}'. -- @class table -- @name braces --- @usage _m.textadept.editing.braces.hypertext = { ..., [60] = 1, [62] = 1 } +-- @usage _M.textadept.editing.braces.hypertext = { ..., [60] = 1, [62] = 1 } M.braces = { [40] = 1, [41] = 1, [91] = 1, [93] = 1, [123] = 1, [125] = 1 } -- The current call tip. |