diff options
author | 2013-10-18 10:23:57 -0400 | |
---|---|---|
committer | 2013-10-18 10:23:57 -0400 | |
commit | ee19e174bb060bbe96565af91975ed3118bc894d (patch) | |
tree | 652d622ea36690bd5f52bc938d8ec5795de31eb2 /modules/textadept/editing.lua | |
parent | a488a97c9eb58d8e9db224f3793c74f23d26b07e (diff) | |
download | textadept-ee19e174bb060bbe96565af91975ed3118bc894d.tar.gz textadept-ee19e174bb060bbe96565af91975ed3118bc894d.zip |
More LuaDoc updates.
Diffstat (limited to 'modules/textadept/editing.lua')
-rw-r--r-- | modules/textadept/editing.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua index 1335b8aa..5c86130c 100644 --- a/modules/textadept/editing.lua +++ b/modules/textadept/editing.lua @@ -22,7 +22,7 @@ local M = {} -- Typeover characters are defined in the [`typeover_chars`](#typeover_chars) -- table. -- @field AUTOINDENT (bool) --- Match the indentation level of the previous line when inserting a new line. +-- Match the previous line's indentation level when inserting a new line. -- The default value is `true`. -- @field STRIP_TRAILING_SPACES (bool) -- Strip trailing whitespace before saving files. @@ -512,7 +512,7 @@ end -- -- 1. If text is selected and spans multiple lines, all text on the lines -- containing the selection is passed as stdin. However, if the end of the --- selection is at the beginning of a line, only the line ending characters from +-- selection is at the beginning of a line, only the line ending delimiters from -- the previous line are included. The rest of the line is excluded. -- 2. If text is selected and spans a single line, only the selected text is -- used. |