diff options
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. |