diff options
author | 2020-08-17 18:10:45 -0400 | |
---|---|---|
committer | 2020-08-17 18:10:45 -0400 | |
commit | d0d6905adb25d13ad72a1c10e2242cdae9769ce7 (patch) | |
tree | d0db0767336be82854d6f7ba10170e6b7d52e6e3 /doc/manual.md | |
parent | 71f98b40ca8c929e5bb56908719de0b871b1b569 (diff) | |
download | textadept-d0d6905adb25d13ad72a1c10e2242cdae9769ce7.tar.gz textadept-d0d6905adb25d13ad72a1c10e2242cdae9769ce7.zip |
Added `textadept.editing.auto_enclose` for auto-enclosing selected text.
Diffstat (limited to 'doc/manual.md')
-rw-r--r-- | doc/manual.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/manual.md b/doc/manual.md index bba60e27..ba125838 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -1498,7 +1498,7 @@ since the editor's internals consist primarily of Lua. When it comes to scripting Textadept, what exactly does that mean? Being an event-driven application, Textadept simply responds to input like keypresses and mouse clicks. By responding, Textadept just executes Lua functions. For example, -pressing `Ctrl+O` (`⌘O` on macOS | `M-O` in the terminal) executes the +pressing `Ctrl+O` (`⌘O` on macOS | `^O` in the terminal) executes the [`io.open_file()`][] function because a default keybinding in *modules/textadept/keys.lua* says so (you could change this in your [preferences](#Key.Bindings)). Subsequently, when Textadept opens a file, a @@ -2074,6 +2074,7 @@ toggle(line, on) |Changed |[toggle()][] **textadept.editing** | | block\_comment() |Renamed |[toggle_comment()][] highlight_word() |Replaced|[highlight_words][] +N/A |Added |[auto_enclose][] **textadept.file_types** | | lexers |Removed |N/A<sup>b</sup> **textadept.find** | | @@ -2121,6 +2122,7 @@ section below. [toggle()]: api.html#textadept.bookmarks.toggle [toggle_comment()]: api.html#textadept.editing.toggle_comment [highlight_words]: api.html#textadept.editing.highlight_words +[auto_enclose]: api.html#textadept.editing.auto_enclose [incremental]: api.html#ui.find.incremental [highlight_all_matches]: api.html#ui.find.highlight_all_matches [insert()]: api.html#textadept.snippets.insert |