diff options
author | 2014-06-30 13:06:25 -0400 | |
---|---|---|
committer | 2014-06-30 13:06:25 -0400 | |
commit | 03b0b8932ea1c41854a487f9fa6555def9b59462 (patch) | |
tree | 491743468203ee0b49729d323a1f224aaf4ef669 /modules/textadept/editing.lua | |
parent | b8a5a15f6171cbedc9007e5b05757aa4b72ff742 (diff) | |
download | textadept-03b0b8932ea1c41854a487f9fa6555def9b59462.tar.gz textadept-03b0b8932ea1c41854a487f9fa6555def9b59462.zip |
Condensed manual and API documentation into single files.
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 31bbbaa5..ce93dd54 100644 --- a/modules/textadept/editing.lua +++ b/modules/textadept/editing.lua @@ -9,14 +9,14 @@ local M = {} -- Automatically close opening brace and quote characters with their -- complements. -- The default value is `true`. --- Auto-paired characters are defined in the [`char_matches`](#char_matches) --- table. +-- Auto-paired characters are defined in the +-- [`textadept.editing.char_matches`]() table. -- @field TYPEOVER_CHARS (bool) -- Move over closing brace and quote characters under the caret when typing -- them. -- The default value is `true`. --- Typeover characters are defined in the [`typeover_chars`](#typeover_chars) --- table. +-- Typeover characters are defined in the +-- [`textadept.editing.typeover_chars`]() table. -- @field AUTOINDENT (bool) -- Match the previous line's indentation level after inserting a new line. -- The default value is `true`. |