aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2021-04-13 00:02:12 -0400
committerGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2021-04-13 00:02:12 -0400
commit3d69ae01c0f2421a89b862ec5fea635a40826896 (patch)
tree0930132b4c69c144538340b48b7c52accc639b61 /docs
parent19899b518f18165b1dfb6d9b4b18e531f4b56249 (diff)
Updated to Scintilla 5.0.1 and latest Scintillua and Scinterm.
Some of the Scintilla API has changed, and by extension the Scintillua API.
Diffstat (limited to 'docs')
-rw-r--r--docs/api.md54
-rw-r--r--docs/manual.md2
2 files changed, 53 insertions, 3 deletions
diff --git a/docs/api.md b/docs/api.md
index c9d0edb7..d1969c72 100644
--- a/docs/api.md
+++ b/docs/api.md
@@ -9723,8 +9723,27 @@ The EOL annotation visibility mode.
Draw EOL annotations no decoration.
* `view.EOLANNOTATION_BOXED`
Draw EOL annotations outlined with a box.
-
- The default value is `view.EOLANNOTATION_HIDDEN`.
+ * `view.EOLANNOTATION_STADIUM`
+ Draw EOL annotations outline with curved ends.
+ * `view.EOLANNOTATION_FLAT_CIRCLE`
+ Draw EOL annotations outline with a flat left end and curved right end.
+ * `view.EOLANNOTATION_ANGLE_CIRCLE`
+ Draw EOL annotations outline with an angled left end and curved right end.
+ * `view.EOLANNOTATION_CIRCLE_FLAT`
+ Draw EOL annotations outline with a curved left end and flat right end.
+ * `view.EOLANNOTATION_FLATS`
+ Draw EOL annotations outline with a flat ends.
+ * `view.EOLANNOTATION_ANGLE_FLAT`
+ Draw EOL annotations outline with an angled left end and flat right end.
+ * `view.EOLANNOTATION_CIRCLE_ANGLE`
+ Draw EOL annotations outline with a curved left end and angled right end.
+ * `view.EOLANNOTATION_FLAT_ANGLE`
+ Draw EOL annotations outline with a flat left end and angled right end.
+ * `view.EOLANNOTATION_ANGLES`
+ Draw EOL annotations outline with angled ends.
+
+ All annotations are drawn with the same shape. The default value is
+ `view.EOLANNOTATION_HIDDEN`.
<a id="view.extra_ascent"></a>
#### `view.extra_ascent` (number)
@@ -9874,6 +9893,15 @@ Table of outline color alpha values, ranging from `0` (transparent) to `255` (op
`INDIC_STRAIGHTBOX`, or `INDIC_DOTBOX`.
The default values are `view.ALPHA_NOALPHA`, for no alpha.
+<a id="view.indic_stroke_width"></a>
+#### `view.indic_stroke_width` (table)
+
+Table of stroke widths in hundredths of a pixel for indicator numbers from `1` to `32`
+ whose styles are either `INDIC_PLAIN`, `INDIC_SQUIGGLE`, `INDIC_TT`, `INDIC_DIAGONAL`,
+ `INDIC_STRIKE`, `INDIC_BOX`, `INDIC_ROUNDBOX`, `INDIC_STRAIGHTBOX`, `INDIC_FULLBOX`,
+ `INDIC_DASH`, `INDIC_DOTS`, or `INDIC_SQUIGGLELOW`.
+ The default values are `100`, or 1 pixel.
+
<a id="view.indic_style"></a>
#### `view.indic_style` (table)
@@ -10068,11 +10096,33 @@ Table of background colors, in "0xBBGGRR" format, of marker numbers from `1` to
Table of background colors, in "0xBBGGRR" format, of markers whose folding blocks are
selected for marker numbers from `1` to `32`.
+<a id="view.marker_back_selected_translucent"></a>
+#### `view.marker_back_selected_translucent` (table, Write-only)
+
+Table of background colors, in "0xAABBGGRR" format, of markers whose folding blocks are
+ selected for marker numbers from `1` to `32`.
+
+<a id="view.marker_back_translucent"></a>
+#### `view.marker_back_translucent` (table, Write-only)
+
+Table of background colors, in "0xAABBGGRR" format, of marker numbers from `1` to `32`.
+
<a id="view.marker_fore"></a>
#### `view.marker_fore` (table, Write-only)
Table of foreground colors, in "0xBBGGRR" format, of marker numbers from `1` to `32`.
+<a id="view.marker_fore_translucent"></a>
+#### `view.marker_fore_translucent` (table, Write-only)
+
+Table of foreground colors, in "0xAABBGGRR" format, of marker numbers from `1` to `32`.
+
+<a id="view.marker_stroke_width"></a>
+#### `view.marker_stroke_width` (table, Write-only)
+
+Table of stroke widths in hundredths of a pixel for marker numbers from `1` to `32`.
+ The default values are `100`, or 1 pixel.
+
<a id="view.mouse_dwell_time"></a>
#### `view.mouse_dwell_time` (number)
diff --git a/docs/manual.md b/docs/manual.md
index aa67283c..769045fa 100644
--- a/docs/manual.md
+++ b/docs/manual.md
@@ -1773,7 +1773,7 @@ N/A | Added | [active][]
N/A | Added | _buffer functions and fields_<sup>d</sup>
<sup>a</sup>Returns prefix and function, instead of just function.<br/>
-<sup>b</sup>Use `for name in buffer:private_lexer_call(_SCINTILLA.functions.property_names[1]):gmatch('[^\n]+') do ... end`.<br/>
+<sup>b</sup>Use `for name in buffer:private_lexer_call(_SCINTILLA.properties.lexer_language[1]):gmatch('[^\n]+') do ... end`.<br/>
<sup>c</sup>Use `textadept.menu.menubar[_L['Search']][_L['Find Incremental']][2]`.<br/>
<sup>d</sup>Most buffer functions and fields are available in views now. See section below.