From 2ab6deaecb4576c932dd63186927e9481bf5dedc Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Thu, 5 Jan 2012 05:20:39 -0500 Subject: Rename '_m' to '_M'. --- modules/textadept/editing.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/textadept/editing.lua') 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. -- cgit v1.2.3