diff options
author | 2016-06-15 17:27:55 -0400 | |
---|---|---|
committer | 2016-06-15 17:27:55 -0400 | |
commit | 190f9aaeb206bfe209291898fae17880d5f62748 (patch) | |
tree | 3ce9c580c2445d97615c418218dac43cb963786d /modules/textadept/editing.lua | |
parent | 27c42565b3b1cccf0c2eb5770614b67617de6b48 (diff) | |
download | textadept-190f9aaeb206bfe209291898fae17880d5f62748.tar.gz textadept-190f9aaeb206bfe209291898fae17880d5f62748.zip |
Lots of small LuaDoc improvements (grammar mainly).
Diffstat (limited to 'modules/textadept/editing.lua')
-rw-r--r-- | modules/textadept/editing.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua index cd8be1ba..dddbf98a 100644 --- a/modules/textadept/editing.lua +++ b/modules/textadept/editing.lua @@ -84,8 +84,8 @@ M.auto_pairs = {[40] = ')', [91] = ']', [123] = '}', [39] = "'", [34] = '"'} -- values. The default brace characters are '(', ')', '[', ']', '{', and '}'. -- @class table -- @name brace_matches --- @usage textadept.editing.brace_matches[60] = 1 -- '<' --- @usage textadept.editing.brace_matches[62] = 1 -- '>' +-- @usage textadept.editing.brace_matches[60] = true -- '<' +-- @usage textadept.editing.brace_matches[62] = true -- '>' M.brace_matches = {[40] = 1, [41] = 1, [91] = 1, [93] = 1, [123] = 1, [125] = 1} --- @@ -94,7 +94,7 @@ M.brace_matches = {[40] = 1, [41] = 1, [91] = 1, [93] = 1, [123] = 1, [125] = 1} -- The default characters are ')', ']', '}', ''', and '"'. -- @class table -- @name typeover_chars --- @usage textadept.editing.typeover_chars[62] = 1 -- '>' +-- @usage textadept.editing.typeover_chars[62] = true -- '>' M.typeover_chars = {[41] = 1, [93] = 1, [125] = 1, [39] = 1, [34] = 1} --- @@ -113,7 +113,7 @@ M.autocompleters = {} --- -- Map of lexer names to API documentation file tables. -- Each line in an API file consists of a symbol name (not a fully qualified --- symbol name), a space character, and that symbol's documentation. '\n' +-- symbol name), a space character, and that symbol's documentation. "\n" -- represents a newline character. -- @class table -- @name api_files |