diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/api.md | 10 | ||||
-rw-r--r-- | docs/changelog.md | 10 |
2 files changed, 13 insertions, 7 deletions
diff --git a/docs/api.md b/docs/api.md index 1d615343..b6f96cf4 100644 --- a/docs/api.md +++ b/docs/api.md @@ -1203,6 +1203,12 @@ Whether or not the buffer has unsaved changes. Whether or not regular caret movement alters the selected text. [`buffer.selection_mode`](#buffer.selection_mode) dictates this property. +<a id="buffer.multi_edge_column"></a> +#### `buffer.multi_edge_column` (table, Read-only) + +Table of edge column positions per edge column number. + A position of `-1` means no edge column was found. + <a id="buffer.multi_paste"></a> #### `buffer.multi_paste` (number) @@ -3920,7 +3926,7 @@ Emitted after the user types a text character into the buffer. #### `events.COMMAND_TEXT_CHANGED` (string) Emitted when the text in the command entry changes. - `ui.command_entry:get_text()` contains the current text. + `ui.command_entry:get_text()` returns the current text. <a id="events.CSI"></a> #### `events.CSI` (string) @@ -10003,7 +10009,7 @@ The caret's visual style. <a id="view.caret_width"></a> #### `view.caret_width` (number) -The line caret's pixel width in insert mode, either `0`, `1`, `2`, or `3`. +The line caret's pixel width in insert mode, between `0` and `20`. The default value is `1`. <a id="view.cursor"></a> diff --git a/docs/changelog.md b/docs/changelog.md index 211ff870..3190233f 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -765,8 +765,8 @@ Changes: too. * Removed MacRoman encoding detection and options. * Scintilla: Character-based word selection, navigation, and manipulation. -* Scintilla: Added [`buffer.EDGE_MULTILINE`][], - [`buffer:multi_edge_add_line()`][], and [`buffer:multi_edge_clear_all()`][] +* Scintilla: Added [`view.EDGE_MULTILINE`][], + [`view:multi_edge_add_line()`][], and [`view:multi_edge_clear_all()`][] for multiple edge lines. * Scintilla: Added `buffer.MARGIN_COLOUR` and [`buffer.margin_back_n`][] for setting arbitrary margin background colors. @@ -782,9 +782,9 @@ Changes: selection. * Updated to [Scintilla][] 3.7.1. -[`buffer.EDGE_MULTILINE`]: api.html#buffer.EDGE_MULTILINE -[`buffer:multi_edge_add_line()`]: api.html#buffer.multi_edge_add_line -[`buffer:multi_edge_clear_all()`]: api.html#buffer.multi_edge_clear_all +[`view.EDGE_MULTILINE`]: api.html#view.EDGE_MULTILINE +[`view:multi_edge_add_line()`]: api.html#view.multi_edge_add_line +[`view:multi_edge_clear_all()`]: api.html#view.multi_edge_clear_all [`buffer.margin_back_n`]: api.html#buffer.margin_back_n [`buffer.margins`]: api.html#buffer.margins [`buffer:toggle_fold_display_text()`]: api.html#buffer.toggle_fold_display_text |